        /* ==================== 1. GLOBAL STYLES & RESET ==================== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #0f172a;
            --secondary-color: #2563eb;
            --accent-color: #38bdf8;
            --bg-light: #f8fafc;
            --bg-card: #ffffff;
            --text-dark: #1e293b;
            --text-muted: #64748b;
            --border-color: #e2e8f0;
            --font-main: 'Plus Jakarta Sans', sans-serif;
            --transition: all 0.3s ease;
        }

        body {
            font-family: var(--font-main);
            color: var(--text-dark);
            background-color: #fff;
            line-height: 1.6;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-title {
            text-align: center;
            font-size: 2.0rem;
            color: #a3903c;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .section-subtitle {
            text-align: center;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto 40px auto;
            font-size: 1rem;
        }

        /* ==================== 2. HEADER & NAVIGATION ==================== */
        header {
            position: sticky;
            top: 0;
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
            z-index: 1000;
        }

        .nav-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: #bea223;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .logo span {
            color: #8a7c7c;
        }

        /* First Level Menu */
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 35px;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            font-weight: 600;
            font-size: 1.0rem;
            padding: 10px 0;
            color: var(--text-dark);
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .nav-link:hover {
            color: #a3903c;
        }

        /* 1st Level Dropdown */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            width: 200px;
            background: var(--bg-card);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            border-radius: 8px;
            padding: 10px 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: var(--transition);
        }

        .nav-item:hover > .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-item {
            position: relative;
        }

        .dropdown-link {
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.9rem;
            color: var(--text-dark);
            transition: var(--transition);
        }

        .dropdown-link:hover {
            background-color: var(--bg-light);
            color: #3f3d3d;
        }

        /* 2nd Level Dropdown */
        .dropdown-submenu {
            position: absolute;
            top: 0;
            left: 100%;
            width: 200px;
            background: var(--bg-card);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            border-radius: 8px;
            padding: 10px 0;
            opacity: 0;
            visibility: hidden;
            transform: translateX(10px);
            transition: var(--transition);
        }

        .dropdown-item:hover > .dropdown-submenu {
            opacity: 1;
            visibility: visible;
            transform: translateX(0);
        }

        /* Toggle Button for Horizontal Mega Menu */
        .services-toggle-btn {
            background: linear-gradient(135deg, hsl(60, 12%, 97%), #faf8f8);
            color: #3f3d3d;
            border: none;
            padding: 10px 18px;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition);
        }

        .services-toggle-btn:hover {
            opacity: 0.9;
        }

        /* Horizontal Mega Dropdown */
        .horizontal-mega-menu {
            position: absolute;
            top: 80px;
            left: 0;
            width: 100%;
            background: #ffffff;
            box-shadow: 0 15px 30px rgba(0,0,0,0.08);
            border-top: 1px solid var(--border-color);
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .horizontal-mega-menu.active {
            max-height: 350px;
        }

        .mega-menu-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            padding: 30px 20px;
        }

        .mega-card {
            background: var(--bg-light);
            border-radius: 8px;
            overflow: hidden;
            text-align: center;
            transition: var(--transition);
            border: 1px solid var(--border-color);
        }

        .mega-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .mega-card img {
            width: 100%;
            height: 110px;
            object-fit: cover;
        }

        .mega-card h4 {
            padding: 12px;
            font-size: 0.95rem;
            color: var(--primary-color);
        }

        /* ==================== 3. HERO BANNER ==================== */
        .hero-banner {
            padding: 1px 0;
            margin: 0;
            text-align: center;
            position: relative;
        }

        .banner-image {
            width: 100%;
            height: auto;
            display: block;
            margin: 0 auto;
            border-radius: 8px;
        }

        /* ==================== 4. GRID & ABOUT SECTION ==================== */
        .grid-about-section {
            padding: 50px 0;
            background-color: #ffffff;
        }

        .split-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        /* 2x2 Grid with Margin/Gap Between Elements */
        .feature-grid-2x2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px; /* Added small gap between grid elements */
        }

        .grid-box {
            padding: 35px 25px;
            background: var(--bg-light);
            text-align: center;
            position: relative;
            transition: var(--transition);
            border: 1px solid var(--border-color);
            border-radius: 12px; /* Added border-radius to each individual card */
            box-shadow: 0 4px 12px rgba(0,0,0,0.02);
        }

        .grid-box:hover {
            transform: translateY(-3px);
            background-color: #ffffff;
            border-color: #a3903c;
            box-shadow: 0 8px 20px rgba(0,0,0,0.06);
        }

        .grid-box i {
            font-size: 2rem;
            color: var(--secondary-color);
            margin-bottom: 15px;
        }

        .grid-box h3 {
            font-size: 1.8rem;
            margin-bottom: 8px;
            color: var(--primary-color);
        }

        .grid-box p {
            font-size: 0.95rem;
            color: #3f3d3d;
        }

        /* About Us Content */
        .about-content h2 {
            font-size: 1.7rem;
            color: #a3903c;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .about-content p {
            color: #3f3d3d;
            margin-bottom: 15px;
            font-size: 1rem;
            font-weight: 500;
        }

        .about-btn {
            display: inline-block;
            margin-top: 15px;
            padding: 12px 28px;
            background-color:  var(--bg-light);
            color: #201f1f;
            border-radius: 6px;
            font-weight: 600;
            transition: var(--transition);
        }

        .about-btn:hover {
            background-color: #a3903c;
            color: #fff
        }

        /* ==================== 5. 2x3 GALLERY SECTION ==================== */
        .gallery-section {
            padding: 50px 0;
            background-color: var(--bg-light);
        }

        .grid-2x3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: repeat(2, auto);
            gap: 25px;
        }

        .gallery-card {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            display: block;
            height: 240px;
        }

        .gallery-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(15, 23, 42, 0.85), transparent);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 20px;
            color: #fff;
            opacity: 0.9;
            transition: var(--transition);
        }

        .gallery-card:hover img {
            transform: scale(1.08);
        }

        .gallery-card:hover .gallery-overlay {
            opacity: 1;
            background: linear-gradient(to top, rgba(204, 210, 224, 0.9), rgba(15, 23, 42, 0.4));
            color:#0b1120;
        }

        .gallery-overlay h4 {
            font-size: 1.2rem;
            margin-bottom: 5px;
        }

        .gallery-overlay span {
            font-size: 0.85rem;
            opacity: 0.8;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        /* ==================== 6. PARTNERS & SINGLE FEEDBACK ROTATOR ==================== */
        .partners-feedback-section {
            padding: 40px 0;
            background: #ffffff;
        }

        .partners-feedback-split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .partners-container h3, .feedback-container h3 {
            font-size: 1.7rem;
            color: #a3903c;
            margin-bottom: 25px;
            text-align: center;
        }

        /* Partner Logos */
        .partner-logos-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            align-items: center;
        }

        .partner-logo {
            background: var(--bg-light);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 12px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: 700;
            color: var(--text-muted);
            font-size: 1.8rem;
            filter: grayscale(0%);
            opacity: 1.0;
            transition: var(--transition);
        }

        .partner-logo:hover {
            filter: grayscale(100%);
            opacity: 0.7;
            border-color: #a3903c;
            color: var(--secondary-color);
        }

        /* SINGLE FEEDBACK DISPLAY (ONE BY ONE ROTATOR) */
        .single-feedback-wrapper {
            position: relative;
            background: var(--bg-light);
            border-radius: 12px;
            border: 1px solid var(--border-color);
            padding: 35px;
            min-height: 220px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.03);
        }

        .feedback-item {
            display: none;
            opacity: 0;
            transform: translateY(10px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .feedback-item.active {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }

        .feedback-item p {
            font-size: 1.05rem;
            color: var(--text-dark);
            font-style: italic;
            margin-bottom: 20px;
            position: relative;
        }

        .feedback-item p::before {
            content: '"';
            font-size: 3rem;
            color: #a3903c;
            opacity: 0.6;
            position: absolute;
            top: -20px;
            left: -20px;
            
        }

        .client-info {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .client-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: #3f3d3d;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.1rem;
        }

        .client-details h5 {
            font-size: 1rem;
            color: var(--primary-color);
        }

        .client-details span {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        /* Dots indicator for feedback rotators */
        .feedback-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 20px;
        }

        .dot {
            width: 10px;
            height: 10px;
            background-color: #7c6b6b;
            border-radius: 50%;
            cursor: pointer;
            transition: var(--transition);
        }

        .dot.active {
            background-color: #a3903c;
            width: 25px;
            border-radius: 10px;
        }

        /* ==================== 7. FOOTER ==================== */
        footer {
            position: relative;
            background-color: #0b1120;
            /* Self-Pattern: Geometric SVG Grid Overlay + Radial Blue Accent Glow */
            background-image: 
                radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(56, 189, 248, 0.1) 0%, transparent 50%),
                url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h40v40H0V0zm1 1h38v38H1V1z' fill='%231e293b' fill-opacity='0.25' fill-rule='evenodd'/%3E%3C/svg%3E");
            color: #f1f5f9;
            padding: 70px 0 20px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            overflow: hidden;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 50px;
            position: relative;
            z-index: 2;
        }

        .footer-about p {
            color: #94a3b8;
            margin: 15px 0 20px 0;
            font-size: 0.9rem;
            max-width: 300px;
        }

        .footer-socials {
            display: flex;
            gap: 12px;
        }

        .footer-socials a {
            width: 36px;
            height: 36px;
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: var(--transition);
        }

        .footer-socials a:hover {
            background: var(--secondary-color);
            border-color: var(--secondary-color);
        }

        .footer-column h4 {
            font-size: 1.1rem;
            margin-bottom: 20px;
            color: #fff;
            position: relative;
        }

        .footer-column h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -6px;
            width: 30px;
            height: 2px;
            background: #a3903c;
        }

        .footer-column ul li {
            margin-bottom: 12px;
        }

        .footer-column ul li a {
            color: #94a3b8;
            font-size: 0.9rem;
            transition: var(--transition);
        }

        .footer-column ul li a:hover {
            color: #fff;
            padding-left: 5px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.08);
            color: #64748b;
            font-size: 0.85rem;
            position: relative;
            z-index: 2;
        }
        
        

        /* ========CONTACT PAGE ============ RESPONSIVE MEDIA QUERIES ==================== */
        @media (max-width: 1024px) {
            .split-layout, .partners-feedback-split {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .grid-2x3 {
                grid-template-columns: repeat(2, 1fr);
            }

            .mega-menu-content {
                grid-template-columns: repeat(2, 1fr);
            }

            .horizontal-mega-menu.active {
                max-height: 500px;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .grid-2x3 {
                grid-template-columns: 1fr;
            }

            .partner-logos-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }
        }
    
        /* ==================== 3. HERO TITLE SECTION ==================== */
        .contact-hero {
            background: linear-gradient(135deg, #ffffff);
            color: #ffffff;
            padding: 1px 0;
            text-align: center;
            position: relative;
        }
        .contact-hero img {
            height: 250px;
        }

        .contact-hero h1 {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .contact-hero p {
            color: #94a3b8;
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* ==================== 4. CONTACT & QUERY SECTION ==================== */
        .contact-section {
            padding: 50px 0;
            background-color: var(--bg-light);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 50px;
            align-items: start;
        }

        /* Left Column: Details & Socials */
        .contact-info-card {
            background: #ffffff;
            padding: 40px;
            border-radius: 16px;
            border: 1px solid var(--border-color);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
        }

        .contact-info-card h3 {
            font-size: 1.6rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .contact-info-card p {
            color: var(--text-muted);
            margin-bottom: 30px;
            font-size: 0.95rem;
        }

        .info-list {
            margin-bottom: 30px;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 10px;
        }

        .info-icon {
            width: 48px;
            height: 48px;
            background: rgba(37, 99, 235, 0.08);
            color: #abc6e6;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .info-text h5 {
            font-size: 1rem;
            color: var(--primary-color);
            margin-bottom: 1px;
        }

        .info-text p, .info-text a {
            color: #353434;
            font-size: 0.9rem;
            transition: var(--transition);
        }

        .info-text a:hover {
            color: var(--secondary-color);
        }

        /* Social Media Block */
        .social-section {
            border-top: 1px solid var(--border-color);
            padding-top: 10px;
        }

        .social-section h4 {
            font-size: 1.1rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .social-links {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .social-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 18px;
            border-radius: 8px;
            background: var(--bg-light);
            color: var(--text-dark);
            border: 1px solid var(--border-color);
            font-size: 0.88rem;
            font-weight: 600;
            transition: var(--transition);
        }

        .social-btn:hover {
            /*background: var(--secondary-color);
            color: #ffffff;*/
            border-color: #a3903c;
            transform: translateY(-2px);
        }

        /* Right Column: Query Form */
        .query-form-card {
            background: #ffffff;
            padding: 40px;
            border-radius: 16px;
            border: 1px solid var(--border-color);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
        }

        .query-form-card h3 {
            font-size: 1.6rem;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .query-form-card p {
            color: var(--text-muted);
            margin-bottom: 30px;
            font-size: 0.95rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

        .form-control {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            font-family: inherit;
            font-size: 0.95rem;
            color: var(--text-dark);
            background: var(--bg-light);
            transition: var(--transition);
            outline: none;
        }

        .form-control:focus {
            border-color: var(--secondary-color);
            background: #ffffff;
            box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
        }

        textarea.form-control {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            width: 100%;
            padding: 14px 28px;
            background-color: #abc6e6;
            color: #353434;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .submit-btn:hover {
            background-color: #a3903c;
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
            color:#ffffff;
        }

        /* Success Message Alert */
        .form-alert {
            display: none;
            padding: 12px 16px;
            background-color: #dcfce7;
            color: #15803d;
            border: 1px solid #bbf7d0;
            border-radius: 8px;
            margin-bottom: 20px;
            font-size: 0.9rem;
        }

        /* ==================== 5. LOCATIONS SECTION ==================== */
        .locations-section {
            padding: 40px 0;
            background: #ffffff;
        }

        .section-title {
            text-align: center;
            font-size: 2.0rem;
            color: var(--primary-color);
            margin-bottom: 10px;
            font-weight: 700;
        }

        .section-subtitle {
            text-align: center;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto 50px auto;
        }

        .locations-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .location-card {
            background: var(--bg-light);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 30px;
            transition: var(--transition);
        }

        .location-card:hover {
            transform: translateY(-5px);
            border-color: #a3903c;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
        }

        .location-card i {
            font-size: 1.8rem;
            color: #a3903c;
            margin-bottom: 15px;
        }

        .location-card h4 {
            font-size: 1.2rem;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .location-card p {
            color: var(--text-muted);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* ==================== RESPONSIVE MEDIA QUERIES ==================== */
        @media (max-width: 1024px) {
            .contact-grid {
                grid-template-columns: 1fr;
            }

            .locations-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 640px) {
            .form-row {
                grid-template-columns: 1fr;
            }

            .locations-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ======= END  Conatct ====== */


        /* ======= START   ABOUT US ====== */
        .about-hero {
            background: linear-gradient(135deg, #ffffff);
            color: #ffffff;
            padding: 1px 0;
            text-align: center;
        }

        .about-hero h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .about-hero p {
            color: #94a3b8;
            font-size: 1.15rem;
            max-width: 700px;
            margin: 0 auto;
        }

        /* ==================== 4. OVERVIEW SECTION ==================== */
        .overview-section {
            padding: 50px 0;
            background: #ffffff;
            align-items: center;
        }

        .overview-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 60px;
            align-items: center;
        }

        .overview-content h2 {
            font-size: 2.0rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            line-height: 1.3;
            align-items: center;
            text-align: center;
        }

        .overview-content p {
            color: var(--text-muted);
            margin-bottom: 18px;
            font-size: 1rem;
        }

        .overview-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 30px;
        }

        .stat-card {
            background: var(--bg-light);
            border: 1px solid var(--border-color);
            padding: 20px;
            border-radius: 10px;
            text-align: center;
        }

        .stat-card h3 {
            font-size: 1.8rem;
            color: #a3903c;
            margin-bottom: 5px;
        }

        .stat-card p {
            font-size: 0.85rem;
            margin-bottom: 0;
        }

        .overview-image {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
        }

        /* ==================== 5. VISION & MISSION ==================== */
        .vm-section {
            padding: 90px 0;
            background-color: var(--bg-light);
        }

        .vm-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .vm-card {
            background: #ffffff;
            border-radius: 16px;
            padding: 40px;
            border: 1px solid var(--border-color);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
            transition: var(--transition);
        }

        .vm-card:hover {
            transform: translateY(-5px);
            border-color: #a3903c;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
        }

        .vm-icon {
            width: 60px;
            height: 60px;
            background: rgba(37, 99, 235, 0.1);
            color: #3f3d3d;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 25px;
        }

        .vm-card h3 {
            font-size: 1.6rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .vm-card p {
            color: var(--text-muted);
            font-size: 0.98rem;
            line-height: 1.7;
        }

        /* ==================== 6. CORE VALUES ==================== */
        .values-section {
            padding: 50px 0;
            background: #ffffff;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }

        .value-card {
            background: var(--bg-light);
            padding: 30px 25px;
            border-radius: 12px;
            border: 1px solid var(--border-color);
            text-align: center;
            transition: var(--transition);
        }

        .value-card:hover {
            background: #ffffff;
            border-color: #a3903c;
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
            transform: translateY(-5px);
        }

        .value-card i {
            font-size: 2.2rem;
            color: #a3903c;
            margin-bottom: 15px;
        }

        .value-card h4 {
            font-size: 1.2rem;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .value-card p {
            color: var(--text-muted);
            font-size: 0.88rem;
        }

        /* ==================== 7. LEADERSHIP SECTION ==================== */
        .team-section {
            padding: 90px 0;
            background: var(--bg-light);
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .team-card {
            background: #ffffff;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-color);
            transition: var(--transition);
            text-align: center;
        }

        .team-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
        }

        .team-card img {
            width: 100%;
            height: 260px;
            object-fit: cover;
        }

        .team-info {
            padding: 25px 20px;
        }

        .team-info h4 {
            font-size: 1.2rem;
            color: var(--primary-color);
            margin-bottom: 5px;
        }

        .team-info span {
            font-size: 0.88rem;
            color: var(--secondary-color);
            font-weight: 600;
            display: block;
            margin-bottom: 12px;
        }

        .team-info p {
            color: var(--text-muted);
            font-size: 0.88rem;
            margin-bottom: 15px;
        }

        .team-socials {
            display: flex;
            justify-content: center;
            gap: 10px;
        }

        .team-socials a {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--bg-light);
            color: var(--text-muted);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
            transition: var(--transition);
        }

        .team-socials a:hover {
            background: var(--secondary-color);
            color: #ffffff;
        }

        
        /* ==================== RESPONSIVE MEDIA QUERIES ==================== */
        @media (max-width: 1024px) {
            .overview-grid, .vm-grid {
                grid-template-columns: 1fr;
            }

            .values-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .team-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 640px) {
            .values-grid, .team-grid {
                grid-template-columns: 1fr;
            }

            .overview-stats {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }
        }
        /* ======= END   ABOUT US ====== */