/* .hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.carousel,
.carousel-inner,
.carousel-inner .item {
    height: 100%;
}

.carousel-inner .item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.carousel-caption {
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    text-align: left;
}

.carousel-caption h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
}

.carousel-caption p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn-hero {
    background-color: #ff4081;
    color: white;
    padding: 10px 30px;
    font-size: 18px;
    border: none;
    border-radius: 25px;
    transition: background-color 0.3s ease;
}

.btn-hero:hover {
    background-color: #e91e63;
    color: white;
}

.carousel-control {
    width: 5%;
}

.carousel-indicators {
    bottom: 30px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.carousel-caption {
    z-index: 2;
} */