/* ==========================================================================
   style.css — IICS Theme
   Structure:
   1. CSS Variables & Root
   2. Base Styles
   3. Typography Extensions & Utilities
   4. Global UI Components
   5. Home / Landing Sections
   6. Page-Specific Styles
   7. Animations & Keyframes
   8. Media Queries (ordered: min-width ASC then max-width DESC)
   ========================================================================== */


/* ==========================================================================
   1. CSS VARIABLES & ROOT
   ========================================================================== */

:root {
    --bs-primary: rgba(16, 34, 69, 1);
    --bs-secondary: #0056b3;
    --bs-warning: #ffcc00;
    --bs-blue-1: rgba(16, 34, 69, 1);
    --bs-blue-2: #0056b3;
    --bs-blue-3: #0069d9;
    --bs-blue-4: #007bff;
    --bs-btn-font-family: 'Artlab-Regular' !important;
    --blue-iics: rgba(16, 34, 69, 1);
    --iics-primary-blue: rgba(16, 34, 69, 1);
    --ipekablue-primary: rgba(3, 78, 162, 1);
    --ipekayellow-secondary: rgba(255, 203, 5, 1);
    --primarymain: rgba(3, 78, 162, 1);
    --primarysurface: rgba(205, 220, 236, 1);
    --primary-border: rgba(171, 196, 224, 1);
    --primaryhover: rgba(3, 65, 135, 1);
    --primarypressed: rgba(2, 39, 81, 1);
    --primary-focus: rgba(3, 78, 162, 1);
    --neutral-10: rgba(255, 255, 255, 1);
    --neutral-20: rgba(245, 245, 245, 1);
    --neutral-30: rgba(237, 237, 237, 1);
    --neutral-40: rgba(224, 224, 224, 1);
    --neutral-50: rgba(194, 194, 194, 1);
    --neutral-60: rgba(158, 158, 158, 1);
    --neutral-70: rgba(117, 117, 117, 1);
    --neutral-80: rgba(97, 97, 97, 1);
    --neutral-90: rgba(64, 64, 64, 1);
    --neutral-100: rgba(10, 10, 10, 1);
    --paragraph-font-family: "Artlab-Regular", Helvetica;
    --paragraph-font-weight: 600;
    --paragraph-font-size: 16px;
    --paragraph-letter-spacing: 0px;
    --paragraph-line-height: 24px;
    --paragraph-font-style: normal;
    --button-text-font-family: "Artlab-Regular", Helvetica;
    --bs-body-font-family: "Artlab-Regular", Helvetica;
    --button-text-font-weight: 700;
    --button-text-font-size: 16px;
    --button-text-letter-spacing: 0px;
    --button-text-line-height: 26px;
    --button-text-font-style: normal;
    --heading-h1-font-family: "Artlab-Regular", Helvetica;
    --heading-h1-font-weight: 700;
    --heading-h1-font-size: 72px;
    --heading-h1-letter-spacing: 0px;
    --heading-h1-line-height: 104.99999523162842%;
    --heading-h1-font-style: normal;
    --heading-h2-font-family: "Artlab-Regular", Helvetica;
    --heading-h2-font-weight: 700;
    --heading-h2-font-size: 64px;
    --heading-h2-letter-spacing: 0px;
    --heading-h2-line-height: normal;
    --heading-h2-font-style: normal;
    --heading-h3-font-family: "Artlab-Regular", Helvetica;
    --heading-h3-font-weight: 600;
    --heading-h3-font-size: 35px;
    --heading-h3-letter-spacing: 0px;
    --heading-h3-line-height: 42px;
    --heading-h3-font-style: normal;
    --heading-h4-font-family: "Artlab-Regular", Helvetica;
    --heading-h4-font-weight: 600;
    --heading-h4-font-size: 28px;
    --heading-h4-letter-spacing: 0px;
    --heading-h4-line-height: 35px;
    --heading-h4-font-style: normal;
    --heading-h5-font-family: "Artlab-Regular", Helvetica;
    --heading-h5-font-weight: 700;
    --heading-h5-font-size: 24px;
    --heading-h5-letter-spacing: 0px;
    --heading-h5-line-height: normal;
    --heading-h5-font-style: normal;
    --bs-card-spacer-y: 2rem;
    --bs-card-spacer-x: 2rem;
}


/* ==========================================================================
   2. BASE STYLES
   ========================================================================== */

