:root {
            --primary-navy: #0e1d52; 
            --accent-cyan: #2face2;
            --accent-gradient: linear-gradient(135deg, #0e1d52 0%, #2face2 100%);
            --bg-light: #f4f7fa;
            --white: #ffffff;
            --text-dark: #1a1a1a;
            --text-grey: #555555;
            --radius-card: 24px;
            --radius-btn: 50px;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-light);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }

        /* --- NAVIGATION --- */
        header {
            background: var(--white);
            padding: 20px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 15px rgba(0,0,0,0.03);
        }

        .logo {
            font-weight: 800;
            font-size: 1.5rem;
            color: var(--primary-navy);
            display: flex; align-items: center; gap: 10px;
        }
        .logo i { color: var(--accent-cyan); }

        nav ul { display: flex; gap: 30px; }
        nav a { font-weight: 600; font-size: 0.95rem; color: var(--text-dark); transition: color 0.3s; }
        nav a:hover { color: var(--accent-cyan); }

        .btn-nav {
            background-color: var(--primary-navy);
            color: var(--white);
            padding: 10px 25px;
            border-radius: var(--radius-btn);
            font-weight: 600;
            font-size: 0.9rem;
            transition: transform 0.2s;
        }
        .btn-nav:hover { transform: translateY(-2px); }

        /* --- HERO SPLIT SECTION --- */
        .hero {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 60px 5%;
            min-height: 85vh; 
            gap: 50px;
        }

        .hero-text { flex: 1; max-width: 550px; }
        .hero-text h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; color: var(--primary-navy); font-weight: 800; }
        .hero-text p { font-size: 1.15rem; color: var(--text-grey); margin-bottom: 35px; line-height: 1.6; }

        .cta-button {
            display: inline-block; background: var(--accent-gradient); color: white;
            padding: 16px 40px; border-radius: var(--radius-btn); font-size: 1.1rem;
            font-weight: 600; box-shadow: 0 10px 20px rgba(47, 172, 226, 0.3); transition: all 0.3s ease;
        }
        .cta-button:hover { transform: translateY(-3px); box-shadow: 0 15px 25px rgba(47, 172, 226, 0.4); }

        .hero-visual {
            flex: 1; height: 500px; position: relative; border-radius: var(--radius-card);
            overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .slide {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0;
            transition: opacity 1s ease-in-out; background-size: cover; background-position: center;
        }
        .slide.active { opacity: 1; }
        
        .project-label {
            position: absolute; bottom: 20px; left: 20px; background: rgba(255, 255, 255, 0.9);
            padding: 10px 20px; border-radius: 12px; font-weight: 600; color: var(--primary-navy);
            font-size: 0.9rem; box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        /* --- NEW STATS SECTION (1 Cr+ Animation) --- */
        .stats-section {
            background-color: var(--white);
            padding: 100px 5%;
            text-align: center;
            /* Subtle separation from hero */
            border-top: 1px solid rgba(0,0,0,0.05); 
        }

        .stat-container {
            display: inline-block;
        }

        .stat-number {
            font-size: 5rem; /* Very Big */
            font-weight: 800;
            color: var(--primary-navy);
            line-height: 1;
            margin-bottom: 10px;
            background: -webkit-linear-gradient(var(--primary-navy), var(--accent-cyan));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .stat-label {
            font-size: 1.5rem;
            color: var(--text-grey);
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        /* --- WHATSAPP --- */
        .whatsapp-float {
            position: fixed; width: 60px; height: 60px; bottom: 30px; right: 30px;
            background-color: #25d366; color: #FFF; border-radius: 50px; text-align: center;
            font-size: 30px; box-shadow: 2px 2px 3px #999; z-index: 10000;
            display: flex; align-items: center; justify-content: center; transition: all 0.3s;
        }
        .whatsapp-float:hover { transform: scale(1.1); background-color: #20b857; }

        /* --- RESPONSIVE --- */
        @media (max-width: 900px) {
            .hero { flex-direction: column; text-align: center; padding-top: 40px; }
            .hero-text { margin-bottom: 40px; }
            .hero-visual { width: 100%; height: 350px; }
            nav ul { display: none; }
            .stat-number { font-size: 3.5rem; }
            .stat-label { font-size: 1.2rem; }
        }

        .page-header {
    background: var(--primary-navy);
    color: var(--white);
    padding: 80px 5% 40px;
    text-align: center;
}
.page-header h1 { font-size: 2.5rem; margin-bottom: 10px; }
.page-header p { color: var(--accent-cyan); font-weight: 600; }

/* --- NEW: MASONRY GRID (Projects) --- */
.masonry-container {
    padding: 60px 5%;
    column-count: 3; /* Creates the masonry columns */
    column-gap: 25px;
}
.masonry-item {
    break-inside: avoid; /* Prevents item from splitting across columns */
    margin-bottom: 25px;
    border-radius: var(--radius-card);
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}
.masonry-item:hover { transform: translateY(-5px); }
.masonry-item img {
    width: 100%;
    display: block;
    height: auto;
}
.masonry-overlay {
    position: absolute; bottom: 0; left: 0; width: 100%;
    background: linear-gradient(to top, rgba(14, 29, 82, 0.9), transparent);
    color: white; padding: 20px; opacity: 0; transition: opacity 0.3s;
}
.masonry-item:hover .masonry-overlay { opacity: 1; }

/* --- NEW: CONTACT FORM --- */
.contact-container {
    display: flex; gap: 50px; padding: 60px 5%;
    flex-wrap: wrap;
}
.contact-info, .contact-form-wrapper { flex: 1; min-width: 300px; }

.info-card {
    background: var(--white); padding: 30px; border-radius: var(--radius-card);
    margin-bottom: 20px; box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    display: flex; align-items: center; gap: 20px;
}
.info-icon {
    width: 50px; height: 50px; background: rgba(47, 172, 226, 0.1);
    color: var(--accent-cyan); border-radius: 50%; display: flex;
    align-items: center; justify-content: center; font-size: 1.2rem;
}

.form-group { margin-bottom: 20px; }
.form-label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--primary-navy); }
.form-input {
    width: 100%; padding: 15px; border: 2px solid #e0e0e0;
    border-radius: 12px; font-family: inherit; transition: border-color 0.3s;
}
.form-input:focus { outline: none; border-color: var(--accent-cyan); }
textarea.form-input { resize: vertical; min-height: 120px; }

/* Mobile Adjustments */
@media (max-width: 768px) {
    .masonry-container { column-count: 1; }
    .contact-container { flex-direction: column; }
}

/* Add inside your CSS file */

/* Hamburger Menu Icon (Hidden on Desktop) */
.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-navy);
}

/* Mobile Responsive Styles */
@media (max-width: 900px) {
    /* Show the hamburger icon */
    .mobile-toggle { display: block; }

    /* Style the hidden menu to look like a dropdown or drawer when active */
    nav ul {
        display: none; /* Hidden by default */
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        text-align: center;
    }

    /* JavaScript will toggle this class to show the menu */
    nav ul.show-menu {
        display: flex;
    }
}

/* Add to your CSS file */
footer {
    background: var(--primary-navy);
    color: var(--white);
    padding: 40px 5%;
    text-align: center;
    margin-top: auto; /* Pushes footer to bottom if page content is short */
}

/* --- ABOUT PAGE STYLES --- */

/* Split Layout for Main Text */
.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 5%;
    background-color: var(--white);
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 2rem;
    color: var(--primary-navy);
    margin-bottom: 20px;
}

