/*
  Universal Academy — Final CSS
  Professional school theme: Navy · Amber · Sage Green
  All previous issues corrected:
  - Logo: circular with clean border
  - Hero eyebrow badge: visible on both slides
  - Features strip: professional card row
  - About section: fixed float/overflow, justified text, proper bg
  - Achievements: solid white bg, no text bleed
  - Testimonials: deep navy bg, fully legible cards
  - Management messages: opaque cards, readable text
  - Color system: consistent, accessible throughout
*/

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

/* ============================================================
   ROOT TOKENS
   ============================================================ */
:root {
    --navy:        #0B2545;
    --navy-light:  #163A63;
    --navy-mid:    #1E4976;
    --amber:       #D4920A;
    --amber-light: #F5B731;
    --amber-bg:    #FEF6E4;
    --green:       #4A7C2F;
    --green-light: #7AAD3A;
    --green-bg:    #EFF6E5;
    --white:       #FFFFFF;
    --off-white:   #F8F9FB;
    --n50:         #F4F6F9;
    --n100:        #E8ECF2;
    --n200:        #CDD3DF;
    --n400:        #8E99AE;
    --n600:        #4A5568;
    --n800:        #1A202C;
    --radius-sm:   4px;
    --radius-md:   8px;
    --radius-lg:   14px;
    --radius-xl:   20px;
    --t:           0.22s ease;
    --shadow-sm:   0 1px 4px rgba(11,37,69,0.08);
    --shadow-md:   0 4px 16px rgba(11,37,69,0.10);
}

/* ============================================================
   1. BASE RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.65;
    color: var(--n600);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; transition: color var(--t); }
a:focus, a:hover { text-decoration: none; }

i, span, a { display: inline-block; }

h1,h2,h3,h4,h5,h6 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    color: var(--n800);
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.015em;
}
h1 { font-size: 54px; font-weight: 700; }
h2 { font-size: 38px; }
h3 { font-size: 26px; }
h4 { font-size: 20px; }
h5 { font-size: 16px; }
h6 { font-size: 14px; }

ul, ol { margin: 0; padding: 0; list-style: none; }

p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    color: var(--n600);
    margin: 0;
}

/* Utilities */
.bg_cover {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.gray-bg    { background-color: var(--n50); }
.pt-40      { padding-top: 40px; }
.pt-65      { padding-top: 65px; }
.pt-70      { padding-top: 70px; }
.pt-115     { padding-top: 115px; }
.pt-150     { padding-top: 150px; }
.pb-60      { padding-bottom: 60px; }
.pb-80      { padding-bottom: 80px; }
.pb-115     { padding-bottom: 115px; }
.pb-120     { padding-bottom: 120px; }
.mt-40      { margin-top: 40px; }
.mt-50      { margin-top: 50px; }
.mt-55      { margin-top: 55px; }

/* ── Buttons ── */
.main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0 28px;
    height: 46px;
    border-radius: var(--radius-md);
    border: 2px solid var(--amber-light);
    background-color: var(--amber-light);
    color: var(--navy);
    cursor: pointer;
    transition: background-color var(--t), border-color var(--t), color var(--t), transform var(--t);
    white-space: nowrap;
    user-select: none;
}
.main-btn:hover {
    background-color: var(--amber);
    border-color: var(--amber);
    color: var(--white);
    transform: translateY(-2px);
}
.main-btn-2 {
    background-color: transparent;
    border-color: rgba(255,255,255,0.55);
    color: var(--white);
}
.main-btn-2:hover {
    background-color: var(--amber-light);
    border-color: var(--amber-light);
    color: var(--navy);
    transform: translateY(-2px);
}

/* ── Section Titles ── */
.section-title { margin-bottom: 40px; }

.section-title h5 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 12px;
    padding-bottom: 0;
}
.section-title h5::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background-color: var(--amber-light);
    border-radius: 2px;
    position: static;
    flex-shrink: 0;
}
.section-title h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--n800);
    line-height: 1.2;
}
.section-title p {
    margin-top: 14px;
    font-size: 17px;
    color: var(--n400);
    max-width: 560px;
}

/* Centered variant */
.section-title.text-center h5 {
    justify-content: center;
    width: 100%;
}
.section-title.text-center h5::before { position: static; transform: none; }
.section-title.text-center p { margin-left: auto; margin-right: auto; }

/* ── Preloader ── */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}
.preloader-content { text-align: center; }
.preloader-content img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--n100);
    animation: pulse 1.6s infinite ease-in-out;
}
@keyframes pulse {
    0%,100% { transform: scale(1);    opacity: 0.8; }
    50%      { transform: scale(1.07); opacity: 1;   }
}


/* ============================================================
   2. HEADER
   ============================================================ */

/* Top bar — deep navy, subtle */
.header-top {
    background-color: var(--navy);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header-contact ul li { display: inline-block; margin-right: 20px; }
.header-contact ul li:last-child { margin-right: 0; }
.header-contact a {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color var(--t);
}
.header-contact a i { color: var(--amber-light); font-size: 13px; }
.header-contact a:hover { color: var(--white); }

/* Logo + support */
.header-logo-support {
    padding: 14px 0;
    border-bottom: 1px solid var(--n100);
}

/* ── LOGO: circular ── */
.logo img {
    max-height: 80px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--n100);
    box-shadow: 0 0 0 4px var(--amber-bg);
    transition: box-shadow var(--t);
}
.logo img:hover {
    box-shadow: 0 0 0 4px rgba(212,146,10,0.25);
}

/* Support button */
.support-button .support {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: 36px;
}
.support-button .support .icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 0;
    border: none;
    box-shadow: none;
}
.support-button .support .cont p {
    font-size: 12px;
    color: var(--n400);
    line-height: 1.4;
    margin-bottom: 2px;
}
.support-button .support .cont span {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
}

/* Navigation */
.navigation {
    background: var(--white);
    border-bottom: 1px solid var(--n100);
}
.navigation.sticky {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    background: var(--white);
    z-index: 999;
    border-bottom: 1px solid var(--n200);
    box-shadow: 0 2px 20px rgba(11,37,69,0.08);
    animation: sticky 0.3s ease;
}
@keyframes sticky {
    from { transform: translateY(-100%); }
    to   { transform: translateY(0); }
}

.navigation .navbar { padding: 0; }
.navigation .navbar .navbar-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.navigation .navbar .navbar-nav li { margin-right: 32px; position: relative; }
.navigation .navbar .navbar-nav li:last-child { margin-right: 0; }
.navigation .navbar .navbar-nav li a {
    font-size: 13px;
    font-weight: 600;
    color: var(--n800);
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 22px 0;
    position: relative;
    transition: color var(--t);
}
.navigation .navbar .navbar-nav li a::after {
    content: '';
    position: absolute;
    bottom: 14px; left: 0;
    width: 0; height: 2px;
    background: var(--amber-light);
    border-radius: 2px;
    transition: width var(--t);
}
.navigation .navbar .navbar-nav > li > a.active::after,
.navigation .navbar .navbar-nav > li > a:hover::after { width: 100%; }
.navigation .navbar .navbar-nav > li > a.active,
.navigation .navbar .navbar-nav > li > a:hover { color: var(--navy); }

/* Dropdown */
.navigation .navbar .navbar-nav li .sub-menu {
    position: absolute;
    top: 115%; left: 0;
    background: var(--white);
    border: 1px solid var(--n100);
    border-radius: var(--radius-md);
    width: 210px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--t);
    z-index: 99;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}
.navigation .navbar .navbar-nav li:hover .sub-menu { opacity: 1; visibility: visible; top: 100%; }
.navigation .navbar .navbar-nav li .sub-menu li { margin-right: 0; }
.navigation .navbar .navbar-nav li .sub-menu li a {
    padding: 11px 18px;
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--n800);
    letter-spacing: 0;
    text-transform: none;
    border-bottom: 1px solid var(--n50);
    transition: background var(--t), color var(--t), padding var(--t);
}
.navigation .navbar .navbar-nav li .sub-menu li a::after { display: none; }
.navigation .navbar .navbar-nav li .sub-menu li a:hover,
.navigation .navbar .navbar-nav li .sub-menu li a.active {
    background: var(--n50);
    color: var(--amber);
    padding-left: 22px;
}
.navigation .navbar .navbar-nav li .sub-menu li:last-child a { border-bottom: 0; }

