/*--- SECTION 1 - HEADER ---*/

        /* CSS Variables */
        :root {
            --primary-blue: #0056b3;
            --dark-blue: #003d82;
            --light-blue: #e6f0ff;
            --white: #ffffff;
            --text-dark: #333333;
            --text-light: #f4f4f4;
            --gradient-bg: linear-gradient(135deg, #0052D4, #4364F7, #6FB1FC);
            
            --primary-blue: #0b5ed7;
            --dark-blue: #003a94;
            --bg-light: #f8f9fa;
            --text-dark: #1a1a1a;
            --text-gray: #666666;
            --white: #ffffff;
            --border-color: #e5e5e5;
            
            --primary-blue: #0b5ed7;
            --dark-blue: #0043a8;
            --light-bg: #f2f6fa;
            --white: #ffffff;
            --text-dark: #222222;
            --text-gray: #777777;
            --border-color: #e5e9f0;
            --price-blue: #3b82f6;
            
            --primary-blue: #0b5ed7;
            --dark-blue: #0043a8;
            --text-dark: #1a1a1a;
            --text-gray: #6b7280;
            --bg-color: #ffffff;
            --wave-color: #e5eaf2;
            
            --bg-primary: #004ea2; /* Deep solid blue background */
            --card-bg: #1665b5;    /* Lighter blue for cards */
            --text-light: #ffffff;
            --text-muted: rgba(255, 255, 255, 0.85);
            --accent-cyan: #66b2ff;
            
        }

        /* --- Reset & Base Styles --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        html, body {
            overflow-x: hidden;
            width: 100%;
            max-width: 100vw; /* Strictly limits width to the viewport */
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        /* --- Top Bar --- */
        .top-bar {
            background-color: var(--primary-blue);
            color: var(--white);
            font-size: 0.85rem;
            padding: 10px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .top-bar-left, .top-bar-right {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .top-bar i {
            margin-right: 8px;
            color: #8ac0ff;
        }

        /* --- Navbar --- */
        .navbar {
            background-color: var(--white);
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            position: relative;
            z-index: 1000;
        }

        .logo {
            display: flex;
            align-items: center;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--dark-blue);
            gap: 10px;
        }
        
        .logo img
        {
            width: 100%;
        }
        
        @media (max-width: 850px) {
           
            .logo {
                font-size: 1.4rem;
                gap: 5px; 
            }
        }

        .logo i {
            color: #4364F7;
        }

        .nav-links {
            display: flex;
            gap: 30px;
        }

        .nav-links li {
            position: relative;
        }

        .nav-links a {
            font-weight: 600;
            color: var(--text-dark);
            font-size: 0.9rem;
            text-transform: uppercase;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .nav-links a:hover {
            color: var(--primary-blue);
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .btn-order {
            background-color: var(--primary-blue);
            color: var(--white);
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.85rem;
            transition: background 0.3s, transform 0.2s;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .btn-order:hover {
            background-color: var(--dark-blue);
            transform: translateY(-2px);
        }

        .mobile-menu-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--dark-blue);
        }

        /* --- Hero Slider --- */
        .hero-section {
            position: relative;
            background: var(--gradient-bg);
            min-height: 80vh;
            overflow: hidden;
            display: flex;
            align-items: center;
            padding: 60px 0; /* Gives natural breathing room */
        }

        /* Background Bubbles Effect */
        .bubbles {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            z-index: 1;
            pointer-events: none;
            background-image: radial-gradient(rgba(255,255,255,0.1) 2px, transparent 2px), 
                              radial-gradient(rgba(255,255,255,0.15) 3px, transparent 3px);
            background-size: 60px 60px, 100px 100px;
            background-position: 0 0, 30px 30px;
            animation: bubbleRise 20s linear infinite;
        }

        @keyframes bubbleRise {
            0% { background-position: 0 0, 30px 30px; }
            100% { background-position: 0 -1000px, 30px -1000px; }
        }

        /* --- THE MAGIC FIX: CSS GRID STACKING --- */
        .slider-container {
            width: 100%;
            display: grid; /* Grid allows items to overlap perfectly without absolute positioning breaking heights */
            z-index: 2;
        }

        .slide {
            grid-area: 1 / 1; /* Forces all slides into the exact same grid cell */
            display: flex;
            align-items: center;
            padding: 0 8%;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.8s ease-in-out, visibility 0.8s;
            z-index: 1;
        }

        .slide.active {
            opacity: 1;
            visibility: visible;
            z-index: 2;
        }

        .slide-content {
            flex: 1;
            color: var(--white);
            transform: translateY(30px);
            transition: transform 0.8s ease-out;
            max-width: 650px;
            z-index: 5;
        }

        .slide.active .slide-content {
            transform: translateY(0);
        }

        .slide-content h1 {
            font-size: clamp(2.5rem, 5vw, 4rem); /* Fluid typography */
            line-height: 1.2;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .slide-content p {
            font-size: 1.1rem;
            margin-bottom: 40px;
            opacity: 0.9;
            line-height: 1.6;
        }

        .hero-buttons {
            display: flex;
            align-items: center;
            flex-wrap: wrap; /* Allows wrapping on small screens */
            gap: 30px;
        }

        .btn-read-more {
            background-color: transparent;
            color: var(--white);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
            text-transform: uppercase;
        }

        .btn-watch {
            display: flex;
            align-items: center;
            gap: 15px;
            color: var(--white);
            font-weight: 600;
            cursor: pointer;
        }

        .play-icon {
            width: 50px;
            height: 50px;
            background-color: var(--white);
            color: var(--primary-blue);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.2rem;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .btn-watch:hover .play-icon {
            transform: scale(1.1);
            box-shadow: 0 0 15px rgba(255,255,255,0.5);
        }

        .watch-text span {
            display: block;
            font-size: 0.8rem;
            font-weight: 400;
            opacity: 0.8;
        }

        .slide-image {
            flex: 1;
            display: flex;
            justify-content: flex-end;
            transform: translateX(50px);
            transition: transform 0.8s ease-out;
        }

        .slide.active .slide-image {
            transform: translateX(0);
        }

        .img-wrapper {
            position: relative;
            width: 100%;
            max-width: 500px;
            height: 500px;
            border-radius: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 20px;
        }

       
        /* --- Tablet Responsive --- */
        @media (max-width: 1024px) {
            .nav-links { gap: 15px; }
            .img-wrapper { height: 400px; max-width: 400px; }
        }

        /* --- Mobile Responsive Fixes --- */
        @media (max-width: 850px) {
            .top-bar { display: none; }
            
            /* Mobile Navbar Toggle */
            .nav-links {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--white);
                flex-direction: column;
                gap: 0;
                box-shadow: 0 10px 15px rgba(0,0,0,0.1);
                display: none;
                z-index: 999;
            }

            .nav-links.active { display: flex; }
            .nav-links li { padding: 15px 5%; border-bottom: 1px solid #eee; }
            .mobile-menu-toggle { display: block; }
            .btn-order { display: none; }
            
            /* Mobile Hero Layout Fix */
            .hero-section {
                padding: 80px 0; /* Natural top/bottom padding instead of fixed heights */
            }

            .slide {
                flex-direction: column;
                justify-content: center;
                text-align: center;
                padding: 0 5%;
                /* Grid cell handles overlapping, so NO absolute/relative positioning is needed here! */
            }

            .slide-content p {
                font-size: 0.95rem;
                margin-bottom: 30px;
            }

            .hero-buttons { 
                justify-content: center; 
                gap: 20px;
            }

            .slide-image {
                margin-top: 50px;
                justify-content: center;
                width: 100%;
                transform: translateY(30px);
            }

            .img-wrapper { 
                height: 300px; 
                max-width: 300px; 
                margin: 0 auto;
            }
        }

        /* Extra small phones */
        @media (max-width: 480px) {
            .slide-content h1 { font-size: 2.2rem; }
            .hero-buttons { flex-direction: column; gap: 15px; }
            .img-wrapper { height: 250px; max-width: 250px; }
        }
        
/*--- SECTION 1 - HEADER SECTION ---*/


/*--- SECTION 2 STYLES ---*/

    /* Scoped CSS Variables */
    .aq-srv-section {
        --aq-srv-primary: #0b5ed7; 
        --aq-srv-dark: #0043a8;
        --aq-srv-text-dark: #222222;
        --aq-srv-text-gray: #666666;
        --aq-srv-bg-color: #fdfdfd;
        --aq-srv-card-bg: #ffffff;
    }

    /* Base Scoping (Only affects elements inside this section) */
    .aq-srv-section * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Poppins', sans-serif;
    }

    .aq-srv-section a {
        text-decoration: none;
        color: inherit;
    }

    /* --- Section Container --- */
    .aq-srv-section {
        padding: 100px 5%;
        background-color: var(--aq-srv-bg-color);
        /* Premium subtle dotted background */
        background-image: radial-gradient(#d5d5d5 1px, transparent 1px);
        background-size: 20px 20px;
        position: relative;
    }

    /* --- Section Header --- */
    .aq-srv-header {
        text-align: center;
        max-width: 700px;
        margin: 0 auto 60px;
    }

    .aq-srv-subtitle {
        color: var(--aq-srv-primary);
        font-size: 0.85rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        display: block;
        margin-bottom: 10px;
    }

    .aq-srv-header h2 {
        font-size: 2.5rem;
        color: var(--aq-srv-text-dark);
        font-weight: 600;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    /* Custom Wave Line SVG */
    .aq-srv-wave-line {
        display: flex;
        justify-content: center;
    }

    .aq-srv-wave-line svg {
        width: 50px;
        height: 10px;
        fill: transparent;
        stroke: #66b2ff;
        stroke-width: 2px;
        stroke-linecap: round;
    }

    /* --- Services Grid --- */
    .aq-srv-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    /* --- Individual Card --- */
    .aq-srv-card {
        background: var(--aq-srv-card-bg);
        border-radius: 12px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.05);
        text-align: center;
        overflow: hidden;
        position: relative;
        padding-bottom: 30px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
    }

    .aq-srv-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    }

    /* Curved Blue Header Background */
    .aq-srv-card-header-bg {
        position: relative;
        background: var(--aq-srv-primary);
        height: 150px;
        z-index: 1;
        /* Subtle bubble texture overlay */
        background-image: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.1) 10px, transparent 11px),
                          radial-gradient(circle at 80% 60%, rgba(255,255,255,0.08) 15px, transparent 16px);
    }

    /* Creates the convex downward curve */
    .aq-srv-card-header-bg::after {
        content: '';
        position: absolute;
        bottom: -35px;
        left: -10%;
        width: 120%;
        height: 80px;
        background: var(--aq-srv-primary);
        border-radius: 50%;
        z-index: -1;
    }

    /* Circular Image Setup */
    .aq-srv-card-image {
        position: relative;
        margin-top: -90px;
        z-index: 2;
        display: flex;
        justify-content: center;
    }

    .aq-srv-card-image img {
        width: 180px;
        height: 180px;
        border-radius: 50%;
        object-fit: cover;
        border: 6px solid var(--aq-srv-card-bg);
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        background-color: #eee;
    }

    /* Little Circular Badge Overlapping Image */
    .aq-srv-card-icon {
        position: absolute;
        bottom: -15px;
        width: 44px;
        height: 44px;
        background: var(--aq-srv-card-bg);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        color: var(--aq-srv-primary);
        font-size: 1.1rem;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        border: 1px solid #f0f0f0;
    }

    /* Card Content */
    .aq-srv-card-body {
        padding: 45px 30px 20px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .aq-srv-card-body h3 {
        font-size: 1.3rem;
        color: var(--aq-srv-text-dark);
        margin-bottom: 12px;
        font-weight: 600;
    }

    .aq-srv-card-body p {
        font-size: 0.9rem;
        color: var(--aq-srv-text-gray);
        line-height: 1.6;
        margin-bottom: 25px;
        flex-grow: 1;
    }

    .aq-srv-read-more {
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--aq-srv-text-dark);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: color 0.3s;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .aq-srv-read-more i {
        font-size: 0.8rem;
        transition: transform 0.3s;
    }

    .aq-srv-read-more:hover {
        color: var(--aq-srv-primary);
    }

    .aq-srv-read-more:hover i {
        transform: translateX(4px);
    }

    /* --- Bottom Button --- */
    .aq-srv-footer {
        text-align: center;
        margin-top: 50px;
    }

    .aq-srv-btn-primary {
        background-color: var(--aq-srv-primary);
        color: #ffffff;
        padding: 12px 35px;
        border-radius: 30px;
        font-weight: 600;
        font-size: 0.9rem;
        display: inline-block;
        transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
        box-shadow: 0 4px 15px rgba(11, 94, 215, 0.3);
    }

    .aq-srv-btn-primary:hover {
        background-color: var(--aq-srv-dark);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(11, 94, 215, 0.4);
    }

    /* --- Responsive Adjustments --- */
    @media (max-width: 768px) {
        .aq-srv-header h2 {
            font-size: 2rem;
        }
        .aq-srv-section {
            padding: 60px 5%;
        }
    }
        
/*--- SECTION 2 STYLES ---*/

/*--- SECTION 3 STYLES ---*/

/* --- Global Utility Classes --- */
    .stats-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 5%;
    }

    /* --- 1. Statistics Section --- */
    .stats-section {
        background-color: var(--dark-blue, #0043a8);
        padding: 40px 0;
    }

    .stats-grid {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-item {
        display: flex;
        align-items: center; /* Horizontally aligned on desktop */
        gap: 15px;
        color: #ffffff;
        position: relative;
        flex: 1;
        min-width: 180px;
    }

    /* Subtle angled divider between stats (Desktop Only) */
    .stat-item:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%) rotate(15deg);
        height: 40px;
        width: 1px;
        background-color: rgba(255, 255, 255, 0.2);
    }

    .stat-number {
        font-size: 2.2rem;
        font-weight: 700;
        line-height: 1;
    }

    .stat-text {
        font-size: 0.8rem;
        font-weight: 500;
        line-height: 1.3;
        opacity: 0.9;
    }

    /* --- RESPONSIVE FIXES (Tablet & Mobile) --- */
    
    /* Tablet Landscape (1024px and below) */
    @media (max-width: 1024px) {
        .stats-grid {
            justify-content: center;
            gap: 40px; /* Adds vertical space between rows */
        }
        
        .stat-item {
            flex-direction: column; /* Stacks number on top of text */
            text-align: center; /* Center-aligns the text */
            justify-content: center;
            flex: 0 0 25%; /* Allows items to wrap neatly */
            min-width: 140px;
        }

        .stat-item:not(:last-child)::after {
            display: none; /* Hides dividers on mobile/tablet to prevent clipping */
        }
    }

    /* Tablet Portrait & Large Mobile (768px and below) */
    @media (max-width: 768px) {
        .stat-item {
            flex: 0 0 40%; /* Creates a clean 2-column grid */
        }
    }

    /* Small Mobile Phones (480px and below) */
    @media (max-width: 480px) {
        .stat-item {
            flex: 0 0 100%; /* Stacks beautifully in a single center-aligned column */
            margin-bottom: 10px;
        }
    }
        
/*--- SECTION 3 STYLES ---*/

/*--- SECTION 4 STYLES ---*/
        
        /* --- 2. About Company Section --- */
        .about-section {
            padding: 100px 0;
            position: relative;
        }

        /* Top Header Area (Split Title & Certification) */
        .about-header-flex {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 40px;
            gap: 40px;
        }

        .about-title-area h2 {
            font-size: 2.5rem;
            color: var(--text-dark);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .cert-box {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 20px 30px;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            background-color: var(--white);
            max-width: 400px;
        }

        .cert-icon {
            width: 60px;
            height: auto;
        }

        .cert-content h4 {
            color: var(--text-dark);
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .cert-content p {
            font-size: 0.75rem;
            color: var(--text-gray);
            line-height: 1.4;
        }

        /* Content Area (Tabs & Image Grid) */
        .about-content-wrapper {
            position: relative;
            z-index: 2;
        }

        /* Tabs Styling */
        .tabs-container {
            display: flex;
            max-width: 600px;
            position: relative;
            z-index: 5;
            margin-bottom: -1px; /* Pull down to overlap image slightly if needed */
        }

        .tab {
            flex: 1;
            padding: 20px 30px;
            display: flex;
            align-items: center;
            gap: 15px;
            font-weight: 600;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .tab-number {
            font-size: 1.5rem;
            font-weight: 700;
            opacity: 0.5;
        }

        .tab.active {
            background-color: var(--primary-blue);
            color: var(--white);
            border-radius: 8px 8px 0 0;
            box-shadow: 0 -5px 15px rgba(0,0,0,0.05);
        }

        .tab.active .tab-number {
            opacity: 1;
            color: var(--white);
        }

        .tab:not(.active) {
            background-color: var(--bg-light);
            color: var(--text-dark);
            border: 1px solid var(--border-color);
            border-bottom: none;
            border-radius: 8px 8px 0 0;
        }

        .tab:not(.active):hover {
            background-color: #f1f4f8;
        }

        /* Image & Overlapping Card Wrapper */
        .about-visual-area {
            position: relative;
            border-radius: 0 8px 8px 8px;
            /* Premium wavy background pattern */
            background-image: repeating-linear-gradient(45deg, #f0f4f8, #f0f4f8 2px, transparent 2px, transparent 12px);
            padding: 30px 30px 30px 0;
        }

        .main-image {
            width: 100%;
            max-width: 900px;
            border-radius: 8px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            position: relative;
            z-index: 2;
        }

        /* Overlapping White Info Card */
        .floating-info-card {
            position: absolute;
            bottom: 60px;
            right: 0; /* Extends past the image container */
            width: 380px;
            background-color: var(--white);
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
            z-index: 10;
        }

        .floating-info-card h3 {
            font-size: 1.4rem;
            color: var(--text-dark);
            margin-bottom: 15px;
            line-height: 1.3;
            font-weight: 700;
        }

        .floating-info-card p {
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .read-more-link {
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--text-dark);
            text-transform: uppercase;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: color 0.3s;
        }

        .read-more-link i {
            font-size: 0.75rem;
            transition: transform 0.3s;
        }

        .read-more-link:hover {
            color: var(--primary-blue);
        }

        .read-more-link:hover i {
            transform: translateX(4px);
        }

        /* --- Responsive Design --- */
        @media (max-width: 1024px) {
            .stat-item:not(:last-child)::after {
                display: none; /* Hide dividers on tablet/mobile for cleaner wrap */
            }
            .about-header-flex {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }
            .floating-info-card {
                right: 20px;
                width: 340px;
                padding: 30px;
            }
        }

        @media (max-width: 768px) {
            .stats-grid {
                justify-content: center;
            }
            .stat-item {
                flex: 0 0 45%;
                justify-content: center;
            }
            .about-section {
                padding: 60px 0;
            }
            .about-title-area h2 {
                font-size: 2rem;
            }
            .tabs-container {
                flex-direction: column;
            }
            .tab {
                border-radius: 0;
                border: 1px solid var(--border-color);
            }
            .tab.active {
                border-radius: 8px 8px 0 0;
            }
            .about-visual-area {
                padding: 20px 0 0 0;
                background-image: none; /* Remove pattern on mobile for cleanliness */
            }
            
            /* Make overlapping card stack nicely on mobile */
            .floating-info-card {
                position: relative;
                bottom: auto;
                right: auto;
                width: 90%;
                margin: -40px auto 0; /* Overlap upwards slightly */
                padding: 25px;
            }
        }

        @media (max-width: 480px) {
            .stat-item {
                flex: 0 0 100%;
                justify-content: flex-start;
            }
        }
        
/*--- SECTION 4 STYLES ---*/

/*--- SECTION 5 STYLES ---*/


        /* --- Products Section --- */
    .products-section {
        position: relative;
        padding: 80px 5% 100px;
        background: linear-gradient(to bottom, var(--light-bg) 0%, var(--light-bg) 40%, var(--white) 40%, var(--white) 100%);
        z-index: 1;
        overflow: hidden; /* FIX: Prevents the giant text from causing horizontal scrolling */
    }

    /* Giant Faint Background Text */
    .giant-bg-text {
        position: absolute;
        top: 100px;
        left: 50%;
        transform: translateX(-50%);
        font-size: clamp(2.5rem, 8vw, 7rem); /* FIX: Scaled down slightly for mobile */
        font-weight: 900;
        color: rgba(0, 0, 0, 0.03);
        white-space: nowrap;
        z-index: -1;
        pointer-events: none;
        letter-spacing: 2px;
        text-transform: uppercase;
        width: 100%; /* FIX: Forces it to respect container boundaries */
        text-align: center;
    }

    /* --- Top Overlapping Badge --- */
    .top-badge-container {
        position: absolute;
        top: -50px; /* Overlaps previous section */
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .main-circle {
        width: 120px;
        height: 120px;
        background-color: var(--dark-blue);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 5px solid var(--white);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        position: relative;
    }

    .main-circle i {
        font-size: 3rem;
        color: var(--white);
    }

    .mini-badge {
        position: absolute;
        bottom: 10px;
        left: -20px;
        background-color: var(--primary-blue);
        color: var(--white);
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-size: 0.6rem;
        font-weight: 700;
        line-height: 1.2;
        border: 3px solid var(--white);
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    /* --- Section Header --- */
    .section-header {
        text-align: center;
        max-width: 600px;
        margin: 60px auto 50px;
    }

    .subtitle {
        color: var(--primary-blue);
        font-size: 0.8rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        display: block;
        margin-bottom: 10px;
    }

    .section-header h2 {
        font-size: 1.8rem;
        color: var(--text-dark);
        font-weight: 600;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .wave-line svg {
        width: 40px;
        height: 8px;
        fill: transparent;
        stroke: #66b2ff;
        stroke-width: 2px;
        stroke-linecap: round;
    }

    /* --- Product Grid --- */
    .products-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
        max-width: 1400px;
        margin: 0 auto;
    }

    /* --- Product Card --- */
    .product-card {
        background: var(--white);
        border: 1px solid var(--border-color);
        border-radius: 4px;
        padding: 10px;
        text-align: center;
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .product-card:hover {
        box-shadow: 0 15px 35px rgba(0,0,0,0.06);
        transform: translateY(-5px);
        border-color: #d0d9e6;
    }

    .product-image-wrapper {
        border: 1px solid var(--border-color);
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 280px;
        background-color: #fafbfc;
    }

    .product-image-wrapper img {
        max-height: 100%;
        object-fit: contain;
        transition: transform 0.4s ease;
    }

    .product-card:hover .product-image-wrapper img {
        transform: scale(1.08);
    }

    .product-price {
        color: var(--price-blue);
        font-weight: 700;
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .product-title {
        font-size: 1rem;
        color: var(--text-dark);
        font-weight: 600;
        margin-bottom: 8px;
    }

    .product-desc {
        font-size: 0.75rem;
        color: var(--text-gray);
        margin-bottom: 20px;
        line-height: 1.5;
        flex-grow: 1; /* Pushes button to bottom */
    }

    .btn-add-cart {
        background-color: var(--primary-blue);
        color: var(--white);
        border: none;
        padding: 10px 20px;
        border-radius: 30px;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        cursor: pointer;
        transition: background 0.3s, transform 0.2s;
        display: inline-block;
        margin: 0 auto 10px;
    }

    .btn-add-cart:hover {
        background-color: var(--dark-blue);
        transform: translateY(-2px);
    }

    /* --- Responsive Design --- */
    @media (max-width: 1200px) {
        .products-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    @media (max-width: 900px) {
        .products-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .giant-bg-text {
            top: 80px;
        }
    }

    @media (max-width: 500px) {
        .products-grid {
            grid-template-columns: 1fr;
            max-width: 320px;
        }
        .section-header h2 {
            font-size: 1.5rem;
        }
    }

/*--- SECTION 5 STYLES ---*/

/*--- SECTION 6 STYLES ---*/

/* --- Section Container --- */
        .why-us-section {
            padding: 100px 5%;
            position: relative;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        /* --- Section Header --- */
        .section-header {
            margin-bottom: 60px;
            max-width: 600px;
        }

        .subtitle {
            color: var(--primary-blue);
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            display: block;
            margin-bottom: 12px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            color: var(--text-dark);
            font-weight: 600;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .wave-line svg {
            width: 50px;
            height: 10px;
            fill: transparent;
            stroke: #66b2ff;
            stroke-width: 2.5px;
            stroke-linecap: round;
        }

        /* --- Features Layout --- */
        .features-wrapper {
            position: relative;
            margin-top: 40px;
        }

        /* Central Decorative Vertical Waves */
        .central-waves {
            position: absolute;
            top: -20px;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            z-index: 1;
            pointer-events: none;
        }

        .features-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px 180px; /* Large column gap to make room for waves */
            position: relative;
            z-index: 2;
        }

        /* --- Feature Item --- */
        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 25px;
        }

        /* Premium Scalloped Icon Shape (Pure CSS) */
        .icon-wrapper {
            position: relative;
            width: 65px;
            height: 65px;
            flex-shrink: 0;
            margin-top: 5px;
        }

        .icon-bg {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background-color: var(--dark-blue);
            border-radius: 16px;
            box-shadow: 0 8px 20px rgba(0, 67, 168, 0.2);
            transition: transform 0.4s ease, background-color 0.3s;
        }

        .icon-bg::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background-color: var(--dark-blue);
            border-radius: 16px;
            transform: rotate(45deg);
            transition: background-color 0.3s;
        }

        .icon-wrapper i {
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            color: #ffffff;
            font-size: 1.6rem;
            z-index: 10;
        }

        /* Hover Effect for Icons */
        .feature-item:hover .icon-bg,
        .feature-item:hover .icon-bg::before {
            background-color: var(--primary-blue);
        }

        .feature-item:hover .icon-bg {
            transform: rotate(15deg);
        }

        .feature-item:hover .icon-bg::before {
            transform: rotate(60deg); /* 45 + 15 */
        }

        /* Text Content */
        .feature-content h3 {
            font-size: 1.3rem;
            color: var(--text-dark);
            font-weight: 600;
            margin-bottom: 10px;
        }

        .feature-content p {
            font-size: 0.9rem;
            line-height: 1.6;
            color: var(--text-gray);
        }

        /* --- Responsive Design --- */
        @media (max-width: 1024px) {
            .features-grid {
                gap: 50px 100px;
            }
        }

        @media (max-width: 900px) {
            .section-header h2 {
                font-size: 2rem;
            }
            .features-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .central-waves {
                display: none; /* Hide decorative waves on smaller screens */
            }
        }

        @media (max-width: 480px) {
            .feature-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
        }

/*--- SECTION 6 STYLES ---*/

/*--- SECTION 7 STYLES ---*/

/* --- Process Section Container --- */
        .process-section {
            background-color: var(--bg-primary);
            color: var(--text-light);
            padding: 100px 5%;
            position: relative;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* --- Section Header --- */
        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
        }

        .section-header h2 {
            font-size: 2.4rem;
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: 15px;
        }

        .wave-line {
            display: flex;
            justify-content: center;
        }

        .wave-line svg {
            width: 45px;
            height: 10px;
            fill: transparent;
            stroke: var(--accent-cyan);
            stroke-width: 2px;
            stroke-linecap: round;
        }

        /* --- Grid Layout --- */
        /* Using an ordered list for semantic SEO of a step-by-step process */
        .process-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            list-style: none; /* Removes default numbers */
            padding: 0;
        }

        /* --- Individual Process Card --- */
        .process-card {
            background-color: var(--card-bg);
            border-radius: 10px;
            padding: 50px 30px 40px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .process-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        /* --- Outlined Step Number Design --- */
        .step-indicator {
            position: relative;
            display: inline-block;
            margin-bottom: 25px;
        }

        .step-number {
            font-size: 5.5rem;
            font-weight: 700;
            color: transparent; /* Makes text transparent */
            -webkit-text-stroke: 2px var(--text-light); /* Adds the white outline */
            line-height: 1;
            display: block;
        }

        .step-word {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: var(--card-bg); /* Matches card to break the line */
            padding: 0 4px;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 1px;
            color: var(--text-light);
            text-transform: uppercase;
        }

        /* Ensure the background trick works on hover too */
        .process-card:hover .step-word {
            background-color: var(--card-bg);
        }

        /* --- Card Content --- */
        .process-card h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .process-card p {
            font-size: 0.9rem;
            line-height: 1.6;
            color: var(--text-muted);
            margin-bottom: 30px;
            flex-grow: 1; /* Pushes the icon to the bottom evenly */
        }

        /* --- Bottom Icon Button --- */
        .card-icon {
            margin-top: auto;
        }

        .card-icon-circle {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: var(--text-light);
            transition: all 0.3s ease;
            background-color: transparent;
        }

        .process-card:hover .card-icon-circle {
            background-color: var(--text-light);
            color: var(--bg-primary);
            border-color: var(--text-light);
        }

        /* --- Responsive Design --- */
        @media (max-width: 768px) {
            .section-header h2 {
                font-size: 2rem;
            }
            .process-section {
                padding: 70px 5%;
            }
            .process-card {
                padding: 40px 20px 30px;
            }
        }

        @media (max-width: 480px) {
            .step-number {
                font-size: 4.5rem;
            }
        }


/*--- SECTION 7 STYLES ---*/

/*--- SECTION 8 STYLES ---*/

        /* --- Scoped CSS Variables --- */
        .aq-contact-section {
            --aq-contact-primary: #0b5ed7;
            --aq-contact-dark: #0043a8;
            --aq-contact-light-bg: #f4f7f9;
            --aq-contact-input-bg: #f0f4f8;
            --aq-contact-text-dark: #1a1a1a;
            --aq-contact-text-gray: #6b7280;
            --aq-contact-white: #ffffff;
            --aq-contact-border: #e5eaf2;
        }

        /* --- Base Scoping --- */
        .aq-contact-section * {
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        /* Utility Class for SEO / Screen Readers */
        .aq-contact-sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border-width: 0;
        }

        /* --- Section Container --- */
        .aq-contact-section {
            position: relative;
            padding: 100px 5%;
            z-index: 1;
            background-color: var(--aq-contact-white);
            color: var(--aq-contact-text-gray);
            overflow: hidden;
        }

        /* Subtle Light Blue Bottom Background */
        .aq-contact-section::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 35%;
            background-color: var(--aq-contact-light-bg);
            z-index: -2;
        }

        .aq-contact-container {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 60px;
            align-items: center;
        }

        /* --- Left Side: Contact Info --- */
        .aq-contact-info {
            position: relative;
            padding: 20px 0 60px;
        }

        /* Pure CSS Wireframe Water Drops */
        .aq-contact-bg-drop {
            position: absolute;
            top: -20px;
            left: -40px;
            width: 350px;
            height: 350px;
            border: 1px solid var(--aq-contact-border);
            border-radius: 0 50% 50% 50%;
            transform: rotate(45deg);
            z-index: -1;
        }

        .aq-contact-bg-drop.inner {
            top: 10px;
            left: -10px;
            width: 290px;
            height: 290px;
            border-color: rgba(11, 94, 215, 0.1);
        }

        .aq-contact-subtitle {
            color: var(--aq-contact-primary);
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: block;
            margin-bottom: 15px;
        }

        .aq-contact-info h2 {
            font-size: 2.5rem;
            color: var(--aq-contact-text-dark);
            font-weight: 600;
            line-height: 1.2;
            margin-bottom: 15px;
            margin-top: 0;
        }

        .aq-contact-wave svg {
            width: 40px;
            height: 8px;
            fill: transparent;
            stroke: #66b2ff;
            stroke-width: 2.5px;
            stroke-linecap: round;
            margin-bottom: 30px;
        }

        /* Quick Contact Phone Block */
        .aq-contact-quick {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 30px;
        }

        .aq-contact-phone-icon {
            width: 55px;
            height: 55px;
            background-color: var(--aq-contact-dark);
            color: var(--aq-contact-white);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.3rem;
            box-shadow: 0 10px 20px rgba(0, 67, 168, 0.2);
        }

        .aq-contact-phone-details .aq-contact-lbl {
            display: block;
            font-size: 0.85rem;
            color: var(--aq-contact-primary);
            font-weight: 600;
        }

        .aq-contact-phone-details .aq-contact-phone {
            display: block;
            font-size: 1.3rem;
            color: var(--aq-contact-text-dark);
            font-weight: 700;
            text-decoration: none;
        }

        .aq-contact-info p {
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 35px;
            max-width: 350px;
        }

        .aq-contact-btn-read {
            background-color: var(--aq-contact-primary);
            color: var(--aq-contact-white);
            padding: 12px 30px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: background 0.3s, transform 0.2s;
        }

        .aq-contact-btn-read:hover {
            background-color: var(--aq-contact-dark);
            transform: translateY(-2px);
        }

        /* Top Customer Support Badge */
        .aq-contact-badge-wrapper {
            position: absolute;
            bottom: -20px;
            right: 10%;
            width: 130px;
            height: 130px;
            z-index: 5;
        }

        .aq-contact-badge-wrapper::before {
            content: '';
            position: absolute;
            top: -10px; left: -10px; right: -10px; bottom: -10px;
            border: 1px solid var(--aq-contact-dark);
            border-radius: 50%;
            opacity: 0.3;
        }

        .aq-contact-badge {
            width: 100%;
            height: 100%;
            background-color: var(--aq-contact-dark);
            color: var(--aq-contact-white);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            font-size: 0.8rem;
            font-weight: 600;
            line-height: 1.3;
            border: 6px solid var(--aq-contact-white);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        /* --- Right Side: Image & Form --- */
        .aq-contact-form-wrapper {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            min-height: 550px;
            display: flex;
            align-items: center;
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
        }

        .aq-contact-form-bg {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            object-fit: cover;
            z-index: 0;
            display: block;
            max-width: 100%;
        }

        .aq-contact-form-card {
            position: relative;
            z-index: 2;
            background: var(--aq-contact-white);
            margin-left: 5%;
            padding: 45px 40px;
            border-radius: 8px;
            width: 100%;
            max-width: 420px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
        }

        .aq-contact-form-card h3 {
            font-size: 1.4rem;
            color: var(--aq-contact-text-dark);
            font-weight: 600;
            margin-bottom: 25px;
            margin-top: 0;
        }

        /* Form Inputs */
        .aq-contact-input-group {
            position: relative;
            margin-bottom: 20px;
        }

        .aq-contact-input-group i {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--aq-contact-primary);
            font-size: 0.95rem;
            z-index: 2;
        }

        .aq-contact-input-field {
            width: 100%;
            padding: 15px 20px 15px 50px;
            border: 1px solid transparent;
            background-color: var(--aq-contact-input-bg);
            border-radius: 30px;
            font-size: 0.9rem;
            color: var(--aq-contact-text-dark);
            transition: border-color 0.3s, background-color 0.3s;
        }

        .aq-contact-input-field::placeholder {
            color: #99a3b0;
        }

        .aq-contact-input-field:focus {
            outline: none;
            border-color: var(--aq-contact-primary);
            background-color: var(--aq-contact-white);
        }

        /* Custom Select Styling */
        select.aq-contact-input-field {
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            cursor: pointer;
        }

        .aq-contact-select-arrow {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            width: 24px;
            height: 24px;
            background-color: var(--aq-contact-dark);
            color: var(--aq-contact-white);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 0.6rem;
            pointer-events: none;
            z-index: 2;
        }

        .aq-contact-btn-submit {
            background-color: var(--aq-contact-dark);
            color: var(--aq-contact-white);
            border: none;
            padding: 15px 40px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            margin-top: 10px;
            text-transform: uppercase;
        }

        .aq-contact-btn-submit:hover {
            background-color: var(--aq-contact-primary);
            transform: translateY(-2px);
        }

        /* --- Responsive Design --- */
        @media (max-width: 1024px) {
            .aq-contact-container {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            .aq-contact-info {
                text-align: center;
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            .aq-contact-bg-drop {
                left: 50%;
                transform: translateX(-50%) rotate(45deg);
            }
            .aq-contact-bg-drop.inner {
                left: 50%;
                transform: translateX(-50%) rotate(45deg);
            }
            .aq-contact-quick {
                justify-content: center;
            }
            .aq-contact-badge-wrapper {
                right: auto;
                left: 10%;
                bottom: 0;
            }
            .aq-contact-form-wrapper {
                justify-content: center;
            }
            .aq-contact-form-card {
                margin-left: 0;
                margin: 40px 20px;
            }
        }

        @media (max-width: 600px) {
            .aq-contact-info h2 {
                font-size: 2rem;
            }
            .aq-contact-badge-wrapper {
                display: none;
            }
            .aq-contact-form-card {
                padding: 35px 25px;
            }
        }
        
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/*--- SECTION 8 STYLES ---*/

/*--- SECTION 9 FOOTER STYLES ---*/

/* --- Scoped CSS Variables --- */
        .aq-footer-section {
            --aq-footer-bg: #004ba0;      /* Deep premium blue */
            --aq-footer-bg-dark: #004391; /* Slightly darker for bottom bar */
            --aq-footer-text: rgba(255, 255, 255, 0.85);
            --aq-footer-white: #ffffff;
            --aq-footer-wave: #66b2ff;
            --aq-footer-btn-start: #51cbfb;
            --aq-footer-btn-end: #77e1fc;
        }

        /* --- Base Scoping --- */
        .aq-footer-section * {
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
            margin: 0;
            padding: 0;
        }

        .aq-footer-section {
            background-color: var(--aq-footer-bg);
            color: var(--aq-footer-text);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .aq-footer-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 80px 5% 40px;
        }

        /* --- Top Grid Layout --- */
        .aq-footer-grid {
            display: grid;
            grid-template-columns: 2.5fr 1.5fr 2fr 2fr;
            gap: 40px 60px;
            margin-bottom: 60px;
        }

        /* Column Headers */
        .aq-footer-col h3 {
            color: var(--aq-footer-white);
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 8px;
        }

        /* Wave SVG Underlines */
        .aq-footer-wave svg {
            width: 40px;
            height: 8px;
            fill: transparent;
            stroke: var(--aq-footer-wave);
            stroke-width: 2.5px;
            stroke-linecap: round;
            margin-bottom: 25px;
        }

        /* --- Column 1: Brand --- */
        .aq-footer-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--aq-footer-white);
            margin-bottom: 20px;
        }

        /* Custom Pure CSS Logo Dots */
        .aq-footer-logo-icon {
            position: relative;
            width: 24px;
            height: 24px;
            color: var(--aq-footer-btn-end);
        }

        .aq-footer-logo-icon::before {
            content: '\f185'; /* FontAwesome Sun/Starburst fallback */
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 1.6rem;
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
        }

        .aq-footer-brand-text {
            margin-bottom: 25px;
            font-size: 0.85rem;
        }

        .aq-footer-features {
            list-style: none;
        }

        .aq-footer-features li {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
            color: var(--aq-footer-white);
            font-weight: 500;
            font-size: 0.85rem;
        }

        .aq-footer-features i {
            color: var(--aq-footer-btn-end);
            font-size: 0.9rem;
        }

        /* --- Column 2: Useful Links --- */
        .aq-footer-links-nav ul {
            list-style: none;
            display: grid;
            grid-template-columns: 1fr 1fr; /* 2 Column internal layout */
            gap: 12px 20px;
        }

        .aq-footer-links-nav a {
            color: var(--aq-footer-text);
            text-decoration: none;
            font-size: 0.85rem;
            transition: color 0.3s, transform 0.3s;
            display: inline-block;
        }

        .aq-footer-links-nav a:hover {
            color: var(--aq-footer-btn-start);
            transform: translateX(3px);
        }

        /* --- Column 3: Locations --- */
        .aq-footer-address {
            font-style: normal;
        }

        .aq-footer-location-title {
            color: var(--aq-footer-white);
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 15px;
        }

        .aq-footer-address p, .aq-footer-address a {
            color: var(--aq-footer-text);
            text-decoration: none;
            font-size: 0.85rem;
            margin-bottom: 10px;
            display: block;
        }

        .aq-footer-address a:hover {
            color: var(--aq-footer-btn-start);
        }

        /* --- Column 4: Business Hours --- */
        .aq-footer-hours p {
            font-size: 0.85rem;
            margin-bottom: 5px;
        }

        .aq-footer-hours p strong {
            display: block;
            color: var(--aq-footer-white);
            font-weight: 500;
            margin-top: 15px;
            margin-bottom: 5px;
        }

        .aq-footer-btn-schedule {
            display: inline-block;
            background: linear-gradient(135deg, var(--aq-footer-btn-start), var(--aq-footer-btn-end));
            color: var(--aq-footer-bg);
            font-weight: 700;
            font-size: 0.8rem;
            text-decoration: none;
            text-transform: uppercase;
            padding: 12px 30px;
            border-radius: 30px;
            margin-top: 25px;
            transition: box-shadow 0.3s, transform 0.2s;
            box-shadow: 0 4px 15px rgba(81, 203, 251, 0.3);
        }

        .aq-footer-btn-schedule:hover {
            box-shadow: 0 6px 20px rgba(81, 203, 251, 0.5);
            transform: translateY(-2px);
        }

        /* --- Bottom Bar --- */
        .aq-footer-bottom {
            background-color: var(--aq-footer-bg-dark);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding: 25px 5%;
        }

        .aq-footer-bottom-container {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .aq-footer-copyright {
            font-size: 0.8rem;
        }

        .aq-footer-copyright span {
            color: var(--aq-footer-btn-start);
        }

        .aq-footer-legal-links {
            list-style: none;
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .aq-footer-legal-links li {
            display: flex;
            align-items: center;
            font-size: 0.8rem;
        }

        .aq-footer-legal-links li:not(:last-child)::after {
            content: '_';
            color: var(--aq-footer-text);
            margin-left: 20px;
            opacity: 0.5;
        }

        .aq-footer-legal-links a {
            color: var(--aq-footer-text);
            text-decoration: none;
            transition: color 0.3s;
        }

        .aq-footer-legal-links a:hover {
            color: var(--aq-footer-btn-start);
        }

        /* --- Responsive Design --- */
        @media (max-width: 1024px) {
            .aq-footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .aq-footer-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            .aq-footer-bottom-container {
                flex-direction: column;
                text-align: center;
                justify-content: center;
            }
            .aq-footer-legal-links {
                justify-content: center;
                flex-wrap: wrap;
            }
        }

/*--- SECTION 9 FOOTER STYLES ---*/

/*--- ABOUT US PAGE STYLES ---*/

        /* --- Scoped CSS Variables --- */
        .abt1-section {
            --abt1-primary-blue: #0b5ed7;
            --abt1-text-dark: #1a1a1a;
            --abt1-text-gray: #6b7280;
            --abt1-bg-light: #ffffff;
            --abt1-border-color: #eaeaea;
        }

        /* --- Base Scoping --- */
        .abt1-section * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        .abt1-section {
            background-color: #fcfcfc; /* Subtle off-white for contrast */
            padding-bottom: 100px;
            position: relative;
        }

        /* --- Top Image Banner --- */
        .abt1-image-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 5%;
        }

        .abt1-banner-img {
            width: 100%;
            height: 450px;
            object-fit: cover;
            border-radius: 0 0 12px 12px;
            display: block;
        }

        /* --- Main Content Container --- */
        .abt1-container {
            max-width: 1100px;
            margin: -100px auto 0; /* Overlaps the image */
            position: relative;
            z-index: 10;
            background-color: var(--abt1-bg-light);
            padding: 60px 50px;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.03);
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 60px;
            align-items: center;
        }

        /* --- Left Column: Text Content --- */
        .abt1-text-col {
            position: relative;
        }

        .abt1-subtitle {
            color: var(--abt1-primary-blue);
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            display: block;
            margin-bottom: 12px;
        }

        .abt1-title {
            font-size: 2.6rem;
            color: var(--abt1-text-dark);
            font-weight: 600;
            line-height: 1.15;
            margin-bottom: 15px;
            letter-spacing: -0.5px;
        }

        .abt1-wave {
            margin-bottom: 25px;
        }

        .abt1-wave svg {
            width: 45px;
            height: 8px;
            fill: transparent;
            stroke: #66b2ff;
            stroke-width: 2.5px;
            stroke-linecap: round;
        }

        .abt1-subheading {
            font-size: 0.85rem;
            color: var(--abt1-text-gray);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 15px;
        }

        .abt1-desc {
            font-size: 0.95rem;
            line-height: 1.7;
            color: var(--abt1-text-gray);
            margin-bottom: 35px;
        }

        /* Signature Block */
        .abt1-founder-block {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .abt1-signature svg {
            width: 120px;
            height: 40px;
            fill: transparent;
            stroke: var(--abt1-text-dark);
            stroke-width: 2px;
            stroke-linecap: round;
        }

        .abt1-founder-info {
            display: flex;
            flex-direction: column;
        }

        .abt1-name {
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--abt1-text-dark);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .abt1-role {
            font-size: 0.8rem;
            font-weight: 500;
            color: var(--abt1-primary-blue);
        }

        /* --- Right Column: Floating Card --- */
        .abt1-card-col {
            position: relative;
        }

        .abt1-feature-card {
            background-color: var(--abt1-bg-light);
            border-radius: 12px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.08);
            padding: 40px;
            border: 1px solid rgba(0,0,0,0.03);
        }

        .abt1-feature-item {
            display: flex;
            gap: 20px;
        }

        .abt1-feat-img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            flex-shrink: 0;
            border: 3px solid #f0f4f8;
        }

        .abt1-feat-text {
            display: flex;
            flex-direction: column;
        }

        .abt1-feat-title {
            font-size: 1.2rem;
            color: var(--abt1-text-dark);
            font-weight: 600;
            margin-bottom: 8px;
        }

        .abt1-feat-desc {
            font-size: 0.85rem;
            color: var(--abt1-text-gray);
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .abt1-read-more {
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--abt1-text-dark);
            text-transform: uppercase;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: color 0.3s ease;
        }

        .abt1-read-more i {
            font-size: 0.75rem;
            transition: transform 0.3s;
        }

        .abt1-read-more:hover {
            color: var(--abt1-primary-blue);
        }

        .abt1-read-more:hover i {
            transform: translateX(4px);
        }

        .abt1-divider {
            border: none;
            border-top: 1px solid var(--abt1-border-color);
            margin: 30px 0;
        }

        /* --- Responsive Design --- */
        @media (max-width: 1024px) {
            .abt1-container {
                padding: 50px 30px;
                gap: 40px;
            }
            .abt1-title {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 900px) {
            .abt1-container {
                grid-template-columns: 1fr;
                margin-top: -50px;
            }
            .abt1-banner-img {
                height: 350px;
            }
            .abt1-feature-card {
                padding: 30px;
            }
        }

        @media (max-width: 600px) {
            .abt1-container {
                margin: 0;
                border-radius: 0;
                box-shadow: none;
                padding: 40px 5%;
            }
            .abt1-image-wrapper {
                padding: 0;
            }
            .abt1-banner-img {
                border-radius: 0;
                height: 280px;
            }
            .abt1-title {
                font-size: 2rem;
            }
            .abt1-feature-item {
                flex-direction: column;
                gap: 15px;
            }
        }
        .abt2-section {
            --abt2-primary: #5bc0eb; /* Cyan-blue matching the design */
            --abt2-primary-hover: #4aaadd;
            --abt2-bg-color: #f2f6f9; /* Subtle light gray-blue background */
            --abt2-card-bg: #ffffff;
            --abt2-text-dark: #222222;
            --abt2-text-gray: #6b7280;
            --abt2-border-color: #e2e8f0;
        }

        /* --- Base Scoping --- */
        .abt2-section * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        .abt2-section {
            background-color: var(--abt2-bg-color);
            padding: 100px 5%;
            position: relative;
        }

        .abt2-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* --- Section Header --- */
        .abt2-header {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 60px;
        }

        .abt2-subtitle {
            color: var(--abt2-primary);
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: block;
            margin-bottom: 15px;
        }

        .abt2-title {
            font-size: 2.6rem;
            color: var(--abt2-text-dark);
            font-weight: 600;
            line-height: 1.2;
            margin-bottom: 20px;
            letter-spacing: -0.5px;
        }

        .abt2-wave {
            display: flex;
            justify-content: center;
        }

        .abt2-wave svg {
            width: 45px;
            height: 8px;
            fill: transparent;
            stroke: var(--abt2-primary);
            stroke-width: 2.5px;
            stroke-linecap: round;
        }

        /* --- Features Grid --- */
        .abt2-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            margin-bottom: 40px;
        }

        /* --- Individual Feature Card --- */
        .abt2-card {
            background-color: var(--abt2-card-bg);
            border-radius: 12px;
            padding: 45px 25px 60px; /* Extra bottom padding for overlapping button */
            text-align: center;
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(0,0,0,0.01);
        }

        .abt2-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
        }

        /* Top Right Number Badge */
        .abt2-badge {
            position: absolute;
            top: 0;
            right: 0;
            background-color: var(--abt2-primary);
            color: var(--abt2-card-bg);
            font-size: 0.9rem;
            font-weight: 600;
            padding: 8px 16px;
            border-top-right-radius: 12px;
            border-bottom-left-radius: 12px;
        }

        /* Card Icon */
        .abt2-icon {
            font-size: 2.5rem;
            color: var(--abt2-primary);
            margin-bottom: 20px;
            display: inline-block;
        }

        /* Card Text */
        .abt2-card-title {
            font-size: 1.25rem;
            color: var(--abt2-text-dark);
            font-weight: 600;
            margin-bottom: 12px;
        }

        .abt2-card-desc {
            font-size: 0.85rem;
            color: var(--abt2-text-gray);
            line-height: 1.6;
        }

        /* Overlapping Plus Button */
        .abt2-btn-wrapper {
            position: absolute;
            bottom: -22px;
            left: 50%;
            transform: translateX(-50%);
            width: 44px;
            height: 44px;
            background-color: var(--abt2-card-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--abt2-border-color);
            box-shadow: 0 4px 10px rgba(0,0,0,0.04);
            cursor: pointer;
            transition: all 0.3s ease;
            color: #9ca3af;
        }

        .abt2-btn-wrapper:hover {
            background-color: var(--abt2-primary);
            color: var(--abt2-card-bg);
            border-color: var(--abt2-primary);
            transform: translateX(-50%) scale(1.1);
        }

        /* Bottom Centered Droplet Decoration */
        .abt2-bottom-drop {
            text-align: center;
            margin-top: 60px;
            color: var(--abt2-primary);
            font-size: 0.8rem;
        }

        /* --- Responsive Design --- */
        @media (max-width: 1024px) {
            .abt2-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 50px 30px; /* More vertical gap to accommodate buttons */
            }
        }

        @media (max-width: 768px) {
            .abt2-title {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 600px) {
            .abt2-grid {
                grid-template-columns: 1fr;
                gap: 50px 0;
            }
            .abt2-title {
                font-size: 1.8rem;
            }
            .abt2-section {
                padding: 70px 5%;
            }
        }

/*--- ABOUT US PAGE STYLES ---*/

/*--- PRODUCT PAGE STYLES ---*/

/* --- Scoped CSS Variables --- */
        .pdt1-wrapper {
            --pdt1-primary: #1266b4; /* Deep blue from the button */
            --pdt1-primary-hover: #0d4d8a;
            --pdt1-bg-page: #f4f7f9; /* Light grayish-blue background */
            --pdt1-bg-card: #ffffff;
            --pdt1-text-dark: #1f2937;
            --pdt1-text-gray: #6b7280;
            --pdt1-border: #e5e7eb;
            --pdt1-price-text: #0b5ed7;
        }

        /* --- Base Scoping --- */
        .pdt1-wrapper * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        .pdt1-wrapper {
            /*background-color: var(--pdt1-bg-page);
            padding-bottom: 100px;*/
        }

        /* --- Hero Banner --- */
        .pdt1-hero {
            position: relative;
            height: 300px;
            background-image: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.5)), url('img/banner2.webp');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            border-bottom: 1px solid var(--pdt1-border);
        }

        .pdt1-hero-content h1 {
            font-size: 3rem;
            color: var(--pdt1-text-dark);
            font-weight: 600;
            margin-bottom: 10px;
            letter-spacing: -0.5px;
        }

        .pdt1-breadcrumbs {
            font-size: 0.8rem;
            color: var(--pdt1-text-gray);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-weight: 500;
        }

        .pdt1-breadcrumbs span {
            color: var(--pdt1-text-dark);
        }

        /* --- Shop Container --- */
        .pdt1-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 5% 0;
        }

        /* --- Toolbar (Results & Sorting) --- */
        .pdt1-toolbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
            flex-wrap: wrap;
            gap: 20px;
        }

        .pdt1-results-count {
            font-size: 0.9rem;
            color: var(--pdt1-text-gray);
        }

        .pdt1-sorting {
            position: relative;
        }

        .pdt1-sort-select {
            appearance: none;
            -webkit-appearance: none;
            background-color: var(--pdt1-bg-card);
            border: 1px solid var(--pdt1-border);
            padding: 10px 40px 10px 20px;
            font-size: 0.85rem;
            color: var(--pdt1-text-gray);
            border-radius: 4px;
            cursor: pointer;
            outline: none;
            box-shadow: 0 2px 5px rgba(0,0,0,0.02);
            transition: border-color 0.3s;
        }

        .pdt1-sort-select:focus {
            border-color: var(--pdt1-primary);
        }

        /* Custom Dropdown Arrow */
        .pdt1-sorting::after {
            content: '▼';
            font-size: 0.6rem;
            color: var(--pdt1-text-gray);
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            pointer-events: none;
        }

        /* --- Products Grid --- */
        .pdt1-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        /* --- Product Card --- */
        .pdt1-card {
            background-color: var(--pdt1-bg-card);
            border-radius: 8px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.04);
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .pdt1-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
        }

        /* Image Box */
        .pdt1-img-box {
            border: 1px solid var(--pdt1-border);
            border-radius: 4px;
            padding: 30px 20px;
            margin-bottom: 15px;
            height: 250px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #fafbfc;
        }

        .pdt1-img-box img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            transition: transform 0.4s ease;
        }

        .pdt1-card:hover .pdt1-img-box img {
            transform: scale(1.05);
        }

        /* Price Box */
        .pdt1-price-box {
            border: 1px solid var(--pdt1-border);
            border-radius: 4px;
            padding: 10px;
            margin-bottom: 20px;
            color: var(--pdt1-price-text);
            font-weight: 600;
            font-size: 0.9rem;
        }

        /* Product Details */
        .pdt1-title {
            font-size: 1.1rem;
            color: var(--pdt1-text-dark);
            font-weight: 600;
            margin-bottom: 10px;
        }

        .pdt1-desc {
            font-size: 0.8rem;
            color: var(--pdt1-text-gray);
            line-height: 1.6;
            margin-bottom: 25px;
            flex-grow: 1; /* Pushes button to bottom evenly across cards */
        }

        /* Add to Cart Button */
        .pdt1-btn-add {
            background-color: var(--pdt1-primary);
            color: #ffffff;
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            cursor: pointer;
            transition: background-color 0.3s, transform 0.2s;
            margin: 0 auto;
            display: inline-block;
            text-decoration: none;
        }

        .pdt1-btn-add:hover {
            background-color: var(--pdt1-primary-hover);
            transform: translateY(-2px);
        }

        /* --- Responsive Design --- */
        @media (max-width: 1024px) {
            .pdt1-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .pdt1-hero h1 {
                font-size: 2.5rem;
            }
            .pdt1-toolbar {
                flex-direction: column;
                align-items: flex-start;
            }
            .pdt1-sort-select {
                width: 100%;
            }
        }

        @media (max-width: 500px) {
            .pdt1-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }

/*--- PRODUCT PAGE STYLES ---*/

/*--- CONTACT US PAGE STYLES ---*/

    /* --- Scoped CSS Variables --- */
        .cnt1-wrapper {
            --cnt1-primary: #0b5ed7; 
            --cnt1-dark-blue: #0043a8;
            --cnt1-light-blue: #e8f4fa;
            --cnt1-text-dark: #1f2937;
            --cnt1-text-gray: #6b7280;
            --cnt1-white: #ffffff;
            --cnt1-shadow: rgba(0, 0, 0, 0.05);
        }

        /* --- Base Scoping --- */
        .cnt1-wrapper * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        /* Utility Class for SEO / Screen Readers */
        .cnt1-sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border-width: 0;
        }

        /* --- Main Section --- */
        .cnt1-wrapper {
            background-color: var(--cnt1-light-blue);
            position: relative;
            padding: 100px 5%;
            overflow: hidden;
            z-index: 1;
        }

        /* Background Visuals (Simulated using CSS & Unsplash Placeholders) */
        .cnt1-bg-left, .cnt1-bg-right {
            position: absolute;
            top: 0;
            bottom: 0;
            z-index: -1;
            opacity: 0.15;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .cnt1-bg-left {
            left: 0;
            width: 40%;
            /* Placeholder for the left water splash */
            background-image: url('img/banner2.webp');
            mask-image: linear-gradient(to right, black, transparent);
            -webkit-mask-image: linear-gradient(to right, black, transparent);
        }

        .cnt1-bg-right {
            right: 0;
            width: 40%;
            /* Placeholder for the right delivery person */
            background-image: url('img/banner3.webp');
            mask-image: linear-gradient(to left, black, transparent);
            -webkit-mask-image: linear-gradient(to left, black, transparent);
        }

        .cnt1-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        /* --- Header --- */
        .cnt1-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .cnt1-header h2 {
            font-size: 2.5rem;
            color: var(--cnt1-text-dark);
            font-weight: 600;
        }

        /* --- Contact Cards Grid --- */
        .cnt1-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-bottom: 60px;
        }

        .cnt1-card {
            background-color: var(--cnt1-white);
            border-radius: 12px;
            padding: 40px 20px;
            text-align: center;
            box-shadow: 0 15px 35px var(--cnt1-shadow);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .cnt1-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
        }

        .cnt1-icon-wrapper {
            width: 60px;
            height: 60px;
            margin: 0 auto 20px;
            background-color: var(--cnt1-white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: var(--cnt1-primary);
            box-shadow: 0 5px 15px rgba(11, 94, 215, 0.15);
            border: 1px solid rgba(11, 94, 215, 0.05);
        }

        .cnt1-card h3 {
            font-size: 1.1rem;
            color: var(--cnt1-text-dark);
            font-weight: 600;
            margin-bottom: 10px;
        }

        .cnt1-card p {
            font-size: 0.8rem;
            color: var(--cnt1-text-gray);
            line-height: 1.6;
            margin: 0;
        }

        /* --- Subscribe Box --- */
        .cnt1-subscribe-box {
            background-color: var(--cnt1-dark-blue);
            border-radius: 12px;
            padding: 60px 40px;
            text-align: center;
            color: var(--cnt1-white);
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            /* Dotted pattern overlay */
            background-image: radial-gradient(rgba(255, 255, 255, 0.1) 2px, transparent 2px);
            background-size: 20px 20px;
        }

        .cnt1-subscribe-box h3 {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .cnt1-subscribe-box p {
            font-size: 0.9rem;
            margin-bottom: 35px;
            opacity: 0.9;
        }

        /* Subscribe Form */
        .cnt1-form {
            display: flex;
            align-items: center;
            background-color: var(--cnt1-white);
            border-radius: 50px;
            padding: 5px;
            max-width: 550px;
            margin: 0 auto 20px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        .cnt1-input {
            flex-grow: 1;
            border: none;
            outline: none;
            background: transparent;
            padding: 15px 25px;
            font-size: 0.9rem;
            color: var(--cnt1-text-dark);
        }

        .cnt1-input::placeholder {
            color: #a0aec0;
        }

        .cnt1-btn-submit {
            background-color: var(--cnt1-primary);
            color: var(--cnt1-white);
            border: none;
            border-radius: 50px;
            padding: 12px 30px;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .cnt1-btn-submit:hover {
            background-color: #084aa8;
        }

        .cnt1-help-text {
            font-size: 0.85rem;
            opacity: 0.9;
        }

        .cnt1-help-text a {
            color: var(--cnt1-white);
            font-weight: 600;
            text-decoration: none;
            transition: opacity 0.3s;
        }

        .cnt1-help-text a:hover {
            opacity: 0.8;
            text-decoration: underline;
        }

        /* --- Responsive Design --- */
        @media (max-width: 1024px) {
            .cnt1-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            .cnt1-bg-left, .cnt1-bg-right {
                opacity: 0.05; /* Fade out backgrounds further on smaller screens to prevent clutter */
            }
        }

        @media (max-width: 768px) {
            .cnt1-header h2 {
                font-size: 2rem;
            }
            .cnt1-subscribe-box {
                padding: 40px 20px;
            }
            .cnt1-form {
                flex-direction: column;
                background-color: transparent;
                box-shadow: none;
                gap: 10px;
                padding: 0;
            }
            .cnt1-input {
                width: 100%;
                background-color: var(--cnt1-white);
                border-radius: 50px;
            }
            .cnt1-btn-submit {
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            .cnt1-grid {
                grid-template-columns: 1fr;
            }
        }
        
        
        /* --- Scoped CSS Variables --- */
        .abt2-section {
            --abt2-primary: #0b5ed7; 
            --abt2-primary-hover: #0043a8;
            --abt2-text-dark: #1f2937;
            --abt2-text-gray: #6b7280;
            --abt2-bg-white: #ffffff;
            --abt2-bg-input: #f0f4f8;
            --abt2-border-light: #e5eaf2;
        }

        /* --- Base Scoping --- */
        .abt2-section * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        /* Utility for Screen Readers (SEO) */
        .abt2-sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border-width: 0;
        }

        .abt2-section {
            background-color: #fafbfc; /* Extremely subtle off-white background */
            padding: 100px 5%;
            position: relative;
        }

        .abt2-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* --- Section Header --- */
        .abt2-header {
            text-align: center;
            max-width: 650px;
            margin: 0 auto 60px;
        }

        .abt2-subtitle {
            color: var(--abt2-primary);
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: block;
            margin-bottom: 12px;
        }

        .abt2-title {
            font-size: 2.5rem;
            color: var(--abt2-text-dark);
            font-weight: 600;
            line-height: 1.25;
            margin-bottom: 15px;
            letter-spacing: -0.5px;
        }

        .abt2-wave {
            display: flex;
            justify-content: center;
        }

        .abt2-wave svg {
            width: 45px;
            height: 8px;
            fill: transparent;
            stroke: #66b2ff;
            stroke-width: 2.5px;
            stroke-linecap: round;
        }

        /* --- Main Content Layout --- */
        .abt2-content-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: start;
        }

        /* --- Left Side: Cards --- */
        .abt2-cards-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
        }

        .abt2-card {
            background: var(--abt2-bg-white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.04);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            border: 1px solid rgba(0,0,0,0.02);
        }

        .abt2-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
        }

        .abt2-card-img-wrap {
            height: 200px;
            overflow: hidden;
        }

        .abt2-card-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .abt2-card:hover .abt2-card-img {
            transform: scale(1.05);
        }

        .abt2-card-body {
            padding: 30px 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .abt2-card-title {
            font-size: 1.15rem;
            color: var(--abt2-text-dark);
            font-weight: 600;
            margin-bottom: 8px;
        }

        .abt2-card-wave {
            margin-bottom: 15px;
        }

        .abt2-card-wave svg {
            width: 30px;
            height: 6px;
            fill: transparent;
            stroke: #66b2ff;
            stroke-width: 2px;
            stroke-linecap: round;
        }

        .abt2-card-desc {
            font-size: 0.85rem;
            color: var(--abt2-text-gray);
            line-height: 1.6;
            margin-bottom: 25px;
            flex-grow: 1;
        }

        .abt2-card-link {
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--abt2-text-dark);
            text-transform: uppercase;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: color 0.3s ease;
        }

        .abt2-card-link i {
            font-size: 0.75rem;
            transition: transform 0.3s;
        }

        .abt2-card-link:hover {
            color: var(--abt2-primary);
        }

        .abt2-card-link:hover i {
            transform: translateX(4px);
        }

        /* --- Right Side: Contact Form --- */
        .abt2-form-wrapper {
            background: var(--abt2-bg-white);
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.05);
            border: 1px solid rgba(0,0,0,0.02);
        }

        .abt2-form-title {
            font-size: 1.4rem;
            color: var(--abt2-text-dark);
            font-weight: 600;
            margin-bottom: 25px;
        }

        .abt2-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .abt2-input-group {
            position: relative;
        }

        .abt2-input-icon {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--abt2-primary);
            font-size: 0.9rem;
            z-index: 2;
        }

        /* Exception for textarea icon vertical alignment */
        textarea ~ .abt2-input-icon, 
        .abt2-input-group.textarea-group .abt2-input-icon {
            top: 20px;
            transform: none;
        }

        .abt2-input {
            width: 100%;
            padding: 15px 20px 15px 50px;
            background-color: var(--abt2-bg-input);
            border: 1px solid transparent;
            border-radius: 30px;
            font-size: 0.85rem;
            color: var(--abt2-text-dark);
            transition: border-color 0.3s, background-color 0.3s;
        }

        .abt2-textarea {
            resize: vertical;
            min-height: 120px;
            border-radius: 20px;
        }

        .abt2-input::placeholder {
            color: #9ca3af;
        }

        .abt2-input:focus {
            outline: none;
            border-color: var(--abt2-primary);
            background-color: var(--abt2-bg-white);
        }

        .abt2-submit-btn {
            background-color: var(--abt2-primary);
            color: var(--abt2-bg-white);
            border: none;
            padding: 15px 30px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            cursor: pointer;
            transition: background-color 0.3s, transform 0.2s;
            align-self: flex-start;
            margin-top: 10px;
        }

        .abt2-submit-btn:hover {
            background-color: var(--abt2-primary-hover);
            transform: translateY(-2px);
        }

        /* --- Responsive Design --- */
        @media (max-width: 1024px) {
            .abt2-content-wrapper {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            .abt2-form-wrapper {
                max-width: 700px;
                margin: 0 auto;
                width: 100%;
            }
        }

        @media (max-width: 768px) {
            .abt2-title {
                font-size: 2.2rem;
            }
            .abt2-cards-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin: 0 auto;
            }
        }

        @media (max-width: 480px) {
            .abt2-title {
                font-size: 1.8rem;
            }
            .abt2-form-wrapper {
                padding: 30px 20px;
            }
        }
        
        
        /* --- Scoped CSS Variables --- */
        .abt3-section {
            --abt3-bg-color: #ffffff;
            --abt3-shadow-color: rgba(0, 0, 0, 0.08);
            --abt3-border-color: #eaeaea;
        }

        /* --- Base Scoping --- */
        .abt3-section * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        /* --- Map Section Styling --- */
        .abt3-section {
            background-color: var(--abt3-bg-color);
            padding: 80px 5%;
            position: relative;
            z-index: 1;
        }

        .abt3-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* --- Premium Map Wrapper --- */
        .abt3-map-wrapper {
            position: relative;
            width: 100%;
            height: 500px;
            border-radius: 16px; /* Smooth, modern rounded corners */
            overflow: hidden;
            box-shadow: 0 15px 40px var(--abt3-shadow-color); /* Premium SaaS floating shadow */
            border: 1px solid var(--abt3-border-color);
            background-color: #f8f9fa; /* Loading placeholder color */
        }

        /* --- Iframe Styling --- */
        .abt3-iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
            filter: contrast(1.05) saturate(1.1); /* Slightly enhances map colors for a premium look */
            transition: opacity 0.3s ease;
        }

        /* --- Responsive Design Breakpoints --- */
        @media (max-width: 1024px) {
            .abt3-map-wrapper {
                height: 400px;
            }
            .abt3-section {
                padding: 60px 5%;
            }
        }

        @media (max-width: 768px) {
            .abt3-map-wrapper {
                height: 350px;
                border-radius: 12px;
            }
        }

        @media (max-width: 480px) {
            .abt3-map-wrapper {
                height: 300px;
            }
            .abt3-section {
                padding: 40px 5%;
            }
        }
        