body {
    font-family: 'Artlab-Regular';
    color: #333;
    line-height: 1.6;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
.navbar-brand {
    font-family: 'Artlab-Bold';
}

/*
 * Font Scale — Fixed for 1920x1080 readability
 * Old values used high vw multipliers causing oversized text at wide viewports.
 * New clamp() values: tighter fluid range with lower max caps.
 *
 * Calculation reference (16px base):
 *   h1 max = 2.5rem = 40px at 1920px  (was 3.0rem = 48px)
 *   h2 max = 1.875rem = 30px           (was 2.25rem = 36px)
 *   h3 max = 1.5rem = 24px             (was 1.75rem = 28px)
 */

h1,
.h1 {
    /* font-size: clamp(1.875rem, 1.5vw + 1rem, 2.5rem); */
    line-height: 1.2;
}

h2,
.h2 {
    /* font-size: clamp(1.5rem, 1vw + 0.875rem, 1.875rem); */
    line-height: 1.3;
}

h3,
.h3 {
    /* font-size: clamp(1.25rem, 1vw + 0.75rem, 1.5rem); */
    line-height: 1.4;
}

h5,
.h5 {
    font-size: 1.25rem;
}

h6,
.h6 {
    font-size: 1rem;
}

.card {
    --bs-card-spacer-y: 2rem;
    --bs-card-spacer-x: 2rem;
}

.btn {
    --bs-btn-font-family: 'Artlab-Bold' !important;
}

.btn-warning {
    --bs-btn-bg: #FFCB05;
    --bs-btn-border-color: #FFCB05;
}

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


/* ==========================================================================
   3. TYPOGRAPHY EXTENSIONS & UTILITIES
   ========================================================================== */

.fw-italic {
    font-style: italic;
}

.fw-medium {
    font-weight: 500 !important;
    font-family: 'Artlab-Medium' !important;
}

.fw-semibold {
    font-weight: 600 !important;
    font-family: 'Artlab-SemiBold' !important;
}

.fw-bold {
    font-family: 'Artlab-Bold';
}

.fw-extrabold {
    font-family: 'Artlab-ExtraBold';
    font-weight: 800 !important;
}

.fw-extrabolditalic {
    font-family: 'Artlab-ExtraBoldItalic';
    font-weight: 800 !important;
}

.fw-semibolditalic {
    font-family: 'Artlab-SemiBoldItalic';
    font-weight: 600 !important;
}

.fw-normal {
    font-family: 'Artlab-Regular';
    font-weight: 500 !important;
}

.text-semi-bold {
    font-family: "Artlab-SemiBold";
    font-weight: 600;
}



.fs-7 {
    font-size: 0.875rem;
}

.sub-hero {
    font-size: 1.5rem;
    font-weight: 300;
}

/* Backgrounds */
.bg-primary {
    background-color: rgba(16, 34, 69, 1) !important;
}

.bg-blue-1 {
    background-color: var(--bs-blue-1) !important;
}

.bg-blue-2 {
    background-color: var(--bs-blue-2) !important;
}

.bg-blue-3 {
    background-color: var(--bs-blue-3) !important;
}

.bg-blue-4 {
    background-color: var(--bs-blue-4) !important;
}

.bg-neutral {
    background-color: rgba(245, 245, 245, 1);
}

.bg-blue {
    background-color: #0b4596 !important;
}

.bg-light-blue {
    background-color: #f4f7fb !important;
}

/* Borders */
.border-white-20 {
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.border-bottom {
    border-bottom: 2px solid rgba(193, 193, 193, 0.5);
}

.no-border {
    border: 0px !important;
}

/* Z-index */
.z-index-1 {
    z-index: 1;
}

.z-index-2 {
    z-index: 2;
}

.z-index-3 {
    z-index: 3;
    position: relative;
}

/* Widths */
.max-w-lg {
    max-width: 800px;
}

/* Padding/margin */
.pr-0 {
    padding-right: 0px !important;
}

.pl-0 {
    padding-left: 0px !important;
}

/* Border radius */
.rounded-type-2 {
    border-radius: 1.5rem;
}

.rounded-type-1 {
    border-radius: .3rem;
}

.border-radius-0 {
    border-radius: 0px !important;
}

.card-img-top.rounded-type-1 {
    border-bottom-left-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
}

/* Layout */
.overflow-hidden {
    overflow: hidden;
}

.ratio-125 {
    --bs-aspect-ratio: 125%;
}

.ratio-2x1 {
    aspect-ratio: 1 / 2;
}

/* Misc */
.letter-spacing-1 {
    letter-spacing: 1px;
}

.object-fit-cover {
    object-fit: cover;
}

.line-height-lg {
    line-height: 1.8;
}

/* Grid row helpers */
.row.row-3>* {
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
}


/* ==========================================================================
   4. GLOBAL UI COMPONENTS
   ========================================================================== */

/* -- TOPBAR -- */
.topbar {
    background-color: var(--bs-primary);
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 9;
    line-height: normal;
    position: relative;
}

.topbar-nav a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.topbar-nav a:hover {
    opacity: 1;
}

.topbar-lang {
    color: #fff;
}

.search-icon svg {
    color: #fff;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.search-icon:hover svg {
    opacity: 1;
}

/* -- MAIN NAVBAR -- */
.main-navbar {
    background-color: transparent;
    transition: background-color 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
    will-change: background-color;
}

.main-navbar.navbar-scrolled {
    background-color: var(--bs-primary) !important;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.18);
}

.navbar-brand h2 {
    letter-spacing: -1px;
}

.offcanvas {
    background-color: #fff;
}

.navbar-brand .logo {
    height: 75px;
    transition: height 0.4s ease;
}

.main-navbar.navbar-scrolled .navbar-brand .logo {
    height: 45px;
}

.nav-link {
    color: rgba(255, 255, 255, 1) !important;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem .75rem !important;
    transition: color 0.3s;
    font-family: 'Artlab-Medium' !important;
}

.nav-link:hover,
.nav-link:focus {
    color: #fff !important;
}

.main-navbar .dropdown-menu {
    border-radius: 0.5rem;
    margin-top: 0.5rem;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.main-navbar .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    background: rgba(255, 255, 255, .95);
}

.main-navbar .dropdown-menu::before {
    content: "";
    position: absolute;
    top: -0.5rem;
    left: 0;
    right: 0;
    height: 0.5rem;
    background: transparent;
}

.main-navbar .dropdown-item {
    padding: 0.5rem 1.5rem;
    font-size: 0.95rem;
    transition: all 0.2s;
    border-top: solid 1px rgba(217, 217, 217, 0.5);
}

.main-navbar .dropdown-menu li:nth-child(1) .dropdown-item {
    border-top: 0px;
}

.main-navbar .dropdown-item:hover {
    background-color: rgba(0, 77, 153, 0.05);
    color: var(--bs-primary);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.dropdown-toggle::after {
    display: none;
}

.apply-btn {
    color: rgba(16, 34, 69, 1);
    font-size: 1rem;
}

/* Nav light variant */
nav.nav-blue .logo-color,
nav.nav-light.navbar-scrolled .logo-color {
    display: none;
    transition: all 0.2s;
}

nav.nav-blue .logo-white {
    display: block;
}

nav.nav-light {
    background-color: #fff !important;
}

nav.nav-light .nav-link {
    color: #034EA2 !important;
}

nav.nav-light.navbar-scrolled .nav-link {
    color: #fff !important;
}

nav.nav-light:not(.navbar-scrolled) .logo-color {
    display: block;
}

nav.nav-light:not(.navbar-scrolled) .logo-white {
    display: none;
}

nav.nav-light .navbar-brand img {
    height: 55px;
}

nav.nav-light:not(.navbar-scrolled) .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(3, 78, 162, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* -- FOOTER -- */
.footer a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.footer-links a:hover,
.footer-bottom-links a:hover {
    color: #fff !important;
    opacity: 1;
}

.social-icons a {
    transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);
    background-color: var(--bs-warning) !important;
    color: #000 !important;
}

.logo-footer {
    width: 40%;
    margin-bottom: 1.5rem;
}

/* -- STICKY WA (old) -- */
.sticky-wa {
    position: fixed;
    right: 1rem;
    bottom: 2rem;
    z-index: 999999;
}

.sticky-wa img {
    width: 100px;
    height: 100px;
}

/* -- FLOATING WHATSAPP BUTTON -- */
.floating-wa {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.floating-wa:hover {
    background-color: #128c7e;
    color: #fff;
    transform: scale(1.1);
}

.floating-wa svg {
    width: 35px;
    height: 35px;
    fill: currentColor;
}

/* -- ACCORDION -- */
.accordion-button::after {
    width: 1.75rem;
    height: 1.75rem;
    background-size: 1.75rem;
}

.text-justify {
    text-align: justify;
}

.text-left {
    text-align: left !important;
}

.text-left-important {
    text-align: left !important;
    margin: 0 !important;
}

.text-underline {
    text-decoration: underline;
}

.text-decoration-unset {
    text-decoration: unset;
}

.text-primary {
    color: rgba(16, 34, 69, 1) !important;
}

.text-ipeka-secondary {
    color: rgba(255, 203, 5, 1);
    font-family: inherit;
}

.text-yellow {
    color: #ffc107 !important;
}

.text-grey {
    color: rgba(77, 77, 77, 1);
}

.text-blue {
    color: #0b4596 !important;
}

/* -- OVERLAY TYPES -- */
.with-overlay-blue,
.with-overlay-blue .slide-bg:before {
    content: "";
    background: rgba(0, 0, 0, 0.2);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.overlay-sticky-top .slide-bg:after,
.overlay-sticky-top .overlay-blue:after {
    content: "";
    /* background: linear-gradient(0deg, rgba(16, 34, 69, 0) 55.93%, rgba(16, 34, 69, 0.6) 100%); */
    position: absolute;
    width: 100%;
    height: 50%;
    top: 0;
    left: 0;
    z-index: 2;
}

.overlay-bottom-blue:before {
    content: "";
    background: linear-gradient(180deg, rgba(16, 34, 69, 0) 25%, #102245 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.overlay-bottom-blue_type-2:before {
    content: "";
    background: linear-gradient(180deg, rgb(16 34 69 / 50%) 25%, #102245 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.overlay-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100vh - 50px);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 202.54%);
}

.with-overlay-black::before {
    content: " ";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.25));
    z-index: 0;
}

.banner-overlay {
    background: rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.ratio.with-background::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 28.06%, rgba(0, 0, 0, 0.242382) 46.67%, rgba(0, 0, 0, 0.39913) 59.24%, rgba(0, 0, 0, 0.622998) 77.18%, #102245 118.29%);
    border-radius: 1.5rem;
}

.ratio.with-background.active::before,
.with-hover:hover .ratio.with-background::before {
    background: rgba(3, 78, 162, 0.8);
    transform: translateY(0%);
    transition: background 0.4s ease, transform 0.5s ease;
}

.show-hover-desktop {
    height: 100%;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    padding: 2rem;
    border-radius: 1.5rem;
    background: rgba(3, 78, 162, 0.6);
}

.with-hover:hover .default-active {
    display: none;
}

.with-hover:hover .show-hover-desktop {
    display: block;
}

.tab-overlay-text {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
}


/* ==========================================================================
   5. HOME / LANDING SECTIONS
   ========================================================================== */

/* -- HERO SLIDER -- */
.hero-section {
    margin-top: -103px;
    height: 100vh;
    position: relative;
    background-size: cover;
    background-position: center;
}

.hero-section .btn {
    line-height: inherit;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 0;
}

.hero-title {
    line-height: 1.1;
}

.hero-subtitle {
    font-family: 'Artlab-Bold';
}

.heroSwiper .col-lg-12 {
    padding-bottom: 6rem;
    padding-left: 0;
}

.hero-section .swiper-horizontal>.swiper-pagination-bullets,
.hero-section .swiper-pagination-bullets.swiper-pagination-horizontal,
.hero-section .swiper-pagination-custom,
.hero-section .swiper-pagination-fraction {
    bottom: 3rem;
    top: auto;
    left: 0;
    justify-content: left;
    width: 100%;
}

/* Swiper Pagination custom */
.custom-pagination {
    display: flex !important;
    justify-content: center !important;
    align-items: center;
    gap: 10px;
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    margin: 0 auto !important;
    position: absolute !important;
}

.hero-section .custom-pagination {
    justify-content: flex-start !important;
    left: 0 !important;
    right: auto !important;
    margin: 0 !important;
    position: relative !important;
}

.custom-pagination .swiper-pagination-bullet {
    width: 40px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    position: relative;
    overflow: hidden;
    margin: 0 !important;
    transition: all 0.3s ease;
}

.custom-pagination .swiper-pagination-bullet-active {
    background: rgba(255, 255, 255, 0.3);
    width: 60px;
}

.pagination-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: #ffcc00;
    border-radius: 2px;
}

.hero-image-type-2 {
    margin-top: -60px;
}

/* -- SWIPER -- */
.swiper-wrapper {
    z-index: 2;
}

.swiper-slide,
.swiper-slide-next {
    position: relative;
}

/* -- USP SECTION -- */
.usp-accordion {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.usp-item {
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 1.5rem;
    opacity: 0.5;
    transition: all 0.3s ease;
    cursor: pointer;
}

.usp-item.active {
    opacity: 1;
    border-bottom-color: #C1C1C1;
}

.usp-item.active:last-child {
    border: 0px;
}

.usp-title {
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.usp-item.active .usp-title {
    color: var(--bs-primary) !important;
}

.usp-content {
    overflow: hidden;
    height: 0;
    opacity: 0;
    transition: all 0.5s ease;
}

.usp-item.active .usp-content {
    height: auto;
    opacity: 1;
    margin-top: 1rem;
}

.usp-content p {
    margin-bottom: 0;
    color: #555;
}

.scroll-reveal-container {
    min-height: 100vh;
    align-items: center !important;
}

.usp-image-wrapper {
    max-height: 77vh;
    overflow: hidden;
}

.usp-image-wrapper img {
    height: 100%;
    max-height: 75vh;
    object-fit: cover;
}

/* -- PARTNERS SECTION -- */
.partners-section {
    overflow: hidden;
}

.partners-logos {
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-top: 2rem !important;
    margin-bottom: 4rem !important;
}

.partners-track {
    display: flex;
    width: max-content;
    animation: scroll-partners 60s linear infinite;
}

.partners-track:hover {
    animation-play-state: paused;
}

.partner-logo-wrapper {
    width: auto;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3rem;
    flex-shrink: 0;
}

.partner-logo-wrapper img {
    max-height: 45px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
    opacity: 0.8;
    transition: all 0.3s ease;
    filter: none !important;
}

.partner-logo-wrapper img:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* -- STATS GRID -- */
.stat-box {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    transition: transform 0.3s ease;
    position: relative;
}

.stat-box:hover {
    z-index: 10;
}

.stat-box h2,
.stat-box p {
    z-index: 1;
}

.bg-blue-3:before {
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(49, 159, 217, .8) !important;
}

.bg-blue-1:before {
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(2, 93, 195, .8) !important;
}

/* -- PROGRAMS SECTION -- */
.programs-section,
.testimonials-section,
.cta-section {
    min-height: calc(100vh - 0px);
}

.programs-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: top center;
    z-index: 0;
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity;
}

.programs-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 0;
}

.backdrop-blur {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Program card */
.program-card {
    transition:
        background-color 0.65s cubic-bezier(0.4, 0, 0.2, 1),
        color 0.65s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.65s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.65s cubic-bezier(0.4, 0, 0.2, 1),
        border-color 0.65s cubic-bezier(0.4, 0, 0.2, 1),
        border-radius 0.65s cubic-bezier(0.4, 0, 0.2, 1),
        backdrop-filter 0.65s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0) !important;
    border: 0px;
    border-top: 1px solid rgba(255, 255, 255, 1) !important;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    color: rgba(255, 255, 255, 0.1);
    transform: scale(0.98);
    box-shadow: none !important;
}

.program-card h3 {
    color: rgba(255, 255, 255, 1);
    transition: color 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.program-card p {
    color: rgba(255, 255, 255, 1);
    transition: color 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.program-card .btn {
    border: 0px;
    border-radius: 0px;
    width: auto;
    color: #fff;
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-bottom: initial;
    position: relative;
    color: rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 0.4);
    transition:
        color 0.65s cubic-bezier(0.4, 0, 0.2, 1),
        border-color 0.65s cubic-bezier(0.4, 0, 0.2, 1),
        background-color 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.program-card .btn::after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    border-bottom: 1px solid #fff !important;
}

.program-card-active {
    background-color: #fff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none !important;
    border-top-left-radius: var(--bs-border-radius-xl) !important;
    border-top-right-radius: var(--bs-border-radius-xl) !important;
    border-radius: var(--bs-border-radius-xl) !important;
    color: #333 !important;
    transform: scale(1.02) !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3) !important;
}

.program-card-active h3 {
    color: #102245 !important;
}

.program-card-active p {
    color: #555 !important;
}

.program-card-active .btn {
    color: #102245 !important;
    border-color: #102245 !important;
    background-color: transparent !important;
}

.program-card-active .btn::after {
    border-bottom: 1px solid #102245 !important;
}

.program-card-active .btn:hover {
    background-color: #034EA2 !important;
    color: #fff !important;
}

/* -- TESTIMONIALS SECTION -- */
.testimonials-section {
    background-image: url(/wp-content/themes/ipeka/assets/images/Layer_bg_1.png), url(/wp-content/themes/ipeka/assets/images/Layer_bg_2.png);
    background-repeat: no-repeat;
    background-position: top left, bottom right;
}

.testimonials-section .swiper-slide-next {
    width: 28.5% !important;
    position: relative !important;
}

.testimonials-section .swiper {
    margin-bottom: auto;
    margin-top: auto;
    vertical-align: bottom;
    align-items: end;
    padding-bottom: 3rem;
}

.testimonials-section .swiper-horizontal>.swiper-pagination-bullets,
.testimonials-section .swiper-pagination-bullets.swiper-pagination-horizontal,
.testimonials-section .swiper-pagination-custom,
.testimonials-section .swiper-pagination-fraction {
    bottom: 0rem;
    top: unset;
    left: 0;
    width: 100%;
    z-index: 9;
}

.testimonial-info {
    display: none;
}

.testimonials-section .swiper-slide-next .testimonial-info {
    display: block;
    position: fixed;
    top: 0;
    left: calc(50vw - 4.5rem);
    width: 40vw;
}

#testimonialPanel {
    position: absolute;
    width: 50%;
    right: 1rem;
}

.test-img-wrapper {
    width: 250px;
    height: 350px;
    transition: all 0.4s ease;
    transform: scale(0.9);
    opacity: 0.6;
}

.swiper-slide-active .test-img-wrapper {
    transform: scale(1.1);
    opacity: 1;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.test-text {
    animation: fadeIn 0.5s ease;
}

.test-nav button {
    transition: all 0.3s ease;
}

.test-nav button:hover {
    background-color: #fff;
    color: var(--bs-primary);
}

.play-testimony {
    position: absolute;
    top: calc(50% - 15px);
    left: calc(50% - 15px);
    z-index: 10;
}

.play-testimony svg {
    height: 30px;
    width: 30px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 100%;
    padding: 5px;
    transition: all 0.3s ease;
}

.swiper-slide-next .play-testimony {
    top: calc(50% - 25px);
    left: calc(50% - 25px);
}

.swiper-slide-next .play-testimony svg {
    display: block;
    height: 50px;
    width: 50px;
}

/* -- CTA SECTION -- */
.cta-section {
    display: flex;
    align-items: end;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 0;
}

/* -- HOME BACKGROUNDS -- */
#beyond {
    background-image: url(/wp-content/uploads/2026/08/Asset-1-1.png);
    background-size: 20vw;
    background-position: top right;
    background-repeat: no-repeat;
}

#homestories {
    background-image: url(/wp-content/uploads/2026/07/Asset-3-1-2.png);
    background-size: 25vw;
    background-position: top right;
    background-repeat: no-repeat;
}

#purposeful {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.purposeful-bg-layer {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 0.7s ease-in-out;
    z-index: 0;
}

.purposefulSwiper .swiper-slide.is-active {
    background: rgba(255, 255, 255, 1);
}

.purposefulSwiper .swiper-slide:not(.is-active) .text-primary {
    color: rgba(255, 255, 255, 1) !important;
}

.purposefulSwiper .swiper-slide.is-active p {
    display: block !important;
}

.storiesSwiper .img-stories {
    margin: 1rem;
}

.storiesSwiper .content-stories {
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
}

/* -- SCHOOL ACCORDION -- */
.school-accordion .accordion-item {
    border-bottom: 1px solid #e9ecef !important;
}

.school-accordion .accordion-button {
    color: #0d4b96;
    font-weight: 700;
    padding: 1.5rem 0;
    font-size: 1.1rem;
}

.school-accordion .accordion-button:not(.collapsed) {
    color: #0d4b96;
    background-color: transparent;
    box-shadow: none;
    padding-bottom: 1rem;
}

.school-accordion .accordion-button:focus {
    box-shadow: none;
}

.school-card-expanded {
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    color: white;
    position: relative;
    overflow: hidden;
}

.school-card-expanded::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.school-card-content {
    position: relative;
    z-index: 2;
}

.school-card-level {
    font-size: 0.85rem;
    font-weight: 600;
}

.school-card-address {
    font-size: 0.8rem;
}

.school-action-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    color: #0d4b96;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s;
}

.school-action-btn:hover {
    background: #0d4b96;
    color: white;
}

/* -- PURPOSE OF IPEKA / OUR EXPECTATION -- */
.purpose-of-ipeka .card,
.our-expectation .card {
    background-color: #EDEDED;
    border: 0px;
    border-radius: 1.5rem;
}

.our-expectation .card {
    background-color: #F5F5F5;
    border: 0px;
    border-radius: 1.5rem;
}

.purpose-of-ipeka .card img {
    width: auto;
    height: 60px;
    position: absolute;
    top: 2rem;
    left: 2rem;
}

.purpose-of-ipeka .card p {
    position: absolute;
    width: calc(100% - 4rem);
    bottom: 2rem;
    left: 2rem;
}

/* -- OUR PHILOSOPHY -- */
section.our-phylosophy {
    min-height: 50vh;
    background-color: #034EA2;
    background-position: center right;
    background-size: 50vw;
    background-repeat: no-repeat;
}

