  @import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
  :root {
            --primary-red: #E31E24;
            --primary-yellow: #FFE609;
            --deep-black: #0A0A0A;
            --charcoal: #2A2A2A;
            --off-white: #FAFAFA;
            --pure-white: #FFFFFF;
            --light-gray: #F5F5F5;
            --border-gray: #E0E0E0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--pure-white);
            color: var(--deep-black);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            z-index: 1000;
            padding: 1.25rem 5%;
            border-bottom: 1px solid var(--border-gray);
            transition: all 0.3s ease;
        }

        nav.scrolled {
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .logo-img {
            width: 50px;
            height: 50px;
            object-fit: contain;
        }

        .logo-text {
            font-family: 'Bebas Neue', cursive;
            font-size: 1.5rem;
            color: var(--deep-black);
            letter-spacing: 1px;
        }

        .nav-links {
            display: flex;
            gap: 3rem;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--charcoal);
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--primary-red);
        }

        .nav-cta {
             background: #e31e24;
            color: white !important;
            padding: 0.7rem 1.75rem;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            font-size: 0.9rem;
        }

        .nav-cta:hover {
            background: var(--primary-red);
            transform: translateY(-2px);
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            z-index: 1001;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: var(--deep-black);
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 280px;
            height: 100vh;
            background: white;
            box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
            z-index: 999;
            transition: right 0.4s ease;
            padding: 100px 2rem 2rem;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu ul {
            list-style: none;
        }

        .mobile-menu li {
            margin-bottom: 2rem;
        }

        .mobile-menu a {
            text-decoration: none;
            color: var(--deep-black);
            font-weight: 600;
            font-size: 1.1rem;
            transition: color 0.3s ease;
        }

        .mobile-menu a:hover {
            color: var(--primary-red);
        }

        .mobile-menu .nav-cta {
            display: block;
            width: 100%;
            text-align: center;
            margin-top: 2rem;
        }

        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.5);
            z-index: 998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Hero Section - Keeping it good as user mentioned */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 140px 5% 100px;            
            position: relative;
            background-position: bottom;
            background-size: 100%;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 120px;
            background: linear-gradient(to bottom, transparent, var(--pure-white));
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            gap: 5rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-content h1 {
            font-family: 'Bebas Neue', cursive;
            font-size: 5rem;
            font-weight: 400;
            line-height: 1;
            margin-bottom: 1.5rem;
            color: var(--deep-black);
            letter-spacing: 1px;
        }

        .hero-content h1 .highlight {
            color: var(--primary-red);
        }

        .tagline {
            display: inline-block;
            background: var(--primary-yellow);
            color: var(--deep-black);
            padding: 0.5rem 1.25rem;
            border-radius: 6px;
            font-weight: 700;
            font-size: 0.85rem;
            margin-bottom: 2rem;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .hero-content p {
            font-size: 1.1rem;
            color: var(--charcoal);
            margin-bottom: 2.5rem;
            max-width: 520px;
            line-height: 1.8;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
        }

        .btn-primary {
            background: var(--primary-red);
            color: white;
            padding: 1rem 2.25rem;
            border-radius: 8px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            font-size: 1rem;
        }

        .btn-primary:hover {
            background: #C01A1F;
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(227, 30, 36, 0.25);
        }

        .btn-secondary {
            background: white;
            color: var(--deep-black);
            padding: 1rem 2.25rem;
            border: 2px solid var(--deep-black);
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            font-size: 1rem;
        }

        .btn-secondary:hover {
            background: var(--deep-black);
            color: white;
        }

        .hero-image-wrapper {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-logo {
            width: 100%;
            max-width: 450px;
            height: auto;
            filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.12));
            animation: rotateFloat 20s ease-in-out infinite;
        }

        @keyframes rotateFloat {
            0%, 100% {
                transform: rotate(0deg) translateY(0px);
            }
            25% {
                transform: rotate(5deg) translateY(-10px);
            }
            50% {
                transform: rotate(0deg) translateY(-15px);
            }
            75% {
                transform: rotate(-5deg) translateY(-10px);
            }
        }
 /* Hero Image */
        .hero-image {
            position: relative;
            animation: fadeIn 1s ease-out 0.8s both;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .hero-logo-circle {
            width: 100%;
            max-width: 500px;
            height: auto;
            margin: 0 auto;
            display: block;
            animation: rotate 30s linear infinite;
            filter: drop-shadow(0 20px 40px rgba(227, 30, 36, 0.2));
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        /* Stats Section - Cleaner design */
        .stats-section {
            padding: 30px 5%;
            background: var(--deep-black);
            color: white;
        }

        .stats-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
        }

        .stat-item {
            text-align: left;
            padding: 2rem 1rem;
            border-right: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 20px;
        }

        .stat-item:last-child {
            border-right: none;
        }

        .stat-number {
            font-family: 'Bebas Neue', cursive;
            font-size: 3.5rem;
            color: var(--primary-yellow);
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
        }

        /* Features Section - Card Grid */
        .features-section {
            padding: 120px 5%;
            background: var(--pure-white);
        }

        .section-header {
            max-width: 700px;
            margin: 0 auto 4rem;
            text-align: center;
        }

        .section-title {
            font-family: 'Bebas Neue', cursive;
            font-size: 3.5rem;
            color: var(--deep-black);
            margin-bottom: 1rem;
            letter-spacing: 1px;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--charcoal);
            line-height: 1.7;
        }

        .features-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .feature-card {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            border: 1px solid var(--border-gray);
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
            border-color: var(--primary-red);
        }

        .feature-icon {
            font-size: 2.5rem;
        }

        .feature-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: var(--deep-black);
        }

        .feature-card p {
            color: var(--charcoal);
            line-height: 1.7;
            font-size: 0.95rem;
        }

        /* Millets Section - Two Column Layout */
        .millets-section {
            padding: 120px 5%;
            background: var(--light-gray);
        }

        .millets-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .millet-category {
            margin-bottom: 5rem;
        }

        .category-header {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 2.5rem;
        }

        .category-badge {
            background: var(--primary-red);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 6px;
            font-family: 'Bebas Neue', cursive;
            font-size: 1.5rem;
            letter-spacing: 1px;
        }

        .category-line {
            flex: 1;
            height: 2px;
            background: var(--border-gray);
        }

        .millet-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .millet-card {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            border: 1px solid var(--border-gray);
            transition: all 0.3s ease;
        }

        .millet-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
        }

        .millet-name {
            font-family: 'Bebas Neue', cursive;
            font-size: 1.6rem;
            color: var(--deep-black);
            margin-bottom: 0.25rem;
            letter-spacing: 0.5px;
        }

        .millet-hindi {
            font-size: 0.85rem;
            color: var(--primary-red);
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .millet-scientific {
            font-size: 0.8rem;
            color: #888;
            font-style: italic;
            margin-bottom: 1rem;
        }

        .millet-description {
            font-size: 0.9rem;
            color: var(--charcoal);
            line-height: 1.6;
        }

        /* Benefits Table - Modern Card Design */
        .benefits-section {
            max-width: 900px;
            margin: 5rem auto 0;
            background: var(--deep-black);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .benefits-header {
            background: var(--primary-yellow);
            padding: 2rem;
            text-align: center;
        }

        .benefits-header h3 {
            font-family: 'Bebas Neue', cursive;
            font-size: 2rem;
            color: var(--deep-black);
            letter-spacing: 1px;
        }

        .benefits-grid {
            padding: 2rem;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        .benefit-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            background: rgba(255, 255, 255, 0.05);
            padding: 1.25rem;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .benefit-millet {
            font-family: 'Bebas Neue', cursive;
            font-size: 1.3rem;
            color: var(--primary-yellow);
            min-width: 100px;
        }

        .benefit-arrow {
            color: var(--primary-red);
            font-weight: 700;
        }

        .benefit-value {
            color: white;
            font-weight: 500;
            font-size: 0.95rem;
        }

        /* Menu Section - Asymmetric Layout */
        .menu-section {
            padding: 120px 5%;
            background: var(--pure-white);
        }

        .menu-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
        }

        .menu-item {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid var(--border-gray);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .menu-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
        }

        .menu-image {
            height: 280px;
            background: linear-gradient(135deg, #FFE609 0%, #E31E24 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 5rem;
            position: relative;
            overflow: hidden;
        }

        .menu-image::before {
            content: '';
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 60%),
                radial-gradient(circle at 70% 70%, rgba(0, 0, 0, 0.1) 0%, transparent 60%);
        }

        .menu-content {
            padding: 2rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .menu-title {
            font-family: 'Bebas Neue', cursive;
            font-size: 1.4rem;
            color: var(--deep-black);
            /* margin-bottom: 0.75rem; */
            letter-spacing: 0.5px;
        }

        .menu-description {
            color: var(--charcoal);
            line-height: 1.7;
            margin-bottom: 1.5rem;
            flex: 1;
            font-size: 0.95rem;
        }

        .menu-badge {
            display: inline-block;
            background: var(--light-gray);
            color: var(--deep-black);
            padding: 0.5rem 1.25rem;
            border-radius: 6px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border: 1px solid var(--border-gray);
        }

        /* CTA Section - Split Design */
        .cta-section {
            padding: 0;
            background: var(--deep-black);
            position: relative;
            overflow: hidden;
        }

        .cta-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 500px;
        }

        .cta-content {
            padding: 80px 5%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            color: white;
        }

        .cta-title {
            font-family: 'Bebas Neue', cursive;
            font-size: 4rem;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            letter-spacing: 1px;
        }

        .cta-text {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
            max-width: 500px;
        }

        .cta-button {
            background: var(--primary-yellow);
            color: var(--deep-black);
            padding: 1.25rem 2.5rem;
            border-radius: 8px;
            border: none;
            font-weight: 700;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            align-self: flex-start;
        }

        .cta-button:hover {
            background: white;
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 230, 9, 0.3);
        }

        .cta-visual {
            background: linear-gradient(135deg, var(--primary-red) 0%, #B01419 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 15rem;
            position: relative;
        }

        .cta-visual::before {
            content: '';
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(circle at 50% 50%, rgba(255, 230, 9, 0.1) 0%, transparent 70%);
        }

        /* Footer - Clean Minimal */
        footer {
            background: var(--pure-white);
            border-top: 1px solid var(--border-gray);
            padding: 80px 5% 40px;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-main {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 3rem;
        }

        .footer-brand {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .footer-logo {
            width: 80px;
            height: 80px;
        }

        .footer-brand p {
            color: var(--charcoal);
            line-height: 1.7;
            max-width: 350px;
        }

        .footer-section h4 {
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--deep-black);
            font-size: 1rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section li {
            margin-bottom: 0.75rem;
        }

        .footer-section a {
            color: var(--charcoal);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--primary-red);
        }

        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid var(--border-gray);
            text-align: center;
            color: var(--charcoal);
            font-size: 0.9rem;
        }

        /* Mobile Responsiveness */
        @media (max-width: 1024px) {
            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 3rem;
            }

            .hero-content h1 {
                font-size: 4rem;
            }

            .hero-buttons {
                justify-content: center;
            }

            .features-grid,
            .millet-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .menu-grid {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .cta-container {
                grid-template-columns: 1fr;
            }

            .footer-main {
                grid-template-columns: 1fr 1fr;
                gap: 3rem;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .hero-content h1 {
                font-size: 3rem;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .features-grid,
            .millet-grid,
            .stats-grid {
                grid-template-columns: 1fr;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
            }

            .footer-main {
                grid-template-columns: 1fr;
            }
        }

        /* Smooth Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-in {
            animation: fadeInUp 0.6s ease-out forwards;
        }


        /* Modal */
.millet-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.millet-modal.active {
    display: block;
}

.millet-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
}

.millet-modal-content {
    position: relative;
    max-width: 700px;
    width: 90%;
    background: #fff;
    margin: 80px auto;
    padding: 40px;
    border-radius: 12px;
    z-index: 2;
    animation: modalFade 0.3s ease;
    max-height: 80vh;
    overflow-y: auto;
}

@keyframes modalFade {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.millet-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    border: none;
    background: none;
    cursor: pointer;
}

.modal-hindi {
    font-weight: 600;
    color: #E31E24;
    margin-bottom: 5px;
}

.modal-scientific {
    font-style: italic;
    margin-bottom: 20px;
    color: #777;
}

.modal-body p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.modal-body ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.modal-body li {
    margin-bottom: 8px;
}

/* SECTION */
.menu-tree-section {
  padding: 100px 20px;
  text-align: center;
  background: #f8f8f8;
}

/* TOP IMAGE */
.menu-top-image {
  width: 360px;
  margin-bottom: 20px;
  animation: fadeUp 0.8s ease forwards;
}
.menu-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px 40px;
    text-align: center;
}

/* Image Wrapper controls size */
.menu-hero-image-wrapper {
    width: 100%;
    max-width: 280px;
}

/* Image */
.menu-hero-img {
    width: 350px;
    height: auto;
    border-radius: 16px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.menu-hero-img:hover {
    transform: scale(1.05);
}

/* Title */
.tree-title {
    font-size: 42px;
    margin-top: 25px;
    font-weight: 700;
}

/* Tablet */
@media (max-width: 1024px) {
    .menu-hero-image-wrapper {
        max-width: 220px;
    }

    .tree-title {
        font-size: 32px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .menu-hero {
        padding: 40px 15px 30px;
    }

    .menu-hero-image-wrapper {
        max-width: 180px;
    }

    .tree-title {
        font-size: 26px;
    }
}

@keyframes floatImage {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
/* TITLE */
.tree-title {
font-family: 'Bebas Neue', cursive;
font-size: 2.8rem;
  margin-bottom: 20px;
  animation: fadeUp 1s ease forwards;
}

/* ROOT LINE */
.tree-root-line {
  width: 3px;
  height: 50px;
  background: #000;
  margin: 0 auto 40px;
  animation: growLine 0.6s ease forwards;
}

/* BRANCHES */
.tree-branches {
  display: flex;
  justify-content: center;
  gap: 120px;
  position: relative;
}

/* Horizontal connector */
.tree-branches::before {
  content: "";
  position: absolute;
  top: -20px;
  width: 70%;
  height: 3px;
  background: #000;
  left: 50%;
  transform: translateX(-50%);
}

/* COLUMN */
.tree-column {
  width: 540px;
  max-width: 100%;
}

.branch-line {
  width: 3px;
  height: 35px;
  background: #000;
  margin: 0 auto 15px;
}

/* HEADINGS */
.tree-heading {
font-family: 'Bebas Neue', cursive;
font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 25px;
}

.veg-dot {
  width: 14px;
  height: 14px;
  background: green;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
}

.nonveg-square {
  width: 14px;
  height: 14px;
  background: #E31E24;
  display: inline-block;
  margin-right: 8px;
}

/* CARDS GRID */
.tree-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* CARD */
.tree-card {
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.4s ease;
  animation: fadeUp 0.8s ease forwards;
}

.tree-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 30px rgba(0,0,0,0.15);
}

/* CENTER LAST CARD */
.centered-card {
  grid-column: span 2;
  width: 60%;
  margin: 0 auto;
}

/* PRICE */
.price {
  display: block;
  margin-top: 10px;
  font-weight: 700;
  color: #E31E24;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .tree-branches {
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .tree-branches {
    flex-direction: column;
    align-items: center;
  }

  .tree-branches::before,
  .tree-root-line,
  .branch-line {
    display: none;
  }

  .tree-items {
    grid-template-columns: 1fr;
  }

  .centered-card {
    width: 100%;
    grid-column: span 1;
  }

  .tree-title {
    font-size: 30px;
  }
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes growLine {
  from { height: 0; }
  to { height: 50px; }
}


.menu-description {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
    line-height: 1.5;
}

.menu-footer-note {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem;
    background: linear-gradient(135deg, #FFF9E6 0%, #FFE609 10%, #FFF9E6 100%);
    border-radius: 15px;
    animation: fadeIn 1s ease-out 3.5s both;
}

.menu-footer-note p {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0A0A0A;
    margin: 0.5rem 0;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}


/* ============================================
   CREATIVE ANIMATED MENU TREE
   ============================================ */

.menu-tree-section {
    padding: 120px 5% 100px;
    background: linear-gradient(135deg, #fafafa 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

/* Animated background pattern */
.menu-tree-section::before {
    content: '🥟';
    position: absolute;
    font-size: 150px;
    opacity: 0.03;
    top: 10%;
    right: 5%;
    animation: floatPattern 20s ease-in-out infinite;
}

.menu-tree-section::after {
    content: '🌾';
    position: absolute;
    font-size: 120px;
    opacity: 0.03;
    bottom: 10%;
    left: 5%;
    animation: floatPattern 25s ease-in-out infinite reverse;
}

@keyframes floatPattern {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, -30px) rotate(15deg); }
}

.menu-tree-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

/* Hero Image - Animated Entry */
.menu-hero-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    margin: 0 auto 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    animation: zoomInPulse 1s ease-out;
    transition: all 0.4s ease;
}

.menu-hero-img:hover {
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 0 30px 80px rgba(227, 30, 36, 0.25);
}

@keyframes zoomInPulse {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Root Title - Animated */
.tree-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 4rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #0A0A0A;
    letter-spacing: 3px;
    position: relative;
    animation: slideDown 0.8s ease-out 0.3s both;
}

.tree-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #FFE609, #E31E24);
    border-radius: 2px;
    animation: expandWidth 0.8s ease-out 0.8s both;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandWidth {
    from { width: 0; }
    to { width: 100px; }
}

/* Root Line - Growing Animation */
.tree-root-line {
    width: 3px;
    height: 100px;
    background: linear-gradient(to bottom, #0A0A0A 0%, #999 100%);
    margin: 2rem auto;
    position: relative;
    animation: growDown 0.8s ease-out 1s both;
}

@keyframes growDown {
    from {
        height: 0;
        opacity: 0;
    }
    to {
        height: 100px;
        opacity: 1;
    }
}

/* Main horizontal line */
.tree-root-line::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: #0A0A0A;
    animation: expandFromCenter 0.8s ease-out 1.5s both;
}

@keyframes expandFromCenter {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 80%;
        opacity: 1;
    }
}

/* Branches Container */
.tree-branches {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    margin-top: 3rem;
    position: relative;
}

/* Individual Column */
.tree-column {
    position: relative;
    animation: fadeInUp 0.8s ease-out 2s both;
}

.tree-column:nth-child(1) {
    animation-delay: 2s;
}

.tree-column:nth-child(2) {
    animation-delay: 2.3s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Branch Line (vertical) */
.branch-line {
    width: 3px;
    height: 80px;
    background: linear-gradient(to bottom, #0A0A0A, #ccc);
    margin: 0 auto;
    position: relative;
    animation: growDown 0.6s ease-out 2.5s both;
}

/* Category Headings - Enhanced */
.tree-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    letter-spacing: 2px;
    margin: 2rem 0;
    padding: 1.5rem;
    border-radius: 15px;
    position: relative;
    transition: all 0.4s ease;
    cursor: pointer;
}

.tree-heading:hover {
    transform: translateY(-5px) scale(1.05);
}

/* Veg Heading */
.tree-heading.veg {
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
    color: #2E7D32;
    box-shadow: 0 10px 30px rgba(46, 125, 50, 0.2);
}

.tree-heading.veg:hover {
    box-shadow: 0 15px 40px rgba(46, 125, 50, 0.3);
    background: linear-gradient(135deg, #C8E6C9 0%, #A5D6A7 100%);
}

.veg-dot {
    width: 20px;
    height: 20px;
    background: #4CAF50;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.6);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(76, 175, 80, 0.6);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 0 30px rgba(76, 175, 80, 0.8);
    }
}

/* Non-Veg Heading */
.tree-heading.nonveg {
    background: linear-gradient(135deg, #FFEBEE 0%, #FFCDD2 100%);
    color: #C62828;
    box-shadow: 0 10px 30px rgba(198, 40, 40, 0.2);
}

.tree-heading.nonveg:hover {
    box-shadow: 0 15px 40px rgba(198, 40, 40, 0.3);
    background: linear-gradient(135deg, #FFCDD2 0%, #EF9A9A 100%);
}

.nonveg-square {
    width: 18px;
    height: 18px;
    background: #E31E24;
    display: inline-block;
    border-radius: 3px;
    box-shadow: 0 0 20px rgba(227, 30, 36, 0.6);
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

/* Items Container */
.tree-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
    position: relative;
}

/* Menu Cards - Enhanced */
.tree-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* Animated background on hover */
.tree-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 230, 9, 0.1) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
}

.tree-card:hover::before {
    transform: scale(1);
}

.tree-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: #FFE609;
}

/* Veg cards hover */
.tree-column:first-child .tree-card:hover {
    border-color: #4CAF50;
    box-shadow: 0 20px 50px rgba(76, 175, 80, 0.25);
}

/* Non-veg cards hover */
.tree-column:last-child .tree-card:hover {
    border-color: #E31E24;
    box-shadow: 0 20px 50px rgba(227, 30, 36, 0.25);
}

/* Menu Title */
.tree-card .menu-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    color: #0A0A0A;
    margin: 0;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.tree-card:hover .menu-title {
    color: #E31E24;
    transform: translateX(5px);
}

/* Emoji decoration on hover */
.tree-card::after {
    content: '🥟';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    font-size: 3rem;
    opacity: 0;
    transition: all 0.4s ease;
}

.tree-card:hover::after {
    transform: translateY(-50%) scale(1) rotate(15deg);
    opacity: 0.15;
}

/* Centered Card - Special styling */
.tree-card.centered-card {
    background: linear-gradient(135deg, #FFF9E6 0%, white 100%);
    border: 2px dashed #FFE609;
}

.tree-card.centered-card:hover {
    background: linear-gradient(135deg, #FFE609 0%, #FFF9E6 100%);
    border-style: solid;
}

/* Staggered animation on scroll */
.tree-items .tree-card:nth-child(1) {
    animation: slideInLeft 0.6s ease-out 2.8s both;
}

.tree-items .tree-card:nth-child(2) {
    animation: slideInLeft 0.6s ease-out 3s both;
}

.tree-items .tree-card:nth-child(3) {
    animation: slideInLeft 0.6s ease-out 3.2s both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Add connecting lines between cards */
.tree-items::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #0A0A0A 0%, transparent 100%);
    opacity: 0.2;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .tree-branches {
        gap: 3rem;
    }

    .tree-title {
        font-size: 3rem;
    }

    .tree-heading {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .tree-branches {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .tree-title {
        font-size: 2.5rem;
    }

    .tree-heading {
        font-size: 1.8rem;
        padding: 1.25rem;
    }

    .tree-card .menu-title {
        font-size: 1.5rem;
    }

    .menu-hero-img {
        max-width: 100%;
    }
}

/* Scroll-triggered animations */
@media (prefers-reduced-motion: no-preference) {
    .tree-card {
        opacity: 0;
    }
    
    .tree-card.visible {
        animation: fadeInScale 0.6s ease-out forwards;
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Special hover effect - ripple */
.tree-card {
    position: relative;
    overflow: hidden;
}

.tree-card .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 230, 9, 0.4);
    width: 100px;
    height: 100px;
    margin-top: -50px;
    margin-left: -50px;
    animation: ripple-effect 0.8s;
    opacity: 0;
}

@keyframes ripple-effect {
    from {
        opacity: 1;
        transform: scale(0);
    }
    to {
        opacity: 0;
        transform: scale(4);
    }
}

.millet-image{
    width: 100%;
    height: 250px;
    border-radius: 12px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.icons-millet{
    width: 50px;
    height: 50px;
    margin-bottom: 0px;
}

.icons-millet:hover{
    transform: scale(1.1);
}

.icons-millet1{
    width: 100px;
    height: 100px;
    margin-bottom: 0px;
}

.cta-image{
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
    transition: transform 0.4s ease;
}


/* 
.menu-section {
    padding: 80px 5%;
    background: #f5f5f5;
}

.menu-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
}

.menu-sidebar {
    width: 180px;
    background: linear-gradient(180deg, #FFD700 0%, #FFC107 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 4rem 2rem;
}

.menu-sidebar-text {
    font-family: 'Bebas Neue', cursive;
    font-size: 5rem;
    font-weight: 900;
    color: white;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    letter-spacing: 8px;
    transform: rotate(180deg);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
}

.menu-content {
    flex: 1;
    padding: 3rem 3.5rem;
}

.menu-category {
    margin-bottom: 3rem;
}

.category-header {
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
    padding: 1rem 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 10px rgba(255, 193, 7, 0.3);
}

.category-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    color: #0A0A0A;
    margin: 0;
    letter-spacing: 2px;
    font-weight: 800;
}

.menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.5rem;
    margin-bottom: 0.5rem;
    transition: all 0.2s ease;
    border-radius: 6px;
}

.menu-item-row:hover {
    background: #FFF9E6;
    transform: translateX(5px);
}

.item-name {
    font-size: 1.05rem;
    color: #0A0A0A;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.item-price {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    color: #0A0A0A;
    font-weight: 700;
    white-space: nowrap;
    margin-left: 2rem;
}

.veg-indicator {
    width: 12px;
    height: 12px;
    background: #4CAF50;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
}

.nonveg-indicator {
    width: 12px;
    height: 12px;
    background: #E31E24;
    border-radius: 2px;
    display: inline-block;
    margin-right: 8px;
}

@media (max-width: 768px) {
    .menu-wrapper {
        flex-direction: column;
    }

    .menu-sidebar {
        width: 100%;
        height: 100px;
        padding: 2rem;
    }

    .menu-sidebar-text {
        writing-mode: horizontal-tb;
        transform: rotate(0deg);
        font-size: 4rem;
    }

    .menu-content {
        padding: 2rem 1.5rem;
    }

    .category-title {
        font-size: 1.6rem;
    }

    .item-name {
        font-size: 0.95rem;
    }

    .item-price {
        font-size: 1.3rem;
    }

    .menu-item-row {
        padding: 0.6rem 1rem;
    }
}

@media (max-width: 480px) {
    .menu-item-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .item-price {
        margin-left: 0;
    }
}

.menu-category {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.menu-category:nth-child(1) { animation-delay: 0.1s; }
.menu-category:nth-child(2) { animation-delay: 0.2s; }
.menu-category:nth-child(3) { animation-delay: 0.3s; }
.menu-category:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
 */




.coming-soon-section {
    padding: 120px 5%;
    background: linear-gradient(135deg, #1b1b1b 0%, #2A2A2A 100%);
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Animated Background Pattern */
.coming-soon-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 230, 9, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(227, 30, 36, 0.1) 0%, transparent 50%);
    animation: breathe 8s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

/* Floating Momos Background */
.floating-momos {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.floating-momo {
    position: absolute;
    opacity: 0.1;
    animation: float-up 15s linear infinite;
}

.floating-momo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
}

/* Position and timing for each floating momo */
.floating-momo:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.floating-momo:nth-child(1) img {
    width: 60px;
}

.floating-momo:nth-child(2) {
    left: 30%;
    animation-delay: 3s;
    animation-duration: 15s;
}

.floating-momo:nth-child(2) img {
    width: 70px;
}

.floating-momo:nth-child(3) {
    left: 50%;
    animation-delay: 6s;
    animation-duration: 18s;
}

.floating-momo:nth-child(3) img {
    width: 55px;
}

.floating-momo:nth-child(4) {
    left: 70%;
    animation-delay: 2s;
    animation-duration: 14s;
}

.floating-momo:nth-child(4) img {
    width: 65px;
}

.floating-momo:nth-child(5) {
    left: 90%;
    animation-delay: 8s;
    animation-duration: 16s;
}

.floating-momo:nth-child(5) img {
    width: 50px;
}

@keyframes float-up {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.15;
    }
    90% {
        opacity: 0.15;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}
/* Main Content Container */
.coming-soon-container {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Momo Icon with Rotation */
.coming-soon-icon {
    font-size: 8rem;
    margin-bottom: 2rem;
    display: inline-block;
    animation: rotate-bounce 3s ease-in-out infinite;
    /* filter: drop-shadow(0 10px 30px rgba(255, 230, 9, 0.4));  */
}
.coming-soon-icon img {
    width: 150px;
    height: auto;
    border-radius: 20px;
    object-fit: contain;
    transition: transform 0.4s ease;
}
@keyframes rotate-bounce {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(-10deg);
    }
    50% {
        transform: translateY(0) rotate(0deg);
    }
    75% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* Coming Soon Text */
.coming-soon-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 5rem;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: 8px;
    animation: glow 2s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(255, 230, 9, 0.5);
}

@keyframes glow {
    0%, 100% {
        text-shadow: 
            0 0 20px rgba(255, 230, 9, 0.5),
            0 0 40px rgba(255, 230, 9, 0.3);
    }
    50% {
        text-shadow: 
            0 0 30px rgba(255, 230, 9, 0.8),
            0 0 60px rgba(255, 230, 9, 0.5),
            0 0 80px rgba(227, 30, 36, 0.3);
    }
}

/* Subtitle */
.coming-soon-subtitle {
    font-size: 1.5rem;
    color: #FFE609;
    margin-bottom: 2rem;
    font-weight: 600;
    letter-spacing: 2px;
    animation: fadeInOut 3s ease-in-out infinite;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Description */
.coming-soon-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Countdown Timer */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.countdown-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 230, 9, 0.3);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    min-width: 100px;
    transition: all 0.3s ease;
}

.countdown-box:hover {
    transform: translateY(-10px);
    border-color: #FFE609;
    box-shadow: 0 10px 30px rgba(255, 230, 9, 0.3);
}

.countdown-number {
    font-family: 'Bebas Neue', cursive;
    font-size: 3.5rem;
    color: #FFE609;
    line-height: 1;
    display: block;
    margin-bottom: 0.5rem;
}

.countdown-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Loading Dots Animation */
.loading-dots {
    display: inline-flex;
    gap: 8px;
    margin-left: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background: #FFE609;
    border-radius: 50%;
    animation: bounce-dot 1.4s infinite ease-in-out both;
}

.dot:nth-child(1) { animation-delay: -0.32s; }
.dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes bounce-dot {
    0%, 80%, 100% {
        transform: scale(0);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Notify Button */
.notify-button {
    background: linear-gradient(135deg, #FFE609 0%, #FFC107 100%);
    color: #0A0A0A;
    padding: 1.25rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(255, 230, 9, 0.4);
}

.notify-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 230, 9, 0.6);
    background: linear-gradient(135deg, #FFC107 0%, #FFE609 100%);
}

/* Progress Bar */
.progress-container {
    width: 100%;
    max-width: 500px;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin: 3rem auto 2rem;
    overflow: hidden;
    position: relative;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #FFE609 0%, #E31E24 100%);
    border-radius: 10px;
    width: 75%; /* Adjust based on how close you are to launch */
    animation: shimmer 2s infinite;
    position: relative;
}

@keyframes shimmer {
    0% {
        background-position: -500px 0;
    }
    100% {
        background-position: 500px 0;
    }
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    animation: slide 2s infinite;
}

@keyframes slide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-text {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Social Icons */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 230, 9, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFE609;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: #FFE609;
    color: #0A0A0A;
    transform: translateY(-5px) rotate(360deg);
    border-color: #FFE609;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .coming-soon-title {
        font-size: 3.5rem;
        letter-spacing: 4px;
    }

    .coming-soon-icon {
        font-size: 5rem;
    }

    .coming-soon-subtitle {
        font-size: 1.2rem;
    }

    .countdown-container {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .countdown-box {
        padding: 1rem 1.5rem;
        min-width: 80px;
    }

    .countdown-number {
        font-size: 2.5rem;
    }

    .notify-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

.arrowicons{
    width: 18px;
    height: 18px;
    animation: bounce-arrow 2s infinite;
}


/* FAQ SECTION */

.faq-section {
  padding: 80px 20px;
  background: #fff8f2;
}

.faq-container {
  max-width: 900px;
  margin: auto;
}

.faq-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  font-weight: 700;
}

.faq-item {
  border-bottom: 1px solid #eee;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  color: #e63946;
}

.faq-icon {
  font-size: 22px;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding-bottom: 20px;
  color: #555;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}