/* SEO: Visually hidden H1 — readable by Google, invisible to users */
.seo-h1-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

:root {
            --blue-primary: #00498E;
            --blue-accent: #004A94;
            --blue-hover: #003366;
            --bg-tint: #F9FFFF;
            --bg-white: #FFFFFF;
            --text-dark: #101828;
            --text-muted: #64748B;
            --border-color: #E4E7EC;
            --header-height: 70px;
            --shadow-subtle: 0 4px 14px rgba(0, 0, 0, 0.04);
            --shadow-premium: 0 10px 30px rgba(0, 73, 142, 0.08);
            --shadow-hover: 0 16px 36px rgba(0, 73, 142, 0.14);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
        }

        /* Smooth Native Scrolling */
        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--bg-tint);
            color: var(--text-dark);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

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

        h1, h2, h3, h4 {
            text-align: center;
        }

        /* --- Container Layout --- */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Section Offset Targeting for Sticky Header Alignment */
        section, .content-section {
            scroll-margin-top: var(--header-height);
        }

        /* Home Scroll Target Fixed to Zero Top Offset */
        #top-anchor {
            scroll-margin-top: 0px;
        }

        /* --- Header Navigation --- */
        header {
            background-color: var(--bg-white);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            border-bottom: 1px solid var(--border-color);
            height: var(--header-height);
            transform: translateZ(0);
        }

        .nav-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 100%;
        }

        .logo {
            display: flex;
            align-items: center;
            cursor: pointer;
        }

        .brand-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform 0.2s ease;
}

        .brand-logo-img:hover {
            transform: scale(1.02);
        }

        .nav-links {
            display: none;
            gap: 28px;
            list-style: none;
        }

        .nav-links.active-mobile {
            display: flex !important;
            flex-direction: column;
            position: absolute;
            top: var(--header-height);
            left: 0;
            width: 100%;
            background: var(--bg-white);
            padding: 20px;
            box-shadow: 0 10px 24px rgba(0,0,0,0.12);
            border-bottom: 1px solid var(--border-color);
        }

        .nav-links a {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-dark);
            transition: color 0.2s;
        }

        .nav-links a:hover {
            color: var(--blue-primary);
        }

        .menu-toggle {
            font-size: 24px;
            color: var(--blue-primary);
            cursor: pointer;
            display: block;
        }

        /* --- Dissolving Hero Carousel --- */
        .hero-slider-wrapper {
            position: relative;
            background-color: #000;
            overflow: hidden;
            width: 100%;
            height: 520px;
            box-shadow: inset 0 -10px 20px rgba(0,0,0,0.2);
        }

        .slider-track {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            padding: 80px 0;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            z-index: 1;
            transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
            will-change: opacity, visibility;
        }

        .slide.active-slide {
            opacity: 1;
            visibility: visible;
            z-index: 5;
        }

        /* Overlays */
        .slide-1 {
            background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.70)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1200&q=80');
        }

        .slide-2 {
            background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.70)), url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1200&q=80');
        }

        .slide-3 {
            background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.70)), url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1200&q=80');
        }

        .slide-4 {
            background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.70)), url('https://images.unsplash.com/photo-1507679799987-c73779587ccf?auto=format&fit=crop&w=1200&q=80');
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            color: var(--bg-white);
        }

        .hero-content h1 {
            font-size: 38px;
            font-weight: 800;
            line-height: 1.25;
            margin-bottom: 20px;
            color: var(--bg-white);
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
        }

        .hero-content p {
            font-size: 16px;
            color: #E2E8F0;
            margin-bottom: 32px;
            line-height: 1.6;
            text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
        }

        .hero-buttons {
            display: flex;
            flex-direction: column;
            gap: 16px;
            justify-content: center;
            margin-bottom: 30px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 14px 28px;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 600;
            text-align: center;
            cursor: pointer;
            transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
            will-change: transform;
        }

        .btn-primary {
            background-color: var(--blue-accent);
            color: var(--bg-white);
            border: 2px solid var(--blue-accent);
            box-shadow: 0 6px 16px rgba(0, 74, 148, 0.35);
        }

        .btn-primary:hover {
            background-color: var(--blue-hover);
            border-color: var(--blue-hover);
            transform: translateY(-2px);
            box-shadow: 0 10px 22px rgba(0, 74, 148, 0.45);
        }

        .btn-secondary {
            background-color: rgba(255, 255, 255, 0.12);
            color: var(--bg-white);
            border: 2px solid rgba(255, 255, 255, 0.35);
            backdrop-filter: blur(6px);
        }

        .btn-secondary:hover {
            background-color: rgba(255, 255, 255, 0.25);
            transform: translateY(-2px);
        }

        .btn-whatsapp {
            background-color: var(--blue-primary);
            color: var(--bg-white);
            border: 2px solid var(--blue-primary);
            font-weight: 700;
            box-shadow: 0 6px 16px rgba(0, 73, 142, 0.35);
        }

        .btn-whatsapp:hover {
            background-color: var(--blue-hover);
            border-color: var(--blue-hover);
            transform: translateY(-2px);
            box-shadow: 0 10px 22px rgba(0, 73, 142, 0.45);
        }

        .btn-outline {
            background-color: transparent;
            color: var(--blue-primary);
            border: 1px solid var(--border-color);
            padding: 10px 20px;
            font-size: 14px;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.2s ease;
        }

        .btn-outline:hover {
            background-color: var(--blue-primary);
            color: white;
            border-color: var(--blue-primary);
            box-shadow: 0 4px 12px rgba(0, 73, 142, 0.2);
        }

        /* Carousel Indicator Dots */
        .slider-controls {
            position: absolute;
            bottom: 24px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            align-items: center;
            z-index: 10;
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            width: 12px;
            height: 12px;
            background-color: #FF6B00;
            box-shadow: 0 0 8px rgba(255, 107, 0, 0.6);
        }

        /* Floating Brand Blue WhatsApp Button */
        .floating-whatsapp {
            position: fixed;
            bottom: 24px;
            right: 24px;
            width: 58px;
            height: 58px;
            background-color: var(--blue-primary);
            border: 2px solid var(--bg-white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 28px;
            box-shadow: 0 8px 24px rgba(0, 73, 142, 0.35);
            cursor: pointer;
            z-index: 999;
            transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.2s ease;
            will-change: transform;
        }

        .floating-whatsapp:hover {
            transform: scale(1.08) translateY(-2px);
            background-color: var(--blue-hover);
        }

        /* --- Core Services Section --- */
        .core-services-section {
            padding: 45px 0 55px;
            background-color: var(--bg-white);
            border-bottom: 1px solid var(--border-color);
        }

        .section-header-subtitle {
            font-size: 15px;
            color: var(--text-muted);
            text-align: center;
            max-width: 650px;
            margin: 8px auto 30px;
            line-height: 1.5;
        }

        .services-card-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .service-card {
            background-color: var(--bg-tint);
            border-radius: 16px;
            padding: 28px 20px;
            text-align: center;
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-subtle);
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
            will-change: transform;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
            border-color: rgba(0, 73, 142, 0.2);
        }

        .service-card .service-icon-box {
            width: 60px;
            height: 60px;
            background-color: var(--blue-primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-bottom: 16px;
            box-shadow: 0 6px 16px rgba(0, 73, 142, 0.25);
        }

        .service-card h4 {
            font-size: 19px;
            color: #0F2C59;
            font-weight: 800;
            margin-bottom: 8px;
        }

        .service-card p {
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 18px;
            line-height: 1.5;
            max-width: 100%;
        }

        /* --- Main Profile Section --- */
        .profile-section {
            padding: 50px 0;
            background-color: var(--bg-tint);
            border-bottom: 1px solid var(--border-color);
        }

        .profile-flex {
            display: flex;
            flex-direction: column;
            gap: 30px;
            align-items: center;
        }

        .profile-image {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-premium);
            border: 1px solid var(--border-color);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            max-height: 380px;
            width: 100%;
            will-change: transform;
        }

        .profile-image img {
            width: 100%;
            height: 100%;
            max-height: 380px;
            object-fit: cover;
            object-position: top center;
        }

        .profile-image:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }

        .profile-info h2 {
            font-size: 32px;
            color: var(--blue-primary);
            margin-bottom: 14px;
            font-weight: 800;
        }

        .profile-info p {
            font-size: 15px;
            color: var(--text-muted);
            margin-bottom: 16px;
            line-height: 1.6;
        }

        .bullet-list {
            list-style: none;
            margin-bottom: 20px;
        }

        .bullet-list li {
            position: relative;
            padding-left: 24px;
            font-size: 15px;
            color: var(--text-dark);
            margin-bottom: 10px;
            line-height: 1.5;
        }

        .bullet-list li::before {
            content: "•";
            color: var(--blue-primary);
            font-weight: bold;
            font-size: 22px;
            position: absolute;
            left: 0;
            top: -3px;
        }

        .profile-btn-wrapper {
            display: flex;
            justify-content: center;
        }

        /* --- Why Choose Us Section --- */
        .why-choose-section {
            padding: 60px 0;
            background-color: var(--bg-white);
        }

        .category-eyebrow {
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 1px;
            color: var(--blue-primary);
            text-transform: uppercase;
            text-align: center;
            margin-bottom: 6px;
        }

        .why-choose-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
            margin-top: 30px;
        }

        .why-card {
            background-color: var(--bg-tint);
            border-radius: 16px;
            padding: 32px 28px;
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-subtle);
            text-align: left;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            will-change: transform;
        }

        .why-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }

        .why-card .why-icon-box {
            width: 54px;
            height: 54px;
            background-color: var(--blue-primary);
            color: white;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            margin-bottom: 20px;
            box-shadow: 0 4px 12px rgba(0, 73, 142, 0.22);
        }

        .why-card h4 {
            font-size: 20px;
            color: #0F2C59;
            font-weight: 800;
            text-align: left;
            margin-bottom: 10px;
        }

        .why-card p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.65;
        }

        /* --- 2x2 Feature Grid Badges --- */
        .feature-grid-section {
            padding: 50px 0 60px;
            background-color: var(--bg-tint);
        }

        .feature-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
        }

        .feature-card {
            background: var(--bg-white);
            border-radius: 16px;
            padding: 32px 24px;
            text-align: center;
            border: 1px solid rgba(228, 231, 236, 0.9);
            box-shadow: var(--shadow-subtle);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            will-change: transform;
        }

        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }

        .feature-card .icon-circle {
            width: 64px;
            height: 64px;
            background-color: var(--blue-primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 18px;
            font-size: 26px;
            box-shadow: 0 6px 16px rgba(0, 73, 142, 0.25);
        }

        .feature-card h4 {
            font-size: 18px;
            font-weight: 800;
            color: #0F2C59;
            margin-bottom: 6px;
            line-height: 1.35;
        }

        .feature-card .sub-text {
            font-size: 14px;
            color: var(--text-muted);
            font-weight: 500;
        }

        /* --- Narrative Content Sections --- */
        .content-section {
            padding: 50px 0;
            background-color: var(--bg-white);
            border-bottom: 1px solid var(--border-color);
        }

        .content-section h3 {
            font-size: 22px;
            color: var(--blue-primary);
            margin-bottom: 20px;
            font-weight: 800;
            letter-spacing: 0.5px;
            position: relative;
            padding-bottom: 10px;
        }

        .content-section h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 3px;
            background-color: var(--blue-primary);
            border-radius: 2px;
        }

        .content-section p {
            font-size: 15px;
            color: var(--text-muted);
            margin-bottom: 16px;
            text-align: left;
            line-height: 1.7;
        }

        .content-section p:last-child {
            margin-bottom: 0;
        }

        /* --- Quote Callout Box --- */
        .quote-box {
            background-color: var(--blue-primary);
            color: white;
            padding: 40px 32px;
            margin: 50px 0;
            border-radius: 16px;
            text-align: center;
            font-size: 16px;
            line-height: 1.7;
            font-weight: 500;
            font-style: italic;
            box-shadow: var(--shadow-premium);
        }

        /* --- Mission & Vision --- */
        .mv-section {
            padding: 60px 0;
            background-color: var(--bg-tint);
            text-align: center;
        }

        .mv-section h2 {
            font-size: 30px;
            margin-bottom: 36px;
            color: var(--text-dark);
            border-bottom: 3px solid var(--blue-primary);
            display: inline-block;
            padding-bottom: 6px;
            font-weight: 800;
        }

        .mv-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
        }

        .mv-card {
            background-color: var(--bg-white);
            border-radius: 16px;
            padding: 32px 28px;
            text-align: left;
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-subtle);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            will-change: transform;
        }

        .mv-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }

        .mv-card .card-header {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 14px;
            margin-bottom: 18px;
        }

        .mv-card .card-header .icon-circle {
            width: 48px;
            height: 48px;
            background-color: var(--blue-primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            box-shadow: 0 4px 12px rgba(0, 73, 142, 0.2);
        }

        .mv-card h3 {
            font-size: 22px;
            color: var(--text-dark);
            font-weight: 800;
            text-align: left;
        }

        .mv-card p {
            font-size: 15px;
            color: var(--text-muted);
            margin-bottom: 18px;
            line-height: 1.6;
        }

        .mv-checklist {
            list-style: none;
        }

        .mv-checklist li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            color: var(--text-muted);
            margin-bottom: 10px;
            font-weight: 500;
        }

        .mv-checklist li i {
            color: var(--blue-primary);
            font-size: 18px;
        }

        /* --- Core Values --- */
        .values-section {
            padding: 60px 0;
            background-color: var(--bg-white);
            text-align: center;
        }

        .values-section h2 {
            font-size: 30px;
            margin-bottom: 36px;
            color: var(--text-dark);
            font-weight: 800;
        }

        .values-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
        }

        .value-card {
            background: var(--bg-white);
            padding: 32px 24px;
            border-radius: 16px;
            border: 1px solid var(--border-color);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            box-shadow: var(--shadow-subtle);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            will-change: transform;
        }

        .value-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }

        .value-card .icon-box {
            background-color: var(--blue-primary);
            color: white;
            width: 58px;
            height: 58px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 18px;
            font-size: 22px;
            box-shadow: 0 6px 16px rgba(0, 73, 142, 0.25);
        }

        .value-card h4 {
            font-size: 20px;
            color: #0F2C59;
            margin-bottom: 8px;
            font-weight: 800;
        }

        .value-card p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* --- Achievements Counter --- */
        .achievements-section {
            background-color: var(--blue-primary);
            color: white;
            padding: 50px 24px;
            text-align: center;
            border-radius: 16px;
            margin: 50px 0 0 0;
            box-shadow: var(--shadow-premium);
        }

        .achievements-section h3 {
            font-size: 28px;
            margin-bottom: 36px;
            font-weight: 800;
            color: white;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px 16px;
        }

        .stat-item h4 {
            font-size: 38px;
            font-weight: 800;
            margin-bottom: 6px;
            color: white;
            text-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }

        .stat-item p {
            font-size: 15px;
            opacity: 0.95;
            font-weight: 500;
        }

        /* --- Contact Us Section --- */
        .contact-section {
            padding: 60px 0;
            background-color: var(--bg-white);
        }

        .contact-section h2 {
            font-size: 30px;
            font-weight: 800;
            margin-bottom: 8px;
        }

        .contact-sub {
            text-align: center;
            color: var(--text-muted);
            margin-bottom: 32px;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 32px;
        }

        .contact-info-card {
            background-color: var(--blue-primary);
            color: white;
            border-radius: 16px;
            padding: 36px 28px;
            box-shadow: var(--shadow-premium);
        }

        .contact-info-card h3 {
            font-size: 20px;
            margin-bottom: 12px;
            font-weight: 700;
            color: white;
            text-align: left;
        }

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

        .contact-item i {
            margin-top: 4px;
            font-size: 16px;
        }

        .whatsapp-connect-card {
            background: var(--bg-tint);
            padding: 36px 28px;
            border-radius: 16px;
            border: 1px solid var(--border-color);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            box-shadow: var(--shadow-subtle);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            will-change: transform;
        }

        .whatsapp-connect-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }

        .whatsapp-icon-circle {
            width: 72px;
            height: 72px;
            background-color: var(--blue-primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            margin-bottom: 20px;
            box-shadow: 0 6px 18px rgba(0, 73, 142, 0.3);
        }

        .whatsapp-connect-card h3 {
            font-size: 22px;
            color: var(--text-dark);
            margin-bottom: 10px;
            font-weight: 800;
        }

        .whatsapp-connect-card p {
            font-size: 15px;
            color: var(--text-muted);
            margin-bottom: 24px;
            max-width: 440px;
            line-height: 1.6;
        }

        /* --- Map Container --- */
        .map-container {
            margin-top: 36px;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-subtle);
        }

        .map-info {
            padding: 16px;
            background: white;
            font-size: 14px;
            text-align: center;
        }

        .map-info a {
            color: var(--blue-primary);
            font-weight: 600;
            display: inline-block;
            margin-top: 6px;
        }

        .map-frame {
            width: 100%;
            height: 300px;
            border: 0;
        }

        /* --- Footer --- */
        footer {
            background-color: var(--blue-primary);
            color: white;
            padding: 50px 0 24px;
            border-top: 1px solid var(--blue-accent);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 32px;
            margin-bottom: 32px;
            text-align: center;
        }

        .footer-logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
    filter: none;
}

        .footer-brand p {
            font-size: 14px;
            color: #E0F2FE;
            margin-top: 14px;
        }

        .social-links {
            display: flex;
            gap: 12px;
            margin-top: 16px;
            justify-content: center;
        }

        .social-icon {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background-color: rgba(255,255,255,0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 15px;
            transition: all 0.25s ease;
        }

        .social-icon:hover {
            background-color: var(--blue-hover);
            transform: translateY(-3px);
            box-shadow: 0 4px 10px rgba(0,0,0,0.25);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            font-size: 14px;
            color: #E0F2FE;
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: white;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.15);
            padding-top: 24px;
            text-align: center;
            font-size: 13px;
            color: #E0F2FE;
        }

        /* --- Laptop & Desktop Responsive Layout --- */
        @media (min-width: 768px) {
            .menu-toggle {
                display: none;
            }

            .nav-links {
                display: flex !important;
                flex-direction: row;
                position: static;
                padding: 0;
                box-shadow: none;
                border: none;
            }

            .hero-buttons {
                flex-direction: row;
            }

            .profile-flex {
                flex-direction: row;
                align-items: center;
            }

            .profile-image {
                flex: 1;
                max-height: 420px;
            }

            .profile-info {
                flex: 1.5;
            }

            .profile-btn-wrapper {
                justify-content: flex-start;
            }

            .services-card-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .why-choose-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .feature-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .mv-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .values-grid {
                grid-template-columns: repeat(2, 1fr);
            }

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

            .footer-grid {
                grid-template-columns: 2fr 1fr;
                text-align: left;
            }

            .social-links {
                justify-content: flex-start;
            }
        }

        @media (min-width: 1024px) {
            .services-card-grid {
                grid-template-columns: repeat(4, 1fr);
            }

            .why-choose-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .feature-grid {
                grid-template-columns: repeat(4, 1fr);
            }

            .values-grid {
                grid-template-columns: repeat(4, 1fr);
            }

            .stats-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
/* ==========================================================================
   Services Page Custom Styles & Design System Extensions
   ========================================================================== */

.active-nav {
    color: var(--blue-accent) !important;
    font-weight: 700 !important;
    border-bottom: 2px solid var(--blue-accent);
    padding-bottom: 4px;
}

.services-hero {
    background: linear-gradient(135deg, #002b5b 0%, #00498E 60%, #0066cc 100%);
    color: #ffffff;
    padding: 60px 0 50px 0;
    text-align: center;
    position: relative;
    box-shadow: inset 0 -10px 20px rgba(0,0,0,0.1);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.services-hero h1 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 14px;
    color: #ffffff;
    line-height: 1.25;
}

.services-hero p {
    font-size: 16px;
    max-width: 720px;
    margin: 0 auto 30px auto;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Search Box */
.search-box-container {
    position: relative;
    max-width: 640px;
    margin: 0 auto 35px auto;
}

.search-box-container input {
    width: 100%;
    padding: 16px 48px 16px 50px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    background: #ffffff;
    color: #101828;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    outline: none;
    transition: all 0.3s ease;
}

.search-box-container input:focus {
    border-color: #ffffff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--blue-primary);
    font-size: 18px;
}

.clear-search-btn {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: #e2e8f0;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    color: #475569;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: all 0.2s ease;
}

.clear-search-btn:hover {
    background: #cbd5e1;
    color: #0f172a;
}

/* Category Filter Tabs */
.category-tabs-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    backdrop-filter: blur(5px);
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.tab-btn.active-tab {
    background: #ffffff;
    color: var(--blue-primary);
    border-color: #ffffff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);

}

.badge-count {
    background: rgba(0, 73, 142, 0.15);
    color: var(--blue-primary);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
}

.tab-btn:not(.active-tab) .badge-count {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

/* Services Main Container */
.services-main-container {
    padding-top: 40px;
    padding-bottom: 70px;
}

/* Part Header Card */
.part-section {
    margin-bottom: 50px;
    scroll-margin-top: 90px;
}

.part-header-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-left: 5px solid var(--blue-primary);
    padding: 24px 30px;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    margin-bottom: 30px;
}

.part-icon-box {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: rgba(0, 73, 142, 0.08);
    color: var(--blue-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.part-badge-tag {
    display: inline-block;
    background: var(--blue-primary);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.part-header-card h2 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 4px;
    text-align: left;
}

.part-header-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

/* Services Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 28px;
}

/* Service Card */
.service-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    scroll-margin-top: 100px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(0, 73, 142, 0.12);
    border-color: rgba(0, 73, 142, 0.3);
}

.service-card-header {
    padding: 22px 24px 16px 24px;
    border-bottom: 1px solid #f1f5f9;
    background: #fafbfc;
}

.service-part-pill {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--blue-primary);
    background: rgba(0, 73, 142, 0.1);
    padding: 2px 10px;
    border-radius: 12px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.service-card-header h3 {
    font-size: 19px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.35;
    margin-bottom: 6px;
    text-align: left;
}

.gov-act-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #475569;
    background: #e2e8f0;
    padding: 4px 10px;
    border-radius: 6px;
    margin-top: 6px;
    font-weight: 500;
}

.service-card-body {
    padding: 20px 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.card-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.section-subtitle {
    font-size: 13px;
    font-weight: 700;
    color: var(--blue-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.section-subtitle i {
    font-size: 14px;
}

.section-text {
    font-size: 14px;
    color: #334155;
    line-height: 1.55;
    margin: 0;
}

.section-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.section-list li {
    font-size: 13.5px;
    color: #334155;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.bullet-icon {
    color: var(--blue-primary);
    font-size: 12px;
    margin-top: 4px;
    flex-shrink: 0;
}

.service-card-footer {
    padding: 16px 24px 20px 24px;
    background: #fafbfc;
    border-top: 1px solid #f1f5f9;
}

.card-wa-btn {
    width: 100%;
    justify-content: center;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;

}

/* No Results Card */
.no-results-card {
    background: #ffffff;
    border: 2px dashed #cbd5e1;
    border-radius: 16px;
    padding: 50px 30px;
    text-align: center;
    margin: 40px auto;
    max-width: 500px;
}

.no-results-card i {
    font-size: 48px;
    color: #94a3b8;
    margin-bottom: 16px;
}

.no-results-card h3 {
    font-size: 20px;
    color: #1e293b;
    margin-bottom: 8px;
}

.no-results-card p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 20px;
}

/* Back to Top Floating Button */
.back-to-top-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 46px;
    height: 46px;
    background: var(--blue-primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 8px 20px rgba(0, 73, 142, 0.35);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
}

.back-to-top-btn.show-top-btn {
    opacity: 1;
    visibility: visible;
}

.back-to-top-btn:hover {
    background: #003366;
    transform: translateY(-3px);
    color: #ffffff;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .services-hero {
        padding: 45px 15px 35px 15px;
    }
    
    .services-hero h1 {
        font-size: 28px;
    }
    
    .services-hero p {
        font-size: 14.5px;
    }
    
    .category-tabs-wrapper {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
    }
    
    .tab-btn {
        white-space: nowrap;
        font-size: 13px;
        padding: 8px 16px;
    }
    
    .part-header-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 20px;
    }
    
    .part-header-card h2 {
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Floating Social Media FAB (Floating Action Button)
   ========================================================================== */

.social-fab-container {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 1000;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 0;
}

.fab-toggle {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-primary) 0%, #0066cc 100%);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 28px rgba(0, 73, 142, 0.45);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 10;
}

.fab-toggle:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 32px rgba(0, 73, 142, 0.55);
}

.fab-toggle .fab-icon-close {
    display: none;
}

.social-fab-container.fab-open .fab-toggle {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    transform: rotate(0deg);
}

.social-fab-container.fab-open .fab-toggle .fab-icon-open {
    display: none;
}

.social-fab-container.fab-open .fab-toggle .fab-icon-close {
    display: inline;
}

/* Social Items Stack */
.social-fab-items {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    pointer-events: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-fab-container.fab-open .social-fab-items {
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0);
}

/* Individual FAB Items */
.fab-item {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: scale(0.3) translateY(15px);
    position: relative;
}

.social-fab-container.fab-open .fab-item {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.social-fab-container.fab-open .fab-item:nth-child(1) { transition-delay: 0.04s; }
.social-fab-container.fab-open .fab-item:nth-child(2) { transition-delay: 0.08s; }
.social-fab-container.fab-open .fab-item:nth-child(3) { transition-delay: 0.12s; }
.social-fab-container.fab-open .fab-item:nth-child(4) { transition-delay: 0.16s; }
.social-fab-container.fab-open .fab-item:nth-child(5) { transition-delay: 0.20s; }
.social-fab-container.fab-open .fab-item:nth-child(6) { transition-delay: 0.24s; }

.fab-item:hover {
    transform: scale(1.15) !important;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
}

/* Tooltip Labels */
.fab-item::before {
    content: attr(title);
    position: absolute;
    right: 58px;
    background: #0f172a;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    padding: 5px 12px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.fab-item:hover::before {
    opacity: 1;
}

/* Brand Colors */
.fab-whatsapp { background: #25D366; }
.fab-instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.fab-facebook { background: #1877F2; }
.fab-linkedin { background: #0A66C2; }
.fab-youtube { background: #FF0000; }
.fab-x { background: #000000; }

/* Pulse animation on the main toggle */
.fab-toggle::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    z-index: -1;
    animation: fabPulse 2.5s ease-in-out infinite;
}

.social-fab-container.fab-open .fab-toggle::after {
    animation: none;
}

@keyframes fabPulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.35); opacity: 0; }
}

/* Move back-to-top button left when FAB is present */
.back-to-top-btn {
    right: 100px !important;
}

/* Mobile adjustments for FAB */
@media (max-width: 768px) {
    .social-fab-container {
        bottom: 10px !important;
        right: 12px !important;
    }
    .fab-toggle {
        width: 44px !important;
        height: 44px !important;
        font-size: 18px !important;
    }
    .fab-item {
        width: 36px !important;
        height: 36px !important;
        font-size: 15px !important;
    }
    .fab-item::before {
        display: none;
    }
    .back-to-top-btn {
        bottom: 10px !important;
        right: 64px !important;
        width: 42px !important;
        height: 42px !important;
    }
}

/* ==========================================================================
   Services Page Redesigned Styles & Sub-Heading Navigation
   ========================================================================== */

.active-nav {
    color: var(--blue-accent) !important;
    font-weight: 700 !important;
    border-bottom: 2px solid var(--blue-accent);
    padding-bottom: 4px;
}

/* Clean Header Banner */
.services-page-banner {
    background: linear-gradient(135deg, #0f172a 0%, #00498E 100%);
    color: #ffffff;
    padding: 50px 0 40px 0;
    text-align: center;
}

.banner-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.services-page-banner h1 {
    font-size: 34px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.25;
}

.services-page-banner p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.88);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Sticky Sub-Heading Category Navigation Bar */
.services-subnav-bar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 12px 0;
}

.subnav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.subnav-title {
    font-size: 13.5px;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.subnav-title i {
    color: var(--blue-primary);
}

.subnav-links {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.subnav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 25px;
    background: #f1f5f9;
    color: #475569;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
    border: 1px solid #e2e8f0;
}

.subnav-link:hover {
    background: rgba(0, 73, 142, 0.08);
    color: var(--blue-primary);
    border-color: rgba(0, 73, 142, 0.2);
}

.subnav-link.active-subnav {
    background: var(--blue-primary);
    color: #ffffff;
    border-color: var(--blue-primary);
    box-shadow: 0 4px 12px rgba(0, 73, 142, 0.25);
}

/* Main Container Padding */
.services-main-container {
    padding-top: 35px;
    padding-bottom: 70px;
}

/* Part Section & Header Card */
.part-section {
    margin-bottom: 50px;
    scroll-margin-top: 90px;
}

.part-header-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-left: 5px solid var(--blue-primary);
    padding: 22px 28px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    margin-bottom: 28px;
}

.part-icon-box {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: rgba(0, 73, 142, 0.08);
    color: var(--blue-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.part-badge-tag {
    display: inline-block;
    background: var(--blue-primary);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.part-header-card h2 {
    font-size: 22px;
    color: #0f172a;
    margin-bottom: 4px;
    text-align: left;
}

.part-header-card p {
    font-size: 13.5px;
    color: #64748b;
    margin: 0;
    text-align: left;
}

/* Services Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 24px;
}

/* Service Card & Typography Alignment */
.service-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    transition: all 0.25s ease;
    scroll-margin-top: 100px;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0, 73, 142, 0.1);
    border-color: rgba(0, 73, 142, 0.25);
}

.service-card-header {
    padding: 20px 22px 14px 22px;
    border-bottom: 1px solid #f1f5f9;
    background: #fafbfc;
    text-align: center;
}

.service-part-pill {
    display: block;
    width: fit-content;
    margin: 0 auto 6px auto;
    font-size: 10.5px;
    font-weight: 700;
    color: var(--blue-primary);
    background: rgba(0, 73, 142, 0.08);
    padding: 2px 8px;
    border-radius: 10px;
    text-transform: uppercase;
}

.service-card-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.35;
    margin-bottom: 4px;
    text-align: center;
}

.gov-act-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    color: #475569;
    background: #e2e8f0;
    padding: 3px 8px;
    border-radius: 5px;
    margin-top: 4px;
    font-weight: 500;
}

.service-card-body {
    padding: 18px 22px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.card-section {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.section-subtitle {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--blue-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
    text-align: left;
}

.section-subtitle i {
    font-size: 13px;
}

.section-text {
    font-size: 13.5px;
    color: #334155;
    line-height: 1.6;
    margin: 0 0 4px 0;
    text-align: left;
}

/* Bullet List Clean Alignment */
.section-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: left;
}

.section-list li {
    font-size: 13.5px;
    color: #334155;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    text-align: left;
    margin: 0;
    padding: 0;
}

.bullet-icon {
    color: var(--blue-primary);
    font-size: 11px;
    margin-top: 5px;
    flex-shrink: 0;
}

.section-list li span {
    flex-grow: 1;
    text-align: left;
}

.service-card-footer {
    padding: 14px 22px 18px 22px;
    background: #fafbfc;
    border-top: 1px solid #f1f5f9;
}

.card-wa-btn {
    width: 100%;
    justify-content: center;
    padding: 11px;
    font-size: 13.5px;
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .subnav-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .subnav-links {
        width: 100%;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .part-header-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .part-header-card h2, .part-header-card p {
        text-align: center;
    }
}

/* ==========================================================================
   IBC & Valuation Page Styles
   ========================================================================== */

.ibc-card-section {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 30px;
    margin-bottom: 35px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    scroll-margin-top: 100px;
}

.ibc-section-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid #f1f5f9;
}

.ibc-icon-box {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: rgba(0, 73, 142, 0.08);
    color: var(--blue-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.ibc-section-header h2 {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.ibc-section-header p {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

.ibc-content-box h4 {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ibc-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ibc-feature-list li {
    font-size: 14px;
    color: #334155;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.ibc-feature-list li i {
    color: var(--blue-primary);
    font-size: 15px;
    margin-top: 3px;
    flex-shrink: 0;
}

.ibc-feature-grid {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 12px;
}

.ibc-feature-grid li {
    font-size: 13.5px;
    color: #334155;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
    background: #f8fafc;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

/* CIRP 9-Step Timeline */
.cirp-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.timeline-step {
    background: #fafbfc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 16px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.timeline-step:hover {
    transform: translateY(-2px);
    border-color: var(--blue-primary);
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 73, 142, 0.08);
}

.step-number {
    width: 34px;
    height: 34px;
    min-width: 34px;
    background: var(--blue-primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.step-content h5 {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.step-content p {
    font-size: 12.5px;
    color: #64748b;
    margin: 0;
    line-height: 1.45;
}

/* Mandatory Compliance Disclaimer Box */
.compliance-disclaimer-box {
    background: #fefce8;
    border: 1.5px solid #fde047;
    border-left: 5px solid #eab308;
    border-radius: 10px;
    padding: 18px 22px;
    margin-top: 20px;
}

.disclaimer-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #854d0e;
    margin-bottom: 8px;
}

.disclaimer-header i {
    font-size: 18px;
}

.disclaimer-header h5 {
    font-size: 14px;
    font-weight: 700;
    margin: 0;

}

.compliance-disclaimer-box p {
    font-size: 13px;
    color: #713f12;
    margin: 0;
    line-height: 1.6;
}

/* Action Bar */
.ibc-action-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 10px;
}

/* ==========================================================================
   Updates Feed Page Styles
   ========================================================================== */

.updates-feed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 24px;
}

.update-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    transition: all 0.25s ease;
}

.update-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 73, 142, 0.09);
    border-color: rgba(0, 73, 142, 0.2);
}

.update-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.update-date {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.update-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
    margin-bottom: 10px;
    text-align: left;
}

.update-summary {
    font-size: 13.5px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 16px;
    flex-grow: 1;
    text-align: left;
}

.update-full-text {
    font-size: 13.5px;
    color: #334155;
    line-height: 1.6;
    text-align: left;
    margin-bottom: 14px;
}

.update-card-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
}

.update-card-footer .btn {
    flex: 1;
    justify-content: center;
    padding: 9px 12px;
    font-size: 12.5px;
}

/* ==========================================================================
   WhatsApp Quick Enquiry Form Modal
   ========================================================================== */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.modal-overlay.active-modal {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background: #ffffff;
    border-radius: 16px;
    max-width: 480px;
    width: 100%;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active-modal .modal-card {
    transform: translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 16px;
    right: 18px;
    background: none;
    border: none;
    font-size: 24px;
    color: #94a3b8;
    cursor: pointer;
    transition: color 0.2s ease;
}

.modal-close-btn:hover {
    color: #0f172a;
}

.modal-header {
    text-align: center;
    margin-bottom: 20px;
}

.modal-wa-icon {
    font-size: 38px;
    color: #25D366;
    margin-bottom: 8px;
}

.modal-header h3 {
    font-size: 20px;
    color: #0f172a;
    margin-bottom: 4px;
}

.modal-header p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

.form-group {
    margin-bottom: 14px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 12.5px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 13.5px;
    font-family: 'Inter', sans-serif;
    color: #0f172a;
    background: #ffffff;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue-primary);
    box-shadow: 0 0 0 3px rgba(0, 73, 142, 0.1);
}

.modal-submit-btn {
    width: 100%;
    padding: 12px;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    margin-top: 8px;
}

/* Service Card Expandable Details Drawer */
.expandable-service-details {
    padding-top: 10px;
    border-top: 1px dashed #e2e8f0;
    margin-top: 10px;
}

.read-more-service-btn {
    padding: 8px 14px;
    font-size: 12.5px;
    margin-bottom: 8px;
    width: 100%;
    justify-content: center;
}


/* ==========================================================================
   Header Dropdown Submenu for Services
   ========================================================================== */

.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.dropdown-arrow {
    font-size: 11px;
    transition: transform 0.2s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 310px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    list-style: none;
    padding: 10px 0;
    margin: 10px 0 0 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    font-size: 13.5px;
    font-weight: 500;
    color: #334155;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-menu li a i {
    color: var(--blue-primary);
    font-size: 14px;
    width: 18px;
    text-align: center;
}

.dropdown-menu li a:hover {
    background: rgba(0, 73, 142, 0.06);
    color: var(--blue-primary);
    font-weight: 600;
}

/* ==========================================================================
   Initial 5 Category Cards Selection Grid
   ========================================================================== */

.category-selection-header {
    text-align: center;
    margin-bottom: 35px;
}

.category-selection-header h2 {
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.category-selection-header p {
    font-size: 15px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.category-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
}

.category-select-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.category-select-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--blue-primary);
    transition: width 0.3s ease;
}

.category-select-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 73, 142, 0.12);
    border-color: rgba(0, 73, 142, 0.25);
}

.category-select-card:hover::before {
    width: 8px;
}

.cat-card-icon {
    width: 54px;
    height: 54px;
    background: rgba(0, 73, 142, 0.08);
    color: var(--blue-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
}

.cat-card-badge {
    align-self: flex-start;
    background: var(--blue-primary);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.category-select-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
    text-align: left;
}

.category-select-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.55;
    margin-bottom: 24px;
    flex-grow: 1;
    text-align: left;
}

.cat-card-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
}

.cat-count-pill {
    font-size: 12px;
    font-weight: 600;
    color: #475569;
    background: #f1f5f9;
    padding: 4px 10px;
    border-radius: 20px;
}

.cat-view-btn {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--blue-primary);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease;
}

.category-select-card:hover .cat-view-btn {
    gap: 10px;
    color: #003366;
}


/* ==========================================================================
   2-Level Nested Flyout Submenu in Header Navigation
   ========================================================================== */

.dropdown-menu .has-nested {
    position: relative;
}

.nested-arrow {
    margin-left: auto;
    font-size: 11px;
    color: #94a3b8;
}

.nested-sub-menu {
    position: absolute;
    top: 0;
    left: 100%;
    width: 280px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    list-style: none;
    padding: 8px 0;
    margin: 0 0 0 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1010;
    max-height: 400px;
    overflow-y: auto;
}

.dropdown-menu .has-nested:hover .nested-sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.nested-sub-menu li a {
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 500;
    color: #334155;
}

.nested-sub-menu li a:hover {
    background: rgba(0, 73, 142, 0.06);
    color: var(--blue-primary);
    font-weight: 600;
}

/* ==========================================================================
   Sub-Service Selector Dropdown Box & Accordions
   ========================================================================== */

.sub-service-selector-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.sub-service-selector-box label {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sub-service-dropdown {
    flex: 1;
    min-width: 280px;
    padding: 10px 14px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: #0f172a;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.sub-service-dropdown:focus {
    outline: none;
    border-color: var(--blue-primary);
    box-shadow: 0 0 0 3px rgba(0, 73, 142, 0.1);
}

/* Services Accordion Cards */
.services-accordion-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: all 0.25s ease;
}

.accordion-item-card:hover {
    border-color: rgba(0, 73, 142, 0.3);
    box-shadow: 0 8px 24px rgba(0, 73, 142, 0.08);
}

.accordion-item-card.accordion-active {
    border-color: var(--blue-primary);
    box-shadow: 0 10px 28px rgba(0, 73, 142, 0.12);
}

.accordion-header {
    padding: 20px 24px;
    background: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    user-select: none;
    transition: background 0.2s ease;
}

.accordion-item-card.accordion-active .accordion-header {
    background: #f8fafc;
    border-bottom: 1px solid #f1f5f9;
}

.accordion-title-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.accordion-title-wrap h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    text-align: left;
}