/* -- MISSION -- */
#mission .card::after {
    content: " ";
    border-radius: 1rem;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 28.06%, rgba(0, 0, 0, 0.242382) 46.67%, rgba(0, 0, 0, 0.39913) 59.24%, rgba(0, 0, 0, 0.622998) 77.18%, #102245 118.29%);
}

#mission .card .card-body {
    align-content: end;
    z-index: 1;
    text-align: left;
}

#mission .cta-section {
    height: 50vh;
    min-height: auto;
}

/* -- FOUNDATION -- */
#foundation {
    min-height: 34vw;
}

#foundation ul.foundation-item {
    padding: 0;
    margin: 0;
    text-align: center;
    margin-top: 3rem;
}

#foundation ul.foundation-item li {
    width: calc(20% - 1.8rem);
    display: inline-block;
    margin-left: 2rem;
    vertical-align: top;
    cursor: pointer;
}

#foundation ul.foundation-item li:first-child {
    margin-left: 0;
}

#foundation ul.foundation-item li img {
    margin: 0 auto;
    width: 40%;
    margin-bottom: 2rem;
}

#foundation ul.foundation-item li:hover p {
    display: block !important;
}

/* -- BEYOND / IMAGE WRAPPER -- */
.beyond-image-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease;
    opacity: 0.3;
}

.beyond-image-wrapper.is-active {
    grid-template-rows: 1fr;
    opacity: 1;
}

.beyond-image-inner {
    min-height: 0;
    overflow: hidden;
}

/* -- CUSTOM NAV PILLS -- */
.custom-nav-pills .nav-link {
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.custom-nav-pills .nav-link.active,
.custom-nav-pills .nav-link:hover {
    border-color: #fff !important;
    color: #fff !important;
    border-radius: 5px !important;
    background-color: rgba(3, 65, 135, 1) !important;
}

/* -- IMAGE UTILITIES -- */
.img-wwai {
    background-position: center;
    background-size: cover;
}

img.p-top {
    position: absolute;
    top: -4.5rem;
    left: 0;
    width: calc(100% - 3rem);
}

img.p-bottom {
    position: absolute;
    bottom: -4.5rem;
    left: 0;
    width: calc(100% - 3rem);
}

.card.overlay-full-radius::after {
    border-radius: 1.5rem !important;
}

/* -- HERO MISSION -- */
header.hero-mission {
    height: 100vh;
}

.hero-mission.overlay-image::before {
    height: 100%;
}

/* -- JOB OPP NAV -- */
#jobOpp ol:not(.nav),
#jobOpp ul:not(.nav),
#jobOpp menu {
    list-style: disc;
}

#jobOpp .nav-link {
    padding: 0.75rem .75rem !important;
}

/* -- MOBILE TESTIMONIAL -- */
.mob-testi-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 1rem;
    display: block;
}

.mob-testi-prev,
.mob-testi-next {
    position: absolute;
    top: 200px;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0;
}

.mob-testi-prev {
    left: 0.75rem;
}

.mob-testi-next {
    right: 0.75rem;
}

.mob-testi-prev::after,
.mob-testi-next::after {
    font-family: 'swiper-icons';
    font-size: 24px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.mob-testi-prev::after {
    content: 'prev';
}

.mob-testi-next::after {
    content: 'next';
}

.mob-testi-pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
}

.mob-testi-pagination .swiper-pagination-bullet {
    width: 28px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.35);
    opacity: 1;
    margin: 0 !important;
    transition: background 0.3s ease;
}

.mob-testi-pagination .swiper-pagination-bullet-active {
    background: #ffc107;
}

.mob-testi-content {
    padding: 0 0.25rem;
}

/* -- NAV SWIPER TYPE 2 -- */
.nav-swiper-type-2 {
    display: none !important;
}

/* -- CUSTOM ACCORDION BUTTON -- */
.custom-accordion-btn::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23004d99'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
    transition: transform 0.3s ease;
}

.custom-accordion-btn:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23004d99'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
    transform: rotate(-180deg) !important;
}

.custom-accordion-btn:focus {
    box-shadow: none !important;
}

.custom-accordion-btn:not(.collapsed) {
    background-color: transparent !important;
    box-shadow: none !important;
}

#opportunitiesTab .nav-link.active {
    background-color: var(--bs-primary) !important;
    color: #fff !important;
}

#opportunitiesTab .nav-link:hover:not(.active) {
    background-color: #e2e8f0 !important;
}

.btn-light.text-secondary:hover {
    background-color: #e2e8f0 !important;
}


/* ==========================================================================
   6. PAGE-SPECIFIC STYLES
   ========================================================================== */

/* ── 6a: JOB OPPORTUNITIES ──────────────────────────────────────────────── */

.job-opp-hero {
    background-image: url('https://dummyimage.com/1920x1080/444/fff.jpg&text=Career+Opportunities');
    position: relative;
    background-size: cover;
    background-position: center;
}

.job-opp-hero-overlay {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 60%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Was: 4.5rem (72px) — terlalu besar di 1920px */
.job-opp-hero-title {
    font-size: clamp(2.25rem, 2.5vw + 0.5rem, 3.5rem);
    letter-spacing: -1px;
}

.job-opp-subtitle {
    max-width: 700px;
}

.job-opp-grid-container {
    max-width: 1000px;
}

.job-opp-img {
    object-fit: cover;
    border-radius: 1.5rem;
}

.job-opp-img-4-5 {
    aspect-ratio: 4/5;
}

.job-opp-img-3-4 {
    aspect-ratio: 3/4;
}

.job-opp-img-1-1 {
    aspect-ratio: 1/1;
}

.job-opp-title {
    font-size: clamp(2rem, 2vw + 0.5rem, 2.75rem);
}

.job-opp-tabs-wrapper {
    background-color: #efefef;
}

.job-opp-tab-btn {
    font-size: 1rem;
    transition: all 0.3s;
}

.job-opp-tab-btn-inactive {
    font-size: 1rem;
    color: var(--bs-primary);
    transition: all 0.3s;
}

.job-opp-filter-input-wrap {
    min-width: 250px;
    border: 1px solid var(--bs-primary);
}

.job-opp-filter-loc-wrap {
    min-width: 180px;
    border: 1px solid var(--bs-primary);
}

.job-opp-filter-pos-wrap {
    min-width: 160px;
    border: 1px solid var(--bs-primary);
}

.job-opp-filter-mobile-wrap {
    border: 1px solid var(--bs-primary);
}

.job-opp-input {
    outline: none;
    box-shadow: none;
}

.job-opp-select {
    cursor: pointer;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    box-shadow: none;
    background-image: none !important;
}

.job-opp-chevron {
    right: 15px;
    pointer-events: none;
}

.job-opp-btn-explore {
    min-width: 120px;
}

.job-opp-accordion-title {
    font-size: 1.25rem;
}

.job-opp-req-list {
    list-style-type: disc;
    padding-left: 1.5rem;
    line-height: 2;
}

.job-opp-page-btn {
    width: 44px;
    height: 44px;
    border: none;
}

.job-opp-page-btn-active {
    font-size: 1.1rem;
}

.job-opp-page-btn-inactive {
    background-color: #f1f1f1;
    font-size: 1.1rem;
    transition: background-color 0.2s;
}

.job-opp-page-btn-next {
    background-color: #f1f1f1;
    transition: background-color 0.2s;
}

.job-opp-bottom-banner {
    height: 450px;
    background-image: url('https://dummyimage.com/1920x600/444/fff.jpg&text=Classroom+Banner');
    background-size: cover;
    background-position: center;
    margin-bottom: -3rem;
    position: relative;
    z-index: 0;
}

/* ── 6b: LANDING SCHOOL (ls-*) ─────────────────────────────────────────── */

.ls-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 3rem;
}

.ls-hero-overlay {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 60%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Was: 4.5rem (72px) — terlalu besar di 1920px */
.ls-hero-title {
    font-size: clamp(2.25rem, 2.5vw + 0.5rem, 3.5rem);
    letter-spacing: -1px;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.ls-wa-btn {
    position: absolute;
    bottom: -30px;
    right: 5%;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 10;
    transition: transform 0.3s;
    text-decoration: none;
}

.ls-wa-btn:hover {
    transform: scale(1.1);
    color: white;
}

.ls-info-box {
    background-color: rgba(237, 237, 237, 1);
    border-radius: 1.5rem;
    padding: 3rem 2.5rem;
    height: 100%;
}

.ls-info-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6c757d;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.ls-info-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: var(--bs-primary);
    color: white;
    border-radius: 50%;
    margin-right: 0.75rem;
    text-decoration: none;
    transition: opacity 0.3s;
}

.ls-info-social a:hover {
    opacity: 0.8;
}

.ls-desc-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
}

.ls-featured-img {
    border-radius: 1.5rem;
    width: 100%;
    object-fit: cover;
    aspect-ratio: 21/9;
}

.ls-edu-row {
    margin-bottom: 4rem;
    align-items: start;
}

.ls-edu-title {
    font-size: clamp(1.75rem, 2vw + 0.5rem, 2.5rem);
    font-weight: bold;
    color: var(--bs-primary);
    line-height: 1.2;
}

.ls-edu-img {
    border-radius: 1.5rem;
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.ls-edu-desc {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.ls-facilities-section {
    background-color: #004d99;
    padding: 6rem 0;
    color: white;
}

/* Was: 2.75rem — terlalu besar. Kini menggunakan clamp dengan max 2.25rem */
.ls-section-title {
    font-size: clamp(1.75rem, 1.5vw + 0.75rem, 2.25rem);
    font-weight: bold;
    margin-bottom: 2rem;
}

.ls-swiper-nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.ls-swiper-nav-btn:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.ls-swiper-nav-btn.dark {
    background-color: #e9ecef;
    color: var(--bs-primary);
}

.ls-swiper-nav-btn.dark:hover {
    background-color: #dee2e6;
}

.ls-facility-card {
    border-radius: 1.5rem;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
}

.ls-facility-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ls-facility-title {
    position: relative;
    color: white;
}

.ls-moment-card {
    border-radius: 1.5rem;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1/1;
    cursor: pointer;
}

.ls-moment-card.ratio-4x3 {
    aspect-ratio: 4/3;
}

.ls-moment-card.ratio-125 {
    aspect-ratio: 1 / 1.25;
}

.ls-moment-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ls-moment-card:hover .ls-moment-img {
    transform: scale(1.05);
}

.ls-moment-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
}

.ls-moment-title {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
    transition: transform 0.4s ease;
}

.ls-moment-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}

.ls-moment-card:hover .ls-moment-desc,
.ls-moment-card:active .ls-moment-desc {
    max-height: 150px;
    opacity: 1;
    margin-top: 0.5rem;
}

.ls-custom-nav-btn {
    background-color: #0b4596 !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    color: white !important;
    margin-top: -24px !important;
}

.ls-custom-nav-btn::after {
    font-size: 1.25rem !important;
    font-weight: bold;
}

.ls-custom-nav-btn.swiper-button-prev {
    left: 0 !important;
    transform: translateX(-50%);
}

.ls-custom-nav-btn.swiper-button-next {
    right: 0 !important;
    transform: translateX(50%);
}

.school-highlights .mySwiper .swiper-slide {
    opacity: 0.4;
    cursor: pointer;
    transition: opacity 0.3s ease, border 0.3s ease, transform 0.3s ease;
    border: 3px solid transparent;
}

.school-highlights .mySwiper .swiper-slide:hover {
    opacity: 0.7;
}

.school-highlights .mySwiper .swiper-slide-thumb-active {
    opacity: 1;
    border-color: #FFCB05;
}

.ls-club-card {
    border-radius: 1.5rem;
    overflow: hidden;
    position: relative;
    aspect-ratio: 3/4;
    cursor: pointer;
}

.ls-club-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ls-club-card:hover .ls-club-img {
    transform: scale(1.05);
}

.ls-club-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem 1.5rem;
    opacity: 1;
}

.ls-club-title {
    color: white;
    font-size: 1.75rem;
    font-weight: bold;
    margin: 0;
    transform: translateY(0);
}

.ls-faq-btn {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--bs-primary);
    padding: 1.5rem 0;
}

.ls-faq-btn:not(.collapsed) {
    color: var(--bs-primary);
    background-color: transparent;
    box-shadow: none;
}

.ls-faq-btn:focus {
    box-shadow: none;
}

/* ── 6c: OUR SCHOOL (os-*) ──────────────────────────────────────────────── */

.os-intro-text {
    font-size: clamp(1.5rem, 1.2vw + 0.75rem, 2rem);
    line-height: 1.5;
    max-width: 900px;
}

.os-school-img {
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    aspect-ratio: 16/9;
}

.os-school-title {
    font-size: clamp(1.75rem, 2vw + 0.5rem, 2.5rem);
    font-weight: bold;
}

.os-school-desc {
    font-size: 1.15rem;
    line-height: 1.8;
}

.os-footer-banner {
    background-size: cover;
    background-position: center;
    min-height: 600px;
}

.os-footer-overlay {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 0;
}

/* ── 6d: PATHWAY TO UNIVERSITY (ptu-*) ─────────────────────────────────── */

.ptu-page {
    background: #f4f4f4;
    font-family: var(--bs-body-font-family, inherit);
}

.ptu-hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 560px;
}

.ptu-intro,
.ptu-college-prep,
.ptu-partnership {
    background: #f4f4f4;
}

.ptu-title,
.ptu-section-title {
    font-family: 'Artlab-Bold';
    letter-spacing: -0.5px;
}