.about-content p {
    font-size: 1.05rem;
    color: var(--text-grey);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: var(--radius-card);
    box-shadow: 0 20px 40px rgba(14, 29, 82, 0.15); /* Soft navy shadow */
    width: 100%;
}

/* Mission & Vision Cards */
.values-section {
    padding: 60px 5% 100px; /* Extra padding at bottom */
    background-color: var(--bg-light);
}

.values-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.value-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-card);
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border-top: 4px solid var(--accent-cyan); /* Nice accent bar on top */
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: rgba(47, 172, 226, 0.1); /* Light Cyan Circle */
    color: var(--accent-cyan);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.value-card h3 {
    color: var(--primary-navy);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-grey);
    font-size: 1rem;
}

/* Mobile Responsiveness for About Page */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        padding: 50px 5%;
        text-align: center;
    }
    
    .values-grid {
        flex-direction: column;
    }
}

.logo {
    display: block;
    line-height: 0; /* Removes extra space below image */
}

.logo img {
    height: 50px; /* Constrains height to fit the navbar */
    width: auto;  /* Maintains aspect ratio */
    display: block;
}

/* --- PROJECT MODAL STYLES --- */

/* The Dark Background Overlay */
.modal {
    display: none; /* Hidden by default */
    position: fixed; 
    z-index: 2000; /* Sit on top of everything */
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    background-color: rgba(0,0,0,0.85); /* Black w/ opacity */
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(5px); /* Nice blur effect on background */
}

/* The White Content Box */
.modal-content {
    background-color: var(--white);
    margin: auto;
    padding: 40px;
    border-radius: var(--radius-card);
    width: 100%;
    max-width: 900px;
    max-height: 90vh; /* Don't be taller than screen */
    overflow-y: auto; /* Allow scrolling inside modal */
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Close Button (X) */
.close-modal {
    color: var(--text-grey);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}

.close-modal:hover {
    color: var(--accent-cyan);
}

/* Modal Typography */
#modal-title {
    color: var(--primary-navy);
    font-size: 2rem;
    margin-bottom: 10px;
}