/* Hamburger */
.navbar .navbar-toggler {
    padding: 4px 8px;
    margin: 14px 0;
    background: none;
    border: 1px solid var(--n200);
    border-radius: var(--radius-sm);
}
.navbar .navbar-toggler .icon-bar {
    width: 20px; height: 2px;
    background: var(--navy);
    display: block;
    margin: 4px 0;
    transition: all 0.3s;
    border-radius: 2px;
}
.navbar .navbar-toggler.active .icon-bar:nth-of-type(1) { transform: rotate(46deg);  top: 6px;  position: relative; }
.navbar .navbar-toggler.active .icon-bar:nth-of-type(2) { opacity: 0; }
.navbar .navbar-toggler.active .icon-bar:nth-of-type(3) { transform: rotate(134deg); top: -6px; position: relative; }
.sub-nav-toggler { display: none; }

.navigation .navbar-collapse.show .navbar-nav,
.navigation .navbar-collapse.collapsing .navbar-nav { flex-direction: column; }

/* Right icons */
.right-icon ul li { display: inline-block; margin-right: 4px; padding: 22px 0; }
.right-icon ul li:last-child { margin-right: 0; }
.right-icon ul li a {
    width: 36px; height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: var(--n600);
    border-radius: var(--radius-sm);
    transition: background var(--t), color var(--t);
}
.right-icon ul li a:hover { background: var(--n100); color: var(--navy); }

/* Search overlay */
.search-box {
    position: fixed;
    inset: 0;
    background: rgba(11,37,69,0.7);
    z-index: 9999;
    display: none;
}
.closebtn {
    position: absolute;
    top: 24px; right: 40px;
    cursor: pointer;
    width: 32px; height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}
.closebtn span {
    width: 16px; height: 1.5px;
    background: var(--white);
    display: block;
    position: absolute;
}
.closebtn span:nth-of-type(1) { transform: rotate(45deg); }
.closebtn span:nth-of-type(2) { transform: rotate(-45deg); }
.search-box .serach-form input {
    width: 50%; height: 50px;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    border: 2px solid var(--n200);
    border-radius: 50px;
    color: var(--n800);
    font-size: 15px;
    padding: 0 50px 0 22px;
}
.search-box .serach-form button {
    position: absolute;
    top: 50%; left: 73%;
    transform: translate(-50%, -50%);
    padding: 0; border: 0;
    background: transparent;
    color: var(--navy);
    cursor: pointer;
    font-size: 16px;
}


/* ============================================================
   3. HERO / SLIDER
   ============================================================ */

/* Fix: proper height so content isn't squished */
.single-slider {
    min-height: 600px;
    display: flex;
    align-items: flex-start;
    position: relative;
}

/* Stronger overlay so text is always readable */
.single-slider::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(11,37,69,0.88) 0%,
        rgba(11,37,69,0.60) 55%,
        rgba(11,37,69,0.15) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding-top: 100px;
    padding-bottom: 80px;
    width: 100%;
}

/* Eyebrow badge — FIX: always white-readable, works on any slide */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--navy);
    background: var(--amber-light);
    border-radius: 50px;
    padding: 5px 14px;
    margin-bottom: 20px;
}

.slider-cont { position: relative; z-index: 5; }

.slider-cont h1 {
    font-size: 52px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -0.02em;
    padding-bottom: 18px;
}
.slider-cont p {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    font-weight: 400;
    padding-bottom: 36px;
    max-width: 500px;
    line-height: 1.75;
}
.slider-cont ul { display: flex; flex-wrap: wrap; gap: 12px; padding: 0; }
.slider-cont ul li { display: block; margin: 0; }

/* Hero stats bar */
.hero-stats {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 28px;
    margin-top: 40px;
}
.hero-stat-item { display: flex; flex-direction: column; padding-bottom: 16px; }
.hero-stat-num {
    font-size: 30px;
    font-weight: 700;
    color: var(--amber-light);
    line-height: 1;
    letter-spacing: -0.02em;
}
.hero-stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    margin-top: 5px;
    font-weight: 500;
    line-height: 1.4;
}

/* Slick arrows */
.slider-active .slick-arrow {
    font-size: 36px;
    position: absolute;
    top: 50%; left: 0;
    transform: translateY(-50%);
    color: var(--white);
    cursor: pointer;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    width: 44px; height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all var(--t);
}
.slider-active .next.slick-arrow { left: auto; right: 0; }
.slider-active:hover .slick-arrow { left: 20px; opacity: 1; visibility: visible; }
.slider-active:hover .next.slick-arrow { left: auto; right: 20px; }


/* ============================================================
   4. FEATURES STRIP — professional, no carousel
   ============================================================ */

.features-strip {
    background: var(--white);
    border-bottom: 1px solid var(--n100);
    position: relative;
    z-index: 10;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 1px solid var(--n100);
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 30px 16px;
    text-align: center;
    border-right: 1px solid var(--n100);
    text-decoration: none;
    transition: background var(--t);
    cursor: pointer;
}
.feature-card:last-child { border-right: 0; }
.feature-card:hover { background: var(--n50); }

.feature-icon {
    width: 56px; height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform var(--t);
}
.feature-card:hover .feature-icon { transform: translateY(-3px); }

.feature-icon img { width: 30px; height: 30px; object-fit: contain; }

.feature-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--n600);
    letter-spacing: 0.02em;
    line-height: 1.4;
    transition: color var(--t);
}
.feature-card:hover .feature-label { color: var(--navy); }

/* Distinct, professional icon backgrounds */
.feature-card--blue  .feature-icon { background: #EBF2FF; }
.feature-card--green .feature-icon { background: var(--green-bg); }
.feature-card--amber .feature-icon { background: var(--amber-bg); }
.feature-card--navy  .feature-icon { background: #E8EDF4; }
.feature-card--red   .feature-icon { background: #FEF0EE; }

@media (max-width: 991px) {
    .features-grid { grid-template-columns: repeat(3, 1fr); }
    .feature-card:nth-child(3) { border-right: 0; }
}
@media (max-width: 575px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-card { padding: 22px 12px; }
    .feature-card:nth-child(2n) { border-right: 0; }
}


/* ============================================================
   5. ABOUT — FIX text floating under background image
   ============================================================ */

#about-part {
    position: relative;
    padding-bottom: 80px;
    background: var(--white);
    /* CRITICAL FIX: establish new stacking context so bg image
       sits truly behind content, not overlapping it */
    isolation: isolate;
    overflow: hidden;
}

/* Background image — decorative only, behind all content */
.about-bg {
    position: absolute;
    bottom: 0; right: 0;
    width: 48%;
    z-index: 0;
    pointer-events: none;
}
.about-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    /* Fade from left so text column stays clean */
    background: linear-gradient(
        to right,
        rgba(255,255,255,1)   0%,
        rgba(255,255,255,0.7) 40%,
        rgba(255,255,255,0)   100%
    ),
    linear-gradient(
        to top,
        rgba(255,255,255,0.9) 0%,
        rgba(255,255,255,0)   60%
    );
    z-index: 1;
}
.about-bg img { width: 100%; opacity: 0.55; }

/* Content columns sit above bg image */
#about-part .container { position: relative; z-index: 2; }

/* About text — properly justified */
.about-cont p {
    padding-top: 16px;
    text-align: justify;
    hyphens: auto;
    color: var(--n600);
    line-height: 1.8;
}

/* Notices panel */
.notices-panel {
    background: var(--white);
    border: 1px solid var(--n200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.notices-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    background: var(--navy);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.notices-header h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.01em;
}
.notices-view-all {
    font-size: 12px;
    font-weight: 600;
    color: var(--amber-light);
    transition: color var(--t);
}
.notices-view-all:hover { color: var(--white); }
.notices-list { padding: 4px 0; }
.notice-item {
    padding: 16px 24px;
    border-bottom: 1px solid var(--n100);
    transition: background var(--t), padding-left var(--t);
}
.notice-item:last-child { border-bottom: 0; }
.notice-item:hover { background: var(--n50); padding-left: 28px; }
.notice-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--n400);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.notice-date i { color: var(--green-light); }
.notice-title {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--n800);
    line-height: 1.45;
    transition: color var(--t);
}
.notice-title:hover { color: var(--amber); }

