/********** Template CSS **********/
:root {
    /* Brand Colors */
    --primary: #f3b80c;
    --primary-accent: #ffc107;
    --primary-accent-dark: #f6ad00;
    --primary-accent-hover: #ffcd39;
    --secondary: #06366d;
    --secondary-dark: #011b3a;
    --secondary-deep: #142b5f;
    --dark: #1D2A4D;
    --dark-strong: #0c1f45;

    /* Neutral Colors */
    --white: #ffffff;
    --light: #EFF5F9;
    --light-soft: #f7f7f9;
    --text-muted: #6f7f9f;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --shadow-muted: #555555;

    /* Hero Colors */
    --hero-button-text: #183763;

    /* Background & Overlay */
    --overlay-secondary-85: rgba(6, 54, 109, .85);
    --overlay-secondary-dark-90: rgba(1, 27, 58, .9);
    --overlay-secondary-soft-05: rgba(6, 54, 109, .05);
    --overlay-secondary-dark-30: rgba(1, 27, 58, .30);
    --overlay-dark-06: rgba(12, 31, 69, 0.06);
    --overlay-dark-07: rgba(12, 31, 69, 0.07);
    --overlay-dark-08: rgba(12, 31, 69, 0.08);
    --overlay-dark-10: rgba(12, 31, 69, 0.10);
    --overlay-dark-13: rgba(12, 31, 69, 0.13);
    --overlay-dark-18: rgba(12, 31, 69, 0.18);
    --overlay-dark-22: rgba(12, 31, 69, 0.22);
    --overlay-dark-28: rgba(12, 31, 69, 0.28);
    --overlay-navy-20: rgba(18, 1, 112, 0.197);
    --overlay-navy-09: rgba(15, 4, 88, 0.091);
    --overlay-black-28: rgba(0, 0, 0, .28);
    --overlay-white-06: rgba(255, 255, 255, .06);
    --overlay-white-10: rgba(255, 255, 255, .10);
    --overlay-white-12: rgba(255, 255, 255, .12);
    --overlay-white-16: rgba(255, 255, 255, .16);
    --overlay-white-22: rgba(255, 255, 255, .22);
    --overlay-white-25: rgba(255, 255, 255, 0.25);
    --overlay-white-35: rgba(255, 255, 255, .35);
    --overlay-white-65: rgba(255, 255, 255, .65);
    --overlay-white-78: rgba(255, 255, 255, .78);
    --overlay-white-78-solid: rgba(255, 255, 255, 0.78);
    --overlay-white-92: rgba(255, 255, 255, 0.92);
    --overlay-white-full: rgba(255, 255, 255, 1);
    --overlay-primary-10: rgba(255, 193, 7, 0.10);
    --overlay-primary-12: rgba(255, 193, 7, 0.12);
    --overlay-primary-14: rgba(255, 193, 7, 0.14);
    --overlay-primary-16: rgba(255, 193, 7, 0.16);
    --overlay-primary-18: rgba(255, 193, 7, .18);
    --overlay-primary-20: rgba(255, 193, 7, 0.20);
    --overlay-primary-28: rgba(255, 193, 7, 0.28);
    --overlay-primary-30: rgba(255, 193, 7, .30);
    --overlay-primary-30-solid: rgba(255, 193, 7, 0.30);
    --overlay-primary-32: rgba(255, 193, 7, 0.32);
    --overlay-primary-34: rgba(255, 193, 7, 0.34);
    --overlay-primary-55: rgba(255, 193, 7, 0.55);
    --overlay-primary-95: rgba(255, 193, 7, .95);
    --overlay-primary-dark-16: rgba(246, 173, 0, 0.16);

    /* Radius */
    --radius-pill: 999px;
    --radius-circle: 50%;
}

/* ============================================================
   Base, Bootstrap Overrides & Utilities
============================================================ */
.spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.spinner-overlay.hide {
    opacity: 0;
    visibility: hidden;
}

.bg-light {
    background-color: var(--light-soft) !important;
}

/* Buttons */
.btn {
    font-weight: 700;
    transition: .5s;
}

.btn:hover {
    -webkit-box-shadow: 0 8px 6px -6px var(--shadow-muted);
    -moz-box-shadow: 0 8px 6px -6px var(--shadow-muted);
    box-shadow: 0 8px 6px -6px var(--shadow-muted);
}

.btn-primary {
    color: var(--white);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

/* Floating Actions */
.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 0;
    border-radius: 50% 50% 0 0;
    z-index: 99;
}

.wa-cta {
    position: fixed;
    right: 30px;
    bottom: 54px;
    border-radius: 50% 50% 0 0;
    z-index: 99;
}

