:root {
            --bg: #0a0a0a;
            --bg-2: #141414;
            --fg: #042552;
            --muted: #f5f1e8;
            --accent: #032551;
            --accent-2: #f5f1e8;
            --line: rgba(245, 241, 232, 0.08);
        }

        * {
            box-sizing: border-box
        }

        html,
        body {
            margin: 0;
            padding: 0;
            background: var(--bg);
            color: var(--fg);
            font-family: 'Manrope', sans-serif;
            overflow-x: hidden
        }

        /* ---------- Static dark background (slider removed) ---------- */
        .bg-static {
            position: fixed;
            inset: 0;
            z-index: 0;
            background: white
        }

        .grain {
            position: fixed;
            inset: 0;
            z-index: 1;
            pointer-events: none;
            opacity: 0.4;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 0.96 0 0 0 0 0.94 0 0 0 0 0.91 0 0 0 0.12 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
        }

        .grid-overlay {
            position: fixed;
            inset: 0;
            z-index: 1;
            pointer-events: none;
            background-image:
                linear-gradient(rgba(245, 241, 232, 0.025) 1px, transparent 1px),
                linear-gradient(90deg, rgba(245, 241, 232, 0.025) 1px, transparent 1px);
            background-size: 80px 80px;
            mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
        }

        /* ---------- Content Layer ---------- */
        .content {
            position: relative;
            z-index: 5;
            min-height: 100vh;
            display: flex;
            flex-direction: column
        }

        /* Top bar */
        .topbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 30px;
            border-bottom: 1px solid var(--line);
            backdrop-filter: blur(10px);
            background: phone-link;
            border-bottom: solid 1px  #042552;
        }

        .logo-svg {
            height: 64px;
            width: auto;
            filter: drop-shadow(0 4px 20px rgba(232, 93, 44, 0.25))
        }

        .topbar-right {
            display: flex;
            align-items: center;
            gap: 24px;
            font-size: 12px;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--fg)
        }

        .live-dot {
            display: inline-flex;
            align-items: center;
            gap: 8px
        }

        .live-dot::before {
            content: "";
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--accent);
            box-shadow: 0 0 12px var(--accent);
            animation: pulse 1.6s infinite
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
                transform: scale(1)
            }

            50% {
                opacity: 0.5;
                transform: scale(1.3)
            }
        }

        /* Hero */
        .hero {
            flex: 1;
            display: grid;
            grid-template-columns: 1.4fr 1fr;
            gap: 48px;
            padding: 60px 48px;
            align-items: center;
        }

        @media (max-width:1024px) {
            .hero {
                grid-template-columns: 1fr;
                padding: 40px 24px
            }

            .topbar {
                padding: 18px 24px
            }
        }

        .kicker {
            display: inline-flex;
            align-items: center;
            gap: 14px;
            font-family: 'Space Mono', monospace;
            font-size: 11px;
            letter-spacing: 0.35em;
            color: var(--accent-2);
            text-transform: uppercase;
            margin-bottom: 28px;
        }

        .kicker .line {
            width: 54px;
            height: 1px;
            background: black;
        }

        .display-title {
            font-family: 'Anton', sans-serif;
            font-weight: 400;
            font-size: clamp(56px, 9vw, 140px);
            line-height: 0.88;
            letter-spacing: -0.01em;
            text-transform: uppercase;
        }

        .display-title .underline {
            position: relative;
            display: inline-block;
            color: var(--accent)
        }

        .display-title .underline::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: 6%;
            height: 8px;
            background: var(--accent);
            transform: scaleX(0);
            transform-origin: left;
            animation: slideIn 1.4s 0.6s cubic-bezier(.7, 0, .2, 1) forwards;
        }

        @keyframes slideIn {
            to {
                transform: scaleX(1)
            }
        }

        .subtitle {
            margin-top: 32px;
            max-width: 520px;
            font-size: 17px;
            line-height: 1.7;
            color: rgba(245, 241, 232, 0.78);
        }

        .subtitle strong {
            color: var(--fg);
            font-weight: 600
        }

        /* Countdown */
        .countdown {
            margin-top: 48px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
            max-width: 560px;
        }

        .cd-cell {
            position: relative;
            padding: 22px 12px 18px;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
            border: 1px solid var(--line);
            border-radius: 4px;
            text-align: center;
            overflow: hidden;
        }

        .cd-cell::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--accent), transparent);
            opacity: 0.7;
        }

        .cd-num {
            font-family: 'Anton', sans-serif;
            font-size: 48px;
            line-height: 1;
            color: var(--fg);
            font-variant-numeric: tabular-nums;
        }

        .cd-label {
            margin-top: 8px;
            font-family: 'Space Mono', monospace;
            font-size: 10px;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: black;
        }

        /* Buttons */
        .actions {
            margin-top: 40px;
            display: flex;
            flex-wrap: wrap;
            gap: 14px
        }

        .btn {
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 18px 28px;
            font-family: 'Space Mono', monospace;
            font-size: 12px;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            font-weight: 700;
            text-decoration: none;
            color: var(--bg);
            background: var(--accent);
            border: none;
            cursor: pointer;
            overflow: hidden;
            transition: transform .3s ease, box-shadow .3s ease;
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 14px 40px rgba(232, 93, 44, 0.4)
        }

        .btn-ghost {
            background: #A42E2C;
            color: white;
            border: 1px solid rgba(245, 241, 232, 0.25);
        }

        .btn-ghost:hover {
            background: rgba(245, 241, 232, 0.06);
            box-shadow: none
        }

        .btn .arrow {
            transition: transform .3s ease
        }

        .btn:hover .arrow {
            transform: translateX(4px)
        }

        /* ========== IMAGE SLIDER (below buttons) ========== */
        .img-slider-wrap {
            margin-top: 36px;
            position: relative;
            width: 100%;
            
            border-radius: 6px;
            overflow: hidden;
            border: 1px solid var(--line);
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
        }

        .img-slider-track {
            display: flex;
            transition: transform 0.7s cubic-bezier(.7, 0, .2, 1);
            will-change: transform;
        }

        .img-slide {
            flex-shrink: 0;
            width: 25%;
            /* 4 images ek saath */
            aspect-ratio: 1/1;
            object-fit: cover;
            display: block;
            filter: brightness(0.7) saturate(0.85);
            transform: scale(0.92);
            transition: filter 0.5s ease, transform 0.5s ease;
            border-radius: 4px;
        }

        .img-slide.center {
            filter: brightness(1) saturate(1);
            transform: scale(1);
            z-index: 2;
        }

        /* Slider nav dots */
        .img-slider-dots {
            position: absolute;
            bottom: 12px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 10;
        }

        .img-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: rgba(245, 241, 232, 0.35);
            border: none;
            cursor: pointer;
            padding: 0;
            transition: all .3s ease;
        }

        .img-dot.active {
            background: var(--fg);
            width: 22px;
            border-radius: 3px;
        }

        /* Prev / Next arrows */
        .img-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: rgba(10, 10, 10, 0.6);
            border: 1px solid var(--line);
            color: var(--fg);
            font-size: 13px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background .25s ease;
        }

        .img-arrow:hover {
            background: rgba(245, 241, 232, 0.12);
        }

        .img-arrow.prev {
            left: 12px;
        }

        .img-arrow.next {
            right: 12px;
        }

        /* Slide label overlay */
        .img-slider-label {
            position: absolute;
            top: 10px;
            left: 12px;
            font-family: 'Space Mono', monospace;
            font-size: 9px;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: rgba(245, 241, 232, 0.6);
            background: rgba(10, 10, 10, 0.5);
            padding: 4px 10px;
            border-radius: 2px;
            backdrop-filter: blur(4px);
        }

        /* Right panel */
        .info-panel {
            position: relative;
            padding: 36px 32px;
            background: linear-gradient(180deg, rgba(20, 20, 20, 0.7), rgba(10, 10, 10, 0.85));
            border: 1px solid var(--line);
            border-radius: 6px;
            backdrop-filter: blur(18px);
        }

        .info-panel::before {
            content: "";
            position: absolute;
            top: -1px;
            left: 24px;
            right: 24px;
            height: 2px;
            background: linear-gradient(90deg, var(--accent), transparent);
        }

        .panel-label {
            font-family: 'Space Mono', monospace;
            font-size: 10px;
            letter-spacing: 0.35em;
            color: var(--accent-2);
            text-transform: uppercase;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .panel-label::before {
            content: "";
            width: 24px;
            height: 1px;
            background: var(--accent-2)
        }

        .info-row {
            display: flex;
            gap: 18px;
            padding: 18px 0;
            border-bottom: 1px solid var(--line);
        }

        .info-row:last-child {
            border-bottom: none
        }

        .info-icon {
            flex-shrink: 0;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(232, 93, 44, 0.12);
            border: 1px solid rgba(232, 93, 44, 0.3);
            color: var(--accent-2);
            font-size: 15px;
        }

        .info-text .label {
            font-size: 10px;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--muted);
            font-family: 'Space Mono', monospace
        }

        .info-text .value {
            margin-top: 4px;
            font-size: 15px;
            font-weight: 600;
            line-height: 1.4;
            color: var(--fg)
        }

        .info-text .value.smaller {
            font-size: 18px;
            font-weight: 500;
            line-height: 1.5;
            color: white
        }

        .phone-link {
            color: white;
            text-decoration: none;
            transition: color .2s
        }

        .phone-link:hover {
            color: var(--accent-2)
        }

        /* Progress bar */
        .progress-block {
            margin-top: 28px;
            padding-top: 22px;
            border-top: 1px dashed var(--line)
        }

        .progress-head {
            display: flex;
            justify-content: space-between;
            font-family: 'Space Mono', monospace;
            font-size: 10px;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--muted);
            margin-bottom: 10px
        }

        .progress-head span:last-child {
            color: var(--accent-2)
        }

        .progress-bar {
            height: 4px;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 2px;
            overflow: hidden;
            position: relative
        }

        .progress-fill {
            height: 100%;
            width: 68%;
            background: linear-gradient(90deg, var(--accent), var(--accent-2));
            position: relative;
            animation: growBar 2.2s 0.4s cubic-bezier(.7, 0, .2, 1) forwards;
            transform-origin: left;
            transform: scaleX(0)
        }

        @keyframes growBar {
            to {
                transform: scaleX(1)
            }
        }

        .progress-fill::after {
            content: "";
            position: absolute;
            right: 0;
            top: -2px;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--accent-2);
            box-shadow: 0 0 12px var(--accent-2);
        }

        /* Footer */
        .footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 22px 48px;
            border-top: 1px solid var(--line);
            background: rgba(10, 10, 10, 0.5);
            backdrop-filter: blur(10px);
            font-family: 'Space Mono', monospace;
            font-size: 11px;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--muted);
            flex-wrap: wrap;
            gap: 12px;
        }

        .footer .socials {
            display: flex;
            gap: 14px
        }

        .footer .socials a {
            color: var(--muted);
            text-decoration: none;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            border: 1px solid var(--line);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all .25s ease;
        }

        .footer .socials a:hover {
            color: var(--accent-2);
            border-color: var(--accent-2);
            transform: translateY(-2px)
        }

        /* Marquee */
        .marquee {
            position: relative;
            overflow: hidden;
            border-top: 1px solid var(--line);
            background: rgba(10, 10, 10, 0.6);
            padding: 10px 0;
            backdrop-filter: blur(6px);
        }

        .marquee-track {
            display: flex;
            gap: 48px;
            white-space: nowrap;
            animation: marquee 28s linear infinite;
            font-family: 'Space Mono', monospace;
            font-size: 11px;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--muted)
        }

        .marquee-track span {
            display: inline-flex;
            align-items: center;
            gap: 14px
        }

        .marquee-track span::before {
            content: "◆";
            color: var(--accent);
            font-size: 8px
        }

        @keyframes marquee {
            from {
                transform: translateX(0)
            }

            to {
                transform: translateX(-50%)
            }
        }

        /* Entrance animations */
        .fade-up {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 1s cubic-bezier(.2, .7, .2, 1) forwards
        }

        .fade-up.d1 {
            animation-delay: .15s
        }

        .fade-up.d2 {
            animation-delay: .3s
        }

        .fade-up.d3 {
            animation-delay: .45s
        }

        .fade-up.d4 {
            animation-delay: .6s
        }

        .fade-up.d5 {
            animation-delay: .75s
        }

        .fade-up.d6 {
            animation-delay: .9s
        }

        .fade-up.d7 {
            animation-delay: 1.05s
        }

        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0)
            }
        }

        /* Mobile adjustments */
        @media (max-width:640px) {
            .topbar {
                padding: 14px 18px
            }

            .logo-svg {
                height: 48px
            }

            .topbar-right {
                display: none
            }

            .countdown {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px
            }

            .cd-num {
                font-size: 36px
            }

            .footer {
                padding: 18px
            }

            .info-panel {
                padding: 28px 22px
            }

            .img-slider-wrap {
                max-width: 100%;
            }
        }