body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}
/* WRAPPER LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* GAMBAR LOGO */
.logo img {
    height: 90px;   /* ini kunci */
    width: auto;
}

/* TEXT LOGO */
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text span {
    font-size: 14px;
    color: #ff6600;
    font-weight: 600;
}

.logo-text strong {
    font-size: 16px;
    color: white;
}

.hero,
.hero img,
.slides {
    width: 100%;
    max-width: 100%;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}

html, body {
    overflow-x: hidden;
}
.container {
    max-width: 1200px;
    margin: auto;
}

header {
     width: 100%;
    overflow: hidden;
}

/* NAVBAR */
/* NAVBAR FULL */
.navbar {
    width: 100%;
    background: #0b3d91;
}

/* CONTAINER DALAM */
.nav-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.navbar .logo {
    font-size: 20px;
    font-weight: bold;
}

.menu a {
    padding: 8px 12px;
}

.menu {
    display: flex;
    list-style: none;
    gap: 10px;
}
.menu li {
    position: relative;
}

.menu a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
}

/* DROPDOWN */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    z-index: 9999;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s;
}

/* ITEM */
.dropdown-menu li a {
    color: #333;
    padding: 10px 15px;
}

/* HOVER */
.dropdown-menu li a:hover {
    background: #f0f4ff;
    color: #0b3d91;
}

/* SHOW DROPDOWN */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
@media(max-width: 768px){

    .menu {
        flex-direction: column;
        background: #0b3d91;
    }

    .dropdown-menu {
        position: relative;
        box-shadow: none;
        background: #123e9c;
    }

    .dropdown-menu li a {
        color: white;
    }
}
.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* HERO */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

/* SLIDER */
.hero-slider img {
    position: absolute;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    opacity: 0;
    transition: 1s;
}

.hero-slider img.active {
    opacity: 1;
}

/* OVERLAY */
.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(11, 61, 145, 0.7),
        rgba(0, 0, 0, 0.7)
    );
}

/* CONTENT */
.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
}

/* TITLE */
.hero h1 {
    font-size: 48px;
    font-weight: bold;
}

/* BUTTON */
.hero-btn {
    margin: 20px 0;
}

.btn-primary {
    background: #ff6600;
    padding: 10px 20px;
    border-radius: 25px;
    color: white;
    text-decoration: none;
}

.btn-outline {
    border: 2px solid white;
    padding: 10px 20px;
    border-radius: 25px;
    color: white;
    text-decoration: none;
    margin-left: 10px;
}

/* STATS */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.hero-stats h3 {
    font-size: 28px;
    color: #ffcc00;
}

/* CARD */
/* SECTION */
#skema {
    padding: 80px 50px;
    background: #f4f7fb;
}

#skema h2 {
    text-align: center;
    font-size: 32px;
    color: #0b3d91;
    margin-bottom: 40px;
    font-weight: 700;
}

/* GRID */
.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

/* CARD */
.card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
}

/* HOVER EFFECT */
.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(11, 61, 145, 0.2);
}

/* IMAGE */
.card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    transition: 0.5s;
}

/* IMAGE ZOOM */
.card:hover img {
    transform: scale(1.1);
}

/* CONTENT */
.card h3 {
    font-size: 18px;
    padding: 15px 15px 5px;
    color: #222;
    font-weight: 600;
}

.card p {
    padding: 0 15px 15px;
    color: #666;
    font-size: 14px;
}

/* BADGE */
.card::after {
    content: "Skema";
    position: absolute;
    top: 10px;
    left: 10px;
    background: #0b3d91;
    color: white;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 20px;
}
#skema h2::after {
    content: "";
    width: 80px;
    height: 4px;
    background: #0b3d91;
    display: block;
    margin: 10px auto;
    border-radius: 10px;
}

/* FOOTER */
.footer {
    background: #1c1f26;
    color: #bbb;
    padding: 60px 50px 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-col h2 {
    color: #fff;
    margin-bottom: 15px;
}

.footer-col h3 {
    color: #fff;
    margin-bottom: 15px;
    position: relative;
}

.footer-col h3::after {
    content: "";
    width: 40px;
    height: 2px;
    background: #0d6efd;
    position: absolute;
    left: 0;
    bottom: -5px;
}

.footer-col p {
    margin: 8px 0;
}

/* LINK */
.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin: 8px 0;
}

.footer-col ul li a {
    color: #bbb;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #0d6efd;
}

/* FORM */
.footer-col input,
.footer-col textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #333;
    background: transparent;
    color: white;
    border-radius: 5px;
}