/* Legacy about-event (kept for compatibility) */
.about-event {
    background: var(--white);
    border: 1px solid var(--n200);
    border-radius: var(--radius-lg);
    padding: 36px 40px 28px;
    box-shadow: var(--shadow-sm);
}
.about-event .event-title h3 { font-size: 24px; color: var(--n800); padding-bottom: 4px; }
.about-event ul li .singel-event { padding: 20px 0; border-bottom: 1px solid var(--n100); }
.about-event ul li:last-child .singel-event { border-bottom: 0; }
.about-event ul li .singel-event span { font-size: 13px; color: var(--n400); margin-right: 16px; }
.about-event ul li .singel-event span i { color: var(--green-light); }
.about-event ul li .singel-event a { display: block; }
.about-event ul li .singel-event a h4 { padding-top: 5px; padding-bottom: 8px; color: var(--n800); font-size: 19px; transition: color var(--t); }
.about-event ul li .singel-event a:hover h4 { color: var(--amber); }


/* ============================================================
   6. MISSION / VISION
   ============================================================ */

.mission-vision-section { padding-top: 0; }

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--n200);
    box-shadow: var(--shadow-md);
}

.mv-card { padding: 52px 48px; position: relative; }

.mv-card--mission { background: var(--green); }
.mv-card--vision  { background: var(--navy); }

.mv-card__icon {
    width: 52px; height: 52px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.13);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color: rgba(255,255,255,0.9);
}
.mv-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
}
.mv-card p { color: rgba(255,255,255,0.82); line-height: 1.8; }

/* Legacy apply styles (compatibility) */
.apply { margin-top: -80px; position: relative; z-index: 5; }
.apply-color-1 { background: var(--green); border-top-left-radius: var(--radius-lg); border-bottom-left-radius: var(--radius-lg); }
.apply-color-2 { background: var(--navy); border-top-right-radius: var(--radius-lg); border-bottom-right-radius: var(--radius-lg); }
.apply .apply-cont { padding: 44px 44px 48px; }
.apply .apply-cont h3 { font-size: 26px; color: var(--white); padding-bottom: 14px; }
.apply .apply-cont p { color: rgba(255,255,255,0.82); line-height: 1.8; }

@media (max-width: 767px) {
    .mission-vision-grid { grid-template-columns: 1fr; }
    .mv-card--mission { border-bottom: 1px solid rgba(255,255,255,0.12); }
    .mv-card { padding: 36px 28px; }
}


/* ============================================================
   7. ACHIEVEMENTS — FIX: solid bg, no text bleed
   ============================================================ */

#achievements-part {
    background: var(--n50);
    position: relative;
    z-index: 1;
}

/* Stat counters */
.achievement-stat {
    display: flex;
    flex-direction: column;
    padding: 24px 20px;
    background: var(--white);
    border: 1px solid var(--n200);
    border-bottom: 3px solid var(--amber-light);
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
    transition: border-bottom-color var(--t), transform var(--t);
    box-shadow: var(--shadow-sm);
}
.achievement-stat:hover { border-bottom-color: var(--amber); transform: translateY(-2px); }
.achievement-stat__num {
    font-size: 34px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
    letter-spacing: -0.02em;
    display: block;
    margin-bottom: 8px;
}
.achievement-stat__label {
    font-size: 12px;
    color: var(--n400);
    font-weight: 600;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Prose cards — FIX: proper solid bg, no transparent overlap */
.achievement-prose {
    padding: 26px;
    background: var(--white);          /* always solid white */
    border: 1px solid var(--n100);
    border-top: 3px solid var(--amber-light);
    border-radius: var(--radius-lg);
    height: 100%;
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 2;                        /* above any bg decorations */
}
.achievement-prose__heading {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--n100);
}
.achievement-prose p {
    font-size: 14px;
    line-height: 1.75;
    color: var(--n600);
}

/* Legacy teachers styles */
.teachers-cont p { padding-top: 24px; }
.singel-teachers { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.singel-teachers .image { overflow: hidden; }
.singel-teachers .image img { transition: transform 0.45s ease; width: 100%; }
.singel-teachers:hover .image img { transform: scale(1.06); }
.singel-teachers .cont {
    position: absolute;
    bottom: 12px; left: 0; right: 0;
    width: 84%;
    background: rgba(255,255,255,0.95);
    border-radius: var(--radius-md);
    margin: 0 auto;
    padding: 13px 16px;
    border: 1px solid var(--n100);
}
.singel-teachers .cont a { display: block; }
.singel-teachers .cont a h6 { color: var(--n800); font-size: 14px; font-weight: 600; transition: color var(--t); }
.singel-teachers .cont a:hover h6 { color: var(--amber); }
.singel-teachers .cont span { font-size: 12px; color: var(--n400); display: block; margin-top: 2px; }


/* ============================================================
   8. TESTIMONIAL / MANAGEMENT MESSAGES
   FIX: dark navy bg = use OPAQUE cards with strong contrast
   ============================================================ */

#testimonial {
    position: relative;
    overflow: hidden;
}

/* Dark overlay over bg image — deep navy, not translucent */
#testimonial::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(8, 26, 50, 0.92);   /* very opaque = readable text */
    z-index: 0;
}

#testimonial .container { position: relative; z-index: 2; }

#testimonial .section-title { position: relative; }
#testimonial .section-title h5 { color: var(--amber-light); }
#testimonial .section-title h5::before { background: var(--amber-light); }
#testimonial .section-title h2 { color: var(--white); }

/* Testimonial cards — FIX: solid enough to be always legible */
.testimonial-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.14);
    border-top: 3px solid var(--amber-light);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    margin-bottom: 28px;
    transition: background var(--t), border-color var(--t);
}
.testimonial-card:hover {
    background: rgba(255,255,255,0.11);
    border-color: rgba(255,255,255,0.22);
}
.testimonial-card__quote {
    font-size: 28px;
    color: var(--amber-light);
    margin-bottom: 16px;
    line-height: 1;
    opacity: 1;                /* FIX: was 0.9, now fully visible */
}
.testimonial-card__body {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,0.88);  /* FIX: brighter text */
    font-style: italic;
    margin-bottom: 24px;
}
.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.testimonial-card__avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: rgba(245,183,49,0.2);
    border: 2px solid var(--amber-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--amber-light);
    flex-shrink: 0;
}
.testimonial-card__meta { flex: 1; min-width: 0; }
.testimonial-card__meta strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);           /* FIX: pure white */
    margin-bottom: 2px;
}
.testimonial-card__meta span {
    font-size: 12px;
    color: rgba(255,255,255,0.55);
}
.testimonial-card__link {
    font-size: 12px;
    font-weight: 700;
    color: var(--amber-light);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color var(--t);
    display: inline-block;
}
.testimonial-card__link:hover { color: var(--white); }

/* Legacy singel-testimonial (compatibility) */
.testimonial-slied { position: relative; z-index: 5; }
.singel-testimonial { position: relative; }
.singel-testimonial .testimonial-thum {
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    display: inline-block;
}
.singel-testimonial .testimonial-thum img { border-radius: var(--radius-md); border: 2px solid rgba(255,255,255,0.2); }
.singel-testimonial .testimonial-thum .quote { position: absolute; right: -18px; top: -18px; }
.singel-testimonial .testimonial-thum .quote i {
    width: 38px; height: 38px; line-height: 38px;
    text-align: center;
    background: var(--amber-light);
    border-radius: 50%;
    color: var(--navy);
    font-size: 15px;
}
.singel-testimonial .testimonial-cont { padding-left: 140px; }
.singel-testimonial .testimonial-cont p  { color: rgba(255,255,255,0.88); padding-bottom: 28px; }
.singel-testimonial .testimonial-cont h6 { color: var(--white); font-weight: 700; padding-bottom: 3px; }
.singel-testimonial .testimonial-cont span { color: rgba(255,255,255,0.55); font-size: 14px; }

/* Slick dots */
.testimonial-slied .slick-dots li { display: inline-block; margin-top: 18px; }
.testimonial-slied .slick-dots li button {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    font-size: 0; padding: 0; border: 0; margin: 0 3px;
    cursor: pointer;
    transition: all var(--t);
}
.testimonial-slied .slick-dots li.slick-active button {
    background: var(--amber-light);
    width: 20px;
    border-radius: 4px;
}


