/* ========================= */
/* GLOBAL */
/* ========================= */
body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* ========================= */
/* SUB HEADER */
/* ========================= */
.sub-header {
    background: #fff;
    padding: 10px 0;
    height: 45px;
    border-bottom: 1px solid #eee;
}

.sub-header ul li {
    display: inline-block;
}

.sub-header ul.info li {
    font-size: 0.8rem;
    color: #5E227F;
    border-right: 1px solid #eee;
    margin-right: 20px;
    padding-right: 20px;
}

.sub-header ul.info li:last-child {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
}

.sub-header ul.info li i {
    font-size: 16px;
    margin-right: 6px;
}

/* SOCIAL */
.sub-header ul.social-links {
    text-align: right;
}

.sub-header ul.social-links li {
    margin-left: 6px;
}

.sub-header ul.social-links a {
    width: 30px;
    height: 30px;
    display: inline-block;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    color: #5E227F;
    transition: 0.3s;
}

.sub-header ul.social-links a:hover {
    background: #5E227F;
    color: #fff;
}

/* ========================= */
/* NAVBAR */
/* ========================= */
.navbar {
    position: relative;
    z-index: 100;
    background: linear-gradient(to right, #5E227F, #b021ac);
    height: 60px;
}

.navbar-brand {
    color: #fff !important;
    font-weight: 600;
}

.navbar-nav {
    display: flex;
    align-items: center;
}

.navbar-nav .nav-link {
    color: #ffffffb7;
    font-size: 0.85rem;
    padding: 0 15px;
    height: 60px;
    display: flex;
    align-items: center;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover {
    background: #fff;
    color: #5E227F;
}

.navbar-nav .nav-link.active {
    color: #fff !important;
    font-weight: 600;
}

/* BUTTON */
.btn-outline-success {
    color: #ffffffbc;
    border: 2px solid #ffffff88;
}

.btn-outline-success:hover {
    background: #5E227F;
    color: #fff;
    border: none;
}

/* ========================= */
/* DROPDOWN */
/* ========================= */
/* .dropdown-menu {
    display: none;
} */

/* .navbar-nav .nav-item:hover .dropdown-menu {
    display: block;
} */

/* ========================= */
/* MEGA MENU */
/* ========================= */
.mega-parent {
    position: static !important;
}

.mega-menu .col-lg-3 {
    margin-bottom: 10px;
}

.mega-menu {
    width: 100vw;
    left: 0;
    right: 0;
    top: 100%;
    padding: 18px 20px;
    border: none;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.mega-menu h6 {
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

@media (min-width: 992px) {
    .mega-parent:hover .mega-menu {
        display: block;
    }
}

@media (max-width: 991px) {
    .mega-menu {
        position: static;
        width: 100%;
        box-shadow: none;
    }
}

/* LINK */
.mega-link {
    text-decoration: none !important;
    color: #444;
    font-size: 12px;
    display: block;
    padding: 3px 0;
    transition: 0.3s;
}

.mega-link:hover {
    color: #5E227F;
    padding-left: 4px;
    
}

.mega-list li {
    list-style: none;
    position: relative;
    padding-left: 2px;
}

.mega-list li::before {
    content: "•";
    font-size: 9px;
    position: absolute;
    left: 0;
    color: #5E227F;
}

/* ========================= */
/* STICKY MENU */
/* ========================= */
.menu {
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 32%;
    background: rgba(94, 34, 127, 0.9);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    z-index: 999;
}

.menu-buttons {
    display: flex;
    justify-content: space-around;
}

.menu-button {
    background: transparent;
    color: #eee;
    border: none;
    border-radius: 14px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transition: 0.3s;
}

.menu-button:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-3px);
}

.menu-button.active {
    background: #fff;
    color: #5E227F;
}

/* ========================= */
/* MODAL */
/* ========================= */
.modal {
    z-index: 999999 !important;
}

.modal-backdrop {
    z-index: 999998 !important;
}
.modal-dialog {
    max-width: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-body {
    max-height: 75vh;
    overflow-y: auto;
}

/* IMAGE CARD */
.image-card {
    background: #fff;
    border-radius: 14px;
    padding: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.image-card:hover {
    transform: translateY(-5px);
}

.image-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

/* BUTTON DOWNLOAD */
.btn-download {
    background: linear-gradient(135deg, #5E227F, #9333ea);
    color: #fff;
    border-radius: 10px;
    padding: 6px 14px;
    font-size: 13px;
}

.btn-download:hover {
    background: #000;
}

/* ========================= */
/* MOBILE */
/* ========================= */

@media (max-width: 991px) {

    .mega-menu {
        display: none !important;
        position: static;
        width: 100%;
        background: #fff;
        box-shadow: none;
        padding: 15px;
    }

    .mega-parent.active .mega-menu {
        display: block !important;
    }

    .mega-parent > a.dropdown-toggle::after {
        float: right;
        margin-top: 8px;
    }
}

@media (max-width: 768px) {

    .sub-header {
        display: none;
    }

    .navbar-collapse {
        text-align: center;
    }

    .menu {
        width: 95%;
    }

    .modal-dialog {
        width: 95%;
        margin: 10px;
    }

    .image-card img {
        height: 200px;
    }

    .btn-download {
        width: 100%;
    }
}
.btn-contact {
    background: linear-gradient(135deg, #ffffff, #f3e8ff);
    color: #5E227F;
    border: none;
    padding: 8px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Hover effect */
.btn-contact:hover {
  border: 1px;
    border-radius: 10px;

    background: linear-gradient(135deg, #5E227F, #b021ac);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(94,34,127,0.4);
}

/* Klik effect */
.btn-contact:active {
    transform: scale(0.95);
}
.navbar {
    position: relative;
    z-index: 9999;
}
.hero-section,
.hero-bg {
    position: relative;
    z-index: 1;
}
@media (max-width: 991px) {
    .navbar-collapse {
        position: relative;
        z-index: 9999;
        background: #5E227F;
    }
}
@media (max-width: 991px) {
    .navbar-collapse {
        position: relative;
        z-index: 9999;
        background: #5E227F;
    }
}
