body {
    background-color: #fff;
    margin: 0;
}

.main {
    padding: 0 10%;
    background-color: #fff;
}

header {
    background: #fff;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100% !important;
    transition: box-shadow 0.3s ease;
}

header .header-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* shadow muncul hanya saat discroll */
header.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

header .logo {
    display: flex;
    align-items: center;
}

header .logo img {
    max-width: 60px;
    height: auto;
    margin-right: 10px;
}

header .logo h6 {
    font-size: 1rem;
    color: #0566a1;
}

header .menu {
    display: flex;
    align-items: center;
}

header .menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    align-items: center;
}

header .menu ul li {
    margin-right: 20px;
}

header .menu ul li a {
    text-decoration: none;
    color: #000;
}

header .menu ul li a:hover,
header .menu ul li a.active {
    color: #0566a1;
    font-weight: bold;
}

/* dot symbols for list-style */
ul.tujuan,
ul.tujuan li {
    list-style-type: disc !important;
}

footer {
    background-color: #2e3e5c;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    padding: 40px 60px;
}

.border-end-dash-white {
    border-right: 1px dashed #fff;
}

/* HAMBURGER BUTTON */
.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    width: 35px;
    height: 32px;
    display: none; /* hidden by default, shown on mobile */
    align-items: center;
    justify-content: center;
}

.menu-toggle .menu-icon,
.menu-toggle .menu-icon::before,
.menu-toggle .menu-icon::after {
    content: "";
    width: 28px;
    height: 3px;
    background-color: #333;
    display: block;
    border-radius: 5px;
    transition: 0.3s;
}

.menu-toggle .menu-icon::before {
    transform: translateY(-8px);
}

.menu-toggle .menu-icon::after {
    transform: translateY(8px);
}

/* X Animation */
.menu-toggle.active .menu-icon {
    background: transparent;
}
.menu-toggle.active .menu-icon::before {
    transform: rotate(45deg);
}
.menu-toggle.active .menu-icon::after {
    transform: rotate(-45deg);
}

/* MOBILE BREAKPOINT */
@media (max-width: 1200px) {
    /* Show Hamburger */
    .menu-toggle {
        display: flex;
    }

    /* Menu: hidden by default */
    header .menu {
        position: absolute;
        top: 80px;
        right: 5%;
        width: 90%;
        flex-direction: column;
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.3s ease;
        padding: 0;
    }

    /* When opened */
    header .menu.open {
        max-height: 500px;
        opacity: 1;
        padding: 15px 0;
    }

    /* List vertical */
    header .menu ul {
        flex-direction: column;
        width: 100%;
        padding: 0;
    }

    header .menu ul li {
        margin: 10px 0;
    }

    /* Full width clickable */
    header .menu ul li a {
        width: 100%;
        display: block;
        text-align: center;
        padding: 8px 0;
    }

    /* Main padding narrower on mobile */
    .main {
        padding: 0 5%;
    }
}

/* EXTRA SMALL DEVICES FIX */
@media (max-width: 576px) {
    header .logo h6 {
        font-size: 0.85rem;
    }

    header .logo img {
        width: 40px;
        height: 40px;
    }
}

.logo-footer {
    max-width: 80px;
    height: auto;
}

.border-end-dash-white {
    border-right: 1px dashed white;
}

@media (max-width: 767.98px) {
    .border-end-dash-white {
        border-right: none !important;
        border-bottom: 1px dashed white;
        padding-bottom: 1rem;
    }
}

#welcomeSlider {
    height: 100vh;
}

.carousel-item {
    height: 100%;
}

.full-bg-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.carousel-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.carousel-caption {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding-bottom: 0;
    text-align: left;
}

.carousel-caption-content {
    margin-left: 5%;
}

.carousel-caption h1.text-primary {
    color: #4dc5ff !important;
}
