* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: Arial, Helvetica, sans-serif;
            color: #222;
            background: #fff;
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: auto;
        }

        /* NAVBAR */

        .navbar {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: white;
            box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
        }

        .nav-container {
            min-height: 75px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 25px;
            font-weight: 800;
            color: #123b63;
        }

        .logo span {
            color: #e69a23;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 30px;
            list-style: none;
        }

        .nav-menu a {
            font-size: 15px;
            font-weight: 600;
            color: #333;
        }

        .nav-menu a:hover,
        .nav-menu a.active {
            color: #e69a23;
        }

        .dropdown {
            position: relative;
        }

        .dropdown-menu {
            position: absolute;
            top: 30px;
            left: 0;
            min-width: 200px;
            background: white;
            padding: 10px 0;
            border-radius: 8px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, .12);
            opacity: 0;
            visibility: hidden;
            transition: .3s;
            list-style: none;
        }

        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
        }

        .dropdown-menu a {
            display: block;
            padding: 9px 16px;
        }

        .dropdown-menu a:hover {
            background: #f5f5f5;
        }

        .menu-toggle {
            display: none;
            font-size: 28px;
            cursor: pointer;
        }

        /* HEADER */

        .page-header {
            min-height: 320px;
            display: flex;
            align-items: center;
            text-align: center;
            color: white;

            background:
                linear-gradient(rgba(9, 48, 82, .84), rgba(9, 48, 82, .84)),
                url("https://images.unsplash.com/photo-1521737711867-e3b97375f902?auto=format&fit=crop&w=1600&q=80") center/cover;
        }

        .page-header h1 {
            font-size: 44px;
            margin-bottom: 10px;
        }

        .page-header p {
            opacity: .9;
        }

        /* ABOUT */

        .about-section {
            padding: 80px 0;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 55px;
            align-items: center;
        }

        .about-image img {
            width: 100%;
            height: 450px;
            object-fit: cover;
            border-radius: 12px;
        }

        .about-content h2 {
            color: #123b63;
            font-size: 33px;
            margin-bottom: 18px;
        }

        .about-content p {
            color: #666;
            margin-bottom: 15px;
        }

        /* VISION */

        .vision {
            background: #f5f8fb;
            padding: 75px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 45px;
        }

        .section-title h2 {
            color: #123b63;
            font-size: 32px;
            margin-bottom: 10px;
        }

        .section-title p {
            color: #777;
        }

        .vision-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }

        .vision-card {
            background: white;
            padding: 35px;
            border-radius: 12px;
            box-shadow: 0 7px 22px rgba(0, 0, 0, .06);
        }

        .vision-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: #eef5fb;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 27px;
            margin-bottom: 18px;
        }

        .vision-card h3 {
            color: #123b63;
            margin-bottom: 10px;
            font-size: 22px;
        }

        .vision-card p {
            color: #666;
        }

        /* ADVANTAGE */

        .advantage {
            padding: 80px 0;
        }

        .advantage-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        .advantage-card {
            padding: 30px;
            border: 1px solid #eee;
            border-radius: 12px;
            text-align: center;
            transition: .3s;
        }

        .advantage-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
        }

        .advantage-card .icon {
            font-size: 35px;
            margin-bottom: 15px;
        }

        .advantage-card h3 {
            color: #123b63;
            margin-bottom: 10px;
        }

        .advantage-card p {
            color: #777;
            font-size: 14px;
        }

        /* CTA */

        .cta {
            background: #123b63;
            color: white;
            text-align: center;
            padding: 65px 0;
        }

        .cta h2 {
            font-size: 31px;
            margin-bottom: 12px;
        }

        .cta p {
            opacity: .9;
            margin-bottom: 25px;
        }

        .btn {
            display: inline-block;
            padding: 12px 25px;
            background: #e69a23;
            color: white;
            border-radius: 6px;
            font-weight: bold;
        }

        /* FOOTER */

        footer {
            background: #092c4c;
            color: white;
            padding: 50px 0 20px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 35px;
        }

        .footer-logo {
            font-size: 25px;
            font-weight: 800;
            margin-bottom: 15px;
        }

        .footer-logo span {
            color: #e69a23;
        }

        footer p {
            color: #c9d4df;
            font-size: 14px;
        }

        footer h4 {
            margin-bottom: 15px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 8px;
            color: #c9d4df;
            font-size: 14px;
        }

        .footer-links li:hover {
            color: #e69a23;
        }

        .copyright {
            border-top: 1px solid rgba(255, 255, 255, .1);
            padding-top: 20px;
            text-align: center;
            color: #aebdca;
            font-size: 13px;
        }

        /* RESPONSIVE */

        @media(max-width: 850px) {

            .menu-toggle {
                display: block;
            }

            .nav-menu {
                display: none;
                position: absolute;
                top: 75px;
                left: 0;
                width: 100%;
                background: white;
                flex-direction: column;
                align-items: flex-start;
                padding: 20px;
            }

            .nav-menu.active {
                display: flex;
            }

            .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                box-shadow: none;
                padding-left: 15px;
            }

            .about-grid {
                grid-template-columns: 1fr;
            }

            .vision-grid {
                grid-template-columns: 1fr;
            }

            .advantage-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .page-header h1 {
                font-size: 34px;
            }

        }

        /* LISENSI, PARTNER & KLIEN */
       
        .partner-logo-card:hover,
        .client-logo-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 28px rgba(0, 0, 0, .09);
        }

        .license-logo-card img {
            width: 100%;
            height: 105px;
            object-fit: contain;
        }

        .partner-section {
            padding: 85px 0;
            background: #fff;
        }

        .partner-logo-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 24px;
            align-items: stretch;
        }

        .partner-logo-card {
            min-height: 175px;
        }

        .partner-logo-card img,
        .client-logo-card img {
            width: 100%;
            height: 125px;
            object-fit: contain;
        }

        .client-section {
            padding: 85px 0;
            background: #f5f8fb;
        }

        .client-logo-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            align-items: stretch;
        }

        .client-logo-card {
            min-height: 175px;
        }

        .legality-section {
            padding: 85px 0;
            background: #fff;
        }

        .legalitas-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 35px;
            align-items: start;
        }

        .legalitas-card {
            background: #fff;
            border: 1px solid #e5e9ee;
            border-radius: 16px;
            padding: 18px;
            box-shadow: 0 10px 28px rgba(0, 0, 0, .07);
            text-align: center;
        }

        .legalitas-card img {
            width: 100%;
            height: 480px;
            object-fit: contain;
            background: #f7f7f7;
            border-radius: 10px;
            cursor: zoom-in;
        }

        .legalitas-card h3 {
            color: #123b63;
            margin-top: 16px;
            font-size: 20px;
        }

        .legalitas-card p {
            color: #777;
            font-size: 14px;
            margin-top: 5px;
        }

        @media(max-width: 1000px) {
            .license-logo-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .partner-logo-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .client-logo-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media(max-width: 650px) {

            .license-logo-grid,
            .partner-logo-grid,
            .client-logo-grid,
            .legalitas-grid {
                grid-template-columns: 1fr 1fr;
            }

            .legalitas-card img {
                height: 350px;
            }
        }

        @media(max-width: 430px) {

            .license-logo-grid,
            .partner-logo-grid,
            .client-logo-grid,
            .legalitas-grid {
                grid-template-columns: 1fr;
            }
        }

        /* GALERI SLIDER */
.gallery-section {
    padding: 85px 0;
    background: #f5f8fb;
}

.gallery-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 10px 5px 25px;
    scrollbar-width: thin;
}