/* Was: clamp(2rem, 4vw, 3.7rem) → max 59px at 1920px. Now capped at 3rem (48px) */
.ptu-title {
    font-size: clamp(2rem, 2vw + 0.5rem, 3rem);
}

/* Was: clamp(2rem, 4vw, 3.3rem) → max 52px. Now capped at 2.75rem (44px) */
.ptu-section-title {
    font-size: clamp(1.75rem, 1.8vw + 0.5rem, 2.75rem);
    font-weight: 700;
    color: #0b4596;
}

.ptu-intro-desc {
    max-width: 760px;
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.ptu-shaping {
    background: #034EA2;
    position: relative;
    overflow: hidden;
}

.ptu-shaping::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../pages/PTU/elemet-background.png');
    background-repeat: no-repeat;
    background-size: 360px auto;
    background-position: left top;
    opacity: 0.15;
    pointer-events: none;
}

.ptu-shaping .container {
    position: relative;
    z-index: 2;
}

.ptu-shaping-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
    padding: 0 0 2.5rem;
    margin-bottom: 2.5rem;
}

/* Was: clamp(1.8rem, 2.5vw, 2.5rem) → max 40px. Now capped at 2.25rem (36px) */
.ptu-shaping-title {
    font-size: clamp(1.5rem, 1.5vw + 0.5rem, 2.25rem);
}

.ptu-shaping-desc {
    font-size: 1rem;
    line-height: 1.55;
    max-width: 650px;
}

.ptu-shaping-image-wrap {
    border-radius: 10px;
    overflow: hidden;
}

.ptu-shaping-image {
    aspect-ratio: 16 / 6;
    object-fit: cover;
}

.ptu-career-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    min-height: 292px;
    cursor: pointer;
    outline: none;
}

.ptu-career-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.ptu-career-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 8%, rgba(0, 0, 0, 0.72) 100%);
    transition: background 0.35s ease;
}

.ptu-career-content {
    position: relative;
    z-index: 2;
    padding: 1.4rem 1.4rem 1.25rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
}

/* Was: clamp(1.7rem, 2.4vw, 2.2rem) → max 35px. Now capped at 2rem (32px) */
.ptu-career-title {
    color: #fff;
    margin-bottom: 0;
    font-size: clamp(1.5rem, 1.5vw + 0.5rem, 2rem);
    line-height: 1.1;
    transition: transform 0.35s ease;
    margin-top: auto;
}

.ptu-career-desc {
    max-height: 0;
    opacity: 0;
    transform: translateY(12px);
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.35s ease, transform 0.35s ease, margin-top 0.35s ease;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.93rem;
    line-height: 1.55;
}

.ptu-career-card:hover .ptu-career-overlay,
.ptu-career-card:focus .ptu-career-overlay,
.ptu-career-card:focus-within .ptu-career-overlay,
.ptu-career-card:active .ptu-career-overlay,
.ptu-career-card.is-active .ptu-career-overlay {
    background: linear-gradient(180deg, rgba(5, 66, 142, 0.2) 2%, rgba(3, 78, 162, 0.95) 100%);
}

.ptu-career-card:hover .ptu-career-title,
.ptu-career-card:focus .ptu-career-title,
.ptu-career-card:focus-within .ptu-career-title,
.ptu-career-card:active .ptu-career-title,
.ptu-career-card.is-active .ptu-career-title {
    transform: translateY(-8px);
}

.ptu-career-card-wide {
    min-height: 280px;
}

.ptu-career-card-narrow {
    min-height: 280px;
}

.ptu-career-card:hover .ptu-career-desc,
.ptu-career-card:focus .ptu-career-desc,
.ptu-career-card:focus-within .ptu-career-desc,
.ptu-career-card:active .ptu-career-desc,
.ptu-career-card.is-active .ptu-career-desc {
    max-height: 130px;
    opacity: 1;
    transform: translateY(0);
    margin-top: 0.55rem;
}

.ptu-partnership-desc {
    max-width: 700px;
    color: #5b5b5b;
    font-size: 0.95rem;
}

.ptu-logo-item {
    max-height: 86px;
    width: auto;
    object-fit: contain;
}

.ptu-partnership-dots .dot {
    display: inline-block;
    width: 22px;
    height: 4px;
    border-radius: 12px;
    background: #d6d6d6;
    margin: 0 3px;
}

.ptu-partnership-dots .dot.is-active {
    background: #ffcb05;
}

.ptu-destination {
    background-size: cover;
    background-position: center;
    background-repeat: repeat;
}

.ptu-destination-content {
    max-width: 1040px;
    margin: 0 auto;
}

.ptu-region-title {
    color: #034EA2;
    font-size: 1.15rem;
    margin-bottom: 0.35rem;
}

.ptu-region-list {
    margin: 0;
    padding-left: 1rem;
    color: #2f2f2f;
    font-size: 0.92rem;
    line-height: 1.55;
}

.ptu-map-image {
    max-width: 920px;
    margin: 0 auto;
    display: block;
}

.ptu-partner-pagination.custom-pagination .swiper-pagination-bullet {
    background: #e0e0e0;
    width: 25px;
    height: 3px;
    opacity: 1;
    margin: 0 3px !important;
    border-radius: 2px;
}

.ptu-partner-pagination.custom-pagination .swiper-pagination-bullet-active {
    background: #FFCB05;
    opacity: 1;
    width: 40px;
}

.ptu-tabs-container {
    background-color: #f1f3f5;
    border-radius: 60px;
    padding: 8px;
    display: inline-block;
    width: 100%;
}

.ptu-tabs {
    flex-wrap: nowrap;
    gap: 10px;
}

.ptu-tabs .nav-item {
    flex: 1;
}

.ptu-tabs .nav-link {
    border-radius: 50px;
    padding: 12px 25px;
    color: #0b4596;
    background-color: transparent;
    border: none;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    width: 100%;
    text-align: left;
}

.ptu-tabs .nav-link:hover {
    background-color: rgba(11, 69, 150, 0.05);
}

.ptu-tabs .nav-link.active {
    background-color: var(--bs-primary);
    color: white !important;
    box-shadow: 0 4px 15px rgba(11, 69, 150, 0.2);
}

.ptu-tabs .tab-icon {
    width: 45px;
    height: 45px;
    background-color:var(--bs-primary);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.ptu-tabs .tab-icon img {
    width: 20px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.ptu-tabs .nav-link.active .tab-icon {
    background-color: white;
}

.ptu-tabs .nav-link.active .tab-icon img {
    filter: invert(21%) sepia(76%) saturate(2135%) hue-rotate(201deg) brightness(95%) contrast(95%);
}

#pathwayUniversityPage .tab-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

#pathwayUniversityPage .tab-title {
    font-size: 1.15rem;
    font-weight: 700;
}

#pathwayUniversityPage .tab-subtitle {
    font-size: 0.85rem;
    font-weight: normal;
}

#pathwayUniversityPage .nav-link:not(.active) .tab-subtitle {
    color: #0b4596;
}

#pathwayUniversityPage .nav-link.active .tab-subtitle {
    color: white;
    opacity: 1;
}

#pathwayUniversityPage .map-info-box h5 {
    color: #0b4596;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

#pathwayUniversityPage .map-info-box ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    color: #555;
    font-size: 0.9rem;
}

#pathwayUniversityPage .map-info-box ul li {
    margin-bottom: 5px;
    position: relative;
    padding-left: 15px;
}

#pathwayUniversityPage .map-info-box ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0b4596;
}

#pathwayUniversityPage .role-accordion .accordion-button {
    font-weight: bold;
    color: #333;
    background-color: transparent;
    border: none;
    padding: 1.2rem 0;
    box-shadow: none;
    font-size: 1.1rem;
}

#pathwayUniversityPage .role-accordion .accordion-button:not(.collapsed) {
    color: #0b4596;
    background-color: transparent;
}

#pathwayUniversityPage .role-accordion .accordion-button::after {
    margin-left: auto;
}

#pathwayUniversityPage .role-accordion .accordion-item {
    border: none;
    background-color: transparent;
}

/* PTU — Timeline Journey */
.journey-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    padding: 0 2rem;
}

.journey-timeline::before {
    content: "";
    position: absolute;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 1;
}

.journey-point {
    position: relative;
    z-index: 2;
    text-align: center;
}