/* Navbar */
.navbar-light .navbar-nav .nav-link {
    font-family: 'Jost', sans-serif;
    position: relative;
    margin-left: 30px;
    padding: 30px 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    outline: none;
    transition: .5s;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (min-width: 992px) {
    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 5px;
        bottom: 0;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link {
        margin-left: 0;
        padding: 10px 0;
    }
}

/* Mobile App Layout */
.main-container {
    padding: 0;
}

.content {
    padding-top: 5rem;
    padding-bottom: 6rem;
}

.navbar.fixed-top {
    height: 3.5rem;
}

.navbar.fixed-bottom {
    height: 4.5rem;
}

.nav-bottom-link {
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    flex-grow: 1;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.nav-bottom-link i {
    margin-bottom: 0.75rem;
}

.nav-bottom-link.active {
    color: var(--primary);
    font-weight: 500;
}

.nav-bottom-link:hover {
    color: var(--primary);
}

.dropdown-toggle-profile::after {
    display: none !important;
}

/* Toast */
.toast-container {
    top: 5rem;
    z-index: 1080;
}

/* Animation Helpers */
.spin {
    animation: rotate 1s linear infinite;
}


@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Image Helpers */
.zoom-hover {
    transition: transform 0.3s ease-in-out;
}

.zoom-hover:hover {
    transform: scale(1.05);
}

.card-img {
    aspect-ratio: 4/3;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: auto;
}

/* ============================================================
   Hero Section
============================================================ */

.hero-header {
    background: linear-gradient(var(--overlay-secondary-85), var(--overlay-secondary-dark-90)),
        url(../img/hero.jpg) top center no-repeat;
    background-size: cover;
}

.hero-carousel-layout {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    isolation: isolate;
}

.hero-carousel-layout::before {
    position: absolute;
    inset: 0;
    z-index: 0;
    content: "";
    background:
        radial-gradient(circle at 78% 28%, var(--overlay-primary-18), transparent 24%),
        radial-gradient(circle at 85% 80%, var(--overlay-white-10), transparent 24%);
    pointer-events: none;
}

.hero-carousel-layout .container {
    position: relative;
    z-index: 2;
}

.hero-content-wrap {
    max-width: 760px;
}

.hero-eyebrow {
    color: var(--primary-accent) !important;
    border-color: var(--overlay-white-35) !important;
    font-weight: 700;
    letter-spacing: .02em;
}

.hero-title {
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -.025em;
}

.hero-subtitle {
    font-weight: 700;
    letter-spacing: .04em;
}

.hero-description {
    max-width: 650px;
    color: var(--overlay-white-78);
    font-size: 1.05rem;
    line-height: 1.8;
}

.hero-carousel-layout .btn-primary {
    color: var(--hero-button-text);
    background-color: var(--primary-accent);
    border-color: var(--primary-accent);
    font-weight: 700;
}

.hero-carousel-layout .btn-primary:hover {
    color: var(--hero-button-text);
    background-color: var(--primary-accent-hover);
    border-color: var(--primary-accent-hover);
    transform: translateY(-2px);
}

.hero-carousel-layout .btn-outline-light {
    font-weight: 700;
    border-color: var(--overlay-white-65);
}

.hero-carousel-layout .btn {
    transition: all .25s ease;
}

.hero-photo-card {
    position: relative;
    width: min(100%, 420px);
    aspect-ratio: 3 / 4;
    padding: .75rem;
    border: 1px solid var(--overlay-white-22);
    border-radius: 2rem;
    background: var(--overlay-white-12);
    box-shadow: 0 28px 80px var(--overlay-black-28);
    backdrop-filter: blur(16px);
}

.hero-photo-card::before {
    position: absolute;
    inset: -16px;
    z-index: -1;
    content: "";
    border-radius: 2.5rem;
    background: linear-gradient(145deg, var(--overlay-primary-30), var(--overlay-white-06));
    opacity: .75;
}

.hero-photo-card .carousel,
.hero-photo-card .carousel-inner,
.hero-photo-card .carousel-item {
    border-radius: 1.5rem;
}

.hero-photo-card img {
    object-fit: cover;
    object-position: center;
}

.hero-photo-card .carousel-item::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(180deg, var(--overlay-secondary-soft-05) 0%, var(--overlay-secondary-dark-30) 100%);
    pointer-events: none;
}

.hero-carousel-indicators {
    right: 1rem;
    bottom: 1rem;
    left: auto;
    justify-content: flex-end;
    margin: 0;
    gap: .4rem;
}

.hero-carousel-indicators [data-bs-target] {
    width: .55rem;
    height: .55rem;
    border: 0;
    border-radius: 50%;
    background-color: var(--overlay-white-65);
    opacity: 1;
}

.hero-carousel-indicators .active {
    width: 1.5rem;
    border-radius: 999px;
    background-color: var(--primary-accent);
}

.hero-carousel-control {
    width: 42px;
    height: 42px;
    top: auto;
    bottom: 1rem;
    border-radius: 50%;
    background: var(--overlay-white-16);
    backdrop-filter: blur(10px);
    opacity: 1;
}

.carousel-control-prev.hero-carousel-control {
    left: 1rem;
}

.carousel-control-next.hero-carousel-control {
    left: 3.9rem;
    right: auto;
}

.hero-carousel-control:hover {
    background: var(--overlay-primary-95);
}

@media (max-width: 991.98px) {
    .hero-carousel-layout {
        min-height: auto;
    }

    .hero-content-wrap {
        max-width: 720px;
        margin-right: auto;
        margin-left: auto;
    }

    .hero-description {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-photo-card {
        width: min(100%, 360px);
        margin-top: 1rem;
    }
}

@media (max-width: 575.98px) {
    .hero-carousel-layout {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .hero-photo-card {
        width: min(100%, 320px);
        padding: .55rem;
        border-radius: 1.5rem;
    }

    .hero-photo-card::before {
        inset: -10px;
        border-radius: 1.9rem;
    }

    .hero-photo-card .carousel,
    .hero-photo-card .carousel-inner,
    .hero-photo-card .carousel-item {
        border-radius: 1.1rem;
    }
}

/* ============================================================
  About Section
============================================================ */

.about-modern-section {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
}

.about-modern-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    left: -180px;
    top: 80px;
    border-radius: 50%;
    background: var(--overlay-primary-14);
}

.about-modern-section::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    right: -140px;
    bottom: -120px;
    border-radius: 50%;
}

.about-modern-wrapper {
    position: relative;
    z-index: 2;
}

.about-modern-visual {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-modern-visual-bg {
    position: absolute;
    inset: 38px 0 38px 24px;
    border-radius: 34px;
    background: linear-gradient(135deg, var(--primary-accent) 0%, var(--primary-accent-dark) 100%);
    box-shadow: 0 26px 60px var(--overlay-primary-28);
}

.about-modern-image {
    position: relative;
    z-index: 3;
    width: 92%;
    max-width: 430px;
    height: auto;
    padding: 28px;
    border-radius: 30px;
    background: var(--overlay-white-92);
    box-shadow: 0 22px 60px var(--overlay-dark-13);
}

.about-modern-dot {
    position: absolute;
    z-index: 4;
    display: block;
    border-radius: 50%;
}

.about-modern-dot-one {
    width: 22px;
    height: 22px;
    top: 62px;
    right: 42px;
    background: var(--dark-strong);
}

.about-modern-dot-two {
    width: 15px;
    height: 15px;
    left: 42px;
    bottom: 62px;
    background: var(--white);
    box-shadow: 0 0 0 8px var(--overlay-white-25);
}

.about-modern-content {
    position: relative;
    margin-left: -34px;
    padding: 48px 52px;
    border-radius: 34px;
    background: var(--white);
    border: 1px solid var(--overlay-dark-08);
    box-shadow: 0 24px 70px var(--overlay-dark-10);
}

.about-modern-heading {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 26px;
}

.about-modern-heading h1 {
    color: var(--dark-strong);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.4px;
}

.about-modern-heading-line {
    display: inline-block;
    width: 7px;
    height: 74px;
    flex: 0 0 7px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--primary-accent) 0%, var(--primary-accent-dark) 100%);
}

