/* Reset dan dasar */
/* Umum */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    color: #1d1d1d;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}
.header {
    background-color: #fff;
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Struktur umum navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: #fff;
    position: relative;
    z-index: 10;
}

.logo {
    font-size: 20px;
    font-weight: bold;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.navbar a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
}

/* Hamburger menu (garis tiga) */
.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

#menu-toggle {
    display: none;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 150px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 15px;
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #fff;
        padding: 20px;
        position: absolute;
        top: 60px;
        left: 0;
    }

    #menu-toggle:checked + .hamburger + .nav-links {
        display: flex;
    }

    .dropdown-menu {
        position: relative;
        box-shadow: none;
    }

    .dropdown:hover .dropdown-menu {
        display: none;
    }

    .dropdown.open .dropdown-menu {
        display: block;
    }

    .fotoutama {
        height: 40vh;
        width: 100%;
        overflow: hidden; /* jika gambar terlalu besar */
    }

    .hero-image {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .overlay-text .text {
        font-size: 14px; /* atau 12px, sesuai kebutuhan */
        line-height: 1.6; /* opsional, buat jarak antar baris tetap enak dibaca */
    }
}
/* Tambahkan ini jika belum ada */
.dropdown.open .dropdown-menu {
    display: block;
}

@media (max-width: 768px) {
    .dropdown-menu {
        display: none;
        flex-direction: column;
        background-color: #fff;
        padding-left: 20px;
    }

    .dropdown.open .dropdown-menu {
        display: flex;
    }
}

/* HERO */
.hero {
    background-color: #e8f4fd;
    padding: 100px 20px;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    color: #014f86;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    color: #333;
}

/* TENTANG KAMI */
.tentang {
    background-color: #ffffff;
    padding: 80px 20px;
}

.tentang-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.tentang-gambar {
    flex: 1 1 45%;
    text-align: center;
}

.tentang-gambar img {
    max-width: 100%;
    border-radius: 10px;
}

.tentang-teks {
    flex: 1 1 45%;
    padding: 20px;
}

.tentang-teks h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #014f86;
}

.tentang-teks p {
    font-size: 1rem;
    color: #333;
    text-align: justify;
}
@media (min-width: 768px) {
    .tentang-teks p {
        font-size: 1.1rem;
    }

    .tentang-teks h2 {
        font-size: 2.2rem;
    }
}

/* Keunggulan */
.keunggulan {
    background: #f9fbfd;
    padding: 60px 0;
    text-align: center;
}

.keunggulan h2 {
    font-size: 28px;
    margin-bottom: 40px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.card {
    background: #eaf3f9;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.card img {
    width: 24px;
    margin-bottom: 10px;
}

.card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #111;
}

.card p {
    font-size: 14px;
    color: #555;
}
.keunggulan-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.keunggulan-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.keunggulan-row .card {
    flex: 1 1 250px;
    max-width: 300px;
    background-color: #e0f0ff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}
.icon-check {
    width: 40px;
    height: 40px;
}

/* Fitur */
.fitur {
    background-color: #e0f0ff;
    padding: 60px 20px;
    text-align: center;
}

.fitur h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #014f86;
}

.fitur-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.fitur-card {
    background-color: #ffffff;
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.fitur-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #014f86;
}

.fitur-card p {
    font-size: 15px;
    color: #333;
}

/* CTA */
.cta {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    background-color: #fff; /* ini background luar: putih aja */
}

.cta-box {
    background-color: #014f86; /* ini warna kotaknya → biru sesuai desain */
    color: #fff;
    max-width: 1000px;
    width: 100%;
    padding: 40px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-text h2 {
    margin: 0;
    font-size: 1.8rem;
}

.cta-text p {
    font-size: 1rem;
    margin-top: 10px;
}
.cta-text {
    flex: 1 1 60%;
    max-width: 600px; /* ⬅ Batas lebar biar teks ga terlalu lebar */
}

.btn-biru {
    background-color: #1e90ff; /* ganti sesuai warna biru terang pilihan kamu */
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
    display: inline-block;
}

.btn-biru:hover {
    background-color: #0077cc; /* versi hover lebih gelap */
}

@media (max-width: 768px) {
}

/* Responsive */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar .menu a {
        margin: 10px 10px 0 0;
        display: inline-block;
    }

    .cta-flex {
        align-items: center;
        text-align: center;
    }
}