.journey-icon {
    width: 80px;
    height: 80px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.journey-icon img {
    max-width: 40px;
    max-height: 40px;
    object-fit: contain;
}

.journey-label {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 10px;
}

/* ── 6e: OUR STORIES (ost-*) ────────────────────────────────────────────── */

.ost-card {
    position: relative;
    /* border-radius: 1.5rem; */
    overflow: hidden;
    aspect-ratio: 3 / 4;
    cursor: pointer;
}

.ost-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ost-card-overlay-default {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 28.06%, rgba(0, 0, 0, 0.242382) 46.67%, rgba(0, 0, 0, 0.39913) 59.24%, rgba(0, 0, 0, 0.622998) 77.18%, #102245 118.29%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem 1.5rem;
    transition: opacity 0.4s ease;
    opacity: 1;
    z-index: 1;
}

.ost-name {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.ost-subtitle {
    color: #fff;
    font-size: 0.95rem;
    margin: 0;
    font-weight: 400;
}

.ost-card-overlay-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(15 35 68 / 80%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.ost-card:hover .ost-card-overlay-hover,
.ost-card:active .ost-card-overlay-hover,
.ost-card.is-active .ost-card-overlay-hover {
    opacity: 1;
}

.ost-card:hover .ost-card-overlay-default,
.ost-card:active .ost-card-overlay-default,
.ost-card.is-active .ost-card-overlay-default {
    opacity: 0;
}

.ost-hover-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.ost-quote {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.ost-desc {
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: auto;
}

.ost-author-details {
    margin-top: 1.5rem;
}

.ost-author-name {
    color: #FFC107;
    font-size: 0.95rem;
    font-weight: 700;
    font-style: italic;
}

.ost-author-info {
    color: #FFC107;
    font-size: 0.85rem;
    font-weight: 600;
    font-style: italic;
    line-height: 1.3;
}

.ost-swiper-pagination.swiper-pagination-bullets {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    width: auto;
}

.ost-swiper-pagination .swiper-pagination-bullet {
    width: 25px;
    height: 3px;
    border-radius: 2px;
    background-color: #ccc;
    opacity: 1;
    margin: 0 !important;
    transition: all 0.3s ease;
}

.ost-swiper-pagination .swiper-pagination-bullet-active {
    background-color: #FFC107;
    width: 35px;
}

.ost-swiper-nav .swiper-button-prev,
.ost-swiper-nav .swiper-button-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e0e0e0;
    color: #fff;
}

.ost-swiper-nav .swiper-button-prev::after,
.ost-swiper-nav .swiper-button-next::after {
    font-size: 1rem;
    font-weight: bold;
}

.ost-swiper-nav .swiper-button-prev:not(.swiper-button-disabled),
.ost-swiper-nav .swiper-button-next:not(.swiper-button-disabled) {
    background-color: #004d99;
}

/* ── 6f: SOCIAL SERVICES (ss-*) ─────────────────────────────────────────── */

.ss-section-title {
    font-size: clamp(1.75rem, 1.5vw + 0.75rem, 2.5rem);
}

.ss-intro-desc {
    max-width: 850px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.ss-body-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

.ss-section-img {
    border-radius: 1.25rem;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ss-accordion-item {
    border-bottom: 1px solid #dee2e6;
}

.ss-accordion-header {
    padding: 1.25rem 0;
    cursor: pointer;
    user-select: none;
}

.ss-accordion-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
    color: #333;
    transition: color 0.3s ease;
    font-style: italic;
}

.ss-accordion-item.active .ss-accordion-title {
    color: var(--bs-primary);
}

.ss-accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease, opacity 0.4s ease;
    opacity: 0;
}

.ss-accordion-item.active .ss-accordion-panel {
    max-height: 500px;
    opacity: 1;
    padding-bottom: 1.25rem;
}

.ss-acc-subtitle {
    font-size: 1.2rem;
    color: #333;
}

.ss-acc-location {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
}

.ss-acc-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.ss-mission-trip {
    background-color: var(--bs-primary);
}

.ss-mission-title {
    font-size: clamp(1.75rem, 1.5vw + 0.75rem, 2.5rem);
    font-weight: 700;
}

.ss-mission-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.9;
}

.ss-grid-img {
    border-radius: 1rem;
    object-fit: cover;
}

.ss-grid-img-wide {
    aspect-ratio: 16 / 9;
}

.ss-grid-img-tall {
    height: 100%;
    object-fit: cover;
}

.ss-csr-img {
    border-radius: 1.25rem;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    display: block;
}

.ss-csr-title {
    font-size: 1.5rem;
    line-height: 1.4;
}

/* ── 6g: INTERNATIONAL PROGRAM (ip-*) ──────────────────────────────────── */

.ip-hero-img {
    border-radius: 1.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.ip-spk,
.ip-hybrid {
    background-color: #034EA2;
}

.ip-spk-logo {
    max-height: 80px;
    object-fit: contain;
}

.ip-school-card {
    background: #fff;
    border-radius: 1.25rem;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ip-school-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(3, 78, 162, 0.1);
}

.ip-school-img-wrapper {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.ip-school-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ip-school-card:hover .ip-school-img {
    transform: scale(1.03);
}

.ip-school-body {
    padding: 1.5rem;
}

.ip-school-name {
    font-size: 1.15rem;
    line-height: 1.4;
}

.ip-school-grades {
    font-size: 0.95rem;
}

.ip-school-loc {
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
}

.ip-school-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #034EA2;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.ip-school-btn:hover {
    background-color: #002d6b;
    color: #fff;
    transform: scale(1.05);
}

.ip-acc-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.ip-acc-title {
    font-size: 1.6rem;
    font-weight: 700;
    cursor: pointer;
    user-select: none;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.ip-acc-item.active .ip-acc-title {
    color: #fff;
}

.ip-acc-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.3s ease;
    opacity: 0;
}

.ip-acc-item.active .ip-acc-panel {
    max-height: 200px;
    opacity: 1;
    padding: 0.5rem 0 1rem 0;
}

/* ── 6h: PROFILE / ESLR ─────────────────────────────────────────────────── */

.eslr-card {
    height: 480px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.eslr-img {
    height: 100%;
}

.eslr-overlay-default {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 28.06%, rgba(0, 0, 0, 0.242382) 46.67%, rgba(0, 0, 0, 0.39913) 59.24%, rgba(0, 0, 0, 0.622998) 77.18%, #102245 118.29%);
    transition: opacity 0.3s ease;
    z-index: 1;
}

.eslr-overlay-hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.8);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.eslr-card:hover .eslr-overlay-hover {
    opacity: 0.85;
}

.eslr-text-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    transition: align-items 0.3s ease;
}

.eslr-card:hover .eslr-text-container {
    align-items: center !important;
    justify-content: center;
    text-align: center;
}

.eslr-card:hover p {
    display: block !important;
}

.eslr-card:hover .eslr-text,
.eslr-card:focus .eslr-text {
    text-align: center !important;
    color: var(--bs-primary) !important;
}

.facilitiesSwiper,
.storiesSwiper {
    width: 100%;
    overflow: visible !important;
}

.eslr-button-prev,
.eslr-button-next {
    width: 48px !important;
    height: 48px !important;
    cursor: pointer;
}

.eslr-button-prev::after,
.eslr-button-next::after {
    font-size: 20px !important;
    font-family: 'swiper-icons';
}

.eslr-button-prev {
    background-color: #e9ecef;
    color: #adb5bd !important;
}

.eslr-button-prev::after {
    content: 'prev';
}

.eslr-button-next::after {
    content: 'next';
}

.eslr-pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
}

.eslr-dash-bullet {
    width: 30px;
    height: 4px;
    border-radius: 2px;
    background: #e9ecef;
    opacity: 1;
    margin: 0 !important;
    transition: background 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.eslr-pagination .swiper-pagination-bullet-active {
    background: #ffc107;
}

/* ── 6i: CONTACT PAGE ───────────────────────────────────────────────────── */

.contact-hero {
    background-image: url('<?= $tplDIR; ?>/assets/pages/CONTACT-US/hero-banner.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.contact-hero-title {
    position: relative;
    z-index: 2;
}

.contact-intro-title {
    color: #0d4b96;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-intro-text {
    color: #0d4b96;
    font-weight: 500;
    margin: 0 auto;
}

.contact-form .form-label {
    color: #0d4b96;
    font-size: 0.9rem;
    font-weight: 600;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 1px solid #c9d6e8;
    border-radius: 8px;
    padding: 0.6rem 1rem;
    color: #495057;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #0d4b96;
    box-shadow: 0 0 0 0.2rem rgba(13, 75, 150, 0.1);
}

.contact-form .form-control::placeholder {
    color: #adb5bd;
}

.contact-btn-submit {
    background-color: #ffc107;
    color: #0d4b96;
    font-weight: 700;
    border: none;
    padding: 0.6rem 2.5rem;
    border-radius: 20px;
}

.contact-btn-submit:hover {
    background-color: #e0a800;
}

.contact-tabs-container {
    margin: 0 auto;
}

.nav-link.contact-tab-btn {
    color: #0d4b96 !important;
    font-size: 0.95rem;
}

.contact-tab-btn.active {
    background-color: #0d4b96 !important;
    color: #ffffff !important;
}

/* ── 6j: GROWING / CULTURE / ENV / ACTIVITY ─────────────────────────────── */

.intro-title {
    color: #0d4b96;
    font-weight: 800;
    font-size: clamp(1.75rem, 1.5vw + 0.75rem, 2.5rem);
    line-height: 1.2;
}

.growing-section {
    background-color: #0d4b96;
    color: white;
    overflow: hidden;
}

.growing-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem 0;
}

.growing-item:last-child {
    border-bottom: none;
}

.growing-item-title {
    font-weight: 700;
    font-size: 1.5rem;
}

.growing-swiper {
    width: 100%;
    overflow: visible !important;
}

.growing-swiper .swiper-slide img {
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.culture-img {
    width: 100%;
    object-fit: cover;
    border-radius: .5rem;
}

.env-section {
    overflow: hidden;
}

.env-swiper-container {
    position: relative;
}

.env-swiper {
    width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
    overflow: visible !important;
}

.env-swiper .swiper-slide {
    transition: all 0.4s ease;
    opacity: 0.5;
    transform: scale(0.85);
}

.env-swiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.env-swiper .swiper-slide img {
    width: 100%;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.env-nav-wrap {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.env-nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #0d4b96;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.env-nav-btn:hover {
    background-color: #0a3a75;
}

.env-nav-btn.swiper-button-disabled {
    background-color: #e9ecef;
    color: #adb5bd;
    cursor: not-allowed;
}

.env-nav-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.activity-section {
    overflow: hidden;
    position: relative;
}

.activity-swiper {
    width: 100%;
    overflow: hidden;
    padding-bottom: 20px;
}

.activity-swiper .swiper-slide {
    width: 80%;
}

.activity-nav-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--bs-primary);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.activity-nav-btn:hover {
    background-color: #0a3a75;
}

.activity-nav-btn.swiper-button-disabled {
    background-color: #e9ecef;
    color: #adb5bd;
    cursor: not-allowed;
}

.activity-nav-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.activity-label {
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

/* ── 6k: ABOUT IICS ─────────────────────────────────────────────────────── */

.about-value-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 1rem;
}

.about-value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08) !important;
}

.faith-letter {
    width: 60px;
    height: 60px;
}

.faith-card {
    border-color: #E0E0E0 !important;
    border-radius: 0.75rem;
    transition: transform 0.3s ease;
}

.faith-card:hover {
    transform: translateY(-3px);
}

.play-testimony-stories img {
    width: 30px;
    height: 30px;
}

/* ── 6l: ACADEMIC PATHWAYS ──────────────────────────────────────────────── */

.ap-section {
    position: relative;
}

.ap-heading {
    letter-spacing: -0.5px;
    line-height: 1.25;
}

/* Section 2: Growing in Wisdom */
.ap-growing-img-wrapper {
    max-width: 520px;
    margin: 0 auto;
}

.ap-growing-img {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-radius: 20px;
}

.ap-growing-img-wrapper:hover .ap-growing-img {
    transform: translateY(-4px) scale(1.01);
}


/* Section 3: iLEAD Framework & Animations */
.ap-ilead-section {
    background-color: #fff;
    background-image: url('/wp-content/themes/iics//assets/pages/IICS-ACADEMIC-PATHWAYS/circle.jpg');
    background-repeat: no-repeat;
    background-size: 60%;
    background-position: bottom center;
}

.ap-ilead-diagram-wrapper {
    position: relative;
    width: 100%;
    max-width: 820px;
    height: 640px;
    margin: 2rem auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Concentric Rings */
.ap-ilead-concentric-circles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 580px;
    height: 580px;
    pointer-events: none;
}

.ap-circle-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px dashed rgba(3, 78, 162, 0.2);
    animation: apPulseRing 6s infinite ease-in-out;
}

.ap-circle-ring.ring-1 {
    width: 260px;
    height: 260px;
    animation-delay: 0s;
}

.ap-circle-ring.ring-2 {
    width: 430px;
    height: 430px;
    animation-delay: 2s;
    border-color: rgba(3, 78, 162, 0.14);
}

.ap-circle-ring.ring-3 {
    width: 580px;
    height: 580px;
    animation-delay: 4s;
    border-color: rgba(3, 78, 162, 0.08);
}

@keyframes apPulseRing {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.04);
        opacity: 1;
    }
}

/* Center iLEAD Shield */
.ap-ilead-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    animation: apFloatCenter 5s ease-in-out infinite;
}

.ap-ilead-shield-img {
    max-width: 220px;
    height: auto;
    filter: drop-shadow(0 12px 28px rgba(16, 34, 69, 0.15));
    transition: transform 0.3s ease;
}

.ap-ilead-center:hover .ap-ilead-shield-img {
    transform: scale(1.05);
}

@keyframes apFloatCenter {

    0%,
    100% {
        transform: translate(-50%, -50%) translateY(0);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-10px);
    }
}

/* Pillar Nodes */
.ap-ilead-node {
    position: absolute;
    z-index: 10;
    transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.ap-ilead-node-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #FFFFFF;
    padding: 10px 20px 10px 12px;
    border-radius: 50px;
    /* box-shadow: 0 8px 24px rgba(16, 34, 69, 0.1); */
    border: 1px solid rgba(16, 34, 69, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}

.ap-ilead-node:hover .ap-ilead-node-card {
    transform: scale(1.08) translateY(-4px);
    box-shadow: 0 14px 32px rgba(16, 34, 69, 0.18);
    border-color: rgba(3, 78, 162, 0.3);
}

.ap-node-icon {
    width: 46px;
    height: 46px;
    object-fit: contain;
    border-radius: 50%;
}

.ap-node-label {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--bs-primary);
    line-height: 1.2;
}

/* Position of Nodes around center ring */
.ap-ilead-node.node-top {
    top: 0%;
    left: calc(50% - 100px);
    transform: translateX(-50%);
    animation: apFloatNodeTop 4.5s ease-in-out infinite;
}

.ap-ilead-node.node-top-left {
    top: 24%;
    right: 2%;
    animation: apFloatNodeTL 5s ease-in-out infinite 0.5s;
}

.ap-ilead-node.node-bottom-left {
    bottom: 24%;
    right: 4%;
    animation: apFloatNodeBL 5.2s ease-in-out infinite 1s;
}

.ap-ilead-node.node-top-right {
    top: 24%;
    left: 2%;
    animation: apFloatNodeTR 4.8s ease-in-out infinite 0.7s;
}

.ap-ilead-node.node-bottom-right {
    bottom: 24%;
    left: 4%;
    animation: apFloatNodeBR 5.4s ease-in-out infinite 1.2s;
}

@keyframes apFloatNodeTop {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes apFloatNodeTL {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}

@keyframes apFloatNodeBL {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

@keyframes apFloatNodeTR {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }
}

@keyframes apFloatNodeBR {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(7px);
    }
}

/* Section 4: Curriculum Pathway (bg-primary) */
.ap-curriculum-section {
    background-color: var(--bs-primary) !important;
    background-image: url('/wp-content/themes/iics//assets/pages/IICS-ACADEMIC-PATHWAYS/aset-bunga.png');
    background-repeat: no-repeat;
    background-size: 40vw;
    background-position: right top;
}

.ap-yellow-pill {
    background-color: var(--ipekayellow-secondary, #FFCB05);
    color: var(--bs-primary);
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.ap-yellow-pill:hover {
    transform: translateY(-2px);
}

.ap-curr-card {
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ap-curr-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25) !important;
}

.ap-idea-banner {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    max-width: 680px;
    transition: background 0.3s ease;
}

.ap-idea-banner:hover {
    background: rgba(255, 255, 255, 0.2);
}

.ap-diagram-container {
    border-radius: 20px;
    overflow: hidden;
}

.ap-diagram-img {
    border-radius: 12px;
}

/* Section 5: IDEA Approach Steps */
.ap-idea-section {
    background-color: var(--bs-primary) !important;
}

.ap-idea-item {
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.ap-idea-item:hover {
    transform: translateX(6px);
    background-color: rgba(255, 255, 255, 0.18) !important;
}

.ap-idea-icon-wrapper {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ap-idea-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

/* Section 6: Technology-Integrated Gallery */
.ap-gallery-item {

    position: relative;
    background-color: #f1f5f9;
}

.ap-gallery-img {
    object-fit: cover;

    transition: transform 0.5s ease;
}

.ap-gallery-item:hover .ap-gallery-img {}

.ap-gallery-tall {
    min-height: 440px;
}

.ap-gallery-square {
    aspect-ratio: 1 / 1;
}

.ap-gallery-wide {
    min-height: 220px;
}

.ap-tech-section {
    background-image: url('/wp-content/themes/iics//assets/pages/IICS-ACADEMIC-PATHWAYS/Tech 1.png');
    background-position: top right;
    background-repeat: no-repeat;
    background-size: 75vw;
}


/* ── 6m: LEARNING JOURNEY ───────────────────────────────────────────────── */

.journey-item {
    margin-bottom: 3rem;
    position: relative;
}

.journey-item:last-child {
    margin-bottom: 0;
}

.timeline-dot-wrapper {
    position: absolute;
    left: calc(var(--bs-gutter-x) * 1);
    top: 90px;
    bottom: calc(-3rem - 90px);
    width: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 80%;
}

.timeline-dot-wrapper.last-item {
    bottom: auto;
}

.timeline-dot {
    width: 10px;
    height: 10px;
    background-color: #e5e7eb;
    border-radius: 50%;
    flex-shrink: 0;
}

.timeline-line {
    width: 1px;
    background-color: #e5e7eb;
    flex-grow: 1;
}

.transition-hover {
    transition: all 0.3s ease;
}

.transition-hover:hover {
    transform: translateY(-3px);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}

/* ── 6n: IBDP PAGE ──────────────────────────────────────────────────────── */

.ibdp-section {
    position: relative;
}

.ibdp-heading {
    letter-spacing: -0.5px;
    line-height: 1.25;
}

/* Section 2: Launchpad 6-Photo Grid */
.ibdp-launchpad-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 1.5rem;
    align-items: center;
}

.ibdp-launchpad-center {
    grid-column: 2 / 3;
    grid-row: 1 / 4;
}

.ibdp-photo-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.ibdp-photo-card img {
    border-radius: 20px;
    transition: transform 0.4s ease;
}

.ibdp-photo-card:hover img {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 12px 28px rgba(16, 34, 69, 0.15) !important;
}

/* Floating keyframe animation offsets */
.photo-top-left {
    grid-column: 1;
    grid-row: 1;
    animation: ibdpFloat1 5s ease-in-out infinite;
}

.photo-mid-left {
    grid-column: 1;
    grid-row: 2;
    animation: ibdpFloat2 5.5s ease-in-out infinite 0.5s;
}

.photo-bottom-left {
    grid-column: 1;
    grid-row: 3;
    animation: ibdpFloat1 4.8s ease-in-out infinite 1s;
}

.photo-top-right {
    grid-column: 3;
    grid-row: 1;
    animation: ibdpFloat2 5.2s ease-in-out infinite 0.3s;
}

.photo-mid-right {
    grid-column: 3;
    grid-row: 2;
    animation: ibdpFloat1 5.8s ease-in-out infinite 0.7s;
}

.photo-bottom-right {
    grid-column: 3;
    grid-row: 3;
    animation: ibdpFloat2 4.6s ease-in-out infinite 1.2s;
}
.ibdp-launchpad-section{
    padding-top:7rem !important;
    padding-bottom:7rem !important;
}
@keyframes ibdpFloat1 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes ibdpFloat2 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

/* Section 3: Curriculum Core Components (EE, TOK, CAS) */
.ibdp-curriculum-section {
    min-height: 600px;
}

.ibdp-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(16, 34, 69, 0.85) 0%, rgba(16, 34, 69, 0.92) 100%);
    z-index: 1;
}