.footer-col button {
    padding: 10px 15px;
    border: none;
    background: #0d6efd;
    color: white;
    cursor: pointer;
    border-radius: 5px;
}

/* COPYRIGHT */
.footer hr {
    margin: 30px 0;
    border-color: #333;
}

.footer .copyright {
    text-align: center;
    font-size: 14px;
}
/* SECTION */
.about-section {
    padding: 80px 50px;
    background: #f4f7fb;
}

/* CONTAINER */
.container {
    max-width: 1100px;
    margin: auto;
}

/* TITLE */
.section-title {
    text-align: center;
    font-size: 32px;
    color: #0b3d91;
    margin-bottom: 40px;
    font-weight: 700;
    position: relative;
}

/* GARIS BAWAH */
.section-title::after {
    content: "";
    width: 80px;
    height: 4px;
    background: #0b3d91;
    display: block;
    margin: 10px auto;
    border-radius: 10px;
}

/* CONTENT GRID */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: center;
}

/* TEXT */
.about-text p {
    margin-bottom: 15px;
    color: #444;
    line-height: 1.7;
    font-size: 16px;
}

/* BOX INFO */
.about-box {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border-left: 5px solid #0b3d91;
}

/* TITLE BOX */
.about-box h3 {
    margin-bottom: 15px;
    color: #0b3d91;
}

/* LIST */
.about-box ul {
    list-style: none;
    padding: 0;
}

.about-box ul li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #333;
}

/* RESPONSIVE */
@media(max-width: 768px){
    .about-content {
        grid-template-columns: 1fr;
    }
}
/* BACKGROUND */
.about-section {
    padding: 80px 50px;
    background: linear-gradient(135deg, #f4f7fb, #e3ecff);
}

/* CONTAINER */
.container {
    max-width: 1100px;
    margin: auto;
}

/* TITLE */
.section-title {
    text-align: center;
    font-size: 32px;
    color: #0b3d91;
    margin-bottom: 40px;
    font-weight: bold;
}

.section-title::after {
    content: "";
    width: 80px;
    height: 4px;
    background: #0b3d91;
    display: block;
    margin: 10px auto;
    border-radius: 10px;
}

/* GRID */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

/* TEXT */
.about-text p {
    color: #444;
    margin-bottom: 15px;
    line-height: 1.7;
}

/* INFO ICON */
.info-list div {
    margin: 10px 0;
    font-size: 14px;
    color: #333;
}

.info-list i {
    color: #0b3d91;
    margin-right: 10px;
}

/* LOGO */
.about-logo img {
    width: 100%;
    max-width: 200px;
    display: block;
    margin: auto;
}

/* STATS */
.stats {
    display: flex;
    justify-content: space-around;
    margin-top: 60px;
    flex-wrap: wrap;
}

.stat-box {
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 15px;
    width: 200px;
    margin: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.stat-box h3 {
    font-size: 28px;
    color: #0b3d91;
}

/* RESPONSIVE */
@media(max-width: 768px){
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .stats {
        flex-direction: column;
        align-items: center;
    }
}
/* SECTION */
.partner-section {
    padding: 60px 50px;
    background: white;
}

/* CONTAINER */
.partner-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 30px;
}

/* LOGO */
.partner img {
    width: 120px;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: 0.4s;
}

/* HOVER */
.partner img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}
org-container {
    text-align: center;
    padding: 80px 20px;
}