/* ============================================================
   9. GALLERY
   ============================================================ */

/* Filter menu */
.portfolio-menu { text-align: center; margin-bottom: 28px; }
.portfolio-menu ul li {
    display: inline-block;
    padding: 7px 18px;
    margin: 0 3px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--n400);
    border-radius: 50px;
    border: 1px solid transparent;
    transition: all var(--t);
}
.portfolio-menu ul li:hover,
.portfolio-menu ul li.active {
    color: var(--navy);
    border-color: var(--n200);
    background: var(--white);
}

/* New gallery grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: var(--n200);
}
.gallery-item a { display: block; width: 100%; height: 100%; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.45s ease; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item__overlay {
    position: absolute;
    inset: 0;
    background: rgba(11,37,69,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--t);
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__overlay i { font-size: 22px; color: var(--white); }
.gallery-item:first-child { grid-column: span 2; grid-row: span 2; }

/* Legacy portfolio item */
.portfolio-item .item { float: left; margin-bottom: 10px; border-radius: var(--radius-md); overflow: hidden; }
img.gall-img {
    max-width: 100%;
    max-height: 173px;
    display: block;
    margin: auto;
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
img.gall-img:hover { transform: scale(1.04); }

@media (max-width: 991px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 575px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item:first-child { grid-column: span 2; }
}


/* ============================================================
   10. FOOTER
   ============================================================ */

.footer-top { background: var(--navy); border-top: 1px solid rgba(255,255,255,0.05); }

.footer-about { padding-right: 36px; }
.footer-about p { color: rgba(255,255,255,0.6); padding-top: 14px; font-size: 14px; line-height: 1.75; }
.footer-about ul { margin-top: 20px; }
.footer-about ul li { display: inline-block; margin-right: 8px; }
.footer-about ul li:last-child { margin-right: 0; }
.footer-about ul li a {
    width: 32px; height: 32px; line-height: 32px;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    border-radius: 50%;
    text-align: center;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all var(--t);
}
.footer-about ul li a:hover { background: var(--amber-light); color: var(--navy); border-color: var(--amber-light); }

.footer-title h6 {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-link { overflow: hidden; }
.footer-link ul { width: 50%; float: left; }
.footer-link ul li { line-height: 36px; }
.footer-link ul li a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all var(--t);
}
.footer-link ul li a i { color: var(--amber-light); font-size: 12px; transition: transform var(--t); }
.footer-link ul li a:hover { color: rgba(255,255,255,0.95); padding-left: 4px; }
.footer-link ul li a:hover i { transform: translateX(3px); }

.support ul { float: none; width: 100%; }

.footer-address ul li { position: relative; margin-bottom: 14px; display: flex; align-items: flex-start; gap: 12px; }
.footer-address ul li:last-child { margin-bottom: 0; }
.footer-address ul li .icon i { font-size: 15px; color: var(--amber-light); margin-top: 3px; }
.footer-address ul li .cont p { color: rgba(255,255,255,0.6); font-size: 13px; line-height: 1.65; }

.footer-copyright { background: rgba(0,0,0,0.3); border-top: 1px solid rgba(255,255,255,0.05); padding: 16px 0; }
.footer-copyright .copyright p { color: rgba(255,255,255,0.4); font-size: 13px; }
.footer-copyright .copyright p span { font-weight: 600; color: rgba(255,255,255,0.6); }

/* Back to top */
.back-to-top {
    position: fixed;
    right: 22px; bottom: 22px;
    width: 40px; height: 40px;
    line-height: 40px;
    background: var(--navy);
    color: var(--white);
    font-size: 18px;
    border-radius: var(--radius-md);
    z-index: 99;
    text-align: center;
    transition: all var(--t);
    display: none;
    border: 1px solid rgba(255,255,255,0.1);
}
.back-to-top:hover { background: var(--amber-light); color: var(--navy); transform: translateY(-3px); }


/* ============================================================
   11. PAGE BANNER
   ============================================================ */

.page-banner-cont { position: relative; z-index: 5; }
.page-banner-cont h2 { font-size: 44px; font-weight: 700; color: var(--white); padding-bottom: 12px; }
.page-banner-cont .breadcrumb { margin: 0; background: none; padding: 0; }
.page-banner-cont .breadcrumb .breadcrumb-item { color: var(--amber-light); font-size: 15px; font-weight: 600; }
.page-banner-cont .breadcrumb .breadcrumb-item a { color: rgba(255,255,255,0.75); }
.page-banner-cont .breadcrumb .breadcrumb-item a:hover { color: var(--white); }
.page-banner-cont .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); content: "/"; font-size: 15px; }


/* ============================================================
   12. CONTACT PAGE
   ============================================================ */

.contact-from {
    background: var(--white);
    padding: 44px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--n200);
}
.contact-from .main-form .singel-form { margin-top: 16px; }
.contact-from .main-form .singel-form input,
.contact-from .main-form .singel-form textarea {
    width: 100%;
    height: 46px;
    padding: 0 16px;
    border: 1.5px solid var(--n200);
    border-radius: var(--radius-md);
    color: var(--n800);
    font-size: 15px;
    font-family: 'DM Sans', sans-serif;
    background: var(--n50);
    transition: border-color var(--t), background var(--t);
}
.contact-from .main-form .singel-form input:focus,
.contact-from .main-form .singel-form textarea:focus {
    border-color: var(--amber);
    background: var(--white);
    outline: none;
}
.contact-from .main-form .singel-form textarea { padding-top: 12px; height: 110px; resize: vertical; }

.list-unstyled li { font-size: 13px; margin-top: 4px; color: #B91C1C; }
p.form-message.success { font-size: 14px; color: var(--green); background: var(--green-bg); border: 1px solid #B6D89A; border-radius: var(--radius-sm); padding: 10px 14px; margin-top: 14px; }
p.form-message.error   { font-size: 14px; color: #9B2335; background: #FEF0EE; border: 1px solid #FBC5BC; border-radius: var(--radius-sm); padding: 10px 14px; margin-top: 14px; }

.contact-address {
    background: var(--white);
    padding: 20px 44px 44px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--n200);
}
.contact-address ul li { padding-top: 24px; }
.contact-address ul li .singel-address { display: flex; align-items: flex-start; gap: 16px; }
.contact-address ul li .singel-address .icon i {
    width: 44px; height: 44px; line-height: 44px;
    border-radius: 50%;
    background: var(--n50);
    border: 1px solid var(--n200);
    color: var(--navy);
    font-size: 18px;
    text-align: center;
    flex-shrink: 0;
}
.map #contact-map { width: 100%; height: 215px; border-radius: var(--radius-md); }
.map.map-big #contact-map { height: 390px; }
.contact-address .contact-heading { padding-top: 28px; }
.contact-address .contact-heading h5 { padding-bottom: 10px; color: var(--n800); }


/* ============================================================
   13. MODAL NOTICE
   ============================================================ */

.notice-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(11,37,69,0.7);
    padding: 20px;
    align-items: center;
    justify-content: center;
}
.notice-modal-content {
    background: var(--white);
    margin: auto;
    padding: 28px;
    max-height: 88vh;
    overflow-y: auto;
    width: 90%;
    max-width: 560px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--n200);
    position: relative;
}
.notice-close {
    position: absolute;
    top: 14px; right: 16px;
    width: 30px; height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    color: var(--n400);
    border-radius: 50%;
    background: var(--n100);
    transition: all var(--t);
}
.notice-close:hover { background: var(--amber-light); color: var(--navy); }


/* ============================================================
   14. ABOUT PAGE (staff/detail pages)
   ============================================================ */

.about-image img { width: 100%; border-radius: var(--radius-lg); }

.about-singel-items {
    padding: 26px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--n100);
    background: var(--n50);
    transition: border-color var(--t), background var(--t);
}
.about-singel-items:hover { border-color: var(--n200); background: var(--white); }
.about-singel-items span {
    font-size: 48px;
    font-weight: 700;
    color: var(--n200);
    line-height: 1;
    padding-bottom: 16px;
    display: block;
}
.about-singel-items h4 { color: var(--n800); font-size: 20px; font-weight: 700; padding-bottom: 8px; }


/* ============================================================
   15. RESPONSIVE — GLOBAL
   ============================================================ */