.ibdp-core-card {
    background: rgba(16, 34, 69, 0.9);
    /* border: 1px solid rgba(255, 255, 255, 0.2); */
    backdrop-filter: blur(12px);
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;

}

.ibdp-core-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 203, 5, 0.6);
    background: rgba(16, 34, 69, 0.96);
}

/* Section 4: Subject Group Offered */
.ibdp-watermark-bg {
    position: absolute;
    top: 50%;
    right: -5%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center;
    opacity: 0.12;
    pointer-events: none;
}

.ibdp-subject-item {
    transition: background-color 0.3s ease, transform 0.3s ease;
    border-radius: 12px;
}

.ibdp-subject-item:hover {
    background-color: rgba(3, 78, 162, 0.04);
    transform: translateX(6px);
}

.ibdp-subject-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: rgba(3, 78, 162, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ibdp-subject-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

/* Section 5: Results */
.ibdp-result-img-wrapper img {

    transition: transform 0.5s ease;
}

.ibdp-result-img-wrapper:hover img {
    transform: scale(1.02);
}

/* ── 6s: WELLBEING & LEARNING SUPPORT ──────────────────────────────────── */

.wls-gallery {
    width: auto;
    overflow: hidden !important;
}

.wls-gallery .swiper-slide {
    height: auto;
}

.wls-gallery .ratio {
    border-radius: 20px;
    overflow: hidden;
}

.wls-gallery img {
    transition: transform 0.4s ease;
}

.wls-gallery .swiper-slide:hover img {
    transform: scale(1.04);
}




/* ── 6o: SECTION PADDING ────────────────────────────────────────────────── */

.section-padding {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.section-padding-top {
    padding-top: 6rem;
}

.section-padding-bottom {
    padding-bottom: 6rem;
}

/* ── 6p: MAP / ZOOM BUTTON ──────────────────────────────────────────────── */

.zoom-map-btn {
    animation: pulse-ring 2s infinite;
    background-color: #FFCB05 !important;
    border-color: #FFCB05 !important;
    color: #0b4596 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

/* ── 6q: PAGE FLAGS ─────────────────────────────────────────────────────── */

#internationalProgramPage,
#landingSchoolPage {
    overflow: clip;
}

#socialServicesPage {
    overflow: hidden;
}

.facilities-progress {
    width: 100%;
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.facilities-progress-bar {
    height: 100%;
    width: 0;
    background: #102245;
    /* primary color */
    transition: width 0.4s ease;
}

.swiper-slide-active .facilities-progress-bar {
    width: 100%;
}

/* Purposeful Swiper Loading Bar */
.purposefulSwiper .swiper-slide {
    cursor: pointer;
}

.purposefulSwiper .progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(16, 34, 69, 0.2);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    margin-top: 1rem;
    display: block;
}

.purposefulSwiper .progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: #102245;
    transition: none;
}

.purposefulSwiper .is-active .progress-bar::after {
    width: 100%;
    transition: width 3s linear;
}

/* Swiper Navigation Buttons Dynamic Fill */
.ls-swiper-nav-btn {
    cursor: pointer;
}

.ls-swiper-nav-btn svg circle,
.ls-swiper-nav-btn svg ellipse {
    fill: #102245;
    /* primary color */
    transition: fill 0.3s ease;
}

.ls-swiper-nav-btn.swiper-button-disabled svg circle,
.ls-swiper-nav-btn.swiper-button-disabled svg ellipse {
    fill: #E0E0E0;
    /* gray when disabled */
    cursor: not-allowed;
}

.ne-hero {
    position: relative;
    background: linear-gradient(135deg, var(--ne-navy-dk) 0%, var(--ne-navy) 60%, var(--bs-blue-1) 100%);
    min-height: 420px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 0 60px;
    margin-top: -110px;
}

.ne-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.ne-hero-content {
    position: relative;
    z-index: 2;
}

.ne-hero-tag {
    display: inline-block;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .3);
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 18px;
}

.ne-hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
}

.ne-hero p {
    color: rgba(255, 255, 255, .82);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0;
}

.ne-hero-deco {
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    pointer-events: none;
}

.ne-hero-deco::before {
    content: '';
    position: absolute;
    inset: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .07);
}

/* ── Sections ── */
.ne-section {
    padding: 60px 0;
}

.ne-section-sm {
    padding: 40px 0;
}

.ne-section-title {
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--ne-navy);
    margin-bottom: 6px;
}

.ne-section-sub {
    color: var(--ne-gray);
    font-size: .95rem;
    margin-bottom: 32px;
}

.ne-divider {
    display: block;
    width: 48px;
    height: 4px;
    background: var(--ne-gold);
    border-radius: 2px;
    margin: 10px 0 20px;
}

/* ── Featured Post ── */
.ne-featured {
    background: var(--ne-white);
    border-radius: var(--ne-radius);
    overflow: hidden;
    box-shadow: var(--ne-shadow);
    display: flex;
    min-height: 420px;
    transition: var(--ne-trans);
    text-decoration: none;
}

.ne-featured:hover {
    box-shadow: var(--ne-shadow-h);
    transform: translateY(-3px);
    text-decoration: none;
}

.ne-featured-img {
    flex: 0 0 58%;
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 340px;
}

.ne-featured-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, .12) 0%, transparent 100%);
}

.ne-featured-body {
    flex: 1;
    padding: 42px 42px 38px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--ne-white);
}

.ne-featured-body .ne-badge {
    margin-bottom: 16px;
}

.ne-featured-body h2 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.3;
    margin-bottom: 16px;
}

.ne-featured-excerpt {
    color: var(--ne-gray);
    font-size: .95rem;
    line-height: 1.7;
    margin-bottom: 28px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ne-featured-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .8rem;
    color: var(--ne-gray);
    margin-bottom: 24px;
}

.ne-featured-meta svg {
    flex-shrink: 0;
}

.ne-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--ne-navy);
    color: #fff;
    padding: 12px 26px;
    border-radius: 50px;
    font-weight: 700;
    font-size: .9rem;
    text-decoration: none;
    transition: var(--ne-trans);
    width: fit-content;
}

.ne-btn-primary:hover {
    background: var(--ne-navy-dk);
    transform: translateX(3px);
    color: #fff;
    text-decoration: none;
}

.ne-btn-primary svg {
    transition: var(--ne-trans);
}

.ne-btn-primary:hover svg {
    transform: translateX(4px);
}

/* ── Badge ── */
.ne-badge {
    display: inline-block;
    background: var(--ne-light);
    color: var(--ne-navy);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    border: 1px solid rgba(13, 75, 150, .15);
}

/* ── Top News Swiper ── */
.ne-top-section {
    background: var(--ne-light);
    padding: 60px 0;
}

.ne-swiper-card {
    background: var(--ne-white);
    border-radius: var(--ne-radius);
    overflow: hidden;
    box-shadow: var(--ne-shadow);
    transition: var(--ne-trans);
    text-decoration: none;
    display: block;
    height: 100%;
}

.ne-swiper-card:hover {
    box-shadow: var(--ne-shadow-h);
    transform: translateY(-4px);
    text-decoration: none;
}

.ne-swiper-card-img {
    width: 100%;
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: center;
    position: relative;
}

.ne-swiper-card-img-badge {
    position: absolute;
    top: 12px;
    left: 12px;
}

.ne-swiper-card-body {
    padding: 20px 22px 24px;
}

.ne-swiper-card-date {
    font-size: .75rem;
    color: var(--ne-gray);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ne-swiper-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.4;
    margin: 0 0 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ne-swiper-card-link {
    font-size: .82rem;
    font-weight: 700;
    color: var(--ne-navy);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--ne-trans);
}

.ne-swiper-card-link:hover {
    gap: 9px;
    color: var(--ne-navy-dk);
}

/* Swiper controls */
.ne-swiper-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 32px;
}

.ne-swiper-pagination {
    flex: 1;
}

.ne-swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(13, 75, 150, .25);
    opacity: 1;
    transition: var(--ne-trans);
}

.ne-swiper-pagination .swiper-pagination-bullet-active {
    background: var(--ne-navy);
    width: 24px;
    border-radius: 4px;
}

.ne-swiper-nav {
    display: flex;
    gap: 10px;
}

.ne-swiper-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--ne-navy);
    background: transparent;
    color: var(--ne-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--ne-trans);
    flex-shrink: 0;
}

.ne-swiper-btn:hover {
    background: var(--ne-navy);
    color: #fff;
}

.ne-swiper-btn.swiper-button-disabled {
    opacity: .35;
    pointer-events: none;
}

/* ── Filter Tabs ── */
.ne-filter-bar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 36px;
    align-items: center;
}

.ne-filter-tab {
    padding: 9px 22px;
    border-radius: 50px;
    border: 2px solid var(--ne-border);
    background: transparent;
    color: var(--ne-gray);
    font-weight: 600;
    font-size: .88rem;
    cursor: pointer;
    transition: var(--ne-trans);
    text-decoration: none;
    display: inline-block;
}

.ne-filter-tab:hover {
    border-color: var(--ne-navy);
    color: var(--ne-navy);
    background: var(--ne-light);
}

.ne-filter-tab.active {
    background: var(--ne-navy);
    border-color: var(--ne-navy);
    color: #fff;
}

/* ── Article Grid ── */
#ne-grid-wrapper {
    min-height: 300px;
    position: relative;
}

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

.ne-article-card {
    background: var(--ne-white);
    border-radius: var(--ne-radius);
    overflow: hidden;
    box-shadow: var(--ne-shadow);
    transition: var(--ne-trans);
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.ne-article-card:hover {
    box-shadow: var(--ne-shadow-h);
    transform: translateY(-5px);
    text-decoration: none;
}

.ne-article-card-img {
    width: 100%;
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: center;
    position: relative;
    flex-shrink: 0;
}

.ne-article-card-img .ne-badge {
    position: absolute;
    top: 12px;
    left: 12px;
}

.ne-article-card-body {
    padding: 22px 24px 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.ne-article-card-date {
    font-size: .75rem;
    color: var(--ne-gray);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.ne-article-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.45;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.ne-article-card-excerpt {
    font-size: .85rem;
    color: var(--ne-gray);
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 18px;
}

.ne-article-card-link {
    font-size: .82rem;
    font-weight: 700;
    color: var(--ne-navy);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: auto;
    transition: var(--ne-trans);
}

.ne-article-card-link:hover {
    gap: 9px;
    color: var(--ne-navy-dk);
}

/* Loading state */
.ne-loading-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: var(--ne-radius);
    backdrop-filter: blur(2px);
}

.ne-spinner {
    width: 42px;
    height: 42px;
    border: 4px solid var(--ne-border);
    border-top-color: var(--ne-navy);
    border-radius: 50%;
    animation: ne-spin .8s linear infinite;
}

@keyframes ne-spin {
    to {
        transform: rotate(360deg);
    }
}

/* No posts */
.ne-no-posts {
    grid-column: 1/-1;
    text-align: center;
    padding: 60px 20px;
    color: var(--ne-gray);
}

.ne-no-posts svg {
    margin-bottom: 16px;
    opacity: .4;
}

.ne-no-posts p {
    font-size: 1.05rem;
    margin: 0;
}

/* ── Pagination ── */
.ne-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 52px;
    flex-wrap: wrap;
}

.ne-page-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--ne-border);
    background: transparent;
    color: var(--ne-gray);
    font-weight: 700;
    font-size: .88rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--ne-trans);
    text-decoration: none;
}

