
: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; -webkit-text-fill-color: var(--primary-color); }
        .bg-primary-custom { background: linear-gradient(135deg, #22c55e 0%, #34d348 100%) !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;
        }
        .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: 85vh;
            display: flex;
            align-items: center;
            padding-top: 100px; /* Offset for fixed navbar */
            overflow: hidden;   /* Prevents blobs from scrolling */
        }

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

/* Typography */
.hero-heading {
    font-size: 40px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}
.lead{
	font-size: 1rem !important;
}
.hero-heading {
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.15;
    background: linear-gradient(135deg, var(--text-dark) 0%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
/* Mobile Typography adjustment */
@media (max-width: 768px) {
    .hero-heading { font-size: 2.5rem; }
    .dropdown-menu {
    max-height: 220px;
    overflow: auto;
    scrollbar-width: thin;
}
}
/* =========================================
   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;
}
@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%); }
}
@media (max-width: 1200px) {
    .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: 450px;
        transform: scale(0.9);
        margin-bottom: 60px; /* Space for marquee */
    }

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

@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: 1200px) {
            .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: row; /* 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 */
                justify-content: space-between;
            }
        }
         /* Footer */
        footer {
            background: linear-gradient(155deg, #2c3e50 0%, #000000 100%) !important;
            color: #d1d1d1;
        }
        footer a {
            color: #d1d1d1;
            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) {
            .hero-section{
                min-height: 30vh !important;
            }
            .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: 70%;    
            right: 24px;       
            margin-top: 10px;
            z-index: 1050;    
        }
    }
    #partnerModal .modal-content {
    border-radius: 24px;
    border: none;
    box-shadow: 0 40px 80px -12px rgba(0, 0, 0, 0.2);
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* 2. Close Button */
#partnerModal .btn-close-custom {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f1f5f9;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 10;
    cursor: pointer;
}
#partnerModal .btn-close-custom:hover {
    background: #e2e8f0;
    color: var(--text-dark);
}

/* 3. Stepper Component */
#partnerModal .stepper-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 15px;
    position: relative;
    margin-bottom: 2.5rem;
    margin-top: 40px; 
}

#partnerModal .step-line {
    flex-grow: 1;
    height: 3px;
    background-color: #f1f5f9;
    margin-top: 18px; 
    margin-left: 5px;
    margin-right: 5px;
    border-radius: 10px;
    transition: background-color 0.4s ease;
}

#partnerModal .step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 60px;
}

#partnerModal .step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ffffff;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 2px solid #e2e8f0;
}

#partnerModal .step-label {
    margin-top: 8px;
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

/* Active State */
#partnerModal .step-item.active .step-circle {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(34, 197, 94, 0.3);
    transform: scale(1.05);
}
#partnerModal .step-item.active .step-label { color: var(--text-dark); }
#partnerModal .step-line.active { background-color: var(--primary-color); }


/* 4. Form Styling */
#partnerModal h3 {
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 0.5rem;
}

#partnerModal .form-label-modern {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

#partnerModal .form-control-modern {
    display: block;
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    background-color: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.2s ease;
}
#partnerModal .form-control-modern:focus {
    background-color: #ffffff;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px var(--primary-subtle);
    outline: none;
}

/* 5. Buttons */
#partnerModal .btn-submit-modern {
    display: block;
    width: 100%;
    padding: 16px;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 10px 20px -5px rgba(22, 163, 74, 0.4);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    margin-top: 10px;
}
#partnerModal .btn-submit-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(22, 163, 74, 0.5);
}

#partnerModal .btn-back-modern {
    display: block;
    width: 100%;
    padding: 14px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #64748b;
    background-color: transparent;
    border: 2px solid #f1f5f9;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 12px;
}
#partnerModal .btn-back-modern:hover {
    background-color: #f8fafc;
    color: #0f172a;
    border-color: #e2e8f0;
}
#partnerModal .alert-custom-warning {
    background-color: #fefce8; /* Light Yellow */
    border-left: 4px solid #eab308; /* Yellow 500 */
    color: #a16207; /* Yellow 700 */
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}
#partnerModal .alert-custom-warning strong {
    color: #854d0e;
}
#partnerModal .form-control-file {
    font-size: 0.9rem;
    color: var(--text-muted);
}
#partnerModal .form-control-file::file-selector-button {
    margin-right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: none;
    background-color: #dcfce7; /* Primary/10 */
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.85rem;
    transition: background-color 0.2s;
    cursor: pointer;
}
#partnerModal .form-control-file::file-selector-button:hover {
    background-color: #bbf7d0; /* Primary/20 */
}

/* 3. MOU Scroll Box (Step 4) */
#partnerModal .mou-scroll-box {
    height: 200px;
    overflow-y: auto;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 1rem;
    background-color: #f8fafc;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* 4. Disabled Button State */
#partnerModal .btn-submit-modern:disabled {
    background: #cbd5e1;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}