/* Navbar */
/* Navbar Umum */

/* Hero */
.hero {
    text-align: center;
    padding: 30px 20px;
}

.hero h1 {
    font-size: 2rem;
    color: #2288ee;
}

.hero p {
    margin-top: 10px;
    font-size: 1, 5rem;
    color: #ffffff;
}

.hero-content {
    position: relative;
    margin-top: 30px;
    border-radius: 15px;
    overflow: hidden;
    max-width: 1200px;
    margin-inline: auto;
}

.hero-image {
    width: 100%;
    display: block;
    object-fit: cover;
}

.hero-text p {
    color: #1a2a4e;
}

.hero-text p {
    color: #1a2a4e;
}

.overlay-text {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2; /* ⬅️ Ini penting agar teks di depan gambar */
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.55); /* ⬅️ Latar belakang gelap transparan */
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    text-align: center;
}

.overlay-text {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;

    /* INI yang diubah — gradient kiri ke kanan */
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.7),
        rgba(0, 0, 0, 0.2)
    );

    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    text-align: center;
}

.cta-button {
    margin-top: 20px;
    padding: 12px 30px;
    background-color: #154c9e;
    color: white;
    border: none;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    z-index: 3;
}

.cta-button:hover {
    background-color: #1b5fd3;
}

.text {
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 15px;
    }

    .overlay-text p {
        font-size: 1rem;
    }
}

/* layanan kami */
.layanan-kami {
    background-color: #3a86ff;
    text-align: center;
    padding: 60px 20px;
    color: white;
}

.layanan-kami h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.layanan-kami p {
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.layanan-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.layanan-card {
    background-color: white;
    color: #1f1f1f;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
}

.layanan-card:hover {
    transform: translateY(-5px);
}

.layanan-card img {
    width: 80px;
    margin-bottom: 20px;
   
}

.layanan-card h3 {
    color: #1f3a8a;
    font-size: 18px;
    margin-bottom: 12px;
}

.layanan-card p {
    font-size: 14px;
    line-height: 1.6;
}


.layanan-card-2 {
    background-color: white;
    color: #1f1f1f;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
}

.layanan-card-2 img {
    width: 80px;
    margin-bottom: 20px;
    margin-top:16px;
   
}

.layanan-card-2 h3 {
    color: #1f3a8a;
    font-size: 18px;
    margin-bottom: 12px;
}

.layanan-card-2 p {
    font-size: 14px;
    line-height: 1.6;
}


.layanan-card-4 {
    background-color: white;
    color: #1f1f1f;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
}

.layanan-card-4 img {
    width: 80px;
    margin-bottom: 20px;
    margin-top:1px;
    width: 120px;   /* perbesar lebar gambar */
  
}

.layanan-card-4 h3 {
    color: #1f3a8a;
    font-size: 18px;
    margin-bottom: 12px;
}

.layanan-card-4 p {
    font-size: 14px;
    line-height: 1.6;
}

.layanan-kami {
    background: url("images/gambar.png") no-repeat center center;
    background-size: cover;
    background-color: #3a86ff;
    text-align: center;
    padding: 60px 20px;
    color: white;
    position: relative;
}

.layanan-kami::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(58, 134, 255, 0.85); /* biru dengan transparansi */
    z-index: 1;
}

.layanan-kami h2,
.layanan-kami p,
.layanan-wrapper {
    position: relative;
    z-index: 2;
}

/* Responsive */
@media (max-width: 768px) {
    .layanan-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Testimoni Klien */
/* Testimoni Klien Kami */
.testimoni-klien {
    text-align: center;
    padding: 100px 20px;
    background-color: #f8f9fb;
    margin-top: 45px;
}

.testimoni-klien h2 {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 30px;
}

.sponsor-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin: 40px 0 20px 0;
}

.sponsor-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 36px;
    margin-bottom: 0;
}

.sponsor-row img {
    width: 110px;
    height: auto;
    object-fit: contain;
}

