
    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');
    
   .carousel-module, .carousel-module * { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 

}
    
    .carousel-module {
        font-family: 'Poppins', sans-serif;
        width: 100%;
        height: 100vh;
        min-height: 600px;
        position: relative;
        overflow: hidden;
        background: #000;
    }
    
    .carousel-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1;
    }
    
    .carousel-slide.active { opacity: 1; z-index: 2; }
    
    .carousel-image { width: 100%; height: 100%; position: relative; }

    .carousel-image img, .video-bg {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .mobile-only { display: none !important; }

    .text-overlay {
        position: absolute;
        top: 15%; 
        left: 5%;
        width: 45%;
        height: 80%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start; 
        color: white;
        z-index: 10;
        pointer-events: none;
    }
    
    .carousel-slide:first-child .text-overlay { display: none; }

    .text-overlay * { pointer-events: auto; }

    .carousel-title {
        font-size: 4rem;
        font-weight: 600;
        line-height: 1.1;
        margin-bottom: 24px;
        letter-spacing: -1px;
    }
    
    .carousel-subtitle {
        font-size: 1.2rem;
        font-weight: 300;
        line-height: 1.8;
        margin-bottom: 55px;
        max-width: 500px;
        color: rgba(255, 255, 255, 0.85);
    }

    .carousel-btn {
        background-color: #cc0000;
        color: #ffffff;
        padding: 10px 20px;
        font-weight: 600;
        font-size: 0.95rem;
        border-radius: 50px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-block;
        width: fit-content;
        text-decoration: none;
        letter-spacing: 0.5px;
    }
    
    .carousel-btn:hover {
        background-color: #ffffff;
        color: #cc0000;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        text-decoration: none;
    }

    .carousel-indicators {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 20px;
        z-index: 12;
    }
    
    .indicator {
        font-size: 1.4rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.3);
        cursor: pointer;
        transition: all 0.4s ease;
        position: relative;
        padding: 5px;
    }

    .indicator.active { color: #ffffff; transform: translateY(-5px); }
    .indicator::after {
        content: ''; width: 0; height: 2px; background-color: #cc0000;
        position: absolute; bottom: -2px; left: 0; transition: width 0.4s ease;
    }
    .indicator.active::after { width: 100%; }

    @media (max-width: 768px) {
        .carousel-module { height: 100vh; height: 100dvh; }
        .desktop-only { display: none !important; }
        .mobile-only { display: block !important; }
        .text-overlay { 
            width: 90%; 
            left: 5%; 
            text-align: center; 
            align-items: center; 
            top: auto;
            bottom: 15%;
            height: auto;
        }
        .carousel-slide:first-child .text-overlay { display: flex !important; }
        .carousel-title { font-size: 2.5rem; }
        .carousel-subtitle { font-size: 1rem; margin-bottom: 30px; }
        .carousel-indicators { gap: 10px; bottom: 20px; }
    }