.ne-page-btn:hover {
    border-color: var(--ne-navy);
    color: var(--ne-navy);
    background: var(--ne-light);
}

.ne-page-btn.active {
    background: var(--ne-navy);
    border-color: var(--ne-navy);
    color: #fff;
}

.ne-page-btn.disabled {
    opacity: .35;
    pointer-events: none;
}

.ne-page-btn-wide {
    width: auto;
    padding: 0 18px;
    border-radius: 50px;
}

.bg-kembang {
    background-position: bottom right;
    background-size: 50%;
    background-repeat: no-repeat;
}

@media (max-width: 1199.98px) {
    .cta-bg {
        background-attachment: scroll;
        background-position: top center;
    }
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .ne-featured {
        flex-direction: column;
    }

    .ne-featured-img {
        flex: 0 0 260px;
        min-height: 260px;
    }

    .ne-featured-body {
        padding: 28px 28px 32px;
    }

    .ne-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .ap-ilead-section {
        background-position: top 65% center;
        background-size: contain;
    }
}

@media (max-width: 767px) {
    .ne-hero {
        padding: 130px 0 50px;
        min-height: 260px;
    }

    .ne-hero-deco {
        display: none;
    }

    .ne-section {
        padding: 44px 0;
    }

    .ne-top-section {
        padding: 44px 0;
    }

    .ne-featured-img {
        flex: 0 0 220px;
        min-height: 220px;
    }

    .ne-featured-body {
        padding: 22px 22px 26px;
    }

    .ne-featured-body h2 {
        font-size: 1.2rem;
    }

    .ne-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .ne-filter-bar {
        gap: 8px;
    }

    .ne-filter-tab {
        padding: 8px 16px;
        font-size: .82rem;
    }

    .ne-section-title {
        font-size: 1.3rem;
    }

    .ne-swiper-btn {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 480px) {
    .ne-featured-img {
        flex: 0 0 180px;
        min-height: 180px;
    }

    .ne-featured-body {
        padding: 18px 18px 22px;
    }

    .ne-featured-excerpt {
        -webkit-line-clamp: 3;
    }
}

/* ==========================================================================
   7. ANIMATIONS & KEYFRAMES
   ========================================================================== */

@keyframes scroll-partners {
    0% {
        transform: translateX(0);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(255, 203, 5, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(255, 203, 5, 0);
    }

    100% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(255, 203, 5, 0);
    }
}


/* ==========================================================================
   8. MEDIA QUERIES
   Order: min-width ASC (mobile-first additive), then max-width DESC (overrides)
   ========================================================================== */

/* ── 8a: min-width: 768px ──────────────────────────────────────────────── */
@media (min-width: 768px) {

    .border-md-end {
        border-right: 1px solid var(--neutral-30) !important;
    }

    .activity-swiper .swiper-slide {
        width: 45%;
    }

    .academic-pathway-diagram {
        max-width: 900px;
    }

    .ibdp-photo-card.photo-top-right {
        left: -10rem;
        position: relative;
        top: -5rem;
    }
    .w-md-20{
        min-width: 25%;
    }.mr-md-5{
        margin-right:5rem;
    }
    .ibdp-photo-card.photo-top-left {
        right: -10rem;
        position: relative;
        top: -5rem;
    }

    .ibdp-photo-card.photo-bottom-left {
        right: -10rem;
        position: relative;
        top: 5rem;
    }

    .ibdp-photo-card.photo-bottom-right {
        left: -10rem;
        position: relative;
        top: 5rem;
    }
}
@media (min-width: 991) and (max-width: 2800){
    
}

/* ── 8b: min-width: 768px and max-width: 1024px (Tablet range) Frans ─────────── */
@media (min-width: 768px) and (max-width: 1024px) {

    .purpose-of-ipeka .ratio-4x3 {
        --bs-aspect-ratio: 140%;
    }

    .tablet-50 {
        background-size: cover;
        height: calc(100% + 3.5rem);
        margin-top: -3.5rem;
        background-position: center;
    }

    .w-md-50.ml--3 {
        width: calc(100% + 3rem);
        margin-left: -3rem;
    }
    .ibdp-photo-card.photo-top-right{
        top: -8rem;
    }.ibdp-photo-card.photo-top-left {
        top: -8rem;
    }

    .ibdp-photo-card.photo-bottom-left {
        top: 8rem;
    }

    .ibdp-photo-card.photo-bottom-right {
        top: 8rem;
    }

    /* PTU Journey Timeline Tablet Inline Horizontal */
    .journey-timeline {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        margin-top: 2.5rem;
        padding: 0 0.5rem;
    }

    .journey-timeline::before {
        display: none;
    }

    .journey-point {
        flex: 1;
        display: block;
        text-align: center;
        position: relative;
        z-index: 2;
        width: auto;
    }

    .journey-icon {
        width: 70px;
        height: 70px;
        margin: 0 auto 0.5rem;
        flex-shrink: 0;
    }

    .journey-icon img {
        max-width: 35px;
        max-height: 35px;
    }

    .journey-label {
        margin-top: 8px;
        text-align: center;
        font-size: 0.85rem;
    }

    .journey-point:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 36px;
        left: calc(50% + 35px);
        width: calc(100% - 70px);
        height: 1px;
        background-color: white;
        z-index: 1;
    }

    .journey-point:not(:last-child)::before {
        content: "";
        position: absolute;
        top: 33.5px;
        left: calc(150% - 35px);
        width: 6px;
        height: 6px;
        background-color: white;
        border-radius: 50%;
        z-index: 2;
    }
}

/* ── 8c: min-width: 992px ──────────────────────────────────────────────── */
@media (min-width: 992px) {

    .w-md-70 {
        width: 70%;
        margin: 0 auto;
    }

    .our-schools-dropdown {
        width: fit-content !important;
        max-width: 95vw;
        overflow-x: auto;
    }

    .school-list-grid {
        display: grid;
        grid-template-rows: repeat(7, auto);
        grid-auto-flow: column;
        column-gap: 3rem;
        row-gap: 0;
    }

    .apply-btn {
        width: 100%;
    }

    .show-hover-desktop {
        display: none;
    }

    .md-w-40 {
        width: 40%;
    }

    .p-lg-4 {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }

    #jobOpp .nav-link {
        color: var(--bs-primary) !important;
    }

    .ss-intro .col-lg-5 {
        display: flex;
    }

    .ss-section-img {
        height: 100%;
        aspect-ratio: auto;
    }

    .w-md-75 {
        width: 80%;
        margin: 0 auto;
    }

    .w-md-50 {
        width: 50%;
        margin: 0 auto;
    }

    .w-md-50.ml--3 {
        margin-left: -3rem;
        width: calc(50% + 3rem);
        z-index: 2;
    }

    .h3-type-2 {
        font-size: 48px;
    }

    .mob-testi {
        display: none !important;
    }

    .ss-mission-trip .mb-md-5 {
        margin-bottom: 2.25rem !important;
    }

    /* Journey timeline desktop */
    .journey-timeline::before {
        display: none;
    }

    .journey-point {
        flex: 1;
    }

    .journey-point:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 41px;
        left: calc(50% + 70px);
        width: calc(100% - 140px);
        height: 1px;
        background-color: white;
        z-index: 1;
    }

    .journey-point:not(:last-child)::before {
        content: "";
        position: absolute;
        top: 38px;
        left: calc(150% - 70px);
        width: 6px;
        height: 6px;
        background-color: white;
        border-radius: 50%;
        z-index: 2;
    }

    /* Learning journey desktop */
    .journey-item {
        margin-bottom: 5rem;
    }

    .timeline-dot-wrapper {
        bottom: calc(-5rem - 90px);
    }
}
@media (min-width: 1023px) and (max-width: 1279px) {
    .ibdp-photo-card.photo-top-right{
        top: -8rem;
    }.ibdp-photo-card.photo-top-left {
        top: -8rem;
    }

    .ibdp-photo-card.photo-bottom-left {
        top: 8rem;
    }

    .ibdp-photo-card.photo-bottom-right {
        top: 8rem;
    }
    
}
/* ── 8d: min-width: 1023px ─────────────────────────────────────────────── */
@media (min-width: 1023px) {

    .usp-section .text-center {
        max-width: 75%;
        margin: 0 auto;
    }

    .partners-section p {
        max-width: 70%;
        margin: 0 auto;
    }

    .partners-section img {
        width: auto;
        margin: 0 auto;
        height: 75px;
        max-height: unset;
        max-width: unset;
    }

    .purpose-of-ipeka .container.w-md-80 {
        max-width: 80%;
        margin: 0 auto;
    }

    .mb-md-5 {
        margin-bottom: 3rem;
    }

    .activity-swiper .swiper-slide {
        width: 38%;
    }

    #mission .cta-section {
        height: 80vh !important;
        min-height: auto !important;
    }

    .p-top-md-70 {
        margin-top: -70px;
        z-index: 9999;
        position: relative;
    }

    .w-md-60 {
        width: 60%;
        margin: 0 auto;
    }

    .w-md-80 {
        width: 90%;
        margin: 0 auto;
    }
}

/* ── 8e: min-width: 1200px (Large Desktop) ─────────────────────────────── */
@media (min-width: 1200px) {
    body {
        zoom: 90%;
    }

    .display-3 {
        font-size: 3.25rem;
    }

    /*
     * Container max-width: was 1260px — terlalu mepet di layar 1920px.
     * Dinaikkan ke 1280px untuk XL baseline.
     */
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        /* max-width: 1280px;  */
    }

    .mx-md-10 {
        margin-left: 6rem;
        margin-right: 6rem;
    }

    .mr-lg-5 {
        padding-right: 5rem;
    }.h2, h2 {
        font-size: 2rem;
    }
}

/* ── 8f: min-width: 1400px (XL — BARU) ────────────────────────────────── */
@media (min-width: 1400px) {

    /*
     * Container melebar progresif untuk layar XL (1400px+)
     * Memberi lebih banyak ruang breathing pada konten.
     */
    body {
        zoom: 100%;
    }

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        /* max-width: 1440px;  */
    }
}

/* ── 8g: min-width: 1920px (Ultra-wide — BARU) ─────────────────────────── */
@media (min-width: 1920px) {

    /*
     * Container melebar untuk layar 1920px.
     * Sebelumnya: 1260px = 65.6% lebar layar, terasa sangat mepet.
     * Kini: 1680px = 87.5% lebar layar, jauh lebih proporsional.
     */

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1680px;
    }

    /* Font override untuk layar ultra-wide agar tidak terasa terlalu kecil */
    h1,
    .h1 {
        font-size: 2.5rem;
    }

    h2,
    .h2 {
        font-size: 2rem;
    }
}