/* Desktop: 2 baris (8 logo atas, 3 logo bawah) */
@media (min-width: 769px) {
    .sponsor-row-1,
    .sponsor-row-2 {
        display: flex;
        gap: 36px;
        margin-bottom: 0;
    }
    .sponsor-row-3 {
        gap: 48px;
        margin-top: 24px;
    }
    /* Gabungkan baris 1 & 2 jadi 1 baris 8 logo */
    .sponsor-row-1,
    .sponsor-row-2 {
        display: contents;
    }
    .sponsor-row-3 {
        display: flex;
        justify-content: center;
    }
}

/* Mobile: 3 baris (4-4-3) */
@media (max-width: 768px) {
    .sponsor-wrapper {
        gap: 12px;
    }
    .sponsor-row {
        gap: 18px;
        flex-wrap: nowrap;
        margin-bottom: 0;
    }
    .sponsor-row img {
        width: 80px;
    }
}
.sponsor-wrapper-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.sponsor-wrapper-3 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.sponsor-wrapper-4 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.sponsor-logo-1 {
    width: 450px; /* atur ukuran lebar */
    height: auto; /* tinggi menyesuaikan */
    margin: 10px; /* beri jarak antar logo */
    object-fit: contain; /* biar tidak gepeng */
    margin-left: -530px;
    margin-top: -20px;
}

.sponsor-logo-2 {
    width: 450px; /* atur ukuran lebar */
    height: auto; /* tinggi menyesuaikan */
    margin: 10px; /* beri jarak antar logo */
    object-fit: contain; /* biar tidak gepeng */
    margin-top: -300px;
    margin-left: 360px;
}

.sponsor-logo-3 {
    width: 140px; /* atur ukuran lebar */
    height: auto; /* tinggi menyesuaikan */
    margin: 10px; /* beri jarak antar logo */
    object-fit: contain; /* biar tidak gepeng */
    margin-top: -320px;
    margin-left: 960px;
}

.sponsor-logo-4 {
    width: 320px; /* atur ukuran lebar */
    height: auto; /* tinggi menyesuaikan */
    margin: 10px; /* beri jarak antar logo */
    object-fit: contain; /* biar tidak gepeng */
    margin-top: -120px;
    margin-left: 50px;
}

.jdl {
    margin-top: -50px;
}

/* Testimoni Klien Kami CARD */
.testimoni-card {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}

.testimoni-card h2 {
    font-size: 2.2rem;
    color: #007bff;
    margin-bottom: 40px;
}

.testimoni-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.testi-box {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px; /* diperbesar dari 300px ke 400px */
    padding: 35px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testi-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.stars {
    color: #ffc107;
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.testi-text {
    font-size: 15px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.6;
}

.nama {
    font-weight: bold;
    font-size: 18px;
    color: #007bff;
    margin-bottom: 5px;
}

.jabatan {
    font-size: 14px;
    color: #666;
}

/* Responsive: Satu kolom di layar kecil */
@media (max-width: 768px) {
    .testimoni-container {
        flex-direction: column;
        align-items: center;
    }

    .testi-box {
        width: 90%;
        max-width: 100%;
    }
}

/* Testioni klien Last*/
.konsultasi-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

.konsultasi-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding-right: 0.7rem;
    padding-left: 0.7rem;
}

.konsultasi-text {
    flex: 1;
    min-width: 280px;
    background-color: #2d75db;
    padding: 30px 30px;
    border-radius: 12px;
    text-align: center;
    color: white;
    max-width: 830px; /* batasi lebar maksimal */
    margin: 0 auto; /* posisi di tengah */
    margin: 0 auto;
}

.konsultasi-text h2 {
    font-size: 24px;
    line-height: 1.5;
}

.konsultasi-text h2 span {
    font-weight: bold;
    font-size: 30px;
    display: block;
    margin-top: 5px;
}

.wa-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: white;
    color: #333;
    padding: 10px 16px;
    margin-top: 20px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.wa-button:hover {
    background-color: #f0f0f0;
}

.wa-button img {
    width: 20px;
    height: 20px;
}

/* Konten video */
.konsultasi-video {
    max-width: 370px;
    aspect-ratio: 9 / 16; /* Ukuran vertikal seperti smartphone */
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(7, 7, 7, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-84px);
    background-color: #000; /* fallback jika video gagal */
}

.konsultasi-video video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Pastikan video mengisi penuh container */
    border-radius: 24px;
}

