 /* --- STYLES SPECIFICALLY FOR THE GALLERY SECTION --- */
        .gallery-section {
            padding: 80px 0;
            background-color: #fff;
        }

        .gallery-grid {
            display: grid;
            /* 4 Columns on Large Screens */
            grid-template-columns: repeat(4, 1fr); 
            gap: 20px;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Responsive Grid */
        @media (max-width: 1200px) {
            .gallery-grid { grid-template-columns: repeat(3, 1fr); }
        }
        @media (max-width: 992px) {
            .gallery-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 576px) {
            .gallery-grid { grid-template-columns: 1fr; }
        }

        /* Gallery Item Styling */
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            background: #f4f4f4;
            aspect-ratio: 4/3; /* Maintain aspect ratio */
            cursor: pointer;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        /* Hover Effect Overlay */
        .gallery-overlay {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0, 0, 0, 0.6);
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        /* Hover Actions */
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        /* Zoom Icon */
        .gallery-icon {
            color: #fff;
            font-size: 2rem;
            background: rgba(255,255,255,0.2);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            border: 2px solid #fff;
            transition: all 0.3s ease;
        }
        
        .gallery-item:hover .gallery-icon {
            background: #b89d64; /* Matching your accent color */
            border-color: #b89d64;
            transform: translateY(-5px);
        }/* --- Right Column: Query Form --- */
        .contact-form h2 {
            margin-bottom: 20px;
            color: #333;
            font-size: 28px;
            border-bottom: 2px solid #0056b3;
            display: inline-block;
            padding-bottom: 5px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #444;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 16px;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #0056b3;
            outline: none;
        }

        .form-group textarea {
            height: 150px;
            resize: vertical;
        }

        .submit-btn {
            background-color: #0056b3;
            color: white;
            border: none;
            padding: 12px 30px;
            font-size: 18px;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s;
            width: 100%;
        }

        .submit-btn:hover {
            background-color: #004494;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .contact-wrapper {
                grid-template-columns: 1fr; /* Stack columns on mobile */
                padding: 20px;
            }
        }
				  .form-container {
            max-width: 500px;  
            margin: 0 auto;
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .form-header {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .form-header h2 {
            color: #333;
            font-weight: 700;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .control-label {
            font-weight: 600;
            color: #555;
        }
        
        .form-control {
            border-radius: 5px;
            border: 1px solid #ddd;
            padding: 12px;
            transition: border-color 0.3s;
        }
        
        .form-control:focus {
            border-color: #4e73df;
            box-shadow: 0 0 0 0.2rem rgba(78, 115, 223, 0.25);
        }
        
        .btn-primary {
            background-color: #4e73df;
            border-color: #4e73df;
            font-weight: 600;
            padding: 12px 20px;
            transition: all 0.3s;
        }
        
        .btn-primary:hover {
            background-color: #2e59d9;
            border-color: #2653d4;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        /* Notification Popup Styles */
        .notification-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
        }
        
        .notification-overlay.show {
            opacity: 1;
            visibility: visible;
        }
        
        .notification-popup {
            background-color: white;
            padding: 40px;
            border-radius: 10px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            transform: scale(0.7);
            transition: transform 0.3s;
        }
        
        .notification-overlay.show .notification-popup {
            transform: scale(1);
        }
        
        .notification-icon {
            font-size: 60px;
            color: #28a745;
            margin-bottom: 20px;
        }
        
        .notification-title {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #333;
        }
        
        .notification-message {
            font-size: 16px;
            color: #666;
            margin-bottom: 25px;
        }
        
        .close-notification {
            background-color: #4e73df;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        
        .close-notification:hover {
            background-color: #2e59d9;
        }
        
        .loading-spinner {
            display: none;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top-color: #fff;
            animation: spin 1s ease-in-out infinite;
            margin-right: 10px;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        .required-field {
            color: #e74a3b;
        }  table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 20px;
        }
        th, td {
            border: 1px solid #ddd;
            padding: 12px;
            text-align: left;
        }
        th {
            background-color: #f2f2f2;
            font-weight: bold;
        }
        .additional-info {
            margin-top: 30px;
        }
        .info-item {
            margin-bottom: 10px;
        } /* =========================================
           TEXT CONTENT SECTION
           ========================================= */
        .text-content-section {
            padding: 60px 0;
            background-color: var(--white);
        }
        .text-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        .feature-box {
            background: var(--light);
            padding: 30px;
            border-radius: 8px;
            border-left: 4px solid var(--secondary);
        }
        .feature-box h3 {
            margin-bottom: 15px;
            color: var(--primary);
            font-family: var(--font-head);
        } .clients-section {
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .clients-section h2 {
      font-size: 32px;
      margin-bottom: 30px;
      color: #0177BF;
    }

    .clients-logos {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
    }

    .client-logo {
      background: #ffffff;
      border-radius: 15px;
      padding: 20px;
      width: 150px;
      height: 100px;
     
      display: flex;
      align-items: center;
      justify-content: center;
    }

    

    .client-logo img {
      max-width: 100%;
      max-height: 90px;
      object-fit: contain;
    }

    @media (max-width: 768px) {
      .client-logo {
        width: 120px;
        height: 90px;
      }
    }  /* 2. Main Grid Layouts */
    .about-section { padding: 80px 0; }
    .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: center;
    }
    @media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; } }

    .about-text h2 { font-family: sans-serif; color: #0284c7; font-size: 2rem; margin-bottom: 20px; }
    .about-text p { color: #555; line-height: 1.6; margin-bottom: 20px; font-size: 1rem; }
    .section-subtitle { color: #ea580c; font-weight: bold; text-transform: uppercase; display: block; margin-bottom: 10px; }

    /* 3. Product/Text Images */
    .about-img-wrapper { width: 100%; border-radius: 10px; overflow: hidden; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
    .about-img-wrapper img { width: 100%; display: block; }

    /* 4. Gallery Grid */
    .product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 50px;
    }
    .product-card { background: white; border-radius: 8px; overflow: hidden; }
    .product-card img { width: 100%; height: 250px; object-fit: cover; display: block; }
    
    /* 5. Application List */
    .app-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        list-style: none;
        padding: 0;
        margin-top: 20px;
        background: #f8fafc;
        padding: 30px;
        border-radius: 8px;
    }
    .app-list li { display: flex; align-items: center; gap: 10px; color: #333; font-size: 0.95rem; }

    /* 6. Buttons */
    .btn { padding: 12px 25px; background: #0284c7; color: white; border: none; text-decoration: none; display: inline-block; border-radius: 4px; font-weight: bold; } /* --- 1. PAGE BANNER STYLES --- */
.page-banner {
    position: relative;
    height: 70vh; /* Height of the banner image */
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #000;
}

.page-banner img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.page-banner .banner-content {
    position: relative;
    z-index: 2;
    color: white;
}

.page-banner h1 {
    font-family: 'Montserrat', sans-serif; /* Ensure font matches */
    font-size: 2.5rem;
    font-weight: 700; color: #fff;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    margin-top: 50px;
    text-transform: uppercase;
}

/* --- 2. TEAM LAYOUT STYLES (Zigzag) --- */
.team-profile-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

/* This class reverses the layout (Image Right, Text Left) */
.team-profile-row.reverse {
    flex-direction: row-reverse;
}

.team-img-wrapper {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.team-img-wrapper img {
    width: 100%;
    transition: 0.5s;
    height: auto;
}

.team-img-wrapper:hover img {
    transform: scale(1.05);
}

.team-content-wrapper {
    flex: 1.5;
}

.team-role {
    color: #0284c7; /* Primary Color */
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.team-quote {
    font-style: italic;
    background: #f8fafc;
    padding: 20px;
    border-left: 4px solid #ea580c; /* Accent Color */
    margin-top: 20px;
    color: #64748b;
}

/* --- 3. MOBILE RESPONSIVENESS FOR TEAM --- */
@media (max-width: 992px) {
    .team-profile-row { 
        flex-direction: column; 
    }
    .team-profile-row.reverse { 
        flex-direction: column; 
    }
    .page-banner h1 { 
        font-size: 2.5rem; 
    }
    .page-banner {
        height: 40vh;
    }
}
/* --- TEAM LAYOUT (ZigZag for Detailed Bios) --- */
.team-profile-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.team-profile-row.reverse {
    flex-direction: row-reverse;
}

.team-img-wrapper {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.team-img-wrapper img {
    width: 100%;
    transition: 0.5s;
}

.team-img-wrapper:hover img {
    transform: scale(1.05);
}

.team-content-wrapper {
    flex: 1.5;
}

.team-role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-quote {
    font-style: italic;
    background: var(--bg-alt);
    padding: 20px;
    border-left: 4px solid var(--accent);
    margin-top: 20px;
    color: var(--text-light);
}

@media (max-width: 992px) {
    .team-profile-row { flex-direction: column; }
    .team-profile-row.reverse { flex-direction: column; }
    .page-banner h1 { font-size: 2.5rem; }
}/* --- 1. CSS VARIABLES (LIGHT THEME) --- */
:root {
    --bg-body: #ffffff;
    --bg-alt: #f8fafc; /* Very light blue-grey */
    --bg-section: #e2e8f0; /* Slightly darker for contrast */
    
    --primary: #0284c7; /* Industrial Sky Blue */
    --primary-dark: #0369a1;
    --accent:#0284C7; /* Industrial Orange */
    
    --text-main: #1e293b; /* Dark Slate */
    --text-light: #64748b; /* Muted Grey */
    --text-white: #ffffff;
    
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--text-main);
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { width: 100%; display: block; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- 2. SCROLL ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 1s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: 1s ease-out;
}
.reveal-left.active { opacity: 1; transform: translateX(0); }

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: 1s ease-out;
}
.reveal-right.active { opacity: 1; transform: translateX(0); }

/* --- 3. HEADER & NAV (LIGHT GLASS) --- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
    transition: var(--transition);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
}
.logo img{ 
    
    display: flex;
    align-items: center; width: 90px; height: auto;
    text-transform: uppercase;
}

.logo i { color: var(--accent); font-size: 1.4rem; }

/* --- NAVIGATION STYLES --- */
.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-item {
    position: relative; /* CRITICAL: This anchors the dropdown to the menu item */
}

.nav-link {
    font-weight: 600;
    color: var(--text-main);
    position: relative;
    font-size: 0.95rem;
    display: block;
    padding: 10px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}

.nav-link:hover { color: var(--primary); }
.nav-link:hover::after { width: 100%; }

/* --- MAIN DROPDOWN (Under Menu) --- */
.dropdown {
    position: absolute;
    top: 100%;        /* Positions it immediately below the parent item */
    left: 0;          /* Aligns it to the left edge of the parent item */
    background: white;
    min-width: 240px;
    box-shadow: var(--shadow-md);
    border-top: 3px solid var(--accent);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 10px 0;
    z-index: 999;
}

/* Show dropdown on hover */
.nav-item:hover > .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 8px 25px;
    color: var(--text-main);
    font-size: 0.9rem;
    transition: 0.3s;
}

.dropdown li a:hover {
    background-color: var(--bg-alt);
    color: var(--primary);
    padding-left: 35px;
}

/* --- SUB DROPDOWN (Right of Main Dropdown) --- */
.dropdown-sub {
    position: absolute;
    top: 0;
    left: 100%;        /* Positions it to the right of the parent list item */
    background: white;
    min-width: 220px;
    box-shadow: var(--shadow-md);
    border-top: 3px solid var(--accent);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    padding: 10px 0;
    z-index: 1000;
}

/* Show sub-dropdown on hover */
.dropdown li:hover > .dropdown-sub {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Mobile Button Style fix (ensure it stays on same line) */
.nav-item:last-child .btn {
    padding: 8px 20px; /* Adjust padding for menu fit */
}

/* --- 4. HERO CAROUSEL (DIAGONAL REVEAL) --- */
.hero-carousel {
    height: 80vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-top: 100px;
}

.slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    display: flex;
    align-items: center;
    z-index: 1;
}

/* THE UNIQUE TRANSFORMATION EFFECT: CLIP-PATH + SCALE */
.slide-bg-img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    /* Diagonal wipe effect: Starts invisible from bottom-right */
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    transform: scale(1.1); /* Slightly zoomed out initially */
    transition: all 1s cubic-bezier(0.77, 0, 0.175, 1); /* Smooth ease-out */
    filter: brightness(0.7);
}

.slide.active .slide-bg-img {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); /* Expands to full */
    transform: scale(1); /* Zooms in to full size */
    filter: brightness(0.9); /* Brightens up */
}

.slide-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.4) 100%);
    z-index: 2;
}

.slide-content {
    position: relative;
    z-index: 3;
    max-width: 650px;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease-out 0.3s; /* Delayed entrance */
}

.slide.active .slide-content {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered Text Animations */
.slide.active .hero-subtitle {
    animation: slideUp 0.8s forwards 0.4s;
    opacity: 0;
}
.slide.active .hero-title {
    animation: slideUp 0.8s forwards 0.6s;
    opacity: 0;
}
.slide.active .hero-desc {
    animation: slideUp 0.8s forwards 0.8s;
    opacity: 0;
}
.slide.active .hero-btns {
    animation: slideUp 0.8s forwards 1s;
    opacity: 0;
}

.hero-subtitle {
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    display: block;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--text-main);
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 35px;
}

/* CONTROLS */
.slider-controls {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    gap: 15px;
    z-index: 10;
}

.control-btn {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: none;
    color: var(--primary);
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- 5. ABOUT SECTION (ASYMMETRICAL) --- */
.about-section { padding: 100px 0; background: var(--bg-body); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img-wrapper {
    position: relative;
}

.about-img {
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    z-index: 2;
    position: relative;height:auto;
}

/* Decorative box behind image */
.about-img-wrapper::after {
    content: '';
    position: absolute;
    top: -20px; left: -20px;
    width: 100%; height: 100%;
    border: 2px solid var(--primary);
    border-radius: 10px;
    z-index: 1;
}

.section-subtitle {
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 25px;
    position: relative;
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: -10px; left: 0;
    width: 60px; height: 4px;
    background: var(--primary);
}

/* --- 6. WHY CHOOSE (GRID) --- */
.why-section { padding: 80px 0; background: var(--bg-alt); }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--primary);
}

.f-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

/* --- 7. STATS STRIP (COUNTERS) --- */
.stats-section {
    background: var(--primary);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Background pattern */
.stats-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.stat-item { text-align: center; }

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    display: block;
    margin-bottom: 5px;
}

.stat-label { font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.9; }

/* --- 8. QUALITY PHILOSOPHY --- */
.quality-section { padding: 100px 0; }

.quality-container {
    display: flex;
    align-items: center;
    gap: 50px;
    background: var(--bg-alt);
    padding: 50px;
    border-radius: 15px;
}

.quality-text { flex: 1; }
.quality-img { flex: 1; border-radius: 10px; overflow: hidden; box-shadow: var(--shadow-md); }

/* --- 9. PRODUCTS --- */
.products-section { padding: 100px 0; }

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.p-img { height: 220px; overflow: hidden; position: relative; }
.p-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.product-card:hover .p-img img { transform: scale(1.1); }

.p-content { padding: 25px; }
.p-tag { background: var(--bg-section); color: var(--text-light); padding: 4px 10px; font-size: 0.8rem; border-radius: 4px; display: inline-block; margin-bottom: 10px; }

/* --- 10. TESTIMONIALS & LOGOS --- */
.testimonial-section { padding: 80px 0; background: var(--bg-alt); text-align: center; }
.testimonial-box {
    background: white;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    position: relative;
}
.quote-icon { font-size: 3rem; color: var(--primary); opacity: 0.2; position: absolute; top: 20px; left: 20px; }

.logos-section { padding: 40px 0; border-bottom: 1px solid #e2e8f0; }
.logo-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    opacity: 0.6;
}
.client-logo { max-height: 50px; transition: 0.3s; }
.client-logo:hover { opacity: 1; transform: scale(1.1); }

/* --- 11. FOOTER --- */
footer {
    background: var(--text-main);
    color: #cbd5e1;
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-brand h3 { color: white; margin-bottom: 20px; font-size: 1.5rem; }
.footer-brand p { margin-bottom: 20px; font-size: 0.95rem; }

.footer-col h4 { color: white; margin-bottom: 25px; font-size: 1.1rem; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { transition: 0.3s; display: inline-block; }
.footer-col ul li a:hover { color: var(--accent); padding-left: 5px; }

.contact-item { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 15px; }
.contact-item i { color: var(--primary); margin-top: 5px; }

.footer-bottom {
   width: 100%;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #334155;
    font-size: 0.9rem;
}

/* MEDIA QUERIES */
@media (max-width: 992px) {
    .navbar { padding: 0 20px; }
    .hamburger { display: block; z-index: 1001; }
    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        width: 80%; height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        box-shadow: -10px 0 30px rgba(0,0,0,0.2);
        transition: 0.4s ease;
    }
    .nav-menu.active { right: 0; }
    
    /* Mobile Dropdown */
    .dropdown, .dropdown-sub {
        position: static;
        visibility: visible;
        opacity: 1;
        transform: none;
        background: transparent;
        box-shadow: none;
        display: none;
        padding-left: 20px;
    }
    .nav-item:hover .dropdown, .dropdown li:hover .dropdown-sub { display: block; }

    .about-grid, .quality-container { grid-template-columns: 1fr; flex-direction: column; }
    .about-img-wrapper { order: -1; margin-bottom: 30px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-title { font-size: 2.5rem; }
}

@media (max-width: 600px) {
    .stats-grid { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; }
    .logo-grid { justify-content: center; }
}