        /* --- 1. CORE VARIABLES & RESET --- */
        :root {
            --primary-color: #002b5c;
            /* Deep Blue */
            --primary-dark: #001a38;
            --accent-color: #e31e24;
            /* Industrial Red */
            --botim-color: #00bfa5;
            --text-dark: #1a1a1a;
            --text-light: #666;
            --white: #ffffff;
            --bg-light: #f4f7f6;
            --font-stack: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-stack);
            color: var(--text-dark);
            line-height: 1.6;
            background-color: var(--white);
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: 0.3s;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
        }

        input,
        textarea,
        button {
            font-family: inherit;
        }

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


                 /* --- TOP HEADER BAR --- */
                 .top-bar {
                     background-color: var(--primary-color);
                     color: rgba(255, 255, 255, 0.9);
                     font-size: 13px;
                     height: 42px;
                     /* Fixed height */
                     border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                     transition: all 0.4s ease;
                     overflow: hidden;
                 }
        
                 /* Collapse Top Bar on Scroll */
                 header.scrolled .top-bar {
                     height: 0;
                     opacity: 0;
                 }
        
                 .top-bar-content {
                     display: flex;
                     justify-content: space-between;
                     /* Content on opposite sides */
                     align-items: center;
                     height: 100%;
                 }
        
                 .top-left {
                     display: flex;
                     align-items: center;
                     gap: 20px;
                 }
        
                 .top-right {
                     display: flex;
                     align-items: center;
                     gap: 10px;
                 }
        
                 .top-link {
                     display: flex;
                     align-items: center;
                     gap: 8px;
                     font-weight: 500;
                     font-size: 0.85rem;
                     opacity: 0.9;
                 }
        
                 .top-link:hover {
                     color: var(--accent-color);
                     opacity: 1;
                 }
        
                 /* Social Icons (Small for Top Bar) */
                 .social-icon-sm {
                     width: 28px;
                     height: 28px;
                     display: flex;
                     align-items: center;
                     justify-content: center;
                     border-radius: 50%;
                     background: rgba(255, 255, 255, 0.1);
                     transition: 0.3s;
                 }
        
                 .social-icon-sm:hover {
                     background: var(--accent-color);
                     transform: translateY(-2px);
                 }
        
                 .social-icon-sm svg {
                     fill: white;
                     width: 14px;
                     height: 14px;
                 }





        /* --- 2. HEADER & MENU --- */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(5px);
            transition: all 0.4s ease;
            padding: 15px 0;
            color: white;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        header.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            padding: 10px 0;
            color: var(--primary-color);
            backdrop-filter: none;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 24px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: inherit;
        }

        .logo-icon {
            width: 32px;
            height: 32px;
            background: var(--accent-color);
            border-radius: 6px;
            position: relative;
            transform: rotate(45deg);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-icon::after {
            content: '';
            width: 16px;
            height: 16px;
            border: 3px solid white;
            border-radius: 50%;
            transform: rotate(-45deg);
        }

        .nav-menu {
            display: flex;
            gap: 30px;
            align-items: center;
            margin: 0 auto;
        }

        .nav-link {
            font-weight: 600;
            font-size: 15px;
            color: inherit;
            position: relative;
            cursor: pointer;
            padding: 5px 0;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-color);
            transition: width 0.3s;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        /* Mega Menu */
        .nav-item {
            position: relative;
        }

        .mega-menu {
            position: absolute;
            top: 100%;
            left: 10%;
            transform: translateX(-50%) translateY(20px);
            width: 250px;
            background: white;
            color: var(--text-dark);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
            border-radius: 8px;
            padding: 10px 20px ;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            display: grid;
            grid-template-columns: 1fr;
            gap: 10px;
            border-top: 4px solid var(--accent-color);
            margin-top: 30px;
        }

        .nav-item:hover .mega-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .mega-column h4 {
            color: var(--primary-color);
            margin-bottom: 15px;
            border-bottom: 1px solid #eee;
            padding-bottom: 8px;
            font-size: 1.1rem;
        }

        .mega-column ul li {
            margin-bottom: 10px;
            margin-top: 10px;
        }

        .mega-column ul li a {
            color: #555;
            font-size: 0.95rem;
        }

        .mega-column ul li a:hover {
            color: var(--accent-color);
            padding-left: 5px;
        }

        .botim-btn {
            background: var(--botim-color);
            color: white !important;
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
            transition: transform 0.3s;
        }

        .botim-btn:hover {
    transform: translateY(-2px);
    background-color: #009e8c;
    }

        /* --- 3. HERO SECTION --- */
        .hero {
            position: relative;
            height: 100vh;
            min-height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            /* Changed to center */
            color: var(--white);
            background-color: #000;
            overflow: hidden;
        }

        .hero-bg-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, rgba(0, 10, 20, 0.9) 0%, rgba(0, 26, 56, 0.7) 0%, rgba(0, 26, 56, 0.3) 0%);
            z-index: 1;
        }

        .hero .container {
            position: relative;
            z-index: 5;
            width: 100%;
        }

        .hero-content {
            max-width: 1180px;
            /* Increased max-width slightly for center look */
            padding-top: 80px;
            text-align: center;
            /* Changed to center */
            margin: 0 auto;
            /* Ensures centering within container */
        }

        .hero h2 {
            font-size: 2.5rem;
            margin-bottom: 25px;
            line-height: 1.1;
            font-weight: 800;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        .hero p {
            font-size: 1.25rem;
            margin-bottom: 35px;
            opacity: 0.95;
            max-width: 50%;
            margin-left: 0px;
            margin-right: auto;
            padding-left:0px;
            /* Centers the paragraph */
        }

        .btn-primary {
            display: inline-block;
            background: var(--accent-color);
            color: white;
            padding: 16px 40px;
            font-weight: bold;
            border-radius: 4px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px rgba(227, 30, 36, 0.4);
            border: none;
            cursor: pointer;
        }

        .btn-primary:hover {
            background-color: #c0151a;
            transform: translateY(-2px);
        }

        .hero-trust {
            margin-top: 50px;
            padding-top: 25px;
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            display: flex;
            align-items: center;
            gap: 20px;
            justify-content: center;
            /* Changed to center */
        }

        .trust-text {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #aaa;
        }

        .trust-logos {
            display: flex;
            gap: 25px;
            opacity: 0.8;
        }

        .trust-logo-text {
            font-weight: 800;
            font-size: 1.2rem;
            color: white;
        }

        /* --- COMMON SECTION STYLES --- */
        .section {
            padding: 90px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            font-weight: 800;
        }

        .section-title .divider {
            width: 60px;
            height: 5px;
            background: var(--accent-color);
            margin: 0 auto;
            border-radius: 2px;
        }

        .section-title p {
            color: var(--text-light);
            max-width: 600px;
            margin: 15px auto 0;
        }

        /* --- 4. ABOUT US --- */
        .about-section {
            background: white;
        }

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

        .about-text h3 {
            color: var(--primary-color);
            font-size: 2rem;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .about-stats {
            display: flex;
            gap: 40px;
            margin-top: 40px;
            border-top: 1px solid #eee;
            padding-top: 30px;
        }

        .stat-item h4 {
            font-size: 2.2rem;
            color: var(--accent-color);
            font-weight: 800;
            margin-bottom: 5px;
        }

        .stat-item p {
            font-size: 0.9rem;
            font-weight: 600;
            color: #555;
        }

        .about-img {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            height: 450px;
        }

        .about-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            
        }

        /* --- 5. PRODUCTS (Updated Images) --- */
        .bg-light {
            background-color: var(--bg-light);
        }

        .grid-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .cat-card {
            background: var(--white);
            border: 1px solid #eee;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.4s ease;
            position: relative;
            display: flex;
            flex-direction: column;
        }
        
        



        .cat-card:hover {
            transform: translateY(0px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            border-color: var(--accent-color);
        }

        .cat-img-wrap {
            /* Changed to contain to show full product */
            height: 240px;
            background-color: #fff;
            overflow: hidden;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
         
        }

        .cat-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            /*transition: 0.6s;*/
            /*filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));*/
            /* Product shadow */
        }

        .cat-card:hover .cat-img-wrap img {
            transform: scale(1.08);
        }
   
        .cat-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(0, 43, 92, 0.9);
            backdrop-filter: blur(4px);
            color: white;
            padding: 6px 12px;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            z-index: 2;
        }

        .cat-content {
            padding: 15px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .cat-title {
            font-size: 16px;
            color: var(--primary-color);
            margin-bottom: 10px;
            font-weight: 700;
        }

        .cat-desc {
            font-size: 0.95rem;
            color: var(--text-light);
            margin-bottom: 20px;
        }

        .cat-action {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: auto;
            border-top: 1px solid #f1f1f1;
            padding-top: 15px;
        }

        .cat-link {
            font-weight: 700;
            color: var(--primary-color);
            text-transform: uppercase;
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .cat-arrow {
            width: 30px;
            height: 30px;
            background: #f1f3f5;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.3s;
            color: var(--primary-color);
        }

        .cat-card:hover .cat-arrow {
            background: var(--accent-color);
            color: white;
            transform: translateX(5px);
        }
        
        
        
        
        

        .full-link {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
        }
        
        
            /* --- 4. Product Detail --- */
        .pd-section {
            background: white;
        }

        .pd-grid {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 60px;
            align-items: center;
        }

        .pd-text h3 {
            color: var(--primary-color);
            font-size: 2rem;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .pd-stats {
            display: flex;
            gap: 40px;
            margin-top: 40px;
            border-top: 1px solid #eee;
            padding-top: 30px;
        }

        .pd-item h4 {
            font-size: 2.2rem;
            color: var(--accent-color);
            font-weight: 800;
            margin-bottom: 5px;
        }

        .pd-item p {
            font-size: 0.9rem;
            font-weight: 600;
            color: #555;
        }

        .pd-img {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            height: 450px;
        }

        .pd-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            
        }

        /* --- 6. INDUSTRY USES --- */
        .industry-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
        }

        .ind-card {
            position: relative;
            height: 250px;
            border-radius: 12px;
            overflow: hidden;
            cursor: pointer;
        }

        .ind-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 0.6s;
        }

        .ind-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
            display: flex;
            align-items: flex-end;
            padding: 25px;
        }

        .ind-title {
            color: white;
            font-weight: 700;
            font-size: 1.3rem;
            transform: translateY(0);
            transition: 0.3s;
        }

        .ind-card:hover .ind-img {
            transform: scale(1.1);
        }

        .ind-card:hover .ind-title {
            color: var(--accent-color);
            transform: translateY(-5px);
        }

        /* --- 7. BRAND SCROLLER --- */
        .brand-section {
            background: white;
            padding: 50px 0;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
            overflow: hidden;
        }

        .brand-track {
            display: flex;
            width: calc(200px * 10);
            animation: scroll 20s linear infinite;
        }

        .brand-slide {
            width: 200px;
            padding: 0 30px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .brand-slide img {
            max-width: 150px;
            opacity: 0.7;
            transition: 0.3s;
        }

        .brand-slide img:hover {
            opacity: 1;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(calc(-200px * 5));
            }
        }

        /* --- 8. WHY CHOOSE US (UPDATED WITH MISSION/VISION/STRUCTURE) --- */
        .why-us-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .why-card {
            background: white;
            padding: 40px 30px;
            border-radius: 12px;
            text-align: left;
            border: 1px solid #eee;
            transition: 0.3s;
            position: relative;
            overflow: hidden;
            height: 100%;
        }

        .why-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--accent-color);
            transform: scaleY(0);
            transition: 0.3s;
            transform-origin: bottom;
        }

        .why-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
        }

        .why-card:hover::before {
            transform: scaleY(1);
        }

        .why-icon {
            width: 60px;
            height: 60px;
            background: rgba(227, 30, 36, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--accent-color);
            margin-bottom: 20px;
        }

        .why-card h3 {
            font-size: 1.4rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            font-weight: 700;
        }

        .why-card p {
            color: var(--text-light);
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 15px;
        }

        .why-list {
            list-style: none;
            padding: 0;
        }

        .why-list li {
            margin-bottom: 8px;
            font-size: 0.9rem;
            color: #555;
            position: relative;
            padding-left: 20px;
        }

        .why-list li::before {
            content: '•';
            color: var(--accent-color);
            position: absolute;
            left: 0;
            font-weight: bold;
        }

        /* --- 9. CUSTOMER REVIEWS --- */
        .review-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .review-card {
            background: white;
            padding: 35px;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            position: relative;
            margin-top: 20px;
        }

        .quote-icon {
            position: absolute;
            top: -20px;
            left: 30px;
            width: 40px;
            height: 40px;
            background: var(--accent-color);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-size: 1.2rem;
        }

        .stars {
            color: #FFD700;
            margin-bottom: 15px;
            margin-top: 10px;
            letter-spacing: 2px;
        }

        .review-text {
            font-style: italic;
            color: #555;
            margin-bottom: 20px;
            font-size: 1rem;
            line-height: 1.7;
        }

        .reviewer {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .reviewer-avatar {
            width: 50px;
            height: 50px;
            background: #ddd;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: #666;
        }

        .reviewer-info h5 {
            color: var(--primary-color);
            font-size: 1rem;
            margin-bottom: 2px;
        }

        .reviewer-info span {
            font-size: 0.85rem;
            color: #888;
        }

        /* --- 10. COMBINED CONTACT & FAQ (SIDE BY SIDE) --- */
        .contact-faq-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        /* FAQ Styling */
        .faq-col h3 {
            font-size: 2rem;
            margin-bottom: 30px;
            color: var(--primary-color);
        }

        .faq-item {
            background: white;
            border: 1px solid #eee;
            border-radius: 8px;
            margin-bottom: 15px;
            overflow: hidden;
        }

        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--primary-color);
            transition: 0.3s;
        }

        .faq-question:hover {
            background: #f9f9f9;
            color: var(--accent-color);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: 0.3s ease;
            padding: 0 20px;
            color: #555;
            background: #fafafa;
        }

        .faq-item.active .faq-answer {
            max-height: 200px;
            padding: 20px;
            border-top: 1px solid #eee;
        }

        .faq-icon {
            transition: 0.3s;
            font-size: 0.8rem;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        /* Form Styling */
        .form-box {
            background: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            border-top: 5px solid var(--accent-color);
        }

        .form-box h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--primary-color);
        }

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

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            font-size: 0.9rem;
            color: #444;
        }

        .form-control {
            width: 100%;
            padding: 14px;
            border: 1px solid #ddd;
            border-radius: 6px;
            outline: none;
            transition: 0.3s;
            background: #f9f9f9;
        }

        .form-control:focus {
            border-color: var(--accent-color);
            background: white;
            box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.1);
        }

        .submit-btn {
            width: 40%;
            padding: 16px;
            background: var(--accent-color);
            color: white;
            border: none;
            font-weight: bold;
            border-radius: 6px;
            cursor: pointer;
            transition: 0.3s;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .submit-btn:hover {
            background: #c0151a;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(227, 30, 36, 0.3);
        }

        /* --- 11. FOOTER (UPDATED LOOK) --- */
        footer {
            background-color: var(--primary-dark);
            color: #cbd5e1;
            padding-top: 80px;
            font-size: 0.95rem;
        }

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

        .footer-col h4 {
            color: white;
            margin-bottom: 25px;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .footer-links a {
            color: #94a3b8;
            display: block;
            margin-bottom: 12px;
            transition: 0.3s;
        }

        .footer-links a:hover {
            color: white;
            transform: translateX(5px);
        }

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

        .social-icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            color: white;
            transition: 0.3s;
        }

        .social-icon:hover {
            background: var(--accent-color);
            transform: translateY(-3px);
        }

        .newsletter-form {
            display: flex;
            gap: 10px;
            margin-top: 15px;
        }

        .newsletter-input {
            flex: 1;
            padding: 10px;
            border-radius: 4px;
            border: none;
            outline: none;
            background: rgba(255, 255, 255, 0.1);
            color: white;
        }

        .newsletter-btn {
            padding: 10px 20px;
            background: var(--accent-color);
            border: none;
            border-radius: 4px;
            color: white;
            cursor: pointer;
            font-weight: bold;
        }

        .footer-bottom {
            background-color: #000e1f;
            padding: 25px 0;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            color: #64748b;
            font-size: 0.85rem;
        }

        /* RESPONSIVE */
        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.8rem;
        }


        .contact-details {
                background: white;
                padding: 40px;
                border-radius: 12px;
                box-shadow: 0 10px 40px rgba(0,0,0,0.08);
                border-left: 5px solid var(--accent-color);
            }

            .contact-details h3 {
                font-size: 2rem;
                margin-bottom: 30px;
                color: var(--primary-color);
            }

            .contact-item {
                display: flex;
                align-items: flex-start;
                gap: 15px;
                margin-bottom: 20px;
            }

            .contact-icon {
                font-size: 1.4rem;
                line-height: 1;
            }

            .contact-item p {
                font-size: 1rem;
                color: var(--text-dark);
                font-weight: 600;
            }

            .contact-item a {
                color: var(--primary-color);
                font-weight: 700;
            }

            .contact-item a:hover {
                color: var(--accent-color);
            }

            .contact-right-box {
                background: linear-gradient(
                    135deg,
                    var(--primary-color),
                    var(--primary-dark)
                );
                color: white;
                padding: 40px;
                border-radius: 12px;
            }

            .contact-right-box h3 {
                font-size: 2rem;
                margin-bottom: 20px;
            }

            .contact-right-box p {
                font-size: 1rem;
                opacity: 0.9;
            }

             .map-container {
                position: relative;
                width: 100%;
                padding-bottom: 30.25%;
                height: 0;
                overflow: hidden;
            }
            .map-container iframe {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
            }

            .social-icon svg {
                width: 18px;
                height: 18px;
                fill: white;
            }

            .social-icon:hover svg {
                fill: white;
            }

        @media (max-width: 900px) {
            .contact-faq-wrapper {
                grid-template-columns: 1fr;
                gap: 50px;
            }

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

            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 85%;
                height: 100vh;
                background: white;
                flex-direction: column;
                padding: 80px 40px;
                color: var(--text-dark);
                box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
            }

            .nav-menu.active {
                right: 0;
            }

            .hamburger {
                display: block;
                z-index: 1001;
            }

            .about-grid {
                grid-template-columns: 1fr;
            }

            .about-img {
                height: 300px;
            }

            .hero h1 {
                font-size: 2.8rem;
            }

            .hero-content {
                text-align: center;
                margin: 0 auto;
                padding-top: 100px;
            }

            /* Center Hero on Mobile */
            .hero-trust {
                justify-content: center;
            }

            /* Center Trust on Mobile */
            .mega-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                width: 100%;
                display: none;
                padding: 10px 0;
                box-shadow: none;
                border: none;
            }

            .nav-item:hover .mega-menu {
                display: block;
            }
        }

        @media (max-width: 600px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .section {
                padding: 60px 0;
            }
        }