/* ============================================
   ISON Website - Main Stylesheet
   Clean, refined design — no unnecessary animations
   ============================================ */

:root {
    --primary-green: #1B4D3E;
    --primary-green-2: #143A2F;
    --accent-gold: #D49A36;
    --accent-gold-2: #B8832A;
    --accent-navy: #0F172A;
    --text-dark: #1A1A1A;
    --text-muted: #6B7280;
    --bg-light: #F7F8FA;
    --white: #FFFFFF;
    --border-light: #E5E7EB;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, .06), 0 1px 2px rgba(0, 0, 0, .04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, .08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, .12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* Global Website Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    background-color: transparent;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
}

/* ---- Page Loader ---- */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .4s, visibility .4s;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-light);
    border-top-color: var(--accent-gold);
    border-radius: 50%;
    animation: spin .7s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ---- Top Bar ---- */
.top-bar {
    background: var(--primary-green);
    color: var(--white);
    font-size: 13px;
    padding: 8px 0;
}

.news-badge {
    background: var(--accent-gold);
    color: var(--white);
    padding: 3px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 11px;
    margin-right: 12px;
    flex-shrink: 0;
}

.top-bar-text {
    color: rgba(255, 255, 255, .9);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.top-bar-right {
    gap: 16px;
}

.top-bar-link {
    color: rgba(255, 255, 255, .85);
    font-size: 13px;
    font-weight: 500;
    transition: color .2s;
}

.top-bar-link:hover {
    color: var(--accent-gold);
}

.top-bar-social a {
    color: var(--white);
    font-size: 14px;
    transition: color .2s;
}

.top-bar-social a:hover {
    color: var(--accent-gold);
}

/* ---- Main Header ---- */
.main-header {
    background: var(--white);
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 900;
    transition: padding .3s, box-shadow .3s;
}

.main-header.scrolled {
    padding: 8px 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
}

.logo-circle {
    width: 52px;
    height: 52px;
    background: var(--primary-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    transform-origin: center center;
}

.main-header.scrolled .logo-circle {
    transform: scale(0.8);
}

.logo-circle .logo-text {
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 15px;
}

.logo-circle-sm {
    width: 36px;
    height: 36px;
    background: var(--primary-green);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-circle-sm .logo-text {
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 11px;
}

.site-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-green);
    font-family: 'Poppins', sans-serif;
    transition: transform 0.3s ease;
    transform-origin: left center;
    line-height: 1.2;
    display: block;
    white-space: normal;
    word-break: break-word;
}

.main-header.scrolled .site-name {
    transform: scale(0.9);
}

.site-tagline {
    font-size: 11px;
    color: var(--accent-gold);
    margin: 0;
    line-height: 1.2;
    transition: transform 0.3s ease;
    transform-origin: left center;
    display: block;
}

.main-header.scrolled .site-tagline {
    transform: scale(0.9);
}

.header-phone {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.header-phone i {
    color: var(--accent-gold);
}

/* ---- Buttons ---- */
.btn-gold {
    background: var(--accent-gold);
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-weight: 600;
    transition: background .2s, box-shadow .2s;
}

.btn-gold:hover {
    background: var(--accent-gold-2);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(212, 154, 54, .25);
}

.btn-outline-navy {
    border: 2px solid var(--accent-navy);
    color: var(--accent-navy);
    border-radius: 30px;
    font-weight: 600;
    background: transparent;
    transition: background .2s, color .2s;
}

.btn-outline-navy:hover {
    background: var(--accent-navy);
    color: var(--white);
}

.btn-outline-green {
    border: 2px solid var(--primary-green-2);
    color: var(--primary-green-2);
    border-radius: 30px;
    font-weight: 600;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-green:hover {
    background: var(--primary-green-2);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--primary-green);
    border: none;
    border-radius: 30px;
    font-weight: 600;
    transition: background .2s, box-shadow .2s;
}

.btn-white:hover {
    background: rgba(255, 255, 255, .9);
    color: var(--primary-green);
    box-shadow: 0 4px 16px rgba(255, 255, 255, .3);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-weight: 600;
    transition: background .2s;
}

.btn-whatsapp:hover {
    background: #1ebe57;
    color: var(--white);
}

/* ---- Hamburger ---- */
.hamburger-btn {
    display: none;
    width: 42px;
    height: 42px;
    background: transparent;
    border: 1.5px solid var(--primary-green);
    border-radius: var(--radius-sm);
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 10px;
    z-index: 1001;
    -webkit-tap-highlight-color: transparent;
}

.hamburger-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--primary-green);
    border-radius: 2px;
    transition: transform .25s, opacity .25s;
}

.hamburger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---- Mobile Nav ---- */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 10000;
    transition: opacity .3s;
    opacity: 0;
}

.mobile-nav-overlay.active {
    opacity: 1;
}

