/* Jarak antar section */
section {
    margin: 100px 0; /* Tambahkan jarak yang lebih besar antar section */
}

/* General styles */
body {
    font-family: Arial, sans-serif;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Navbar styles */
.navbar {
    background-color: #333;
}

.navbar-nav .nav-link {
    color: #fff;
    margin-right: 1rem;
}

.navbar-nav .nav-link:hover {
    color: #ddd;
}

/* Carousel styles */
.carousel-item {
    height: 600px;
    background-size: cover;
    background-position: center;
}

.carousel-caption {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 1rem;
    border-radius: 5px;
}

/* About Us styles */
.about-us img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}
/* Header Image */
.header-image {
    position: relative;
    height: 400px;
    background-color: #333;
}

.header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.header-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* About Us Section */
.about-us {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.about-us h2, .about-us h3 {
    margin-bottom: 20px;
}

.about-us p {
    margin-bottom: 20px;
}

.about-us ul {
    list-style-type: disc;
    padding-left: 20px;
}

.about-us img {
    max-width: 100%;
    border-radius: 8px;
    animation: fadeInRight 1s ease-in-out;
}
/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hidden {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.visible {
    opacity: 1;
    animation: fadeInUp 1s ease-in-out;
}

/* Card hover effect */
.card {
    transition: transform 0.3s ease-in-out;
}

.card:hover {
    transform: translateY(-10px);
}

/* Footer styles */
.footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
}

.footer a {
    color: #fff;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}
