  :root {
            --primary-color: #22c55e;
            --primary-dark: #16a34a;
            --text-dark: #0f172a;
            --text-muted: #64748b;
            --bg-surface: #ffffff;
            --bg-background: #f8fafc;
            --hero-bg-1: #f0fdf4; /* Very light green */
            --hero-bg-2: #f8fafc; /* Slate 50 */
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            background-color: var(--bg-background);
            overflow-x: hidden;
        }

        /* Utilities */
        .text-primary-custom { color: var(--primary-color) !important; }
        .bg-primary-custom { background-color: var(--primary-color) !important; }
        .btn-primary-custom {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            color: white;
            font-weight: 600;
            padding: 0.75rem 1.5rem;
            transition: all 0.3s ease;
        }
        a { text-decoration: none;}
        .btn-primary-custom:hover {
            background-color: var(--primary-dark);
            border-color: var(--primary-dark);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 10px 15px -3px rgba(34, 197, 94, 0.3);
        }
        .btn-outline-custom {
            color: var(--text-dark);
            background-color: white;
            border: 1px solid #e2e8f0;
            font-weight: 600;
            padding: 0.75rem 1.5rem;
            transition: all 0.3s ease;
        }
        .btn-outline-custom:hover {
            background-color: #f8fafc;
            border-color: #cbd5e1;
            transform: translateY(-2px);
        }
        .hover-scale { transition: transform 0.3s; }
        .hover-scale:hover { transform: scale(1.05); }
        
        /* Navbar */
        .navbar {
            background-color: transparent;
            padding-top: 1.5rem;
            padding-bottom: 1.5rem;
            transition: all 0.3s ease;
        }
        .navbar.scrolled {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
            padding-top: 1rem;
            padding-bottom: 1rem;
        }
        .nav-link {
            font-weight: 600;
            color: var(--text-dark);
            margin: 0 5px;
            font-size: 0.95rem;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--primary-color);
        }

        .hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--hero-bg-2) 0%, #ffffff 50%, var(--hero-bg-1) 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding-top: 70px; /* Offset for fixed navbar */
    overflow: hidden;   /* Prevents blobs from scrolling */
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Typography */
.hero-heading {
    font-size: 36px;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}
.lead{
    font-size: 1rem;
}
/* Mobile Typography adjustment */
@media (max-width: 768px) {
    .hero-heading { font-size: 2.5rem; }
}
/* =========================================
   3. BACKGROUND ANIMATED BLOBS
   ========================================= */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.6;
    animation: floatBlob 10s infinite alternate ease-in-out;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background-color: rgba(34, 197, 94, 0.15); /* Soft Green */
}

.blob-2 {
    bottom: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background-color: rgba(59, 130, 246, 0.1); /* Soft Blue */
    animation-delay: -5s;
}

/* =========================================
   4. RIGHT VISUAL: GLASS UI
   ========================================= */
.hero-visual-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
    height: 300px;
}

.glass-ui-container {
    position: relative;
    width: 100%;
    max-width: 450px;
    z-index: 10;
}

/* The Main Card */
.glass-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border-radius: 24px;
    transition: transform 0.3s ease;
}

.main-interface {
    padding: 1.5rem;
    width: 100%;
    animation: fadeUp 1s ease-out;
}

/* Mac-style Window Dots */
.card-header-dots {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

/* List Items inside Card */
.ui-header { display: flex; justify-content: space-between; align-items: center; }
.app-item {
    display: flex; justify-content: space-between; align-items: center;
    padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,0.05);
}
.app-item:last-child { border-bottom: none; }

.avatar { width: 40px; height: 40px; border-radius: 10px; object-fit: cover; }
.tiny { font-size: 0.75rem; }

/* Status Pills */
.status-pill { padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; }
.status-pill.success { background: var(--success-soft); color: var(--success-custom); }
.status-pill.processing { background: var(--primary-soft); color: var(--primary-custom); }
.status-pill.pending { background: #f1f5f9; color: var(--text-muted); }

/* Floating Stats Cards */
.stat-card {
    position: absolute;
    padding: 12px 20px;
    display: flex; align-items: center; gap: 12px;
    min-width: 180px;
    z-index: 11;
    animation: floatElement 6s ease-in-out infinite;
}
.stat-card.card-1 { top: -20px; right: -30px; animation-delay: 0.5s; }
.stat-card.card-2 { bottom: -30px; left: -30px; animation-delay: 3s; }

.icon-box {
    width: 40px; height: 40px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
}
.bg-success-soft { background: var(--success-soft); }
.bg-primary-soft { background: var(--primary-soft); }

/* =========================================
   5. BOTTOM INFINITE MARQUEE
   ========================================= */
.hero-marquee-wrapper {
    /* position: absolute; */
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.8);
    padding: 20px 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 20;
}