.mobile-nav-sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100dvh;
    background: var(--white);
    z-index: 10001;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    transition: left .3s;
    -webkit-overflow-scrolling: touch;
}

.mobile-nav-sidebar.active {
    left: 0;
}

.mobile-nav-header {
    background: var(--primary-green);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-nav-close {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, .15);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

.mobile-nav-close:hover {
    background: rgba(255, 255, 255, .3);
}

.mobile-nav-list {
    list-style: none;
    padding: 12px 0;
    margin: 0;
}

.mobile-nav-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 20px;
    font-size: 15px;
    font-weight: 500;
    color: var(--accent-navy);
    border-bottom: 1px solid var(--border-light);
    transition: color .2s, background .2s;
}

.mobile-nav-list li a:hover,
.mobile-nav-list li a.active {
    color: var(--accent-gold);
    background: rgba(212, 154, 54, .04);
}

.mobile-nav-list li a i {
    font-size: 11px;
    opacity: .4;
}

.mobile-nav-sub {
    list-style: none;
    padding: 0;
    margin: 0;
    background: var(--bg-light);
    display: none;
}

.mobile-nav-sub.open {
    display: block;
}

.mobile-nav-sub li a {
    padding: 11px 20px 11px 44px;
    font-size: 14px;
}

.mobile-nav-cta {
    padding: 16px 20px;
}

.mobile-nav-cta .btn {
    width: 100%;
    text-align: center;
}

/* ---- Navigation ---- */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 2px;
}

.nav-list>li>a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 6px;
    font-weight: 600;
    font-size: 13px;
    color: var(--accent-navy);
    transition: color .2s;
    white-space: nowrap;
}

.nav-list>li>a:hover,
.nav-list>li>a.active {
    color: var(--accent-gold);
}

.nav-list>li>a i {
    font-size: 10px;
    opacity: .5;
}

.nav-list li.dropdown {
    position: relative;
}

.nav-list li.dropdown .dropdown-menu {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
    border-radius: var(--radius-sm);
    z-index: 1000;
    padding: 6px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .25s, visibility .25s, transform .25s;
    border: 1px solid var(--border-light);
}

.nav-list li.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu .dropdown-item {
    padding: 9px 18px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    transition: color .15s, background .15s;
}

.dropdown-menu .dropdown-item:hover {
    background: var(--bg-light);
    color: var(--accent-gold);
}

/* ---- Search Modal ---- */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, .8);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 10002;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 120px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, visibility .3s;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-modal {
    background: var(--white);
    border-radius: var(--radius-xl);
    width: 90%;
    max-width: 600px;
    padding: 6px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, .2);
    transform: translateY(-16px);
    transition: transform .3s;
}

.search-overlay.active .search-modal {
    transform: translateY(0);
}

.search-form {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
}

.search-form input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 17px;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: transparent;
    padding: 10px 0;
}

.search-form input::placeholder {
    color: #9ca3af;
}

.search-form button[type="submit"] {
    width: 44px;
    height: 44px;
    background: var(--accent-gold);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .2s;
}

.search-form button[type="submit"]:hover {
    background: var(--accent-gold-2);
}

.search-close-btn {
    width: 44px;
    height: 44px;
    background: var(--bg-light);
    border: none;
    border-radius: 50%;
    color: var(--text-muted);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .2s, color .2s;
}

.search-close-btn:hover {
    background: #fee2e2;
    color: #dc2626;
}

.search-hint {
    padding: 0 18px 14px;
    font-size: 12px;
    color: #9ca3af;
}

.search-hint kbd {
    background: var(--bg-light);
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 11px;
    border: 1px solid var(--border-light);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    background: var(--white);
    padding: 60px 0 100px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* CTA Card Wrapper (Responsive) */
.cta-card-wrapper {
    background: transparent;
}

@media (min-width: 992px) {
    .cta-card-wrapper {
        background-color: rgba(255, 255, 255, 0.25);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        border-radius: 50rem;
        box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
    }
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-right-bg {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 55%;
    border-top-left-radius: 600px;
    border-bottom-left-radius: 600px;
    z-index: 1;
    overflow: hidden;
}

.hero-right-bg::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 0;
    bottom: 0;
    width: 100%;
    background: #f3f4f6;
    border-top-left-radius: 600px;
    border-bottom-left-radius: 600px;
    z-index: -1;
}

.hero-right-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-left {
    max-width: 560px;
    position: relative;
    z-index: 2;
    padding-right: 20px;
}

.eyebrow {
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'Lora', serif;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.eyebrow::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--accent-gold);
}

.hero-heading {
    color: var(--primary-green);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.12;
    margin: 14px 0 20px;
    font-family: 'Lora', serif;
}

.hero-desc {
    color: #4b5563;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    margin-bottom: 36px;
}

