body {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.navbar {
    background-color: #343a40; /* Custom navbar background color */
}

.navbar-brand, .navbar-nav .nav-link {
    color: #ffffff; /* Custom text color for navbar items */
}

.navbar-brand:hover, .navbar-nav .nav-link:hover {
    color: #f8f9fa; /* Custom hover color for navbar items */
}

/* Custom styles */
section {
    padding: 60px 0;
}
.service-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    height: 100%;
}
.testimonial-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}
.gallery-img {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}
.gallery-img img {
    width: 400px;
    height: 300px;
    transition: transform 0.3s;
    object-fit: cover;
    display: block;

}
.faq-item {
    margin-bottom: 15px;
}
.faq-question {
    font-weight: bold;
    color: #28a745;
}

.navbar-light {
    background-color: #fff !important;
    color: #000 !important;
    transition: all 0.3s ease;
}

.navbar-dark {
    background-color: #000 !important;
    color: #fff !important;
    transition: all 0.3s ease;
}

/* Untuk section dengan background gelap */
.dark-section {
    background-color: #111;
    color: white;
}

/* Untuk section dengan background terang */
.light-section {
    background-color: #fff;
    color: black;
}

footer {
    background-color: #343a40; /* Custom footer background color */
    color: #ffffff; /* Custom footer text color */
    padding: 20px 0; /* Padding for footer */
    text-align: center; /* Center text in footer */
}