.about-modern-description {
    padding-left: 25px;
}

.about-modern-description p {
    margin-bottom: 18px;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.85;
}

.about-modern-description p:last-child {
    margin-bottom: 0;
}

.about-modern-description strong,
.about-modern-description b {
    color: var(--dark-strong);
    font-weight: 700;
}

@media (max-width: 991.98px) {
    .about-modern-section {
        padding: 70px 0;
        background: var(--white);
    }

    .about-modern-visual {
        min-height: 360px;
        margin-bottom: 28px;
    }

    .about-modern-visual-bg {
        inset: 28px 18px;
    }

    .about-modern-image {
        max-width: 390px;
    }

    .about-modern-content {
        margin-left: 0;
        padding: 40px 34px;
        border-radius: 28px;
    }

    .about-modern-description {
        padding-left: 0;
    }
}

@media (max-width: 575.98px) {
    .about-modern-section {
        padding: 54px 0;
    }

    .about-modern-visual {
        min-height: 300px;
    }

    .about-modern-image {
        width: 95%;
        padding: 22px;
    }

    .about-modern-content {
        padding: 32px 24px;
        border-radius: 24px;
    }

    .about-modern-heading {
        gap: 14px;
        margin-bottom: 22px;
    }

    .about-modern-heading h1 {
        font-size: 2.2rem;
    }

    .about-modern-heading-line {
        height: 58px;
    }

    .about-modern-description p {
        font-size: 0.95rem;
        line-height: 1.75;
    }
}

/* ============================================================
  Department Section
============================================================ */

.department-section {
    position: relative;
    overflow: hidden;

}

.department-section::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    left: -260px;
    bottom: -280px;
    border-radius: 50%;
}

.department-section::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -240px;
    top: -220px;
    border-radius: 50%;
}

.department-section .container {
    position: relative;
    z-index: 2;
}

.department-header {
    max-width: 650px;
}

.department-subtitle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    margin-bottom: 16px;
    border-radius: 999px;
    color: var(--dark-strong);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    background: var(--overlay-primary-16);
}

.department-title {
    color: var(--dark-strong);
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.department-title-line {
    display: block;
    width: 86px;
    height: 5px;
    margin: 0 auto;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary-accent) 0%, var(--primary-accent-dark) 100%);
}

.department-card {
    position: relative;
    border-radius: 28px;
    background: var(--white);
    border: 1px solid var(--overlay-dark-08);
    box-shadow: 0 18px 48px var(--overlay-dark-08);
    transition: all 0.35s ease;
}