@media (max-width: 991px) {
    h1, .slider-cont h1 { font-size: 40px; }
    .section-title h2 { font-size: 30px; }
    .hero-stat-num { font-size: 24px; }
    .achievement-stat__num { font-size: 28px; }
}

@media (max-width: 767px) {
    h1, .slider-cont h1 { font-size: 32px; }
    .hero-inner { padding-top: 80px; padding-bottom: 60px; }
    .testimonial-card { padding: 24px 20px; }
    .contact-from, .contact-address { padding: 28px 22px; }
    .achievement-prose { margin-bottom: 18px; }
    .mv-card { padding: 32px 24px; }
    .notices-panel { margin-top: 36px; }
}

@media (max-width: 480px) {
    h1, .slider-cont h1 { font-size: 26px; }
    .main-btn { font-size: 12px; padding: 0 20px; height: 40px; }
}

/*
  Universal Academy — Modern Professional Theme
  Navy · Amber · Sage Green
*/

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

/* ============================================================
   ROOT TOKENS
   ============================================================ */
:root {
    --navy:        #0B2545;
    --navy-light:  #163A63;
    --navy-mid:    #1E4976;
    --amber:       #D4920A;
    --amber-light: #F5B731;
    --amber-bg:    #FEF6E4;
    --green:       #4A7C2F;
    --green-light: #7AAD3A;
    --green-bg:    #EFF6E5;
    --white:       #FFFFFF;
    --off-white:   #F8F9FB;
    --n50:         #F4F6F9;
    --n100:        #E8ECF2;
    --n200:        #CDD3DF;
    --n400:        #8E99AE;
    --n600:        #4A5568;
    --n800:        #1A202C;
    --radius-sm:   4px;
    --radius-md:   8px;
    --radius-lg:   14px;
    --radius-xl:   20px;
    --t:           0.22s ease;
    --shadow-sm:   0 1px 4px rgba(11,37,69,0.08);
    --shadow-md:   0 4px 16px rgba(11,37,69,0.10);
}

/* ============================================================
   1. BASE RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.65;
    color: var(--n600);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t); }
a:focus, a:hover { text-decoration: none; }
i, span, a { display: inline-block; }

h1,h2,h3,h4,h5,h6 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    color: var(--n800);
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.015em;
}
h1 { font-size: 54px; }
h2 { font-size: 38px; }
h3 { font-size: 26px; }
h4 { font-size: 20px; }
h5 { font-size: 16px; }
h6 { font-size: 14px; }

ul, ol { margin: 0; padding: 0; list-style: none; }
p { font-size: 16px; line-height: 1.75; color: var(--n600); margin: 0; }

/* Utilities */
.bg_cover { background-position: center; background-size: cover; background-repeat: no-repeat; }
.gray-bg  { background-color: var(--n50); }
.pt-40    { padding-top: 40px; }
.pt-65    { padding-top: 65px; }
.pt-70    { padding-top: 70px; }
.pt-115   { padding-top: 115px; }
.pt-150   { padding-top: 150px; }
.pb-60    { padding-bottom: 60px; }
.pb-80    { padding-bottom: 80px; }
.pb-115   { padding-bottom: 115px; }
.pb-120   { padding-bottom: 120px; }
.mt-40    { margin-top: 40px; }
.mt-50    { margin-top: 50px; }
.mt-55    { margin-top: 55px; }

/* Buttons */
.main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0 28px;
    height: 46px;
    border-radius: var(--radius-md);
    border: 2px solid var(--amber-light);
    background-color: var(--amber-light);
    color: var(--navy);
    cursor: pointer;
    transition: background-color var(--t), border-color var(--t), color var(--t), transform var(--t);
    white-space: nowrap;
    user-select: none;
}
.main-btn:hover {
    background-color: var(--amber);
    border-color: var(--amber);
    color: var(--white);
    transform: translateY(-2px);
}
.main-btn-2 {
    background-color: transparent;
    border-color: rgba(255,255,255,0.55);
    color: var(--white);
}
.main-btn-2:hover {
    background-color: var(--amber-light);
    border-color: var(--amber-light);
    color: var(--navy);
}

/* Section Titles */
.section-title { margin-bottom: 40px; }
.section-title h5 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 12px;
}
.section-title h5::before {
    content: '';
    display: inline-block;
    width: 24px; height: 2px;
    background-color: var(--amber-light);
    border-radius: 2px;
    flex-shrink: 0;
}
.section-title h2 { font-size: 38px; font-weight: 700; color: var(--n800); line-height: 1.2; }
.section-title.text-center h5 { justify-content: center; width: 100%; }