.hero-features {
    display: flex;
    gap: 28px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

.feature-icon-wrapper {
    width: 42px;
    height: 42px;
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 18px;
    flex-shrink: 0;
    transition: background .2s, color .2s;
}

.feature-item:hover .feature-icon-wrapper {
    background: var(--accent-gold);
    color: var(--white);
}

.hero-stats-card {
    position: absolute;
    bottom: 24px;
    right: 2%;
    background: var(--primary-green);
    border: 2px solid var(--white);
    border-radius: 14px;
    padding: 20px 28px;
    display: flex;
    gap: 32px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
    z-index: 3;
}

.stat-block {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    border-right: 1px solid rgba(255, 255, 255, .15);
    padding-right: 32px;
}

.stat-block:last-child {
    border-right: none;
    padding-right: 0;
}

.stat-block .stat-icon {
    font-size: 24px;
    color: var(--accent-gold);
}

.stat-block .stat-number {
    font-size: 20px;
    font-weight: 700;
    display: block;
}

.stat-block .stat-label {
    font-size: 12px;
    opacity: .75;
}

/* ============================================
   INFO ROW (3 cards)
   ============================================ */
.info-row-section {
    padding: 56px 0;
}

.card-quick-links {
    background: var(--primary-green);
    border-radius: var(--radius-md);
    padding: 28px;
    color: var(--white);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.card-quick-links::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: rgba(212, 154, 54, .08);
    border-radius: 50%;
}

.card-title-dark {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 18px;
    position: relative;
}

.quick-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.quick-links-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .9);
    font-size: 14px;
    font-weight: 500;
    transition: color .2s, padding-left .2s;
}

.quick-links-list li a:hover {
    color: var(--accent-gold);
    padding-left: 6px;
}

.quick-links-list li a i:first-child {
    font-size: 16px;
    color: var(--accent-gold);
}

.card-announcements {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 28px;
    height: 100%;
}

.card-title-navy {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-green);
}

.view-all-link {
    color: var(--accent-gold);
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap .2s;
}

.view-all-link:hover {
    gap: 8px;
}

.announcement-item {
    display: flex;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}

.announcement-item:last-child {
    border-bottom: none;
}

.date-badge {
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    padding: 8px 10px;
    text-align: center;
    min-width: 52px;
    flex-shrink: 0;
    transition: background .2s;
}

.announcement-item:hover .date-badge {
    background: var(--primary-green);
}

.date-badge .day {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-green);
}

.date-badge .month {
    display: block;
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.announcement-item:hover .date-badge .day,
.announcement-item:hover .date-badge .month {
    color: var(--white);
}

.announcement-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-green);
    display: block;
    margin-bottom: 3px;
    transition: color .2s;
}

.announcement-title:hover {
    color: var(--accent-gold);
}

.announcement-excerpt {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

.card-why-choose {
    background: var(--accent-gold);
    border-radius: var(--radius-md);
    padding: 28px;
    color: var(--white);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.card-why-choose::before {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, .08);
    border-radius: 50%;
}

.card-title-white {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 18px;
    position: relative;
}

.why-choose-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    position: relative;
}

.why-choose-list li {
    padding: 7px 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.why-choose-list li i {
    font-size: 16px;
}

/* ============================================
   DEPARTMENTS
   ============================================ */
.departments-section {
    padding: 56px 0;
    background: var(--bg-light);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 28px;
}

.eyebrow-gold {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.eyebrow-gold::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--accent-gold);
}

.section-title-navy {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-green);
    margin-top: 4px;
}

.dept-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: thin;
}

.dept-carousel::-webkit-scrollbar {
    height: 5px;
}

.dept-carousel::-webkit-scrollbar-track {
    background: var(--border-light);
    border-radius: 3px;
}

.dept-carousel::-webkit-scrollbar-thumb {
    background: #c4c9d1;
    border-radius: 3px;
}

.dept-card {
    position: relative;
    min-width: 300px;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    scroll-snap-align: start;
    transition: box-shadow .25s, transform .25s;
}

.dept-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.dept-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.dept-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}

.dept-card:hover .dept-image img {
    transform: scale(1.04);
}

.dept-icon-badge {
    position: absolute;
    top: 158px;
    left: 18px;
    width: 44px;
    height: 44px;
    background: var(--primary-green);
    border: 2px solid var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
}

.dept-content {
    padding: 28px 18px 18px;
}

.dept-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 6px;
}

.dept-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 10px;
}

.explore-link {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap .2s;
}

.explore-link:hover {
    gap: 9px;
}

.carousel-btn {
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--primary-green);
    border-radius: 50%;
    background: var(--white);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s, color .2s;
}

.carousel-btn:hover {
    background: var(--primary-green);
    color: var(--white);
}

/* ============================================
   STATS STRIP
   ============================================ */
.stats-strip {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-2));
    padding: 36px 0;
    position: relative;
}

.stats-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
}

.stats-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
}