.department-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 1px;
    background: linear-gradient(135deg, var(--overlay-primary-55), var(--overlay-dark-08));
    opacity: 0;
    transition: all 0.35s ease;

    -webkit-mask:
        linear-gradient(var(--white) 0 0) content-box,
        linear-gradient(var(--white) 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.department-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 70px var(--overlay-dark-13);
}

.department-card:hover::before {
    opacity: 1;
}

.department-card-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 42px 34px;
    text-align: center;
    border-radius: 28px;
    overflow: hidden;
}

.department-card-inner::before {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    top: -82px;
    right: -74px;
    border-radius: 50%;
    background: var(--overlay-primary-12);
    transition: all 0.35s ease;
}

.department-card:hover .department-card-inner::before {
    transform: scale(1.2);
    background: var(--overlay-primary-20);
}

.department-icon-wrapper {
    position: relative;
    z-index: 3;
    width: 104px;
    height: 104px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 26px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--primary-accent) 0%, var(--primary-accent-dark) 100%);
    box-shadow: 0 18px 36px var(--overlay-primary-32);
    transform: rotate(-8deg);
    transition: all 0.35s ease;
}

.department-card:hover .department-icon-wrapper {
    transform: rotate(0deg) scale(1.06);
}

.department-logo {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 22px;
    background: var(--white);
    padding: 6px;
}

.department-name {
    position: relative;
    z-index: 3;
    color: var(--dark-strong);
    font-size: 1.28rem;
    font-weight: 800;
    line-height: 1.35;
}

.department-description {
    position: relative;
    z-index: 3;
    color: var(--text-muted);
    font-size: 0.96rem;
    line-height: 1.75;
}

.department-empty {
    padding: 54px 32px;
    border-radius: 28px;
    background: var(--white);
    border: 1px dashed var(--overlay-dark-18);
    box-shadow: 0 18px 48px var(--overlay-dark-07);
}

.department-empty-icon {
    width: 88px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--slate-300) 0%, var(--slate-400) 100%);
}

@media (max-width: 991.98px) {
    .department-title {
        font-size: 2rem;
    }

    .department-card-inner {
        padding: 38px 28px;
    }
}

@media (max-width: 575.98px) {
    .department-section {
        padding-top: 54px !important;
        padding-bottom: 54px !important;
    }

    .department-title {
        font-size: 1.8rem;
    }

    .department-card {
        border-radius: 24px;
    }

    .department-card::before {
        border-radius: 24px;
    }

    .department-card-inner {
        padding: 34px 24px;
        border-radius: 24px;
    }

    .department-icon-wrapper {
        width: 92px;
        height: 92px;
        border-radius: 26px;
    }

    .department-logo {
        width: 64px;
        height: 64px;
        border-radius: 20px;
    }

    .department-name {
        font-size: 1.18rem;
    }

    .department-description {
        font-size: 0.94rem;
        line-height: 1.7;
    }
}

/* ============================================================
   VISION MISSION Section
============================================================ */

.vision-mission-section {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
}

.vision-mission-section::before {
    content: "";
    position: absolute;
    width: 460px;
    height: 460px;
    top: -230px;
    left: -180px;
    border-radius: 50%;
}

.vision-mission-section::after {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    right: -180px;
    bottom: -210px;
    border-radius: 50%;
}

.vision-mission-section .container {
    position: relative;
    z-index: 2;
}

.vision-mission-header {
    max-width: 760px;
}

.vision-mission-title {
    color: var(--dark-strong);
    font-weight: 800;
    letter-spacing: -1.2px;
    line-height: 1.1;
}

.vision-mission-title-line {
    display: block;
    width: 88px;
    height: 5px;
    margin: 0 auto;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary-accent) 0%, var(--primary-accent-dark) 100%);
}

.vision-mission-summary {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

.vision-mission-summary p {
    margin-bottom: 0;
}

.vision-mission-visual {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.vision-mission-image-card {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 410px;
    padding: 36px;
    border-radius: 34px;
    background: var(--white);
    border: 1px solid var(--overlay-dark-08);
    box-shadow: 0 24px 70px var(--overlay-dark-10);
}

.vision-mission-image {
    width: 100%;
    max-height: 340px;
    object-fit: contain;
}

.vision-mission-shape {
    position: absolute;
    display: block;
    border-radius: 999px;
    z-index: 1;
}

.vision-mission-shape-one {
    width: 150px;
    height: 150px;
    top: -28px;
    right: -28px;
    background: linear-gradient(135deg, var(--overlay-primary-34), var(--overlay-primary-dark-16));
}

.vision-mission-shape-two {
    width: 92px;
    height: 92px;
    left: -18px;
    bottom: -20px;
    background: var(--overlay-dark-10);
}

.vision-mission-content {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.vision-mission-item {
    position: relative;
    display: flex;
    gap: 24px;
    padding: 34px;
    border-radius: 30px;
    background: var(--white);
    border: 1px solid var(--overlay-dark-08);
    box-shadow: 0 18px 52px var(--overlay-dark-08);
    transition: all 0.35s ease;
}

.vision-mission-item::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 30px;
    border-left: 6px solid var(--secondary);
    pointer-events: none;
}

.vision-mission-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 70px var(--overlay-dark-13);
}

.vision-mission-icon {
    position: relative;
    flex: 0 0 76px;
    width: 76px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--secondary) 100%);
    box-shadow: 0 16px 32px var(--overlay-navy-20);
}

