* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
}

header {
    background: #003366;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hero {
    background-image: url('background.png'); /* Ganti dengan URL gambar yang sesuai */
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Warna overlay untuk kontras */
    z-index: 1; /* Mengatur z-index agar overlay di bawah konten */
}

.hero-content {
    position: relative; /* Agar konten berada di atas overlay */
    z-index: 2; /* Mengatur z-index agar konten terlihat di atas overlay */
}

.hero-content h2 {
    font-size: 3em;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.2em;
    margin-bottom: 20px;
}


.btn {
    background: #25D366;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 20px;
}

section {
    padding: 60px 20px;
}

h3 {
    margin-bottom: 20px;
    font-size: 2em;
    text-align: center;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.service-item {
    background: #f4f4f4;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s;
}

.service-item:hover {
    transform: scale(1.05);
}
#about {
    padding: 60px 20px;
    background: #f9f9f9;
}

#about h3 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 30px;
    color: #003366;
}

#about p {
    margin-bottom: 20px;
    font-size: 1.1em;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

#about ul {
    list-style-type: none;
    padding: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

#about ul li {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    margin: 10px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

#about ul li:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

#about h4 {
    margin-top: 30px;
    font-size: 2em;
    color: #003366;
    border-bottom: 2px solid #25D366;
    padding-bottom: 10px;
}

.team {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

.team-member {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    margin: 10px;
    text-align: center;
    width: 200px;
    transition: transform 0.3s;
}

.team-member:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}


.team {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.team-member {
    margin: 10px;
    padding: 20px;
    background: #f4f4f4;
    border-radius: 10px;
    text-align: center;
    flex: 1 0 200px; /* Ukuran minimum anggota tim */
}

.testimonial-slider {
    display: flex;
    overflow: hidden;
    justify-content: center;
    align-items: center;
}

.testimonial-item {
    display: none;
    font-style: italic;
    margin: 0 15px;
    text-align: center;
}

.contact-info {
    margin-top: 20px;
    text-align: center;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

form input, form textarea {
    width: 100%;
    max-width: 400px;
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    padding: 10px 20px;
    background: #003366;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

form button:hover {
    background: #25D366;
}

footer {
    background: #003366;
    color: white;
    text-align: center;
    padding: 20px;
}

.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    padding: 10px;
    border-radius: 5px;
    text-decoration: none;
}

@media (max-width: 768px) {
    nav {
        display: none;
        flex-direction: column;
    }

    nav.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }
}