.stats-item .stats-icon {
    font-size: 28px;
    color: rgba(255, 255, 255, .9);
}

.stats-item .stats-number {
    font-size: 26px;
    font-weight: 700;
    display: block;
}

.stats-item .stats-label {
    font-size: 13px;
    opacity: .75;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-2));
    padding: 44px 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    background: rgba(255, 255, 255, .08);
    border-radius: 50%;
}

.cta-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, .18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.cta-title {
    font-size: 26px;
    font-weight: 700;
    margin: 0;
}

.cta-subtitle {
    margin: 4px 0 0;
    opacity: .9;
    font-size: 15px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--primary-green);
    color: var(--white);
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-2), var(--accent-gold));
}

.footer-main {
    padding: 52px 0 36px;
}

.footer-heading {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--white);
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    opacity: .75;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 7px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, .65);
    transition: color .2s;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    font-size: 14px;
    margin-bottom: 9px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, .75);
}

.footer-contact i {
    color: var(--accent-gold);
    margin-top: 3px;
    flex-shrink: 0;
}

.social-links {
    display: flex;
    gap: 8px;
    margin-top: 14px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, .1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 15px;
    transition: background .2s;
}

.social-links a:hover {
    background: var(--accent-gold);
}

.footer-newsletter {
    margin-top: 18px;
}

.newsletter-form {
    display: flex;
    gap: 0;
    background: rgba(255, 255, 255, .1);
    border-radius: 30px;
    padding: 3px;
}

.newsletter-form input {
    flex: 1;
    border: none;
    background: transparent;
    color: var(--white);
    padding: 8px 14px;
    font-size: 13px;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, .45);
}

.newsletter-form button {
    background: var(--accent-gold);
    border: none;
    color: var(--white);
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: background .2s;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: var(--accent-gold-2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 14px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
}

.footer-bottom a {
    color: rgba(255, 255, 255, .5);
    margin-left: 16px;
    transition: color .2s;
}

.footer-bottom a:hover {
    color: var(--accent-gold);
}

/* ---- Scroll to Top ---- */
.scroll-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: var(--primary-green);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .25s, visibility .25s, transform .25s, background .2s;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: var(--accent-gold);
}

/* ============================================
   PAGE HERO
   ============================================ */
.page-hero {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-2));
    padding: 52px 0 36px;
    color: var(--white);
}

.page-hero h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.page-hero .breadcrumb {
    margin: 0;
}

.page-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, .65);
}

.page-hero .breadcrumb-item.active {
    color: var(--accent-gold);
}

.page-hero .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, .4);
}

/* ============================================
   INNER PAGE COMPONENTS
   ============================================ */
.about-section,
.academics-section,
.life-section,
.fees-section,
.downloads-section,
.gallery-section,
.contact-section,
.ict-section,
.search-section,
.apply-section,
.dept-detail-section,
.program-detail-section,
.announcement-detail-section {
    padding: 52px 0;
}

.feature-box {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.feature-box i {
    font-size: 28px;
    color: var(--accent-gold);
    margin-top: 2px;
}

.feature-box h5 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.feature-box p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

.mission-card {
    text-align: center;
    padding: 28px 20px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    height: 100%;
    transition: box-shadow .25s;
}

.mission-card:hover {
    box-shadow: var(--shadow-sm);
}

.mission-card i {
    font-size: 36px;
    color: var(--accent-gold);
    margin-bottom: 14px;
}

.mission-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-green);
}

.mission-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
}

.dept-card-full {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.dept-image-full img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.dept-content-full {
    padding: 20px;
}

.dept-icon-lg {
    width: 50px;
    height: 50px;
    background: var(--accent-gold);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    margin-bottom: 14px;
}

.sidebar-card {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 20px;
}

.sidebar-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 14px;
}

.sidebar-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-links li {
    margin-bottom: 3px;
}

.sidebar-links a {
    display: block;
    padding: 9px 14px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    transition: background .15s, color .15s;
}

.sidebar-links a:hover,
.sidebar-links a.active {
    background: var(--accent-gold);
    color: var(--white);
}

.program-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: border-color .2s, box-shadow .2s;
}

.program-card:hover {
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-sm);
}

.program-card h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-green);
}

.program-card p {
    color: var(--text-muted);
    font-size: 13px;
}

.program-detail-card {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 20px;
}

.info-box {
    display: flex;
    gap: 12px;
    align-items: center;
    background: var(--bg-light);
    padding: 14px;
    border-radius: var(--radius-sm);
}

.info-box i {
    font-size: 22px;
    color: var(--accent-gold);
}

.info-box h6 {
    font-size: 13px;
    font-weight: 600;
    margin: 0;
}

.info-box p {
    font-size: 14px;
    margin: 0;
    font-weight: 600;
}

.fees-table {
    border-radius: var(--radius-md);
    overflow: hidden;
}