/* Responsive */
@media (max-width: 768px) {
    .konsultasi-container {
        flex-direction: column;
        align-items: center; /* penting agar anaknya sejajar di tengah */
        text-align: center;
    }

    .konsultasi-text {
        text-align: center;
        align-items: center;
        justify-content: center;
        display: flex;
        flex-direction: column;
    }

    .konsultasi-text h2 {
        font-size: 20px;
    }

    .konsultasi-text h2 span {
        font-size: 24px;
    }

    .konsultasi-text {
        font-size: 24px;
    }

    .konsultasi-video {
        transform: none; /* jangan geser kalau layar kecil */
    }
}

/* Responsive untuk .tentang-container */
@media (max-width: 900px) {
    .tentang-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        text-align: center;
    }
    .tentang-gambar,
    .tentang-teks {
        flex: 1 1 100%;
        max-width: 100%;
        padding: 0;
    }
}

/* Responsive untuk .keunggulan-row */
@media (max-width: 900px) {
    .keunggulan-row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .keunggulan-row .card {
        max-width: 100%;
        width: 100%;
    }
}

/* Responsive untuk .fitur-grid */
@media (max-width: 900px) {
    .fitur-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Responsive untuk .cta-box */
@media (max-width: 900px) {
    .cta-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 15px;
        gap: 20px;
    }
    .cta-text {
        max-width: 100%;
    }

    .cta-button {
        margin-top: 10px;
        padding: 8px 16px;
        background-color: #154c9e;
        color: white;
        border: none;
        text-decoration: none;
        font-weight: bold;
        border-radius: 8px;
        transition: background-color 0.3s ease;
        z-index: 3;
    }

    .overlay-text a {
        font-size: 14px;
    }
}

/* Responsive untuk .hero-content */
@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .cta-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 15px;
        gap: 5px;
    }

    .cta-button {
        margin-top: 10px;
        padding: 8px 16px;
        background-color: #154c9e;
        color: white;
        border: none;
        text-decoration: none;
        font-weight: bold;
        border-radius: 8px;
        transition: background-color 0.3s ease;
        z-index: 3;
    }
}

/* Sponsor Responsive */
.sponsor-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.sponsor-row {
    display: flex;
    gap: 24px;
}

.sponsor-wrapper img {
    width: 110px;
    height: auto;
    object-fit: contain;
    margin: 0;
}

/* Desktop: 1 baris */
@media (min-width: 769px) {
    .sponsor-wrapper {
        flex-direction: row;
    }
    .sponsor-row {
        gap: 24px;
    }
    .sponsor-row:not(:first-child) {
        display: flex;
    }
    .sponsor-wrapper {
        flex-wrap: nowrap;
    }
    .sponsor-row {
        flex-direction: row;
    }
    .sponsor-wrapper {
        gap: 0;
    }
    .sponsor-row {
        gap: 0;
    }

    
    .sponsor-wrapper {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
    }
    .sponsor-row {
        display: contents;
    }


    .sponsor-row img.sp5{
      width: 180px;
      
    }
}



/* Mobile: 3 baris (4-4-3) */
@media (max-width: 768px) {
    .sponsor-wrapper {
        flex-direction: column;
        gap: 12px;
    }
    .sponsor-row {
        display: flex;
        justify-content: center;
        gap: 18px;
        margin-bottom: 0;
    }
    .sponsor-row img {
        width: 80px;
    }
}


@media (max-width: 992px) {
    .sponsor-wrapper {
        flex-direction: column;
        gap: 12px;
    }
    .sponsor-row {
        display: flex;
        justify-content: center;
        gap: 18px;
        margin-bottom: 0;
    }
    .sponsor-row img {
        width: 80px;
    }
}

@media (max-width: 480px) {
    .sponsor-wrapper {
        flex-direction: column;
        gap: 12px;
    }
    .sponsor-row {
        display: flex;
        justify-content: center;
        gap: 18px;
        margin-bottom: 0;
    }
    .sponsor-row img {
        width: 80px;
    }
}


@media (max-width: 1200px) {
    .sponsor-wrapper {
        flex-direction: column;
        gap: 12px;
    }
    .sponsor-row {
        display: flex;
        justify-content: center;
        gap: 18px;
        margin-bottom: 0;
    }
    .sponsor-row img {
        width: 80px;
    }
}