.gallery-slider::-webkit-scrollbar {
    height: 8px;
}

.gallery-slider::-webkit-scrollbar-thumb {
    background: #123b63;
    border-radius: 10px;
}

.gallery-card {
    flex: 0 0 360px;
    scroll-snap-align: start;
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    background: white;
    box-shadow: 0 7px 22px rgba(0, 0, 0, .07);
}

.gallery-card img {
    width: 100%;
    height: 260px;
    display: block;
    object-fit: cover;
    transition: transform .4s ease;
}

.gallery-card:hover img {
    transform: scale(1.06);
}

.gallery-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 35px 20px 18px;
    color: white;
    background: linear-gradient(
        transparent,
        rgba(0, 0, 0, .85)
    );
}

.gallery-overlay h3 {
    font-size: 18px;
    margin-bottom: 4px;
}

.gallery-overlay p {
    font-size: 13px;
    opacity: .9;
}

/* RESPONSIVE */
@media(max-width: 600px) {

    .gallery-card {
        flex: 0 0 85%;
    }

    .gallery-card img {
        height: 230px;
    }

}

/* BANNER PELATIHAN DENGAN LISENSI INSTANSI */
.license-banner-section {
    padding: 40px 0;
    background: #f5f8fb;
}

.license-banner {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 8px 50px rgba(0, 0, 0, .08);
}

.license-banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* RESPONSIVE */
@media(max-width: 650px) {
    .license-banner-section {
        padding: 25px 0;
    }

    .license-banner {
        border-radius: 5px;
    }
}