.accordion-toggle-btn {
    background: rgba(0, 73, 142, 0.07);
    color: var(--blue-primary);
    border: 1px solid rgba(0, 73, 142, 0.15);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.accordion-header:hover .accordion-toggle-btn {
    background: var(--blue-primary);
    color: #ffffff;
    border-color: var(--blue-primary);
}

.accordion-icon {
    font-size: 12px;
    transition: transform 0.3s ease;
}

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

.accordion-body {
    padding: 24px;
    background: #ffffff;
}


/* ==========================================================================
   Full Width Service Card Paragraph & Text Alignment Fix
   ========================================================================== */

.service-card p,
.single-service-card p,
.section-text,
.card-section p {
    max-width: 100% !important;
    width: 100% !important;
    text-align: left !important;
    text-align-last: left !important;
    line-height: 1.65 !important;
    font-size: 14.5px !important;
    color: #334155 !important;
    margin-bottom: 8px !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
    hyphens: manual !important;
}

.service-card-body,
.card-section {
    width: 100% !important;
    text-align: left !important;
}

.section-list {
    width: 100% !important;
}

.section-list li span {
    text-align: left !important;
    text-align-last: left !important;
    line-height: 1.6 !important;
    font-size: 14px !important;
}
/* Hero Slider Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.4);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.25s ease;
    backdrop-filter: blur(4px);
}

.slider-arrow:hover {
    background: var(--blue-primary);
    border-color: var(--blue-primary);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(0, 73, 142, 0.4);
    transform: translateY(-50%) scale(1.08);
}

.slider-arrow-prev {
    left: 24px;
}

.slider-arrow-next {
    right: 24px;
}

@media (max-width: 768px) {
    .slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }
    .slider-arrow-prev { left: 10px; }
    .slider-arrow-next { right: 10px; }
}

/* ==========================================================================
   Sub-Service Selection Grid (Part Level Menu)
   ========================================================================== */

.part-sub-services-grid {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.sub-grid-header {
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f1f5f9;
}

.sub-grid-header h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--blue-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.sub-service-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}

.sub-service-item-card {
    background: #fafbfc;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    padding: 18px 20px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
    transition: all 0.25s ease;
}

.sub-service-item-card:hover {
    background: #ffffff;
    border-color: var(--blue-primary);
    box-shadow: 0 8px 20px rgba(0, 73, 142, 0.12);
    transform: translateY(-2px);
}

.sub-item-icon {
    font-size: 20px;
    color: var(--blue-primary);
}

.sub-service-item-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
}

