/* ===============================
   GOOGLE FONT
================================ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700&family=Inter:wght@400;500&display=swap');

/* ===============================
   GLOBAL
================================ */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
    color: #212529;
    line-height: 1.6;
    margin: 0;
}

a {
    text-decoration: none;
}

/* ===============================
   NAVBAR
================================ */
.navbar {
    padding: 18px 0;
    background-color: #180448;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.4rem;
    color: #ffffff !important;
}

.navbar-nav .nav-link {
    color: #ffffff !important;
    font-weight: 500;
    margin-left: 22px;
    transition: 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #dbe9ff !important;
}

/* ===============================
   HERO SECTION
================================ */
.hero {
    position: relative;
    min-height: 100vh;
    background:
        linear-gradient(
            rgba(13, 110, 253, 0.5),
            rgba(19, 20, 21, 0.7)
        ),
        url("assets/img/hero.jpg") center/cover no-repeat;

    display: flex;
    align-items: center;
    padding-left: 8%;
    color: #ffffff;
}

/* Overlay tambahan (opsional, kalau mau lebih gelap) */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 20, 60, 0.4);
}

/* ===============================
   HERO CONTENT
================================ */
.hero-content {
    position: relative;
    max-width: 520px;
    z-index: 2;
}

.hero-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 28px;
}

/* ===============================
   HERO BUTTON
================================ */
.btn-hero {
    display: inline-block;
    background: #f9a825;
    color: #1a1a1a;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-hero:hover {
    background: #ffb300;
    transform: translateY(-2px);
}

/* ==============================
   HERO SECTION (WITH IMAGE)
================================ */
.hero {
    background-image:
        linear-gradient(
            rgba(13, 110, 253, 0.25),
            rgba(19, 20, 21, 0.35)
        ),
        url("img/indibizgmbr.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: #ffffff;
}




/* ===============================
   BUTTON
================================ */
.btn-primary {
    background-color: #ee9612;
    border: none;
    padding: 12px 34px;
    border-radius: 30px;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #084298;
}

/* ===============================
   SECTION
================================ */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 55px;
}

.section-title h2 {
    font-weight: 700;
    color: #0d6efd;
}

.section-title p {
    color: #6c757d;
}

/* ===============================
   CARD
================================ */
.card {
    background-color: #f1f6ff; /* biru muda */
    border: none;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    padding: 35px 25px;
}

.card:hover {
    transform: translateY(-8px);
    background-color: #e7efff;
}


/* ===============================
   FOOTER
================================ */
footer {
    background-color: #0a58ca;
    color: #ffffff;
    padding: 45px 0;
}

footer p {
    margin: 0;
    font-size: 0.9rem;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .navbar-nav .nav-link {
        margin-left: 0;
        padding: 10px 0;
    }
}
/* ===============================
   ICON CIRCLE
================================ */
.icon-circle {
    width: 60px;
    height: 60px;
    background-color: #e7efff;
    color: #0d6efd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 15px;
    font-weight: bold;
}

/* ===============================
   ARTICLE BOX
================================ */
.article-box {
    background-color: #f1f6ff;
    padding: 25px;
    border-radius: 14px;
    height: 100%;
    transition: 0.3s ease;
}

.article-box:hover {
    background-color: #e7efff;
    transform: translateY(-6px);
}

.article-box h6 {
    font-weight: 700;
    color: #0d6efd;
}

/* ===============================
   CONTACT INFO
================================ */
.contact-item {
    margin-bottom: 20px;
}

.contact-item strong {
    display: block;
    color: #0d6efd;
}
/* ===============================
   SCROLL ANIMATION
================================ */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.9s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Variasi animasi */
.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.9s ease;
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.9s ease;
}

.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}
/* GOOGLE MAPS */
#kontak iframe {
    border-radius: 14px;
}

/* ===== TENTANG ===== */
.tentang-section {
    padding: 80px 5%;
    background: #f8fafc;
}

.tentang-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: auto;
}

/* IMAGE */
/* IMAGE */
.tentang-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.tentang-image img {
    width: 100%;
    max-width: 520px;      /* batas max di desktop */
    height: auto;          /* tinggi otomatis */
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    object-fit: cover;
}


/* CONTENT */
.tentang-content {
    flex: 1;
}

.tentang-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0d6efd;
    margin-bottom: 10px;
}

.tentang-content .subtitle {
    color: #6c757d;
    font-size: 15px;
    margin-bottom: 30px;
}

/* CARDS */
.tentang-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.tentang-card {
    background: #fff;
    padding: 22px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    transition: 0.3s;
}

.tentang-card:hover {
    transform: translateY(-5px);
}

.tentang-card .icon {
    font-size: 26px;
    margin-bottom: 10px;
}

.tentang-card h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.tentang-card p {
    font-size: 13px;
    color: #6c757d;
    line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .tentang-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .tentang-image img {
        max-width: 100%; 
        margin-bottom: 30px;
    }
}
/* ===== LAYANAN HORIZONTAL SCROLL + BUTTON ===== */
.layanan-wrapper {
    position: relative;
}

.layanan-scroll {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 50px;
}

.layanan-scroll::-webkit-scrollbar {
    display: none;
}

/* CARD */
.layanan-card {
    flex: 0 0 calc(33.333% - 16px);
    background: #f2f6ff;
    border-radius: 18px;
    padding: 30px 25px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.layanan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.layanan-card h5 {
    margin-top: 15px;
    font-weight: 700;
}

/* ICON */
.icon-circle {
    width: 60px;
    height: 60px;
    background: #e8f0ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 12px;
}

/* BUTTON */
.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #0d6efd;
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    z-index: 10;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.slide-btn.left {
    left: 0;
}

.slide-btn.right {
    right: 0;
}

.slide-btn:hover {
    background: #0a58ca;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .layanan-card {
        flex: 0 0 70%;
    }
}

@media (max-width: 576px) {
    .layanan-card {
        flex: 0 0 85%;
    }
    .slide-btn {
        display: none; /* mobile pakai swipe */
    }
}
/* LAYANAN */
.layanan-wrapper {
    position: relative;
}

.layanan-scroll {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 50px;
}
.layanan-scroll::-webkit-scrollbar {
    display: none;
}

.layanan-card {
    min-width: 300px;
    background: #f2f6ff;
    border-radius: 18px;
    padding: 30px 25px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.layanan-card:hover {
    transform: translateY(-6px);
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: #e7efff;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

/* BUTTON SLIDE */
.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #0d6efd;
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    z-index: 5;
}
.slide-btn.left { left: 0; }
.slide-btn.right { right: 0; }