/* Optional label "Apply to:" */
.marquee-label {
    position: absolute;
    left: 0;
    background: linear-gradient(90deg, #fff 80%, transparent);
    z-index: 22;
    padding: 0 40px 0 10vw; /* Aligns with container usually */
    height: 100%;
    display: flex;
    align-items: center;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Fade Mask on Right Side */
.hero-marquee-wrapper::after {
    content: "";
    position: absolute;
    right: 0; top: 0;
    height: 100%; width: 150px;
    background: linear-gradient(90deg, transparent, #fff);
    z-index: 22;
}

/* The Moving Track */
.marquee-track {
    display: flex;
    width: fit-content;
    animation: scrollMarquee 40s linear infinite;
}

.marquee-group {
    display: flex;
    align-items: center;
    gap: 45px;
    padding-right: 45px;
}

/* Flag Items */
.flag-item {
    display: flex; align-items: center; gap: 6px;
    opacity: 0.8; transition: opacity 0.3s ease;
    white-space: nowrap;
}
.flag-item:hover { opacity: 1; cursor: default; }

.flag-item img {
    width: 28px; height: 28px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.flag-item span {
    font-weight: 600; color: var(--text-dark); font-size: 0.95rem;
}
.flag-item a {
    text-decoration: none !important;
}

/* =========================================
   6. ANIMATIONS
   ========================================= */
@keyframes floatBlob {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(20px, -20px) scale(1.1); }
}

@keyframes floatElement {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* =========================================
   7. RESPONSIVE QUERIES
   ========================================= */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        padding: 1.5rem;
        border-radius: 1rem;
        box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
        border: 1px solid #e2e8f0;
    }
    
    .hero-visual-wrapper {
        height: 305px !important;
        transform: scale(0.9);
        margin-bottom: 10px !important;
        margin-top: 30px; 
    }
    .hero-section {
        padding-top: 100px;
        }

    /* Adjust Marquee for Mobile */
    .marquee-label { display: none; } /* Hide label on mobile */
    .hero-marquee-wrapper::after { width: 50px; }
    .marquee-group { gap: 20px; padding-right: 20px;}
}

@media (max-width: 576px) {
    .hero-heading { font-size: 2.2rem; }
    .hero-visual-wrapper { transform: scale(0.8); margin-left: -5%; width: 110%; }
}
        /* Mobile Navbar Background Fix & Layout */
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(10px);
                padding: 1.5rem;
                border-radius: 1rem;
                box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
                margin-top: 0.5rem;
                border: 1px solid #e2e8f0;
                text-align: left;
            }
            .navbar-nav {
                margin-bottom: 1.5rem;
            }
            .nav-link {
                margin: 0;
                padding: 0.5rem 0;
            }
            .mobile-btn-container {
                display: flex;
                flex-direction: column; /* Changed to row for side-by-side */
                width: 100%;
                align-items: center; /* Vertically center */
                justify-content: space-between; /* Space out Login and Button */
            }
            .mobile-btn-container .btn {
                width: auto; /* Natural width */
            }
            .mobile-btn-container a.text-decoration-none {
                padding-left: 0 !important;
                margin-bottom: 0; /* Remove bottom margin */
            }
        }

        /* Marquee / Partners Section Styles */
        .marquee-container {
            overflow: hidden;
            white-space: nowrap;
            position: relative;
            padding: 1rem 0;
            mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
            -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
        }
        .marquee-track {
            display: inline-flex;
            animation: marquee-scroll 40s linear infinite;
        }
        .marquee-track:hover {
            animation-play-state: paused;
        }
        @keyframes marquee-scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .partner-card {
            width: 200px;
            background: white;
            border: 1px solid #f1f5f9;
            border-radius: 12px;
            padding: 1rem;
            margin-right: 2rem;
            position: relative;
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            white-space: normal; /* Allow text wrapping inside card */
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
            transition: all 0.3s ease;
        }
        .partner-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
            border-color: var(--primary-color);
        }
        .partner-flag {
            position: absolute;
            top: 10px;
            right: 10px;
            width: 24px;
            height: 16px;
            border-radius: 2px;
            box-shadow: 0 1px 2px rgba(0,0,0,0.1);
        }
        .partner-logo {
            height: 75px;
            width: auto;
            object-fit: contain;
            margin-bottom: 1rem;
            transition: all 0.3s;
        }
        .partner-card:hover .partner-logo {
            filter: grayscale(0%);
            opacity: 1;
        }
        /* Feature Cards */
        .feature-card {
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 16px;
            padding: 2rem;
            height: 100%;
            transition: all 0.3s ease;
        }
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
            border-color: rgba(34, 197, 94, 0.3);
        }
        .icon-box {
            width: 56px;
            height: 56px;
            background-color: rgba(34, 197, 94, 0.1);
            color: var(--primary-color);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            transition: all 0.3s;
        }
        .hero-visual-wrapper .icon-box {
            margin-bottom: 0 !important;
        }
        .feature-card:hover .icon-box {
            background-color: var(--primary-color);
            color: white;
            transform: scale(1.1);
        }

        /* Scoped Variables just for this section */
        #destinations-section {
            --dest-primary: #22c55e;
            --dest-text-dark: #0f172a;
            --dest-text-muted: #64748b;
            font-family: 'Inter', sans-serif;
        }

        /* --- CAROUSEL STYLING SCOPED TO #destinations-section --- */
        
        /* Inner Padding */
        #destinations-section .carousel-inner {
            padding: 1rem 0.5rem; 
        }

        /* Individual Card Wrapper */
        #destinations-section .dest-card-wrapper {
            padding: 0 0.75rem;
            height: 100%;
        }

        /* The Card Itself */
        #destinations-section .dest-card-item {
            cursor: pointer;
            transition: transform 0.3s ease;
            user-select: none;
            height: 100%;
        }

        #destinations-section .dest-card-item:hover {
            transform: translateY(-5px);
        }

        /* Image Container */
        #destinations-section .dest-img-box {
            position: relative;
            height: 340px;
            width: 100%;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
            margin-bottom: 1rem;
            background: #f1f5f9;
        }

        #destinations-section .dest-card-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }

        /* Hover Effects */
        #destinations-section .dest-card-item:hover .dest-card-img {
            transform: scale(1.15);
            filter: blur(4px) brightness(0.6);
        }

        /* Flag Badge */
        #destinations-section .dest-flag-badge {
            position: absolute;
            top: 20px; left: 20px;
            width: 50px; height: 50px;
            border-radius: 50%;
            background: white;
            padding: 3px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            z-index: 10;
            display: flex; align-items: center; justify-content: center;
        }

        /* Text Overlay on Hover */
        #destinations-section .dest-overlay {
            position: absolute;
            inset: 0;
            display: flex; align-items: center; justify-content: center;
            z-index: 5;
            opacity: 0;
            transition: opacity 0.3s ease;
            padding: 1.5rem;
            text-align: center;
        }

        #destinations-section .dest-card-item:hover .dest-overlay { opacity: 1; }

        #destinations-section .dest-desc-overlay {
            color: white;
            font-size: 1.1rem;
            font-weight: 600;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
            transform: translateY(10px);
            transition: transform 0.3s ease;
        }

        #destinations-section .dest-card-item:hover .dest-desc-overlay { transform: translateY(0); }

        /* Card Title */
        #destinations-section .dest-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--dest-text-dark);
            text-align: center;
            margin-bottom: 0;
        }

        /* --- CUSTOM CAROUSEL CONTROLS SCOPED --- */
        /* These styles will ONLY apply to buttons inside #destinations-section */
        
        #destinations-section .carousel-control-prev, 
        #destinations-section .carousel-control-next {
            width: 3.5rem;
            height: 3.5rem;
            background-color: white;
            border-radius: 50%;
            top: 45%;
            transform: translateY(-50%);
            opacity: 1;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            transition: all 0.2s ease;
            z-index: 20;
        }

        #destinations-section .carousel-control-prev:hover, 
        #destinations-section .carousel-control-next:hover {
            background-color: var(--dest-primary);
            transform: translateY(-50%) scale(1.05);
            box-shadow: 0 8px 16px rgba(34, 197, 94, 0.3);
        }

        /* Position buttons outside the content on larger screens */
        #destinations-section .carousel-control-prev { left: -1rem; }
        #destinations-section .carousel-control-next { right: -1rem; }

        @media (max-width: 768px) {
            #destinations-section .carousel-control-prev { left: -10px; width: 3rem; height: 3rem; }
            #destinations-section .carousel-control-next { right: -10px; width: 3rem; height: 3rem; }
        }

        /* Customizing the icons inside buttons */
        #destinations-section .carousel-control-icon-custom {
            width: 24px;
            height: 24px;
            color: var(--dest-text-dark);
            transition: color 0.2s;
        }
        
        #destinations-section .carousel-control-prev:hover .carousel-control-icon-custom,
        #destinations-section .carousel-control-next:hover .carousel-control-icon-custom {
            color: white;
        }
        /* Steps - REDESIGNED */
        .step-wrapper {
            position: relative;
            z-index: 2;
        }
        .step-card {
            background: white;
            padding: 2.5rem 2rem;
            border-radius: 1rem;
            border: 1px solid #e2e8f0;
            position: relative;
            z-index: 2;
            transition: all 0.3s ease;
            height: 100%;
            text-align: center;
        }
        .step-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            border-color: var(--primary-color);
        }
        .step-icon-wrapper {
            width: 80px;
            height: 80px;
            background: rgba(34, 197, 94, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: var(--primary-color);
            position: relative;
        }
        .step-badge {
            position: absolute;
            top: -5px;
            right: -5px;
            width: 30px;
            height: 30px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.9rem;
            border: 3px solid white;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        /* Connector Line for Desktop */
        @media (min-width: 992px) {
            .steps-connector {
                position: absolute;
                top: 40px; /* Align with icon center */
                left: 16%; 
                right: 16%;
                height: 3px;
                background-image: linear-gradient(to right, #e2e8f0 60%, transparent 40%);
                background-size: 20px 100%;
                z-index: 1;
                transform: translateY(2.5rem); /* Adjust based on card padding */
            }
        }
        
   /* =========================================
   DARK STATS SECTION (Icon Left)
   ========================================= */

.modern-stats-section {
    position: relative;
    background: linear-gradient(155deg, #2c3e50 0%, #000000 100%) !important;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-bg-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.15) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.stats-card-modern {
    background: transparent;
    border: none;
    padding: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem; 
    position: relative;
}

.stats-col {
    position: relative;
}
.stats-col:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(255,255,255,0.1);
}

.stats-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    
    background: rgba(34, 197, 94, 0.15); 
    color: #4ade80; /* Bright Green */
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.15); /* Soft Glow */
    
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.stats-card-modern:hover .stats-icon-wrapper {
    transform: scale(1.1);
    background: rgba(34, 197, 94, 0.25);
}

/* Text Container */
.stats-text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.stats-number-modern {
    font-size: 25px;
    font-weight: 800;
    margin-bottom: 0;
    line-height: 1;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
}

.stats-number-modern span {
    -webkit-text-fill-color: #28ca57; 
    font-weight: 700;
}

.stats-label-modern {
    color: #94a3b8;
    font-size: 0.8rem;
    /* font-weight: 600; */
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* =========================================
   MOBILE LAYOUT FIX (3 in a row)
   ========================================= */
@media (max-width: 768px) {
    .stats-card-modern {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .stats-text-content {
        margin-top: 5px;
        align-items: center;
        text-align: center;
    }

    .stats-icon-wrapper {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        box-shadow: 0 0 10px rgba(34, 197, 94, 0.1);
    }

    .stats-number-modern {
        font-size: 1.3rem;
    }

    .stats-label-modern {
        font-size: 10px;
        /* line-height: 1.2; */
        margin-top: 4px;
    }
}
        /* --- TESTIMONIALS SECTION STYLING --- */
        .testimonials-section {
            position: relative;
            background-color: #f8fafc; /* Very light blue-grey */
            overflow: hidden;
        }

        /* Background Shapes */
        .testimonials-bg-shape {
            position: absolute;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            filter: blur(80px);
            z-index: 0;
            opacity: 0.5;
            pointer-events: none;
        }
        
        .shape-1 {
            top: -100px;
            left: -100px;
            background: rgba(34, 197, 94, 0.1); /* Green tint */
        }
        
        .shape-2 {
            bottom: -100px;
            right: -100px;
            background: rgba(30, 41, 59, 0.05); /* Slate tint */
        }

        .testimonial-card-wrapper {
            height: 100%;
            padding: 0 0.5rem; /* Gap between cards in a slide */
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
            position: relative;
            height: 100%;
            min-height: 320px; /* Ensure uniform height for fade transition */
            display: flex;
            flex-direction: column;
            justify-content: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 1);
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(34, 197, 94, 0.1);
            border-color: rgba(34, 197, 94, 0.2);
        }

        /* Big Quote Icon in background */
        .quote-icon-bg {
            position: absolute;
            top: 10px;
            right: 30px;
            font-size: 8rem;
            color: rgba(34, 197, 94, 0.08);
            font-family: serif;
            line-height: 1;
            pointer-events: none;
            user-select: none;
        }
        
        /* Indicators for Testimonials */
        .testimonial-indicators {
            position: absolute;
            bottom: -40px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .testimonial-indicators [data-bs-target] {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: #cbd5e1;
            border: none;
            margin: 0 5px;
            transition: all 0.3s;
        }

        .testimonial-indicators .active {
            background-color: var(--dest-primary);
            width: 25px;
            border-radius: 10px;
        }

        /* Footer */
        footer {
            background-color: #0f172a;
            color: #94a3b8;
        }
        footer a {
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.2s;
        }
        footer a:hover {
            color: white;
        }
        footer .social-icon {
            width: 24px;
            height: 24px;
            fill: currentColor;
            transition: transform 0.2s;
        }
        footer a:hover .social-icon {
            transform: scale(1.1);
            fill: white;
        }
        @media (max-width: 1024px) {
            .navbar-collapse {
                background-color: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(10px);
                padding: 1.5rem;
                border-radius: 1rem;
                box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
                margin-top: 0.5rem;
                border: 1px solid #e2e8f0;
                text-align: left;
                padding-top: 0px;
            }
            .navbar-collapse {
            position: absolute; 
            top: 60%;    
            right: 24px;       
            margin-top: 10px;
            z-index: 1050;    
        }
        @media (min-width: 1024px) {
            .hero-section {
                height: 45vh !important;
            }
        }
    }
      @media (max-width: 1200px) {
            .hero-visual-wrapper {
                height: 290px;
                /* transform: scale(0.9); */
                margin-bottom: 60px;
            }
        }
    .custom-tooltip {
        position: relative;
        display: inline-block;
        cursor: help; 
    }
    .custom-tooltip .tooltip-text {
        visibility: hidden;
        background-color: #333; 
        color: #fff;
        width: 280px;
        border-radius: 6px;
        padding: 8px 10px;
        position: absolute;
        z-index: 1;
        bottom: 125%; 
        left: 50%;
        margin-left: -110px; 
        opacity: 0;
        transition: opacity 0.3s;
        font-size: 0.85rem;
        font-weight: normal;
    }
    .custom-tooltip .tooltip-text::after {
        content: "";
        position: absolute;
        top: 100%; 
        left: 50%;
        margin-left: -5px;
        border-width: 5px;
        border-style: solid;
        border-color: #333 transparent transparent transparent;
    }
    .custom-tooltip:hover .tooltip-text {
        visibility: visible;
        opacity: 1;
    }
    .section-awards {
    position: relative;
    overflow: hidden;
}

.carousel-inner {
    overflow: hidden;
    padding-top: 20px;    
    padding-bottom: 20px; 
    margin-top: -20px; 
    margin-bottom: -20px; 
}

.award-card {
   transition: all 0.3s ease;
    height: 120px;
    background: #fff;
    position: relative;
    z-index: 1;
    box-sizing: border-box; 
    transform: translateZ(0);
}

.award-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
    border-color: var(--primary-color) !important;
    z-index: 2;
}

.award-logo {
    max-height: 80px;
    max-width: 100%;
    object-fit: contain;
    filter: none; 
    opacity: 1;  
    transition: transform 0.3s ease;
}

.award-card:hover .award-logo {
    transform: scale(1.05); 
}

/* Controls Styling */
.carousel-control-prev, 
.carousel-control-next {
    opacity: 1 !important; /* Always visible */
    z-index: 5;
}

/* Green Buttons */
.bg-primary-custom {
    background-color: var(--primary-color) !important;
}

/* Indicators */
.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #cbd5e1;
    border: none;
    margin: 0 5px;
    opacity: 1;
}

.carousel-indicators .active {
    background-color: var(--primary-color) !important;
    transform: scale(1.2);
}

.tracking-wide {
    letter-spacing: 0.1em;
}
.carousel-item {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0); 
    -webkit-transform: translate3d(0, 0, 0);
}
.carousel-item .row {
    min-height: 140px; 
}
@media (max-width: 767.98px) {
    .carousel-control-prev, 
    .carousel-control-next {
        display: none !important;
    }
    .quote-icon-bg{
        font-size: 4rem;
    }
}