#modal-desc {
    color: var(--text-grey);
    margin-bottom: 30px;
    font-size: 1.1rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

/* The Grid of Images Inside the Modal */
.modal-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.modal-gallery img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Interaction Cues for Masonry Items */
.masonry-item {
    cursor: pointer;
}

.view-btn {
    display: inline-block;
    margin-top: 15px;
    font-weight: 600;
    font-size: 0.9rem;
    border-bottom: 2px solid var(--accent-cyan);
    padding-bottom: 2px;
}

/* --- NEW: PRODUCT CATALOG SECTIONS --- */

.catalog-section {
    padding: 60px 0;
    /* This adds separation between Indoor, Outdoor, and Poles */
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-navy);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    width: 100%;
}

/* Optional: Add a small line under the title */
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-cyan);
    margin: 10px auto 0;
    border-radius: 2px;
}

/* --- HOME PRODUCT SECTION --- */
.home-products-section {
    padding: 80px 5%;
    background-color: var(--bg-light);
    text-align: center;
}

.container-centered {
    max-width: 1200px;
    margin: 0 auto;
}

.section-subtitle {
    color: var(--text-grey);
    margin-bottom: 50px;
    margin-top: -15px;
}

.home-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.home-prod-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-card);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: block;
    border: 1px solid transparent;
}

.home-prod-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--accent-cyan);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: rgba(47, 172, 226, 0.1);
    color: var(--accent-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    transition: background 0.3s, color 0.3s;
}

.home-prod-card:hover .icon-box {
    background: var(--accent-cyan);
    color: var(--white);
}

.home-prod-card h3 {
    color: var(--primary-navy);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.home-prod-card p {
    color: var(--text-grey);
    margin-bottom: 20px;
}

.link-text {
    color: var(--accent-cyan);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* --- HOME GALLERY MARQUEE --- */
.home-gallery-section {
    padding: 80px 0; /* Full width, no side padding on container */
    background: var(--white);
    overflow: hidden; /* Hides the scrollbar */
}

.gallery-header {
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.gallery-header h2 {
    font-size: 2rem;
    color: var(--primary-navy);
}

.btn-outline {
    border: 2px solid var(--primary-navy);
    padding: 10px 25px;
    border-radius: 50px;
    color: var(--primary-navy);
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--primary-navy);
    color: var(--white);
}

/* Marquee Animation Logic */
.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    gap: 20px;
    width: max-content; /* Allows track to be wider than screen */
    animation: scroll 25s linear infinite; /* The moving animation */
}

.marquee-track img {
    height: 300px; /* Fixed height for uniformity */
    width: auto;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.marquee-track img:hover {
    transform: scale(1.02);
}

/* The Animation Keyframes */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Moves halfway because we duplicated images */
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .marquee-track img { height: 200px; }
    .gallery-header { flex-direction: column; text-align: center; }
}

/* --- NEW FOOTER STYLES --- */
.main-footer {
    background-color: var(--primary-navy);
    color: var(--white);
    padding-top: 60px;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5% 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 10px;
}

.contact-line i {
    margin-right: 10px;
    color: var(--accent-cyan);
}

/* Links Styling */
.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cccccc;
    transition: color 0.3s, padding-left 0.3s;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--accent-cyan);
    padding-left: 5px; /* Slight movement effect */
}

/* Bottom Bar */
.footer-bottom {
    background-color: #081236; /* Slightly darker shade */
    padding: 20px 5%;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #888;
    margin: 0;
}

/* Mobile: Stack columns */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }
}

/* --- PRODUCTS GRID LAYOUT (4 Columns) --- */
.products-container {
    display: grid;
    /* This forces exactly 4 columns */
    grid-template-columns: repeat(4, 1fr); 
    gap: 30px; /* Space between the cards */
    padding: 20px 5% 60px;
    width: 100%;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.product-img {
    height: 200px; /* Fixed height ensures uniform grid */
    overflow: hidden;
    background-color: #f0f0f0;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers area without stretching */
    transition: transform 0.5s;
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
    text-align: center;
    flex-grow: 1; /* Ensures cards are same height even with different text amounts */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-info h3 {
    font-size: 1.1rem;
    color: var(--primary-navy);
    margin-bottom: 0;
}

/* --- RESPONSIVENESS --- */

/* On Laptops (below 1200px): Switch to 3 columns */
@media (max-width: 1200px) {
    .products-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* On Tablets (below 900px): Switch to 2 columns */
@media (max-width: 900px) {
    .products-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* On Phones (below 600px): Switch to 1 column */
@media (max-width: 600px) {
    .products-container {
        grid-template-columns: 1fr;
    }
}

/* Add this to style.css */
nav a.active {
    color: var(--accent-cyan);
}