/* Color chips */
.color-1 { background: linear-gradient(135deg,#4886ff,#2563eb); }
.color-2 { background: linear-gradient(135deg,#b5d56a,#8faa4a); }
.color-3 { background: linear-gradient(135deg,#ff6f6f,#dc2626); }

/* Preloader */
#preloader {
    position: fixed; inset: 0;
    background: var(--white);
    display: flex; align-items: center; justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease;
}
.preloader-content { text-align: center; }
.preloader-content img {
    width: 90px; height: 90px;
    border-radius: 50%; object-fit: cover;
    border: 3px solid var(--n100);
    animation: pulse 1.6s infinite ease-in-out;
}
@keyframes pulse {
    0%,100% { transform: scale(1);    opacity: 0.8; }
    50%      { transform: scale(1.07); opacity: 1;   }
}


/* ============================================================
   2. HEADER
   ============================================================ */

.header-top {
    background-color: var(--navy);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header-contact ul li { display: inline-block; margin-right: 20px; }
.header-contact ul li:last-child { margin-right: 0; }
.header-contact a {
    color: rgba(255,255,255,0.6);
    font-size: 16px;
    display: inline-flex; align-items: center; gap: 6px;
    transition: color var(--t);
}
.header-contact a:hover { color: var(--white); }

.header-logo-support { padding: 14px 0; border-bottom: 1px solid var(--n100); }

.logo img {
    max-height: 80px;
    width: 80px; height: 80px;
    border-radius: 50%; object-fit: cover;
    border: 3px solid var(--n100);
    box-shadow: 0 0 0 4px var(--amber-bg);
    transition: box-shadow var(--t);
}
.logo img:hover { box-shadow: 0 0 0 4px rgba(212,146,10,0.25); }

.support-button .support { display: flex; align-items: center; gap: 12px; margin-right: 36px; }
.support-button .support .icon img { width: 36px; height: 36px; object-fit: contain; border-radius: 0; border: none; box-shadow: none; }
.support-button .support .cont p { font-size: 12px; color: var(--n400); line-height: 1.4; margin-bottom: 2px; }
.support-button .support .cont span { font-size: 15px; font-weight: 700; color: var(--navy); }


/* ============================================================
   NAVIGATION — DESKTOP
   ============================================================ */
.navigation {
    background: var(--white);
    border-bottom: 1px solid var(--n100);
    position: relative;
    z-index: 100;
}
.navigation.sticky {
    position: fixed; top: 0; left: 0; width: 100%;
    background: var(--white);
    z-index: 999;
    border-bottom: 1px solid var(--n200);
    box-shadow: 0 2px 20px rgba(11,37,69,0.08);
    animation: sticky 0.3s ease;
}
@keyframes sticky {
    from { transform: translateY(-100%); }
    to   { transform: translateY(0); }
}
.navigation .navbar { padding: 0; position: relative; }

.navigation .navbar .navbar-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.navigation .navbar .navbar-nav > li { margin-right: 28px; position: relative; }
.navigation .navbar .navbar-nav > li:last-child { margin-right: 0; }

.navigation .navbar .navbar-nav > li > a {
    font-size: 12px; font-weight: 700;
    color: var(--n800);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 22px 0;
    display: block; position: relative;
    transition: color var(--t);
    white-space: nowrap;
}
.navigation .navbar .navbar-nav > li > a::after {
    content: '';
    position: absolute; bottom: 14px; left: 0;
    width: 0; height: 2px;
    background: var(--amber-light);
    border-radius: 2px;
    transition: width var(--t);
}
.navigation .navbar .navbar-nav > li > a.active,
.navigation .navbar .navbar-nav > li > a:hover { color: var(--navy); }
.navigation .navbar .navbar-nav > li > a.active::after,
.navigation .navbar .navbar-nav > li > a:hover::after { width: 100%; }

/* Desktop dropdown */
.navigation .navbar .navbar-nav li .sub-menu {
    position: absolute; top: 115%; left: 0;
    background: var(--white);
    border: 1px solid var(--n100);
    border-radius: var(--radius-md);
    min-width: 220px;
    opacity: 0; visibility: hidden;
    transition: all var(--t);
    z-index: 999;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}
.navigation .navbar .navbar-nav li:hover > .sub-menu { opacity: 1; visibility: visible; top: 100%; }
.navigation .navbar .navbar-nav li .sub-menu li { margin: 0; }
.navigation .navbar .navbar-nav li .sub-menu li a {
    padding: 11px 18px;
    display: block;
    font-size: 13px; font-weight: 500;
    color: var(--n800);
    letter-spacing: 0; text-transform: none;
    border-bottom: 1px solid var(--n50);
    white-space: nowrap;
    transition: background var(--t), color var(--t), padding var(--t);
}
.navigation .navbar .navbar-nav li .sub-menu li a::after { display: none; }
.navigation .navbar .navbar-nav li .sub-menu li:last-child a { border-bottom: 0; }
.navigation .navbar .navbar-nav li .sub-menu li a:hover,
.navigation .navbar .navbar-nav li .sub-menu li a.active {
    background: var(--n50); color: var(--amber); padding-left: 22px;
}

/* Right search icon */
.right-icon ul li { display: inline-block; margin-right: 4px; padding: 22px 0; }
.right-icon ul li:last-child { margin-right: 0; }
.right-icon ul li a {
    width: 36px; height: 36px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 15px; color: var(--n600);
    border-radius: var(--radius-sm);
    transition: background var(--t), color var(--t);
}
.right-icon ul li a:hover { background: var(--n100); color: var(--navy); }


/* ============================================================
   MOBILE MENU — Professional redesign
   ============================================================ */

/* Hamburger */
.navbar .navbar-toggler {
    padding: 8px 10px;
    margin: 12px 0;
    background: var(--n50);
    border: 1.5px solid var(--n200);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background var(--t);
}
.navbar .navbar-toggler:hover { background: var(--n100); }
.navbar .navbar-toggler .icon-bar {
    width: 22px; height: 2px;
    background: var(--navy);
    display: block;
    border-radius: 2px;
    transition: all 0.25s ease;
}
.navbar .navbar-toggler .icon-bar + .icon-bar { margin-top: 4px; }
.navbar .navbar-toggler.active .icon-bar:nth-of-type(1) { transform: rotate(45deg) translate(4px, 4px); }
.navbar .navbar-toggler.active .icon-bar:nth-of-type(2) { opacity: 0; transform: scaleX(0); }
.navbar .navbar-toggler.active .icon-bar:nth-of-type(3) { transform: rotate(-45deg) translate(4px, -4px); }

.sub-nav-toggler { display: none; }

@media (max-width: 991px) {

    /* Slide-down panel */
    .navigation .navbar-collapse {
        position: absolute;
        top: 100%; left: 0;
        width: 100%;
        background: var(--white);
        border-top: 3px solid var(--amber-light);
        border-bottom: 1px solid var(--n100);
        box-shadow: 0 8px 32px rgba(11,37,69,0.13);
        z-index: 998;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
        display: block !important; /* override Bootstrap */
    }
    .navigation .navbar-collapse.show {
        max-height: 75vh;
        overflow-y: auto;
    }

    /* Vertical list */
    .navigation .navbar .navbar-nav {
        flex-direction: column;
        align-items: stretch;
        padding: 8px 0 16px;
        width: 100%;
    }
    .navigation .navbar .navbar-nav > li {
        margin: 0;
        border-bottom: 1px solid var(--n100);
    }
    .navigation .navbar .navbar-nav > li:last-child { border-bottom: 0; }

    /* Top-level link rows */
    .navigation .navbar .navbar-nav > li > a {
        font-size: 13px; font-weight: 700;
        color: var(--n800);
        padding: 15px 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-left: 3px solid transparent;
        letter-spacing: 0.05em;
        transition: background var(--t), color var(--t), border-color var(--t);
    }
    .navigation .navbar .navbar-nav > li > a::after { display: none !important; }
    .navigation .navbar .navbar-nav > li > a:hover,
    .navigation .navbar .navbar-nav > li > a.active {
        background: var(--n50);
        color: var(--amber);
        border-left-color: var(--amber-light);
    }

    /* Mobile sub-menu */
    .navigation .navbar .navbar-nav li .sub-menu {
        position: static;
        opacity: 1 !important;
        visibility: visible !important;
        top: auto !important;
        box-shadow: none;
        border: none;
        border-radius: 0;
        min-width: 0;
        width: 100%;
        background: var(--n50);
        border-top: 1px solid var(--n100);
        /* Hidden by default on mobile — toggled via JS or CSS hover */
        display: none;
    }
    /* Show on hover (touch devices use tap) */
    .navigation .navbar .navbar-nav li:hover > .sub-menu,
    .navigation .navbar .navbar-nav li.open > .sub-menu {
        display: block;
    }
    .navigation .navbar .navbar-nav li .sub-menu li { margin: 0; }
    .navigation .navbar .navbar-nav li .sub-menu li a {
        padding: 13px 20px 13px 38px;
        font-size: 13px; font-weight: 500;
        color: var(--n600);
        display: flex; align-items: center; gap: 8px;
        border-bottom: 1px solid var(--n100);
        background: transparent;
        letter-spacing: 0; text-transform: none;
        position: relative;
        transition: background var(--t), color var(--t), padding var(--t);
    }
    .navigation .navbar .navbar-nav li .sub-menu li a::before {
        content: '›';
        color: var(--amber-light);
        font-size: 18px; line-height: 1;
        position: absolute; left: 20px;
    }
    .navigation .navbar .navbar-nav li .sub-menu li a::after { display: none !important; }
    .navigation .navbar .navbar-nav li .sub-menu li a:hover {
        background: var(--n100);
        color: var(--amber);
        padding-left: 42px;
    }
    .navigation .navbar .navbar-nav li .sub-menu li:last-child a { border-bottom: 0; }

    /* Hide search on mobile */
    .right-icon { display: none; }
}


/* Search overlay */
.search-box {
    position: fixed; inset: 0;
    background: rgba(11,37,69,0.7);
    z-index: 9999; display: none;
}
.closebtn {
    position: absolute; top: 24px; right: 40px;
    cursor: pointer; width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; background: rgba(255,255,255,0.1);
}
.closebtn span { width: 16px; height: 1.5px; background: var(--white); display: block; position: absolute; }
.closebtn span:nth-of-type(1) { transform: rotate(45deg); }
.closebtn span:nth-of-type(2) { transform: rotate(-45deg); }
.search-box .serach-form input {
    width: 50%; height: 50px;
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    background: var(--white);
    border: 2px solid var(--n200); border-radius: 50px;
    color: var(--n800); font-size: 15px; padding: 0 50px 0 22px;
}
.search-box .serach-form button {
    position: absolute; top: 50%; left: 73%;
    transform: translate(-50%,-50%);
    padding: 0; border: 0; background: transparent;
    color: var(--navy); cursor: pointer; font-size: 16px;
}


/* ============================================================
   3. HERO / SLIDER
   ============================================================ */
.single-slider {
    min-height: 600px;
    display: flex; align-items: flex-start;
    position: relative;
}
.single-slider::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(105deg, rgba(11,37,69,0.88) 0%, rgba(11,37,69,0.55) 55%, rgba(11,37,69,0.15) 100%);
    pointer-events: none; z-index: 1;
}
.slider-cont { position: relative; z-index: 5; }
.slider-cont h1 {
    font-size: 52px; font-weight: 700; color: var(--white);
    line-height: 1.15; letter-spacing: -0.02em; padding-bottom: 18px;
}
.slider-cont p {
    font-size: 17px; color: rgba(255,255,255,0.85);
    font-weight: 400; padding-bottom: 36px;
    max-width: 500px; line-height: 1.75;
}
.slider-cont ul { display: flex; flex-wrap: wrap; gap: 12px; padding: 0; }
.slider-cont ul li { display: block; margin: 0; }

.slider-active .slick-arrow {
    font-size: 36px;
    position: absolute; top: 50%; left: 0;
    transform: translateY(-50%);
    color: var(--white); cursor: pointer;
    z-index: 5; opacity: 0; visibility: hidden;
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.1); border-radius: 50%;
    transition: all var(--t);
}
.slider-active .next.slick-arrow { left: auto; right: 0; }
.slider-active:hover .slick-arrow { left: 20px; opacity: 1; visibility: visible; }
.slider-active:hover .next.slick-arrow { left: auto; right: 20px; }


/* ============================================================
   4. FEATURES / CATEGORY
   ============================================================ */
.category {
    background: var(--white);
    border-top: 1px solid var(--n100);
    border-bottom: 1px solid var(--n100);
    border-radius: 0; margin-top: 0;
    position: relative; z-index: 5;
}
.category-text h2 { font-size: 22px; color: var(--n800); padding: 0 24px; }
.singel-category {
    padding: 22px 10px; border-radius: var(--radius-md);
    display: flex; flex-direction: column;
    align-items: center; gap: 12px; text-align: center;
    transition: background var(--t), transform var(--t);
}
.singel-category:hover { background: var(--n50); transform: translateY(-3px); }
.singel-category .icon img { width: 36px; height: 36px; object-fit: contain; margin: auto; }
.singel-category .cont span {
    color: var(--white); font-size: 11px; font-weight: 700;
    letter-spacing: 0.04em; padding-top: 0;
}
.category-slied a { display: block; }
.category-slied .slick-arrow { position: absolute; top: 50%; right: -40px; transform: translateY(-50%); }
.category-slied .prev.slick-arrow { right: auto; left: -40px; }
.category-slied .slick-arrow i {
    width: 32px; height: 32px; line-height: 32px;
    border-radius: 50%; background: var(--n200);
    text-align: center; font-size: 16px; color: var(--n800);
    cursor: pointer; transition: background var(--t);
}
.category-slied .slick-arrow i:hover { background: var(--amber-light); }


/* ============================================================
   5. ABOUT
   ============================================================ */
#about-part {
    position: relative; padding-bottom: 80px;
    background: var(--white); isolation: isolate; overflow: hidden;
}
.about-bg {
    position: absolute; bottom: 0; right: 0;
    width: 48%; z-index: 0; pointer-events: none;
}
.about-bg::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0.7) 40%, rgba(255,255,255,0) 100%),
                linear-gradient(to top, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0) 60%);
    z-index: 1;
}
.about-bg img { width: 100%; opacity: 0.55; }
#about-part .container { position: relative; z-index: 2; }
.about-cont p { padding-top: 16px; text-align: justify; hyphens: auto; color: var(--n600); line-height: 1.8; }

