  /* ===== BASE LAYOUT FIX: Prevent empty space after footer ===== */

        /* Base layout fix */

        html,
        body {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            margin: 0;
            padding: 0;
        }

        .new-landing-wrap {
            flex: 1 0 auto;
            /* Takes available space */
        }

        .footer.dark {
            flex-shrink: 0;
            /* Prevents shrinking */
            margin-top: auto;
            /* Pushes to bottom */
        }

        /* ===== FLUID TYPOGRAPHY & SPACING ===== */

        :root {
            --space-xxs: clamp(0.25rem, 0.15rem + 0.5vw, 0.5rem);
            --space-xs: clamp(0.5rem, 0.4rem + 0.5vw, 1rem);
            --space-sm: clamp(0.75rem, 0.6rem + 0.75vw, 1.5rem);
            --space-md: clamp(1rem, 0.8rem + 1vw, 2rem);
            --space-lg: clamp(2rem, 1.5rem + 2vw, 4rem);
            --font-base: clamp(1rem, 0.9rem + 0.4vw, 1.125rem);
            --font-h3: clamp(1.25rem, 1.1rem + 0.7vw, 1.75rem);
            --font-h2: clamp(1.5rem, 1.3rem + 1vw, 2.25rem);
            --font-h1: clamp(2rem, 1.7rem + 1.8vw, 3.5rem);
            --radius: clamp(8px, 0.5rem + 0.3vw, 16px);
            --radius-lg: clamp(12px, 1rem + 0.5vw, 24px);
        }

        /* ===== SMOOTH SCROLL & ANIMATIONS ===== */

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 72px;
        }

        /*===== HORIZON IMAGE CONTAINMENT FIX ===== */

        /*.section.new-landing {*/

        /*  position: relative
          overflow: hidden; /* Critical: prevents parallax overflow */

        /*}*/

        /*.horizon {*/

        /*  position: absolute;*/

        /*  bottom: 0;*/

        /*  left: 0;*/

        /*  width: 100%;*/

        /*  height: auto;
          max-height: 100vh; /* Limit height to prevent overflow */

        /*  object-fit: cover;*/

        /*  pointer-events: none;*/

        /*  will-change: transform;*/

        /*   Ensure it doesn't affect document flow */

        /*  z-index: 0;*/

        /*}*/

        /* Ensure content sits above horizon */

        /*.landing-wrap {*/

        /*  position: relative;*/

        /*  z-index: 1;*/

        /*}*/

        /*=====END HORIZON IMAGE CONTAINMENT FIX ===== */

        /* ===== PARALLAX COIN ANIMATIONS ===== */

        .coin-wrap {
            position: relative;
            overflow: hidden;
        }

        .coin {
            position: absolute;
            will-change: transform;
            animation: floatCoin 8s ease-in-out infinite;
            opacity: 0.9;
            filter: drop-shadow(0 10px 30px rgba(0, 212, 170, 0.3));
        }

        .coin.pink {
            animation-delay: 0s;
            animation-duration: 10s;
            right: 15%;
            top: 20%;
        }

        .coin.white {
            animation-delay: -2s;
            animation-duration: 12s;
            left: 10%;
            top: 40%;
        }

        .coin.blue {
            animation-delay: -4s;
            animation-duration: 9s;
            right: 25%;
            bottom: 15%;
        }

        @keyframes floatCoin {
            0%,
            100% {
                transform: translateY(0) rotate(0deg) scale(1);
            }
            25% {
                transform: translateY(-20px) rotate(5deg) scale(1.03);
            }
            50% {
                transform: translateY(10px) rotate(-3deg) scale(0.98);
            }
            75% {
                transform: translateY(-15px) rotate(2deg) scale(1.02);
            }
        }

        /* ===== SMOOTH DROPDOWN ANIMATIONS ===== */

        .w-dropdown-list {
            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), visibility 0.3s;
            visibility: hidden;
            pointer-events: none;
            z-index: 100;
        }

        .w-dropdown-list.w--open {
            opacity: 1;
            transform: translateY(0);
            visibility: visible;
            pointer-events: auto;
        }

        /* ===== SCROLL-TRIGGERED SECTION REVEALS ===== */

        .reveal-on-scroll {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .reveal-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== CARD HOVER ANIMATIONS ===== */

        .dark-cards {
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease, border-color 0.3s ease;
            will-change: transform;
        }

        @media (hover: hover) {
            .dark-cards:hover {
                transform: translateY(-8px) scale(1.02);
                box-shadow: 0 20px 40px rgba(0, 212, 170, 0.25);
                border-color: var(--ltc-accent, #00D4AA);
            }
        }

        @media (hover: none) {
            .dark-cards:active {
                transform: translateY(-3px);
                box-shadow: 0 8px 25px rgba(0, 212, 170, 0.15);
            }
        }

        /* ===== BUTTON STYLES ===== */

        .button {
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            min-height: 44px;
            min-width: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: clamp(0.7rem, 0.6rem + 0.3vw, 0.9rem) clamp(1.2rem, 1rem + 0.5vw, 2rem);
            border-radius: 50px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            background: var(--ltc-blue, #345D9D);
            color: white;
            font-size: var(--font-base);
        }

        @media (hover: hover) {
            .button:hover {
                transform: translateY(-3px);
                box-shadow: 0 12px 30px rgba(0, 212, 170, 0.3);
            }
            .button::after {
                content: '';
                position: absolute;
                top: 50%;
                left: 50%;
                width: 0;
                height: 0;
                background: rgba(255, 255, 255, 0.2);
                border-radius: 50%;
                transform: translate(-50%, -50%);
                transition: width 0.6s ease, height 0.6s ease;
            }
            .button:hover::after {
                width: 300px;
                height: 300px;
            }
        }

        @media (hover: none) {
            .button:active {
                transform: translateY(1px);
                box-shadow: 0 4px 12px rgba(0, 212, 170, 0.15);
            }
        }

        /* ===== COUNTDOWN TIMER - FULLY RESPONSIVE ===== */

        .countdown-timer {
            display: flex;
            gap: clamp(8px, 1.5vw, 15px);
            justify-content: center;
            flex-wrap: wrap;
            margin: clamp(1rem, 1.5vw, 1.5rem) 0;
            font-family: 'Poppins', sans-serif;
        }

        .time-block {
            background: #f5803e;
            color: white;
            padding: clamp(8px, 0.6vw, 14px) clamp(14px, 1.5vw, 20px);
            border-radius: var(--radius);
            text-align: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
            min-width: 70px;
            flex: 1 1 70px;
            max-width: 95px;
        }

        .time-num {
            display: block;
            font-size: clamp(1.4rem, 1.2rem + 0.6vw, 2rem);
            font-weight: 800;
            line-height: 1;
        }

        .time-label {
            font-size: clamp(0.6rem, 0.5rem + 0.2vw, 0.75rem);
            text-transform: uppercase;
            opacity: 0.9;
            margin-top: 4px;
            letter-spacing: 0.5px;
        }

        /* ===== QUICK STATS GRID - RESPONSIVE ARRANGEMENT ===== */

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: clamp(0.8rem, 0.6rem + 0.5vw, 1.5rem);
            margin: clamp(1.5rem, 1rem + 1vw, 2rem) 0;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .stat-card {
            background: rgba(52, 93, 157, 0.1);
            padding: clamp(0.8rem, 0.7rem + 0.3vw, 1.2rem);
            border-radius: var(--radius);
            text-align: center;
        }

        .stat-value {
            font-size: clamp(1.5rem, 1.3rem + 0.5vw, 2rem);
            font-weight: 800;
            color: #00D4AA;
        }

        .stat-label {
            color: #94a3b8;
            font-size: 0.9rem;
            margin-top: 0.25rem;
        }

        /* ===== PROGRESS BAR ANIMATION ===== */

        .progress-bar {
            height: 6px;
            background: #334155;
            border-radius: 3px;
            overflow: hidden;
            margin-top: 0.5rem;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #00D4AA, #345D9D);
            border-radius: 3px;
            width: 0%;
            transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        @media (prefers-reduced-motion: no-preference) {
            .progress-fill::after {
                content: '';
                position: absolute;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100%;
                background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
                animation: shine 2s infinite;
            }
            @keyframes shine {
                100% {
                    left: 100%;
                }
            }
        }

        /* ===== CALCULATOR RESPONSIVE ===== */

        .calc-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: clamp(0.8rem, 0.6vw, 1.5rem);
            margin-bottom: clamp(1rem, 0.8rem + 0.5vw, 1.5rem);
        }

        .calc-input {
            width: 100%;
            padding: clamp(0.7rem, 0.6vw, 0.9rem) 1rem;
            border: 2px solid #334155;
            border-radius: var(--radius);
            background: #1e293b;
            color: white;
            font-size: var(--font-base);
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .calc-input:focus {
            border-color: #00D4AA;
            box-shadow: 0 0 0 4px rgba(0, 212, 170, 0.2);
            outline: none;
        }

        .calc-result {
            opacity: 0;
            transform: scale(0.98);
            transition: all 0.4s ease;
            margin-top: clamp(1.5rem, 1.2rem + 0.8vw, 2rem);
            padding: clamp(1rem, 0.8rem + 0.5vw, 1.5rem);
            background: rgba(0, 212, 170, 0.1);
            border-radius: var(--radius);
            display: none;
        }

        .calc-result.visible {
            opacity: 1;
            transform: scale(1);
        }

        /* ===== FEATURES GRID RESPONSIVE ===== */

        .features-grid {
            display: grid;
            gap: clamp(1rem, 0.8rem + 0.5vw, 2rem);
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
        }

        /* ===== MOBILE MENU FIX ===== */

        @media screen and (max-width: 991px) {
            .menu-button {
                display: flex !important;
                width: 44px;
                height: 44px;
                align-items: center;
                justify-content: center;
                background: none;
                border: none;
                cursor: pointer;
                border-radius: 50%;
                transition: background 0.2s;
            }
            .menu-button:active {
                background: rgba(255, 255, 255, 0.1);
            }
            .burger-line {
                width: 22px;
                height: 2px;
                /* background: var(--light, #f8fafc); */
                margin: 3px 0;
                border-radius: 2px;
                transition: all 0.3s ease;
                transform-origin: center;
            }
            .nav-menu.w-nav-menu {
                position: fixed;
                top: 64px;
                left: 0;
                right: 0;
                bottom: 0;
                background: rgba(10, 15, 29, 0.98);
                backdrop-filter: blur(12px);
                -webkit-backdrop-filter: blur(12px);
                flex-direction: column;
                align-items: flex-start;
                justify-content: flex-start;
                padding: var(--space-md);
                gap: 0.25rem;
                overflow-y: auto;
                -webkit-overflow-scrolling: touch;
                transform: translateY(-10px);
                opacity: 0;
                visibility: hidden;
                pointer-events: none;
                transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
                z-index: 999;
            }
            .nav-menu.w-nav-menu.w--open {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
                pointer-events: auto;
                background: #fff;
            }
            .nav-link,
            .w-dropdown {
                width: 100%;
            }
            .w-dropdown-toggle {
                width: 100%;
                justify-content: space-between;
                padding: var(--space-xs) var(--space-sm);
            }
            .w-dropdown-list {
                position: static;
                width: 100%;
                box-shadow: none;
                background: rgba(30, 41, 59, 0.5);
                border: none;
                margin: 0.25rem 0 0.5rem 0;
                border-radius: var(--radius);
                transform: none !important;
                opacity: 1 !important;
                visibility: visible !important;
                pointer-events: auto !important;
                display: none;
            }
            .w-dropdown-list.w--open {
                display: block;
                animation: slideDown 0.25s ease;
            }
            @keyframes slideDown {
                from {
                    opacity: 0;
                    max-height: 0;
                }
                to {
                    opacity: 1;
                    max-height: 300px;
                }
            }
            .socials-inner.desktop {
                display: none;
            }
            .socials-inner.mobile {
                display: flex !important;
                gap: 1rem;
                margin-top: 1rem;
                padding-top: 1rem;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
            }
            .coin {
                display: none;
            }
        }

        /* ===== SMALL MOBILE OPTIMIZATIONS ===== */

        @media (max-width: 480px) {
            :root {
                --space-lg: clamp(1.5rem, 1.2rem + 1.5vw, 2.5rem);
                --space-xl: clamp(2rem, 1.6rem + 2vw, 3rem);
                --font-h1: clamp(1.8rem, 1.6rem + 1.2vw, 2.8rem);
                --font-h2: clamp(1.4rem, 1.2rem + 0.8vw, 1.9rem);
            }
            .countdown-timer {
                justify-content: center;
            }
            .time-block {
                min-width: 65px;
                padding: 6px 10px;
            }
            .time-num {
                font-size: 1.2rem;
            }
            .button {
                width: 100%;
                max-width: 340px;
            }
            .calc-grid {
                grid-template-columns: 1fr;
            }
            .features-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ===== ACCESSIBILITY: REDUCED MOTION ===== */

        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
            .coin {
                animation: none;
                transform: rotateY(30deg) scale(0.95);
            }
            .reveal-on-scroll {
                opacity: 1 !important;
                transform: none !important;
            }
        }

        /* ===== FOOTER FIX: Prevent extra space ===== */

        .footer.dark {
            padding: var(--space-lg) var(--space-md);
            background: #070b14;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            margin-top: auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: var(--space-lg);
            max-width: 1200px;
            margin: 0 auto;
        }



    /* {<!--//===============time coutdown=======================-->} */
    .countdown-timer {
        display: flex;
        gap: 15px;
        /*justify-content: center;*/
        font-family: 'Poppins', sans-serif;
    }

    .time-block {
        background: #f5803e;
        /* Your theme orange */
        color: white;
        padding: 10px 15px;
        border-radius: 8px;
        text-align: center;
        /*min-width: 60px;*/
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .time-num {
        display: block;
        font-size: 1.5rem;
        font-weight: bold;
    }

    .time-label {
        font-size: 0.6rem;
        text-transform: uppercase;
        opacity: 0.8;
    }


    /* //new menu toggle fixed data */
    /* Mobile breakpoint: show burger, hide desktop menu layout */
        @media (max-width: 991px) {
          .menu-button.w-nav-button {
            display: flex !important;
          }
          .nav-menu.w-nav-menu {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: rgba(11, 15, 25, 0.98);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255,255,255,0.08);
            flex-direction: column !important;
            align-items: flex-start !important;
            padding: 1rem 5% 2rem;
            gap: 0.75rem !important;
            margin: 0;
            z-index: 1000;
          }
          .nav-menu.w-nav-menu.w--open {
            display: block !important;
          }
          .socials-inner.mobile {
            display: flex !important;
            gap: 1rem;
            padding-top: 1rem;
            margin-top: 1rem;
            border-top: 1px solid rgba(255,255,255,0.08);
            width: 100%;
          }
          .nav-link.w-nav-link {
            padding: 0.5rem 0;
            width: 100%;
            font-size: 1.1rem;
          }
        }

        /* Desktop: hide burger, show horizontal menu */
        @media (min-width: 992px) {
          .nav-menu.w-nav-menu {
            display: flex !important;
            transform: none !important;
            opacity: 1 !important;
            pointer-events: auto !important;
          }
        }

        /* Smooth scroll for anchor links */
        html {
          scroll-behavior: smooth;
        }

        /* Reduced motion support */
        @media (prefers-reduced-motion: reduce) {
          *, *::before, *::after {
            transition-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
          }
        }
/* //=================END OF NEW MENU TOGGLE FIXES=======================--> */
