body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #f4f4f9;
    color: #333;
}
header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
}
header img {
    width: 80px !important;
    height: 80px !important;
    object-fit: contain !important;
    border-radius: 50%;
}

nav a {
    margin: 0 10px;
    text-decoration: none;
    color: white;
    font-weight: bold;
}
.carousel-inner img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}
.carousel-caption {
    padding: 10px;
    border-radius: 10px;
}
.carousel-caption h5 {
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
}
.carousel-caption p {
    font-size: 1.2rem;
    font-weight: 400;
}
.content {
    width: 80%;
    max-width: 800px;
    margin: 20px 0;
}
.stats {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
}
.stats div {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    width: 100px;
    color: #007bff;
    transition: transform 0.3s ease-in-out;
}
.stats div:hover {
    transform: scale(1.1);
}
.periods {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
}
.periods .card {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    width: 100%;
    margin: 10px;
    transition: transform 0.3s ease-in-out;
}
.periods .card:hover {
    transform: translateY(-10px);
}
.periods button {
    margin-top: 10px;
    padding: 5px 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}
.periods button:hover {
    background-color: #0056b3;
}

.navigation {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}
.navigation i {
    margin: 0 10px;
    font-size: 24px;
    cursor: pointer;
    color: #007bff;
    transition: color 0.3s ease-in-out;
}
.navigation i:hover {
    color: #0056b3;
}
/* Styles for submenu dropdown */
.dropdown-menu {
    background-color: #007bff; /* blue background */
}

.dropdown-item {
    color: black; /* black text */
}

.dropdown-item:hover {
    color: white; /* white text on hover */
    background-color: #0056b3; /* darker blue on hover */
}
footer {
    margin: 20px 0;
    color: #6c757d;
}
@media (max-width: 768px) {
    .periods {
        flex-direction: column;
        align-items: center;
    }
    .navbar-toggler {
        border: none;
        outline: none;
    }
    .navbar-toggler-icon {
        color: white;
    }
    .carousel-inner img {
height: 50vh; /* Sesuaikan tinggi banner untuk mobile */
}
    
}