@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #ff6b00;
    --primary-dark: #e05500;
    --secondary: #1a3c34;
    --accent: #4caf50;
    --dark: #1a1a2e;
    --text: #333;
    --text-light: #666;
    --light: #f8f9fa;
    --white: #fff;
    --shadow: 0 5px 20px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header .lineHeading {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary);
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.section-header .lineHeading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary);
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.05rem;
}

.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
    border: 2px solid var(--primary);
    cursor: pointer;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.98);
    z-index: 1000;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.header_left img, #logo {
    height: 45px;
    width: auto;
}

.right-part-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

#cssmenu .menu { display: flex; gap: 5px; }

#cssmenu .menu > li { position: relative; }

#cssmenu .menu > li > a {
    display: block;
    padding: 10px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

#cssmenu .menu > li > a:hover { color: var(--primary); }

#cssmenu .second-level {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
    border-top: 3px solid var(--primary);
}

#cssmenu .menu > li:hover .second-level {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#cssmenu .second-level li a {
    display: block;
    padding: 12px 20px;
    font-size: 0.85rem;
    color: var(--text);
    border-bottom: 1px solid #f0f0f0;
    transition: var(--transition);
}

#cssmenu .second-level li a:hover {
    background: var(--primary);
    color: var(--white);
    padding-left: 25px;
}

.header_right ul { display: flex; align-items: center; gap: 10px; }

.menuTriger { display: none; }

.menuTriger strong {
    display: block;
    width: 30px;
    height: 25px;
    cursor: pointer;
    position: relative;
}

.menuTriger .lines,
.menuTriger .lines::before,
.menuTriger .lines::after {
    display: block;
    width: 30px;
    height: 3px;
    background: var(--secondary);
    position: absolute;
    transition: var(--transition);
}

.menuTriger .lines { top: 50%; transform: translateY(-50%); }
.menuTriger .lines::before { content: ''; top: -8px; }
.menuTriger .lines::after { content: ''; top: 8px; }

.navHolder {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.navHolder.active {
    right: 0;
    opacity: 1;
    visibility: visible;
}

.topNav {
    position: absolute;
    right: 0;
    top: 0;
    width: 400px;
    max-width: 90%;
    height: 100vh;
    background: var(--white);
    overflow-y: auto;
    padding: 30px;
    transform: translateX(50px);
    transition: var(--transition);
}

.navHolder.active .topNav { transform: translateX(0); }

.topNav nav section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.topNav nav section strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
}

.topNav nav section strong img {
    display: none;
}

.topNav nav section ul { padding-left: 10px; }

.topNav nav section ul li {
    margin-bottom: 6px;
}

.topNav nav section ul li a {
    font-size: 0.85rem;
    color: var(--text-light);
    transition: var(--transition);
}

.topNav nav section ul li a:hover { color: var(--primary); }

.quick-links {
    position: fixed;
    right: 20px;
    bottom: 100px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quick-links a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    transition: var(--transition);
    position: relative;
}

.quick-links a span {
    position: absolute;
    right: 60px;
    background: var(--dark);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.quick-links a:hover { transform: scale(1.1); }
.quick-links a:hover span { opacity: 1; visibility: visible; }

.quick-links .ql-call { background: var(--primary); }
.quick-links .ql-whatsapp { background: #25D366; }
.quick-links .ql-email { background: var(--secondary); }

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin-top: 70px;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slide.active { opacity: 1; }

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 40px;
    top: 50%;
    transform: translateY(-50%);
}

.slide-content h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.slide-content p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    line-height: 1.7;
}

.slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 5;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.dot.active { 
    background: var(--primary); 
    border-color: var(--white);
    transform: scale(1.2);
}

.slider-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 5;
}

.slider-arrows button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.3);
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.slider-arrows button:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.about-section { background: var(--white); }

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.stat { text-align: center; }

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    font-weight: 600;
}

.about-image img {
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.services-section {
    background: var(--light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    border-bottom-color: var(--primary);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(255,107,0,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--secondary);
}

.service-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
}

.products-section { background: var(--white); }

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.product-image {
    height: 220px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img { transform: scale(1.08); }

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
}

.project-info p, .product-info p {
    font-size: 0.85rem;
    color: var(--text-light);
}

.projects-section {
    background: var(--light);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.project-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.project-card:hover { transform: translateY(-5px); }

.project-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover .project-image img { transform: scale(1.08); }

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
}

.project-info {
    padding: 20px;
}

.project-info h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 5px;
}

.project-info p {
    font-size: 0.85rem;
    color: var(--text-light);
}

.contact-section { background: var(--white); }

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    margin-bottom: 15px;
    background: var(--light);
    border-radius: 10px;
    transition: var(--transition);
}

.contact-card:hover {
    background: var(--primary);
    color: var(--white);
}

.contact-card:hover .contact-icon,
.contact-card:hover a { color: var(--white); }

.contact-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.contact-detail h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: inherit;
    margin-bottom: 5px;
}

.contact-detail p {
    font-size: 0.85rem;
    color: inherit;
}

.contact-detail a {
    color: var(--primary);
    font-weight: 600;
    transition: var(--transition);
}

.contact-form-wrapper {
    background: var(--light);
    padding: 35px;
    border-radius: 10px;
}

.form-group { margin-bottom: 18px; }

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.map-container {
    width: 100%;
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

#footer {
    background: var(--secondary);
    color: rgba(255,255,255,0.85);
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-col p {
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 10px;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.footer-contact li i {
    color: var(--primary);
    margin-top: 4px;
    min-width: 16px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.82rem;
}

.footer-bottom a { color: var(--primary); }

@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .projects-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    #header { padding: 0 15px; }
    #cssmenu { display: none; }
    .menuTriger { display: block; }

    .slide-content h1 { font-size: 2rem; }
    .slide-content p { font-size: 1rem; }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .stat-number { font-size: 1.5rem; }

    .services-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .projects-grid { grid-template-columns: 1fr; }

    .contact-wrapper { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 30px; }

    .section { padding: 50px 0; }
    .section-header .lineHeading { font-size: 1.6rem; }

    .slider-arrows { display: none; }

    .quick-links a { width: 42px; height: 42px; font-size: 1rem; }
    .quick-links { right: 10px; bottom: 80px; }
}

@media (max-width: 480px) {
    .slide-content h1 { font-size: 1.5rem; }
    .slide-content { padding: 0 20px; }
    .about-stats { grid-template-columns: 1fr; }
}
