.carousel-container {
            position: relative;
            width: 100vw;
            height: 90vh; /* Increased from 60vh */
            overflow: hidden;
            background: #000;
        }

        .carousel {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .carousel-wrapper {
            display: flex;
            width: 100%;
            height: 100%;
            transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .carousel-slide {
            position: relative;
            width: 100%;
            height: 100%;
            flex-shrink: 0;
        }

        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        /* Enhanced gradient overlay for better text visibility */
        .carousel-slide::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(
                to bottom,
                rgba(0, 0, 0, 0.4) 0%,
                rgba(0, 0, 0, 0.3) 40%,
                rgba(0, 0, 0, 0.5) 70%,
                rgba(0, 0, 0, 0.7) 100%
            );
            z-index: 1;
        }

        /* White fade at bottom for smooth content transition */
        .carousel-slide::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 30%;
            background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 100%);
            z-index: 2;
            pointer-events: none;
        }

        /* Text content container */
        .slide-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            width: 90%;
            max-width: 1200px;
            z-index: 3;
            padding: 2rem;
        }

        /* Primary heading - Large, bold, white */
        .slide-title {
            font-size: clamp(2.5rem, 6vw, 6rem);
            font-weight: 900;
            color: #ffffff;
            text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8),
                         0 2px 10px rgba(0, 0, 0, 0.6);
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
            line-height: 1.1;
            animation: slideInUp 0.8s ease-out forwards;
        }

        /* Secondary text - Subtle with strong text shadow for visibility */
        .slide-subtitle {
            font-size: clamp(1.25rem, 2.5vw, 2rem);
            font-weight: 700;
            color: #ffffff;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9),
                         0 2px 10px rgba(0, 0, 0, 0.8),
                         0 0 40px rgba(0, 0, 0, 0.6);
            animation: slideInUp 1s ease-out 0.2s forwards;
            animation-fill-mode: both;
            opacity: 0;
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Navigation dots */
        .carousel-dots {
            position: absolute;
            bottom: 3rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 1rem;
            z-index: 4;
        }

        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            border: 2px solid rgba(255, 255, 255, 0.6);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .carousel-dot:hover {
            background: rgba(255, 255, 255, 0.6);
            transform: scale(1.2);
        }

        .carousel-dot.active {
            background: #ffffff;
            width: 32px;
            border-radius: 6px;
        }

        /* Navigation arrows */
        .carousel-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 4;
            transition: all 0.3s ease;
            font-size: 1.5rem;
        }

        .carousel-arrow:hover {
            background: rgba(255, 255, 255, 0.35);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-arrow.prev {
            left: 2rem;
        }

        .carousel-arrow.next {
            right: 2rem;
        }

        /* Mobile adjustments */
        @media (max-width: 768px) {
            .carousel-container {
                height: 80vh;
            }

            .slide-content {
                padding: 1rem;
            }

            .slide-subtitle {
                padding: 0.75rem 1.5rem;
                font-size: clamp(1rem, 3vw, 1.25rem);
            }

            .carousel-arrow {
                width: 48px;
                height: 48px;
                font-size: 1.25rem;
            }

            .carousel-arrow.prev {
                left: 1rem;
            }

            .carousel-arrow.next {
                right: 1rem;
            }

            .carousel-dots {
                bottom: 2rem;
            }
        }

        @media (max-width: 480px) {
            .carousel-container {
                height: 70vh;
            }

            .carousel-arrow {
                display: none; /* Hide arrows on very small screens */
            }
        }