.vision-mission-icon i {
    font-size: 1.7rem;
}

.vision-mission-text-area {
    flex: 1;
}

.vision-mission-heading {
    color: var(--dark-strong);
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1.3;
}

.vision-mission-text {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.8;
}

.vision-mission-text p {
    margin-bottom: 14px;
}

.vision-mission-text p:last-child {
    margin-bottom: 0;
}

.vision-mission-text ul,
.vision-mission-text ol {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
}

.vision-mission-text li {
    position: relative;
    margin-bottom: 12px;
    padding-left: 28px;
}

.vision-mission-text li:last-child {
    margin-bottom: 0;
}

.vision-mission-text li::before {
    content: "";
    position: absolute;
    top: 11px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--secondary);
    box-shadow: 0 0 0 5px var(--overlay-navy-09);
}

.vision-mission-text strong,
.vision-mission-text b {
    color: var(--dark-strong);
    font-weight: 700;
}

@media (max-width: 991.98px) {
    .vision-mission-section {
        padding: 70px 0;
    }

    .vision-mission-title {
        font-size: 2.5rem;
    }

    .vision-mission-image-card {
        min-height: 330px;
        padding: 28px;
    }

    .vision-mission-image {
        max-height: 280px;
    }
}

@media (max-width: 575.98px) {
    .vision-mission-section {
        padding: 56px 0;
    }

    .vision-mission-title {
        font-size: 2.15rem;
    }

    .vision-mission-summary {
        font-size: 0.95rem;
        line-height: 1.75;
    }

    .vision-mission-image-card {
        min-height: 260px;
        padding: 22px;
        border-radius: 26px;
    }

    .vision-mission-item {
        flex-direction: column;
        gap: 20px;
        padding: 28px 24px;
        border-radius: 26px;
    }

    .vision-mission-item::before {
        border-left-width: 5px;
        border-radius: 26px;
    }

    .vision-mission-icon {
        width: 68px;
        height: 68px;
        flex-basis: 68px;
        border-radius: 22px;
    }

    .vision-mission-heading {
        font-size: 1.3rem;
    }

    .vision-mission-text {
        font-size: 0.95rem;
        line-height: 1.75;
    }
}

/* ============================================================
   FAQ Section
============================================================ */
.faq-section {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
}

.faq-section::before {
    content: "";
    position: absolute;
    width: 480px;
    height: 480px;
    left: -240px;
    top: 120px;
    border-radius: 50%;
    background: var(--overlay-primary-10);
}

.faq-section::after {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    right: -190px;
    bottom: -190px;
    border-radius: 50%;
}

.faq-section .container {
    position: relative;
    z-index: 2;
}

.faq-header {
    max-width: 760px;
}

.faq-subtitle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    margin-bottom: 16px;
    border-radius: 999px;
    color: var(--dark-strong);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    background: var(--overlay-primary-16);
}

.faq-title {
    color: var(--dark-strong);
    font-weight: 800;
    letter-spacing: -1.2px;
    line-height: 1.1;
}

.faq-title-line {
    display: block;
    width: 88px;
    height: 5px;
    margin: 0 auto;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary-accent) 0%, var(--primary-accent-dark) 100%);
}

.faq-description {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

.faq-accordion-wrapper {
    padding: 18px;
    border-radius: 34px;
    background: var(--overlay-white-78-solid);
    border: 1px solid var(--overlay-dark-08);
    box-shadow: 0 24px 70px var(--overlay-dark-08);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    overflow: hidden;
    border: 1px solid var(--overlay-dark-08);
    border-radius: 22px !important;
    background: var(--white);
    box-shadow: 0 12px 34px var(--overlay-dark-06);
    transition: all 0.35s ease;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px var(--overlay-dark-10);
}

.faq-button {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px 28px;
    color: var(--dark-strong);
    font-weight: 800;
    background: var(--white);
    box-shadow: none !important;
    border-radius: 22px !important;
}

.faq-button:not(.collapsed) {
    color: var(--dark-strong);
    background:
        linear-gradient(90deg, var(--overlay-primary-14) 0%, var(--overlay-white-full) 100%);
}

.faq-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.faq-button::after {
    width: 42px;
    height: 42px;
    margin-left: auto;
    border-radius: 50%;
    background-color: var(--overlay-primary-16);
    background-position: center;
    background-size: 16px;
    transition: all 0.35s ease;
}

.faq-button:not(.collapsed)::after {
    background-color: var(--primary-accent);
}

.faq-number {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-accent) 0%, var(--primary-accent-dark) 100%);
    box-shadow: 0 12px 26px var(--overlay-primary-30-solid);
}

.faq-question {
    flex: 1;
    line-height: 1.5;
    text-align: left;
}

.faq-answer {
    padding: 0 28px 28px 94px;
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.8;
}

