/*-------------------------------------------------------------------------------*/
/*----- CAROUSEL SECTION -----*/
    #my-carousel {
        position: relative;
        width: 100vw;
        height: calc(100vh - 80px);
        overflow: hidden;
        flex-grow: 1;
    }

    .carousel-box {
        position: relative;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .carousel-slide {
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background-size: cover;
        background-position: center;
        opacity: 0;
        transition: opacity 1.5s ease-in-out;
        display: none;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
        
    }

    .carousel-slide.active {
        opacity: 1;
        display: flex;
    }

    .slide-content {
        max-width: 90%;
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .slide-content h1 {
        font-size: 4.5rem;
        margin-bottom: 20px;
        text-shadow: 0 2px 10px rgba(0,0,0,0.5);
        color: white;
    }

    .slide-content p {
        font-size: 1.8rem;
        margin-bottom: 40px;
        max-width: 800px;
        color: white;
        text-align: center;
    }

    .cta-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .cta-primary {
        background-color: var(--accent-color);
        color: white;
        padding: 15px 40px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        transition: background 0.3s;
    }

    .cta-primary:hover { 
        background-color: var(--accent-hover);
        color: black;
        
    }

    .cta-secondary {
        background-color: rgba(255,255,255,0.2);
        color: white;
        padding: 15px 40px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        border: 1px solid white;
        transition: background 0.3s;
    }

    .cta-secondary:hover { 
        background-color: rgba(255,255,255,0.4); 
    }

    .carousel-prev, .carousel-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0,0,0,0.3);
        color: white;
        border: none;
        width: 60px; height: 60px;
        border-radius: 50%;
        font-size: 2rem;
        cursor: pointer;
        z-index: 10;
        transition: background 0.3s;
    }

    .carousel-prev:hover, .carousel-next:hover { 
        background: rgba(0,0,0,0.6); 
    }

    .carousel-prev { left: 30px; }
    .carousel-next { right: 30px; }

    .carousel-dots {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 12px;
        z-index: 10;
    }

    .dot {
        width: 12px; height: 12px;
        background: rgba(255,255,255,0.5);
        border-radius: 50%;
        cursor: pointer;
        transition: background 0.3s;
    }

    .dot.active { 
        background: white; 
    }

    @media (max-width: 768px) {
        .slide-content h1 { font-size: 3rem; }
        .slide-content p { font-size: 1.4rem; }
        .cta-buttons { flex-direction: column; align-items: center; }
    }
/*-------------------------------------------------------------------------------*/