.hero{
    background-image: url('../img/banner.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f8f9fa;

    min-height: 350px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
}

.hero::before{
    content: "";
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;

    background: rgba(0,0,0,0.5);
}

.hero .container{
    position: relative;
    z-index: 2;
}

.card{
    transition: 0.3s;
}

.card:hover{
    transform: translateY(-5px);
}
.carousel-img{
    height: 550px;
    object-fit: cover;
}

.carousel-caption{
    background: rgba(0,0,0,0.5);
    padding: 20px;
    border-radius: 10px;
}

.carousel-caption h2{
    font-weight: bold;
}
@media (max-width: 768px){

    .carousel-img{
        height: 250px;
    }

    .carousel-caption h2{
        font-size: 20px;
    }

    .carousel-caption p{
        font-size: 12px;
    }

}
.fitur-section{
    margin-top: 60px;
}
.card{
    transition: all 0.3s ease;
}

.card:hover{
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}