:root {   --transition-speed: 0.8s;
            --bezier: cubic-bezier(0.4, 0, 0.2, 1);
        }


.slider-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            padding: 2rem 0;
        }

        .slider-container {
            position: relative;
            width: 100%;
            max-width: 320px;
            aspect-ratio: 3/4;
        }

        @media (min-width: 768px) {
            .slider-container {
                max-width: 400px;
                aspect-ratio: 4/5;
            }
        }

        .tmnl_card {
            transition: transform var(--transition-speed) var(--bezier), 
                        opacity var(--transition-speed) ease, 
                        filter var(--transition-speed) ease;
            will-change: transform, opacity, filter;
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            cursor: pointer;
            opacity: 0;  
        }

        .card-inner {
            box-shadow: 0 40px 80px -15px rgba(0, 0, 0, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.1);
            width: 100%;
            height: 100%;
            border-radius: 2rem;
            overflow: hidden;
            position: relative; border:1px solid cyan;
        }

        @media (min-width: 768px) {
            .card-inner {
                border-radius: 3rem;
            }
        }

        .tmnl_card img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease;
        }

        .tmnl_card.active:hover img {
            transform: scale(1.1);
        }

        .glass-overlay {
            background: rgba(0, 0, 0, 0.7);
            position: absolute;
            inset: auto 0 0 0;
            padding: 24px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }

        @media (min-width: 768px) {
            .glass-overlay {
                padding: 2.5rem;
            }
        }

        .glow-line {
            height: 1.5px;
            width: 100%;
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
            position: absolute;
            top: 0;
            left: 0;
        }

        .quote-text {
            font-size: clamp(0.95rem, 3vw, 1.25rem);
            line-height: 1.6;
            color: rgba(255, 255, 255, 1);
            margin-bottom: 10px;
            font-weight: 300; font-size: 0.9rem; text-align: center;
        }

        .attribution {
            display: flex;
            flex-direction: column;
        }

        .name-row {
            display: flex;
            align-items: center;
            gap: 0.75rem; justify-content: center;
        }

        .name-line {
            width: 1.5rem;
            height: 2px;
            background-color: rgba(255, 255, 255, 0.4);
        }

        @media (min-width: 768px) {
            .name-line {
                width: 2rem;
            }
        }

        .name-text {
            font-size: 1.25rem;
            font-weight: 600;
            letter-spacing: -0.01em; color: #fff; text-align: center; text-align: center;
        }

        .location-text {
            font-size: 0.8rem;
            font-weight: 400;
            color: #fff;
            margin: 0  !important ;
            letter-spacing: 0.1em; text-align: center;
        }

        @media (min-width: 768px) {
            .location-text {
                font-size: 0.75rem;
                margin-left: 2.75rem;
            }
        }

        .controls {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 30px;
            width: 100%;
        }

        .nav-btn {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 9999px;
            padding: 1rem;
            color: white;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        @media (min-width: 768px) {
            .nav-btn {
                padding: 1.25rem;
            }
        }

        .nav-btn:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .nav-btn:active {
            transform: scale(0.9);
        }

        .dots-container {
            display: flex;
            gap: 0.75rem;
        }

        .dot {
            height: 0.5rem;
            border-radius: 9999px;
            background-color: #334155;
            transition: all 0.3s ease;
            cursor: pointer;
            width: 0.5rem;
        }

        .dot.active {
            width: 2.5rem;
            background-color: #999;
        }