/* ── 8h: max-width: 1199.98px (Below Large Desktop) ───────────────────── */
@media (max-width: 1199.98px) {

    .nav-link:not(.ptu-tab.active, .ptu-tab, .contact-tab-btn, .h4, .academic-nav) {
        color: var(--bs-primary) !important;
        padding: 1rem 0 !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .dropdown-toggle::after {
        display: inline-block;
        margin-left: 0.255em;
        vertical-align: 0.255em;
        content: "";
        border-top: 0.3em solid;
        border-right: 0.3em solid transparent;
        border-bottom: 0;
        border-left: 0.3em solid transparent;
        transition: transform 0.3s;
    }

    .nav-link:not(.ptu-tab.active, .ptu-tab, .contact-tab-btn, .h4, .academic-nav):hover,
    .nav-link:not(.ptu-tab.active, .ptu-tab, .contact-tab-btn, .h4, .academic-nav):focus,
    .nav-link:not(.ptu-tab.active, .ptu-tab, .contact-tab-btn, .h4, .academic-nav).show,
    .nav-link:not(.ptu-tab.active, .ptu-tab, .contact-tab-btn, .h4, .academic-nav).active {
        color: var(--bs-primary) !important;
    }

    .dropdown-toggle[aria-expanded="true"]::after {
        transform: rotate(180deg);
    }

    .main-navbar .dropdown-menu {
        box-shadow: none;
        background-color: #f8f9fa;
        margin-top: 0;
        border-radius: 0;
        border-left: 3px solid var(--bs-warning);
        padding: 0.5rem 0;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: none;
        position: static !important;
        float: none !important;
        width: 100% !important;
    }

    .main-navbar .dropdown-menu.show {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    .main-navbar .dropdown-item {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        border-top: none;
        position: relative;
        z-index: 10;
        pointer-events: auto;
    }

    .school-list-grid {
        padding-left: 0;
    }

    nav.nav-light.navbar-scrolled .nav-link:not(.contact-tab-btn) {
        color: #034EA2 !important;
    }

    .ratio-mob-1x1 {
        --bs-aspect-ratio: 100%;
    }
}

/* ── 8i: max-width: 991.98px (Below Desktop) ──────────────────────────── */
@media (max-width: 991.98px) {

    .container {
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
    }

    .ptu-tabs-container {
        border-radius: 35px;
        padding: 8px;
    }

    .ptu-tabs {
        flex-direction: column;
        width: 100% !important;
        gap: 8px;
    }

    .ptu-tabs .nav-item {
        width: 100%;
        flex: none;
    }

    .ptu-tabs .nav-link {
        width: 100%;
        margin: 0 !important;
        border-radius: 28px;
        padding: 12px 20px;
    }

    .scroll-reveal-container {
        min-height: auto !important;
    }

    .usp-image-wrapper {
        max-height: none !important;
        padding: 0 !important;
        background-color: transparent !important;
    }

    .usp-image-wrapper img {
        height: auto !important;
        max-height: none !important;
        object-fit: cover !important;
    }

    .testimonial-wrapper {
        display: flex;
        flex-direction: column;
    }

    #testimonialPanel {
        order: 2;
        position: relative !important;
        width: 100% !important;
        right: auto !important;
        margin-top: 1.5rem;
    }

    .swiper.mySwiper {
        order: 1;
        padding-bottom: 2rem !important;
    }

    .testimonials-section .swiper-pagination-bullet {
        width: 30px;
        height: 4px;
        border-radius: 2px;
        background: rgba(255, 255, 255, 0.4);
        margin: 0 4px !important;
    }

    .testimonials-section .swiper-pagination-bullet-active {
        background: #ffc107;
    }

    .testimonials-section .pagination-progress {
        display: none !important;
    }

    .testimonials-section .swiper-button-next,
    .testimonials-section .swiper-button-prev {
        top: 45%;
        background-color: transparent;
        color: white;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }

    .ptu-hero {
        min-height: 420px;
    }

    .ptu-shaping-title,
    .ptu-shaping-desc {
        text-align: left;
    }

    .ptu-shaping-item {
        padding-bottom: 2rem;
        margin-bottom: 2rem;
    }

    .ptu-career-card {
        min-height: 250px;
    }

    .ptu-career-card-wide,
    .ptu-career-card-narrow {
        min-height: 250px;
    }

    .ptu-logo-item {
        max-height: 72px;
    }

    .testimony-desktop {
        display: none;
        height: 0px !important;
    }

    .ss-section-title {
        font-size: 2rem;
    }

    .ss-accordion-title {
        font-size: 1.4rem;
    }

    .ss-mission-title {
        font-size: 2rem;
    }

    .ss-csr-title {
        font-size: 1.25rem;
    }

    .ip-section-title {
        font-size: 1.8rem;
    }

    .ip-acc-title {
        font-size: 1.3rem;
        padding: 0.5rem 0;
    }

    .ip-acc-item.active .ip-acc-panel {
        max-height: 350px;
    }

    .partner-logo-wrapper {
        padding: 0 1.25rem;
    }

    .usp-title {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .usp-title::after {
        content: "";
        display: inline-block;
        width: 1.25rem;
        height: 1.25rem;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23034EA2'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        transition: transform 0.3s ease;
        flex-shrink: 0;
        margin-left: 1rem;
    }

    .usp-item.active .usp-title::after {
        transform: rotate(-180deg);
    }

    .row>* {
        padding-right: calc(var(--bs-gutter-x) * .5);
        padding-left: calc(var(--bs-gutter-x) * .5);
    }

    .play-testimony {
        top: calc(50% - 20px);
        left: calc(50% - 20px);
    }

    .play-testimony svg {
        height: 40px;
        width: 40px;
    }

    .ost-desc {
        font-size: 0.8rem;
    }

    .ost-quote {
        font-size: 1rem;
        margin-bottom: 10px;
        line-height: initial;
    }

    .ost-author-details {
        margin-top: 10px;
    }

    .ost-author-info {
        font-size: 0.8rem;
    }

    .ost-card-overlay-hover {
        padding: 15px 20px;
    }

    .ost-author-name {
        font-size: 1rem;
    }

    .w-md-50.ml--3 {
        height: auto !important;
        margin-top: -3.5rem;
        z-index: 2;
        position: relative;
    }

    .section-padding {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .section-padding-top {
        padding-top: 4rem;
    }

    .section-padding-bottom {
        padding-bottom: 4rem;
    }

    .ibdp-curriculum-item {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .ibdp-curriculum-item.pt-5 {
        padding-top: 3rem !important;
    }

    .ibdp-curriculum-item h4 {
        font-size: 1.3rem;
    }

    .ibdp-result-img {
        height: 300px;
    }

    /* Floating WA */
    .floating-wa {
        width: 55px;
        height: 55px;
        right: 25px;
        bottom: 25px;
    }

    .floating-wa svg {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 767.98px) {
    .journey-timeline {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .journey-timeline::before {
        top: 35px;
        bottom: 35px;
        left: calc(1rem + 35px - 1px);
        right: auto;
        width: 2px;
        height: calc(100% - 70px);
    }

    .journey-point {
        display: flex;
        align-items: center;
        gap: 1.25rem;
        width: 100%;
        text-align: left;
    }

    .journey-point::after,
    .journey-point::before {
        display: none !important;
    }

    .journey-icon {
        margin: 0;
        flex-shrink: 0;
        width: 70px;
        height: 70px;
    }

    .journey-label {
        margin-top: 0;
        text-align: left;
    }
}


/* ── 8j: max-width: 768px (Mobile) ────────────────────────────────────── */
@media (max-width: 768px) {

    .ls-hero-title {
        font-size: 2.5rem;
    }

    .ls-featured-img {
        aspect-ratio: 16/9;
    }

    .ls-edu-row {
        text-align: center;
    }

    .ls-edu-title {
        margin-bottom: 1.5rem;
    }

    .ls-edu-desc {
        margin-top: 1.5rem;
    }

    .ls-info-box {
        padding: 2rem 1.5rem;
    }

    .ls-wa-btn {
        right: 20px;
    }

    .testimony-desktop {
        display: none;
        height: 0px !important;
    }

    .testimonials-section,
    .cta-section {
        min-height: 150vw;
    }

    #mission .cta-section {
        height: 50vh !important;
        min-height: auto !important;
    }

    #foundation ul.foundation-item {
        margin-top: 0;
    }

    .navbar-brand .logo {
        height: 75px;
    }

    .test-img-wrapper {
        width: 200px;
        height: 280px;
    }

    .overlay {
        background: rgba(0, 0, 0, 0.6);
    }

    #foundation ul.foundation-item li {
        width: calc(50% - 2rem);
        display: inline-block;
        margin-left: 0;
        vertical-align: top;
        margin-top: 2rem;
    }

    #foundation ul.foundation-item li:nth-child(even) {
        margin-left: 2rem;
    }

    .mt-xs-2 {
        margin-bottom: 2rem;
    }

    .hero-image-type-2 {
        margin-top: 0px;
        height: 40vh;
        min-height: unset;
    }

    h2,
    .h2 {
        font-size: clamp(1.375rem, 3vw + 0.5rem, 1.75rem);
    }

    h3,
    .h3 {
        font-size: 1.375rem;
    }

    .pb-5 {
        padding-bottom: 2rem !important;
    }

    .pt-5 {
        padding-top: 2rem !important;
    }

    .pt-xs-3 {
        margin-top: 1.5rem;
    }

    .mb-5 {
        margin-bottom: 2rem !important;
    }

    .default-active {
        display: none;
    }

    .logo-footer {
        width: 40vw;
        margin-bottom: 1.5rem;
    }

    .mob-ratio-125 {
        --bs-aspect-ratio: 125%;
        aspect-ratio: inherit !important;
    }

    .job-opp-hero-title {
        font-size: 3rem;
    }

    .job-opp-bottom-banner {
        height: 250px;
    }

    .display-3 {
        font-size: calc(1.525rem + 2.25vw);
        line-height: normal !important;
    }

    .lead {
        font-family: inherit;
        font-size: 1rem;
    }

    .sticky-wa {
        right: .25rem;
        bottom: .25rem;
    }

    .os-intro-text {
        font-size: 1.5rem;
    }

    .os-school-title {
        font-size: 2rem;
    }

    .os-school-desc {
        font-size: 1rem;
    }

    .os-footer-banner {
        min-height: 400px;
    }

    .os-footer-banner h2 {
        font-size: 2.5rem;
    }

    .ost-swiper-nav {
        display: none !important;
    }

    section.our-phylosophy {
        min-height: 50vh;
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
        position: relative;
    }

    section.our-phylosophy:before {
        content: " ";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(3, 78, 162, 0.8);
    }

    section.our-phylosophy .container {
        z-index: 1;
        position: relative;
    }

    #mission .card::after {
        border-radius: 0;
    }

    .nav-link:not(.h4) {
        justify-content: stretch;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
}

/* ── 8k: max-width: 767.98px (Mobile strict) ──────────────────────────── */
@media (max-width: 767.98px) {

    /* School highlights */
    .school-highlights .mySwiper2 .swiper-slide {
        aspect-ratio: 1 / 1.25;
    }

    .school-highlights .ls-moment-overlay {
        padding: 1.5rem;
    }

    .ls-custom-nav-btn.swiper-button-prev {
        transform: translateX(-25%);
    }

    .ls-custom-nav-btn.swiper-button-next {
        transform: translateX(25%);
    }

    .w-50 {
        width: 50% !important;
        margin: 0 auto;
    }

    /* PTU mobile */
    .ptu-intro,
    .ptu-shaping,
    .ptu-college-prep,
    .ptu-partnership,
    .ptu-destination {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .ptu-intro-desc {
        font-size: 0.95rem;
    }

    .ptu-shaping-image {
        aspect-ratio: 16 / 9;
    }

    .ptu-career-card {
        min-height: 220px;
    }

    .ptu-career-card-wide,
    .ptu-career-card-narrow {
        min-height: 220px;
    }

    .ptu-career-title {
        font-size: 1.6rem;
    }

    .ptu-career-card:hover .ptu-career-desc,
    .ptu-career-card:focus .ptu-career-desc,
    .ptu-career-card:focus-within .ptu-career-desc,
    .ptu-career-card:active .ptu-career-desc,
    .ptu-career-card.is-active .ptu-career-desc {
        max-height: 160px;
    }

    .ptu-region-title {
        font-size: 1.05rem;
    }

    .ptu-region-list {
        font-size: 0.88rem;
    }

    .ptu-tabs-container {
        border-radius: 50px;
    }

    .ptu-tabs {
        flex-direction: column;
        width: calc(100% - 8px) !important;
    }

    .journey-timeline {
        margin-top: 1rem;
        gap: 1rem;
    }

    /* Hero mobile */
    .heroSwiper .col-lg-12 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        width: calc(100vh - 2rem) !important;
        text-align: left !important;
    }

    .hero-section .swiper-horizontal>.swiper-pagination-bullets,
    .hero-section .swiper-pagination-bullets.swiper-pagination-horizontal,
    .hero-section .swiper-pagination-custom,
    .hero-section .swiper-pagination-fraction {
        left: 30px;
    }

    .stat-box {
        background-position: center;
        background-size: cover;
    }

    #mission .rounded-type-1 {
        border-radius: 0px;
    }

    #mission .col-md-6 {
        padding-right: 0px;
        padding-left: 0px;
    }

    .nav-swiper-type-2 {
        bottom: 0;
        left: 0;
        z-index: 10;
        pointer-events: none;
    }

    .ctm-job {
        margin-left: -50px !important;
        margin-right: -50px !important;
    }

    .purpose-of-ipeka .ratio-4x3 {
        --bs-aspect-ratio: 60%;
    }

    .ost-desc {
        font-size: 0.8rem;
    }

    .ost-quote {
        font-size: .9rem;
        margin-bottom: 10px;
        line-height: initial;
    }

    .ost-author-details {
        margin-top: 10px;
    }

    .ost-author-info {
        font-size: 0.7rem;
    }

    .ost-card-overlay-hover {
        padding: 15px 20px;
    }

    .ost-author-name {
        font-size: 0.9rem;
    }

    .mob-mt-3 {
        margin-top: 1.5rem;
    }

    img.p-top {
        top: -2rem;
    }

    img.p-bottom {
        bottom: -2rem;
    }

    /* FAITH cards */
    .faith-letter {
        width: 50px;
        height: 50px;
        font-size: 1.5rem !important;
    }

    .faith-text {
        font-size: 0.95rem;
    }

    /* Floating WA */
    .floating-wa {
        width: 50px;
        height: 50px;
        right: 20px;
        bottom: 20px;
    }

    .floating-wa svg {
        width: 28px;
        height: 28px;
    }

    /* Academic Pathways Mobile */
    .ap-ilead-diagram-wrapper {
        height: auto;
        max-width: 100%;
        flex-direction: column;
        gap: 1.25rem;
    }

    .ap-ilead-concentric-circles {
        display: none;
    }

    .ap-ilead-center {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin-bottom: 1.5rem;
        animation: none;
    }

    .ap-ilead-center:hover .ap-ilead-shield-img {
        transform: none;
    }

    .ap-ilead-node {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        animation: none !important;
        margin-bottom: 0.5rem;
    }

    .ap-ilead-node-card {
        justify-content: flex-start;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .ap-yellow-pill {
        font-size: 0.95rem;
        padding: 10px 20px;
    }

    .ap-gallery-tall {
        min-height: 280px;
    }

    .ap-gallery-wide {
        min-height: 180px;
    }

    /* IBDP Mobile */
    .ibdp-launchpad-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1.25rem;
    }

    .ibdp-launchpad-center {
        grid-column: 1;
        grid-row: 1;
        padding: 0 !important;
    }

    .photo-top-left,
    .photo-top-right,
    .photo-mid-left,
    .photo-mid-right,
    .photo-bottom-left,
    .photo-bottom-right {
        grid-column: auto;
        grid-row: auto;
        animation: none;
    }

    .ibdp-watermark-bg {
        width: 300px;
        height: 300px;
        right: 0;
        opacity: 0.06;
    }
}