.venue-setion {
            color: hsl(var(--muted-foreground));
        }

        .venu-wrapper {
            border-top-right-radius: 30px;
            border-bottom-left-radius: 30px;

        }

        .venu-wrapper img {
            transition: all 0.3s linear;
        }

        .venu-wrapper:hover img {
            transform: scale(1.1);
        }

        .venu-wrapper::after,
        .venu-wrapper::before {
            content: "";
            position: absolute;
            width: 100px;
            height: 100px;
            z-index: 2;
            background: transparent;
        }

        .venu-wrapper::before {
            top: 0;
            left: 0;
            border-top: 10px solid var(--secondary-color);
            border-left: 10px solid var(--secondary-color);
        }

        .venu-wrapper::after {
            bottom: 0;
            right: 0;
            border-right: 10px solid var(--secondary-color);
            border-bottom: 10px solid var(--secondary-color);
        }


        /* ================= CONNECTIVITY ================= */

        .timeline {
            position: relative;
            max-width: 1100px;
            margin: auto;
        }

        .timeline::before {
            content: "";
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 100%;
            background-image: conic-gradient(from 0deg, #ff0080, #7928ca);
        }

        .glass {
            --card: rgba(255, 255, 255, 0.06);
            background: var(--card);
            backdrop-filter: blur(20px);
            border: 1px solid var(--secondary-color);
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.05),
                0 10px 40px rgba(0, 0, 0, 0.35);
        }



        .timeline-item {
            width: 50%;
            position: relative;
            padding: 20px 50px;
            margin-bottom: 20px;
        }

        .timeline-item:nth-child(odd) {
            left: 0;
            text-align: right;
        }

        .timeline-item:nth-child(even) {
            left: 50%;
        }

        .timeline-card {
            border-radius: 28px;
            padding: 35px;
            transition: 0.5s ease;
            position: relative;
        }

        .timeline-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--glow);
        }

        .timeline-dot {
            position: absolute;
            top: 40px;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: var(--secondary-color);
            box-shadow: 0 0 20px var(--secondary-color);
            z-index: 10;
        }

        .timeline-item:nth-child(odd) .timeline-dot {
            right: -9px;
        }

        .timeline-item:nth-child(even) .timeline-dot {
            left: -9px;
        }

        .timeline-card h3 {
            font-size: 1.35rem;
            margin-bottom: 18px;
        }

        .travel-meta {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            margin-bottom: 18px;
        }

        .travel-pill {
            padding: 10px 16px;
            border-radius: 50px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            color: #dfe9ff;
            font-size: 0.9rem;
        }

        .timeline-card p {
            color: var(--muted);
            line-height: 1.8;
        }

        /* ================= DESTINATIONS ================= */

        .destinations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 28px;
        }



        .destination-card {
            aspect-ratio: 1;
            position: relative;
            border-radius: 28px;
            overflow: hidden;
            min-height: 500px;
            width: 100%;
            transition: 0.6s ease;
        }

        .destination-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 0 40px rgba(0, 217, 255, 0.18);
        }

        .destination-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 1.2s ease;
        }

        .destination-card:hover img {
            transform: scale(1.08);
        }

        .destination-overlay {
            position: absolute;
            inset: 0;
            background:
                linear-gradient(to top,
                    rgba(4, 7, 13, 0.98),
                    rgba(4, 7, 13, 0.1));
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 35px;
        }

        .distance {
            display: inline-flex;
            width: max-content;
            padding: 10px 18px;
            border-radius: 999px;
            margin-bottom: 20px;
            color: white;
            font-size: 0.85rem;
            background: rgba(0, 217, 255, 0.12);
            border: 1px solid rgba(0, 217, 255, 0.25);
            backdrop-filter: blur(10px);
        }

        .destination-overlay h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
        }

        .destination-overlay p {
            color: #d0d9f0;
            line-height: 1.7;
        }

        /* ================= CTA ================= */

        .cta {
            text-align: center;
            padding: 80px 8%;
            color: hsl(var(--muted-foreground));
        }

        .cta-box {
            padding: 90px 50px;
            border-radius: 40px;
            position: relative;
            overflow: hidden;
        }

        .cta-box::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at top left, rgba(0, 217, 255, 0.2), transparent 25%),
                radial-gradient(circle at bottom right, rgba(139, 92, 255, 0.25), transparent 25%);
            pointer-events: none;
        }

        .cta h2 {
            font-size: clamp(2.2rem, 5vw, 4.8rem);
            margin-bottom: 24px;
            color: var(--text-white);
        }

        .cta p {
            color: var(--muted);
            max-width: 780px;
            margin: auto;
            line-height: 1.9;
            margin-bottom: 45px;
        }

        .cta-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 18px 36px;
            border-radius: 999px;
            color: white;
            text-decoration: none;
            font-weight: 600;
            background: linear-gradient(135deg,
                    var(--cyan),
                    var(--blue),
                    var(--purple));
            box-shadow:
                0 10px 40px var(--secondary-color);
            transition: 0.4s ease;
        }

        .cta-btn:hover {
            transform: translateY(-4px) scale(1.03);
            box-shadow:
                0 20px 50px rgba(0, 217, 255, 0.35);
        }

        /* ================= RESPONSIVE ================= */

        @media(max-width:992px) {

            .timeline::before {
                left: 18px;
            }

            .timeline-item {
                width: 100%;
                left: 0 !important;
                padding-left: 60px;
                padding-right: 0;
                text-align: left !important;
            }

            .timeline-dot {
                left: 9px !important;
            }

        }

        @media(max-width:600px) {



            .timeline-card {
                padding: 28px;
            }

            .destination-card {
                min-height: 420px;
            }

            .cta-box {
                padding: 70px 28px;
            }

            .travel-meta {
                gap: 10px;
            }
        }