.cta-glass-section {
    position: relative;
    /* Gradient from primary to primary-dark */
        background: linear-gradient(135deg, #1ba94f 0%, #2cb63e 100%) !important;
    border-radius: 30px;
    overflow: hidden;
    color: white;
    box-shadow: 0 20px 25px -5px rgba(22, 163, 74, 0.25), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Abstract shapes inside CTA */
.cta-shape {
    position: absolute;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    pointer-events: none;
}
.cta-shape-1 { width: 300px; height: 300px; top: -100px; right: -50px; filter: blur(20px);}
.cta-shape-2 { width: 200px; height: 200px; bottom: -50px; left: -50px; filter: blur(20px);}
.service-card {
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1) !important;
}

/* Image Scale on Hover */
.service-card:hover .transition-scale {
    transform: scale(1.08);
}

/* Reveal Link Icon on Hover */
.group-hover-visible {
    opacity: 0;
    transform: translateY(10px);
}

.service-card:hover .group-hover-visible {
    opacity: 1;
    transform: translateY(0);
}
/* 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;
        }
        .feature-card:hover .icon-box {
            background-color: var(--primary-color);
            color: white;
            transform: scale(1.1);
        }
        .hover-scale { transition: transform 0.2s; }
.hover-scale:hover { transform: translateY(-3px); }
.feature-card-hover {
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease;
}

.feature-card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15) !important;
}

.icon-box-lg {
    margin-left: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.feature-card-hover:hover .icon-box-lg {
    transform: scale(1.1) rotate(-5deg);
}
.dropdown-item.active, .dropdown-item:active {
    background-color: #f8f8f8;
}
@media (max-width: 576px) {
    .hero-heading {
        font-size: 24px !important;
    }
    .lead {
    font-size: 16px !important;
    }
    .logo-main{
        height: 30px !important;
    }
    .logo-second{
        height: 40px !important;
        margin-bottom: 3px !important;
    }
}
.fullPageLoader {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: rgba(0, 0, 0, 0.7); /* Dim, faded black background */
            opacity: 1;
            transition: opacity 0.5s ease-in-out;
            display: none;
        }
        
        .loader-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        .spinner {
            border: 4px solid rgba(255, 255, 255, 0.3); 
            border-top-color: white; 
            border-radius: 50%;
            width: 50px;
            height: 50px;
            animation: spin 0.8s linear infinite;
        }
        .custom-accordion .accordion-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.custom-accordion .accordion-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
}

.custom-accordion .accordion-button {
    background-color: #fff;
    color: var(--text-dark);
    font-size: 1.05rem;
    box-shadow: none !important; 
    padding-right: 2rem;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background-color: var(--primary-subtle); 
    color: var(--primary-dark); 
    border-bottom: 1px solid rgba(34, 197, 94, 0.1);
}

.custom-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2364748b'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2316a34a'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg);
}

.custom-accordion .accordion-body {
    line-height: 1.7;
    font-size: 0.95rem;
}
.blur-3xl { filter: blur(64px); }
.opacity-5 { opacity: 0.25; }

.info-panel-green {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    height: 100%;
    padding: 3rem;
    position: relative;
}
.info-panel-green::before {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}
.info-panel-green::after {
    content: '';
    position: absolute;
    top: 50px;
    right: 50px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}
.dropdown-toggle.no-arrow::after {
    display: none;
}
.dest-flag-badge img{
    height: 44px;
    width: 44px;
}
.hero-section {
    padding-bottom: 20px !important;
}
.navbar-toggler:focus{
    box-shadow: none;
    color: #43ca43;
}
.bg-dark {
    background: linear-gradient(135deg, #2c3e50 0%, #000000 100%) !important;
}
.tiny {
    font-size: 13px;
    margin-top: 3px;
}
.floating-action-container {
    position: fixed;
    right: 10px;
    bottom: 75px;
    z-index: 25;
    display: flex;
    flex-direction: column;
    gap: 10px; 
}

.float-btn {
    width: 55px; 
    height: 55px;
    background: linear-gradient(145deg, #2c3e50 0%, #000000 100%);
    color: #f1f5f9; 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.25rem;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1); 
    box-shadow: 
        0 10px 15px -3px rgba(0, 0, 0, 0.5), 
        0 4px 6px -2px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -2px 0 rgba(0, 0, 0, 0.3); 
        
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); 
}

.float-btn:hover {
    background: linear-gradient(145deg, var(--primary-color), #0f766e); 
    color: #ffffff;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 20px 25px -5px rgba(0, 0, 0, 0.4), 
        0 0 20px rgba(20, 184, 166, 0.6), 
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
        
    border-color: rgba(255, 255, 255, 0.3);
}

.float-btn:active {
    transform: translateY(0) scale(0.95);
    box-shadow: 
        0 2px 4px rgba(0,0,0,0.4), 
        inset 0 2px 4px rgba(0,0,0,0.3);
}
.float-btn::before {
    content: attr(data-tooltip); 
    position: absolute;
    right: 70px; 
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: #0f172a; 
    color: #e2e8f0;
    
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55); /* Spring effect */
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    pointer-events: none;
    border: 1px solid rgba(255,255,255,0.1);
}
.float-btn::after {
    content: '';
    position: absolute;
    right: 64px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent #0f172a;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.float-btn:hover::before,
.float-btn:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}
@media (max-width: 768px) {
    .mobile-focus-img {
        height: 300px !important;
        object-position: 0% center; 
    }
}