        .hero-carousel {
            position: relative;
            width: 100%;
            height: 50em;
            overflow: hidden;
            z-index: 0 !important;
            margin-top: -0.5em !important;          
        }

        .carousel-container {
            position: relative;
            width: 100%;
            height: 100%;
        }
        
        .carousel-wrapper {
            position: relative;
            width: 100%;
            height: 100%;

        }
        
        .carousel-slides {
            position: relative;
            width: 100%;
            height: 100%;

        }
        
        .carousel-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .carousel-slide.active {
            opacity: 1;
        }
        
        .slide-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            
        }
        
        .slide-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }
        
        .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 100%);
            z-index: 2;
        }
        
        .slide-content {
            position: relative;
            z-index: 3;
            text-align: left;
            color: white;
            max-width: 100%;
            padding: 0 20px;
        }
        
        .content-wrapper {
            animation: slideUp 0.8s ease-out;
        }
        
        .slide-title {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            line-height: 1.2;
        }
        
        .slide-description {
            font-size: clamp(1rem, 2vw, 1.25rem);
            margin-bottom: 2rem;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
            line-height: 1.6;
            max-width: 100% !important;
            margin-left: auto;
            margin-right: auto;
            text-align: left !important;
        }
        
        .slide-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(45deg, #ff6b6b, #ffd93d);
            color: #000;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        
        .slide-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
            background: linear-gradient(45deg, #ff5252, #ffeb3b);
        }
        
        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            z-index: 4;
        }
        
        .carousel-btn {
            background: rgba(255,255,255,0.2);
            border: 2px solid rgba(255,255,255,0.3);
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
        }
        
        .carousel-btn:hover {
            background: rgba(255,255,255,0.3);
            border-color: rgba(255,255,255,0.5);
            transform: scale(1.1);
        }
        
.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 4;
    margin: 0;
    padding: 0;
    list-style: none;
}

.indicator.front {
    display: inline-block; 
    width: 3em !important;
    height: 3px !important;
    margin: 0 6px;
    border-radius: 0;
    border: none;
    background: rgba(255,255,255,0.5);
    cursor: default;
    transition: all 0.3s ease;
    vertical-align: middle;
    opacity: 0.5;
}
        
        .indicator.active,
        .indicator:hover {
            background: white;
            opacity: 1;
        }
        
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-carousel {
                height: 41em;
            }
            
            .carousel-nav {
                padding: 0 10px;
            }
            
            .carousel-btn {
                width: 50px;
                height: 50px;
            }
            
            .slide-content {
                padding: 0 15px;
            }
        }

        .red {
            color: red;
            font-weight: bolder;
        }

 