.about-event {
    background: var(--white); border: 1px solid var(--n200);
    border-radius: var(--radius-lg); padding: 0;
    overflow: hidden; box-shadow: var(--shadow-sm);
}
.about-event .event-title { background: var(--navy); padding: 18px 28px; }
.about-event .event-title h3 { font-size: 15px; font-weight: 700; color: var(--white); letter-spacing: 0.04em; }
.about-event ul { padding: 0 4px; }
.about-event ul li .singel-event {
    padding: 16px 24px; border-bottom: 1px solid var(--n100);
    transition: background var(--t), padding-left var(--t);
}
.about-event ul li .singel-event:hover { background: var(--n50); padding-left: 28px; }
.about-event ul li:last-child .singel-event { border-bottom: 0; }
.about-event ul li .singel-event span { font-size: 11px; color: var(--n400); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.about-event ul li .singel-event span i { color: var(--green-light); margin-right: 4px; }
.about-event ul li .singel-event a { display: block; }
.about-event ul li .singel-event a h4 {
    padding-top: 5px; padding-bottom: 0;
    color: var(--n800); font-size: 15px; font-weight: 600;
    line-height: 1.4; transition: color var(--t);
}
.about-event ul li .singel-event a:hover h4 { color: var(--amber); }


/* ============================================================
   6. MISSION / VISION
   ============================================================ */
.apply { margin-top: -80px; position: relative; z-index: 5; }
.apply-color-1 { background: var(--green); border-top-left-radius: var(--radius-lg); border-bottom-left-radius: var(--radius-lg); }
.apply-color-2 { background: var(--navy); border-top-right-radius: var(--radius-lg); border-bottom-right-radius: var(--radius-lg); }
.apply .apply-cont { padding: 44px 44px 48px; }
.apply .apply-cont h3 { font-size: 26px; color: var(--white); padding-bottom: 14px; }
.apply .apply-cont p { color: rgba(255,255,255,0.82); line-height: 1.8; }


/* ============================================================
   7. ACHIEVEMENTS
   ============================================================ */
#teachers-part { background: var(--n50); position: relative; z-index: 1; }
.teachers-cont p { padding-top: 24px; }

.col-md-4 > p {
    padding: 26px;
    background: var(--white);
    border: 1px solid var(--n100);
    border-top: 3px solid var(--amber-light);
    border-radius: var(--radius-lg);
    font-size: 14px; line-height: 1.75;
    color: var(--n600);
    box-shadow: var(--shadow-sm);
    height: 100%;
}


/* ============================================================
   8. TESTIMONIAL
   ============================================================ */
#testimonial { position: relative; overflow: hidden; }
#testimonial::after {
    content: ''; position: absolute; inset: 0;
    background: rgba(8,26,50,0.92); z-index: 0;
}
#testimonial .container { position: relative; z-index: 2; }
#testimonial .section-title h5 { color: var(--amber-light); }
#testimonial .section-title h5::before { background: var(--amber-light); }
#testimonial .section-title h2 { color: var(--white); }

.testimonial-slied { position: relative; z-index: 5; }
.singel-testimonial { position: relative; }
.singel-testimonial .testimonial-thum {
    position: absolute; left: 0; top: 50%;
    transform: translateY(-50%); display: inline-block;
}
.singel-testimonial .testimonial-thum img { border-radius: var(--radius-md); border: 2px solid rgba(255,255,255,0.2); }
.singel-testimonial .testimonial-thum .quote { position: absolute; right: -18px; top: -18px; }
.singel-testimonial .testimonial-thum .quote i {
    width: 38px; height: 38px; line-height: 38px;
    text-align: center; background: var(--amber-light);
    border-radius: 50%; color: var(--navy); font-size: 15px;
}
.singel-testimonial .testimonial-cont { padding-left: 140px; }
.singel-testimonial .testimonial-cont p  { color: rgba(255,255,255,0.88); padding-bottom: 28px; }
.singel-testimonial .testimonial-cont h6 { color: var(--white); font-weight: 700; padding-bottom: 3px; }
.singel-testimonial .testimonial-cont span { color: rgba(255,255,255,0.55); font-size: 14px; }

.testimonial-slied .slick-dots li { display: inline-block; margin-top: 18px; }
.testimonial-slied .slick-dots li button {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,0.3);
    font-size: 0; padding: 0; border: 0; margin: 0 3px;
    cursor: pointer; transition: all var(--t);
}
.testimonial-slied .slick-dots li.slick-active button { background: var(--amber-light); width: 20px; border-radius: 4px; }


/* ============================================================
   9. GALLERY
   ============================================================ */
.portfolio-menu { text-align: center; margin-bottom: 28px; }
.portfolio-menu ul li {
    display: inline-block; padding: 7px 18px; margin: 0 3px;
    cursor: pointer; font-size: 12px; font-weight: 600;
    letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--n400); border-radius: 50px;
    border: 1px solid transparent; transition: all var(--t);
}
.portfolio-menu ul li:hover { color: var(--navy); border-color: var(--n200); background: var(--white); }