.faq-answer p {
    margin-bottom: 14px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul,
.faq-answer ol {
    margin-bottom: 0;
    padding-left: 20px;
}

.faq-answer li {
    margin-bottom: 8px;
}

.faq-answer li:last-child {
    margin-bottom: 0;
}

.faq-answer strong,
.faq-answer b {
    color: var(--dark-strong);
    font-weight: 700;
}

.faq-empty {
    padding: 58px 32px;
    border-radius: 30px;
    background: var(--white);
    border: 1px dashed var(--overlay-dark-18);
    box-shadow: 0 18px 48px var(--overlay-dark-07);
}

.faq-empty-icon {
    width: 88px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--slate-300) 0%, var(--slate-400) 100%);
}

.faq-empty-icon i {
    font-size: 2rem;
}

@media (max-width: 991.98px) {
    .faq-section {
        padding: 70px 0;
    }

    .faq-title {
        font-size: 2.5rem;
    }

    .faq-accordion-wrapper {
        padding: 14px;
        border-radius: 28px;
    }

    .faq-button {
        padding: 22px 24px;
    }

    .faq-answer {
        padding: 0 24px 26px 90px;
    }
}

@media (max-width: 575.98px) {
    .faq-section {
        padding: 56px 0;
    }

    .faq-title {
        font-size: 2.15rem;
    }

    .faq-description {
        font-size: 0.95rem;
        line-height: 1.75;
    }

    .faq-accordion-wrapper {
        padding: 10px;
        border-radius: 24px;
    }

    .faq-item {
        border-radius: 20px !important;
    }

    .faq-button {
        gap: 14px;
        padding: 20px 18px;
        border-radius: 20px !important;
    }

    .faq-number {
        flex-basis: 42px;
        width: 42px;
        height: 42px;
        border-radius: 14px;
        font-size: 0.82rem;
    }

    .faq-button::after {
        width: 34px;
        height: 34px;
        background-size: 14px;
    }

    .faq-question {
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0 18px 24px 74px;
        font-size: 0.94rem;
        line-height: 1.75;
    }
}

/* ============================================================
   Public Information Portal Section
============================================================ */
.portal-logo-loop-section {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background: var(--white);
}

.portal-logo-loop-section::before {
    content: "";
    position: absolute;
    width: 480px;
    height: 480px;
    left: -240px;
    top: 120px;
    border-radius: var(--radius-circle);
    pointer-events: none;
}

.portal-logo-loop-section::after {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    right: -190px;
    bottom: -190px;
    border-radius: var(--radius-circle);
    background: var(--overlay-dark-08);
    pointer-events: none;
}

.portal-logo-loop-section .container {
    position: relative;
    z-index: 2;
}

.portal-logo-loop-header {
    max-width: 760px;
}

.portal-logo-loop-subtitle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    margin-bottom: 16px;
    border-radius: var(--radius-pill);
    color: var(--dark-strong);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    background: var(--overlay-primary-16);
}

.portal-logo-loop-title {
    color: var(--dark-strong);
    font-size: clamp(2.15rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -1.2px;
    line-height: 1.1;
}

.portal-logo-loop-title-line {
    display: block;
    width: 88px;
    height: 5px;
    margin: 0 auto;
    border-radius: var(--radius-pill);
    background: linear-gradient(90deg,
            var(--primary-accent) 0%,
            var(--primary-accent-dark) 100%);
}

.portal-logo-loop-wrapper {
    position: relative;
    z-index: 2;
    padding: 18px 0;
}

.portal-logo-loop-viewport {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 14px 0 24px;
}

.portal-logo-loop-viewport::before,
.portal-logo-loop-viewport::after {
    content: "";
    position: absolute;
    top: 0;
    z-index: 5;
    width: 130px;
    height: 100%;
    pointer-events: none;
}

.portal-logo-loop-viewport::before {
    left: 0;
    background: linear-gradient(90deg,
            var(--white) 0%,
            rgba(255, 255, 255, 0) 100%);
}

.portal-logo-loop-viewport::after {
    right: 0;
    background: linear-gradient(270deg,
            var(--white) 0%,
            rgba(255, 255, 255, 0) 100%);
}

.portal-logo-loop-track {
    display: flex;
    align-items: stretch;
    width: max-content;
    animation: portalLogoLoop 55s linear infinite;
}

.portal-logo-loop-wrapper:hover .portal-logo-loop-track {
    animation-play-state: paused;
}

.portal-logo-loop-item {
    flex: 0 0 auto;
    width: 240px;
    padding: 0 12px;
}

.portal-logo-loop-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    min-height: 210px;
    padding: 28px 20px;

    overflow: hidden;
    text-align: center;
    text-decoration: none;

    border: 1px solid var(--overlay-dark-08);
    border-radius: 24px;
    background: var(--overlay-white-78-solid);
    box-shadow: 0 18px 48px var(--overlay-dark-07);

    transition: all 0.35s ease;
}

.portal-logo-loop-card::before {
    content: "";
    position: absolute;
    top: -74px;
    right: -74px;
    width: 148px;
    height: 148px;
    border-radius: var(--radius-circle);
    background: var(--overlay-primary-12);
    transition: all 0.35s ease;
}