/*--- CONTACT US PAGE STYLES ---*/


/*--- NEW CODE ---*/
/* --- Base Scoping --- */
        /* --- Base Scoping --- */
        .abt2-section * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        .abt2-section {
            background-color: #f2f6f9; 
            padding: 100px 5%;
            position: relative;
            width: 100%;
            overflow: hidden;
        }

        .abt2-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* --- Section Header --- */
        .abt2-header {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 60px;
        }

        .abt2-subtitle {
            color: #5bc0eb;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: block;
            margin-bottom: 15px;
        }

        .abt2-title {
            font-size: 2.6rem;
            color: #222222;
            font-weight: 600;
            line-height: 1.2;
            margin-bottom: 20px;
            letter-spacing: -0.5px;
        }

        .abt2-wave {
            display: flex;
            justify-content: center;
        }

        .abt2-wave svg {
            width: 45px;
            height: 8px;
            fill: transparent;
            stroke: #5bc0eb;
            stroke-width: 2.5px;
            stroke-linecap: round;
        }

        /* --- Features Grid --- */
        .abt2-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        /* --- Individual Feature Card --- */
        .abt2-card {
            background-color: #ffffff;
            border-radius: 12px;
            padding: 45px 25px 60px; 
            text-align: center;
            position: relative; 
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #e2e8f0;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .abt2-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        /* Top Right Number Badge */
        .abt2-badge {
            position: absolute;
            top: -1px;
            right: -1px;
            background-color: #5bc0eb;
            color: #ffffff;
            font-size: 0.9rem;
            font-weight: 700;
            padding: 8px 18px;
            border-top-right-radius: 12px;
            border-bottom-left-radius: 12px;
            z-index: 2;
        }

        /* Card Icon (Now targets SVG) */
        .abt2-icon {
            width: 45px;
            height: 45px;
            margin-bottom: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .abt2-icon svg {
            width: 100%;
            height: 100%;
            fill: #5bc0eb;
        }

        /* Card Text */
        .abt2-card-title {
            font-size: 1.25rem;
            color: #222222;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .abt2-card-desc {
            font-size: 0.85rem;
            color: #6b7280;
            line-height: 1.6;
        }

        /* Overlapping Plus Button */
        .abt2-btn-wrapper {
            position: absolute;
            bottom: -22px;
            left: 50%;
            transform: translateX(-50%);
            width: 44px;
            height: 44px;
            background-color: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #e2e8f0;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .abt2-btn-wrapper svg {
            width: 16px;
            height: 16px;
            fill: #9ca3af;
            transition: fill 0.3s ease;
        }

        .abt2-btn-wrapper:hover {
            background-color: #5bc0eb;
            border-color: #5bc0eb;
            transform: translateX(-50%) scale(1.1);
        }
        
        .abt2-btn-wrapper:hover svg {
            fill: #ffffff;
        }

        /* Bottom Centered Droplet Decoration */
        .abt2-bottom-drop {
            text-align: center;
            margin-top: 60px;
        }
        
        .abt2-bottom-drop svg {
            width: 20px;
            height: 20px;
            fill: #5bc0eb;
        }

        /* --- Responsive Headers --- */
        @media (max-width: 768px) {
            .abt2-title { font-size: 2.2rem; }
            .abt2-section { padding: 70px 5%; }
        }

        @media (max-width: 480px) {
            .abt2-title { font-size: 1.8rem; }
        }
        
        
        
        
        
        
        
        
        .ctnt-section {
            --ctnt-primary: #0b5ed7;
            --ctnt-primary-hover: #0043a8;
            --ctnt-text-dark: #1f2937;
            --ctnt-text-gray: #6b7280;
            --ctnt-bg-white: #ffffff;
            --ctnt-bg-input: #f0f4f8;
            --ctnt-border-light: #e5eaf2;
        }

        /* --- Base Scoping --- */
        .ctnt-section * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        /* Utility for Screen Readers (100% SEO) */
        .ctnt-sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border-width: 0;
        }

        /* --- Section Container --- */
        .ctnt-section {
            background-color: #ffffff; 
            padding: 100px 5%;
            position: relative;
            width: 100%;
            overflow: hidden;
        }

        .ctnt-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* --- Section Header --- */
        .ctnt-header {
            text-align: center;
            max-width: 650px;
            margin: 0 auto 60px;
        }

        .ctnt-subtitle {
            color: var(--ctnt-primary);
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: block;
            margin-bottom: 12px;
        }

        .ctnt-title {
            font-size: 2.6rem;
            color: var(--ctnt-text-dark);
            font-weight: 600;
            line-height: 1.25;
            margin-bottom: 15px;
            letter-spacing: -0.5px;
        }

        .ctnt-wave {
            display: flex;
            justify-content: center;
        }

        .ctnt-wave svg {
            width: 45px;
            height: 8px;
            fill: transparent;
            stroke: #66b2ff;
            stroke-width: 2.5px;
            stroke-linecap: round;
        }

        /* --- Main Content Grid --- */
        .ctnt-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center; /* Changed from start to center to balance the form */
        }

        /* --- Left Side: Location Info --- */
        .ctnt-info-wrapper {
            background-color: var(--ctnt-primary-hover); /* Deep blue bg */
            padding: 50px 40px;
            border-radius: 12px;
            color: var(--ctnt-bg-white);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }

        .ctnt-info-title {
            font-size: 1.6rem;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .ctnt-info-wave {
            margin-bottom: 30px;
        }

        .ctnt-info-wave svg {
            width: 40px;
            height: 8px;
            fill: transparent;
            stroke: #66b2ff;
            stroke-width: 2.5px;
            stroke-linecap: round;
        }

        .ctnt-location-name {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .ctnt-address {
            font-style: normal;
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 25px;
            opacity: 0.9;
        }

        .ctnt-contact-link {
            display: block;
            color: var(--ctnt-bg-white);
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 500;
            margin-bottom: 15px;
            transition: opacity 0.3s;
        }

        .ctnt-contact-link:hover {
            opacity: 0.8;
            text-decoration: underline;
        }

        /* --- Right Side: Contact Form --- */
        .ctnt-form-wrapper {
            background: var(--ctnt-bg-white);
            border-radius: 12px;
            padding: 45px 40px;
            box-shadow: 0 15px 50px rgba(0,0,0,0.06);
            border: 1px solid rgba(0,0,0,0.02);
        }

        .ctnt-form-title {
            font-size: 1.5rem;
            color: var(--ctnt-text-dark);
            font-weight: 600;
            margin-bottom: 25px;
        }

        .ctnt-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .ctnt-input-group {
            position: relative;
        }

        /* Input Icon embedded directly */
        .ctnt-input-icon {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            width: 14px;
            height: 14px;
            fill: var(--ctnt-primary);
            z-index: 2;
        }

        .ctnt-input-group.textarea-group .ctnt-input-icon {
            top: 20px;
            transform: none;
        }

        .ctnt-input {
            width: 100%;
            padding: 15px 20px 15px 50px;
            background-color: var(--ctnt-bg-input);
            border: 1px solid transparent;
            border-radius: 30px;
            font-size: 0.85rem;
            color: var(--ctnt-text-dark);
            transition: border-color 0.3s, background-color 0.3s;
        }

        .ctnt-textarea {
            resize: vertical;
            min-height: 130px;
            border-radius: 20px;
        }

        .ctnt-input::placeholder {
            color: #9ca3af;
        }

        .ctnt-input:focus {
            outline: none;
            border-color: var(--ctnt-primary);
            background-color: var(--ctnt-bg-white);
        }

        .ctnt-submit-btn {
            background-color: var(--ctnt-primary);
            color: var(--ctnt-bg-white);
            border: none;
            padding: 15px 35px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            cursor: pointer;
            transition: background-color 0.3s, transform 0.2s;
            align-self: flex-start;
            margin-top: 5px;
        }

        .ctnt-submit-btn:hover {
            background-color: var(--ctnt-primary-hover);
            transform: translateY(-2px);
        }

        /* --- Responsive Design --- */
        @media (max-width: 1024px) {
            .ctnt-layout {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .ctnt-form-wrapper, .ctnt-info-wrapper {
                max-width: 750px;
                margin: 0 auto;
                width: 100%;
            }
        }

        @media (max-width: 768px) {
            .ctnt-title {
                font-size: 2.2rem;
            }
            .ctnt-form-wrapper, .ctnt-info-wrapper {
                padding: 35px 25px;
            }
        }

        @media (max-width: 480px) {
            .ctnt-title {
                font-size: 1.8rem;
            }
            .ctnt-section {
                padding: 70px 5%;
            }
        }
        
        /* --- Products Grid Layout --- */
.products-grid {
    display: grid;
    /* This creates exactly 3 equal-width columns */
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; /* Space between the product cards */
    
    /* Optional: constrain the max width and center the grid */
    max-width: 1200px;
    margin: 40px auto 0 auto; 
    padding: 0 5%;
}

/* --- Responsive Layout Adjustments --- */

/* For Tablets (Screens smaller than 992px) */
@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 in a row */
    }
}

/* For Mobile Phones (Screens smaller than 768px) */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr; /* 1 in a row */
        gap: 20px;
    }
}