/* CARD */
.struktur-org {
    text-align: center;
    background: #fff;
    padding: 20px;
    border-radius: 14px;
    width: 260px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.struktur-org:hover {
    transform: translateY(-6px);
}

.struktur-orgspan {
    display: block;
    font-size: 14px;
    color: #666;
}

/* KETUA */
.struktur-org.main {
    border: 2px solid #007BFF;
    transform: scale(1.05);
}

/* LAYOUT */
.level-org {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.bottom {
    display: flex;
    justify-content: center;
    gap: 60px;
    align-items: flex-start;
    margin-left: 200px;
}

/* KOMITE FLOATING */
.komite {
    margin-top: -350px; /* ini bikin naik */
    border: 2px dashed #999;
    background: #fafafa;
}

/* GARIS */
.line {
    fill: none;
    stroke: #007BFF;
    stroke-width: 3;
}

/* GARIS PUTUS */
.line.dashed {
    stroke: #999;
    stroke-dasharray: 8,6;
}

/* ANIMASI FLOW */
.line.flow {
    stroke-dasharray: 10,10;
    animation: flowMove 2s linear infinite;
}

@keyframes flowMove {
    from {
        stroke-dashoffset: 20;
    }
    to {
        stroke-dashoffset: 0;
    }
}

/* SVG */
.lines {
    display: block;
    margin: 0 auto;
}

/* LEGENDA */
.legend {
    margin-top: 40px;
    padding-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 14px;
    color: #555;
}

.legend-line {
    display: inline-block;
    width: 40px;
    height: 3px;
    background: #007BFF;
    margin-right: 8px;
}

.legend-dashed {
    display: inline-block;
    width: 40px;
    height: 3px;
    background: repeating-linear-gradient(
        to right,
        #999,
        #999 8px,
        transparent 8px,
        transparent 16px
    );
    margin-right: 8px;
}
.visi-page {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #f8fafc, #eef2ff);
}

/* CONTAINER */
.container {
    max-width: 1100px;
    margin: auto;
}

/* JUDUL */
.judul {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    color: #1e3a8a;
}

.subjudul {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 50px;
    color: #64748b;
}

/* WRAPPER */
.visi-misi-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* CARD */
.card-visi,
.card-misi {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.card-visi:hover,
.card-misi:hover {
    transform: translateY(-8px);
}

/* VISI COLOR */
.card-visi {
    border-top: 6px solid #3b82f6;
}

/* MISI COLOR */
.card-misi {
    border-top: 6px solid #1e3a8a;
}

/* ICON */
.icon-box {
    font-size: 28px;
    margin-bottom: 15px;
}

/* TEXT */
.card-visi h2,
.card-misi h2 {
    margin-bottom: 15px;
    color: #1e293b;
}

.card-visi p {
    line-height: 1.7;
    color: #475569;
}

.card-misi ul {
    padding-left: 20px;
}

.card-misi ul li {
    margin-bottom: 10px;
    color: #475569;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .visi-misi-wrapper {
        grid-template-columns: 1fr;
    }
}
body {
    background: #f4f7fb;
    font-family: 'Poppins', sans-serif;
}
/* SECTION */
.asesor-table-section {
    padding: 60px;
    background: #f4f7fb;
    text-align: center;
}

/* TITLE */
.asesor-table-section h2 {
    margin-bottom: 30px;
    color: #0b3d91;
}

/* TABLE CONTAINER */
.table-container {
    overflow-x: auto;
}

/* TABLE */
table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
}

/* HEADER */
thead {
    background: #0b3d91;
    color: white;
}

th, td {
    padding: 12px;
    text-align: center;
}

/* ROW */
tbody tr:nth-child(even) {
    background: #f9f9f9;
}

tbody tr:hover {
    background: #eef3ff;
}

/* FOTO */
.foto {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
}
/* PAGE */
.skema-page {
    padding: 80px 50px;
    background: #f4f7fb;
    text-align: center;
}

.skema-page h1 {
    color: #0b3d91;
    margin-bottom: 40px;
}

/* GRID 5 KOLOM */
.skema-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* SECTION */
.skema-page {
    padding: 100px 60px;
    background: linear-gradient(135deg, #f4f7fb, #e9f0ff);
    text-align: center;
}

/* TITLE */
.skema-page h1 {
    font-size: 34px;
    color: #0b3d91;
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
}

/* GARIS ELEGAN */
.skema-page h1::after {
    content: "";
    width: 70px;
    height: 4px;
    background: #0b3d91;
    display: block;
    margin: 12px auto;
    border-radius: 10px;
}

/* GRID */
.skema-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

/* CARD */
.skema-item {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
}

/* IMAGE */
.skema-item img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    transition: 0.5s;
}

/* BADGE */
.skema-item::before {
    content: "Skema";
    position: absolute;
    top: 12px;
    left: 12px;
    background: #0b3d91;
    color: white;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 20px;
}

/* BODY */
.skema-body {
    padding: 18px;
}

.skema-body h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #222;
}

.skema-body p {
    font-size: 13px;
    color: #777;
}

/* HOVER */
.skema-item:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 40px rgba(11, 61, 145, 0.2);
}

/* ZOOM IMAGE */
.skema-item:hover img {
    transform: scale(1.1);
}

/* LINK */
.skema-link {
    text-decoration: none;
    color: inherit;
}

/* RESPONSIVE */
@media(max-width: 1200px){
    .skema-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width: 768px){
    .skema-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 480px){
    .skema-cards {
        grid-template-columns: 1fr;
    }
}
.skema-item {
    backdrop-filter: blur(10px);
}