.portal-logo-loop-card::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 5px;
    border-radius: var(--radius-pill);
    background: linear-gradient(90deg,
            var(--primary-accent) 0%,
            var(--primary-accent-dark) 100%);
    transform: translateX(-50%);
    transition: all 0.35s ease;
}

.portal-logo-loop-card-link {
    cursor: pointer;
}

.portal-logo-loop-card-link:hover {
    transform: translateY(-6px);
    border-color: var(--overlay-primary-30-solid);
    background: var(--white);
    box-shadow: 0 24px 60px var(--overlay-dark-10);
}

.portal-logo-loop-card-link:hover::before {
    transform: scale(1.22);
    background: var(--overlay-primary-18);
}

.portal-logo-loop-card-link:hover::after {
    width: 100%;
}

.portal-logo-loop-image-box {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 88px;
    height: 88px;
    margin-bottom: 18px;

    border-radius: 24px;
    background: var(--white);
    border: 1px solid var(--overlay-primary-18);
    box-shadow:
        inset 0 0 0 1px var(--overlay-white-65),
        0 12px 28px var(--overlay-dark-07);
}

.portal-logo-loop-image {
    width: 62px;
    height: 62px;
    object-fit: contain;
}

.portal-logo-loop-name {
    position: relative;
    z-index: 2;

    margin-bottom: 0;
    color: var(--dark-strong);
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1.45;
    letter-spacing: -0.2px;

    transition: all 0.3s ease;
}

.portal-logo-loop-card-link:hover .portal-logo-loop-name {
    color: var(--secondary);
}

.portal-logo-loop-empty {
    position: relative;
    z-index: 2;
    padding: 58px 32px;
    border-radius: 30px;
    background: var(--white);
    border: 1px dashed var(--overlay-dark-18);
    box-shadow: 0 18px 48px var(--overlay-dark-07);
}


@keyframes portalLogoLoop {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 991.98px) {
    .portal-logo-loop-section {
        padding: 70px 0;
    }

    .portal-logo-loop-title {
        font-size: 2.5rem;
    }

    .portal-logo-loop-item {
        width: 220px;
    }

    .portal-logo-loop-viewport::before,
    .portal-logo-loop-viewport::after {
        width: 76px;
    }

    .portal-logo-loop-card {
        min-height: 200px;
        padding: 26px 18px;
        border-radius: 22px;
    }
}

@media (max-width: 575.98px) {
    .portal-logo-loop-section {
        padding: 56px 0;
    }

    .portal-logo-loop-title {
        font-size: 2.15rem;
    }

    .portal-logo-loop-subtitle {
        font-size: 0.76rem;
        padding: 7px 15px;
    }

    .portal-logo-loop-wrapper {
        padding: 10px 0;
    }

    .portal-logo-loop-item {
        width: 190px;
        padding: 0 10px;
    }

    .portal-logo-loop-card {
        min-height: 190px;
        padding: 24px 16px;
        border-radius: 20px;
    }

    .portal-logo-loop-image-box {
        width: 78px;
        height: 78px;
        margin-bottom: 16px;
        border-radius: 22px;
    }

    .portal-logo-loop-image {
        width: 54px;
        height: 54px;
    }

    .portal-logo-loop-name {
        font-size: 0.86rem;
        line-height: 1.4;
    }

    .portal-logo-loop-viewport::before,
    .portal-logo-loop-viewport::after {
        width: 36px;
    }
}

/* ============================================================
    Blog Category Card
============================================================ */
.blog-category-card {
    position: relative;
    display: flex;
    height: 100%;
    min-height: 220px;
    padding: 30px;

    overflow: hidden;
    color: var(--dark-strong);
    text-decoration: none;

    border: 1px solid var(--overlay-dark-08);
    border-radius: 24px;
    background: var(--overlay-white-78-solid);
    box-shadow: 0 18px 48px var(--overlay-dark-07);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background-color 0.35s ease,
        box-shadow 0.35s ease;
}

.blog-category-card::before {
    content: "";
    position: absolute;
    top: -74px;
    right: -74px;

    width: 148px;
    height: 148px;

    border-radius: var(--radius-circle);
    background: var(--overlay-primary-12);

    transition:
        transform 0.35s ease,
        background-color 0.35s ease;
}

.blog-category-card::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;

    width: 0;
    height: 5px;

    border-radius: var(--radius-pill);
    background: linear-gradient(90deg,
            var(--primary-accent) 0%,
            var(--primary-accent-dark) 100%);

    transform: translateX(-50%);
    transition: width 0.35s ease;
}

.blog-category-card:hover,
.blog-category-card:focus-visible {
    color: var(--dark-strong);
    text-decoration: none;

    transform: translateY(-6px);
    border-color: var(--overlay-primary-30-solid);
    background: var(--white);
    box-shadow: 0 24px 60px var(--overlay-dark-10);
}

.blog-category-card:hover::before,
.blog-category-card:focus-visible::before {
    transform: scale(1.22);
    background: var(--overlay-primary-18);
}

