body{
    background:#f4f6f9;
}

/* NAVBAR */
.navbar{
    background: rgba(0,0,0,0.5);
}
.navbar a{
    color:white !important;
}

/* HERO */
.hero{
    position: relative;
    height: 720px;
    background: var(--bg-beranda) center center/cover no-repeat;
    display:flex;
    align-items:center;
}

/* overlay gelap */
.hero::before{
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    background:linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.2));
}

/* isi hero */
.hero-content{
    position:relative;
    color:white;
    max-width:650px;
    margin-left:8%;
}

.hero h1{
    font-size:50px;
    font-weight:bold;
}

.hero p{
    margin:20px 0;
    font-size:18px;
}

/* section */
.section{
    padding:80px 0;
}

/* layanan */
.card-layanan:hover{
    transform:translateY(-8px);
    transition:.3s;
}

/* CARD PROFIL BIAR SAMA SEMUA */
.card-hover {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-hover .card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

/* Tinggi minimum biar rapi */
.card-hover {
    min-height: 170px;
}

/* Hover effect biar konsisten */
.card-hover:hover {
    transform: translateY(-8px);
    transition: 0.3s;
}

/* Biar teks lebih rapi */
.card-hover h5 {
    font-size: 16px;
    margin-top: 5px;
}

.card-hover p {
    font-size: 14px;
    margin: 0;
}

.card-hover{
    cursor:pointer;
}