 :root {
            --primary: #1747A0;
            --secondary: #0A4D8C;
            --accent: #907336;
            --accent-hover: #d1ae45;
            --bg-white: #FFFFFF;
            --text-dark: #1A1A1A;
            --text-muted: #666666;
            --light-section: #F7F9FC;
            --glass-bg: rgba(7, 26, 46, 0.8);
            --glass-border: rgba(201, 162, 39, 0.2);
            --font-serif: 'Cinzel', Georgia, serif;
            --font-sans: 'Inter', sans-serif;
            --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }

        body {
            font-family: var(--font-sans);
            color: var(--text-dark);
            background-color: var(--bg-white);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        h1,
        h2,
        h3,
        h4,
        .font-serif {
            font-family: var(--font-serif);
            letter-spacing: 1px;
        }
        

        /* Utilities & Shared Components */
        .section-padding {
            padding: 100px 0;
        }

        @media (max-width: 768px) {
            .section-padding {
                padding: 60px 0;
            }
        }

        .section-title-wrapper {
            margin-bottom: 60px;
        }

        .section-label {
            color: var(--accent);
            text-transform: uppercase;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 3px;
            margin-bottom: 12px;
            display: block;
        }

        .section-title {
            font-size: 2.75rem;
            color: var(--primary);
            font-weight: 700;
            position: relative;
            padding-bottom: 15px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 2px;
            background-color: var(--accent);
        }

        .text-center .section-title::after {
            left: 50%;
            transform: translateX(-50%);
        }

        /* Buttons */
        .btn-premium {
            font-family: var(--font-sans);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            padding: 14px 32px;
            border-radius: 10;
            transition: var(--transition-smooth);
            font-size: 0.85rem;
        }

        .btn-premium-primary {
            background-color: var(--accent);
            color: var(--bg-white);
            border: 1px solid var(--accent);
        }

        .btn-premium-primary:hover {
            background-color: transparent;
            color: var(--accent);
            border-color: var(--accent);
        }

        .btn-premium-secondary {
            background-color: transparent;
            color: #ffffff;
            border: 1px solid rgba(255, 255, 255, 0.4);
        }

        .btn-premium-secondary:hover {
            background-color: #ffffff;
            color: var(--primary);
            border-color: #ffffff;
        }

        /* Offcanvas Mobile Menu */
        .offcanvas {
            background: linear-gradient(0deg, rgba(10, 77, 140, 1) 49%, rgba(255, 255, 255, 1) 97%);
            border-left: 1px solid var(--glass-border);
            width: 300px;
        }

        .offcanvas-header {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding: 20px;
        }

        .offcanvas-body {
            padding: 30px 20px;
        }

        .offcanvas .nav-link {
            font-size: 1.1rem;
            padding: 12px 0 !important;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .btn-close-white {
            filter: invert(1) grayscale(100%) brightness(200%);
        }

        /* Hero Section */
        /* .hero-section {
            height: 100vh;
            min-height: 700px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            background: #040f1c;
        } */

        .hero-section {
    height: 100vh;
    min-height: 700px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;

    background-image: url('home-banner.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.45;
            transform: scale(1.05);
            animation: sustainedZoom 25s infinite alternate ease-in-out;
            z-index: 1;
        }

        @keyframes sustainedZoom {
            0% {
                transform: scale(1);
            }

            100% {
                transform: scale(1.12);
            }
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgb(8 26 46 / 95%) 0%, rgb(0 6 12 / 85%) 50%, rgb(21 59 129) 100%);
            z-index: 2;
        }

        .hero-content {
            top: 35px;
            position: relative;
            z-index: 3;
            color: #ffffff;
            max-width: 1330px !important;
        }

        .hero-label {
            color: var(--accent);
            text-transform: uppercase;
            font-weight: 600;
            letter-spacing: 5px;
            font-size: 0.9rem;
            margin-bottom: 20px;
            display: inline-block;
        }

        .hero-title {
            font-size: 3.8rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 25px;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 300;
            line-height: 1.6;
            margin-bottom: 40px;
            max-width: 750px;
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.3rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }
        }

        /* Particle Canvas overlay */
        #hero-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }

        /* Trust Bar */
        .trust-bar {
            background-color: var(--primary);
            border-bottom: 1px solid var(--glass-border);
            padding: 30px 0;
            position: relative;
            z-index: 4;
        }

        .trust-item {
            color: rgba(255, 255, 255, 0.9);
            font-family: var(--font-serif);
            font-size: 0.95rem;
            letter-spacing: 1px;
            text-align: center;
            border-right: 1px solid rgba(255, 255, 255, 0.1);
            padding: 10px 15px;
        }

        .trust-item:last-child {
            border-right: none;
        }

        .trust-item i {
            color: #bb8513;
            margin-right: 10px;
            font-size: 1.8rem;
        }

        @media (max-width: 991px) {
            .trust-item {
                border-right: none;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                padding: 15px 0;
            }

            .trust-item:last-child {
                border-bottom: none;
            }
        }

        /* Statistics Section */
        .stats-card {
            text-align: center;
            padding: 30px;
            background: #ffffff;
            border-top: 3px solid var(--secondary);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
            transition: var(--transition-smooth);
        }

        .stats-card:hover {
            transform: translateY(-5px);
            border-top-color: var(--accent);
        }

        .stats-number {
            font-family: var(--font-serif);
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 5px;
        }

        .stats-number span {
            color: var(--accent);
        }

        .stats-label {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-muted);
            font-weight: 600;
        }

        /* About Section Layered Cards */
        .about-image-wrapper {
            position: relative;
            padding-right: 40px;
            padding-bottom: 40px;
        }

        .about-img-primary {
                border-radius: 20px;
            width: 100%;
            height: auto;
            object-fit: cover;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
        }

        .about-card-floating {
            position: absolute;
            bottom: 0;
            right: 0;
            background: var(--primary);
            border: 2px solid var(--accent);
            padding: 30px;
            color: #ffffff;
            max-width: 280px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .about-card-floating h5 {
            font-size: 1.1rem;
            color: var(--accent);
            margin-bottom: 10px;
        }

        .about-card-floating p {
            font-size: 0.85rem;
            margin-bottom: 0;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.5;
        }

        /* What We Do Cards */
        .service-card {
            border-radius: 15px;
            background: #ffffff;
            border: 1px solid rgba(0, 0, 0, 0.06);
            padding: 45px 35px;
            height: 100%;
            transition: var(--transition-smooth);
            position: relative;
            z-index: 1;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: var(--primary);
            z-index: -1;
            transition: var(--transition-smooth);
        }

        .service-card:hover::before {
            height: 100%;
        }

        .service-card:hover {
            color: #ffffff;
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(7, 26, 46, 0.15);
            border-color: var(--accent);
        }

        .service-icon {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 25px;
            transition: var(--transition-smooth);
            display: inline-block;
        }

        .service-card:hover .service-icon {
            color: var(--accent);
            transform: scale(1.1);
        }

        .service-card h4 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
            transition: var(--transition-smooth);
        }

        .service-card:hover h4 {
            color: #ffffff;
        }

        .service-card p {
            color: var(--text-muted);
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 0;
            transition: var(--transition-smooth);
        }

        .service-card:hover p {
            color: rgba(255, 255, 255, 0.75);
        }

        /* Investment Focus */
        .focus-card {
            position: relative;
            height: 380px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
        }

        .focus-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-smooth);
        }

        .focus-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(7, 26, 46, 0.95) 0%, rgba(7, 26, 46, 0.6) 60%, rgba(7, 26, 46, 0.1) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 35px;
            transition: var(--transition-smooth);
        }

        .focus-card:hover .focus-img {
            transform: scale(1.08);
        }

        .focus-card:hover .focus-overlay {
            background: linear-gradient(to top, rgba(10, 77, 140, 0.95) 0%, rgba(7, 26, 46, 0.7) 100%);
        }

        .focus-icon {
            color: var(--accent);
            font-size: 2rem;
            margin-bottom: 15px;
        }

        .focus-overlay h4 {
            color: #ffffff;
            font-size: 1.4rem;
            margin-bottom: 8px;
        }

        .focus-overlay p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.85rem;
            margin-bottom: 0;
            opacity: 0;
            max-height: 0;
            transition: all 0.4s ease;
        }

        .focus-card:hover .focus-overlay p {
            opacity: 1;
            max-height: 80px;
            margin-top: 10px;
        }

        /* Transactions Timeline */
        .timeline-container {
            position: relative;
            padding: 40px 0;
        }

        .timeline-container::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            height: 100%;
            width: 2px;
            background: rgba(201, 162, 39, 0.25);
            transform: translateX(-50%);
        }

        .timeline-item {
            margin-bottom: 60px;
            position: relative;
            width: 100%;
        }

        .timeline-item:last-child {
            margin-bottom: 0;
        }

        .timeline-badge {
            width: 20px;
            height: 20px;
            background: var(--primary);
            border: 3px solid var(--accent);
            border-radius: 50%;
            position: absolute;
            left: 50%;
            top: 25px;
            transform: translateX(-50%);
            z-index: 2;
            transition: var(--transition-smooth);
        }

        .timeline-item:hover .timeline-badge {
            background: var(--accent);
            box-shadow: 0 0 15px var(--accent);
            transform: translateX(-50%) scale(1.2);
        }

        .timeline-panel {
            width: 45%;
            padding: 25px 30px;
            background: #ffffff;
            border: 1px solid rgba(0, 0, 0, 0.05);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
            position: relative;
            transition: var(--transition-smooth);
            border-radius: 15px;
        }

        .timeline-item:nth-child(even) .timeline-panel {
            float: right;
        }

        .timeline-item:nth-child(odd) .timeline-panel {
            float: left;
            text-align: right;
        }

        .timeline-panel:hover {
            border-left: 3px solid var(--accent);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            transform: translateY(-3px);
        }

        .timeline-item:nth-child(odd) .timeline-panel:hover {
            border-left: 1px solid rgba(0, 0, 0, 0.05);
            border-right: 3px solid var(--accent);
        }

        .timeline-meta {
            color: var(--accent);
            font-weight: 600;
            font-size: 0.85rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        .timeline-panel h4 {
            font-size: 1.25rem;
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 10px;
        }

        .timeline-panel p {
            color: var(--text-muted);
            font-size: 0.88rem;
            margin-bottom: 0;
            line-height: 1.5;
        }

        @media (max-width: 768px) {
            .timeline-container::before {
                left: 20px;
            }

            .timeline-badge {
                left: 20px;
                transform: none;
            }

            .timeline-item:hover .timeline-badge {
                transform: scale(1.2);
            }

            .timeline-panel {
                width: calc(100% - 50px);
                float: right !important;
                text-align: left !important;
                margin-left: 50px;
            }
        }

        /* Portfolio Company Cards */
        .portfolio-card {
            background: #ffffff;
            border: 1px solid rgba(0, 0, 0, 0.06);
            overflow: hidden;
            transition: var(--transition-smooth);
            border-radius: 15px;
        }

        .portfolio-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
            border-color: rgba(201, 162, 39, 0.3);
        }
        .portfolio-logo {
            padding: 15px 0px 0px 0px;
        }

        .portfolio-logo-area {
           height: 140px;
    background: var(--light-section);
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 20px; */
    position: relative;
        }

        .portfolio-logo-area i {
            font-size: 3rem;
            color: var(--primary);
            opacity: 0.8;
        }

        .portfolio-status-tag {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 4px 10px;
            background: var(--primary);
            color: var(--bg-white);
        }

        .portfolio-body {
            padding: 61px 30px 30px 30px;
        }

        .portfolio-sector {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--accent);
            font-weight: 600;
            margin-bottom: 8px;
        }

        .portfolio-body h4 {
            font-size: 1.3rem;
            color: var(--primary);
            margin-bottom: 12px;
        }

        .portfolio-body p {
            font-size: 0.88rem;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .portfolio-link {
            color: var(--primary);
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: var(--transition-smooth);
        }

        .portfolio-link i {
            margin-left: 6px;
            font-size: 0.8rem;
            transition: var(--transition-smooth);
        }

        .portfolio-link:hover {
            color: var(--accent);
        }

        .portfolio-link:hover i {
            transform: translateX(4px);
        }

        /* Investment Approach Horizontal Flow */
        .approach-wrapper {
            position: relative;
        }

        .approach-line {
            position: absolute;
            top: 233px;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(to right, transparent, var(--accent) 20%, var(--accent) 80%, transparent);
            z-index: 1;
        }

        @media (max-width: 991px) {
            .approach-line {
                display: none;
            }
        }

        .approach-step {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 0 15px;
        }

        .approach-number {
            width: 90px;
            height: 90px;
            background: #ffffff;
            border: 2px solid var(--primary);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-serif);
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--accent);
            margin: 10px auto 25px;
            transition: var(--transition-smooth);
        }

        .approach-step:hover .approach-number {
            background: var(--primary);
            color: #ffffff;
            border-color: var(--accent);
            transform: scale(1.05);
        }

        .approach-step h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 12px;
        }

        .approach-step p {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.5;
        }

        /* Global Impact Section Map */
        .global-map-section {
            background: linear-gradient(180deg, var(--primary) 0%, #041222 100%);
            color: #ffffff;
            position: relative;
            overflow: hidden;
        }

        .map-container {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
            opacity: 0.15;
        }

        .map-svg {
            width: 100%;
            height: auto;
            fill: rgba(255, 255, 255, 0.2);
        }

        .map-overlay-content {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
        }

        /* Absolute positioned glowing node markers mimicking international business coverage */
        .map-marker {
            position: absolute;
            width: 12px;
            height: 12px;
            background: var(--accent);
            border-radius: 50%;
            box-shadow: 0 0 10px var(--accent), 0 0 20px var(--accent);
        }

        .map-marker::before {
            content: '';
            position: absolute;
            top: -6px;
            left: -6px;
            width: 24px;
            height: 24px;
            border: 1px solid var(--accent);
            border-radius: 50%;
            animation: mapPulse 2s infinite ease-out;
            opacity: 0;
        }

        @keyframes mapPulse {
            0% {
                transform: scale(0.5);
                opacity: 0;
            }

            50% {
                opacity: 0.5;
            }

            100% {
                transform: scale(1.5);
                opacity: 0;
            }
        }

        /* Geographically conceptual placements */
        .marker-1 {
            top: 62%;
            left: 63%;
        }

        /* South Asia hub region */
        .marker-2 {
            top: 40%;
            left: 52%;
        }

        /* Middle East footprint */
        .marker-3 {
            top: 35%;
            left: 18%;
        }

        /* Western connections */
        .marker-4 {
            top: 52%;
            left: 68%;
        }

        /* Southeast Asia linkage */

        /* Insights Cards */
        .insight-card {
            background: #ffffff;
            border: 1px solid rgba(0, 0, 0, 0.05);
            height: 100%;
            transition: var(--transition-smooth);
            border-radius: 15px;
        }

        .insight-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
        }

        .insight-img-box {
            height: 220px;
            background-color: #f0f2f5;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 15px 15px 0px 0px;
        }

        .insight-img-box i {
            font-size: 3.5rem;
            color: var(--primary);
            opacity: 0.15;
        }

        .insight-body {
            padding: 30px;
        }

        .insight-date {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--accent);
            font-weight: 600;
            margin-bottom: 10px;
        }

        .insight-body h4 {
            font-size: 1.2rem;
            color: var(--primary);
            line-height: 1.4;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .insight-body p {
            font-size: 0.88rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* Call To Action */
        .cta-section {
            background: linear-gradient(var(--primary), rgba(7, 18, 43, 0.92));
            background-size: cover;
            background-attachment: fixed;
            color: #ffffff;
            padding: 120px 0;
            text-align: center;
        }

        .cta-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .cta-text {
            font-size: 1.15rem;
            color: rgba(255, 255, 255, 0.8);
            max-width: 700px;
            margin: 0 auto 40px;
            font-weight: 300;
        }

        /* Footer */
        .footer-top {
            background-color: #644f20;
            color: rgba(255, 255, 255, 0.75);
            padding: 80px 0 50px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .footer-brand {
            font-family: var(--font-serif);
            font-size: 1.6rem;
            color: #ffffff;
            font-weight: 700;
            margin-bottom: 20px;
            display: inline-block;
            letter-spacing: 2px;
        }

        .footer-brand span {
            color: var(--accent);
        }

        .footer-about-text {
            font-size: 0.88rem;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .footer-heading {
            color: #ffffff;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 25px;
            font-weight: 600;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-heading::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 30px;
            height: 1px;
            background: var(--accent);
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 0.88rem;
            transition: var(--transition-smooth);
        }

        .footer-links a:hover {
            color: var(--accent);
            padding-left: 5px;
        }

        /* Newsletter */
        .newsletter-form .form-control {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 0;
            color: #ffffff;
            padding: 12px 15px;
            font-size: 0.88rem;
        }

        .newsletter-form .form-control:focus {
            background: rgba(255, 255, 255, 0.08);
            border-color: var(--accent);
            box-shadow: none;
        }

        .newsletter-form .btn {
            background: var(--primary);
            color: var(--bg-white);
            border-radius: 0;
            border: none;
            padding: 12px 20px;
            font-weight: 600;
        }

        .newsletter-form .btn:hover {
            background: var(--accent-hover);
        }

        .footer-bottom {
            background-color: #0c2a62;
            color: rgba(255, 255, 255, 0.5);
            padding: 25px 0;
            font-size: 0.8rem;
        }

        .footer-socials a {
            color: rgba(255, 255, 255, 0.6);
            font-size: 1.1rem;
            margin-right: 15px;
            transition: var(--transition-smooth);
        }

        .footer-socials a:hover {
            color: var(--accent);
        }

        /* Navbar Brand */
        .navbar-brand {
            padding: 0;
            display: flex;
            align-items: center;
        }

        .navbar-logo {
            width: auto;
            height: 55px;
            object-fit: contain;
            transition: all 0.3s ease;
        }

        .footer-logo {
            filter: brightness(0) invert(1);
            padding-bottom: 10px;
            height: 57px;
        }


        /* Sticky Header Scroll State */
        .navbar.scrolled .navbar-logo {
            height: 50px;
        }

        .navbar.scrolled {
            background: rgb(255 255 255 / 56%);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);

            padding: 15px 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
            border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        }

        /* Default Navbar */
        .nav-link {
            color: rgba(255, 255, 255, 0.85) !important;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            padding: 0 15px !important;
            transition: var(--transition-smooth);
            font-weight: 500;
        }

        /* Scroll Hone Par Links Black */
        .navbar.scrolled .nav-link {
            color: #000 !important;
        }

        /* Scroll Hone Par Active & Hover Color */
        /*.navbar.scrolled .nav-link:hover,*/
        /*.navbar.scrolled .nav-link.active {*/
        /*    color: var(--accent) !important;*/
        /*}*/

        .navbar.scrolled .navbar-brand {
            color: #dadada !important;
        }


        /* Laptop */
        @media (max-width: 1199.98px) {
            .navbar-logo {
                height: 62px;
            }
        }

        /* Tablet */
        @media (max-width: 991.98px) {
            .navbar-logo {
                height: 55px;
            }
        }

        /* Mobile */
        @media (max-width: 767.98px) {
            .navbar-logo {
                height: 48px;
            }
        }

        /* Small Mobile */
        @media (max-width: 575.98px) {
            .navbar-logo {
                height: 42px;
            }
        }

        /* =========================
   GLOBAL RESPONSIVE FIX
========================= */


        /* Bootstrap row overflow fix */
        .row {
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        /* Images */
        img,
        video,
        svg,
        canvas,
        iframe {
            max-width: 100%;
            height: auto;
        }

        /* Sections */
        section,
        header,
        footer {
            overflow: hidden;
        }

        /* AOS animation overflow fix */
        [data-aos] {
            /* overflow: hidden; */
        }

        /* Hero */
        .hero-section,
        .hero-content,
        .hero-overlay,
        .hero-bg {
            max-width: 100%;
            overflow: hidden;
        }

        /* Timeline */
        .timeline-container,
        .timeline-item,
        .timeline-panel {
            max-width: 100%;
        }

        /* Offcanvas */
        .offcanvas {
            max-width: 320px;
        }

        /* Prevent transform overflow */
        .service-card,
        .portfolio-card,
        .focus-card,
        .leader-card,
        .insight-card {
            will-change: transform;
        }

        /* Mobile */
        @media (max-width: 991.98px) {

            .container {
                padding-left: 15px !important;
                padding-right: 15px !important;
            }

            .hero-title {
                font-size: 2.5rem !important;
                line-height: 1.2;
            }

            .hero-subtitle {
                font-size: 1rem !important;
            }

            .section-padding {
                padding: 70px 0 !important;
            }
        }

        @media (max-width: 767.98px) {

            .hero-title {
                font-size: 2rem !important;
            }

            .hero-content {
                text-align: center;
            }

            .btn-premium {
                width: 100%;
                margin-bottom: 10px;
            }

            .stats-number {
                font-size: 2.3rem !important;
            }

            .section-title {
                font-size: 2.75rem !important;
            }
        }

        .about-card-floating {
    border-radius: 15px;
}


      /* ========================================
   INNER PAGE HEADER
======================================== */

.page-header {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;

    /*background:*/
    /*    linear-gradient(rgba(6,24,43,.80), rgba(6,24,43,.80)),*/
    /*    url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2070&auto=format&fit=crop')*/
    /*    center center/cover no-repeat;*/
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right,
            rgba(144,115,54,.20),
            transparent 40%);
}

.min-vh-50 {
    min-height: 500px;
}

.page-header-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.page-label {
    display: inline-block;
    color: var(--accent);
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 20px;
}

.page-title {
    font-size: clamp(2.8rem, 6vw, 4rem);
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.1;
}

.page-divider {
    width: 90px;
    height: 3px;
    background: var(--accent);
    margin-bottom: 25px;
}

.page-subtitle {
    max-width: 650px;
    color: rgba(255,255,255,.85);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.custom-breadcrumb {
    margin: 0;
}

.custom-breadcrumb .breadcrumb-item,
.custom-breadcrumb .breadcrumb-item a {
    color: rgba(255,255,255,.8);
    text-decoration: none;
    font-size: .95rem;
}

.custom-breadcrumb .breadcrumb-item.active {
    color: var(--accent);
}

.custom-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,.5);
}

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 991px) {

    .page-header {
        min-height: 420px;
        text-align: center;
    }

    .page-divider {
        margin-left: auto;
        margin-right: auto;
    }

    .page-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .custom-breadcrumb {
        justify-content: center;
    }
}

@media (max-width: 767px) {

    .page-header {
        min-height: 380px;
    }

    .page-title {
        font-size: 2.4rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }
}