.fees-table thead {
    background: var(--primary-green);
    color: var(--white);
}

.fees-table th {
    padding: 12px 14px;
    font-weight: 600;
    font-size: 13px;
}

.download-card {
    display: flex;
    gap: 14px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 18px;
    transition: border-color .2s;
}

.download-card:hover {
    border-color: var(--accent-gold);
}

.download-icon {
    width: 50px;
    height: 50px;
    background: #FEE2E2;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #DC2626;
    font-size: 22px;
    flex-shrink: 0;
}

.download-info h5 {
    font-size: 14px;
    font-weight: 600;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, .65));
    padding: 14px;
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    opacity: 0;
    transition: opacity .25s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-thumb {
    position: relative;
}

.gallery-thumb img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.contact-info-card {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-2));
    border-radius: var(--radius-md);
    padding: 28px;
    color: var(--white);
}

.contact-info-card h4 {
    margin-bottom: 18px;
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 14px;
}

.contact-info-list i {
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.ict-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 28px;
    text-align: center;
    transition: border-color .2s, box-shadow .2s;
}

.ict-card:hover {
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-sm);
}

.ict-icon {
    font-size: 36px;
    color: var(--accent-gold);
    margin-bottom: 14px;
}

.ict-card h5 {
    font-weight: 700;
    color: var(--primary-green);
}

.ict-card p {
    font-size: 14px;
    color: var(--text-muted);
}

.search-result-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 18px;
    transition: border-color .2s;
}

.search-result-card:hover {
    border-color: var(--accent-gold);
}

.search-result-card h5 a {
    color: var(--primary-green);
}

.search-result-card h5 a:hover {
    color: var(--accent-gold);
}

.apply-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 44px;
    box-shadow: var(--shadow-md);
}

.apply-icon {
    font-size: 56px;
    color: var(--accent-gold);
    margin-bottom: 18px;
}

.apply-steps {
    display: flex;
    gap: 28px;
    justify-content: center;
    margin: 28px 0;
}

.step {
    text-align: center;
}