.sub-item-btn {
    font-size: 13px;
    font-weight: 600;
    color: var(--blue-primary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.sub-service-item-card:hover .sub-item-btn {
    color: #0284c7;
}

/* Mobile Nav Menu Support — Collapsible Dropdowns */
@media (max-width: 767px) {
    .nav-links.active,
    .nav-links.active-mobile {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #ffffff;
        padding: 20px 24px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        border-bottom: 1px solid #e2e8f0;
        z-index: 1000;
        gap: 6px;
        max-height: 80vh;
        overflow-y: auto;
    }

    .nav-links.active li,
    .nav-links.active-mobile li {
        width: 100%;
    }

    .nav-links.active > li > a,
    .nav-links.active-mobile > li > a {
        font-size: 16px;
        font-weight: 600;
        color: #0f172a;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
        border-bottom: 1px solid #f1f5f9;
    }

    /* Dropdowns HIDDEN by default on mobile */
    .nav-dropdown .dropdown-menu {
        position: static !important;
        width: 100% !important;
        box-shadow: none !important;
        border: none !important;
        padding-left: 14px !important;
        transform: none !important;
        background: #f8fafc !important;
        border-radius: 8px !important;
        margin-top: 6px !important;
        display: none !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    /* Show dropdown ONLY when parent has mobile-open class */
    .nav-dropdown.mobile-open > .dropdown-menu {
        display: block !important;
    }

    /* Nested sub-menus HIDDEN by default on mobile */
    .has-nested .nested-sub-menu {
        position: static !important;
        width: 100% !important;
        box-shadow: none !important;
        border: none !important;
        padding-left: 14px !important;
        transform: none !important;
        background: #ffffff !important;
        border-radius: 6px !important;
        max-height: none !important;
        display: none !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    /* Show nested sub-menu ONLY when parent has mobile-open class */
    .has-nested.mobile-open > .nested-sub-menu {
        display: block !important;
    }

    /* Chevron rotation when open */
    .nav-dropdown.mobile-open > a .dropdown-arrow {
        transform: rotate(180deg);
    }

    .has-nested.mobile-open > a .nested-arrow {
        transform: rotate(90deg);
    }

    .dropdown-arrow,
    .nested-arrow {
        transition: transform 0.25s ease;
    }
}
