
        :root {
            --primary: #3B82F6;      /* Vibrant Blue - Trust & Professionalism */
            --primary-dark: #2563EB;
            --secondary: #EF4444;    /* Vibrant Red - Energy & Urgency */
            --secondary-dark: #DC2626;
            --accent: #F59E0B;       /* Golden Yellow - Success & Quality */
            --accent-light: #FBBF24;
            --mountain: #10B981;     /* Emerald Green - Nature & Authenticity */
            --light: #F8FAFC;
            --dark: #1E293B;
            --gray: #64748B;
            --success: #10B981;
            --shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
            --radius: 16px;
            --gradient-primary: linear-gradient(135deg, var(--primary), #1D4ED8);
            --gradient-secondary: linear-gradient(135deg, var(--secondary), #B91C1C);
            --gradient-accent: linear-gradient(135deg, var(--accent), #D97706);
            --gradient-mountain: linear-gradient(135deg, #10B981, #059669, #047857);
            --notice-compact-top: 14px;
            --text-xs: clamp(0.72rem, 0.22vw + 0.68rem, 0.82rem);
            --text-sm: clamp(0.8rem, 0.28vw + 0.74rem, 0.92rem);
            --text-md: clamp(0.9rem, 0.34vw + 0.82rem, 1rem);
            --text-lg: clamp(1rem, 0.46vw + 0.9rem, 1.12rem);
            --text-xl: clamp(1.12rem, 0.7vw + 0.96rem, 1.35rem);
            --text-2xl: clamp(1.35rem, 1vw + 1.12rem, 1.8rem);
            --text-3xl: clamp(1.7rem, 1.9vw + 1.2rem, 2.7rem);
            --text-4xl: clamp(2rem, 3vw + 1.35rem, 3.6rem);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', 'Noto Sans Devanagari', sans-serif;
        }
        
        body {
            background: linear-gradient(rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.98));
            color: var(--dark);
            min-height: 100vh;
            position: relative;
            overflow-x: hidden;
        }
        
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url(assets/that.webp);
            background-size: cover;
            background-position: center bottom;
            background-attachment: fixed;
            opacity: 0.25;
            z-index: -1;
            filter: brightness(1.1) contrast(1.1);
        }
        
        @media (pointer: coarse) {
            body::before {
                background-attachment: scroll;
            }
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Animation Classes - Reset state when not visible */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        .scale-in {
            opacity: 0;
            transform: scale(0.9);
            transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                        transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .scale-in.animated {
            opacity: 1;
            transform: scale(1);
        }
        
        .slide-in-left {
            opacity: 0;
            transform: translateX(-30px);
            transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .slide-in-left.animated {
            opacity: 1;
            transform: translateX(0);
        }
        
        .slide-in-right {
            opacity: 0;
            transform: translateX(30px);
            transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .slide-in-right.animated {
            opacity: 1;
            transform: translateX(0);
        }
        
        /* Header Styles */
        
        header {
            background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 50%, #eeeeee 100%);
            backdrop-filter: blur(20px);
            border-bottom: 2px solid rgba(59, 130, 246, 0.2);
            padding: 1.5rem 0;
            position: relative;
            top: 0;
            z-index: 100;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
            transform: translateY(0);
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                        background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                        box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        header.scrolled {
            transform: translateY(0);
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo-image {
            width: 90px;
            height: 90px;
            background: var(--gradient-mountain);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
            cursor: default !important;
            animation: logoFloat 6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
        }
        
        @keyframes logoFloat {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            25% { transform: translateY(-10px) rotate(2deg); }
            75% { transform: translateY(5px) rotate(-1deg); }
        }
        
        .logo-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .logo-text {
            cursor: pointer;
        }
        .logo-text .logo-name {
            font-size: var(--text-2xl);
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-weight: 800;
            line-height: 1.2;
            margin: 0;
        }
        
        .logo-text p {
            font-size: var(--text-sm);
            color: var(--gray);
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .logo-text p span.nepali {
            font-family: 'Noto Sans Devanagari';
            color: var(--secondary);
            font-weight: 600;
        }

        /* Hero Section */
        .hero {
            padding: 4.25rem 0 2.6rem;
            text-align: center;
            position: relative;
            cursor: default !important;
        }

        .hero h1 {
            font-size: var(--text-3xl);
            line-height: 1.18;
            margin-bottom: 1rem;
            color: var(--dark);
            font-weight: 800;
        }
        
        .hero h2 {
            font-size: var(--text-4xl);
            background: linear-gradient(135deg, var(--dark), var(--primary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 1.2rem;
            font-weight: 800;
            line-height: 1.2;
        }
        
        .hero p {
            font-size: var(--text-lg);
            color: var(--gray);
            max-width: 760px;
            margin: 0 auto 2.3rem;
            line-height: 1.6;
            font-weight: 400;
        }
        
        .highlight {
            color: var(--secondary);
            font-weight: 700;
            font-family: 'Noto Sans Devanagari';
            position: relative;
            display: inline-block;
        }
        
        .highlight::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--gradient-secondary);
            border-radius: 2px;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .hero:hover .highlight::after {
            transform: scaleX(1);
        }

        .notice-section {
            padding: 1.15rem 0 0.65rem;
        }

        .notice-card {
            background: linear-gradient(140deg, #fffdf5 0%, #ffffff 52%, #fff7df 100%);
            border: 1px solid #FDE68A;
            border-left: 4px solid var(--accent);
            border-radius: 18px;
            box-shadow: 0 16px 36px rgba(245, 158, 11, 0.16);
            padding: 1.05rem 1.2rem;
            display: grid;
            gap: 0.8rem;
            overflow: hidden;
            position: relative;
            will-change: transform, opacity;
            transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.32s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease, border-color 0.25s ease, background 0.25s ease;
        }

        .notice-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at top right, rgba(251, 191, 36, 0.18), transparent 42%);
            pointer-events: none;
        }

        .notice-card.is-compact {
            position: fixed;
            top: var(--notice-compact-top);
            left: 50%;
            transform: translateX(-50%) scale(0.985);
            width: min(94vw, 600px);
            z-index: 1100;
            border-left-width: 1px;
            border-color: rgba(251, 191, 36, 0.45);
            background: rgba(15, 23, 42, 0.86);
            box-shadow: 0 18px 40px rgba(15, 23, 42, 0.28);
            backdrop-filter: blur(18px);
            gap: 0.35rem;
            padding: 0.7rem 0.85rem;
            cursor: pointer;
        }

        .notice-card.is-compact::before {
            background: linear-gradient(120deg, rgba(59, 130, 246, 0.22), rgba(251, 191, 36, 0.16));
        }

        .notice-card.is-compact .notice-title,
        .notice-card.is-compact .notice-title-main,
        .notice-card.is-compact .notice-title-main .nepali,
        .notice-card.is-compact .notice-title-main i {
            color: #F8FAFC;
        }

        .notice-card.is-compact .notice-badge {
            display: none;
        }

        .notice-title,
        .notice-details {
            position: relative;
            z-index: 1;
        }

        .notice-details {
            display: grid;
            gap: 0.7rem;
            max-height: 420px;
            opacity: 1;
            overflow: hidden;
            transform: translateY(0);
            transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.24s ease, transform 0.28s ease, margin-top 0.28s ease;
        }

        .notice-card.is-collapsed .notice-details,
        .notice-card.is-compact .notice-details {
            max-height: 0;
            opacity: 0;
            transform: translateY(-10px);
            margin-top: -0.1rem;
            pointer-events: none;
        }

        .notice-title {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            margin-bottom: 0;
            color: #854D0E;
            font-size: var(--text-md);
            font-weight: 700;
        }

        .notice-title-main {
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .notice-title-main i {
            width: 34px;
            height: 34px;
            border-radius: 12px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.16), rgba(251, 191, 36, 0.28));
            color: #B45309;
            flex-shrink: 0;
        }

        .notice-card.is-compact .notice-title-main i {
            background: rgba(255, 255, 255, 0.14);
            color: #F8FAFC;
        }

        .notice-actions {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .notice-badge {
            background: rgba(245, 158, 11, 0.13);
            color: #92400E;
            border: 1px solid rgba(245, 158, 11, 0.35);
            border-radius: 999px;
            padding: 0.2rem 0.55rem;
            font-size: var(--text-xs);
            font-weight: 700;
            line-height: 1;
        }

        .notice-toggle {
            border: 1px solid rgba(245, 158, 11, 0.4);
            background: rgba(255, 255, 255, 0.7);
            color: #854D0E;
            border-radius: 999px;
            padding: 0.42rem 0.82rem;
            font-size: var(--text-xs);
            font-weight: 700;
            cursor: pointer;
            transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
        }

        .notice-card.is-compact .notice-toggle {
            border-color: rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.12);
            color: #F8FAFC;
        }

        .notice-toggle:hover {
            background: rgba(245, 158, 11, 0.18);
            transform: translateY(-1px);
        }

        .notice-card.is-compact .notice-toggle:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .notice-summary {
            display: none;
        }

        .notice-text {
            color: var(--dark);
            line-height: 1.6;
            font-size: var(--text-md);
        }

        .notice-list {
            display: grid;
            gap: 0.45rem;
            margin-top: 0.25rem;
            padding-left: 1.05rem;
        }

        .notice-list li {
            color: #334155;
            font-size: var(--text-sm);
            line-height: 1.55;
        }

        .notice-text .nepali,
        .notice-list .nepali {
            color: var(--dark);
            font-weight: 600;
            font-family: 'Noto Sans Devanagari';
        }
        .notice-card.is-compact .notice-text .nepali,
        .notice-card.is-compact .notice-list .nepali,
        .notice-card.is-compact .notice-list li {
            color: #E2E8F0;
        }
        
        @media (max-width: 768px) {
    .notice-card.is-compact {
        width: min(96vw, 520px);
        top: 8px;
        padding: 0.65rem 0.72rem;
    }

    header {
                padding: 14px 16px;
        background: #ffffff;
        backdrop-filter: none;
        position: relative;
        border-bottom: 1px solid rgba(59, 130, 246, 0.15);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

            .header-content {
                justify-content: flex-start;
            }

            .logo {
                width: 100%;
                flex-direction: row;
                align-items: center;
                justify-content: flex-start;
                gap: 12px;
                text-align: left;
                padding-right: 0;
            }
    
    .logo-image {
        width: 50px;
        height: 50px;
                flex-shrink: 0;
    }
    
    .logo-text .logo-name {
        font-size: clamp(0.95rem, 1.4vw + 0.72rem, 1.1rem);
        background: none;
        color: #09376a;
    }

            .logo-text p {
                font-size: clamp(0.68rem, 1vw + 0.5rem, 0.8rem);
                line-height: 1.35;
                flex-wrap: wrap;
            }
}

        /* Services Grid - Responsive */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 2.5rem;
            margin-bottom: 5rem;
        }
        
        @media (max-width: 1100px) {
            .services-grid {
                grid-template-columns: 1fr;
                max-width: 600px;
                margin-left: auto;
                margin-right: auto;
            }
        }
        
        @media (max-width: 600px) {
            .services-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }
        
        .service-card {
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.98));
            border-radius: var(--radius);
            padding: 3rem;
            box-shadow: var(--shadow);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid transparent;
            height: 100%;
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
            cursor: default !important;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .service-card:nth-child(2)::before {
            background: var(--gradient-secondary);
        }
        
        .service-card:hover::before {
            transform: scaleX(1);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
            border-color: var(--primary);
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-primary);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
            color: white;
            font-size: 2.2rem;
            box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: default !important;
        }
        
        .service-card:nth-child(2) .service-icon {
            background: var(--gradient-secondary);
            box-shadow: 0 10px 20px rgba(239, 68, 68, 0.3);
        }
        
        .service-card:hover .service-icon {
            transform: rotate(10deg) scale(1.1);
        }
        
        .service-card h3 {
            font-size: var(--text-2xl);
            color: var(--dark);
            margin-bottom: 1rem;
            font-weight: 800;
            cursor: default !important;
            position: relative;
            display: inline-block;
        }
        
        .service-card h3::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--gradient-primary);
            border-radius: 2px;
            transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .service-card:hover h3::after {
            width: 100%;
        }
        
        .service-card:nth-child(2) h3::after {
            background: var(--gradient-secondary);
        }
        
        .service-subtitle {
            color: var(--gray);
            font-size: var(--text-md);
            margin-bottom: 1.5rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: default !important;
        }
        
        .service-subtitle span {
            font-family: 'Noto Sans Devanagari';
            color: var(--secondary);
            font-weight: 600;
        }
        
        .service-features {
            margin-bottom: 2rem;
            flex-grow: 1;
            cursor: default !important;
        }

        .service-faq-list {
            display: grid;
            gap: 0.9rem;
            margin-top: 1.25rem;
        }
        
        .feature-list {
            list-style: none;
        }
        
        .feature-list li {
            color: var(--gray);
            margin-bottom: 0.8rem;
            line-height: 1.7;
            font-size: var(--text-lg);
            display: flex;
            align-items: flex-start;
            gap: 10px;
            opacity: 0.9;
            cursor: default !important;
            transform: translateX(0);
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .feature-list li:hover {
            transform: translateX(10px);
        }
        
        .feature-list li i {
            color: var(--accent);
            font-size: 1.2rem;
            margin-top: 2px;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: default !important;
        }
        
        .service-card:hover .feature-list li i {
            transform: scale(1.2);
        }
        
        .feature-list li span.nepali {
            font-family: 'Noto Sans Devanagari';
            font-weight: 600;
            color: var(--dark);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .service-card:hover .feature-list li span.nepali {
            color: var(--primary-dark);
        }
        
        /* Button Styles */
        
        .primary-btn {
            background: var(--gradient-primary);
            color: white;
            border: none;
            padding: 1.2rem 2.5rem;
            border-radius: var(--radius);
            font-size: var(--text-lg);
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            width: 100%;
            box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .primary-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .primary-btn:hover::before {
            left: 100%;
        }
        
        .primary-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(59, 130, 246, 0.4);
        }
        
        .secondary-btn {
            background: var(--gradient-secondary);
            color: white;
            border: none;
            padding: 1.2rem 2.5rem;
            border-radius: var(--radius);
            font-size: var(--text-lg);
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            width: 100%;
            box-shadow: 0 10px 20px rgba(239, 68, 68, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .secondary-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .secondary-btn:hover::before {
            left: 100%;
        }
        
        .secondary-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(239, 68, 68, 0.4);
        }
        
        /* Flight Form Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: none;
    z-index: 1000;
    animation: fadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    padding: 20px 0;
}

.modal-content {
    background: white;
    border-radius: var(--radius);
    padding: 3rem;
    max-width: 550px;
    width: 90%;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--primary);
    /* Position it in viewport */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    /* Make sure it fits on screen */
    max-height: 85vh;
    overflow-y: auto;
}

@keyframes modalSlideIn {
    from { 
        opacity: 0; 
        transform: translate(-50%, -40%) scale(0.95); 
    }
    to { 
        opacity: 1; 
        transform: translate(-50%, -50%) scale(1); 
    }
}

@media (max-width: 768px) {
    .modal-overlay {
        padding: 20px 10px;
    }
    
    .modal-content {
        width: 95%;
        padding: 2rem;
        position: fixed; /* Use fixed positioning on mobile */
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        margin: 0;
        max-height: 90vh;
    }
}

/* For very small screens */
@media (max-height: 600px) {
    .modal-content {
        position: absolute;
        top: 20px;
        transform: translate(-50%, 0);
        margin-bottom: 20px;
    }
}
        
        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid var(--light);
        }
        
        .modal-header h3 {
            font-size: 1.8rem;
            color: var(--dark);
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .close-modal {
            background: none;
            border: none;
            font-size: 2rem;
            color: var(--gray);
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .close-modal:hover {
            color: var(--secondary);
            background: var(--light);
        }
        
        .form-group {
            margin-bottom: 1.8rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.8rem;
            color: var(--dark);
            font-weight: 600;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .form-control {
            width: 100%;
            padding: 1.1rem 1.2rem;
            border: 2px solid #E2E8F0;
            border-radius: 12px;
            font-size: 1rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            background: #F8FAFC;
            font-weight: 500;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            background: white;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        }
        
        .form-note {
            font-size: 0.9rem;
            color: var(--gray);
            margin-top: 0.5rem;
            font-style: italic;
        }
        
        .autocomplete-container {
            position: relative;
            width: 100%;
        }
        
        .autocomplete-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            border: 1px solid #E2E8F0;
            border-radius: 12px;
            margin-top: 5px;
            max-height: 300px;
            overflow-y: auto;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            display: none;
            animation: fadeIn 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .autocomplete-item {
            padding: 15px 20px;
            cursor: pointer;
            border-bottom: 1px solid #F1F5F9;
            transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
        }
        
        .autocomplete-item:hover {
            background: #F8FAFC;
        }
        
        .autocomplete-item:last-child {
            border-bottom: none;
        }
        
        .airport-name {
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 5px;
            font-size: 1rem;
        }
        
        .airport-location {
            font-size: 0.9rem;
            color: var(--gray);
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .no-results {
            padding: 20px;
            text-align: center;
            color: var(--gray);
            font-style: italic;
        }
        
        .form-control.with-autocomplete {
            padding-right: 40px;
        }
        
        .search-icon {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gray);
            pointer-events: none;
        }
        
        /* FAQ Section - Repeating Animations */
        
        .faq-section {
            margin: 5rem 0;
            padding: 3rem 0;
            background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.98));
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        
        .faq-title {
            text-align: center;
            font-size: var(--text-3xl);
            color: var(--dark);
            margin-bottom: 3rem;
            font-weight: 800;
            position: relative;
        }
        
        .faq-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--gradient-primary);
            border-radius: 2px;
        }
        
        .faq-categories {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }
        
        .faq-category-btn {
            background: white;
            border: 2px solid #E2E8F0;
            padding: 1.2rem 2.5rem;
            border-radius: 50px;
            font-size: var(--text-md);
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--dark);
        }
        
        .faq-category-btn.active {
            background: var(--gradient-primary);
            color: white;
            border-color: var(--primary);
            box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
        }
        
        .faq-category-btn:hover:not(.active) {
            transform: translateY(-3px);
            border-color: var(--primary);
            box-shadow: 0 10px 20px rgba(59, 130, 246, 0.1);
        }
        
        .faq-content {
            display: none;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-content.active {
            display: block;
            animation: fadeIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        /* FAQ Item Animations - Reset when not visible */
        .faq-item {
            margin-bottom: 1rem;
            border: 2px solid #E2E8F0;
            border-radius: var(--radius);
            overflow: hidden;
            background: white;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            transform: translateY(30px) scale(0.95);
            transform-origin: center bottom;
        }
        
        .faq-item.animated {
            opacity: 1;
            transform: translateY(0) scale(1);
            transition: opacity 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), 
                        transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
                        border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                        box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .faq-item.active {
            border-color: var(--primary);
            box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
        }
        
        .faq-question {
            padding: 1.5rem 2rem;
            font-size: var(--text-lg);
            font-weight: 600;
            color: var(--dark);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: white;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .faq-question:hover {
            background: #F8FAFC;
            padding-left: 2.5rem;
        }
        
        .faq-question i {
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            color: var(--gray);
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
            color: var(--primary);
        }
        
        .faq-answer {
            padding: 0 2rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            background: linear-gradient(to bottom, #F8FAFC, #FFFFFF);
            border-top: 1px solid transparent;
        }

        .faq-answer .faq-list-ordered {
            margin: 0;
            padding-left: 1.25rem;
            color: var(--gray);
            display: grid;
            gap: 0.9rem;
        }

        .faq-answer .faq-list-ordered li {
            line-height: 1.8;
        }

        .faq-answer .faq-list-ordered strong {
            color: var(--dark);
        }
        
        .faq-item.active .faq-answer {
            padding: 2rem;
            max-height: 1000px;
            border-top-color: #E2E8F0;
        }
        
        .faq-answer p {
            color: var(--gray);
            line-height: 1.7;
            font-size: var(--text-lg);
            margin-bottom: 1rem;
            opacity: 0;
            transform: translateY(10px);
            transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                        transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .faq-item.active .faq-answer p {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.2s;
        }
        
        .faq-answer .nepali {
            font-family: 'Noto Sans Devanagari';
            font-weight: 600;
            color: var(--dark);
        }
        
        /* Footer */
        footer {
            background: linear-gradient(135deg, var(--dark), #0F172A);
            color: white;
            padding: 3rem 0;
            margin-top: 4rem;
            position: relative;
            overflow: hidden;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://images.unsplash.com/photo-1519681393784-d120267933ba?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=30');
            background-size: cover;
            opacity: 0.15;
            z-index: 0;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
            position: relative;
            z-index: 1;
        }
        
        .footer-logo h3 {
            font-size: var(--text-2xl);
            color: white;
            font-weight: 800;
            margin-bottom: 0.5rem;
        }
        
        .footer-logo p {
            color: rgba(255, 255, 255, 0.8);
            font-size: var(--text-sm);
        }
        
        .footer-contact {
            text-align: right;
        }
        
        .whatsapp-contact {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: white;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }
        
        .whatsapp-contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .whatsapp-contact:hover::before {
            left: 100%;
        }
        
        .whatsapp-contact:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
        }
        
        /* Notification */
        .notification {
            position: fixed;
            top: 30px;
            right: 30px;
            background: linear-gradient(135deg, var(--success), #059669);
            color: white;
            padding: 1.2rem 2rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            display: none;
            align-items: center;
            gap: 12px;
            z-index: 1001;
            animation: slideIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            min-width: 300px;
            border-left: 5px solid var(--accent);
        }
        
        @keyframes slideIn {
            from { transform: translateX(100%) scale(0.8); opacity: 0; }
            to { transform: translateX(0) scale(1); opacity: 1; }
        }

        @media (max-width: 500px) {
            .notification {
                left: 10px;
                right: 10px;
                min-width: 0;
                padding: 1rem;
            }
        }
        
        /* Mountain Range Decoration */
        .mountain-decoration {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 150px;
            background: linear-gradient(to top, rgba(16, 185, 129, 0.15), transparent);
            z-index: 0;
            pointer-events: none;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: row;
                gap: 0.75rem;
                text-align: left;
            }
            
            .logo {
                flex-direction: row;
                text-align: left;
            }
            .hero h1 {
                font-size: clamp(1.3rem, 4vw, 1.6rem);
                margin-bottom: 0.7rem;
            }

            .hero h2 {
                font-size: clamp(1.6rem, 5vw, 2rem);
            }
            
            .hero p {
                font-size: clamp(0.88rem, 2vw, 0.98rem);
                margin-bottom: 1.65rem;
            }
            
            .service-card {
                padding: 2rem;
            }

            .service-card h3 {
                font-size: clamp(1.25rem, 3.6vw, 1.55rem);
            }

            .service-subtitle,
            .feature-list li,
            .service-question {
                font-size: clamp(0.86rem, 1.8vw, 0.95rem);
            }
            
            .services-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-contact {
                text-align: center;
            }
            
            .modal-content {
                padding: 2rem;
            }
            
            .faq-title {
                font-size: clamp(1.45rem, 4vw, 1.8rem);
            }
            
            .faq-category-btn {
                padding: 1rem 2rem;
                font-size: clamp(0.82rem, 1.8vw, 0.95rem);
            }
            
            .faq-question {
                padding: 1.2rem 1.5rem;
                font-size: clamp(0.9rem, 2vw, 1rem);
            }
            
            .faq-item.active .faq-answer {
                padding: 1.5rem;
            }

            .notice-card {
                padding: 0.85rem 0.88rem;
                border-left-width: 3px;
                border-radius: 16px;
            }

            .notice-title {
                font-size: clamp(0.82rem, 1.8vw, 0.9rem);
            }

            .notice-badge {
                font-size: 0.68rem;
                padding: 0.2rem 0.45rem;
            }

            .notice-text {
                font-size: clamp(0.78rem, 1.8vw, 0.86rem);
                line-height: 1.5;
            }

            .notice-list {
                padding-left: 0.95rem;
                gap: 0.35rem;
            }

            .notice-list li {
                font-size: clamp(0.75rem, 1.6vw, 0.81rem);
                line-height: 1.45;
            }

            .notice-card.is-compact {
                width: min(96vw, 460px);
                top: 8px;
                padding: 0.55rem 0.62rem;
            }

            .notice-card.is-compact .notice-title {
                font-size: clamp(0.74rem, 1.6vw, 0.8rem);
            }

            .notice-card.is-compact .notice-toggle {
                font-size: clamp(0.62rem, 1.2vw, 0.7rem);
                padding: 0.28rem 0.55rem;
            }
        }

        @media (max-width: 500px) {
            .hero h1 {
                font-size: clamp(1.15rem, 5vw, 1.35rem);
            }

            .hero h2 {
                font-size: clamp(1.35rem, 6vw, 1.6rem);
                line-height: 1.16;
            }

            .hero p {
                font-size: clamp(0.82rem, 2.5vw, 0.9rem);
                line-height: 1.55;
                margin-bottom: 1.35rem;
            }

            .service-card h3 {
                font-size: clamp(1.2rem, 4vw, 1.4rem);
            }

            .service-subtitle,
            .feature-list li,
            .service-question {
                font-size: clamp(0.82rem, 2vw, 0.9rem);
            }

            .faq-title {
                font-size: clamp(1.3rem, 4.5vw, 1.6rem);
            }

            .faq-question {
                font-size: clamp(0.84rem, 2vw, 0.94rem);
            }
        }
        
        /* Floating Elements */
        .floating-icon {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: var(--gradient-mountain);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            box-shadow: var(--shadow);
            z-index: 9999;
            cursor: pointer;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0., 1);
            animation: float 9s cubic-bezier(0.4, 0, 0.4, 1) infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-10px) rotate(5deg); }
        }
        
        .floating-icon:hover {
            transform: scale(1.1) rotate(10deg);
            animation: none;
        }
        
        .language-badge {
            position: fixed;
            top: 30px;
            left: 30px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 50px;
            padding: 8px 20px;
            box-shadow: var(--shadow);
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.9rem;
            color: var(--primary);
            font-weight: 600;
            z-index: 50;
            border: 2px solid rgba(59, 130, 246, 0.2);
            animation: slideInLeft 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        
        @keyframes slideInLeft {
            from { transform: translateX(-100%) scale(0.8); opacity: 0; }
            to { transform: translateX(0) scale(1); opacity: 1; }
        }

                /* Flying Planes Animation */

    .flying-plane {
        position: fixed;
        z-index: -1;
        pointer-events: none;
        will-change: transform;
        transform: translateZ(0);
        contain: layout; 
        left: -100px;
        will-change: transform;       
        backface-visibility: hidden; 
    }
    
    @keyframes fly {
        0% {
            transform: translateX(-100px) translateY(0) rotate(0deg);
        }
        100% {
            transform: translateX(calc(100vw + 100px)) translateY(calc(50vh * var(--y-movement))) rotate(8deg);
        }
    }
  
        
        /* Progress Scroll Indicator */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 4px;
            background: var(--gradient-primary);
            z-index: 101;
            transition: width 0.1s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        /* Animated Mountain Background */
        .animated-mountains {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 200px;
            z-index: -1;
            opacity: 0.1;
        }
        
        .mountain {
            position: absolute;
            bottom: 0;
            background: linear-gradient(to top, var(--mountain), transparent);
            border-radius: 10px 10px 0 0;
            animation: mountainFloat 20s cubic-bezier(0.4, 0, 0.2, 1) infinite;
        }
        
        @keyframes mountainFloat {
            0%, 100% { transform: translateY(0) scale(1); }
            50% { transform: translateY(-20px) scale(1.02); }
        }
        
/* ===== SIMPLE WELCOME ANIMATION CSS (NO SVG) ===== */
.welcome-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: transparent;
    animation: fadeOutAnimation 1s ease-out 4.5s forwards;
    pointer-events: none;
}

@keyframes fadeOutAnimation {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

.animation-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Bigger Plane Animation */
.plane-wrapper {
    position: absolute;
    width: 250px;
    height: 250px;
    left: -300px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    transform-origin: center;
    animation: planeFly 5s cubic-bezier(0.42, 0, 0.58, 1) forwards;
}

.plane {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: 
        drop-shadow(0 0 25px rgba(59, 130, 246, 0.8))
        drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    transform-origin: center;
    animation: planePulse 2s ease-in-out infinite alternate;
}

@keyframes planePulse {
    0% {
        filter: 
            drop-shadow(0 0 20px rgba(59, 130, 246, 0.7))
            drop-shadow(0 8px 15px rgba(0, 0, 0, 0.25));
    }
    100% {
        filter: 
            drop-shadow(0 0 30px rgba(59, 130, 246, 0.9))
            drop-shadow(0 12px 20px rgba(0, 0, 0, 0.35));
    }
}

.plane-text {
    position: absolute;
    top: 85%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    font-weight: 800;
    color: white;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.6),
        0 0 25px rgba(59, 130, 246, 1);
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.95) 0%, 
        rgba(37, 99, 235, 0.95) 100%);
    padding: 8px 20px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Simple Trail Effects */
.trail {
    position: absolute;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(59, 130, 246, 0.4) 15%, 
        rgba(59, 130, 246, 0.9) 35%, 
        rgba(59, 130, 246, 0.4) 65%, 
        transparent 100%);
    border-radius: 10px 2px 2px 10px;
    transform-origin: left center;
    opacity: 0;
    box-shadow: 
        0 0 15px rgba(59, 130, 246, 0.8),
        0 0 30px rgba(59, 130, 246, 0.4);
    filter: blur(0.5px);
}

.trail-1 {
    top: 35%;
    animation: trail1 5s cubic-bezier(0.42, 0, 0.58, 1) forwards;
}

.trail-2 {
    top: 50%;
    animation: trail2 5s cubic-bezier(0.42, 0, 0.58, 1) forwards;
    animation-delay: 0.05s;
}

.trail-3 {
    top: 65%;
    animation: trail3 5s cubic-bezier(0.42, 0, 0.58, 1) forwards;
    animation-delay: 0.1s;
}

/* Smooth Plane Flight Path */
@keyframes planeFly {
    0% {
        left: -300px;
        top: 50%;
        transform: translateY(-50%) rotate(-20deg) scale(0.8);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
        transform: translateY(-50%) rotate(-10deg) scale(0.9);
    }
    20% {
        opacity: 1;
        transform: translateY(-50%) rotate(0deg) scale(1);
    }
    30% {
        left: 15%;
        top: 50%;
        transform: translateY(-50%) rotate(5deg) scale(1.05);
    }
    40% {
        transform: translateY(-50%) rotate(10deg) scale(1.1);
    }
    50% {
        left: 35%;
        top: 45%;
        transform: translateY(-50%) rotate(0deg) scale(1.15);
    }
    60% {
        left: 45%;
        top: 40%;
        transform: translateY(-50%) rotate(-15deg) scale(1.1);
    }
    70% {
        left: 40%;
        top: 30%;
        transform: translateY(-50%) rotate(-30deg) scale(1.05);
    }
    80% {
        left: 30%;
        top: 20%;
        transform: translateY(-50%) rotate(-45deg) scale(0.9);
        opacity: 0.7;
    }
    90% {
        left: 10%;
        top: 10%;
        transform: translateY(-50%) rotate(-55deg) scale(0.7);
        opacity: 0.3;
    }
    100% {
        left: -80px;
        top: 5%;
        transform: translateY(-50%) rotate(-60deg) scale(0.5);
        opacity: 0;
    }
}

/* Simple Trail Animations */
@keyframes trail1 {
    0% {
        left: -300px;
        top: calc(50% + 25px);
        width: 0;
        opacity: 0;
        transform: scaleX(0.5);
    }
    20% {
        opacity: 0.7;
        transform: scaleX(0.8);
    }
    40% {
        left: 10%;
        top: calc(50% - 15px);
        width: 30%;
        transform: scaleX(1);
    }
    60% {
        left: 25%;
        top: calc(45% - 10px);
        width: 40%;
        opacity: 0.9;
        transform: scaleX(1.1);
    }
    80% {
        left: 35%;
        top: calc(30% - 5px);
        width: 25%;
        transform: scaleX(0.9);
        opacity: 0.4;
    }
    100% {
        left: 40%;
        top: 20%;
        width: 0;
        opacity: 0;
        transform: scaleX(0.5);
    }
}

@keyframes trail2 {
    0% {
        left: -300px;
        top: 50%;
        width: 0;
        opacity: 0;
        transform: scaleX(0.6);
    }
    20% {
        opacity: 0.8;
        transform: scaleX(0.9);
    }
    40% {
        left: 10%;
        top: 50%;
        width: 30%;
        transform: scaleX(1);
    }
    60% {
        left: 25%;
        top: 45%;
        width: 45%;
        opacity: 1;
        transform: scaleX(1.2);
    }
    80% {
        left: 35%;
        top: 30%;
        width: 30%;
        transform: scaleX(0.95);
        opacity: 0.5;
    }
    100% {
        left: 45%;
        top: 25%;
        width: 0;
        opacity: 0;
        transform: scaleX(0.6);
    }
}

@keyframes trail3 {
    0% {
        left: -300px;
        top: calc(50% - 25px);
        width: 0;
        opacity: 0;
        transform: scaleX(0.5);
    }
    20% {
        opacity: 0.6;
        transform: scaleX(0.8);
    }
    40% {
        left: 10%;
        top: calc(50% + 15px);
        width: 25%;
        transform: scaleX(1);
    }
    60% {
        left: 25%;
        top: calc(45% + 10px);
        width: 35%;
        opacity: 0.8;
        transform: scaleX(1.1);
    }
    80% {
        left: 35%;
        top: calc(30% + 5px);
        width: 20%;
        transform: scaleX(0.9);
        opacity: 0.3;
    }
    100% {
        left: 50%;
        top: 30%;
        width: 0;
        opacity: 0;
        transform: scaleX(0.5);
    }
}

/* Welcome Text (after plane flies) */
.welcome-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 5;
    opacity: 0;
    animation: fadeInText 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 3s;
}

.welcome-logo {
    width: 180px;
    height: 180px;
    margin: 0 auto 25px;
    opacity: 0;
    transform: scale(0.3) rotate(-10deg);
    animation: logoLand 1s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
    animation-delay: 3.3s;
    position: relative;
}

@keyframes logoLand {
    0% {
        opacity: 0;
        transform: scale(0.3) rotate(-10deg) translateY(50px);
    }
    60% {
        transform: scale(1.1) rotate(5deg) translateY(-10px);
    }
    80% {
        transform: scale(0.95) rotate(-2deg) translateY(5px);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg) translateY(0);
    }
}

.welcome-logo img {
    width: 100%;
    height: auto;
    display: block;
    filter: 
        drop-shadow(0 0 25px rgba(59, 130, 246, 0.8))
        drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    animation: logoGlow 2s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    from {
        filter: 
            drop-shadow(0 0 20px rgba(59, 130, 246, 0.6))
            drop-shadow(0 5px 15px rgba(0, 0, 0, 0.15));
    }
    to {
        filter: 
            drop-shadow(0 0 30px rgba(59, 130, 246, 1))
            drop-shadow(0 15px 25px rgba(0, 0, 0, 0.25));
    }
}

.welcome-text h1 {
    color: var(--dark);
    font-size: 2.8em;
    margin-bottom: 15px;
    text-shadow: 
        0 2px 10px rgba(59, 130, 246, 0.4),
        0 5px 20px rgba(0, 0, 0, 0.1);
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    animation: textPulse 2s ease-in-out infinite alternate;
}

.welcome-text p {
    color: var(--dark);
    font-size: 1.3em;
    font-weight: 600;
    opacity: 0.9;
    animation: fadeInUp 0.5s ease-out 0.2s both;
}

@keyframes fadeInText {
    to {
        opacity: 1;
    }
}

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

/* Simple Curved Line Effect (replaces SVG) */
.curved-line {
    position: absolute;
    width: 200px;
    height: 150px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    opacity: 0;
    animation: showLine 1.5s ease-out 3.5s forwards;
}

.curved-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-top: 2px solid rgba(59, 130, 246, 0.7);
    border-right: 2px solid rgba(59, 130, 246, 0.5);
    border-radius: 50% 0 0 0;
    transform: rotate(45deg);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
}

.curved-line::after {
    content: '';
    position: absolute;
    top: 30%;
    left: 30%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.6) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(5px);
    animation: sparkle 1s ease-in-out infinite alternate;
    animation-delay: 4s;
}

@keyframes showLine {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes sparkle {
    0% {
        opacity: 0.3;
        transform: scale(0.8);
    }
    100% {
        opacity: 0.8;
        transform: scale(1.2);
    }
}

/* Main website content - initially hidden */
.website-content {
    opacity: 0;
    animation: fadeInContent 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 5s;
}

@keyframes fadeInContent {
    from {
        opacity: 0;
        transform: scale(0.98);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
/* ===== END WELCOME ANIMATION CSS ===== */

/* New features */
.email-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
}

.email-link:hover {
    background: rgba(234, 67, 53, 0.1);
    color:burlywood;
    transform: translateY(-2px);
}


/* Statistics */

        .stats {
            display: grid;
            width: 100%;
            min-width: 100%;
            padding: 20px;
        }
        
        /* Initial state - hidden and scaled down */
        .stat-item {
            background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
            backdrop-filter: blur(10px);
            text-align: center;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            opacity: 0;
            transform: translateY(50px) scale(0.9);
        }

        /* Visible state when scrolled to */
        .stat-item.visible {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        /* Stagger the animations */
        .stat-item:nth-child(1).visible { transition-delay: 0.1s; }
        .stat-item:nth-child(2).visible { transition-delay: 0.2s; }
        .stat-item:nth-child(3).visible { transition-delay: 0.3s; }
        .stat-item:nth-child(4).visible { transition-delay: 0.4s; }

        .stat-item:hover {
            transform: translateY(-10px) scale(1.05);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
        }

        .stat-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #00c9ff, #92fe9d);
            transform: scaleX(0);
            transition: transform 0.6s ease 0.3s;
        }

        .stat-item.visible::before {
            transform: scaleX(1);
        }

        .icon-container {
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            position: relative;
            transform: scale(0);
            transition: transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.5s;
            margin: 0 auto;
        }

        .stat-item.visible .icon-container {
            transform: scale(1);
        }

        .icon-container i {
            color: #00c9ff;
        }

        .stat-number {
            font-weight: 800;
            background: linear-gradient(to right, #00c9ff, #92fe9d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 5px 15px rgba(0, 201, 255, 0.3);
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.8s ease 0.6s;
            margin-bottom: 5px;
        }

        .stat-item.visible .stat-number {
            opacity: 1;
            transform: translateY(0);
        }

        .stat-label {
            color: #fff;
            opacity: 0.9;
            font-weight: 500;
            letter-spacing: 0.5px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.8s ease 0.8s;
            line-height: 1.3;
        }

        .stat-item.visible .stat-label {
            opacity: 1;
            transform: translateY(0);
        }

        /* Specific icon animations - only start when visible */
        .globe-icon {
            animation: rotate 20s linear infinite;
            animation-play-state: paused;
        }

        .stat-item.visible .globe-icon {
            animation-play-state: running;
        }

        .project-icon {
            animation: pulse 2s ease-in-out infinite;
            animation-play-state: paused;
        }

        .stat-item.visible .project-icon {
            animation-play-state: running;
        }

        .experience-icon {
            position: relative;
        }

        .experience-icon::after {
            content: '✦';
            position: absolute;
            color: #92fe9d;
            animation: float 3s ease-in-out infinite;
            animation-play-state: paused;
        }

        .stat-item.visible .experience-icon::after {
            animation-play-state: running;
        }

        .satisfaction-icon {
            animation: bounce 1.5s ease-in-out infinite;
            animation-play-state: paused;
        }

        .stat-item.visible .satisfaction-icon {
            animation-play-state: running;
        }

        /* Animations */
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) translateX(0); opacity: 1; }
            33% { transform: translateY(-20px) translateX(10px); opacity: 0.7; }
            66% { transform: translateY(10px) translateX(-10px); opacity: 0.7; }
        }

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

        /* ========== MOBILE (Phones) - SUPER COMPACT ========== */
        @media (max-width: 767px) {
            .stats {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
                padding: 15px;
            }
            
            .stat-item {
                border-radius: 12px;
                padding: 20px 12px;
                min-height: 140px;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
            }
            
            .icon-container {
                width: 50px;
                height: 50px;
                margin-bottom: 12px;
            }
            
            .icon-container i {
                font-size: 22px;
            }
            
            .stat-number {
                font-size: 22px;
                margin-bottom: 3px;
            }
            
            .stat-label {
                font-size: 12px;
                letter-spacing: 0.2px;
            }
            
            .stat-item::before {
                height: 3px;
            }
            
            .experience-icon::after {
                font-size: 10px;
            }
            
            /* Smaller animations for mobile */
            @keyframes float {
                0%, 100% { transform: translateY(0) translateX(0); opacity: 1; }
                33% { transform: translateY(-10px) translateX(5px); opacity: 0.7; }
                66% { transform: translateY(5px) translateX(-5px); opacity: 0.7; }
            }
            
            @keyframes bounce {
                0%, 100% { transform: translateY(0); }
                50% { transform: translateY(-5px); }
            }
            
            .stat-item:hover {
                transform: translateY(-5px) scale(1.03);
            }
        }

        /* ========== EXTRA SMALL PHONES ========== */
        @media (max-width: 360px) {
            .stats {
                gap: 10px;
                padding: 12px;
            }
            
            .stat-item {
                padding: 16px 10px;
                min-height: 130px;
                border-radius: 10px;
            }
            
            .icon-container {
                width: 45px;
                height: 45px;
                margin-bottom: 10px;
            }
            
            .icon-container i {
                font-size: 20px;
            }
            
            .stat-number {
                font-size: 20px;
            }
            
            .stat-label {
                font-size: 11px;
            }
            
            .experience-icon::after {
                font-size: 8px;
            }
        }

        /* ========== TABLET ========== */
        @media (min-width: 768px) and (max-width: 1023px) {
            .stats {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
                padding: 25px;
            }
            
            .stat-item {
                border-radius: 16px;
                padding: 30px 20px;
                min-height: 200px;
            }
            
            .icon-container {
                width: 80px;
                height: 80px;
                margin-bottom: 20px;
            }
            
            .icon-container i {
                font-size: 32px;
            }
            
            .stat-number {
                font-size: 36px;
                margin-bottom: 8px;
            }
            
            .stat-label {
                font-size: 16px;
            }
            
            .stat-item::before {
                height: 4px;
            }
            
            .experience-icon::after {
                font-size: 14px;
            }
        }

        /* ========== DESKTOP ========== */
        @media (min-width: 1024px) {
            .stats {
                grid-template-columns: repeat(4, 1fr);
                gap: 25px;
                padding: 30px;
            }
            
            .stat-item {
                border-radius: 20px;
                padding: 40px 30px;
                min-height: 250px;
            }
            
            .icon-container {
                width: 90px;
                height: 90px;
                margin-bottom: 25px;
            }
            
            .icon-container i {
                font-size: 40px;
            }
            
            .stat-number {
                font-size: clamp(2rem, 2vw + 1.2rem, 2.8rem);
                margin-bottom: 10px;
            }
            
            .stat-label {
                font-size: var(--text-lg);
            }
            
            .stat-item::before {
                height: 4px;
            }
            
            .experience-icon::after {
                font-size: 16px;
            }
        }

        /* Hide scroll indicator for real website */
        .scroll-indicator {
            display: none !important;
        }

        .marquee-container {
            width: 100%;
            overflow: hidden;
            padding: 25px 0;
        }
        
        .marquee-track {
            display: flex;
            width: max-content;
            animation: marquee 30s linear infinite;
        }
        
        .marquee-container:hover .marquee-track {
            animation-play-state: paused;
        }
        
        .country-item {
            display: flex;
            align-items: center;
            margin: 0 15px;
            padding: 18px 28px;
            border-radius: 12px;
            white-space: nowrap;
            min-width: 200px;
            justify-content: center;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.08);
            cursor: default;
            background: linear-gradient(135deg, #2b5876 0%, #4e4376 80%);


    }
        
        .country-flag {
            margin-right: 12px;
            font-size: var(--text-xl);
        }
        
        .country-name {
            font-size: var(--text-lg);
            font-weight: 600;
            color: #f0f0f0;
        }
        
        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        @media (max-width: 768px) {
            .country-item {
                padding: 14px 20px;
                min-width: 170px;
                margin: 0 10px;
            }
            
            .country-flag { font-size: 1.5rem; }
            .country-name { font-size: 1.1rem; }
        }
        
        @media (max-width: 480px) {
            .country-item {
                padding: 12px 16px;
                min-width: 150px;
                margin: 0 8px;
            }
            .country-name { font-size: 1rem; }
        }

        /* Calculator */
        .widget-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.floating-btn {
    height: 4rem;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: var(--text-xl);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
    transition: all 0.3s ease;
    gap: 0;
    padding: 0;
    width: auto;
    padding: 0 1rem;
    border-radius: 2rem;
    justify-content: space-between;
}

.btn-text {
        display: inline;
    font-size: var(--text-sm);
        margin-left: 0.5rem;
        color: #f0f8ff;
    }

@media (min-width: 768px) {
    .floating-btn {
        width: auto;
        min-width: 12rem;
        height: 4.5rem;
        border-radius: 2.25rem;
        padding: 0 1.5rem;
        gap: 0.625rem;
        font-size: 1.75rem;
    }
    
    .btn-text {
        display: inline;
        font-size: var(--text-md);
        font-weight: 500;
    }
}

@media (min-width: 1024px) {
    .floating-btn {
        min-width: 14rem;
        height: 5rem;
        font-size: 2rem;
    }
    
    .btn-text {
        font-size: var(--text-lg);
        color: #ecf9ff;
    }
}
        /* Calculator Popup */
        .calculator-popup {
            position: relative;
            bottom: 70px;
            right: 0;
            width: 320px;
            background: #FFF5EE;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            display: none;
            overflow: hidden;
        }

        .calculator-popup.show {
            display: block;
            animation: popupShow 0.3s ease;
        }

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

        /* Popup Header */
        .popup-header {
            background: #1a1a2e;
            padding: 20px;
            text-align: center;
        }

        .popup-header h3 {
            font-size: var(--text-xl);
            margin-bottom: 5px;
            color: #e6e6fa;

        }

        /* Tabs */
        .tabs {
            display: flex;
            background: #f8f9fa;
        }

        .tab {
            flex: 1;
            padding: 15px;
            background: #FFF4E6;
            border: none;
            font-size: var(--text-sm);
            font-weight: 600;
            color: #5A3921;
            cursor: pointer;
            transition: all 0.3s;
            text-align: center;
        }

        .tab.active {
            color: #7B3F00;
            background: #F5D6C6;
            border-bottom: 3px solid #D4A76A;
        }

        /* Tab Content */
        .tab-content {
            padding: 25px;
            display: none;
        }

        .tab-content.active {
            display: block;
        }

        /* Input Styles */
        .input-group {
            margin-bottom: 20px;
        }

        .input-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #444;
            font-size: var(--text-sm);
        }

        .input-group input {
            width: 100%;
            padding: 14px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: var(--text-md);
            transition: border-color 0.3s;
        }

        .input-group input:focus {
            border-color: #3498db;
            outline: none;
        }

        /* Calculate Button */
        .calc-btn {
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, #059669 0%, #10B981 100%);
            color: white;
            border: none;
            border-radius: 14px;
            font-size: var(--text-md);
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 10px;
        }

        .calc-btn:hover {
            background: linear-gradient(135deg, #047857 0%, #0DA271 100%);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(39, 174, 96, 0.2);
        }

        /* Results */
        .results {
            background: #FEFCE8;
            border-radius: 16px;
            padding: 20px;
            margin-top: 25px;
            display: none;
            border: 1px solid #C4B5FD;
        }

        .results.show {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .result-title {
            font-size: var(--text-2xl);
            font-weight: 700;
            color: #854D0E;
            border-bottom: 3px solid;
            border-image: linear-gradient(90deg, #FBBF24 30%, transparent 70%) 1;
            margin-bottom: 15px;
            text-align: center;
        }

        .result-amount {
            font-size: var(--text-xl);
            font-weight: 800;
            margin: 15px 0;
            text-align: center; 
            color: #CA8A04;
            text-shadow: 0 0 15px rgba(124, 58, 237, 0.3);
            border: 1px solid #86EFAC;
        }
        
        /* Close button */
        .close-popup {
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(255,255,255,0.1);
            border: none;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .widget-container {
                top: auto;
                right: 14px;
                bottom: 18px;
                z-index: 1105;
            }

            .floating-btn {
                width: 60px;
                height: 60px;
                min-width: 60px;
                padding: 0;
                justify-content: center;
                border-radius: 50%;
                box-shadow: 0 12px 28px rgba(52, 152, 219, 0.3);
            }

            .btn-text {
                display: none;
            }
            
            .calculator-popup {
                position: absolute;
                bottom: 74px;
                right: 0;
                width: min(320px, calc(100vw - 28px));
                max-height: min(70vh, 520px);
                overflow-y: auto;
                right: 0;
            }
        }

        @media (max-width: 500px) {
            .widget-container {
                bottom: 14px;
                right: 10px;
            }
            
            .calculator-popup {
                width: min(300px, calc(100vw - 20px));
                right: 0;
            }
            
            .floating-btn {
                width: 56px;
                height: 56px;
                min-width: 56px;
                font-size: 22px;
            }
            
            .tab-content {
                padding: 20px;
            }
        }

        .service-question {
            font-size: var(--text-lg);
            font-weight: 700;
            color: #00853E;
            margin-bottom: 1.5rem;
            font-family: 'Noto Sans Devanagari';
            transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .hint{
            color: #2C3E50;
        }

    