.step-num {
    width: 44px;
    height: 44px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.badge.bg-gold {
    background: var(--accent-gold) !important;
    color: var(--white);
}

.life-features {
    list-style: none;
    padding: 0;
}

.life-features li {
    padding: 7px 0;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.text-gold {
    color: var(--accent-gold) !important;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1199px) {
    .hero-heading {
        font-size: 42px;
    }

    .hero-stats-card {
        padding: 18px 22px;
        gap: 24px;
    }
}

@media (max-width: 991px) {
    .main-nav {
        display: none;
    }

    .hamburger-btn {
        display: flex;
    }

    .hero-right-bg {
        width: 50%;
    }

    .hero-heading {
        font-size: 36px;
    }

    .hero-left {
        max-width: 100%;
    }

    .hero-stats-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin: 32px auto 0;
        width: fit-content;
    }

    .stat-block {
        padding-right: 20px;
    }

    .stats-grid {
        justify-content: center;
    }

    .cta-banner .container {
        text-align: center;
    }

    .cta-banner .d-flex {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
}

@media (max-width: 767px) {

    /* ---- Hero mobile ---- */
    .hero-section {
        flex-direction: column;
        padding: 0 0 0;
        background: var(--primary-green);
    }

    .hero-section::before,
    .hero-section::after {
        display: none;
    }

    .hero-right-bg {
        position: relative;
        width: 100%;
        height: 200px;
        border-radius: 0;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }

    .hero-right-bg::before {
        display: none;
    }

    .hero-left {
        padding: 24px 16px 32px;
        color: var(--white);
        max-width: 100%;
    }

    .hero-left .eyebrow {
        color: #f0b856;
    }

    .hero-left .eyebrow::before {
        background: #f0b856;
    }

    .hero-left .hero-heading {
        color: var(--white);
        font-size: 28px;
    }

    .hero-left .hero-desc {
        color: rgba(255, 255, 255, .8);
        font-size: 15px;
        margin-bottom: 24px;
    }

    .hero-left .feature-item {
        color: var(--white);
    }

    .hero-left .feature-icon-wrapper {
        border-color: rgba(255, 255, 255, .3);
        color: var(--white);
    }

    .hero-left .feature-item:hover .feature-icon-wrapper {
        background: rgba(255, 255, 255, .15);
    }

    .hero-buttons {
        gap: 10px;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-features {
        flex-direction: column;
        gap: 10px;
    }

    .hero-stats-card {
        display: none;
    }

    .container {
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }

    /* ---- Sections ---- */
    .info-row-section,
    .departments-section {
        padding: 32px 0 !important;
    }

    .section-title-navy {
        font-size: 22px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .dept-carousel {
        gap: 14px;
        padding: 0 16px 14px;
    }

    .dept-card {
        min-width: 250px;
    }

    .dept-content {
        padding: 22px 14px 14px;
    }

    .cta-banner {
        padding: 28px 0;
    }

    .cta-title {
        font-size: 20px;
    }

    .stats-strip {
        padding: 20px 0;
    }

    .stats-grid {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        gap: 8px;
    }

    .stats-item {
        flex: 1 1 0;
        min-width: 0;
        flex-direction: column;
        text-align: center;
        gap: 4px;
        justify-content: center;
    }

    .stats-item .stats-icon {
        font-size: 16px !important;
    }

    .stats-item .stats-number {
        font-size: 14px !important;
    }

    .stats-item .stats-label {
        font-size: 9px !important;
        line-height: 1.1 !important;
        white-space: normal !important;
        word-break: break-word;
    }

    /* ---- Footer ---- */
    .footer-main {
        padding: 32px 0 24px;
    }

    .footer-main .row {
        gap: 20px;
    }

    .footer-heading {
        font-size: 14px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .footer-contact li {
        font-size: 13px;
    }

    .footer-bottom {
        padding: 10px 0;
    }

    .footer-bottom .d-flex {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .footer-bottom a {
        margin-left: 0;
    }

    /* ---- Other ---- */
    .search-overlay {
        padding-top: 60px;
    }

    .search-modal {
        width: 95%;
    }

    .search-form input {
        font-size: 16px;
    }

    .search-hint {
        display: none;
    }

    .top-bar-right {
        display: none;
    }

    .page-hero {
        padding: 40px 0 24px;
    }

    .page-hero h1 {
        font-size: 24px;
    }

    .mobile-nav-sidebar {
        width: 280px;
    }
}

@media (max-width: 575px) {
    .top-bar {
        padding: 6px 0;
        font-size: 12px;
    }

    .news-badge {
        font-size: 10px;
        padding: 2px 8px;
        margin-right: 8px;
    }

    .main-header {
        padding: 10px 0;
    }

    .main-header.scrolled {
        padding: 7px 0;
    }

    .logo-circle {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .logo-circle .logo-text {
        font-size: 13px;
    }

    .main-header.scrolled .logo-circle {
        width: 34px;
        height: 34px;
    }

    .site-name {
        font-size: 15px;
    }

    .site-tagline {
        font-size: 10px;
    }

    .main-header.scrolled .site-name {
        font-size: 13px;
    }

    .header-phone {
        font-size: 12px;
    }

    .hero-heading {
        font-size: 24px;
    }

    .eyebrow {
        font-size: 11px;
    }

    .feature-icon-wrapper {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .feature-item {
        font-size: 13px;
    }

    .hero-stats-card {
        margin: 0 12px;
    }

    .stat-block .stat-number {
        font-size: 17px;
    }

    .card-quick-links,
    .card-announcements,
    .card-why-choose {
        padding: 22px;
    }

    .card-title-dark,
    .card-title-navy,
    .card-title-white {
        font-size: 15px;
    }

    .dept-card {
        min-width: 230px;
    }

    .dept-image {
        height: 150px;
    }

    .dept-icon-badge {
        width: 38px;
        height: 38px;
        font-size: 16px;
        bottom: -14px;
        left: 14px;
    }

    .dept-name {
        font-size: 14px;
    }

    .mission-card {
        padding: 22px 14px;
    }

    .mission-card i {
        font-size: 30px;
    }

    .mission-card h4 {
        font-size: 15px;
    }

    .apply-card {
        padding: 20px;
        border-radius: 16px;
    }

    .apply-icon {
        font-size: 44px;
    }

    .apply-steps {
        flex-direction: column;
        gap: 16px;
    }

    .download-card {
        padding: 14px;
    }

    .gallery-item img {
        height: 160px;
    }

    .contact-info-card {
        padding: 22px;
    }

    .ict-card {
        padding: 22px;
    }

    .fees-table {
        font-size: 12px;
    }

    .fees-table th,
    .fees-table td {
        padding: 8px 6px;
    }

    .about-section,
    .academics-section,
    .life-section,
    .fees-section,
    .downloads-section,
    .gallery-section,
    .contact-section,
    .ict-section,
    .search-section,
    .apply-section,
    .dept-detail-section,
    .program-detail-section,
    .announcement-detail-section {
        padding: 28px 0;
    }

    .page-hero h1 {
        font-size: 22px;
    }
}

@media (max-width: 400px) {
    .hero-heading {
        font-size: 22px;
    }

    .logo-circle {
        width: 36px;
        height: 36px;
    }

    .logo-circle .logo-text {
        font-size: 12px;
    }

    .site-name {
        font-size: 13px;
    }

    .site-tagline {
        font-size: 9px;
    }

    .btn-gold,
    .btn-outline-navy {
        padding: 10px 18px;
        font-size: 13px;
    }
}

/* ---- Footer ---- */
.site-footer {
    background: var(--primary-green);
    color: var(--white);
    padding: 60px 0 0;
}
.footer-title {
    color: var(--white);
}
.footer-subtitle {
    color: rgba(255, 255, 255, 0.7);
}
.footer-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}
.social-links {
    display: flex;
    gap: 12px;
}
.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}
.social-links a:hover {
    background: var(--accent-gold);
    transform: translateY(-3px);
}
.footer-heading {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: var(--accent-gold);
}
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-contact li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.footer-contact i {
    color: var(--accent-gold);
    margin-top: 3px;
}
.footer-bottom {
    background: var(--primary-green-2);
    padding: 20px 0;
    margin-top: 40px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}
.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
        font-size: 16px;
        bottom: -14px;
        left: 14px;
    }

    .dept-name {
        font-size: 14px;
    }

    .mission-card {
        padding: 22px 14px;
    }

    .mission-card i {
        font-size: 30px;
    }

    .mission-card h4 {
        font-size: 15px;
    }

    .apply-card {
        padding: 20px;
        border-radius: 16px;
    }

    .apply-icon {
        font-size: 44px;
    }

    .apply-steps {
        flex-direction: column;
        gap: 16px;
    }

    .download-card {
        padding: 14px;
    }

    .gallery-item img {
        height: 160px;
    }

    .contact-info-card {
        padding: 22px;
    }

    .ict-card {
        padding: 22px;
    }

    .fees-table {
        font-size: 12px;
    }

    .fees-table th,
    .fees-table td {
        padding: 8px 6px;
    }

    .about-section,
    .academics-section,
    .life-section,
    .fees-section,
    .downloads-section,
    .gallery-section,
    .contact-section,
    .ict-section,
    .search-section,
    .apply-section,
    .dept-detail-section,
    .program-detail-section,
    .announcement-detail-section {
        padding: 28px 0;
    }

    .page-hero h1 {
        font-size: 22px;
    }
}

@media (max-width: 400px) {
    .hero-heading {
        font-size: 22px;
    }

    .logo-circle {
        width: 36px;
        height: 36px;
    }

    .logo-circle .logo-text {
        font-size: 12px;
    }

    .site-name {
        font-size: 13px;
    }

    .site-tagline {
        font-size: 9px;
    }

    .btn-gold,
    .btn-outline-navy {
        padding: 10px 18px;
        font-size: 13px;
    }
}

/* ---- Footer ---- */
.site-footer {
    background: var(--primary-green);
    color: var(--white);
    padding: 60px 0 0;
}
.footer-title {
    color: var(--white);
}
.footer-subtitle {
    color: rgba(255, 255, 255, 0.7);
}
.footer-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}
.social-links {
    display: flex;
    gap: 12px;
}
.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}
.social-links a:hover {
    background: var(--accent-gold);
    transform: translateY(-3px);
}
.footer-heading {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: var(--accent-gold);
}
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-contact li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.footer-contact i {
    color: var(--accent-gold);
    margin-top: 3px;
}
.footer-bottom {
    background: var(--primary-green-2);
    padding: 20px 0;
    margin-top: 40px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}
.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}
.footer-bottom a:hover {
    color: var(--accent-gold);
}
.floating-whatsapp:hover {
    transform: scale(1.1) !important;
}

/* ============================================
   PREMIUM PAGE DESIGN (from page.php)
   ============================================ */

/* Base Animations */
.page-card-animate {
    animation: slideDownFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.sidebar-animate {
    animation: slideRightFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
    opacity: 0;
    transform: translateX(-20px);
}

@keyframes slideDownFade {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes slideRightFade {
    to { opacity: 1; transform: translateX(0); }
}

/* Reading Progress Bar */
.reading-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: transparent;
    z-index: 9999;
}
.reading-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #b8832a, #d49a36);
    width: 0%;
    transition: width 0.1s ease-out;
}

/* Glassmorphism Icon Box */
.glass-icon-box {
    width: 50px; 
    height: 50px; 
    background: linear-gradient(135deg, rgba(212, 154, 54, 0.15), rgba(212, 154, 54, 0.05));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 154, 54, 0.2);
    border-radius: 12px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    flex-shrink: 0;
    box-shadow: 0 4px 8px rgba(212, 154, 54, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.glass-icon-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(212, 154, 54, 0.15);
}

.icon-gradient {
    font-size: 1.3rem;
    background: linear-gradient(135deg, #d49a36, #b8832a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Gradient Typography */
.title-gradient {
    background: linear-gradient(135deg, #143A2F, #0047AB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Sidebar Navigation */
.sidebar-nav-list a {
    color: #8C7B65;
}
.sidebar-nav-list a .indicator {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    color: #d49a36;
    font-size: 1.2rem;
}
.sidebar-nav-list a .nav-text {
    font-size: 14px;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.sidebar-nav-list a:hover .nav-text {
    color: #143A2F;
    transform: translateX(6px);
}
.sidebar-nav-list a:hover .indicator {
    opacity: 0.5;
    transform: translateX(0);
}
.sidebar-nav-list a.active-nav .nav-text {
    color: #143A2F;
    font-weight: 700;
    transform: translateX(6px);
}
.sidebar-nav-list a.active-nav .indicator {
    opacity: 1;
    transform: translateX(0);
}

/* CONTENT STYLING */
.clean-page-content {
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.7;
    font-family: 'Inter', sans-serif;
}

.clean-page-content p {
    margin-bottom: 1.2rem;
}

/* Awwwards Style Drop Cap */
.clean-page-content.has-drop-cap > p:first-of-type::first-letter {
    float: left;
    font-family: 'Lora', serif;
    font-size: 4rem;
    line-height: 0.8;
    padding-top: 6px;
    padding-right: 12px;
    color: #143A2F;
    font-weight: 700;
    background: linear-gradient(135deg, #143A2F, #d49a36);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Headings with gold preceding lines */
.clean-page-content h2,
.clean-page-content h3,
.clean-page-content h4 {
    color: #B8832A;
    font-family: 'Lora', serif;
    font-weight: 700;
    font-size: 1.25rem;
    margin-top: 2.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}
.hybrid-page-content h2 { font-size: 2.2rem; }

.clean-page-content h2::before,
.clean-page-content h3::before,
.clean-page-content h4::before {
    content: "";
    width: 30px;
    height: 2px;
    background-color: #d49a36;
    opacity: 0.7;
}

/* Remove lines for headings inside blockquotes */
.clean-page-content blockquote h2,
.clean-page-content blockquote h3 {
    margin-top: 0;
    color: #143A2F;
}
.clean-page-content blockquote h2::before,
.clean-page-content blockquote h3::before {
    display: none;
}

/* Classic Editorial Callout (blockquote) */
.clean-page-content blockquote {
    background-color: #FAFAFA;
    border: 1px solid #EEEEEE;
    border-left: 4px solid #d49a36;
    border-radius: 4px;
    padding: 30px 40px;
    margin: 2.5rem 0;
    position: relative;
}

/* Classic Quote Icon inside blockquote */
.clean-page-content blockquote::before {
    content: "\F6B0"; /* Bootstrap Icons quote */
    font-family: "bootstrap-icons";
    position: absolute;
    top: -15px;
    left: 30px;
    font-size: 30px;
    color: #d49a36;
    background: #ffffff;
    padding: 0 10px;
    line-height: 1;
}

.clean-page-content blockquote p {
    font-family: 'Lora', serif;
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 0.8rem;
    color: #334155;
}
.clean-page-content blockquote p:last-child,
.clean-page-content blockquote ul:last-child {
    margin-bottom: 0;
}

/* Custom lists */
.clean-page-content ul, 
.clean-page-content ol {
    padding-left: 0;
    list-style: none;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 1;
}

.clean-page-content li {
    margin-bottom: 0.6rem;
    position: relative;
    padding-left: 24px;
    color: #475569;
}

/* Gold chevron bullet */
.clean-page-content ul li::before {
    content: "\F285"; /* Bootstrap Icons chevron-right */
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 14px;
    color: #d49a36;
}

.hybrid-page-content strong {
    color: #1e293b;
    font-weight: 700;
}

/* Staggered Scroll Animation Classes */
.reveal-block {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-block.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
    .page-wrapper {
        padding-top: 30px !important;
        padding-bottom: 40px !important;
    }
    
    .page-card-responsive {
        padding: 25px 20px !important;
        border-radius: 12px !important;
    }
    
    .page-breadcrumbs {
        font-size: 0.65rem !important;
        letter-spacing: 0.5px !important;
        gap: 5px !important;
    }
    
    .page-main-title {
        font-size: 1.6rem !important;
    }
    
    .glass-icon-box {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }
    .icon-gradient {
        font-size: 1.1rem;
    }
    
    .clean-page-content {
        font-size: 1.05rem;
    }
    
    /* Reduce drop cap size on mobile */
    .clean-page-content.has-drop-cap > p:first-of-type::first-letter {
        font-size: 3rem;
        padding-right: 8px;
        padding-top: 4px;
    }
    
    /* Adjust headings */
    .clean-page-content h2 { font-size: 1.6rem; margin-top: 2rem; }
    .clean-page-content h3 { font-size: 1.3rem; margin-top: 1.5rem; }
    
    /* Adjust callout box */
    .clean-page-content blockquote {
        padding: 20px 20px 20px 20px !important;
        margin: 1.5rem 0 !important;
    }
    
    .clean-page-content blockquote::before {
        top: -12px;
        left: 15px;
        font-size: 24px;
    }
    
    .clean-page-content blockquote p {
        font-size: 1.05rem;
    }
}
