
.carousel-hero-banner {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    color: var(--text-color);
}

.carousel-images {
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s cubic-bezier(0.42, 0, 0.65, 1.39);
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    z-index: 1;
}

.slide-content {
   position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    background-color: var(--overlay-bg);
    border-radius: 5px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgb(25 25 25);
}

.slide-content h1 {
    font-size: 100px;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 98%);
    color:#ffffff;
}

.slide-content p {
    font-size: 22px;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        width: 95%;
            text-align: center;
            margin: 0 auto;
            font-weight:600;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.nav-button {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--text-color);
    border: none;
    padding: 1rem 1.5rem;
    font-size: 2rem;
    transition: background-color 0.3s ease;
    z-index: 3;
    display: none;
}

.nav-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
    display: none;
}

.dot.active, .dot:hover {
    background-color: var(--primary-color);
    display: none;
}