/* custom glow & scroll animations */
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-8px); }
            100% { transform: translateY(0px); }
        }
        .float-slow {
            animation: float 5s ease-in-out infinite;
        }
        .glow-on-hover {
            transition: box-shadow 0.3s, transform 0.2s;
        }
        .glow-on-hover:hover {
            box-shadow: 0 0 18px rgba(16, 185, 129, 0.5);
            transform: scale(1.02);
        }
        /* fade-up scroll animation (initial hidden) */
        .fade-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s cubic-bezier(0.2, 0.9, 0.3, 1), transform 0.8s cubic-bezier(0.2, 0.9, 0.3, 1);
        }
        .fade-up.show {
            opacity: 1;
            transform: translateY(0);
        }
        /* mobile menu smooth */
        #mobile-menu {
            transition: max-height 0.3s ease-out, opacity 0.2s;
            max-height: 0;
            opacity: 0;
            overflow: hidden;
        }
        #mobile-menu.open {
            max-height: 400px; /* enough for links */
            opacity: 1;
        }
        /* custom neon line */
        .neon-underline {
            position: relative;
        }
        .neon-underline::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #10b981, #22d3ee);
            border-radius: 2px;
        }


         * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }

        body {
            background: #0a0c0f;
            color: #fff;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Import Inter font */
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #1a1e24;
        }
        ::-webkit-scrollbar-thumb {
            background: #10b981;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #059669;
        }

        /* Animations */
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .fade-up {
            animation: fadeUp 0.8s ease forwards;
        }

        .float-slow {
            animation: float 6s ease-in-out infinite;
        }

        .glow-on-hover {
            transition: all 0.3s ease;
        }
        .glow-on-hover:hover {
            box-shadow: 0 0 25px rgba(16, 185, 129, 0.3);
            border-color: #10b981;
        }

        /* Utility classes */
        .max-w-7xl {
            max-width: 1280px;
            margin-left: auto;
            margin-right: auto;
        }

        .text-emerald-400 { color: #10b981; }
        .text-emerald-300 { color: #6ee7b7; }
        .text-cyan-400 { color: #22d3ee; }
        .text-gray-400 { color: #9ca3af; }
        .text-gray-500 { color: #6b7280; }
        .text-gray-600 { color: #4b5563; }
        .bg-emerald-500 { background: #10b981; }
        .bg-emerald-600 { background: #059669; }
        .bg-gray-900 { background: #111827; }
        .bg-gray-800 { background: #1f2937; }
        .border-emerald-500 { border-color: #10b981; }
        .border-gray-800 { border-color: #1f2937; }
        .border-gray-700 { border-color: #374151; }

        .neon-underline {
            position: relative;
        }
        .neon-underline::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 60px;
            height: 3px;
            background: #10b981;
            box-shadow: 0 0 15px #10b981;
        }

        /* Navbar */
        .navbar {
            background: rgba(10, 12, 15, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #1f2937;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 0.8rem 2rem;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1280px;
            margin: 0 auto;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #10b981, #22d3ee);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -0.5px;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a {
            color: #d1d5db;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s;
        }
        .nav-links a:hover {
            color: #10b981;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
        }

        /* Responsive Nav */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background: #0f1217;
                flex-direction: column;
                padding: 2rem;
                gap: 1.5rem;
                border-bottom: 1px solid #1f2937;
                z-index: 999;
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
        }

        /* Sections */
        section {
            padding: 5rem 1.5rem;
        }

        /* Cards */
        .card {
            background: rgba(17, 24, 39, 0.6);
            backdrop-filter: blur(10px);
            border: 1px solid #1f2937;
            border-radius: 1.5rem;
            padding: 1.8rem;
            transition: all 0.3s;
        }
        .card:hover {
            border-color: #10b981;
            box-shadow: 0 10px 30px -10px rgba(16, 185, 129, 0.2);
            transform: translateY(-5px);
        }

        /* Packages grid */
        .packages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        /* Responsive tables */
        .responsive-table {
            overflow-x: auto;
            margin: 1.5rem 0;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            min-width: 600px;
        }

        th, td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid #1f2937;
        }

        th {
            color: #10b981;
            font-weight: 600;
        }

        /* FAQ Accordion */
        .faq-item {
            background: rgba(17, 24, 39, 0.6);
            backdrop-filter: blur(10px);
            border: 1px solid #1f2937;
            border-radius: 1rem;
            margin-bottom: 1rem;
            overflow: hidden;
            transition: all 0.3s;
        }

        .faq-question {
            width: 100%;
            padding: 1.5rem;
            text-align: left;
            background: none;
            border: none;
            color: white;
            font-size: 1.1rem;
            font-weight: 600;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: background 0.3s;
        }
        .faq-question:hover {
            background: rgba(31, 41, 55, 0.5);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out;
            padding: 0 1.5rem;
            color: #9ca3af;
        }

        .faq-answer.show {
            max-height: 300px;
            padding: 0 1.5rem 1.5rem;
        }

        .faq-chevron {
            transition: transform 0.3s;
        }
        .faq-chevron.rotated {
            transform: rotate(180deg);
        }

        /* Buttons */
        .btn-primary {
            background: #10b981;
            color: #111827;
            font-weight: 600;
            padding: 0.8rem 2rem;
            border-radius: 9999px;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
        }
        .btn-primary:hover {
            background: #059669;
            box-shadow: 0 10px 25px -5px rgba(16, 185, 129, 0.4);
            transform: scale(1.05);
        }

        .btn-outline {
            background: transparent;
            border: 1px solid #374151;
            color: white;
            font-weight: 600;
            padding: 0.8rem 2rem;
            border-radius: 9999px;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
        }
        .btn-outline:hover {
            border-color: #10b981;
            color: #10b981;
        }

        /* Footer */
        footer {
            background: #0a0c0f;
            border-top: 1px solid #1f2937;
            padding: 3rem 1.5rem 1.5rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            max-width: 1280px;
            margin: 0 auto;
        }

        /* Responsive utilities */
        @media (max-width: 640px) {
            section { padding: 3rem 1rem; }
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
        }
        
        .fixed-marquee {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: linear-gradient(90deg, #10b981, #059669);
        color: black;
        padding: 12px 0;
        z-index: 9999;
        border-top: 2px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 -5px 20px rgba(16, 185, 129, 0.3);
        overflow: hidden;
        white-space: nowrap;
    }

    .marquee-content {
        display: inline-block;
        animation: marquee 30s linear infinite;
        font-weight: 600;
        font-size: 1rem;
    }

    .marquee-content span {
        margin-right: 40px;
    }

    .marquee-content i {
        margin: 0 10px;
        color: #000;
    }

    @keyframes marquee {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }

    /* Pause animation on hover */
    .fixed-marquee:hover .marquee-content {
        animation-play-state: paused;
    }

    /* Responsive font size */
    @media (max-width: 768px) {
        .marquee-content {
            font-size: 0.85rem;
        }
        body {
            padding-bottom: 55px;
        }
    }

    /* Add padding to body to prevent content hiding */
    body {
        padding-bottom: 60px;
    }
    
    .popup-overlay{
        position: fixed;
        top:0;
        left:0;
        width:100%;
        height:100%;
        background: rgba(0,0,0,0.7);
        display:flex;
        align-items:center;
        justify-content:center;
        z-index:9999;
    }
    
    .popup-box{
        background:#059669;
        color:white;
        padding:30px;
        border-radius:10px;
        width:500px;
        max-width:90%;
        position:relative;
        box-shadow:0 0 20px rgba(0,0,0,0.5);
    }
    
    .popup-close{
        position:absolute;
        top:10px;
        right:15px;
        border:none;
        background:none;
        color:white;
        font-size:20px;
        cursor:pointer;
    }