.blog-category-card:hover::after,
.blog-category-card:focus-visible::after,
.blog-category-card.active::after {
    width: 100%;
}

.blog-category-card.active {
    border-color: var(--overlay-primary-30-solid);
    background: var(--white);
    box-shadow: 0 22px 55px var(--overlay-dark-10);
}

.blog-category-card.active::before {
    background: var(--overlay-primary-18);
}

.blog-category-card-content {
    position: relative;
    z-index: 2;

    display: flex;
    flex: 1 1 auto;
    flex-direction: column;

    min-width: 0;
}

.blog-category-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;

    margin-bottom: 16px;
}

.blog-category-card-title {
    flex: 1 1 auto;
    min-width: 0;
    margin: 0;

    color: var(--dark-strong);
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.3px;
    line-height: 1.4;

    overflow-wrap: anywhere;
    transition: color 0.3s ease;
}

.blog-category-card:hover .blog-category-card-title,
.blog-category-card:focus-visible .blog-category-card-title,
.blog-category-card.active .blog-category-card-title {
    color: var(--secondary);
}

.blog-category-card-count {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;

    min-width: 38px;
    height: 30px;
    padding: 0 10px;

    color: var(--white);
    font-size: 0.76rem;
    font-weight: 800;
    white-space: nowrap;

    border: 1px solid var(--secondary);
    border-radius: var(--radius-pill);
    background: var(--secondary);
}

.blog-category-card-description {
    display: -webkit-box;
    margin: 0 0 20px;
    overflow: hidden;

    color: var(--text-muted, #6c757d);
    font-size: 0.92rem;
    line-height: 1.7;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.blog-category-card-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: auto;

    color: var(--primary-accent-dark);
    font-size: 0.84rem;
    font-weight: 700;

    transition:
        gap 0.3s ease,
        color 0.3s ease;
}

.blog-category-card-action i {
    font-size: 0.76rem;
    transition: transform 0.3s ease;
}

.blog-category-card:hover .blog-category-card-action,
.blog-category-card:focus-visible .blog-category-card-action {
    gap: 11px;
    color: var(--secondary);
}

.blog-category-card:hover .blog-category-card-action i,
.blog-category-card:focus-visible .blog-category-card-action i {
    transform: translateX(3px);
}

.blog-category-card:focus-visible {
    outline: 3px solid var(--overlay-primary-18);
    outline-offset: 4px;
}

@media (max-width: 575.98px) {
    .blog-category-card {
        min-height: 205px;
        padding: 24px 22px;
        border-radius: 20px;
    }

    .blog-category-card-header {
        gap: 12px;
        margin-bottom: 14px;
    }

    .blog-category-card-title {
        font-size: 1.05rem;
    }

    .blog-category-card-description {
        font-size: 0.87rem;
        line-height: 1.6;
    }

    .blog-category-card-count {
        min-width: 35px;
        height: 28px;
        padding: 0 9px;
        font-size: 0.72rem;
    }
}

/* ============================================================
   Article Section
============================================================ */
.article-title-line {
    display: block;
    width: 88px;
    height: 5px;
    margin: 0 auto;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary-accent) 0%, var(--primary-accent-dark) 100%);
}

.article-item {
    position: relative;
    height: 350px;
    padding: 0 30px;
    transition: .5s;
}

.article-item .service-icon {
    width: 150px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 50%;
    transform: rotate(-14deg);
}

.article-item .service-icon i {
    transform: rotate(15deg);
}

.article-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.article-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}

.article-carousel {
    position: relative;
    z-index: 1;
}

.article-carousel::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 50%;
    bottom: 0;
    left: 0;
    background: var(--primary);
    border-radius: 8px 8px 50% 50%;
    z-index: 0;
}

.article-carousel .owl-stage-outer {
    position: relative;
    z-index: 1;
}

.article-carousel .owl-nav {
    margin-top: 35px;
    width: 100%;
    display: flex !important;
    justify-content: center;
    position: relative;
    z-index: 5;
}

.article-carousel .owl-nav .owl-prev,
.article-carousel .owl-nav .owl-next {
    margin: 0 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--white);
    font-size: 22px;
    border-radius: 50%;
    transition: .3s;
}

.article-carousel .owl-nav .owl-prev:hover,
.article-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

/* ============================================================
   Team Section
============================================================ */
@media (min-width: 576px) {
    .team-item .row {
        height: 350px;
    }
}

.team-carousel .owl-nav {
    position: absolute;
    padding: 0 45px;
    width: 100%;
    height: 45px;
    top: calc(50% - 22.5px);
    left: 0;
    display: flex;
    justify-content: space-between;
}

.team-carousel .owl-nav .owl-prev,
.team-carousel .owl-nav .owl-next {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--primary);
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.team-carousel .owl-nav .owl-prev:hover,
.team-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}

/* ============================================================
   Testimonial Section
============================================================ */
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 20px;
    height: 20px;
    background: var(--light);
    border: 2px solid var(--primary);
    border-radius: 20px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 40px;
    height: 40px;
    background: var(--primary);
}

.testimonial-carousel .owl-item img {
    width: 150px;
    height: 150px;
}