/* General Styles */
body {
    font-family: 'Poppins', sans-serif; 
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    background-color: #89afe8; /* Warna hijau cerah */
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid #2268ff; /* Garis bawah warna oranye */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Shadow untuk tampilan lebih menonjol */
    font-family: 'Poppins', sans-serif; /* Gunakan font Poppins di header */
}

/* Logo styling */
.logo img {
    width: 50px;
    height: auto;
}

/* Navigation links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px; /* Spasi antar link */
}

.nav-links li a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    font-weight: 600; /* Tebal dengan font Poppins */
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #0e1570; /* Warna hover kuning */
}

/* Authentication buttons */
.auth-buttons {
    display: flex;
    gap: 35px; /* Spasi antar tombol */
}

.auth-buttons .btn {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600; 
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.auth-buttons .btn-signup {
    color: #0e1570; /* Warna hover kuning */
    background-color: #0e1570; 
    color: #fff;
}

.auth-buttons .btn-login {
    background-color: #0e1570;
    color: #fff;
    border: 2px solid #89afe8;
}

.auth-buttons .btn-signup:hover,
.auth-buttons .btn-login:hover {
    transform: scale(1.05); /* Efek zoom saat dihover */
    background-color: #89afe8; /* Warna hijau tua untuk hover */
    color: #fff;
}

.logo img {
    max-height: 60px;
    margin-right: 30px;
}

nav {
    display: flex;
    align-items: center;
    flex-grow: 1;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.auth-buttons {
    display: flex;
    gap: 15px;
    margin-left: auto; /* This pushes the buttons to the right */
}

.btn {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.btn-signup {
    background-color: #6c63ff;
    color: #fff;
    border-radius: 5px;
}

.btn-login {
    background-color: #fff;
    color: #6c63ff;
    border: 1px solid #6c63ff;
    border-radius: 5px;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px;
    text-align: center;
    background-image: linear-gradient(
        rgba(123, 201, 232, 0.623), rgba(66, 183, 212, 0.5)), /* Overlay warna */
                      url(''); /* Gambar background */
    background-size: cover; /* Gambar menutupi seluruh area */
    background-position: center; /* Gambar di tengah */
    color: #ffffff; /* Teks berwarna putih untuk kontras */
    min-height: 100vh; /* Tinggi minimum 100% dari viewport */
    justify-content: center; /* Pusatkan konten secara vertikal */
}

.hero-text h1 {
    font-size: 2rem;
    margin-bottom: 80px;
    color: #0e1570;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}


.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 50px;
    background-color: #fff;
    text-align: center;
}

.service {
    background-color: #f7f7f7;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

.service h2 {
    font-size: 1.2rem;
    color: #6c63ff;
    margin-bottom: 10px;
}

.service span {
    color: #ff6f61;
}

.partners {
    padding: 50px;
    text-align: center;
}

.partner-logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.partner-logos img {
    max-width: 150px;
    height: auto;
    margin: 10px;
}

.registration {
    background-color: #f7f7f7;
    padding: 50px;
    text-align: center;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding-top: 20px;
}

.step h3 {
    font-size: 1.2rem;
    color: #333;
}

.testimonials {
    padding: 50px;
    text-align: center;
    background-color: #fff;
}

.testimonial {
    background-color: #f7f7f7;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.testimonial-video video {
    max-width: 100%;
    border-radius: 10px;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
}
