body {
    overflow-x: hidden;
  }
  
.navbar-landing {
    transition: all 0.3s ease;
    background-color: transparent;
}

[data-aos] {
    max-width: 100%;
    box-sizing: border-box;
}

.btn-apply-now {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(90deg, #213f99, #4dabf7); /* gradasi biru */
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    font-size: 20px;
    transition: 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-apply-now:hover {
    opacity: 0.9;
    transform: scale(1.03);
}


.bubble {
    position: relative;
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.08);
}

.bubble::after {
    content: "";
    position: absolute;
    bottom: 1rem;
    width: 0;
    height: 0;
    border: 12px solid transparent;
}

.bubble-left::after {
    left: -1rem;
    border-right-color: #fff;
    border-left: 0;
}

.bubble-right::after {
    right: -1rem;
    border-left-color: #fff;
    border-right: 0;
}

.testimonial-img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 50%;
    background-color: #1C3FA8;
    padding: 5px;
}

.testimonial-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.reverse {
    flex-direction: row-reverse;
}

td, p{
    font-size: 15px;
}

#navbar {
    position: fixed;
    top: 0;
    transition: top 0.8s ease-in-out;
}

.mobile-on {
    display: none;
}
.mobile-off {
    display: block;
}

.navbar-landing .nav-link,
.navbar-landing .btn-topbar img {
    color: white !important;
}

.principal-card {
    height: 200px; /* atau tinggi yang kamu butuhkan */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    padding: 10px;
}

.principal-card img {
    max-height: 100px;
    object-fit: contain;
    margin-top: auto;
    margin-bottom: auto;
}

.principal-card p {
    margin-top: -40px;
    margin-bottom: 0;
    font-size: 14px;
}

#HallOfFame{
    background-size: 100% 100%;
    background-position: center; 
    background-repeat: no-repeat; 
    margin-left: auto; 
    margin-right: auto; 
    position: relative; 
    z-index: 1;
}

#Testimony{
    background-size: 100% 100%;
    background-position: center; 
    background-repeat: no-repeat; 
    margin-left: auto; 
    margin-right: auto; 
    position: relative; 
    z-index: 1;
}

@media (max-width: 768px) {

    .nav-link::after {
        display: none;
    }

    body {
        width: 100%;
        padding: 0;
        margin: 0;
    }

    #Testimony{
        background-size: cover;
    }

    #HallOfFame{
        background-size: cover;
    }

    .mobile-on {
    display: block;
    }

    .col-lg-3 {
        border-left: none !important;
    }

    .mobile-off {
        display: none;
    }

    #features {
        height: auto;
        padding-bottom: 50px;
        padding-top: 50px;
    }

    .map-wrapper img[alt="Map"] {
        width: 100%;
    }

    .map-wrapper img[alt="Map Marker"] {
        width: 2.5% !important;
    }

    td{
        font-size: 12px;
    }

    #logolight1 {
        display: block;
    }
    #logodark1 {
        display: none;
    }
    
    .mobile-no-margin {
        margin-top: 0 !important;
    }
    .lah {
        margin-top: -100px !important;
    }
    .lah2 {
        margin-top: -60px !important;
    }
    p {
        font-size: 12px;
        font-weight: 300; 
    }
    ul {
        font-size: 12px;
        font-weight: 100; 
    }

}

@media screen and (max-width: 640px)
{
    body, html{
        width: 100vw;
        overflow-x: hidden;
        padding: 0.8em 0;
    }
}

p {
    font-weight: 100; 
}

/* Saat discroll: background putih, teks hitam */
.navbar-scrolled {
    background-color: #fbfbf9;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding-top: 10px; /* Perubahan padding */
    padding-bottom: 10px; /* Perubahan padding */
}

.navbar-scrolled .nav-link,
.navbar-scrolled .btn-topbar img {
    color: black !important;
}

.navbar-landing .navbar-brand img {
    position: relative;
    z-index: 10;
}

.nav-link {
position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px; /* Atur jarak antara garis dan teks */
    height: 2px;
    width: 0%;
    background-color: #213f99;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 50%; /* Atur lebar garis saat hover */
}

.nav-link.active::after {
    width: 50%; /* Atur lebar garis saat active */
}