.portfolio-item { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.portfolio-item .item {
    float: none; margin-bottom: 0;
    border-radius: var(--radius-md);
    overflow: hidden; aspect-ratio: 1/1;
    background: var(--n200);
}
.portfolio-item .item a { display: block; width: 100%; height: 100%; }
img.gall-img {
    max-width: 100%; max-height: none;
    display: block; margin: auto; width: 100%; height: 100%;
    object-fit: cover; transition: transform 0.35s ease;
}
img.gall-img:hover { transform: scale(1.06); }

@media (max-width: 767px) { .portfolio-item { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .portfolio-item { grid-template-columns: repeat(2, 1fr); } }


/* ============================================================
   10. FOOTER
   ============================================================ */
.footer-top { background: var(--navy); border-top: 1px solid rgba(255,255,255,0.05); }
.footer-about { padding-right: 36px; }
.footer-about p { color: rgba(255,255,255,0.6); padding-top: 14px; font-size: 14px; line-height: 1.75; }
.footer-about ul { margin-top: 20px; }
.footer-about ul li { display: inline-block; margin-right: 8px; }
.footer-about ul li:last-child { margin-right: 0; }
.footer-about ul li a {
    width: 32px; height: 32px; line-height: 32px;
    font-size: 13px; color: rgba(255,255,255,0.6);
    border-radius: 50%; text-align: center;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all var(--t);
}
.footer-about ul li a:hover { background: var(--amber-light); color: var(--navy); border-color: var(--amber-light); }

.footer-title h6 {
    font-size: 13px; font-weight: 700; color: var(--white);
    letter-spacing: 0.08em; text-transform: uppercase;
    margin-bottom: 18px; padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-link { overflow: hidden; }
.footer-link ul { width: 50%; float: left; }
.footer-link ul li { line-height: 36px; }
.footer-link ul li a {
    color: rgba(255,255,255,0.6); font-size: 14px;
    display: inline-flex; align-items: center; gap: 8px;
    transition: all var(--t);
}
.footer-link ul li a i { color: var(--amber-light); font-size: 12px; transition: transform var(--t); }
.footer-link ul li a:hover { color: rgba(255,255,255,0.95); padding-left: 4px; }
.footer-link ul li a:hover i { transform: translateX(3px); }

.support ul { float: none; width: 100%; }

.footer-address ul li { position: relative; margin-bottom: 14px; display: flex; align-items: flex-start; gap: 12px; }
.footer-address ul li:last-child { margin-bottom: 0; }
.footer-address ul li .icon i { font-size: 15px; color: var(--amber-light); margin-top: 3px; }
.footer-address ul li .cont p { color: rgba(255,255,255,0.6); font-size: 13px; line-height: 1.65; }

.footer-copyright { background: rgba(0,0,0,0.3); border-top: 1px solid rgba(255,255,255,0.05); padding: 16px 0; }
.footer-copyright .copyright p { color: rgba(255,255,255,0.4); font-size: 13px; }
.footer-copyright .copyright p span { font-weight: 600; color: rgba(255,255,255,0.6); }

.back-to-top {
    position: fixed; right: 22px; bottom: 22px;
    width: 40px; height: 40px; line-height: 40px;
    background: var(--navy); color: var(--white);
    font-size: 18px; border-radius: var(--radius-md);
    z-index: 99; text-align: center; display: none;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all var(--t);
}
.back-to-top:hover { background: var(--amber-light); color: var(--navy); transform: translateY(-3px); }


/* ============================================================
   11. PAGE BANNER
   ============================================================ */
.page-banner-cont { position: relative; z-index: 5; }
.page-banner-cont h2 { font-size: 44px; font-weight: 700; color: var(--white); padding-bottom: 12px; }
.page-banner-cont .breadcrumb { margin: 0; background: none; padding: 0; }
.page-banner-cont .breadcrumb .breadcrumb-item { color: var(--amber-light); font-size: 15px; font-weight: 600; }
.page-banner-cont .breadcrumb .breadcrumb-item a { color: rgba(255,255,255,0.75); }
.page-banner-cont .breadcrumb .breadcrumb-item a:hover { color: var(--white); }
.page-banner-cont .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); content: "/"; }


/* ============================================================
   12. CONTACT
   ============================================================ */
.contact-from { background: var(--white); padding: 44px; border-radius: var(--radius-lg); border: 1px solid var(--n200); }
.contact-from .main-form .singel-form { margin-top: 16px; }
.contact-from .main-form .singel-form input,
.contact-from .main-form .singel-form textarea {
    width: 100%; height: 46px; padding: 0 16px;
    border: 1.5px solid var(--n200); border-radius: var(--radius-md);
    color: var(--n800); font-size: 15px; font-family: 'DM Sans', sans-serif;
    background: var(--n50); transition: border-color var(--t), background var(--t);
}
.contact-from .main-form .singel-form input:focus,
.contact-from .main-form .singel-form textarea:focus { border-color: var(--amber); background: var(--white); outline: none; }
.contact-from .main-form .singel-form textarea { padding-top: 12px; height: 110px; resize: vertical; }

.list-unstyled li { font-size: 13px; margin-top: 4px; color: #B91C1C; }
p.form-message.success { font-size: 14px; color: var(--green); background: var(--green-bg); border: 1px solid #B6D89A; border-radius: var(--radius-sm); padding: 10px 14px; margin-top: 14px; }
p.form-message.error   { font-size: 14px; color: #9B2335; background: #FEF0EE; border: 1px solid #FBC5BC; border-radius: var(--radius-sm); padding: 10px 14px; margin-top: 14px; }

.contact-address { background: var(--white); padding: 20px 44px 44px; border-radius: var(--radius-lg); border: 1px solid var(--n200); }
.contact-address ul li { padding-top: 24px; }
.contact-address ul li .singel-address { display: flex; align-items: flex-start; gap: 16px; }
.contact-address ul li .singel-address .icon i {
    width: 44px; height: 44px; line-height: 44px;
    border-radius: 50%; background: var(--n50);
    border: 1px solid var(--n200); color: var(--navy);
    font-size: 18px; text-align: center; flex-shrink: 0;
}
.map #contact-map { width: 100%; height: 215px; border-radius: var(--radius-md); }
.map.map-big #contact-map { height: 390px; }
.contact-address .contact-heading { padding-top: 28px; }
.contact-address .contact-heading h5 { padding-bottom: 10px; color: var(--n800); }


/* ============================================================
   13. MODAL NOTICE
   ============================================================ */
.notice-modal {
    display: none; position: fixed; inset: 0;
    z-index: 9999; background: rgba(11,37,69,0.7);
    padding: 20px; align-items: center; justify-content: center;
}
.notice-modal-content {
    background: var(--white); margin: auto; padding: 28px;
    max-height: 88vh; overflow-y: auto;
    width: 90%; max-width: 560px;
    border-radius: var(--radius-lg); border: 1px solid var(--n200);
    position: relative;
}
.notice-close {
    position: absolute; top: 14px; right: 16px;
    width: 30px; height: 30px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; cursor: pointer;
    color: var(--n400); border-radius: 50%;
    background: var(--n100); transition: all var(--t);
}
.notice-close:hover { background: var(--amber-light); color: var(--navy); }


/* ============================================================
   14. ABOUT / STAFF PAGES
   ============================================================ */
.about-image img { width: 100%; border-radius: var(--radius-lg); }
.about-singel-items {
    padding: 26px; border-radius: var(--radius-lg);
    border: 1px solid var(--n100); background: var(--n50);
    transition: border-color var(--t), background var(--t);
}
.about-singel-items:hover { border-color: var(--n200); background: var(--white); }
.about-singel-items span { font-size: 48px; font-weight: 700; color: var(--n200); line-height: 1; padding-bottom: 16px; display: block; }
.about-singel-items h4 { color: var(--n800); font-size: 20px; font-weight: 700; padding-bottom: 8px; }


/* ============================================================
   15. RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
    .slider-cont h1   { font-size: 38px; }
    .section-title h2 { font-size: 28px; }
    .apply .apply-color-1 { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
    .apply .apply-color-2 { border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
    .singel-testimonial .testimonial-cont { padding-left: 0; }
    .singel-testimonial .testimonial-thum { position: static; transform: none; margin-bottom: 20px; }
}
@media (max-width: 767px) {
    .slider-cont h1 { font-size: 28px; }
    .contact-from, .contact-address { padding: 24px 18px; }
    .about-event { margin-top: 32px; }
    .apply { margin-top: 0; }
    .apply .apply-cont { padding: 32px 24px; }
    .footer-about { padding-right: 0; }
    .footer-link ul { width: 100%; float: none; }
    .col-md-4 > p { margin-bottom: 16px; height: auto; }
}
@media (max-width: 480px) {
    .slider-cont h1   { font-size: 22px; }
    .main-btn         { font-size: 12px; padding: 0 18px; height: 40px; }
    .section-title h2 { font-size: 22px; }
    .logo img         { width: 60px; height: 60px; }
}