.navbar {
    background-color: #fff;
    opacity: 83%;
    height: 80px;

}
.navbar-brand {
    font-weight: 600;
    color: rgb(19, 68, 121);
    font-size: 24px;
    transition: 0.3s color;
}
.Login-button {
    background-color: rgb(19, 68, 121);
    color: #fff;
    font-size: 14px;
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s backround-color;
}

.Login-button:hover {
    background-color: rgb(243, 199, 5);
}

.navbar-toggler {
    border: none;
    font-size: 1.25rem;
}

.navbar-toggler:focus, .btn-close:focus{
    box-shadow: none;
    outline: none;
}

.nav-link {
    color: rgb(0, 0, 0);
    font-weight: 500;
    position: relative;
}
.nav-link:hover, .nav-link.active {
    color: rgb(243, 199, 5);
}

@media (min-width: 991px) {
.nav-link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 2px;
    background-color: rgb(243, 199, 5);
    visibility: hidden;
    transition: 0.1s ease-in-out;
}

.nav-link:hover::before, .nav-link.active::before {
    width: 100;
    visibility: visible;

}
}

.banner {
    height: 70vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('./images/gedungpens.jpg');
    background-size: cover;
    background-position: center;
}

.text-center {
    font-weight: 700;
}

.menu-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px;
    background: #fff;
}

.btn {
    border-radius: 200px;
    background-color: rgb(19, 68, 121);
    color: #fff;
    font-size: 14px;
    padding: 8px 20px;
    text-decoration: none;
    transition: 0.3s backround-color;
    border: none;
    outline: none;
    font-size: large;
    font-weight: 500;
    padding: 15px 25px;
    display: flex;
    justify-content: center;
    gap: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);

}

.btn:hover {
    transform: scale(1.05);
    background-color: rgb(243, 199, 5);
    transition: all 0.3s ease;
}

.con {
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
}

.stat-card {
    border: none;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.8);
    transition: all 0.4s ease-in-out;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transfprm: translateX(-8px) scale(1.03);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.stat-card::after {
    content: "";
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e4fd04, #1100ff);
    opacity: 0.2;
    transition: all 0.5s ease;
}

.stat-card:hover::after {
    top: 0;
}

.start-image {
    width: 65%;
    height: 65%;
}

.cad {
    height: 100%;
    border: none;
    padding: 20px;
}

.p {
    font-weight: 500;
    font-size: xx-large;
}

