﻿/* 
 * SRCS Premium Website CSS
 * Base, Typography, Utilities & Core Components 
 */

:root {
    /* Brand Colors */
    --primary-green: #198754;
    --secondary-gold: #FFC107;
    --base-white: #FFFFFF;
    /* Supporting Colors */
    --light-green: #F7F9F6;
    --dark-green: #10251A;
    --mid-green: #18352A;
    --pale-green: #EAF3ED;
    --dark-gold: #D9B65D;
    --light-gray: #f8f9fa;
    --text-dark: #212529;
    /* Typography */
    --font-heading: 'Playfair Display', 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    /* Spacing & Transitions */
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.3s ease;
}


/* Base Styles */

html {
    scroll-behavior: auto;
    /* GSAP/Smooth scrolling usually handles this, but keep auto if overriding */
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--base-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}


/* Disable custom cursor on touch devices fallback - handled in responsive.css as well */

@media (pointer: coarse) {
    body {
        cursor: auto;
    }
}


/* Typography Utilities */

.font-playfair {
    font-family: var(--font-heading);
}

.font-inter {
    font-family: var(--font-body);
}

.text-green {
    color: var(--primary-green) !important;
}

.text-gold {
    color: var(--secondary-gold) !important;
}

.bg-green {
    background-color: var(--primary-green) !important;
}

.bg-dark-green {
    background-color: var(--dark-green) !important;
}

.bg-light-green {
    background-color: var(--light-green) !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.editorial-heading {
    font-family: var(--font-heading);
    font-weight: 500;
}

.editorial-heading {
    font-size: 55px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.heade {
    color: #315b3e !important;
}

.section-eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary-green);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.7;
    font-weight: 300;
}

.section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
}

.max-w-700 {
    max-width: 700px;
}

.max-w-1200 {
    max-width: 1200px;
    margin: 0 auto;
}


/* Buttons & Links */

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

.btn-solid {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background-color: var(--primary-green);
    color: var(--base-white);
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    border-radius: 50px;
    border: 1px solid var(--primary-green);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-solid:hover {
    background-color: transparent;
    color: var(--primary-green);
}

.btn-solid.btn-gold {
    background-color: var(--secondary-gold);
    border-color: var(--secondary-gold);
    color: var(--dark-green);
}

.btn-solid.btn-gold:hover {
    background-color: transparent;
    color: var(--secondary-gold);
}

.btn-solid.btn-apply {
    background-color: var(--secondary-gold);
    border-color: var(--secondary-gold);
    color: var(--dark-green);
    padding: 0.8rem 2rem;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: var(--primary-green);
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    border-radius: 50px;
    border: 1px solid var(--primary-green);
    transition: var(--transition-smooth);
}

.btn-outline:hover {
    background-color: var(--primary-green);
    color: var(--base-white);
}

.btn-text {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-green);
    position: relative;
    padding-bottom: 4px;
}

.btn-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-green);
    transition: width 0.3s ease;
}

.btn-text:hover::after {
    width: 100%;
}


/* Custom Cursor */

.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    background-color: var(--primary-green);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
    mix-blend-mode: difference;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    color: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.custom-cursor.hovering-link {
    width: 50px;
    height: 50px;
    background-color: transparent;
    border: 1px solid var(--base-white);
    mix-blend-mode: normal;
}

.custom-cursor.hovering-image {
    width: 80px;
    height: 80px;
    background-color: var(--primary-green);
    color: var(--base-white);
    mix-blend-mode: normal;
}


/* Preloader */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, #071f16 0%, #0d4b32 42%, #198754 72%, #0b3022 100%);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader::before {
    content: "";
    position: absolute;
    inset: -10%;
    z-index: 0;
    background: url('../images/banner-4.png') center / cover no-repeat;
    opacity: 0.38;
    filter: saturate(1.05) contrast(1.05) blur(0.5px);
    transform: scale(1.04);
}

.preloader::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(115deg, rgba(2, 27, 18, 0.58), rgba(14, 114, 72, 0.34)), linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 28%, rgba(0, 35, 22, 0.28));
}

.preloader-content {
    position: relative;
    z-index: 1;
    text-align: center;
    filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.3));
}

.logo-wrapper {
    position: relative;
    width: min(390px, 72vw);
    height: min(220px, 30vw);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2.25rem;
}

.preloader-logo-text {
    font-family: var(--font-heading);
    color: var(--base-white);
    font-size: 3rem;
    margin: 0;
    z-index: 2;
    opacity: 0;
    /* Animated via GSAP */
}

.preloader-logo-image {
    position: relative;
    z-index: 2;
    display: block;
    width: min(320px, 62vw);
    height: auto;
    margin: 0 auto;
}

.loading-progress-container {
    width: min(320px, 60vw);
    height: 5px;
    background-color: rgba(255, 255, 255, 0.12);
    margin: 0 auto;
    position: relative;
    border-radius: 99px;
    overflow: visible;
    opacity: 1;
}


/* Track glow beneath the bar */

.loading-progress-container::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 12px rgba(255, 193, 7, 0.08);
}

.loading-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    border-radius: 99px;
    background: linear-gradient(90deg, #b37d00 0%, #ffd454 30%, #ffe896 52%, #ffd454 70%, #b37d00 100%);
    background-size: 200% 100%;
    animation: shimmerBar 1.8s linear infinite;
    box-shadow: 0 0 12px rgba(255, 200, 50, 0.7), 0 0 28px rgba(255, 193, 7, 0.45), 0 0 5px rgba(255, 255, 200, 0.9);
    transition: width 0.1s linear;
}


/* Glowing dot at the leading edge */

.loading-progress-bar::after {
    content: '';
    position: absolute;
    right: -1px;
    top: 50%;
    transform: translateY(-50%);
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #fffbe0;
    box-shadow: 0 0 8px 3px rgba(255, 220, 80, 0.95), 0 0 20px 5px rgba(255, 193, 7, 0.6);
}

@keyframes shimmerBar {
    0% {
        background-position: 100% 0;
    }
    100% {
        background-position: -100% 0;
    }
}


/* Loading status above the bar */

.loading-progress-meta {
    width: min(320px, 60vw);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.6rem;
}

.loading-title {
    color: #ffd454;
    font-family: "Times New Roman", Times, serif;
    font-size: clamp(1.35rem, 2.4vw, 1.8rem);
    font-weight: 500;
    letter-spacing: 4px;
    line-height: 1;
    text-shadow: 0 0 16px rgba(255, 204, 72, 0.42);
}

.loading-dots {
    display: inline-flex;
    gap: 4px;
    margin-left: 7px;
}

.loading-dots i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: currentColor;
    animation: loadingDot 1s infinite ease-in-out;
}

.loading-dots i:nth-child(2) {
    animation-delay: 0.15s;
}

.loading-dots i:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes loadingDot {
    0%,
    60%,
    100% {
        transform: translateY(0);
        opacity: 0.35;
    }
    30% {
        transform: translateY(-5px);
        opacity: 1;
    }
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}


/* Header */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.header-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 3rem;
}

.header-actions {
    position: absolute;
    right: 3rem;
}

.brand-logo .logo-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--base-white);
    transition: color 0.3s ease;
}

.brand-logo-image {
    display: block;
    width: 230px;
    height: auto;
    max-height: 82px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.brand-logo .logo-colored {
    display: none;
}

.main-header.scrolled .brand-logo .logo-light {
    display: block;
}

.main-header.scrolled .brand-logo .logo-colored {
    display: none;
}

.brand-logo-image:hover {
    transform: scale(1.03);
}

.main-header.scrolled .brand-logo .logo-text {
    color: var(--base-white);
}

.desktop-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: none;
}


/* Navigation opens from the hamburger menu on every screen size. */

.desktop-nav {
    display: none;
}

@media (min-width: 992px) {
    .desktop-nav ul {
        display: flex;
        gap: 2.5rem;
    }
}

.desktop-nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--base-white);
    opacity: 0.9;
    text-transform: capitalize;
}

.desktop-nav a:hover {
    opacity: 1;
    color: var(--secondary-gold);
}

.main-header.scrolled .desktop-nav a {
    color: var(--dark-green);
}

.main-header.scrolled .desktop-nav a:hover {
    color: var(--primary-green);
}

.header-actions {
    display: flex;
    align-items: center;
}

/* No. 1 school badge placed immediately before the menu button. */
.menu-award-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    margin-right: 16px;
    overflow: hidden;
    border-radius: 50%;
    /* background: #fff; */
    box-shadow: 0 4px 14px rgba(0, 0, 0, .2);
    transition: transform .25s ease, box-shadow .25s ease;
}

.menu-award-badge img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-award-badge:hover {
    transform: scale(1.06);
    box-shadow: 0 7px 18px rgba(0, 0, 0, .28);
}

.main-header .btn-text {
    color: var(--base-white);
}

.main-header .btn-text::after {
    background-color: var(--base-white);
}

.main-header.scrolled .btn-text {
    color: var(--primary-green);
}

.main-header.scrolled .btn-text::after {
    background-color: var(--primary-green);
}


/* Hamburger Menu */

.hamburger-menu {
    background: transparent;
    border: none;
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
    z-index: 1002;
}

.hamburger-menu span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--base-white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.main-header.scrolled .hamburger-menu span {
    background: var(--base-white);
}

.hamburger-menu span:nth-child(1) {
    top: 0;
}

.hamburger-menu span:nth-child(2) {
    top: 9px;
}

.hamburger-menu span:nth-child(3) {
    top: 18px;
}

.hamburger-menu.active span {
    background: var(--dark-green);
}

.hamburger-menu.active span:nth-child(1) {
    top: 9px;
    transform: rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    top: 9px;
    transform: rotate(-45deg);
}


/* ============================================================
   PREMIUM SIDEBAR MENU
   ============================================================ */


/* Backdrop blur overlay */

.sidebar-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(7, 25, 18, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.sidebar-backdrop.active {
    opacity: 1;
    pointer-events: all;
}


/* Sidebar panel */

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: min(380px, 88vw);
    height: 100vh;
    height: 100dvh;
    background: linear-gradient(160deg, #0d2b1e 0%, #10251a 55%, #091a11 100%);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -8px 0 60px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    overflow-x: hidden;
}


/* Subtle texture lines */

.mobile-sidebar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-gold), var(--primary-green));
}

.mobile-sidebar.open {
    transform: translateX(0);
}


/* Sidebar Header */

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.6rem 2rem;
    flex-shrink: 0;
}

.sidebar-logo {
    height: 62px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.15) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.sidebar-close {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.sidebar-close:hover {
    background: var(--secondary-gold);
    border-color: var(--secondary-gold);
    color: var(--dark-green);
    transform: rotate(90deg);
}


/* Divider */

.sidebar-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin: 0 2rem;
    flex-shrink: 0;
}


/* Nav */

.sidebar-nav {
    padding: 1rem 0;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.sidebar-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav-item {
    opacity: 0;
    transform: translateX(30px);
}

.sidebar-nav-item a {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 0.9rem 2rem;
    color: rgba(255, 255, 255, 0.75);
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    border-left: 2px solid transparent;
}

.sidebar-nav-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 2rem;
    right: 2rem;
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
}

.nav-num {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--secondary-gold);
    opacity: 0.6;
    font-family: var(--font-body);
    min-width: 20px;
    transition: opacity 0.3s ease;
}

.sidebar-nav-item a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
    border-left-color: var(--secondary-gold);
    padding-left: 2.4rem;
}

.sidebar-nav-item a:hover .nav-num {
    opacity: 1;
}


/* Sidebar Footer */

.sidebar-footer {
    padding: 0 2rem 2rem;
    flex-shrink: 0;
}

.sidebar-cta .btn-solid {
    display: block;
    text-align: center;
    background: var(--secondary-gold);
    color: var(--dark-green);
    border-color: var(--secondary-gold);
    font-weight: 700;
    letter-spacing: 1.5px;
}

.sidebar-cta .btn-solid:hover {
    background: transparent;
    color: var(--secondary-gold);
}

.sidebar-contact {
    margin-bottom: 1.25rem;
}

.sidebar-contact p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
}

.text-gold-dim {
    color: rgba(255, 193, 7, 0.6);
}

.sidebar-social {
    display: flex;
    gap: 0.75rem;
}

.sidebar-social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sidebar-social-icon:hover {
    background: var(--secondary-gold);
    border-color: var(--secondary-gold);
    color: var(--dark-green);
    transform: translateY(-3px);
}


/* Keep old classes harmless (referenced nowhere visible now) */

.mobile-menu-overlay {
    display: none;
}

.mobile-nav-links li {
    list-style: none;
}


/* ============================================================
   HERO SECTION — Premium Slider
   ============================================================ */

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 760px;
    overflow: hidden;
}


/* Grain / noise texture overlay for premium feel */

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    opacity: 0.01;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 128px;
}


/* Wave SVG cut at the bottom of the hero */

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    z-index: 4;
    line-height: 0;
    pointer-events: none;
}


/* Covers the 1px anti-aliasing seam between the SVG wave and the white section below. */

.hero-wave::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 4px;
    background: #ffffff;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: clamp(60px, 8vw, 110px);
}

.hero-swiper {
    width: 100%;
    height: 100%;
}


/* Let hero copy sit closer to the viewport edge than Bootstrap's centered container. */

.hero-swiper .swiper-slide>.container {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    max-width: none;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: clamp(9rem, 16vh, 11rem);
    padding-left: clamp(2rem, 6vw, 7rem);
    padding-right: clamp(2rem, 6vw, 7rem);
}


/* Ken Burns bg: starts at 1.08, animates to 1 via GSAP */

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.08);
    will-change: transform;
}


/* Keep the photograph clear, with soft shading behind the heading. */

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 20%, rgba(5, 15, 10, 0.12) 35%, rgba(5, 15, 10, 0.38) 50%, rgba(5, 15, 10, 0.12) 65%, transparent 80%), linear-gradient(to top, rgba(5, 15, 10, 0.48) 0%, rgba(5, 15, 10, 0.12) 28%, transparent 55%);
}

.slide-content-box {
    color: var(--base-white);
    /* align-self: center; */
    text-align: center;
    padding-top: 0;
    padding-bottom: 0;
}


/* ── Eyebrow ── */

.slide-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--secondary-gold);
    margin-bottom: 1.5rem;
    clip-path: inset(0 100% 0 0);
    text-transform: uppercase;
}

.slide-eyebrow::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 2px;
    background: var(--secondary-gold);
    flex-shrink: 0;
}


/* ── Heading ── */

.slide-heading {
    font-size: clamp(2.5rem, 3.5vw, 3.75rem);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 0;
    padding-bottom: 0.15em;
    transform-origin: center center;
    will-change: transform, opacity;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7), 0 4px 24px rgba(0, 0, 0, 0.4);
}

.hero-swiper .slide-green-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(3, 61, 42, 0.52) 0%, rgba(3, 61, 42, 0.34) 24%, rgba(3, 61, 42, 0.12) 42%, transparent 62%);
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: clamp(220px, 32vh, 340px);
    z-index: 3;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(5, 18, 13, 0.68) 0%, rgba(5, 18, 13, 0.38) 42%, transparent 100%);
}


/* ── Description ── */

.slide-desc {
    font-size: 1.25rem;
    max-width: 540px;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(18px);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}


/* ── CTA buttons ── */

.slide-actions {
    display: flex;
    gap: 2rem;
    align-items: center;
    opacity: 0;
    transform: translateY(18px);
}


/* Play button */

.btn-play-video {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
}

.btn-play-video i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition-fast);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    font-size: 0.9rem;
    padding-left: 3px;
    /* optical center for play icon */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-play-video:hover {
    color: #fff;
}

.btn-play-video:hover i {
    background-color: var(--secondary-gold);
    border-color: var(--secondary-gold);
    color: var(--dark-green);
    transform: scale(1.12);
}


/* ── Slide Progress Bar (auto-play timer) ── */

.hero-progress-bar {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-gold), #fff9e0);
    z-index: 10;
    box-shadow: 0 0 8px rgba(255, 193, 7, 0.6);
    transition: width 0s linear;
    /* controlled by JS */
}


/* ── Slide counter label (bottom right) ── */

.hero-slide-counter {
    position: absolute;
    bottom: 2.5rem;
    right: 4rem;
    z-index: 10;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.78rem;
    letter-spacing: 2px;
    font-weight: 500;
    font-family: var(--font-body);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-slide-counter .current-slide {
    font-size: 1.6rem;
    font-family: var(--font-heading);
    color: var(--base-white);
    font-weight: 400;
    line-height: 1;
}

.hero-slide-counter .total-slides {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.45);
}


/* ── Vertical Nav — Premium Style ── */

.hero-vertical-nav {
    position: absolute;
    right: 3.5rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    flex-direction: column;
    gap: 0;
    align-items: flex-end;
}

.nav-item {
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.35s ease;
    padding: 0.85rem 1.2rem 0.85rem 0;
    position: relative;
    text-align: right;
    width: 100%;
}

.nav-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 18px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    transition: all 0.35s ease;
}

.nav-item.active {
    color: var(--secondary-gold);
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-item.active::after {
    background: var(--secondary-gold);
    height: 32px;
    box-shadow: 0 0 8px rgba(255, 193, 7, 0.5);
}

.nav-item:hover:not(.active) {
    color: rgba(255, 255, 255, 0.8);
}

.nav-item:hover:not(.active)::after {
    background: rgba(255, 255, 255, 0.5);
    height: 24px;
}


/* hide old indicator line — now handled per nav-item */

.nav-indicator-line {
    display: none;
}


/* ── Scroll indicator ── */

.hero-scroll-explore {
    position: absolute;
    bottom: 2.5rem;
    left: 3.5rem;
    z-index: 10;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.68rem;
    letter-spacing: 3px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    animation: bounce 2.5s infinite ease-in-out;
    text-transform: uppercase;
}

@keyframes bounce {
    0%,
    100% {
        transform: rotate(180deg) translateY(0);
    }
    50% {
        transform: rotate(180deg) translateY(10px);
    }
}


/* Glass Panels */

.glass-panel {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 12px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.glass-panel:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}


/* Background graphics */

.edu-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}


/* Masonry Grid Simulation */

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 1.5rem;
}

.grid-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 9px 24px rgba(0, 0, 0, 0.34);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.grid-item:hover,
.grid-item:focus-visible {
    transform: translateY(-7px);
    box-shadow: 0 20px 38px rgba(0, 0, 0, 0.32);
    outline: none;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.grid-item:hover img {
    transform: scale(1.05);
}

.grid-item .img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--base-white);
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.grid-item:hover .img-caption {
    opacity: 1;
    transform: translateY(0);
}


/* specific sizes */

.w-large {
    grid-column: span 2;
}

.w-wide {
    grid-column: span 3;
}

.w-normal {
    grid-column: span 1;
}

.h-large {
    grid-row: span 2;
}

.h-normal {
    grid-row: span 1;
}

.student-community {
    height: 300px;
}

.science-laboratories {
    height: 300px;
}

.gallery-view-btn {
    white-space: nowrap;
}


/* Keep the gallery CTA below the visual grid. The two 300px cards extend
   beyond the grid's 250px row, so this clears their visual height. */

.gallery-action {
    margin-top: 5rem;
}

@media (max-width: 767px) {
    .gallery-action {
        margin-top: 2rem;
    }
}


/* News Cards */

.news-card {
    transition: transform 0.3s ease;
}

.news-card img {
    transition: transform 0.5s ease;
}

.news-card:hover img {
    transform: scale(1.05);
}

.news-explore-btn,
.news-read-btn {
    gap: 9px;
    border-radius: 6px;
    font-weight: 600;
}

.news-explore-btn {
    padding: 0.55rem 0.65rem 0.55rem 1.3rem;
    border: 0;
    border-radius: 50px;
    background: linear-gradient(135deg, #0a6d47, #15945d);
    box-shadow: 0 10px 22px rgba(10, 109, 71, 0.22);
}

.news-explore-btn span {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    font-size: 1.1rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.news-explore-btn:hover {
    color: #fff;
    background: linear-gradient(135deg, #075839, #0b7c4c);
    box-shadow: 0 14px 28px rgba(10, 109, 71, 0.3);
    transform: translateY(-3px);
}

.news-explore-btn:hover span {
    background: rgba(255, 255, 255, 0.32);
    transform: translateX(3px);
}

.news-read-btn {
    padding: 0.65rem 1rem;
    font-size: 0.72rem;
}

.news-read-btn span {
    font-size: 1rem;
    line-height: 0;
}

@media (max-width: 576px) {
    .news-section-header {
        flex-direction: column;
        align-items: center !important;
        gap: 18px;
        margin-bottom: 30px !important;
    }
    .news-section-header .editorial-heading {
        width: 100%;
        margin: 0 !important;
        font-size: clamp(1.45rem, 6.7vw, 1.8rem);
        line-height: 1.1;
        white-space: nowrap;
        text-align: center;
    }
    .news-section-header .news-explore-btn {
        align-self: center;
    }
}


/* Swiper Pagination overrides */

.swiper-pagination-bullet {
    background: var(--base-white);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--secondary-gold);
    opacity: 1;
}


/* =====================================================
   SRCS ABOUT US SECTION
===================================================== */

.srcs-about-section {
    position: relative;
    width: 100%;
    padding: 120px 0;
    background: #ffffff;
    overflow: hidden;
}


/* =====================================================
   CONTAINER
===================================================== */

.srcs-about-section .container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 0 0 clamp(2rem, 8vw, 7rem);
}


/* About section visual treatment: dark editorial panel with a curved image edge. */

.srcs-about-section .srcs-bg-shape {
    opacity: 0.08;
}

.srcs-about-section .srcs-about-content h2 {
    color: #0b3d2e;
}

.srcs-about-section .srcs-about-lead {
    color: #27312d;
}

.srcs-about-section .srcs-about-text {
    color: #000;
}

.srcs-about-section .srcs-about-values {
    border-color: rgba(11, 61, 46, 0.14);
}

.srcs-about-section .srcs-value-item {
    color: #0b3d2e;
}

.srcs-about-section .srcs-value-item span {
    color: #666f6b;
}

.srcs-about-section .srcs-image-frame {
    width: 100%;
    height: 680px;
    margin-right: 0;
    border-radius: 52% 0 0 52%;
    box-shadow: -28px 30px 70px rgba(0, 0, 0, 0.3);
}

.srcs-about-section .srcs-image-border {
    width: 94%;
    height: 96%;
    left: -3%;
    top: 2%;
    border-radius: 52% 0 0 52%;
}

.srcs-about-section .srcs-visual-element,
.srcs-about-section .srcs-about-badge {
    display: flex;
}

.srcs-about-section .srcs-visual-element {
    background: #0b3d2e;
    border: 1px solid rgba(244, 196, 0, 0.75);
    color: #ffffff;
    box-shadow: 0 18px 35px rgba(6, 41, 31, 0.24);
}

.srcs-about-section .srcs-visual-element small,
.srcs-about-section .srcs-visual-element .element-icon {
    color: #f4c400;
}

.srcs-about-section .srcs-element-year strong {
    color: #ffffff;
}

.srcs-about-section .srcs-about-badge {
    background: #0b3d2e;
    border-left-color: #f4c400;
    box-shadow: 0 18px 35px rgba(6, 41, 31, 0.3);
}

.srcs-about-section .srcs-about-btn {
    gap: 14px;
    margin-top: 32px;
    padding: 8px 8px 8px 24px;
    border-radius: 999px;
    background: #0b3d2e;
    border-color: #0b3d2e;
    color: #ffffff;
    box-shadow: 0 12px 25px rgba(11, 61, 46, 0.18);
}

.srcs-about-section .srcs-about-btn:hover {
    background: #06291f;
    border-color: #06291f;
    color: #ffffff;
}

.srcs-about-section .srcs-btn-arrow {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f4c400;
    color: #0b3d2e;
}


/* Restore the original About section layout; keep only the requested accents. */

.srcs-about-section {
    background: #ffffff;
    padding: 120px 0;
}

.srcs-about-section .container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 30px;
}

.srcs-about-section .srcs-about-content h2 {
    color: #0b3d2e;
}

.srcs-about-section .srcs-about-lead {
    color: #27312d;
}

.srcs-about-section .srcs-about-text {
    color: #000;
}

.srcs-about-section .srcs-about-values {
    border-color: rgba(11, 61, 46, 0.14);
}

.srcs-about-section .srcs-image-frame {
    width: 85%;
    height: 620px;
    margin-right: auto;
    border-radius: 0;
}


/* Use sectionbg-1 as the full-width About background instead of a separate right image. */

.srcs-about-section {
    min-height: 760px;
    background: #ffffff url('../images/sectionbg-1.png') center / cover no-repeat;
}

.srcs-about-section .srcs-about-grid {
    display: block;
}

.srcs-about-section .srcs-about-content {
    max-width: 720px;
    padding: 35px 0 45px;
}

.srcs-about-section .srcs-about-visual {
    display: none;
}


/* Undo the last two About-section edits. */

.srcs-about-section .container {
    max-width: none;
    margin: 0;
    padding: 0 0 0 clamp(2rem, 8vw, 7rem);
}

.srcs-about-section .srcs-image-frame {
    width: 100%;
    height: 680px;
    border-radius: 52% 0 0 52%;
}

.srcs-about-section .srcs-image-border {
    width: 94%;
    height: 96%;
    top: 2%;
    left: -3%;
    border-radius: 52% 0 0 52%;
}

.srcs-about-section .srcs-visual-element,
.srcs-about-section .srcs-about-badge {
    display: none;
}

.srcs-about-section .srcs-about-btn {
    gap: 20px;
    margin-top: 35px;
    padding: 6px 7px 6px 24px;
    border-radius: 2px;
    background: #f4c400;
    border-color: #f4c400;
    color: #0b3d2e;
    box-shadow: none;
}

.srcs-about-section .srcs-about-btn:hover {
    background: #06291f;
    border-color: #06291f;
    color: #ffffff;
}

.srcs-about-section .srcs-btn-arrow {
    width: 42px;
    height: 42px;
    border-radius: 0;
    background: #0b3d2e;
    color: #f4c400;
}


/* Final restore: original two-column About layout. */

.srcs-about-section {
    background: #ffffff;
    padding: 120px 0;
}

.srcs-about-section .container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 30px;
}

.srcs-about-section .srcs-about-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    align-items: center;
    gap: 70px;
}

.srcs-about-section .srcs-about-visual {
    min-height: 680px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.srcs-about-section .srcs-image-frame {
    width: 85%;
    height: 620px;
    margin: 0;
    border-radius: 0;
}

.srcs-about-section .srcs-image-border {
    width: 85%;
    height: 92%;
    top: 4%;
    left: -7%;
    border-radius: 0;
}

.srcs-about-section .srcs-image-border {
    width: 85%;
    height: 92%;
    top: 4%;
    left: -7%;
    border-radius: 0;
}


/* =====================================================
   MAIN GRID
===================================================== */

.srcs-about-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    align-items: center;
    gap: 70px;
}


/* =====================================================
   LEFT CONTENT
===================================================== */

.srcs-about-content {
    position: relative;
    z-index: 5;
    max-width: 610px;
}


/* =====================================================
   EYEBROW
===================================================== */

.srcs-about-eyebrow {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 25px;
    color: #F4C400;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.srcs-line {
    width: 42px;
    height: 2px;
    display: block;
    background: #F4C400;
}


/* =====================================================
   HEADING
===================================================== */

.srcs-about-content h2 {
    margin: 0 0 28px;
    color: #0B3D2E;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 55px;
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: -2.5px;
}

.srcs-about-content h2 span {
    display: block;
    color: #F4C400;
}


/* =====================================================
   LEAD TEXT
===================================================== */

.srcs-about-lead {
    max-width: 590px;
    margin: 0 0 20px;
    color: #27312D;
    font-size: 19px;
    font-weight: 500;
    line-height: 1.75;
}


/* =====================================================
   NORMAL TEXT
===================================================== */

.srcs-about-text {
    max-width: 590px;
    margin: 0;
    color: #666F6B;
    font-size: 15.5px;
    line-height: 1.9;
}


/* =====================================================
   VALUES
===================================================== */

.srcs-about-values {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 42px;
    border-top: 1px solid rgba(11, 61, 46, 0.14);
    border-bottom: 1px solid rgba(11, 61, 46, 0.14);
}

.srcs-value-item {
    position: relative;
    min-height: 110px;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
}

.srcs-value-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 20px;
    right: 0;
    width: 1px;
    height: 70px;
    background: rgba(11, 61, 46, 0.14);
}


/* =====================================================
   VALUE ICON
===================================================== */

.srcs-value-icon {
    width: 31px;
    height: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F4C400;
}

.srcs-value-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.srcs-value-item h4 {
    margin: 0;
    color: #0B3D2E;
    font-family: "Times New Roman", Times, serif;
    font-size: 18px;
    letter-spacing: 1.0px;
    font-weight: 500;
    line-height: 1.2;
}

.srcs-value-item span {
    color: #737A76;
    font-family: "Times New Roman", Times, serif;
    font-size: 15px;
    line-height: 1.3;
}


/* =====================================================
   BUTTON
===================================================== */

.srcs-about-btn {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    margin-top: 35px;
    padding: 6px 7px 6px 24px;
    background: #F4C400;
    color: #0B3D2E;
    border: 1px solid #F4C400;
    border-radius: 2px;
    box-shadow: 0 10px 24px rgba(244, 196, 0, 0.2);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
    transition: background .35s ease, transform .35s ease;
}

.srcs-about-btn:hover {
    background: #0B3D2E;
    border-color: #0B3D2E;
    color: #ffffff;
    transform: translateY(-3px);
}

.srcs-btn-arrow {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0B3D2E;
    color: #F4C400;
    font-size: 22px;
    transition: transform .35s ease;
}

.srcs-visual-line {
    display: none;
}

.srcs-about-btn:hover .srcs-btn-arrow {
    transform: translateX(3px);
}


/* =====================================================
   RIGHT VISUAL
===================================================== */

.srcs-about-visual {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* =====================================================
   MAIN IMAGE FRAME
===================================================== */

.srcs-image-frame {
    position: relative;
    width: 85%;
    height: 620px;
    z-index: 3;
    overflow: hidden;
    background: #0B3D2E;
    box-shadow: 0 30px 70px rgba(11, 61, 46, .16);
}


/* =====================================================
   IMAGE
===================================================== */

.srcs-image-frame img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(.2, .7, .2, 1);
}

.srcs-image-frame:hover img {
    transform: scale(1.04);
}


/* =====================================================
   IMAGE OVERLAY
===================================================== */

.srcs-image-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( 180deg, rgba(6, 41, 31, 0) 55%, rgba(6, 41, 31, .25) 100%);
    pointer-events: none;
}


/* =====================================================
   GOLD FRAME BEHIND IMAGE
===================================================== */

.srcs-image-border {
    position: absolute;
    width: 85%;
    height: 92%;
    top: 4%;
    left: -7%;
    border: 1px solid #F4C400;
    z-index: -1;
}


/* =====================================================
   SCHOOL RELATED FLOATING ELEMENTS
===================================================== */

.srcs-visual-element {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid rgba(11, 61, 46, .15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    color: #0B3D2E;
}


/* =====================================================
   BOOK ELEMENT
===================================================== */

.srcs-element-book {
    left: 0;
    top: 90px;
    width: 110px;
    height: 110px;
    flex-direction: column;
    gap: 7px;
}

.srcs-element-book .element-icon {
    font-size: 32px;
    color: #F4C400;
}

.srcs-element-book small {
    font-size: 9px;
    letter-spacing: 2px;
    font-weight: 700;
}


/* =====================================================
   ACHIEVEMENT ELEMENT
===================================================== */

.srcs-element-cap {
    right: 0;
    top: 35px;
    width: 90px;
    height: 90px;
    flex-direction: column;
    gap: 5px;
}

.srcs-element-cap .element-icon {
    color: #F4C400;
    font-size: 25px;
}

.srcs-element-cap small {
    font-size: 8px;
    letter-spacing: 1.5px;
    font-weight: 700;
}


/* =====================================================
   1926 ELEMENT
===================================================== */

.srcs-element-year {
    right: -15px;
    bottom: 145px;
    width: 145px;
    height: 105px;
    flex-direction: column;
}

.srcs-element-year strong {
    color: #0B3D2E;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    font-weight: 500;
    line-height: 1;
}

.srcs-element-year span {
    margin-top: 8px;
    color: #F4C400;
    font-size: 9px;
    letter-spacing: 2px;
    font-weight: 700;
}


/* =====================================================
   FRONT BADGE
===================================================== */

.srcs-about-badge {
    position: absolute;
    left: 35px;
    bottom: 35px;
    z-index: 7;
    width: 215px;
    min-height: 135px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #0B3D2E;
    border-left: 5px solid #F4C400;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .18);
}

.srcs-badge-number {
    color: #F4C400;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 42px;
    line-height: 1;
    margin-bottom: 10px;
}

.srcs-badge-text {
    color: #ffffff;
    font-size: 12px;
    line-height: 1.55;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/* =====================================================
   DECORATIVE GOLD LINE
===================================================== */

.srcs-visual-line {
    position: absolute;
    right: 5px;
    bottom: 40px;
    width: 130px;
    height: 2px;
    background: #F4C400;
    z-index: 8;
}


/* =====================================================
   BACKGROUND GEOMETRIC SHAPES
   NO LEAVES
===================================================== */

.srcs-bg-shape {
    position: absolute;
    pointer-events: none;
}

.srcs-bg-shape-1 {
    width: 260px;
    height: 260px;
    right: -120px;
    top: -90px;
    border: 1px solid rgba(11, 61, 46, .06);
    border-radius: 50%;
}

.srcs-bg-shape-2 {
    width: 180px;
    height: 180px;
    left: -90px;
    bottom: -80px;
    border: 1px solid rgba(244, 196, 0, .14);
    transform: rotate(45deg);
}


/* =====================================================
   LARGE TABLET
===================================================== */

@media (max-width: 1199px) {
    .srcs-about-section {
        padding: 50px 0;
    }
    .srcs-about-grid {
        gap: 45px;
    }
    .srcs-about-content h2 {
        font-size: 54px;
    }
    .srcs-about-visual {
        min-height: 600px;
    }
    .srcs-image-frame {
        height: 570px;
        width: 88%;
    }
    .srcs-about-values {
        grid-template-columns: repeat(2, 1fr);
    }
    .srcs-value-item:nth-child(2)::after {
        display: none;
    }
    .srcs-value-item:nth-child(1),
    .srcs-value-item:nth-child(2) {
        border-bottom: 1px solid rgba(11, 61, 46, .14);
    }
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {
    .srcs-about-section {
        padding: 80px 0;
    }
    .srcs-about-grid {
        grid-template-columns: 1fr;
        gap: 65px;
    }
    .srcs-about-content {
        max-width: 720px;
    }
    .srcs-about-visual {
        min-height: 650px;
    }
    .srcs-image-frame {
        width: 82%;
        height: 610px;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {
    .srcs-about-section {
        padding: 65px 0;
    }
    .srcs-about-section .container {
        padding: 0 20px;
    }
    .srcs-about-content h2 {
        font-size: 45px;
        letter-spacing: -1.5px;
    }
    .srcs-about-lead {
        font-size: 17px;
        line-height: 1.7;
    }
    .srcs-about-text {
        font-size: 14.5px;
    }
    .srcs-about-values {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 32px;
    }
    .srcs-value-item {
        min-height: 105px;
    }
    .srcs-about-visual {
        min-height: 550px;
    }
    .srcs-image-frame {
        width: 88%;
        height: 520px;
    }
    .srcs-element-book {
        left: -5px;
        top: 55px;
        width: 80px;
        height: 80px;
    }
    .srcs-element-book .element-icon {
        font-size: 25px;
    }
    .srcs-element-cap {
        right: -5px;
        top: 15px;
        width: 70px;
        height: 70px;
    }
    .srcs-element-year {
        right: -5px;
        bottom: 105px;
        width: 110px;
        height: 85px;
    }
    .srcs-element-year strong {
        font-size: 27px;
    }
    .srcs-about-badge {
        left: 5px;
        bottom: 15px;
        width: 175px;
        min-height: 110px;
        padding: 18px;
    }
    .srcs-badge-number {
        font-size: 34px;
    }
    .srcs-badge-text {
        font-size: 10px;
    }
}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {
    .srcs-about-section {
        padding: 55px 0;
    }
    .srcs-about-content h2 {
        font-size: 38px;
        line-height: 1.08;
    }
    .srcs-about-eyebrow {
        font-size: 11px;
        letter-spacing: 2px;
    }
    .srcs-about-values {
        grid-template-columns: 1fr 1fr;
    }
    .srcs-value-item {
        padding: 17px 10px;
    }
    .srcs-value-item h4 {
        font-size: 14px;
    }
    .srcs-value-item span {
        font-size: 12px;
    }
    .srcs-value-icon {
        width: 26px;
        height: 26px;
    }
    .srcs-value-icon svg {
        width: 24px;
        height: 24px;
    }
    .srcs-about-visual {
        min-height: 465px;
    }
    .srcs-image-frame {
        width: 90%;
        height: 440px;
    }
    .srcs-element-book {
        width: 65px;
        height: 65px;
    }
    .srcs-element-cap {
        width: 60px;
        height: 60px;
    }
    .srcs-element-year {
        width: 95px;
        height: 75px;
    }
    .srcs-about-badge {
        width: 155px;
        min-height: 95px;
    }
    .srcs-badge-number {
        font-size: 29px;
    }
    .srcs-badge-text {
        font-size: 9px;
    }
}


/* About section final background-only layout */

.srcs-about-section {
    min-height: 760px;
    background: #ffffff url('../images/sectionbg-1.png') center / cover no-repeat;
}

.srcs-about-section .srcs-about-grid {
    display: block;
}

.srcs-about-section .srcs-about-content {
    max-width: 720px;
    padding: 35px 0 45px;
}

.srcs-about-section .srcs-about-visual {
    display: none !important;
}

.srcs-about-section {
    min-height: 0;
    height: auto;
    padding: 50px 0;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.96) 32%, rgba(255, 255, 255, 0.7) 52%, rgba(255, 255, 255, 0.08) 78%), url('../images/sectionbg-1.png');
    background-position: center, right center;
    background-size: cover, cover;
    background-repeat: no-repeat;
}

.srcs-about-section .srcs-about-content {
    position: relative;
    z-index: 2;
    padding-top: 0;
    padding-bottom: 0;
    margin-left: 0;
}

.srcs-about-section .srcs-about-content {
    transform: none;
}

@media (min-width: 1400px) {
    .srcs-about-section .srcs-about-content {
        transform: translateX(-110px);
    }
}

@media (min-width: 768px) and (max-width: 1399px) {
    .srcs-about-section .srcs-about-content {
        transform: none;
    }
}


/* Keep the About copy safely inside standard Mac/laptop viewports. */

@media (min-width: 768px) and (max-width: 1700px) {
    .srcs-about-section .container {
        width: min(1320px, calc(100% - 80px));
        margin-inline: auto;
        padding-inline: 0;
    }
    .srcs-about-section .srcs-about-content {
        transform: none;
    }
}


/* Keep the Moments section balanced on laptop-width screens. */

@media (min-width: 768px) and (max-width: 1199px) {
    .moments-section {
        max-width: 1180px;
        padding: 52px 28px;
    }
    .moments-heading {
        margin-bottom: 28px;
    }
    .moments-heading h2 {
        font-size: clamp(38px, 4.2vw, 48px);
    }
    .moments-heading h2 span {
        font-size: 1em;
    }
    .moments-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }
    .moment-card {
        min-height: 320px;
    }
    .card-image {
        min-height: 320px;
    }
    .card-content {
        padding: 18px 15px 0;
    }
    .card-content h3 {
        font-size: 19px;
        line-height: 1.25;
    }
    .card-content p {
        font-size: 13px;
        line-height: 1.5;
    }
    .event-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        margin-bottom: 12px;
        font-size: 18px;
    }
}


/* Compact desktop / laptop layout. */

@media (min-width: 768px) and (max-width: 1199px) {
    h2 {
        font-size: 43px !important;
    }
    .srcs-about-section {
        padding: 38px 0;
    }
    .srcs-about-section .container {
        padding: 0 40px;
    }
    .srcs-about-section .srcs-about-content {
        max-width: 580px;
    }
    .srcs-about-section .srcs-about-content h2 {
        font-size: clamp(38px, 4.6vw, 50px);
        margin-bottom: 18px;
    }
    .srcs-about-section .srcs-about-values {
        margin-top: 26px;
    }
    .srcs-stats-section {
        padding: 62px 0 68px;
    }
    .srcs-stats-inner {
        width: min(1120px, calc(100% - 64px));
        grid-template-columns: minmax(210px, .78fr) minmax(0, 1.22fr);
        gap: 32px;
    }
    .srcs-stats-left {
        padding-right: 24px;
    }
    .srcs-stats-heading {
        font-size: clamp(38px, 4.7vw, 54px);
    }
}


/* Legacy numbers — refreshed layout */

.srcs-stats-section {
    position: relative;
    overflow: hidden;
    padding: 88px 0 96px;
    color: #fff;
    background: radial-gradient(circle at 85% 18%, rgba(242, 185, 0, .12), transparent 24%), linear-gradient(135deg, #062d22 0%, #0a3e2d 54%, #06271e 100%);
}

.srcs-stats-section::before {
    content: "";
    position: absolute;
    inset: 24px 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(242, 185, 0, .75), transparent);
}

.srcs-stats-section::after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    right: -170px;
    bottom: -220px;
    border: 1px solid rgba(242, 185, 0, .22);
    border-radius: 50%;
    box-shadow: 0 0 0 26px rgba(242, 185, 0, .035), 0 0 0 52px rgba(242, 185, 0, .025);
}

.srcs-stats-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(245px, .72fr) minmax(0, 1.55fr);
    gap: clamp(48px, 8vw, 120px);
    align-items: center;
    width: min(1320px, calc(100% - 80px));
    margin: 0 auto;
}

.srcs-stats-left {
    padding-right: 34px;
    border-right: 1px solid rgba(255, 255, 255, .16);
}

.srcs-stats-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    color: #f2b900;
    font: 700 .7rem/1.2 Arial, sans-serif;
    letter-spacing: .24em;
    text-transform: uppercase;
}

.srcs-stats-eyebrow::before {
    content: "";
    width: 32px;
    height: 1px;
    background: #f2b900;
}

.srcs-stats-left h2 {
    margin: 0 0 24px;
    color: #fff;
    font-size: clamp(2.8rem, 4vw, 4.5rem);
    line-height: .96;
    letter-spacing: -.045em;
}

.srcs-stats-left h2 em {
    color: #f2b900;
    font-style: italic;
}

.srcs-stats-left p {
    max-width: 290px;
    margin: 0;
    color: rgba(255, 255, 255, .68);
    font-size: .95rem;
    line-height: 1.75;
}

.srcs-stats-right {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.srcs-stat-item {
    min-height: 156px;
    padding: 25px 20px 20px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 3px;
    background: rgba(255, 255, 255, .055);
    transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.srcs-stat-item:hover {
    transform: translateY(-5px);
    border-color: rgba(242, 185, 0, .65);
    background: rgba(242, 185, 0, .1);
}

.srcs-stat-val {
    margin-bottom: 13px;
    color: #f2b900;
    font: 600 clamp(2rem, 3vw, 3.1rem)/.95 Georgia, serif;
    letter-spacing: -.04em;
}

.srcs-stat-val sup {
    top: -.65em;
    position: relative;
    font: 600 .9rem Arial, sans-serif;
    letter-spacing: 0;
}

.srcs-stat-label {
    max-width: 145px;
    color: rgba(255, 255, 255, .72);
    font: 600 .68rem/1.45 Arial, sans-serif;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.srcs-stat-divider {
    display: none;
}

@media (max-width: 900px) {
    .srcs-stats-inner {
        grid-template-columns: 1fr;
        gap: 42px;
    }
    .srcs-stats-left {
        padding-right: 0;
        border-right: 0;
    }
    .srcs-stats-left p {
        max-width: 520px;
    }
}

@media (max-width: 576px) {
    .srcs-stats-section {
        padding: 64px 0 70px;
    }
    .srcs-stats-inner {
        width: min(100% - 36px, 480px);
    }
    .srcs-stats-right {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .srcs-stat-item {
        min-height: 132px;
        padding: 20px 16px;
    }
}

.srcs-about-section .srcs-about-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-top: 28px;
    padding: 7px 8px 7px 24px;
    border: 1px solid #0b3d2e;
    border-radius: 999px;
    background: #0b3d2e;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    box-shadow: 0 10px 24px rgba(11, 61, 46, 0.18);
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.srcs-about-section .srcs-about-btn:hover {
    background: #06291f;
    border-color: #06291f;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(11, 61, 46, 0.25);
}

.srcs-about-section .srcs-btn-arrow {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f4c400;
    color: #0b3d2e;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.srcs-about-section .srcs-about-btn:hover .srcs-btn-arrow {
    transform: translateX(4px);
}


/* =====================================================
   SRCC PROGRAM SECTION
===================================================== */

.srcc-programs {
    width: 100%;
    padding: 85px 0 100px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}


/* =====================================================
   SUBTLE BACKGROUND DETAIL
===================================================== */

.srcc-programs::before {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    right: -70px;
    top: 10px;
    background-image: radial-gradient( rgba(8, 115, 63, 0.10) 1.5px, transparent 1.5px);
    background-size: 15px 15px;
    opacity: .55;
    pointer-events: none;
}


/* =====================================================
   CONTAINER
===================================================== */

.srcc-programs-wrap {
    width: calc(100% - 70px);
    max-width: 1640px;
    margin: auto;
    position: relative;
    z-index: 2;
}


/* =====================================================
   HEADER
===================================================== */

.srcc-programs-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 34px;
}

.srcc-header-content {
    max-width: 850px;
}


/* =====================================================
   EYEBROW
===================================================== */

.srcc-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #08733f;
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.7px;
    margin-bottom: 13px;
}

.srcc-eyebrow span {
    width: 40px;
    height: 2px;
    display: block;
    background: #f5a400;
}


/* =====================================================
   HEADING
===================================================== */

.srcc-header-content h2 {
    margin: 0;
    color: #08733f;
    font-size: 55px;
    line-height: 1.02;
    font-weight: 500;
    letter-spacing: -2.5px;
}

.srcc-header-content h2 strong {
    color: #1d1d1d;
    font-weight: 500;
}


/* =====================================================
   DESCRIPTION
===================================================== */

.srcc-header-content p {
    max-width: 760px;
    margin: 20px 0 0;
    color: #555;
    font-family: Arial, sans-serif;
    font-size: 15px;
    line-height: 1.65;
}


/* =====================================================
   EXPLORE BUTTON
===================================================== */

.srcc-explore {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 5px;
    color: #08733f;
    text-decoration: none;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    font-weight: 700;
    padding-bottom: 9px;
    border-bottom: 1px solid #08733f;
    transition: all .35s ease;
}

.srcc-explore b {
    color: #f5a400;
    font-family: Arial, sans-serif;
    font-size: 25px;
    font-weight: 400;
    transition: transform .35s ease;
}

.srcc-explore:hover {
    color: #f5a400;
    border-color: #f5a400;
}

.srcc-explore:hover b {
    transform: translateX(7px);
}


/* =====================================================
   GRID
===================================================== */

.srcc-program-grid {
    display: grid;
    grid-template-columns: 1.45fr .85fr .85fr .85fr;
    grid-template-rows: 320px 320px;
    gap: 7px;
}


/* =====================================================
   CARD
===================================================== */

.srcc-card {
    position: relative;
    display: block;
    overflow: hidden;
    min-width: 0;
    background: #111;
    text-decoration: none;
    border-radius: 3px;
    opacity: 0;
    transform: translateY(30px);
    animation: srccCardIn .8s cubic-bezier(.22, 1, .36, 1) forwards;
}

.srcc-card:nth-child(1) {
    animation-delay: .08s;
}

.srcc-card:nth-child(2) {
    animation-delay: .15s;
}

.srcc-card:nth-child(3) {
    animation-delay: .22s;
}

.srcc-card:nth-child(4) {
    animation-delay: .29s;
}

.srcc-card:nth-child(5) {
    animation-delay: .36s;
}

.srcc-card:nth-child(6) {
    animation-delay: .43s;
}

.srcc-card:nth-child(7) {
    animation-delay: .50s;
}

@keyframes srccCardIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =====================================================
   GRID POSITIONING
===================================================== */


/* First large card */

.srcc-card:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1;
}


/* Cards 02, 03, 04 */

.srcc-card:nth-child(2) {
    grid-column: 3;
    grid-row: 1;
}

.srcc-card:nth-child(3) {
    grid-column: 4;
    grid-row: 1;
}

.srcc-card:nth-child(4) {
    grid-column: 4;
    grid-row: 1;
    transform: translateX(0);
}


/*
   To keep all cards in the same visual
   arrangement, 04 occupies the far right.
*/

.srcc-card:nth-child(3) {
    grid-column: 3;
}

.srcc-card:nth-child(4) {
    grid-column: 4;
}


/* Bottom row */

.srcc-card:nth-child(5) {
    grid-column: 1;
    grid-row: 2;
}

.srcc-card:nth-child(6) {
    grid-column: 2 / 4;
    grid-row: 2;
}

.srcc-card:nth-child(7) {
    grid-column: 4;
    grid-row: 2;
}


/* =====================================================
   IMAGE
===================================================== */

.srcc-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(.22, 1, .36, 1), filter .7s ease;
}

.srcc-card:hover img {
    transform: scale(1.075);
    filter: saturate(1.08) contrast(1.03);
}


/* =====================================================
   IMAGE OVERLAY
===================================================== */

.srcc-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(0, 0, 0, .93) 0%, rgba(0, 0, 0, .73) 28%, rgba(0, 0, 0, .18) 67%, rgba(0, 0, 0, .08) 100%);
    transition: background .55s ease;
}

.srcc-card:hover .srcc-card-overlay {
    background: linear-gradient( to top, rgba(0, 55, 31, .94) 0%, rgba(0, 0, 0, .66) 37%, rgba(0, 0, 0, .10) 100%);
}


/* =====================================================
   NUMBER
===================================================== */

.srcc-card-number {
    position: absolute;
    top: 15px;
    left: 16px;
    min-width: 42px;
    height: 38px;
    padding: 0 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: #08733f;
    color: #ffffff;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    transition: background .35s ease, transform .35s ease;
}

.srcc-card:hover .srcc-card-number {
    background: #f5a400;
    transform: translateY(-3px);
}


/* =====================================================
   CARD CONTENT
===================================================== */

.srcc-card-info {
    position: absolute;
    left: 20px;
    right: 60px;
    bottom: 18px;
    z-index: 4;
    transition: transform .45s cubic-bezier(.22, 1, .36, 1);
}

.srcc-card:hover .srcc-card-info {
    transform: translateY(-5px);
}


/* =====================================================
   CATEGORY
===================================================== */

.srcc-category {
    display: block;
    margin-bottom: 7px;
    color: #f5a400;
    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .5px;
}


/* =====================================================
   CARD TITLE
===================================================== */

.srcc-card-info h3 {
    margin: 0;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    line-height: 1.05;
    font-weight: 700;
}


/* Large card title */

.srcc-card:nth-child(1) .srcc-card-info h3 {
    font-size: 27px;
}


/* =====================================================
   LINE
===================================================== */

.srcc-line {
    width: 35px;
    height: 2px;
    background: #f5a400;
    margin: 9px 0 8px;
    transition: width .45s ease;
}

.srcc-card:hover .srcc-line {
    width: 58px;
}


/* =====================================================
   DESCRIPTION
===================================================== */

.srcc-card-info p {
    margin: 0;
    color: rgba(255, 255, 255, .92);
    font-size: 13px;
    line-height: 1.35;
}


/* =====================================================
   ARROW BUTTON
===================================================== */

.srcc-arrow {
    position: absolute;
    right: 17px;
    bottom: 17px;
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #08733f;
    color: #ffffff;
    font-family: Arial, sans-serif;
    font-size: 22px;
    z-index: 5;
    transition: background .35s ease, border-color .35s ease, color .35s ease, transform .4s ease;
}

.srcc-card:hover .srcc-arrow {
    background: #08733f;
    border-color: #08733f;
    transform: rotate(-25deg);
}


/* =====================================================
   RESPONSIVE TABLET
===================================================== */

@media (max-width: 1200px) {
    .srcc-programs-wrap {
        width: calc(100% - 40px);
    }
    .srcc-program-grid {
        grid-template-columns: 1.4fr 1fr 1fr;
        grid-template-rows: 300px 300px 300px;
    }
    .srcc-card:nth-child(1) {
        grid-column: 1 / 3;
        grid-row: 1;
    }
    .srcc-card:nth-child(2) {
        grid-column: 3;
        grid-row: 1;
    }
    .srcc-card:nth-child(3) {
        grid-column: 1;
        grid-row: 2;
    }
    .srcc-card:nth-child(4) {
        grid-column: 2 / 4;
        grid-row: 2;
    }
    .srcc-card:nth-child(5) {
        grid-column: 1;
        grid-row: 3;
    }
    .srcc-card:nth-child(6) {
        grid-column: 2;
        grid-row: 3;
    }
    .srcc-card:nth-child(7) {
        grid-column: 3;
        grid-row: 3;
    }
}


/* =====================================================
   TABLET HEADER
===================================================== */

@media (max-width: 900px) {
    .srcc-programs-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 25px;
    }
    .srcc-explore {
        margin-bottom: 0;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {
    .srcc-programs {
        padding: 65px 0 70px;
    }
    .srcc-programs-wrap {
        width: calc(100% - 28px);
    }
    .srcc-programs-header {
        margin-bottom: 25px;
        gap: 20px;
    }
    .srcc-header-content h2 {
        font-size: 42px;
        letter-spacing: -1.8px;
    }
    .srcc-header-content p {
        font-size: 14px;
        line-height: 1.65;
        margin-top: 16px;
    }
    .srcc-eyebrow {
        font-size: 10px;
        letter-spacing: 1.4px;
    }
    .srcc-explore {
        font-size: 16px;
    }
    .srcc-program-grid {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    .srcc-card,
    .srcc-card:nth-child(n) {
        width: 100%;
        height: 370px;
        grid-column: auto;
        grid-row: auto;
    }
    .srcc-card-info h3,
    .srcc-card:nth-child(1) .srcc-card-info h3 {
        font-size: 24px;
    }
    .srcc-card-info p {
        font-size: 12px;
    }
}


/* =====================================================
   VERY SMALL MOBILE
===================================================== */

@media (max-width: 420px) {
    .srcc-header-content h2 {
        font-size: 36px;
    }
    .srcc-card {
        height: 340px;
    }
    .srcc-card-info {
        left: 16px;
        right: 55px;
        bottom: 15px;
    }
    .srcc-card-number {
        top: 12px;
        left: 12px;
        min-width: 38px;
        height: 34px;
        font-size: 14px;
    }
    .srcc-arrow {
        right: 12px;
        bottom: 13px;
        width: 38px;
        height: 38px;
        font-size: 19px;
    }
}


/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {
    .srcc-card {
        animation: none;
        opacity: 1;
        transform: none;
    }
    .srcc-card img,
    .srcc-card-info,
    .srcc-arrow,
    .srcc-line {
        transition: none;
    }
}


/* =========================================
   LEGACY SECTION
========================================= */

.legacy-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    padding: 55px 6.5% 95px;
    background: radial-gradient( circle at 88% 5%, rgba(224, 169, 48, 0.32) 0%, rgba(224, 169, 48, 0.12) 17%, transparent 38%), radial-gradient( circle at 15% 55%, rgba(184, 143, 48, 0.12), transparent 35%), linear-gradient( 105deg, #001e18 0%, #00291f 35%, #003126 60%, #00261e 100%);
}


/* =========================================
   BACKGROUND GLOW
========================================= */

.legacy-section::before {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    top: -220px;
    right: -120px;
    border-radius: 50%;
    background: radial-gradient( circle, rgba(232, 178, 55, 0.20), rgba(232, 178, 55, 0.06) 40%, transparent 72%);
    filter: blur(25px);
    pointer-events: none;
}


/* =========================================
   LEFT BUILDING
========================================= */

.legacy-building {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 49%;
    height: 88%;
    background-image: linear-gradient( 90deg, transparent 40%, rgba(0, 39, 30, 0.18) 62%, #00271e 100%), linear-gradient( 0deg, rgba(0, 35, 26, 0.45), transparent 38%), url("../images/stats.png");
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
    filter: saturate(0.95) contrast(1.05);
    z-index: 1;
}


/* =========================================
   BUILDING FADE
========================================= */

.legacy-building::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, transparent 48%, #00291f 100%), linear-gradient( 0deg, rgba(0, 30, 22, 0.35), transparent 50%);
}


/* =========================================
   MAIN WRAPPER
========================================= */

.legacy-wrapper {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 41% 59%;
    align-items: center;
}


/* =========================================
   LEFT SPACE
========================================= */

.legacy-visual-space {
    min-height: 700px;
}


/* =========================================
   CONTENT
========================================= */

.legacy-content {
    width: 100%;
    max-width: 820px;
    margin-left: auto;
    padding-left: 35px;
}


/* =========================================
   EYEBROW
========================================= */

.legacy-eyebrow {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 13px;
    margin-bottom: 16px;
    color: #e9aa29;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.legacy-eyebrow span {
    display: block;
    width: 42px;
    height: 1px;
    background: #dca22c;
}


/* =========================================
   MAIN HEADING
========================================= */

.legacy-heading {
    margin: 0;
    color: #f8f6f0;
    font-size: 55px;
    font-weight: 500;
    line-height: 1.03;
    letter-spacing: 2.0px;
}

.legacy-heading em {
    display: inline;
    margin-left: 10px;
    color: #e6a629;
    font-style: normal;
    font-weight: 500;
}


/* =========================================
   HEADING GOLD LINE
========================================= */

.legacy-heading-line {
    width: 73px;
    height: 3px;
    margin: 25px 0 17px;
    background: #e5a82c;
}


/* =========================================
   DESCRIPTION
========================================= */

.legacy-description {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.91);
    font-family: "Inter", sans-serif;
    font-size: 18px;
    line-height: 1.65;
    font-weight: 400;
}


/* =========================================
   STATS GRID
========================================= */

.legacy-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 32px;
}


/* =========================================
   STAT CARD
========================================= */

.legacy-card {
    position: relative;
    min-height: 280px;
    padding: 24px 16px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    border: 1px solid rgba(224, 180, 75, 0.65);
    border-radius: 14px;
    background: linear-gradient( 145deg, rgba(112, 127, 85, 0.18), rgba(0, 50, 37, 0.60));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: inset 0 0 25px rgba(255, 255, 255, 0.025), 0 12px 35px rgba(0, 0, 0, 0.12);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}


/* =========================================
   CARD HOVER
========================================= */

.legacy-card:hover {
    transform: translateY(-7px);
    border-color: #e8af36;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25), 0 0 25px rgba(226, 167, 42, 0.08);
}


/* =========================================
   ICON
========================================= */

.legacy-icon {
    width: 84px;
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 13px;
    border-radius: 50%;
    border: 1px solid rgba(218, 182, 91, 0.58);
    background: radial-gradient( circle at 35% 25%, rgba(255, 255, 255, 0.06), rgba(0, 53, 40, 0.45));
    color: #e8ad32;
    font-size: 29px;
    box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.035);
}

.legacy-icon i {
    line-height: 1;
}


/* =========================================
   NUMBER
========================================= */

.legacy-number {
    color: #e5a52a;
    font-size: 56px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: -1px;
    white-space: nowrap;
}


/* =========================================
   CARD DIVIDER
========================================= */

.legacy-divider {
    width: 92px;
    height: 1px;
    margin: 13px auto 11px;
    background: linear-gradient( 90deg, transparent, rgba(219, 174, 69, 0.65), transparent);
}


/* =========================================
   CARD LABEL
========================================= */

.legacy-label {
    color: #f1f2ef;
    font-size: 12px;
    line-height: 1.55;
    font-weight: 500;
    letter-spacing: 0.25px;
    text-transform: uppercase;
}


/* =========================================
   DECORATIVE DOTS
========================================= */

.legacy-dots {
    position: absolute;
    right: 20px;
    bottom: 40px;
    width: 170px;
    height: 170px;
    opacity: 0.22;
    background-image: radial-gradient( circle, #d8a52d 1px, transparent 1.5px);
    background-size: 13px 13px;
    -webkit-mask-image: radial-gradient( circle, black 5%, transparent 70%);
    mask-image: radial-gradient( circle, black 5%, transparent 70%);
    z-index: 2;
    pointer-events: none;
}


/* =========================================
   BOTTOM CURVES
========================================= */

.legacy-curves {
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 150px;
    z-index: 4;
    pointer-events: none;
}

.legacy-curves svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.legacy-curves path {
    fill: none;
    stroke: rgba(211, 163, 42, 0.70);
    stroke-width: 1;
}

.legacy-curves .soft-curve {
    stroke: rgba(211, 163, 42, 0.28);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {
    .legacy-section {
        padding: 60px 5% 100px;
    }
    .legacy-wrapper {
        grid-template-columns: 35% 65%;
    }
    .legacy-content {
        padding-left: 20px;
    }
    .legacy-heading {
        font-size: 64px;
    }
    .legacy-description {
        font-size: 16px;
    }
    .legacy-card {
        min-height: 260px;
    }
    .legacy-number {
        font-size: 48px;
    }
    .legacy-icon {
        width: 72px;
        height: 72px;
        font-size: 25px;
    }
    .legacy-label {
        font-size: 14px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {
    .legacy-section {
        min-height: auto;
        padding: 70px 20px 100px;
    }
    .legacy-building {
        top: 0;
        bottom: auto;
        width: 100%;
        height: 390px;
        opacity: 0.28;
        -webkit-mask-image: linear-gradient( to bottom, black 0%, transparent 100%);
        mask-image: linear-gradient( to bottom, black 0%, transparent 100%);
    }
    .legacy-wrapper {
        display: block;
    }
    .legacy-visual-space {
        display: none;
    }
    .legacy-content {
        padding-left: 0;
        margin: 0 auto;
        text-align: center;
    }
    .legacy-eyebrow {
        justify-content: center;
        font-size: 14px;
        gap: 9px;
    }
    .legacy-eyebrow span {
        width: 25px;
    }
    .legacy-heading {
        font-size: clamp(49px, 13vw, 68px);
        line-height: 0.93;
        letter-spacing: -1.5px;
    }
    .legacy-heading-line {
        margin: 22px auto 17px;
    }
    .legacy-description {
        font-size: 15px;
        line-height: 1.6;
    }
    .legacy-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 13px;
        margin-top: 30px;
    }
    .legacy-card {
        min-height: 220px;
        padding: 19px 10px 18px;
        border-radius: 12px;
    }
    .legacy-icon {
        width: 62px;
        height: 62px;
        margin-bottom: 10px;
        font-size: 22px;
    }
    .legacy-number {
        font-size: 38px;
    }
    .legacy-divider {
        width: 65px;
        margin: 10px auto 8px;
    }
    .legacy-label {
        font-size: 11px;
        line-height: 1.45;
    }
    .legacy-curves {
        height: 90px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 430px) {
    .legacy-section {
        padding-left: 14px;
        padding-right: 14px;
    }
    .legacy-stats {
        gap: 10px;
    }
    .legacy-card {
        min-height: 205px;
        padding-left: 7px;
        padding-right: 7px;
    }
    .legacy-number {
        font-size: 38px;
    }
    .legacy-icon {
        width: 58px;
        height: 58px;
    }
}


/* Legacy section: compact desktop presentation */

@media (min-width: 768px) {
    .legacy-section {
        min-height: 700px;
        padding: 52px 6.5% 58px;
    }
    .legacy-building {
        top: 0;
        bottom: 0;
        height: 100%;
        background-position: center center;
    }
    .legacy-visual-space {
        min-height: 590px;
    }
    .legacy-stats {
        gap: 14px;
        margin-top: 24px;
    }
    .legacy-card {
        min-height: 205px;
        padding: 17px 12px 16px;
        border-radius: 10px;
    }
    .legacy-icon {
        width: 62px;
        height: 62px;
        margin-bottom: 10px;
        font-size: 22px;
    }
    .legacy-number {
        font-size: 43px;
    }
    .legacy-divider {
        margin: 9px auto 7px;
    }
}

@media (min-width: 768px) {
    .legacy-heading {
        white-space: nowrap;
    }
    .legacy-building {
        width: 52%;
        background-position: left center;
        background-image: linear-gradient(90deg, rgba(0, 39, 30, 0) 42%, rgba(0, 39, 30, .18) 66%, rgba(0, 39, 30, .72) 84%, #00271e 100%), linear-gradient(0deg, rgba(0, 35, 26, .28), transparent 48%), url("../images/stats.png");
        -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 72%, rgba(0, 0, 0, .6) 87%, transparent 100%);
        mask-image: linear-gradient(90deg, #000 0%, #000 72%, rgba(0, 0, 0, .6) 87%, transparent 100%);
    }
    .legacy-building::after {
        background: linear-gradient(90deg, transparent 50%, rgba(0, 41, 31, .12) 70%, rgba(0, 41, 31, .72) 92%, #00291f 100%), linear-gradient(0deg, rgba(0, 30, 22, .2), transparent 55%);
    }
    .legacy-wrapper {
        grid-template-columns: 48% 52%;
    }
    .legacy-content {
        padding-left: 42px;
    }
}


/* Give the legacy copy a little more breathing room from the image on wide screens. */

@media (min-width: 1200px) {
    .legacy-content {
        transform: translateX(56px);
    }
}


/* =========================
   MOMENTS SECTION
========================= */

.moments-section {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 70px 30px;
}


/* =========================
   SECTION HEADING
========================= */

.moments-heading {
    text-align: center;
    margin-bottom: 40px;
}

.section-label {
    display: block;
    color: #315b3e;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 9px;
    margin-bottom: 10px;
}

.moments-heading h2 {
    margin: 0;
    color: #303840;
    font-family: "Playfair Display", serif;
    font-size: 54px;
    font-weight: 500;
    line-height: 1;
}

.moments-heading h2 span {
    color: #315b3e;
    font-family: "Sacramento", cursive;
    font-size: 55px;
    font-weight: 400;
    margin-left: 8px;
}

.moments-heading p {
    max-width: 700px;
    margin: 14px auto 0;
    color: #687169;
    font-size: 17px;
    line-height: 1.6;
}


/* =========================
   HEADING DECORATION
========================= */

.heading-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 18px;
}

.heading-line span {
    width: 55px;
    height: 1px;
    background: #315b3e;
    opacity: 0.6;
}

.heading-line i {
    color: #315b3e;
    font-size: 18px;
}


/* =========================
   GRID
========================= */

.moments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}


/* =========================
   CARD
========================= */

.moment-card {
    min-height: 340px;
    display: flex;
    overflow: hidden;
    background: #fafaf5;
    border: 1px solid rgba(49, 91, 62, 0.1);
    border-radius: 22px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
}

.moment-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 40px rgba(49, 91, 62, 0.18);
}


/* FEATURED CARD */

.moment-card.featured {
    border: 2px solid #315b3e;
}


/* =========================
   CONTENT SIDE
========================= */

.card-content {
    width: 47%;
    padding: 22px 18px 0;
    display: flex;
    flex-direction: column;
}

.event-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #315b3e;
    color: #fff;
    font-size: 21px;
    margin-bottom: 17px;
    box-shadow: 0 5px 15px rgba(49, 91, 62, 0.22);
}

.event-date {
    display: block;
    color: #6c806d;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.card-content h3 {
    margin: 0 0 13px;
    color: #000;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.3;
}

.card-content h3 span {
    display: block;
    color: #315b3e;
    margin-top: 3px;
}

.card-content p {
    margin: 0;
    color: #626a64;
    font-size: 14px;
    line-height: 1.65;
}


/* =========================
   IMAGE SIDE
========================= */

.card-image {
    position: relative;
    width: 53%;
    min-height: 340px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.moment-card:hover .card-image img {
    transform: scale(1.06);
}


/* =========================
   REVERSE CARD
========================= */

.moment-card.image-left {
    flex-direction: row-reverse;
}


/* =========================
   CARD SOCIAL
========================= */

.social-links {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 13px;
    border-top: 1px solid #deded7;
    padding: 14px 0;
}

.social-links span {
    font-size: 13px;
    color: #5c675f;
    font-weight: 500;
    margin-right: auto;
}

.social-links a {
    width: 45px;
    height: 41px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links .facebook {
    color: #1877f2;
}

.social-links .instagram {
    color: #e4405f;
}

.social-links a:hover {
    background: #315b3e;
    color: #fff;
    transform: translateY(-3px);
}


/* =========================
   BOTTOM SOCIAL
========================= */

.bottom-social {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 32px;
    color: #4d564f;
    font-size: 16px;
}

.bottom-social a {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #4d564f;
    text-decoration: none;
    transition: 0.3s ease;
}

.bottom-social a:hover {
    color: #315b3e;
}

.bottom-social a i {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #315b3e;
    color: #fff;
}

.bottom-social .divider {
    width: 1px;
    height: 25px;
    background: #a5aaa5;
}


/* =========================
   TABLET
========================= */

@media (max-width: 1100px) {
    .moments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .moment-card {
        min-height: 370px;
    }
    .card-image {
        min-height: 370px;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 700px) {
    .moments-section {
        padding: 50px 15px;
    }
    .moments-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .moment-card,
    .moment-card.image-left {
        flex-direction: column;
        min-height: auto;
    }
    .card-content {
        width: 100%;
        min-height: 330px;
        padding: 25px 22px 0;
    }
    .card-image {
        width: 100%;
        height: 340px;
        min-height: 340px;
    }
    .card-image img {
        object-position: center top;
    }
    .moments-heading h2 {
        font-size: clamp(2.2rem, 10vw, 3rem);
        line-height: 1.08;
    }
    .moments-heading h2 span {
        display: block;
        margin: 2px 0 0;
        font-size: 1em;
    }
    .card-content h3 {
        font-size: 23px;
    }
    .section-label {
        letter-spacing: 6px;
    }
    .bottom-social {
        flex-direction: column;
        gap: 12px;
    }
    .bottom-social .divider {
        display: none;
    }
}


/* Image-led practice cards for Senior School. */

.senior-school-page .senior-practices-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.senior-school-page .senior-practice-card {
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 22px 0 22px 0;
    background: #fff;
    overflow: hidden;
}

.senior-school-page .senior-practice-image {
    height: 210px;
    overflow: hidden;
    background: #dfeae2;
}

.senior-school-page .senior-practice-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .6s ease;
}

.senior-school-page .senior-practice-card:hover .senior-practice-image img {
    transform: scale(1.06);
}

.senior-school-page .senior-practice-body {
    position: relative;
    min-height: 245px;
    padding: 30px 26px 26px;
}

.senior-school-page .senior-practice-body>span {
    top: 28px;
    right: 25px;
}

.senior-school-page .senior-practice-icon {
    width: 48px;
    height: 48px;
    margin: -54px 0 22px;
    position: relative;
    z-index: 2;
    border: 4px solid #fff;
}

.senior-school-page .senior-practice-body h3 {
    font-size: 23px;
}

.senior-school-page .senior-practice-wide {
    display: grid;
    grid-template-columns: 42% 58%;
    grid-column: 1 / -1;
}

.senior-school-page .senior-practice-wide .senior-practice-image {
    height: 100%;
    min-height: 245px;
}

.senior-school-page .senior-practice-wide .senior-practice-icon {
    margin-top: 0;
}

.senior-school-page .senior-practice-wide .senior-practice-body {
    min-height: 245px;
    overflow: visible;
}

@media (max-width: 850px) {
    .senior-school-page .senior-practices-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .senior-school-page .senior-practices-grid {
        grid-template-columns: 1fr;
    }
    .senior-school-page .senior-practice-wide {
        display: block;
        grid-column: auto;
    }
    .senior-school-page .senior-practice-wide .senior-practice-image {
        min-height: 210px;
        height: 210px;
    }
}


/* Use one classic typeface for every section heading. */

h2 {
    font-family: "Times New Roman", Times, serif !important;
}

.see-yourself-section {
    position: relative;
    padding: 50px 20px;
    overflow: hidden;
    background: linear-gradient(110deg, rgba(2, 54, 28, 0.72) 0%, rgba(6, 90, 43, 0.56) 52%, rgba(3, 43, 24, 0.68) 100%), url("../images/prelaoder-bg.png") center / cover no-repeat;
}


/* Dark overlay texture */

.see-yourself-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 25%, rgba(255, 255, 255, 0.08) 0 1px, transparent 1.5px) 0 0 / 28px 28px;
    opacity: 0.45;
    pointer-events: none;
}

.see-yourself-container {
    width: min(1180px, 100%);
    margin: auto;
    position: relative;
    z-index: 2;
}


/* =========================
   SECTION HEADING
========================= */

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 40px;
    margin-bottom: 55px;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: #a9d6a7;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.section-heading h2 {
    margin: 0;
    color: #ffffff;
    font-size: 55px;
    line-height: 0.95;
    font-weight: 500;
    letter-spacing: 2px;
}

.section-heading h2 span {
    font-style: normal;
    color: #f4c400;
}

.section-heading p {
    width: min(360px, 100%);
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 15px;
    line-height: 1.8;
}


/* =========================
   CAROUSEL
========================= */

.story-carousel {
    position: relative;
}

.story-track {
    position: relative;
}

.story-card {
    display: none;
    grid-template-columns: 48% 52%;
    min-height: 500px;
    border-radius: 30px;
    background: rgba(12, 35, 24, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.22);
}

.story-card.active {
    display: grid;
    animation: cardReveal 0.55s ease;
}

@keyframes cardReveal {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================
   IMAGE SIDE
========================= */

.story-image {
    position: relative;
    overflow: hidden;
    min-height: 500px;
    border-radius: 30px 0 0 0;
}

.story-image img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
    filter: saturate(0.9);
    transition: transform 0.8s ease;
}

.story-card:hover .story-image img {
    transform: scale(1.04);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 180deg, transparent 30%, rgba(5, 21, 13, 0.85) 100%);
}

.year-badge {
    position: absolute;
    left: 30px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    padding: 14px 18px;
    border-left: 2px solid #b9d8b0;
    background: rgba(5, 25, 14, 0.55);
    backdrop-filter: blur(10px);
}

.year-badge span {
    color: rgba(255, 255, 255, 0.55);
    font-size: 9px;
    letter-spacing: 2px;
}

.year-badge strong {
    margin-top: 4px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
}


/* =========================
   CONTENT SIDE
========================= */

.story-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 42px 70px 34px;
    border-radius: 0 0px 30px;
    background: #ffffff;
}

.story-content::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -50px;
    top: -50px;
    border-radius: 50%;
    border: 1px solid rgba(11, 61, 46, 0.12);
}

.content-top {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.story-label {
    color: #0b3d2e;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.quote-icon {
    position: absolute;
    top: -25px;
    right: 0;
    margin: 0;
    color: rgba(11, 61, 46, 0.12);
    font-family: Georgia, serif;
    font-size: 0;
    line-height: 1;
}

.quote-icon::before {
    content: "\201C";
    font-size: 100px;
}

.story-content h3 {
    margin: 18px 0 12px;
    color: #0b3d2e;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 500;
    letter-spacing: -1.5px;
}

.role {
    margin: 0 0 20px;
    color: #547064;
    font-size: 17px;
    line-height: 1.6;
}

.story-text {
    max-width: 480px;
    margin: 0;
    color: #405149;
    font-size: 15px;
    line-height: 1.7;
}


/* =========================
   FOOTER
========================= */

.story-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: auto;
    padding-top: 25px;
    border-top: 1px solid rgba(11, 61, 46, 0.14);
}

.tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tags span {
    padding: 8px 12px;
    border: 1px solid rgba(11, 61, 46, 0.25);
    color: #405149;
    font-size: 10px;
    letter-spacing: 0.8px;
    border-radius: 30px;
}

.story-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0b3d2e;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.story-link span {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #b8d6af;
    color: #173c26;
    transition: 0.3s ease;
}

.story-link:hover span {
    transform: rotate(45deg);
}


/* =========================
   CAROUSEL NAVIGATION
========================= */

.carousel-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 28px;
}

.carousel-count {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
    letter-spacing: 1px;
}

.carousel-count #currentSlide {
    color: #ffffff;
    font-size: 18px;
}

.count-line {
    width: 70px;
    height: 1px;
    background: rgba(255, 255, 255, 0.25);
}

.carousel-controls {
    display: flex;
    gap: 10px;
}

.carousel-btn {
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    border-radius: 50%;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: #b8d6af;
    color: #143b24;
    border-color: #b8d6af;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 850px) {
    .section-heading {
        flex-direction: column;
        align-items: start;
    }
    .story-card {
        grid-template-columns: 1fr;
    }
    .story-image {
        min-height: 420px;
    }
    .story-content {
        padding: 45px 35px;
    }
}

@media (max-width: 550px) {
    .see-yourself-section {
        padding: 75px 15px;
    }
    .section-heading h2 {
        font-size: 48px;
    }
    .story-image {
        min-height: 380px;
    }
    .story-content {
        padding: 35px 25px;
    }
    .story-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    .carousel-bottom {
        margin-top: 20px;
    }
}


/* =========================
   FAQ SECTION
========================= */

.faq-modern {
    --green: #2f5d3d;
    --dark: #252d34;
    --cream: #f7f7f3;
    --line: #dce1da;
    max-width: 1440px;
    margin: 0 auto;
    padding: 30px 20px 30px;
    font-family: "DM Sans", sans-serif;
}


/* =========================
   HEADING
========================= */

.faq-heading {
    text-align: center;
    margin-bottom: 35px;
}

.faq-small-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--green);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
}

.faq-small-title span {
    width: 70px;
    height: 1px;
    background: #9fac9f;
    position: relative;
}

.faq-small-title span:first-child::after {
    content: "";
    position: absolute;
    right: -8px;
    top: -3px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
}

.faq-small-title span:last-child::before {
    content: "";
    position: absolute;
    left: -8px;
    top: -3px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
}

.faq-heading h2 {
    margin: 12px 0 10px;
    color: var(--dark);
    font-size: 55px;
    font-weight: 500;
    line-height: 1.05;
}

.faq-heading h2 em {
    color: var(--green);
    font-family: "Sacramento", cursive;
    font-size: 55px;
    font-weight: 400;
    margin-left: 10px;
}

.faq-heading p {
    color: #626b70;
    font-size: 18px;
    margin: 0;
}

.faq-leaf {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 22px;
}

.faq-leaf span {
    width: 70px;
    height: 1px;
    background: #b9c2b8;
}

.faq-leaf i {
    color: var(--green);
    font-size: 20px;
}


/* =========================
   MAIN LAYOUT
========================= */

.faq-layout {
    display: grid;
    grid-template-columns: 460px 1fr;
    gap: 45px;
    align-items: stretch;
}


/* =========================
   LEFT CARD
========================= */

.faq-contact-card {
    position: relative;
    min-height: 730px;
    overflow: hidden;
    border-radius: 24px;
    background: radial-gradient(ellipse at 50% -8%, rgba(78, 142, 91, .23), transparent 43%), radial-gradient(ellipse at 50% 108%, rgba(93, 156, 102, .24), transparent 46%), linear-gradient(180deg, #eff7ef 0%, #ffffff 30%, #ffffff 67%, #edf6ed 100%);
    border: 1px solid #e1e6df;
    box-shadow: inset 0 0 0 1px rgba(49, 95, 63, 0.03);
}

.faq-contact-card::before,
.faq-contact-card::after {
    content: "";
    position: absolute;
    left: 50%;
    z-index: 1;
    width: 150px;
    height: 3px;
    border-radius: 99px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, #e3b719, #356b45, transparent);
    opacity: .78;
}

.faq-contact-card::before {
    top: 40px;
}

.faq-contact-card::after {
    bottom: 40px;
}

.faq-overlay {
    display: none;
}

.faq-left-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 330px;
    padding: 35px 0 0 70px;
}

.question-circle {
    width: 88px;
    height: 88px;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.82);
    border-radius: 50%;
    color: var(--green);
    font-size: 42px;
    margin-bottom: 15px;
}

.faq-left-content h3 {
    color: var(--dark);
    font-family: "Playfair Display", serif;
    font-size: 47px;
    font-weight: 500;
    line-height: 1.05;
    margin: 0 0 10px;
}

.faq-left-content h3 span {
    display: block;
    color: var(--green);
    font-family: "Sacramento", cursive;
    font-size: 1.2em;
    font-weight: 400;
}

.faq-left-content p {
    max-width: 290px;
    color: #465049;
    font-size: 17px;
    line-height: 1.65;
}


/* =========================
   CONTACT BOX
========================= */

.faq-help-box {
    position: absolute;
    z-index: 3;
    left: 42px;
    bottom: 32px;
    width: calc(100% - 84px);
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 25px 28px;
    border-radius: 18px;
    background: linear-gradient( 135deg, #315f3f, #1f4d31);
    color: #fff;
    box-shadow: 0 15px 35px rgba(23, 62, 37, 0.25);
}

.help-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    color: var(--green);
    font-size: 30px;
}

.faq-help-box span {
    display: block;
    font-size: 16px;
    margin-bottom: 7px;
}

.faq-help-box p {
    margin: 0 0 3px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
}

.faq-help-box a {
    color: #f1d965;
    text-decoration: none;
    font-size: 21px;
    font-weight: 500;
}

@media (min-width: 768px) {
    .faq-layout {
        align-items: stretch;
    }
    .faq-contact-card {
        min-height: 730px;
    }
    .faq-help-box {
        top: auto;
        bottom: 32px;
        transform: none;
    }
}

.faq-support-points {
    position: absolute;
    z-index: 2;
    top: 235px;
    left: 70px;
    right: 42px;
    display: grid;
    gap: 12px;
}

.faq-support-points span {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #315f3f;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .2px;
}

.faq-support-points span i {
    width: 28px;
    .faq-overlay {
        display: none;
    }
    .faq-left-content {
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 330px;
        padding: 35px 0 0 70px;
    }
    .question-circle {
        width: 88px;
        height: 88px;
        display: flex;
        align-items: center;
        background: rgba(255, 255, 255, 0.82);
        border-radius: 50%;
        color: var(--green);
        font-size: 42px;
        margin-bottom: 15px;
    }
    .faq-left-content h3 {
        color: var(--dark);
        font-family: "Playfair Display", serif;
        font-size: 47px;
        font-weight: 500;
        line-height: 1.05;
        margin: 0 0 10px;
    }
    .faq-left-content h3 span {
        display: block;
        color: var(--green);
        font-family: "Sacramento", cursive;
        font-size: 1.2em;
        font-weight: 400;
    }
    .faq-left-content p {
        max-width: 290px;
        color: #465049;
        font-size: 17px;
        line-height: 1.65;
    }
    /* =========================
   CONTACT BOX
========================= */
    .faq-help-box {
        position: absolute;
        z-index: 3;
        left: 42px;
        bottom: 32px;
        width: calc(100% - 84px);
        display: flex;
        align-items: center;
        gap: 18px;
        padding: 25px 28px;
        border-radius: 18px;
        background: linear-gradient( 135deg, #315f3f, #1f4d31);
        color: #fff;
        box-shadow: 0 15px 35px rgba(23, 62, 37, 0.25);
    }
    .help-icon {
        width: 70px;
        height: 70px;
        min-width: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        border-radius: 50%;
        color: var(--green);
        font-size: 30px;
    }
    .faq-help-box span {
        display: block;
        font-size: 16px;
        margin-bottom: 7px;
    }
    .faq-help-box p {
        margin: 0 0 3px;
        color: rgba(255, 255, 255, 0.75);
        font-size: 14px;
    }
    .faq-help-box a {
        color: #f1d965;
        text-decoration: none;
        font-size: 21px;
        font-weight: 500;
    }
    @media (min-width: 768px) {
        .faq-layout {
            align-items: stretch;
        }
        .faq-contact-card {
            min-height: 730px;
        }
        .faq-help-box {
            top: auto;
            bottom: 32px;
            transform: none;
        }
    }
    .faq-support-points {
        position: relative;
        z-index: 2;
        padding: 20px 0 0 70px;
        display: grid;
        gap: 12px;
    }
    .faq-support-points span {
        display: flex;
        align-items: center;
        gap: 12px;
        color: #315f3f;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: .2px;
    }
    .faq-support-points span i {
        width: 28px;
        height: 28px;
        flex: 0 0 28px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        background: rgba(241, 201, 66, .14);
        color: #c99b14;
        font-size: 13px;
    }
    @media (min-width: 768px) {
        .faq-contact-card {
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }
        .faq-contact-card .faq-left-content {
            width: 100%;
            max-width: 330px;
            padding: 50px 0 20px 70px !important;
            text-align: left;
        }
        .faq-contact-card .faq-left-content p {
            margin: 14px 0 0;
        }
        .faq-contact-card .faq-help-box {
            left: 50%;
            width: calc(100% - 84px);
            max-width: 360px;
            transform: translateX(-50%);
        }
    }
    flex: 0 0 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #ffffff;
    color: #2f5d3d;
    font-size: 24px;
}


/* =========================
   FAQ LIST
========================= */

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
}


/* =========================
   FAQ ITEM
========================= */

.faq-item {
    overflow: hidden;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid #e0e2de;
    border-radius: 18px;
    box-shadow: 0 7px 18px rgba(31, 50, 38, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(47, 93, 61, 0.35);
    box-shadow: 0 12px 25px rgba(31, 50, 38, 0.09);
}


/* =========================
   QUESTION
========================= */

.faq-question {
    width: 100%;
    min-height: 78px;
    display: flex;
    align-items: center;
    border: 0;
    background: transparent;
    padding: 12px 20px;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}

.faq-number {
    width: 43px;
    height: 43px;
    min-width: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient( 135deg, #416f4c, #245235);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    margin-right: 20px;
}

.faq-icon {
    display: none;
}

.faq-question-text {
    flex: 1;
    color: #30363a;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
}

.faq-toggle {
    width: 45px;
    height: 45px;
    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f2f4ef;
    color: var(--green);
    font-size: 18px;
    margin-left: 20px;
    transition: 0.3s ease;
}

.faq-toggle i {
    display: none;
}

.faq-toggle::before {
    content: "+";
    display: block;
    line-height: 1;
    transition: transform 0.3s ease;
}


/* ACTIVE */

.faq-item.active .faq-toggle {
    background: var(--green);
    color: #fff;
}

.faq-item.active .faq-toggle::before {
    transform: rotate(45deg);
}


/* =========================
   ANSWER
========================= */

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-answer p {
    margin: 0;
    padding: 0 85px 22px 155px;
    color: #68716a;
    font-size: 15px;
    line-height: 1.7;
}


/* SHOW ACTIVE ANSWER */

.faq-item.active .faq-answer {
    max-height: 200px;
}


/* =========================
   TABLET
========================= */

@media (max-width: 1100px) {
    .faq-layout {
        grid-template-columns: 350px 1fr;
        gap: 25px;
    }
    .faq-contact-card {
        min-height: 700px;
    }
    .faq-left-content {
        padding-left: 35px;
    }
    .faq-question-text {
        font-size: 16px;
    }
    .faq-icon {
        margin-right: 15px;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {
    .faq-modern {
        padding: 32px 15px;
    }
    .faq-heading {
        margin-bottom: 22px;
    }
}

.faq-number {
    width: 38px;
    height: 38px;
    min-width: 38px;
    margin-right: 10px;
}

.faq-icon {
    display: none;
}

.faq-question-text {
    font-size: 15px;
    padding-right: 8px;
}

.faq-toggle {
    width: 38px;
    height: 38px;
    min-width: 38px;
    margin-left: 5px;
}

.faq-answer p {
    padding: 0 20px 20px 60px;
    font-size: 14px;
}


/* Simple inner-page breadcrumb */

.simple-page-content {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 320px;
    padding-top: 150px;
    background: linear-gradient(90deg, rgba(2, 39, 24, .98) 0%, rgba(5, 61, 36, .94) 58%, rgba(12, 79, 47, .82) 100%), url('../images/sectionbg-1.png') center / cover no-repeat;
}

.simple-page-content::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(circle at 82% 25%, rgba(247, 199, 48, .3), transparent 22%), linear-gradient(135deg, rgba(4, 44, 27, .2), transparent 56%);
}

.simple-page-content::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -170px;
    z-index: -1;
    width: 440px;
    height: 440px;
    border: 1px solid rgba(248, 204, 62, .42);
    border-radius: 50%;
    box-shadow: 0 0 0 22px rgba(248, 204, 62, .06), 0 0 0 44px rgba(248, 204, 62, .04);
}

.simple-breadcrumb-wrap {
    width: min(1320px, calc(100% - 60px));
    margin: 0 auto;
}

.simple-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 11px;
    color: rgba(255, 255, 255, .78);
    font-size: .82rem;
    font-weight: 500;
}

.simple-breadcrumb a {
    color: rgba(255, 255, 255, .82);
    text-decoration: none;
    transition: color .2s ease;
}

.simple-breadcrumb a:hover {
    color: #f8d04d;
}

.simple-breadcrumb i {
    color: #d2a516;
    font-size: .62rem;
}

.simple-breadcrumb span {
    color: #f8d04d;
}

.simple-page-title {
    margin: 30px 0 0;
    color: #fff;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 60px;
    font-weight: 500;
    line-height: .98;
    letter-spacing: -.8px;
}

.simple-page-title .heade,
.simple-page-title span {
    color: #f8d04d !important;
}


/* Keep inner-page breadcrumbs on the same left alignment grid */

.news-page-hero .simple-breadcrumb-wrap,
.diversity-page-hero .simple-breadcrumb-wrap {
    width: min(1460px, calc(100% - 60px));
    margin-left: auto;
    margin-right: auto;
}

.at-glance-page-hero {
    min-height: 355px;
    padding-top: 170px;
}

.at-glance-page-hero .simple-breadcrumb-wrap {
    width: min(1540px, calc(100% - 60px));
}

.at-glance-page-hero .simple-page-title {
    margin-top: 30px;
    font-size: 60px;
    line-height: .98;
    letter-spacing: -.8px;
}

@media (max-width: 767px) {
    .simple-page-content {
        min-height: 268px;
        padding-top: 125px;
    }
    .simple-breadcrumb-wrap {
        width: calc(100% - 40px);
    }
    .simple-breadcrumb {
        gap: 8px;
        font-size: .72rem;
    }
    .simple-page-title {
        margin-top: 46px;
        margin-bottom: 25px;
        font-size: 35px;
    }
    .at-glance-page-hero {
        min-height: 300px;
        padding-top: 125px;
    }
    .at-glance-page-hero .simple-breadcrumb-wrap {
        width: calc(100% - 40px);
    }
    .at-glance-page-hero .simple-page-title {
        margin-top: 52px;
        font-size: 43px;
    }
}


/* Replace old broken arrow characters with Font Awesome arrows. */

.srcs-btn-arrow,
.srcc-arrow,
.carousel-btn.prev-btn,
.carousel-btn.next-btn {
    font-size: 0 !important;
}

.srcs-btn-arrow::before,
.srcc-arrow::before,
.carousel-btn.next-btn::before,
.carousel-btn.prev-btn::before {
    font-family: "Font Awesome 6 Free";
    font-size: 1rem;
    font-weight: 900;
    line-height: 1;
}

.srcs-btn-arrow::before,
.srcc-arrow::before,
.carousel-btn.next-btn::before {
    content: "\f061";
}

.carousel-btn.prev-btn::before {
    content: "\f060";
}


/* FAQ: phone layout must always remain a single, full-width column. */

@media (max-width: 767px) {
    .faq-modern {
        overflow: hidden;
        padding: 34px 16px 42px;
    }
    .faq-modern .container,
    .faq-layout,
    .faq-contact-card,
    .faq-list {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
    }
    .faq-layout {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 24px !important;
    }
    .faq-heading h2 {
        font-size: clamp(32px, 9.3vw, 38px) !important;
        line-height: 1.07;
    }
    .faq-heading h2 em {
        display: block;
        margin: 2px 0 0 !important;
        font-size: 1.08em !important;
    }
    .faq-contact-card {
        min-height: 590px !important;
    }
    .faq-contact-card .faq-left-content {
        top: 54px;
    }
    .faq-contact-card .faq-support-points {
        top: 208px;
    }
    .faq-contact-card .faq-help-box {
        display: flex;
        bottom: 24px;
    }
    .faq-list {
        display: flex !important;
        flex-direction: column;
        gap: 10px;
    }
    .faq-item,
    .faq-question {
        width: 100% !important;
        min-width: 0 !important;
    }
    .faq-question {
        padding: 13px 12px !important;
    }
    .faq-question-text {
        min-width: 0;
        font-size: 14px !important;
        overflow-wrap: anywhere;
    }
}


/* Desktop navigation mega menus */

@media (min-width: 1200px) {
    .main-header {
        padding: .7rem 0;
    }
    .main-header .header-container {
        justify-content: flex-start;
        gap: clamp(26px, 3vw, 58px);
        min-height: 64px;
    }
    .main-header .brand-logo-image {
        width: 190px;
        max-height: 66px;
    }
    .desktop-nav {
        display: block;
        flex: 1;
    }
    .desktop-nav ul {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: clamp(15px, 1.55vw, 28px);
    }
    .desktop-nav li.has-mega-menu {
        position: static;
    }
    .desktop-nav li.has-mega-menu>a {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 16px 0;
        font-size: .78rem;
        font-weight: 600;
        letter-spacing: .1px;
        text-transform: uppercase;
        text-decoration: none;
        white-space: nowrap;
    }
    .desktop-nav li.has-mega-menu>a i {
        font-size: .56rem;
        transition: transform .25s ease;
    }
    .mega-menu {
        position: fixed;
        top: 80px;
        left: 0;
        z-index: 999;
        width: 100%;
        padding: 0 44px;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
    }
    .mega-menu-inner {
        display: grid;
        grid-template-columns: minmax(180px, 1fr) minmax(180px, 1fr) minmax(260px, 1.08fr);
        width: min(1280px, 100%);
        margin: 0 auto;
        overflow: hidden;
        border: 1px solid rgba(255, 213, 74, .16);
        border-top: 3px solid #e8bf26;
        border-radius: 0 0 16px 16px;
        background: linear-gradient(110deg, #154a1d, #0c3818 75%);
        box-shadow: 0 22px 48px rgba(4, 33, 15, .3);
    }
    .mega-links {
        padding: 16px 24px;
    }
    .mega-links+.mega-links {
        border-left: 1px solid rgba(255, 255, 255, .12);
    }
    .mega-links a {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, .42);
        color: rgba(255, 255, 255, .8) !important;
        font-size: .78rem;
        font-weight: 500;
        line-height: 1.2;
        text-decoration: none;
        text-transform: none;
        transition: color .2s ease, padding-left .2s ease;
    }
    .mega-links a:last-child {
        border-bottom: 0;
    }
    .mega-links a:hover {
        padding-left: 7px;
        color: #ffd54a !important;
    }
    .mega-feature {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 22px 28px;
        background: radial-gradient(circle at 92% 15%, rgba(239, 193, 42, .18), transparent 38%);
        color: #fff;
    }
    .mega-feature span {
        margin-bottom: 8px;
        color: #f3c332;
        font-size: .66rem;
        font-weight: 700;
        letter-spacing: 1.7px;
    }
    .mega-feature strong {
        max-width: 290px;
        font-family: "Cormorant Garamond", Georgia, serif;
        font-size: 1.55rem;
        font-weight: 600;
        line-height: 1.05;
    }
    .mega-feature p {
        max-width: 310px;
        margin: 10px 0 0;
        color: rgba(255, 255, 255, .72);
        font-size: .78rem;
        line-height: 1.55;
    }
    .desktop-nav li.has-mega-menu:hover .mega-menu,
    .desktop-nav li.has-mega-menu:focus-within .mega-menu {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
    .desktop-nav li.has-mega-menu:hover>a i,
    .desktop-nav li.has-mega-menu:focus-within>a i {
        transform: rotate(180deg);
    }
    .main-header.scrolled .desktop-nav li.has-mega-menu>a {
        color: #103d29;
    }
}


/* Sidebar navigation accordion */

.sidebar-menu-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: .9rem 2rem;
    border: 0;
    border-left: 2px solid transparent;
    background: transparent;
    color: rgba(255, 255, 255, .78);
    font: inherit;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: .3px;
    text-align: left;
    cursor: pointer;
    transition: color .25s ease, background .25s ease, padding-left .25s ease;
}

.sidebar-nav-links {
    display: flex;
    flex-direction: column;
}

.sidebar-nav-links>li:nth-child(1) {
    order: 1;
}

.sidebar-nav-links>li:nth-child(6) {
    order: 2;
}

.sidebar-nav-links>li:nth-child(2) {
    order: 3;
}

.sidebar-nav-links>li:nth-child(4) {
    order: 4;
}

.sidebar-nav-links>li:nth-child(5) {
    order: 5;
}

.sidebar-nav-links>li:nth-child(3) {
    order: 6;
}

.sidebar-nav-links>li:nth-child(7) {
    order: 7;
}

.sidebar-menu-toggle .nav-num {
    margin-right: 0;
}

.sidebar-menu-toggle i {
    margin-left: auto;
    color: rgba(255, 255, 255, .42);
    font-size: .72rem;
    transition: transform .25s ease, color .25s ease;
}

.sidebar-menu-toggle:hover,
.has-sidebar-submenu.submenu-open .sidebar-menu-toggle {
    padding-left: 2.4rem;
    border-left-color: var(--secondary-gold);
    background: rgba(255, 255, 255, .035);
    color: #fff;
}

.has-sidebar-submenu.submenu-open .sidebar-menu-toggle i {
    color: var(--secondary-gold);
    transform: rotate(180deg);
}

.sidebar-submenu {
    display: block;
    max-height: 0;
    margin: 0;
    padding: 0 2rem;
    overflow: hidden;
    list-style: none;
    transition: max-height .35s ease, padding-bottom .35s ease;
}

.sidebar-submenu>li {
    display: block;
}

.sidebar-submenu a {
    display: block;
    padding: 8px 0 8px 3.2rem;
    border: 0 !important;
    color: rgba(255, 255, 255, .58) !important;
    font-size: 15px;
    font-weight: 400 !important;
    line-height: 1.25;
    text-decoration: none;
}

.sidebar-submenu a::after {
    display: none;
}

.sidebar-submenu a:hover {
    padding-left: 3.5rem !important;
    background: transparent !important;
    color: var(--secondary-gold) !important;
}

.has-sidebar-submenu.submenu-open .sidebar-submenu {
    max-height: 700px;
    padding-bottom: 8px;
}


/* Mega panels are intentionally disabled: navigation details live in the sidebar. */

@media (min-width: 1200px) {
    .desktop-nav {
        display: none !important;
    }
    .main-header {
        padding: 1.5rem 0;
    }
    .main-header .header-container {
        justify-content: left;
        gap: 0;
        min-height: 0;
    }
    .main-header .brand-logo-image {
        width: 230px;
        max-height: 82px;
    }
}


/* FAQ contact card: final aligned layout */

.faq-contact-card {
    background: radial-gradient(ellipse at 50% -8%, rgba(64, 127, 77, .22), transparent 42%), radial-gradient(ellipse at 50% 108%, rgba(95, 159, 105, .25), transparent 46%), linear-gradient(180deg, #eff7ef 0%, #ffffff 31%, #ffffff 67%, #eef7ee 100%);
}

.faq-contact-card::before,
.faq-contact-card::after {
    content: none;
}

.faq-contact-card .faq-left-content {
    position: absolute;
    top: 92px;
    left: 50%;
    z-index: 2;
    width: calc(100% - 56px);
    max-width: 330px;
    padding: 0 !important;
    text-align: center;
    transform: translateX(-50%);
}

.faq-contact-card .faq-left-content p {
    margin: 14px auto 0;
}

.faq-contact-card .faq-support-points {
    position: absolute;
    top: 285px;
    left: 50%;
    right: auto;
    z-index: 2;
    width: 270px;
    display: grid;
    gap: 14px;
    transform: translateX(-50%);
}

.faq-contact-card .faq-support-points span {
    display: grid;
    grid-template-columns: 34px 1fr;
    align-items: center;
    column-gap: 14px;
    color: #315f3f;
    padding-top: 22px;
    font-size: 14px;
    font-weight: 650;
    letter-spacing: .1px;
    text-align: left;
}

.faq-contact-card .faq-support-points span i {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #fff8dc, #f4e7b2);
    color: #316540;
    font-size: 15px;
    box-shadow: 0 5px 12px rgba(49, 95, 63, .08);
}

.faq-contact-card .faq-help-box {
    left: 50%;
    width: calc(100% - 84px);
    max-width: 360px;
    transform: translateX(-50%);
}

@media (max-width: 767px) {
    .faq-contact-card {
        min-height: 500px;
    }
    .faq-contact-card .faq-left-content {
        top: 58px;
        width: calc(100% - 40px);
    }
    .faq-contact-card .faq-left-content h3 {
        font-size: 38px;
    }
    .faq-contact-card .faq-left-content p {
        font-size: 15px;
        line-height: 1.55;
    }
    .faq-contact-card .faq-support-points {
        top: 215px;
        width: min(270px, calc(100% - 54px));
        gap: 11px;
    }
    .faq-contact-card .faq-help-box {
        bottom: 22px;
        width: calc(100% - 40px);
        padding: 18px 20px;
    }
}


/* =========================================
   BOARD OF GOVERNORS SECTION
========================================= */

.governors-section {
    position: relative;
    overflow: hidden;
    padding: 50px 0 50px;
    background: #faf9f5;
    font-family: "DM Sans", sans-serif;
}

.governors-container {
    width: min(1240px, calc(100% - 60px));
    margin: 0 auto;
}


/* =========================================
   HEADING
========================================= */

.governors-heading {
    text-align: center;
    margin-bottom: 65px;
}

.governors-heading-icon {
    width: 34px;
    height: 34px;
    margin: 0 auto 12px;
    position: relative;
}

.governors-heading-icon:before,
.governors-heading-icon:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    border: 2px solid #c59a45;
}

.governors-heading-icon:before {
    width: 17px;
    height: 17px;
    transform: translate(-50%, -50%) rotate(45deg);
}

.governors-heading-icon:after {
    width: 9px;
    height: 9px;
    border-width: 1px;
    transform: translate(-50%, -50%) rotate(45deg);
}

.governors-heading-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.governors-heading-line span {
    width: 48px;
    height: 1px;
    background: #c59a45;
}

.governors-heading-line h5 {
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #202421;
}

.governors-heading h2 {
    margin: 15px 0 0;
    font-size: 55px;
    line-height: 0.98;
    font-weight: 500;
    letter-spacing: 2px;
    color: #075c43;
}

.governors-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.governors-subtitle span {
    width: 45px;
    height: 1px;
    background: #c59a45;
}

.governors-subtitle p {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    color: #202421;
}


/* =========================================
   GOVERNOR CARD
========================================= */

.governor-card {
    position: relative;
    display: grid;
    grid-template-columns: 43% 57%;
    min-height: 455px;
    margin-bottom: 30px;
    background: #ffffff;
    border: 1px solid #e7e5df;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(26, 43, 35, 0.07);
    transition: all 0.35s ease;
}

.governor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 55px rgba(26, 43, 35, 0.11);
}


/* =========================================
   IMAGE
========================================= */

.governor-image {
    position: relative;
    min-height: 455px;
    overflow: hidden;
    background: #dfe6e2;
}

.governor-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s ease;
}

.governor-card:hover .governor-image img {
    transform: scale(1.025);
}


/* Curved image edge */

.chairman-card .governor-image {
    clip-path: ellipse(100% 100% at 0% 50%);
}

.director-card .governor-image {
    clip-path: ellipse(100% 100% at 100% 50%);
}


/* Image bottom green line */

.governor-image-line {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 10px;
    background: #075c43;
    z-index: 3;
}


/* Gold vertical accent */

.chairman-card .governor-image:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: #c59a45;
}

.director-card .governor-image:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: #c59a45;
}


/* =========================================
   CONTENT
========================================= */

.governor-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 55px 70px 50px;
    background: radial-gradient( circle at 90% 10%, rgba(197, 154, 69, 0.06), transparent 25%), #ffffff;
}


/* =========================================
   QUOTE
========================================= */

.governor-quote-mark {
    font-family: Georgia, serif;
    font-size: 92px;
    line-height: 0.45;
    color: #c59a45;
    height: 30px;
    margin-bottom: 17px;
    opacity: 0.9;
}

.governor-content blockquote {
    max-width: 620px;
    margin: 0;
    font-size: 26px;
    line-height: 1.32;
    font-weight: 500;
    letter-spacing: 1px;
    color: #075c43;
}

.governor-quote-author {
    margin-top: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #202421;
}


/* =========================================
   DIVIDER
========================================= */

.governor-divider {
    position: relative;
    width: 55px;
    height: 2px;
    margin: 22px 0 21px;
    background: #c59a45;
}

.governor-divider:after {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    top: 50%;
    left: 50%;
    background: #c59a45;
    transform: translate(-50%, -50%) rotate(45deg);
}


/* =========================================
   DESCRIPTION
========================================= */

.governor-description {
    max-width: 670px;
}

.governor-description p {
    margin: 0 0 15px;
    font-size: 16px;
    line-height: 1.75;
    color: #383c39;
}

.governor-description p:last-child {
    margin-bottom: 0;
}


/* =========================================
   PERSON INFO
========================================= */

.governor-person {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
}

.governor-person-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #075c43;
    box-shadow: 0 7px 15px rgba(7, 92, 67, 0.14);
}

.governor-person-icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.governor-person h3 {
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: 23px;
    line-height: 1.1;
    font-weight: 600;
    color: #075c43;
}

.governor-person p {
    margin: 4px 0 0;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1.8px;
    color: #202421;
}


/* =========================================
   DIRECTOR CARD
========================================= */

.director-card {
    grid-template-columns: 57% 43%;
}

.director-card .governor-content {
    padding-left: 75px;
    padding-right: 70px;
}

.director-quote {
    color: #075c43;
    font-size: 72px;
    margin-bottom: 5px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {
    .governors-container {
        width: min(94%, 1000px);
    }
    .governor-content {
        padding: 45px;
    }
    .director-card .governor-content {
        padding-left: 45px;
        padding-right: 45px;
    }
    .governor-content blockquote {
        font-size: 23px;
    }
    .governor-description p {
        font-size: 14px;
        line-height: 1.65;
    }
}


/* =========================================
   TABLET / SMALL LAPTOP
========================================= */

@media (max-width: 850px) {
    .governors-section {
        padding: 70px 0 80px;
    }
    .governors-heading {
        margin-bottom: 45px;
    }
    .governors-heading h2 {
        font-size: 58px;
    }
    .governor-card,
    .director-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .chairman-card .governor-image,
    .director-card .governor-image {
        clip-path: none;
        min-height: 420px;
        height: 420px;
    }
    .director-card .governor-image {
        grid-row: 1;
    }
    .director-card .governor-content {
        grid-row: 2;
    }
    .governor-content,
    .director-card .governor-content {
        padding: 45px;
    }
    .governor-content blockquote {
        font-size: 25px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {
    .governors-section {
        padding: 55px 0 20px;
    }
    .governors-container {
        width: calc(100% - 30px);
    }
    .governors-heading {
        margin-bottom: 35px;
    }
    .governors-heading-icon {
        margin-bottom: 8px;
    }
    .governors-heading-line {
        gap: 10px;
    }
    .governors-heading-line span {
        width: 25px;
    }
    .governors-heading-line h5 {
        font-size: 14px;
        letter-spacing: 2px;
    }
    .governors-heading h2 {
        font-size: 42px;
        letter-spacing: 1px;
    }
    .governors-subtitle {
        gap: 8px;
        margin-top: 16px;
    }
    .governors-subtitle span {
        width: 22px;
    }
    .governors-subtitle p {
        font-size: 12px;
    }
    .governor-card {
        margin-bottom: 22px;
        border-radius: 13px;
    }
    .chairman-card .governor-image,
    .director-card .governor-image {
        height: 340px;
        min-height: 340px;
    }
    .governor-content,
    .director-card .governor-content {
        padding: 35px 25px 32px;
    }
    .governor-quote-mark {
        font-size: 68px;
        margin-bottom: 12px;
    }
    .governor-content blockquote {
        font-size: 20px;
        line-height: 1.4;
    }
    .governor-quote-author {
        font-size: 12px;
        margin-top: 8px;
    }
    .governor-divider {
        margin: 19px 0;
    }
    .governor-description p {
        font-size: 13.5px;
        line-height: 1.7;
        margin-bottom: 13px;
    }
    .governor-person {
        margin-top: 22px;
        gap: 12px;
    }
    .governor-person-icon {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }
    .governor-person-icon svg {
        width: 20px;
        height: 20px;
    }
    .governor-person h3 {
        font-size: 19px;
    }
    .governor-person p {
        font-size: 10px;
        letter-spacing: 1.5px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 380px) {
    .governors-heading h2 {
        font-size: 36px;
    }
    .governors-heading-line h5 {
        font-size: 12px;
    }
    .governors-subtitle p {
        font-size: 11px;
    }
    .chairman-card .governor-image,
    .director-card .governor-image {
        height: 290px;
        min-height: 290px;
    }
    .governor-content,
    .director-card .governor-content {
        padding: 30px 20px;
    }
    .governor-content blockquote {
        font-size: 18px;
    }
    .governor-description p {
        font-size: 13px;
    }
}


/* =========================================
   LEADERSHIP SHOWCASE
========================================= */

.leadership-showcase {
    position: relative;
    padding: 50px 20px;
    background: #f6f7f1;
    overflow: hidden;
}


/* Decorative Background */

.leadership-showcase::before {
    content: "LEADERSHIP";
    position: absolute;
    top: 30px;
    right: -80px;
    font-size: 150px;
    font-weight: 700;
    letter-spacing: 10px;
    color: rgba(8, 75, 49, 0.025);
    pointer-events: none;
}


/* =========================================
   WRAPPER
========================================= */

.leadership-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1460px;
    margin: 0 auto;
}


/* =========================================
   SECTION HEADER
========================================= */

.leadership-header {
    text-align: center;
    margin-bottom: 100px;
}

.leadership-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 18px;
    color: #b08a3b;
    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
}

.leadership-label span {
    display: block;
    width: 35px;
    height: 1px;
    background: #b08a3b;
}

.leadership-header h2 {
    margin: 0;
    color: #000;
    font-size: 55px;
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -3px;
}

.leadership-header h2 em {
    color: #f8d04d;
    font-style: normal;
    font-weight: 400;
}


/* =========================================
   LEADER ROW
========================================= */

.leader-row {
    position: relative;
    display: grid;
    grid-template-columns: minmax(460px, .95fr) minmax(520px, 1.05fr);
    gap: 54px;
    align-items: center;
    margin-bottom: 90px;
    padding: 34px;
    background: linear-gradient(135deg, #ffffff 0%, #f7faf4 100%);
    border: 1px solid rgba(8, 75, 49, .12);
    border-radius: 30px 0px 30px;
    box-shadow: 0 22px 55px rgba(8, 75, 49, .14), 0 6px 18px rgba(8, 75, 49, .08);
    overflow: hidden;
    transition: box-shadow .35s ease, transform .35s ease;
}


/* =========================================
   OUR FACULTY PAGE
========================================= */

.faculty-page {
    background: #fff;
    color: #08291d;
}

.faculty-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 170px 24px 95px;
    background: linear-gradient(90deg, rgba(2, 39, 24, .98) 0%, rgba(5, 61, 36, .92) 54%, rgba(248, 208, 77, .18) 100%), url('../images/sectionbg-1.png') center / cover no-repeat;
}

.faculty-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(circle at 86% 18%, rgba(248, 208, 77, .3), transparent 23%), linear-gradient(135deg, rgba(255, 255, 255, .06), transparent 52%);
}

.faculty-hero-inner,
.faculty-featured,
.faculty-directory-shell,
.faculty-support,
.faculty-careers {
    width: min(1460px, calc(100% - 64px));
    margin: 0 auto;
}

.faculty-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 11px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, .72);
    font-size: .84rem;
    font-weight: 500;
}

.faculty-breadcrumb a {
    color: rgba(255, 255, 255, .82);
    text-decoration: none;
}

.faculty-breadcrumb i,
.faculty-breadcrumb span {
    color: #f8d04d;
}

.faculty-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #b08a3b;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.faculty-kicker i {
    display: inline-block;
    width: 44px;
    height: 2px;
    background: currentColor;
}

.faculty-hero h2 {
    max-width: 820px;
    margin: 20px 0 22px;
    color: #ffffff;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 74px;
    font-weight: 500;
    line-height: .96;
    letter-spacing: 0;
}

.faculty-hero h2 span {
    color: #f8d04d;
}

.faculty-hero p {
    max-width: 690px;
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: 18px;
    line-height: 1.7;
}

.faculty-section-head h2,
.faculty-support-head h2,
.faculty-careers h2 {
    margin: 16px 0 0;
    color: #08291d;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: 0;
}

.faculty-featured,
.faculty-directory-section,
.faculty-support,
.faculty-careers {
    padding: 92px 0;
}

.faculty-section-head {
    max-width: 1180px;
    margin-bottom: 40px;
}

.faculty-section-head-light h2,
.faculty-section-head-light .faculty-kicker {
    color: #ffffff;
}

.faculty-section-head-light .faculty-kicker {
    color: #f8d04d;
}

.faculty-directory-title {
    white-space: nowrap;
}

.faculty-directory-title span {
    color: #f8d04d;
}

.faculty-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.faculty-feature-card {
    display: grid;
    grid-template-columns: 180px 1fr;
    min-height: 265px;
    background: #ffffff;
    border: 1px solid rgba(8, 75, 49, .12);
    border-radius: 26px 0 26px 0;
    overflow: hidden;
    box-shadow: 0 22px 60px rgba(8, 75, 49, .1);
    transition: transform .3s ease, box-shadow .3s ease;
}

.faculty-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 34px 80px rgba(8, 75, 49, .15);
}

.faculty-feature-image {
    position: relative;
    min-height: 100%;
    background: #084b31;
}

.faculty-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.95);
}

.faculty-feature-image span {
    position: absolute;
    left: 16px;
    bottom: 16px;
    padding: 8px 11px;
    color: #08291d;
    background: #f8d04d;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
}

.faculty-feature-body {
    padding: 28px 26px;
}

.faculty-feature-body p:first-child,
.faculty-mini-card p,
.faculty-admin-grid p {
    margin: 0;
    color: #b08a3b;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.faculty-feature-body h3,
.faculty-mini-card h3,
.faculty-admin-grid h3 {
    margin: 11px 0 8px;
    color: #084b31;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: 0;
}

.faculty-feature-body small,
.faculty-mini-card span {
    color: #52615a;
    font-size: 14px;
    line-height: 1.45;
}

.faculty-card-line {
    width: 54px;
    height: 2px;
    margin: 18px 0;
    background: #f8d04d;
}

.faculty-note {
    margin: 0;
    color: #42534b;
    font-size: 14px;
    line-height: 1.65;
}

.faculty-directory-section {
    background: linear-gradient(135deg, rgba(2, 39, 24, .97), rgba(8, 75, 49, .95)), url('../images/prelaoder-bg.png') center / cover no-repeat;
}

.faculty-filter-card {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
    gap: 14px;
    align-items: end;
    margin-bottom: 32px;
    padding: 20px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 22px;
    backdrop-filter: blur(14px);
}

.faculty-filter-card label {
    display: grid;
    gap: 8px;
}

.faculty-filter-card span {
    color: rgba(255, 255, 255, .8);
    font-size: 12px;
    font-weight: 700;
}

.faculty-filter-card input,
.faculty-filter-card select {
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    color: #ffffff;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 14px;
    outline: 0;
}

.faculty-filter-card input::placeholder {
    color: rgba(255, 255, 255, .54);
}

.faculty-filter-card select option {
    color: #08291d;
}

.faculty-filter-card button,
.faculty-careers-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 52px;
    padding: 0 24px;
    color: #08291d;
    background: #f8d04d;
    border: 0;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.faculty-directory-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.faculty-card-hidden {
    display: none !important;
}

.faculty-card-hidden.faculty-card-visible {
    display: grid !important;
}

.faculty-load-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 34px auto 0;
    min-height: 52px;
    padding: 0 26px;
    border: 1px solid #f8d04d;
    border-radius: 999px;
    background: transparent;
    color: #f8d04d;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    transition: background .25s ease, color .25s ease, transform .25s ease;
}

.faculty-load-more:hover {
    background: #f8d04d;
    color: #08291d;
    transform: translateY(-2px);
}

.faculty-mini-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: stretch;
    min-height: 0;
    padding: 0;
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(248, 208, 77, .14);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 48px rgba(2, 39, 24, .1);
    transition: transform .3s ease, box-shadow .3s ease;
}

.faculty-mini-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 66px rgba(2, 39, 24, .16);
}

.faculty-avatar {
    position: relative;
    width: 100%;
    height: 260px;
    background: #084b31;
    border-radius: 0;
    overflow: hidden;
}

.faculty-avatar img,
.faculty-admin-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.faculty-avatar span,
.faculty-admin-photo span {
    position: absolute;
    left: 10px;
    bottom: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 28px;
    padding: 0 9px;
    color: #08291d;
    background: #f8d04d;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
}

.faculty-mini-card h3 {
    font-size: 27px;
}

.faculty-mini-card>div:last-child {
    padding: 22px 24px 24px;
}

.faculty-support-head {
    max-width: 780px;
    margin-bottom: 34px;
}

.faculty-support-head p,
.faculty-careers p {
    max-width: 720px;
    margin: 18px 0 0;
    color: #52615a;
    font-size: 17px;
    line-height: 1.7;
}

.faculty-admin-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.faculty-admin-grid article {
    padding: 24px;
    background: #ffffff;
    border: 1px solid rgba(8, 75, 49, .1);
    border-radius: 20px;
    box-shadow: 0 18px 55px rgba(8, 75, 49, .08);
}

.faculty-admin-photo {
    position: relative;
    width: 100%;
    height: 210px;
    margin-bottom: 20px;
    background: #084b31;
    border-radius: 16px;
    overflow: hidden;
}

.faculty-admin-grid h3 {
    font-size: 24px;
}

.faculty-support-banner {
    width: min(1460px, calc(100% - 64px));
    margin: 0 auto;
    padding: 28px 0 30px;
}

.faculty-support-banner-head {
    max-width: 850px;
    margin: 0 auto 34px;
    text-align: center;
}

.faculty-support-banner-head .faculty-kicker {
    justify-content: center;
}

.faculty-support-banner-head h2 {
    margin: 16px 0;
    color: #084b31;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: 0;
}

.faculty-support-banner-head p {
    margin: 0 auto;
    max-width: 780px;
    color: #52615a;
    font-size: 17px;
    line-height: 1.7;
}

.faculty-support-banner-image {
    position: relative;
    overflow: hidden;
    border-radius: 32px 0 32px 0;
    box-shadow: 0 30px 90px rgba(8, 75, 49, .16);
}

.faculty-support-banner-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 48%, rgba(2, 39, 24, .72) 100%);
    pointer-events: none;
}

.faculty-support-banner-image img {
    display: block;
    width: 100%;
    height: 590px;
    object-fit: cover;
}

.faculty-support-banner-badge {
    position: absolute;
    left: 34px;
    bottom: 34px;
    z-index: 1;
    max-width: 360px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 18px;
    backdrop-filter: blur(12px);
}

.faculty-support-banner-badge strong {
    display: block;
    color: #f8d04d;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 1;
}

.faculty-support-banner-badge span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, .9);
    font-size: 14px;
    line-height: 1.45;
}

.faculty-careers {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
    padding: 48px;
    background: linear-gradient(135deg, #ffffff, #eef6ec);
    border: 1px solid rgba(8, 75, 49, .12);
    border-radius: 30px 0 30px 0;
    box-shadow: 0 24px 70px rgba(8, 75, 49, .1);
}

.faculty-careers p a {
    color: #084b31;
    font-weight: 800;
}

.faculty-job-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease, visibility .25s ease;
}

.faculty-job-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.faculty-job-modal-open {
    overflow: hidden;
}

.faculty-job-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 18, 12, .76);
    backdrop-filter: blur(8px);
}

.faculty-job-dialog {
    position: relative;
    z-index: 1;
    width: min(880px, 100%);
    max-height: min(86vh, 820px);
    overflow: auto;
    padding: 42px;
    background: linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(242, 248, 239, .98)), url('../images/sectionbg-1.png') right bottom / 55% auto no-repeat;
    border: 1px solid rgba(248, 208, 77, .32);
    border-radius: 30px 0 30px 0;
    box-shadow: 0 40px 110px rgba(0, 0, 0, .34);
    transform: translateY(18px) scale(.98);
    transition: transform .25s ease;
}

.faculty-job-modal.is-open .faculty-job-dialog {
    transform: translateY(0) scale(1);
}

.faculty-job-close {
    position: absolute;
    top: 22px;
    right: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: #ffffff;
    background: #084b31;
    border: 0;
    border-radius: 50%;
}

.faculty-job-dialog h2 {
    margin: 16px 0 16px;
    color: #084b31;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 52px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
}

.faculty-job-intro {
    max-width: 760px;
    margin: 0 0 24px;
    color: #26342e;
    font-size: 17px;
    line-height: 1.75;
}

.faculty-job-list {
    display: grid;
    gap: 16px;
}

.faculty-job-list article {
    padding: 22px 24px;
    background: rgba(255, 255, 255, .86);
    border: 1px solid rgba(8, 75, 49, .1);
    border-left: 4px solid #f8d04d;
    border-radius: 18px;
    box-shadow: 0 16px 42px rgba(8, 75, 49, .08);
}

.faculty-job-list h3 {
    margin: 0 0 10px;
    color: #084b31;
    font-size: 20px;
    font-weight: 800;
}

.faculty-job-list ul {
    display: grid;
    gap: 7px;
    margin: 0;
    padding-left: 20px;
    color: #26342e;
    font-size: 15px;
    line-height: 1.5;
}

.faculty-job-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 24px;
    padding: 20px 22px;
    background: #084b31;
    border-radius: 18px;
}

.faculty-job-footer p {
    margin: 0;
    color: rgba(255, 255, 255, .86);
    font-size: 15px;
    line-height: 1.5;
}

.faculty-job-footer p a {
    color: #f8d04d;
    font-weight: 800;
}

.faculty-job-footer>a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 18px;
    color: #08291d;
    background: #f8d04d;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 850;
    text-decoration: none;
    white-space: nowrap;
}

@media (max-width: 1200px) {
    .faculty-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .faculty-directory-grid,
    .faculty-admin-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .faculty-filter-card {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .faculty-hero {
        padding: 145px 20px 78px;
    }
    .faculty-hero-inner,
    .faculty-featured,
    .faculty-directory-shell,
    .faculty-support,
    .faculty-support-banner,
    .faculty-careers {
        width: min(100% - 36px, 760px);
    }
    .faculty-hero h2 {
        font-size: 56px;
    }
    .faculty-careers {
        grid-template-columns: 1fr;
    }
    .faculty-directory-grid,
    .faculty-admin-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .faculty-support-banner-image img {
        height: 430px;
    }
    .faculty-careers {
        flex-direction: column;
        align-items: flex-start;
    }
    .faculty-job-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 650px) {
    .faculty-hero {
        padding: 128px 18px 64px;
    }
    .faculty-hero h2 {
        font-size: 43px;
    }
    .faculty-hero p,
    .faculty-support-head p,
    .faculty-careers p {
        font-size: 15px;
    }
    .faculty-careers {
        padding: 28px 22px;
        border-radius: 24px 0 24px 0;
    }
    .faculty-job-modal {
        padding: 16px;
    }
    .faculty-job-dialog {
        padding: 30px 20px 22px;
        border-radius: 24px 0 24px 0;
    }
    .faculty-job-dialog h2 {
        font-size: 38px;
    }
    .faculty-job-intro {
        font-size: 15px;
    }
    .faculty-job-close {
        top: 14px;
        right: 14px;
        width: 38px;
        height: 38px;
    }
    .faculty-section-head h2,
    .faculty-support-head h2,
    .faculty-support-banner-head h2,
    .faculty-careers h2 {
        font-size: 36px;
    }
    .faculty-directory-title {
        white-space: normal;
    }
    .faculty-feature-grid,
    .faculty-directory-grid,
    .faculty-admin-grid,
    .faculty-filter-card {
        grid-template-columns: 1fr;
    }
    .faculty-feature-card {
        grid-template-columns: 1fr;
    }
    .faculty-feature-image {
        height: 310px;
    }
    .faculty-featured,
    .faculty-directory-section,
    .faculty-support {
        padding: 68px 0;
    }
    .faculty-support-banner {
        padding: 8px 0 68px;
    }
    .faculty-support-banner-image {
        border-radius: 24px 0 24px 0;
    }
    .faculty-support-banner-image img {
        height: 300px;
    }
    .faculty-support-banner-badge {
        left: 18px;
        right: 18px;
        bottom: 18px;
        max-width: none;
    }
    .faculty-mini-card {
        grid-template-columns: 1fr;
    }
    .faculty-avatar {
        width: 100%;
        height: 285px;
    }
    .faculty-admin-photo {
        height: 260px;
    }
}

.leader-row:hover {
    transform: translateY(-4px);
    box-shadow: 0 34px 80px rgba(8, 75, 49, .18), 0 10px 26px rgba(8, 75, 49, .1);
}

.leader-row.reverse {
    grid-template-columns: minmax(520px, 1.05fr) minmax(460px, .95fr);
}


/* Reverse image and content */

.leader-row.reverse .leader-photo {
    order: 2;
}

.leader-row.reverse .leader-content {
    order: 1;
}


/* =========================================
   PHOTO
========================================= */

.leader-photo {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 460px;
    overflow: hidden;
    border-radius: 26px;
}

.leader-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 26px;
    filter: saturate(0.92);
    box-shadow: none;
    transition: transform 0.7s ease, filter 0.5s ease;
}

.leader-row:hover .leader-photo img {
    transform: scale(1.035);
    filter: saturate(1);
}


/* =========================================
   CONTENT
========================================= */

.leader-content {
    position: relative;
    z-index: 2;
    max-width: none;
    margin-left: 0;
    padding: 18px 12px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
}

.leader-row.reverse .leader-content {
    margin-left: 0;
    margin-right: 0;
}

.leader-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 74px;
    height: 3px;
    background: #b08a3b;
    border-radius: 999px;
}

.leader-content::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 4px;
    width: 96px;
    height: 96px;
    border: 1px solid rgba(176, 138, 59, .16);
    border-radius: 50%;
    background: transparent;
    pointer-events: none;
}

.leader-role {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: #b08a3b;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.4;
}

.leader-role::before {
    content: "";
    width: 36px;
    height: 2px;
    background: #b08a3b;
}

.sss {
    color: #000 !important
}


/* =========================================
   NAME
========================================= */

.leader-content h3 {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #084b31;
    font-size: 48px;
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: 0;
}


/* =========================================
   GOLD LINE
========================================= */

.gold-line {
    position: relative;
    z-index: 1;
    width: 68px;
    height: 2px;
    margin: 25px 0;
    background: #b08a3b;
    transition: width 0.4s ease;
}

.leader-row:hover .gold-line {
    width: 90px;
}


/* =========================================
   PARAGRAPH
========================================= */

.leader-content p {
    position: relative;
    z-index: 1;
    max-width: 100%;
    margin: 0;
    color: #26342e;
    font-size: 16px;
    line-height: 1.78;
}


/* =========================================
   PROFILE LINK
========================================= */

.leader-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    position: relative;
    z-index: 1;
    margin-top: 32px;
    padding: 13px 15px 13px 22px;
    color: #ffffff;
    background: #084b31;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 999px;
    box-shadow: 0 16px 34px rgba(8, 75, 49, .18);
    transition: transform .3s ease, background .3s ease;
}

.leader-link span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border: 1px solid rgba(248, 208, 77, .45);
    background: #f8d04d;
    color: #084b31;
    border-radius: 50%;
    font-size: 16px;
    transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

.leader-link:hover span {
    background: #084b31;
    color: #ffffff;
}

.leader-link:hover {
    background: #063b27;
    color: #ffffff;
}

.leader-link:hover span {
    transform: rotate(45deg);
}


/* =========================================
   SUBTLE ROW DIVIDER
========================================= */

.leader-row:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -60px;
    width: 1px;
    height: 35px;
    background: rgba(8, 75, 49, 0.15);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {
    .leadership-showcase {
        padding: 90px 25px;
    }
    .leadership-header {
        margin-bottom: 70px;
    }
    .leader-row,
    .leader-row.reverse {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
        margin-bottom: 90px;
        padding: 24px;
    }
    .leader-photo {
        height: 420px;
    }
    .leader-content,
    .leader-row.reverse .leader-content {
        margin-left: 0;
        margin-right: 0;
        padding: 12px 6px;
    }
    .leader-row.reverse .leader-content {
        margin-right: 0;
        margin-left: 0;
    }
    .leader-content h3 {
        font-size: 42px;
    }
    .leader-content p {
        font-size: 13px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {
    .leadership-showcase {
        padding: 30px 18px;
    }
    .leadership-showcase::before {
        font-size: 80px;
        right: -50px;
    }
    .leadership-header {
        margin-bottom: 55px;
    }
    .leadership-label {
        font-size: 8px;
        letter-spacing: 2px;
        gap: 8px;
    }
    .leadership-label span {
        width: 22px;
    }
    .leadership-header h2 {
        font-size: 45px;
        letter-spacing: 0;
    }
    /* Stack all profiles */
    .leader-row,
    .leader-row.reverse {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 26px;
        margin-bottom: 80px;
        padding: 18px;
        border-radius: 24px;
    }
    .leader-row.reverse .leader-photo,
    .leader-row.reverse .leader-content {
        order: unset;
    }
    /* Mobile image */
    .leader-photo {
        width: 100%;
        height: 360px;
        border-radius: 20px;
    }
    .leader-photo img {
        border-radius: 20px;
    }
    .leader-row:hover .leader-photo img {
        border-radius: 20px;
    }
    /* Mobile content */
    .leader-content {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        padding: 10px 2px 8px;
        border-radius: 0;
    }
    .leader-row.reverse .leader-content {
        margin-left: 0;
        margin-right: 0;
    }
    .leader-content h3 {
        font-size: 43px;
        letter-spacing: 0;
    }
    .leader-content p {
        max-width: 100%;
        font-size: 14px;
        line-height: 1.75;
    }
    .leader-role {
        font-size: 8px;
        letter-spacing: 2px;
    }
    .leader-link {
        margin-top: 22px;
    }
    .leader-row:not(:last-child)::after {
        left: 50%;
        bottom: -40px;
        height: 25px;
    }
}


/* =========================================================
   SRCS ABOUT / CAMPUS SECTION
========================================================= */

.srcs-about-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0 110px;
    background: #f7faf8;
    font-family: "DM Sans", sans-serif;
}

.srcs-about-container {
    width: min(1280px, calc(100% - 70px));
    margin: 0 auto;
}


/* =========================================================
   INTRO AREA
========================================================= */

.srcs-about-intro {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
    gap: 70px;
    margin-bottom: 70px;
}


/* =========================================================
   INTRO COPY
========================================================= */

.srcs-about-copy {
    position: relative;
}

.srcs-mini-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: #075c43;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.srcs-mini-label span {
    width: 35px;
    height: 2px;
    background: #c59a45;
}

.srcs-about-copy h2 {
    max-width: 720px;
    margin: 0;
    color: #183d31;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.18;
}

.srcs-about-copy h2 strong {
    color: #c29336;
    font-weight: 500;
}

.srcs-gold-line {
    position: relative;
    width: 60px;
    height: 2px;
    margin: 27px 0 25px;
    background: #c59a45;
}

.srcs-gold-line:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background: #c59a45;
    transform: translate(-50%, -50%) rotate(45deg);
}

.srcs-about-copy p {
    max-width: 760px;
    margin: 0 0 15px;
    color: #4c5550;
    font-size: 16px;
    line-height: 1.75;
}

.srcs-about-copy p:last-child {
    margin-bottom: 0;
}

.srcs-about-copy a {
    color: #c29336;
    font-weight: 700;
    text-decoration: none;
}

.srcs-about-copy a:hover {
    text-decoration: underline;
}


/* =========================================================
   CAMPUS VISUAL
========================================================= */

.srcs-campus-visual {
    position: relative;
    min-height: 530px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.srcs-campus-green-panel {
    position: absolute;
    top: 20px;
    right: -20px;
    width: 76%;
    height: 90%;
    border-radius: 30px 0 0 30px;
    background: #075c43;
}

.srcs-campus-green-panel:before {
    content: "";
    position: absolute;
    top: 40px;
    right: 30px;
    width: 90px;
    height: 90px;
    background-image: radial-gradient( #c59a45 1.5px, transparent 1.5px);
    background-size: 12px 12px;
    opacity: 0.8;
}

.srcs-campus-image {
    position: relative;
    z-index: 2;
    width: 90%;
    height: 440px;
    margin-right: auto;
    overflow: hidden;
    border-radius: 25px;
    background: #ddd;
    border: 7px solid #ffffff;
    box-shadow: 0 25px 60px rgba(20, 50, 40, 0.15);
}

.srcs-campus-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.srcs-campus-image:hover img {
    transform: scale(1.04);
}


/* =========================================================
   CAMPUS BADGE
========================================================= */

.srcs-campus-badge {
    position: absolute;
    z-index: 4;
    right: 5%;
    bottom: 35px;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #075c43;
    border: 4px solid #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.16);
}

.srcs-campus-badge span {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #c59a45;
    border-radius: 50%;
    color: #c59a45;
    font-size: 22px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {
    .srcs-about-container {
        width: min(94%, 1000px);
    }
    .srcs-about-intro {
        grid-template-columns: 1fr 0.85fr;
        gap: 40px;
    }
    .srcs-campus-visual {
        min-height: 450px;
    }
    .srcs-campus-image {
        height: 360px;
    }
}


/* =========================================================
   TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 850px) {
    .srcs-about-section {
        padding: 70px 0 80px;
    }
    .srcs-about-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .srcs-about-copy h2 {
        max-width: 800px;
    }
    .srcs-campus-visual {
        min-height: 450px;
    }
    .srcs-campus-image {
        width: 90%;
        height: 400px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {
    .srcs-about-section {
        padding: 55px 0 65px;
    }
    .srcs-about-container {
        width: calc(100% - 30px);
    }
    .srcs-about-intro {
        margin-bottom: 45px;
    }
    .srcs-about-copy h2 {
        font-size: 32px;
        line-height: 1.25;
    }
    .srcs-about-copy p {
        font-size: 13px;
        line-height: 1.7;
    }
    /* Campus */
    .srcs-campus-visual {
        min-height: 330px;
    }
    .srcs-campus-green-panel {
        top: 10px;
        right: -10px;
        width: 75%;
        height: 90%;
    }
    .srcs-campus-image {
        width: 91%;
        height: 300px;
        border-width: 5px;
        border-radius: 18px;
    }
    .srcs-campus-badge {
        width: 58px;
        height: 58px;
        right: 3%;
        bottom: 15px;
    }
    .srcs-campus-badge span {
        width: 40px;
        height: 40px;
        font-size: 17px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */


/* Global heading font lock: h2 to h6 should remain Times New Roman */

h2,
h3,
h4,
h5,
h6 {
    font-family: "Times New Roman", Times, serif !important;
}

.moments-heading h2 span,
.faq-heading h2 em,
.faq-left-content h3 span {
    font-family: "Sacramento", cursive !important;
}

.glance-page {
    background: #f6f8f2;
    color: #08291d;
    overflow: hidden;
}


/* At A Glance page final polish */

.glance-page .srcs-about-section {
    padding: 95px 0 105px;
    background: radial-gradient(circle at 12% 12%, rgba(248, 208, 77, 0.12), transparent 22%), radial-gradient(circle at 88% 18%, rgba(7, 92, 67, 0.12), transparent 28%), #f7faf8;
}

.glance-page .srcs-about-container {
    width: min(1500px, calc(100% - 72px));
}

.glance-page .srcs-about-intro {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.9fr);
    gap: 70px;
    align-items: center;
    margin-bottom: 80px;
}

.glance-page .srcs-about-copy {
    max-width: 720px;
}

.glance-page .srcs-campus-visual {
    min-height: 560px;
}

.glance-page .srcs-campus-green-panel {
    top: 34px;
    right: 0;
    width: 76%;
    height: 86%;
    border-radius: 34px;
    background: linear-gradient(135deg, rgba(4, 72, 49, 0.95), rgba(4, 113, 72, 0.84)), url("../images/prelaoder-bg.png") center / cover no-repeat;
    box-shadow: 0 34px 90px rgba(4, 43, 30, 0.2);
}

.glance-page .srcs-campus-image {
    width: 88%;
    height: 470px;
    border-radius: 34px;
    border: 8px solid #ffffff;
    box-shadow: 0 35px 85px rgba(7, 43, 30, 0.22);
}

.glance-page .srcs-campus-badge {
    right: 3%;
    bottom: 58px;
    background: #f8d04d;
}

.glance-page .srcs-campus-badge span {
    color: #06442e;
    border-color: rgba(6, 68, 46, 0.28);
}

@media (max-width: 1180px) {
    .glance-page .srcs-about-intro {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    .glance-page .srcs-about-copy {
        max-width: 900px;
    }
    .glance-page .srcs-campus-visual {
        max-width: 760px;
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 650px) {
    .glance-page .srcs-about-section {
        padding: 60px 0 70px;
    }
    .glance-page .srcs-about-container {
        width: calc(100% - 30px);
    }
    .glance-page .srcs-about-intro {
        display: flex;
        flex-direction: column;
        gap: 34px;
        margin-bottom: 48px;
    }
    .glance-page .srcs-about-copy {
        width: 100%;
        max-width: none;
    }
    .glance-page .srcs-about-copy h2 {
        font-size: clamp(29px, 8.2vw, 36px);
        line-height: 1.14;
        letter-spacing: -.7px;
    }
    .glance-page .srcs-about-copy p {
        font-size: 14px;
        line-height: 1.65;
    }
    .glance-page .srcs-campus-visual {
        width: 100%;
        min-height: 325px;
    }
    .glance-page .srcs-campus-green-panel {
        top: 12px;
        right: -8px;
        width: 78%;
        height: 88%;
        border-radius: 24px 0 0 24px;
    }
    .glance-page .srcs-campus-image {
        width: 94%;
        height: 285px;
        border-radius: 24px;
        border-width: 5px;
    }
    .glance-page .srcs-campus-badge {
        width: 58px;
        height: 58px;
        right: 1%;
        bottom: 16px;
    }
}


/* At A Glance mobile typography: keep the editorial font balanced on narrow screens. */

@media (max-width: 600px) {
    .glance-page .srcs-about-section {
        background: #f7faf8;
    }
    .glance-page .srcs-campus-image,
    .glance-page .stats-card {
        box-shadow: 0 8px 22px rgba(7, 43, 30, .10);
    }
    .glance-page .stats-card:hover {
        transform: none;
        box-shadow: 0 8px 22px rgba(7, 43, 30, .10);
    }
    .at-glance-page-hero .simple-page-title {
        font-family: var(--font-heading) !important;
        font-size: clamp(34px, 10vw, 42px) !important;
        line-height: 1.05;
    }
    .glance-page .srcs-about-copy h2 {
        font-family: var(--font-heading) !important;
        font-size: 24px !important;
        line-height: 1.35 !important;
        letter-spacing: -.25px;
    }
}


/* =========================================
   SCHOOL STATS SECTION
========================================= */

.school-stats {
    width: 100%;
    padding: 80px 0;
    background: #ffffff;
    overflow: hidden;
}

.school-stats-container {
    width: min(1200px, 92%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


/* =========================================
   CARD
========================================= */

.stats-card {
    position: relative;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    isolation: isolate;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    min-height: 385px;
}

.stats-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.13);
}


/* =========================================
   IMAGE
========================================= */

.stats-image {
    position: relative;
    height: 235px;
    overflow: hidden;
    background: #ffffff;
}

.stats-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: scale(1.01);
    backface-visibility: hidden;
    will-change: transform;
    transition: transform 0.6s ease;
}

.stats-card:hover .stats-image img {
    transform: scale(1.065);
}


/* =========================================
   CURVED WHITE AREA
========================================= */

.stats-image::after {
    content: "";
    position: absolute;
    left: -8%;
    bottom: -34px;
    width: 116%;
    height: 76px;
    z-index: 2;
    background: #ffffff;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    box-shadow: 0 -1px 0 #ffffff, 0 -8px 18px rgba(255, 255, 255, 0.92);
    pointer-events: none;
}


/* =========================================
   CONTENT
========================================= */

.stats-content {
    position: relative;
    margin-top: -28px;
    padding: 0 20px 25px;
    text-align: center;
    z-index: 3;
}


/* =========================================
   ICON
========================================= */

.stats-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: #087c45;
    border: 5px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 23px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    transition: transform 0.35s ease, background 0.35s ease;
}

.stats-card:hover .stats-icon {
    transform: translateY(-4px) scale(1.05);
    background: #066b3b;
}


/* =========================================
   HEADING
========================================= */

.stats-content h3 {
    margin: 0;
    color: #087c45;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}


/* =========================================
   NUMBER
========================================= */

.stats-number {
    margin: 10px 0 0;
    color: #171717;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 23px;
    font-weight: 500;
    line-height: 1.3;
}


/* =========================================
   DESCRIPTION TEXT
========================================= */

.stats-text {
    margin: 11px auto 0;
    max-width: 270px;
    color: #222222;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
}


/* =========================================
   DECORATIVE DIVIDER
========================================= */

.stats-divider {
    margin: 13px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.stats-divider span {
    width: 28px;
    height: 2px;
    background: #087c45;
    display: block;
    border-radius: 10px;
}

.stats-divider b {
    width: 5px;
    height: 5px;
    display: block;
    background: #087c45;
    border-radius: 50%;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {
    .school-stats {
        padding: 60px 0;
    }
    .school-stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .stats-card {
        min-height: 375px;
    }
    .stats-image {
        height: 225px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {
    .school-stats {
        padding: 45px 0;
    }
    .school-stats-container {
        width: 90%;
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .stats-card {
        min-height: auto;
    }
    .stats-image {
        height: 230px;
    }
    .stats-content {
        padding-bottom: 28px;
    }
    .stats-content h3 {
        font-size: 20px !important;
    }
    .stats-number {
        font-size: 21px;
    }
    .stats-text {
        font-size: 13px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {
    .stats-image {
        height: 210px;
    }
    .stats-icon {
        width: 58px;
        height: 58px;
        font-size: 21px;
    }
}


/* School stats seam fix: remove the curved pseudo-wave that was creating black hover lines */

.stats-image::after {
    display: none !important;
}

.stats-image {
    margin-bottom: -34px;
}

.stats-content {
    margin: 0 18px 20px;
    padding: 30px 20px 24px;
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 -10px 26px rgba(255, 255, 255, 0.92);
}

.stats-icon {
    margin-top: -58px;
    position: relative;
    z-index: 4;
}


/* ==========================================
   SRCS PLACE SECTION
========================================== */

.srcs-place-section {
    position: relative;
    width: 100%;
    padding: 40px 0 40px;
    background: #fff;
    overflow: hidden;
}


/* Background decorative circles */

.srcs-place-section::before {
    content: "";
    position: absolute;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(7, 117, 65, 0.08);
    border-radius: 50%;
    top: -180px;
    left: -170px;
}

.srcs-place-section::after {
    content: none;
    display: none;
}


/* ==========================================
   CONTAINER
========================================== */

.srcs-place-wrap {
    width: min(1180px, 92%);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}


/* ==========================================
   HEADING
========================================== */

.srcs-place-heading {
    text-align: center;
    margin-bottom: 55px;
}

.srcs-mini-title {
    display: inline-block;
    margin-bottom: 10px;
    color: #13804b;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
}

.srcs-place-heading h2 {
    margin: 0;
    color: #153f2c;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 500;
    line-height: 1.1;
}

.srcs-place-heading h2 strong {
    color: #087c45;
    font-weight: 700;
}

.srcs-heading-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 20px;
}

.srcs-heading-line i {
    display: block;
    width: 38px;
    height: 1px;
    background: #8abca3;
}

.srcs-heading-line b {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #087c45;
}


/* ==========================================
   GRID
========================================== */

.srcs-place-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}


/* ==========================================
   CARD
========================================== */

.srcs-place-card {
    position: relative;
    display: block;
    text-decoration: none;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(8, 124, 69, 0.10);
    box-shadow: 0 12px 35px rgba(22, 65, 45, 0.08);
    transition: transform 0.5s cubic-bezier(.2, .8, .2, 1), box-shadow 0.5s ease, border-color 0.5s ease;
}


/* CARD HOVER */

.srcs-place-card:hover {
    transform: translateY(-14px);
    border-color: rgba(8, 124, 69, 0.28);
    box-shadow: 0 25px 55px rgba(22, 65, 45, 0.16);
}


/* ==========================================
   IMAGE
========================================== */

.srcs-card-image {
    position: relative;
    height: 330px;
    overflow: hidden;
}

.srcs-card-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(.2, .8, .2, 1);
}


/* IMAGE ZOOM */

.srcs-place-card:hover .srcs-card-image img {
    transform: scale(1.10);
}


/* ==========================================
   GREEN HOVER OVERLAY
========================================== */

.srcs-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 180deg, rgba(5, 89, 48, 0.05) 20%, rgba(5, 89, 48, 0.75) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.srcs-place-card:hover .srcs-card-overlay {
    opacity: 1;
}


/* ==========================================
   NUMBER
========================================== */

.srcs-card-number {
    position: absolute;
    top: 22px;
    left: 22px;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #087c45;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
    z-index: 3;
    transition: background 0.4s ease, color 0.4s ease, transform 0.4s ease;
}

.srcs-place-card:hover .srcs-card-number {
    background: #087c45;
    color: #ffffff;
    transform: rotate(-8deg) scale(1.08);
}


/* ==========================================
   TOP RIGHT ARROW
========================================== */

.srcs-card-arrow {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffffff;
    color: #087c45;
    font-size: 14px;
    opacity: 0;
    transform: translateY(-10px) rotate(-30deg);
    transition: opacity 0.4s ease, transform 0.5s ease;
    z-index: 3;
}

.srcs-place-card:hover .srcs-card-arrow {
    opacity: 1;
    transform: translateY(0) rotate(0);
    display: none;
}


/* ==========================================
   CARD BODY
========================================== */

.srcs-card-body {
    position: relative;
    padding: 30px 30px 32px;
    background: #ffffff;
    transition: background 0.4s ease;
}

.srcs-place-card:hover .srcs-card-body {
    background: #fbfefc;
}


/* ==========================================
   SMALL LABEL
========================================== */

.srcs-card-label {
    display: block;
    margin-bottom: 8px;
    color: #82a795;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}


/* ==========================================
   TITLE
========================================== */

.srcs-card-body h3 {
    margin: 0 0 12px;
    color: #153f2c;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.15;
    transition: color 0.35s ease, transform 0.4s ease;
}

.srcs-place-card:hover .srcs-card-body h3 {
    color: #087c45;
    transform: translateX(4px);
}


/* ==========================================
   DESCRIPTION
========================================== */

.srcs-card-body p {
    margin: 0;
    max-width: 310px;
    color: #68756e;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    line-height: 1.7;
}


/* ==========================================
   EXPLORE LINK
========================================== */

.srcs-explore {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 22px;
    color: #087c45;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: gap 0.35s ease;
}

.srcs-explore i {
    font-size: 10px;
    transition: transform 0.35s ease;
}

.srcs-place-card:hover .srcs-explore {
    gap: 15px;
}

.srcs-place-card:hover .srcs-explore i {
    transform: translateX(3px);
}


/* ==========================================
   BOTTOM GREEN LINE
========================================== */

.srcs-place-card::after {
    content: "";
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 0;
    height: 3px;
    background: #087c45;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.srcs-place-card:hover::after {
    transform: scaleX(1);
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {
    .srcs-place-section {
        padding: 75px 0 85px;
    }
    .srcs-place-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }
    .srcs-card-image {
        height: 290px;
    }
    .srcs-card-body {
        padding: 25px;
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 650px) {
    .srcs-place-section {
        padding: 60px 0 70px;
    }
    .srcs-place-heading {
        margin-bottom: 35px;
    }
    .srcs-place-heading h2 {
        font-size: 34px;
    }
    .srcs-place-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .srcs-card-image {
        height: 300px;
    }
    .srcs-card-body h3 {
        font-size: 25px;
    }
    .srcs-place-card:hover {
        transform: translateY(-7px);
    }
}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 400px) {
    .srcs-card-image {
        height: 260px;
    }
    .srcs-card-body {
        padding: 23px;
    }
    .srcs-place-heading h2 {
        font-size: 30px;
    }
}


/* ==========================================
   DIVERSITY & INCLUSION PAGE
========================================== */

.diversity-page {
    background: #f7faf8;
    color: #062d22;
    overflow: hidden;
}

.diversity-container {
    width: min(1460px, calc(100% - 64px));
    margin: 0 auto;
}

.diversity-intro-section {
    position: relative;
    padding: 20px 0 0px;
    background: url('../images/diveristy-bg.png') center/cover no-repeat;
}

.diversity-intro-section::after {
    content: "";
    position: absolute;
    right: -110px;
    bottom: -140px;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(198, 151, 42, .22);
    border-radius: 50%;
}

.diversity-intro-grid,
.diversity-community-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(420px, .8fr);
    gap: 74px;
    align-items: center;
}

.diversity-copy-card {
    padding: 56px 60px;
}

.diversity-copy-card h2,
.diversity-values-content h2,
.diversity-community-content h2 {
    margin: 18px 0 24px;
    font-size: 40px;
    line-height: .98;
    letter-spacing: 1px;
    color: #053f2f;
}

.diversity-copy-card h2::after,
.diversity-values-content h2::after,
.diversity-community-content h2::after {
    content: "";
    display: block;
    width: 74px;
    height: 2px;
    margin-top: 26px;
    background: #c3912d;
}

.diversity-copy-card p,
.diversity-values-content p,
.diversity-community-content p {
    margin: 0 0 18px;
    color: rgba(6, 45, 34, .78);
    font-size: 1.02rem;
    line-height: 1.88;
}

.diversity-lead {
    padding-left: 22px;
    border-left: 3px solid #f7ca43;
    color: #062d22 !important;
    font-weight: 500;
}

.diversity-image-stack {
    position: relative;
    min-height: 560px;
}

.diversity-image-main {
    position: relative;
    height: 520px;
    overflow: hidden;
    border-radius: 38px;
    box-shadow: 0 30px 90px rgba(4, 44, 27, .22);
}

.diversity-image-main::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3, 43, 32, .02), rgba(3, 43, 32, .42));
}

.diversity-image-main img,
.diversity-values-image img,
.diversity-community-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.diversity-floating-card {
    position: absolute;
    left: -34px;
    bottom: 42px;
    width: min(360px, 78%);
    padding: 24px 26px;
    border: 1px solid rgba(255, 255, 255, .32);
    border-radius: 22px;
    background: rgba(4, 64, 47, .88);
    color: #fff;
    backdrop-filter: blur(12px);
    box-shadow: 0 22px 50px rgba(4, 44, 27, .22);
}

.diversity-floating-card span {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    border-radius: 50%;
    background: #f7ca43;
    color: #063626;
}

.diversity-floating-card strong {
    display: block;
    font-family: "Times New Roman", Times, serif;
    font-size: 1.65rem;
    line-height: 1.08;
}

.diversity-values-section {
    padding: 52px 0 20px;
    background: #f7faf8;
}

.diversity-values-card {
    display: grid;
    grid-template-columns: minmax(360px, .78fr) minmax(0, 1fr);
    gap: 64px;
    align-items: center;
    padding: 34px;
    border: 1px solid rgba(4, 83, 62, .13);
    border-radius: 36px;
    background: #fff;
    box-shadow: 0 28px 80px rgba(4, 44, 27, .09);
}

.diversity-values-image {
    height: 520px;
    overflow: hidden;
    border-radius: 28px;
}

.diversity-feature-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 36px;
}

.diversity-feature-row div {
    padding: 22px 18px;
    border: 1px solid rgba(4, 83, 62, .12);
    border-radius: 20px;
    background: #f7faf8;
}

.diversity-feature-row i {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
    border-radius: 50%;
    background: rgba(247, 202, 67, .28);
    color: #006b46;
}

.diversity-feature-row strong {
    color: #053f2f;
    font-weight: 800;
}

.diversity-quote-section {
    padding: 30px 0;
    background: radial-gradient(circle at 88% 20%, rgba(248, 208, 77, .16), transparent 26%), linear-gradient(135deg, #042d22 0%, #07513a 58%, #033126 100%);
}

.diversity-quote-card {
    position: relative;
    max-width: 1120px;
    margin: 0 auto;
    padding: 58px 68px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 34px;
    background: rgba(255, 255, 255, .06);
    color: #fff;
    text-align: center;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .18);
}

.diversity-quote-mark {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin: 0 auto 26px;
    border-radius: 50%;
    background: #f7ca43;
    color: #063626;
}

.diversity-quote-card p {
    margin: 0 auto 24px;
    max-width: 920px;
    font-family: "Times New Roman", Times, serif;
    font-size: 30px;
    line-height: 1.38;
}

.diversity-quote-card strong {
    color: #f7ca43;
    font-weight: 800;
}

.diversity-community-section {
    padding: 100px 0 112px;
    background: radial-gradient(circle at 12% 82%, rgba(7, 92, 67, .10), transparent 28%), #fbfdfb;
}

.diversity-community-content {
    padding: 20px 0;
}

.diversity-community-visual {
    height: 470px;
    overflow: hidden;
    border: 12px solid #fff;
    border-radius: 40px;
    box-shadow: 0 30px 80px rgba(4, 44, 27, .14);
}

@media (max-width: 1199px) {
    .diversity-intro-grid,
    .diversity-community-grid,
    .diversity-values-card {
        grid-template-columns: 1fr;
    }
    .diversity-image-stack {
        min-height: auto;
    }
}

@media (max-width: 767px) {
    .diversity-container {
        width: min(100% - 34px, 560px);
    }
    .diversity-intro-section,
    .diversity-community-section {
        padding: 30px 0;
    }
    .diversity-copy-card,
    .diversity-values-card,
    .diversity-quote-card {
        padding: 28px 24px;
        border-radius: 24px;
    }
    .diversity-copy-card h2,
    .diversity-values-content h2,
    .diversity-community-content h2 {
        font-size: 38px;
    }
    .diversity-copy-card p,
    .diversity-values-content p,
    .diversity-community-content p {
        font-size: .95rem;
        line-height: 1.75;
    }
    .diversity-image-main,
    .diversity-values-image,
    .diversity-community-visual {
        height: 330px;
        border-radius: 24px;
    }
    .diversity-floating-card {
        left: 18px;
        right: 18px;
        bottom: 18px;
        width: auto;
    }
    .diversity-feature-row {
        grid-template-columns: 1fr;
    }
    .diversity-quote-section {
        padding: 64px 0;
    }
}


/* ==========================================
   SRCS NEWS PAGE
========================================== */

.srcs-news-page {
    background: #f7faf8;
    color: #07392b;
    overflow: hidden;
}

.news-page-container {
    width: min(1460px, calc(100% - 64px));
    margin: 0 auto;
}

.news-page-hero .simple-page-title {
    max-width: 1460px;
    margin-left: auto;
    margin-right: auto;
}

.srcs-mini-label {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #bb8a25;
    font-size: .74rem;
    letter-spacing: .24em;
    font-weight: 800;
}

.srcs-mini-label span {
    display: block;
    width: 38px;
    height: 2px;
    background: #c4952f;
}

.news-section-topline h2,
.yearbook-copy h2,
.news-closing-card h2 {
    margin: 24px 0 26px;
    color: #063f2e;
    font-size: 54px;
    font-weight: 500 ! important;
    line-height: .98;
    letter-spacing: 1px;
}

.news-section-topline h2 em,
.yearbook-copy h2 em,
.news-closing-card h2 em {
    color: #d5a72f;
    font-style: normal;
}

.news-pill-button,
.news-outline-button {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 15px 22px 15px 26px;
    border-radius: 999px;
    background: #07583d;
    color: #fff;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .05em;
    text-decoration: none;
    box-shadow: 0 15px 30px rgba(4, 75, 50, .18);
    transition: transform .25s ease, background .25s ease;
}

.news-pill-button i,
.news-outline-button i {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f7ca43;
    color: #07392b;
}

.news-pill-button:hover,
.news-outline-button:hover {
    color: #fff;
    background: #0a7852;
    transform: translateY(-3px);
}

.newsletters-section {
    padding: 40px 0 30px;
    background: #fff;
}

.news-section-topline {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 48px;
}

.news-section-topline h2 {
    margin-bottom: 0;
    font-size: 54px;
    font-weight: 500 ! important;
}

.news-section-topline>p {
    margin: 0 0 5px;
    color: #000;
    line-height: 1.7;
}

.newsletter-year-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.newsletter-year-card {
    min-height: 300px;
    padding: 25px;
    position: relative;
    overflow: hidden;
    border: 1px solid #dbe7df;
    border-radius: 24px;
    background: linear-gradient(145deg, #fbfdfb, #eff6f1);
    box-shadow: 0 15px 34px rgba(8, 62, 42, .06);
    transition: transform .25s ease, box-shadow .25s ease;
}

.newsletter-year-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 25px 45px rgba(8, 62, 42, .14);
}

.newsletter-year-card::after {
    content: "";
    position: absolute;
    right: -44px;
    top: -42px;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(197, 150, 45, .28);
    border-radius: 50%;
}

.newsletter-year-featured {
    color: #fff;
    border-color: #07583d;
    background: linear-gradient(150deg, #06452f, #08704d);
}

.newsletter-year-number {
    font-family: "Times New Roman", Times, serif;
    color: #d4a630;
    font-size: 4.8rem;
    line-height: .9;
}

.newsletter-year-content {
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 25px;
}

.newsletter-year-content span {
    font-size: .66rem;
    letter-spacing: .2em;
    font-weight: 800;
    color: #c39430;
}

.newsletter-year-content h3 {
    margin: 9px 0 10px;
    font-family: "Times New Roman", Times, serif;
    font-size: 1.7rem;
}

.newsletter-year-content p {
    min-height: 62px;
    margin: 0 0 17px;
    color: #61736a;
    font-size: .84rem;
    line-height: 1.5;
}

.newsletter-year-featured .newsletter-year-content p {
    color: rgba(255, 255, 255, .72);
}

.newsletter-year-content a {
    color: #07583d;
    font-size: .78rem;
    font-weight: 800;
    text-decoration: none;
}

.newsletter-year-featured .newsletter-year-content a {
    color: #f7ca43;
}

.newsletter-year-content a i {
    margin-left: 6px;
}

.newsletter-month-strip {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin-top: 34px;
    padding-top: 22px;
    border-top: 1px solid #dfe9e2;
    color: #60746b;
    font-size: .82rem;
}

.newsletter-month-strip span {
    color: #07583d;
    font-weight: 800;
}

.newsletter-month-strip b {
    font-weight: 500;
}

.yearbook-section {
    padding: 105px 0;
}

.yearbook-card {
    display: grid;
    grid-template-columns: minmax(380px, .8fr) minmax(0, 1fr);
    gap: 70px;
    align-items: center;
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 34px;
    background: rgba(255, 255, 255, .07);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .16);
}

.yearbook-image-wrap {
    height: 570px;
    overflow: hidden;
    border-radius: 24px;
}

.yearbook-image-wrap img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.yearbook-copy {
    color: #fff;
}

.yearbook-copy h2 {
    color: #000;
}

.yearbook-copy>p {
    max-width: 700px;
    color: #000;
    line-height: 1.8;
}

.yearbook-points {
    display: grid;
    gap: 15px;
    margin: 30px 0 34px;
}

.yearbook-points>div {
    display: flex;
    align-items: center;
    gap: 16px;
}

.yearbook-points i {
    display: grid;
    place-items: center;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #f7ca43;
    color: #063626;
}

.yearbook-points strong,
.yearbook-points small {
    display: block;
}

.yearbook-points strong {
    font-family: "Times New Roman", Times, serif;
    font-size: 1.15rem;
    letter-spacing: 1px;
    color: #000;
}

.yearbook-points small {
    margin-top: 3px;
    color: #46534c;
}

.news-pill-light {
    background: #f7ca43;
    color: #063626;
    box-shadow: none;
}

.news-pill-light:hover {
    color: #063626;
    background: #ffd966;
}

.news-pill-light i {
    background: #063626;
    color: #fff;
}

@media (max-width:1100px) {
    .newsletter-year-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .yearbook-card {
        gap: 40px;
    }
}

@media (max-width:767px) {
    .news-page-container {
        width: calc(100% - 34px);
    }
    .newsletters-section,
    .yearbook-section,
    .news-closing-section {
        padding: 35px 0;
    }
    .yearbook-card {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .news-section-topline h2,
    .yearbook-copy h2,
    .news-closing-card h2 {
        font-size: clamp(36px, 10vw, 50px);
    }
    .news-section-topline {
        display: block;
        margin-bottom: 30px;
    }
    .news-section-topline>p {
        margin-top: 18px;
    }
    .newsletter-year-grid {
        grid-template-columns: 1fr;
    }
    .newsletter-year-card {
        min-height: 240px;
    }
    .newsletter-month-strip {
        gap: 12px 17px;
    }
    .yearbook-card {
        padding: 18px;
        border-radius: 25px;
    }
    .yearbook-image-wrap {
        height: 330px;
    }
    .news-closing-card {
        padding: 42px 25px;
        border-radius: 25px;
    }
}


/* Newsletter archive layout */

.newsletter-groups {
    display: grid;
    gap: 58px;
}

.newsletter-group-heading {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}

.newsletter-group-heading span {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #07583d;
    color: #f7ca43;
    font-size: .72rem;
    font-weight: 800;
}

.newsletter-group-heading h3 {
    margin: 0;
    color: #07583d;
    font-family: "Times New Roman", Times, serif;
    font-size: 2rem;
}

.newsletter-group-heading i {
    width: 80px;
    height: 1px;
    background: #d8e4dc;
}

.newsletter-issue-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.newsletter-issue-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
    padding: 0 20px;
    border: 1px solid #d8e5dd;
    border-radius: 14px;
    background: #f7faf8;
    color: #07583d;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    transition: all .25s ease;
}

.newsletter-issue-card i {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #e4f0e8;
    color: #c18d23;
}

.newsletter-issue-card:hover {
    border-color: #07583d;
    background: #07583d;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(5, 88, 61, .14);
}

.newsletter-issue-card:hover i {
    background: #f7ca43;
    color: #07392b;
}

.newsletter-issue-card.featured {
    border-color: #07583d;
    background: #07583d;
    color: #fff;
}

.newsletter-issue-card.featured i {
    background: rgba(255, 255, 255, .16);
    color: #f7ca43;
}

.newsletter-legacy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
}

.newsletter-group-small {
    padding: 28px;
    border: 1px solid #e0eae3;
    border-radius: 24px;
    background: #fbfdfb;
}

.newsletter-group-small .newsletter-issue-grid {
    grid-template-columns: repeat(2, 1fr);
}

.legacy-archive-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin: 30px 0 30px;
    padding-bottom: 18px;
    border-bottom: 1px solid #dce8df;
}

.legacy-archive-heading span {
    color: #ba8b28;
    font-size: .72rem;
    letter-spacing: .23em;
    font-weight: 800;
}

.legacy-archive-heading h3 {
    margin: 0;
    color: #07583d;
    font-family: "Times New Roman", Times, serif;
    font-size: 2.2rem;
}

.legacy-archive-heading em {
    color: #c6942d;
    font-style: normal;
}

.legacy-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.legacy-archive-card {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 220px;
    overflow: hidden;
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(2, 68, 45, .88), rgba(10, 112, 77, .8)), url("../images/prelaoder-bg.png") center/cover;
    color: #fff;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 14px 30px rgba(6, 65, 44, .12);
    transition: transform .25s ease, box-shadow .25s ease;
}

.legacy-archive-card::before {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(247, 202, 67, .38);
    border-radius: 16px;
}

.legacy-archive-card span {
    position: relative;
    z-index: 1;
    font-family: "Times New Roman", Times, serif;
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 1.05;
}

.legacy-archive-card i {
    position: absolute;
    right: 19px;
    bottom: 17px;
    z-index: 1;
    color: #f7ca43;
    font-size: 1.25rem;
}

.legacy-archive-card:hover {
    color: #fff;
    transform: translateY(-6px);
    box-shadow: 0 24px 42px rgba(6, 65, 44, .23);
}

@media (max-width:1000px) {
    .newsletter-issue-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width:767px) {
    .newsletter-group-heading h3 {
        font-size: 1.55rem;
    }
    .newsletter-issue-grid,
    .newsletter-group-small .newsletter-issue-grid,
    .legacy-archive-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .newsletter-issue-card {
        min-height: 58px;
        padding: 0 12px;
        font-size: .75rem;
    }
    .newsletter-issue-card i {
        width: 25px;
        height: 25px;
        font-size: .75rem;
    }
    .newsletter-legacy-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .legacy-archive-heading {
        display: block;
    }
    .legacy-archive-heading h3 {
        margin-top: 9px;
        font-size: 1.85rem;
    }
    .legacy-archive-card {
        min-height: 170px;
    }
}


/* Diversity intro: keep the campus artwork behind the right side only */

.diversity-intro-section {
    background-color: #f7faf8;
    background-image: linear-gradient(90deg, #f7faf8 0%, #f7faf8 34%, rgba(247, 250, 248, .96) 48%, rgba(247, 250, 248, .56) 66%, rgba(247, 250, 248, .16) 100%), url('../images/diveristy-bg.png');
    background-repeat: no-repeat;
    background-position: center, right center;
    background-size: cover, auto 100%;
}

.diversity-intro-grid {
    grid-template-columns: minmax(0, .95fr) minmax(420px, .8fr);
    gap: 42px;
    align-items: center;
}

.diversity-copy-card {
    max-width: 780px;
    padding: 34px 0 34px 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    text-align: left;
}

.diversity-copy-card h2,
.diversity-copy-card p {
    text-align: left;
}

.diversity-copy-card h2 {
    max-width: 720px;
}

.diversity-copy-card p {
    max-width: 730px;
}

.diversity-image-stack {
    min-height: 500px;
}

.diversity-image-main {
    height: 470px;
}

@media (max-width: 1199px) {
    .diversity-intro-section {
        background-size: cover, auto 58%;
        background-position: center, right bottom;
    }
    .diversity-copy-card {
        padding: 10px 0;
    }
}

@media (max-width: 767px) {
    .diversity-intro-section {
        background-image: linear-gradient(180deg, rgba(247, 250, 248, .96), rgba(247, 250, 248, .88)), url('../images/diveristy-bg.png');
        background-position: center, center bottom;
        background-size: cover, auto 46%;
    }
    .diversity-intro-grid,
    .diversity-community-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .diversity-copy-card {
        padding: 0;
    }
    .diversity-copy-card h2,
    .diversity-copy-card p {
        width: 100%;
        max-width: none;
    }
    .diversity-image-stack {
        min-height: 390px;
    }
}


/* Diversity content cards refinement */

.diversity-values-section {
    padding-top: 86px;
    background: #f7faf8;
}

.diversity-values-card {
    display: block;
    margin: 0 auto;
    padding: 62px 76px 68px;
    border: 1px solid rgba(4, 83, 62, .16);
    border-top: 4px solid #c3912d;
    border-radius: 34px;
    background: radial-gradient(circle at 92% 12%, rgba(247, 202, 67, .17), transparent 24%), linear-gradient(135deg, #ffffff 0%, #f0f8f2 100%);
    box-shadow: 0 28px 70px rgba(4, 44, 27, .12);
}

.diversity-values-content {
    margin: 0 auto;
}

.diversity-values-content h2 {
    font-size: 50px;
}

.diversity-values-content p {}

.diversity-feature-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 38px;
}

.diversity-feature-row div {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 16px 18px;
    border: 1px solid rgba(4, 83, 62, .14);
    border-radius: 14px;
    background: rgba(255, 255, 255, .7);
}

.diversity-feature-row i {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    margin: 0;
}

.diversity-feature-row strong {
    font-size: .95rem;
}

.diversity-quote-section {
    padding: 86px 0;
}

.diversity-quote-card {
    max-width: 1040px;
    padding: 48px 72px;
    border-radius: 30px;
    background: linear-gradient(135deg, #07583d, #0b6b49);
    text-align: left;
    box-shadow: 0 28px 65px rgba(3, 52, 35, .2);
}

.diversity-quote-mark {
    width: 50px;
    height: 50px;
    margin: 0 0 24px;
}

.diversity-quote-card p {
    max-width: 850px;
    margin: 0 0 24px;
    font-size: clamp(23px, 2vw, 32px);
    line-height: 1.42;
}

.diversity-quote-card strong {
    display: block;
    color: #f7ca43;
}

@media (max-width:767px) {
    .diversity-values-card {
        padding: 38px 24px 34px;
        border-radius: 24px;
    }
    .diversity-feature-row {
        grid-template-columns: 1fr;
    }
    .diversity-values-content h2 {
        font-size: 32 !important;
    }
    .diversity-quote-card {
        padding: 34px 24px;
        border-radius: 24px;
    }
    .diversity-quote-card p {
        font-size: 21px;
    }
}


/* Diversity quote: light image-backed treatment */

.diversity-quote-section {
    position: relative;
    background: linear-gradient(110deg, rgba(247, 250, 248, .96) 0%, rgba(247, 250, 248, .9) 48%, rgba(222, 239, 228, .78) 100%), url('../images/diveristy-bg.png') center/cover no-repeat;
}

.diversity-quote-card {
    max-width: 1060px;
    padding: 36px 44px;
    border: 1px solid rgba(5, 83, 61, .16);
    border-left: 5px solid #c3912d;
    border-radius: 28px;
    background: rgba(255, 255, 255, .86);
    color: #07392b;
    text-align: left;
    box-shadow: 0 25px 65px rgba(4, 55, 38, .13);
    backdrop-filter: blur(8px);
}

.diversity-quote-mark {
    width: 52px;
    height: 52px;
    margin: 0 0 24px;
    background: #f7ca43;
    color: #07583d;
}

.diversity-quote-card p {
    max-width: 1000px;
    margin: 0 0 24px;
    color: #24483b;
    font-size: clamp(22px, 2vw, 32px);
    line-height: 1.45;
}

.diversity-quote-card strong {
    color: #08704d;
}

@media (max-width:767px) {
    .diversity-quote-card {
        padding: 34px 25px;
        border-left-width: 3px;
    }
    .diversity-quote-card p {
        font-size: 20px;
        line-height: 1.5;
    }
}


/* Director message with a dedicated right-side visual */

.diversity-quote-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, .42fr);
    gap: 30px;
    align-items: stretch;
}

.diversity-quote-card {
    max-width: none;
}

.diversity-quote-visual {
    position: relative;
    min-height: 410px;
    overflow: hidden;
    border: 1px solid rgba(5, 83, 61, .16);
    border-radius: 28px;
    background: #dcefe3;
    box-shadow: 0 25px 65px rgba(4, 55, 38, .13);
}

.diversity-quote-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 38%, rgba(4, 63, 43, .72) 100%);
}

.diversity-quote-visual img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.diversity-quote-visual span {
    position: absolute;
    z-index: 1;
    left: 25px;
    bottom: 24px;
    color: #fff;
    font-family: "Times New Roman", Times, serif;
    font-size: 1.55rem;
    line-height: 1.05;
}

.diversity-quote-visual b {
    color: #f7ca43;
    font-weight: 700;
}

@media (max-width:767px) {
    .diversity-quote-layout {
        grid-template-columns: 1fr;
    }
    .diversity-quote-visual {
        min-height: 280px;
    }
}


/* Diversity mobile typography */

@media (max-width:767px) {
    .diversity-copy-card h2,
    .diversity-values-content h2,
    .diversity-community-content h2 {
        font-size: 30px;
        line-height: 1.05;
        letter-spacing: -.35px;
    }
    .diversity-copy-card p,
    .diversity-values-content p,
    .diversity-community-content p {
        font-size: 15px;
        line-height: 1.65;
    }
    .diversity-copy-card h2::after,
    .diversity-values-content h2::after,
    .diversity-community-content h2::after {
        margin-top: 18px;
    }
    .diversity-lead {
        padding-left: 15px;
    }
}


/* =========================================================
   SHRI RAM CENTENNIAL SCHOOL
   POLICY SECTION
========================================================= */

.sr-policy-section {
    width: 100%;
    padding: 30px 0 30px;
    background: #ffffff;
    overflow: hidden;
}

.sr-policy-container {
    width: 90%;
    max-width: 1320px;
    margin: 0 auto;
}


/* =========================================================
   TOP AREA
========================================================= */

.sr-policy-top {
    display: grid;
    grid-template-columns: 52% 48%;
    align-items: center;
    min-height: 570px;
}


/* =========================================================
   IMAGE AREA
========================================================= */

.sr-policy-image-area {
    position: relative;
    padding: 25px 35px 0 10px;
}

.sr-green-shape {
    position: absolute;
    width: 265px;
    height: 290px;
    left: 0;
    top: 0;
    background: #14784f;
    border-radius: 4px;
}

.sr-policy-image-box {
    position: relative;
    z-index: 2;
    width: calc(100% - 20px);
    margin-left: 45px;
    background: #ffffff;
    padding: 3px;
    border-radius: 17px;
    box-shadow: 0 20px 55px rgba(22, 59, 43, 0.16);
}

.sr-policy-image-box img {
    display: block;
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-radius: 13px;
}


/* COMMITMENT BADGE */

.sr-commitment-badge {
    position: absolute;
    z-index: 5;
    left: -18px;
    bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 23px 13px 14px;
    background: #11784d;
    color: #ffffff;
    border-radius: 5px;
    box-shadow: 0 12px 30px rgba(13, 87, 54, 0.25);
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}

.sr-shield-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 31px;
    height: 31px;
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    font-size: 15px;
}


/* IMAGE CAPTION */

.sr-image-caption {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin: 25px 0 0 40px;
}

.sr-image-caption>span {
    display: block;
    width: 57px;
    height: 2px;
    margin-top: 10px;
    flex-shrink: 0;
    background: #13784e;
}

.sr-image-caption p {
    max-width: 400px;
    margin: 0;
    color: #3e4944;
    font-size: 16px;
    font-style: italic;
    line-height: 1.55;
}


/* =========================================================
   RIGHT CONTENT
========================================================= */

.sr-policy-content {
    padding: 15px 0 0 30px;
}

.sr-policy-top-label {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    color: #0e6542;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.2px;
}

.sr-round-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid #d9e9e0;
    border-radius: 50%;
    background: #f1f8f4;
    color: #14784f;
    font-size: 18px;
}


/* HEADING */

.sr-policy-content h2 {
    margin: 0;
    color: #14221c;
    font-size: 53px;
    font-weight: 400;
    letter-spacing: -2.5px;
    line-height: 0.98;
}

.sr-policy-content h2 em {
    display: block;
    color: #14784f;
    font-weight: 400;
    font-style: normal;
}

.sr-heading-line {
    width: 52px;
    height: 3px;
    margin: 29px 0 25px;
    background: #14784f;
}


/* TEXT */

.sr-policy-content p {
    max-width: 590px;
    margin: 0 0 15px;
    color: #4d5953;
    font-size: 16px;
    line-height: 1.8;
}

.sr-policy-content .sr-policy-highlight {
    margin-bottom: 20px;
    color: #17251f;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.65;
}


/* =========================================================
   FEATURE CARDS
========================================================= */

.sr-policy-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 28px;
}

.sr-feature-card {
    display: flex;
    align-items: center;
    gap: 15px;
    min-height: 96px;
    padding: 15px 18px;
    border: 1px solid #dfe9e4;
    background: #ffffff;
    transition: 0.35s ease;
}

.sr-feature-card+.sr-feature-card {
    border-left: 0;
}

.sr-feature-card:hover {
    background: #f5faf7;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(18, 87, 56, 0.08);
}

.sr-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 47px;
    height: 47px;
    flex: 0 0 47px;
    border-radius: 50%;
    background: #14784f;
}

.sr-feature-icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sr-feature-card h4 {
    margin: 0 0 5px;
    color: #18251f;
    font-size: 19px;
    font-weight: 500;
}

.sr-feature-card p {
    margin: 0;
    color: #68746e;
    font-size: 13px;
    line-height: 1.5;
}


/* =========================================================
   STAFF DEVELOPMENT
========================================================= */

.sr-development-card {
    position: relative;
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr) 260px;
    min-height: 320px;
    margin-top: 85px;
    overflow: hidden;
    border: 1px solid #dbeae2;
    border-radius: 18px;
    background: #f5faf7;
    box-shadow: 0 18px 50px rgba(19, 74, 49, 0.08);
    transition: 0.4s ease;
}

.sr-development-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(19, 74, 49, 0.12);
}


/* NUMBER */

.sr-development-number {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #14784f;
}

.sr-development-number span {
    position: relative;
    z-index: 2;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 72px;
    font-weight: 400;
}

.sr-development-number i {
    position: absolute;
    width: 35px;
    height: 2px;
    bottom: 82px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
}

.sr-number-watermark {
    position: absolute;
    top: 38px;
    left: 25px;
    color: rgba(255, 255, 255, 0.07);
    font-size: 100px;
}


/* DEVELOPMENT CONTENT */

.sr-development-content {
    position: relative;
    z-index: 3;
    padding: 42px 40px 35px;
}

.sr-development-label {
    display: block;
    margin-bottom: 10px;
    color: #116c47;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.4px;
}

.sr-development-content h3 {
    margin: 0 0 18px;
    color: #17241e;
    font-size: 45px;
    font-weight: 400;
    letter-spacing: -1px;
}

.sr-development-content p {
    max-width: 850px;
    margin: 0 0 12px;
    color: #53605a;
    font-size: 16px;
    line-height: 1.75;
}


/* =========================================================
   DEVELOPMENT TAGS
========================================================= */

.sr-development-tags {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 24px;
}

.sr-development-tag {
    display: flex;
    align-items: center;
    gap: 11px;
    padding-right: 28px;
}

.sr-development-tag+.sr-development-tag {
    padding-left: 28px;
    border-left: 1px solid #d1e2d9;
}

.sr-development-tag svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: #116c47;
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sr-development-tag span {
    color: #293730;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
}


/* =========================================================
   GROWTH ILLUSTRATION
========================================================= */

.sr-growth-illustration {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.sr-illustration-circle {
    position: absolute;
    width: 190px;
    height: 190px;
    right: -5px;
    top: 38px;
    border-radius: 50%;
    background: #e7f1eb;
}

.sr-growth-illustration svg {
    position: relative;
    z-index: 2;
    width: 230px;
    height: 210px;
}

.sr-stairs,
.sr-floor,
.sr-flag-pole,
.sr-flag,
.sr-person {
    fill: none;
    stroke: #13784e;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sr-person-head {
    fill: none;
    stroke: #13784e;
    stroke-width: 2;
}

.sr-flag {
    fill: none;
}


/* =========================================================
   RESPONSIVE 1100
========================================================= */

@media (max-width: 1100px) {
    .sr-policy-top {
        grid-template-columns: 50% 50%;
    }
    .sr-policy-content {
        padding-left: 15px;
    }
    .sr-policy-content h2 {
        font-size: 52px;
    }
    .sr-development-card {
        grid-template-columns: 120px minmax(0, 1fr) 200px;
    }
    .sr-development-content {
        padding-left: 30px;
        padding-right: 25px;
    }
    .sr-development-content h3 {
        font-size: 31px;
    }
    .sr-development-tags {
        flex-wrap: wrap;
        gap: 12px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {
    .sr-policy-section {
        padding: 75px 0;
    }
    .sr-policy-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .sr-policy-image-area {
        max-width: 750px;
        margin: 0 auto;
        width: 100%;
    }
    .sr-policy-content {
        max-width: 750px;
        margin: 0 auto;
        padding-left: 0;
    }
    .sr-policy-content h2 {
        font-size: 58px;
    }
    .sr-policy-content p {
        max-width: 100%;
    }
    .sr-development-card {
        grid-template-columns: 120px minmax(0, 1fr);
    }
    .sr-growth-illustration {
        display: none;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {
    .sr-policy-section {
        padding: 55px 0 20px;
    }
    .sr-policy-container {
        width: 90%;
    }
    .sr-policy-image-area {
        padding: 18px 12px 0 5px;
    }
    .sr-green-shape {
        width: 150px;
        height: 190px;
    }
    .sr-policy-image-box {
        width: calc(100% - 10px);
        margin-left: 18px;
    }
    .sr-policy-image-box img {
        height: 300px;
        border-radius: 10px;
    }
    .sr-commitment-badge {
        left: -2px;
        bottom: 20px;
        padding: 9px 13px 9px 9px;
        gap: 8px;
        font-size: 9px;
        letter-spacing: 0.8px;
    }
    .sr-shield-icon {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }
    .sr-image-caption {
        margin-left: 18px;
        gap: 12px;
    }
    .sr-image-caption>span {
        width: 35px;
    }
    .sr-image-caption p {
        font-size: 13px;
    }
    .sr-policy-top-label {
        gap: 10px;
        margin-bottom: 18px;
        font-size: 9px;
        letter-spacing: 1.5px;
    }
    .sr-round-icon {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
    .sr-policy-content h2 {
        font-size: 44px;
        letter-spacing: -1.5px;
    }
    .sr-heading-line {
        margin: 23px 0 20px;
    }
    .sr-policy-content .sr-policy-highlight {
        font-size: 15px;
    }
    .sr-policy-content p {
        font-size: 13px;
        line-height: 1.7;
    }
    .sr-policy-features {
        grid-template-columns: 1fr;
    }
    .sr-feature-card+.sr-feature-card {
        border-left: 1px solid #dfe9e4;
        border-top: 0;
    }
    .sr-feature-card {
        min-height: 82px;
    }
    /* DEVELOPMENT */
    .sr-development-card {
        display: block;
        margin-top: 60px;
        border-radius: 12px;
    }
    .sr-development-number {
        height: 90px;
        justify-content: flex-start;
        padding-left: 25px;
    }
    .sr-development-number span {
        font-size: 46px;
    }
    .sr-development-number i {
        left: 25px;
        bottom: 20px;
        transform: none;
    }
    .sr-number-watermark {
        right: 15px;
        left: auto;
        top: -25px;
        font-size: 100px;
    }
    .sr-development-content {
        padding: 30px 24px;
    }
    .sr-development-content h3 {
        font-size: 28px;
        line-height: 1.15;
    }
    .sr-development-content p {
        font-size: 12px;
        line-height: 1.7;
    }
    .sr-development-tags {
        display: block;
    }
    .sr-development-tag {
        padding: 10px 0;
    }
    .sr-development-tag+.sr-development-tag {
        padding-left: 0;
        border-left: 0;
    }
    .sr-development-tag span {
        font-size: 13px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {
    .sr-policy-content h2 {
        font-size: 38px;
    }
    .sr-policy-image-box img {
        height: 260px;
    }
    .sr-commitment-badge {
        font-size: 8px;
    }
    .sr-development-content h3 {
        font-size: 25px;
    }
}


/* Keep the policy heading on one line on small screens */

@media (max-width:767px) {
    .sr-policy-content h2 {
        white-space: nowrap;
        font-size: clamp(24px, 7vw, 31px);
        letter-spacing: -1px;
        line-height: 1;
    }
}

.srcs-policies {
    width: 100%;
    padding: 40px 0 60px;
    background: #fff;
    overflow: hidden;
}

.srcs-policy-wrapper {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
}


/* ==========================================
   COMMON
========================================== */

.srcs-green-line {
    width: 45px;
    height: 3px;
    margin: 25px 0 28px;
    background: #087c45;
}

.srcs-policy-label,
.srcs-small-label {
    color: #087c45;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1.8px;
}

.srcs-policy-label {
    display: flex;
    align-items: center;
    gap: 15px;
}

.srcs-small-label {
    margin-bottom: 17px;
}


/* ==========================================
   POLICY 01
========================================== */

.srcs-policy-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 550px;
    padding: 35px 45px;
    background: #ffffff;
    box-shadow: 0 10px 35px rgba(19, 60, 42, 0.05);
}

.srcs-policy-hero-content {
    padding-right: 40px;
}

.srcs-policy-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #e9f5ee;
    color: #087c45;
    font-size: 22px;
}

.srcs-policy-hero h2 {
    margin: 27px 0 0;
    color: #17251f;
    font-size: 54px;
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -1.8px;
}

.srcs-policy-hero h2 em,
.srcs-policy-card h3 em {
    color: #087c45;
    font-style: normal;
    font-weight: 400;
}

.srcs-policy-hero-content p {
    margin: 0 0 22px;
    color: #46534c;
    font-size: 16px;
    line-height: 1.85;
}


/* ==========================================
   HERO IMAGE
========================================== */

.srcs-policy-hero-image {
    position: relative;
    min-height: 475px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.srcs-image-green-bg {
    position: absolute;
    width: 155px;
    height: 150px;
    top: 0;
    right: -10px;
    border-radius: 0 12px 0 12px;
    background: #087c45;
}

.srcs-image-frame {
    position: relative;
    z-index: 2;
    width: 92%;
    height: 360px;
    margin-left: 20px;
    padding: 3px;
    border: 1px solid #087c45;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(17, 70, 45, 0.14);
}

.srcs-image-frame img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 13px;
}


/* ==========================================
   DOT PATTERN
========================================== */

.srcs-dot-pattern {
    position: absolute;
    z-index: 3;
    width: 65px;
    height: 65px;
    background-image: radial-gradient( #75c6a0 1.5px, transparent 1.5px);
    background-size: 11px 11px;
}

.srcs-dots-one {
    top: 5px;
    left: 0;
}

.srcs-dots-two {
    bottom: 10px;
    right: 10px;
}


/* ==========================================
   POLICY CARDS
========================================== */

.srcs-policy-card {
    position: relative;
    display: grid;
    grid-template-columns: 155px minmax(0, 1fr) 220px;
    min-height: 330px;
    margin-top: 35px;
    overflow: hidden;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #e3ebe6;
    box-shadow: 0 12px 35px rgba(20, 65, 44, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.srcs-policy-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(20, 65, 44, 0.11);
}


/* ==========================================
   NUMBER PANEL
========================================== */

.srcs-policy-number {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient( 180deg, #087c45 0%, #05683a 100%);
}

.srcs-policy-number>span {
    position: absolute;
    bottom: 15px;
    left: 25px;
    color: rgba(255, 255, 255, 0.08);
    font-size: 82px;
    font-weight: 700;
    line-height: 1;
}

.srcs-card-icon {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 105px;
    height: 105px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 50%;
}

.srcs-card-icon svg {
    width: 47px;
    height: 47px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* ==========================================
   CARD CONTENT
========================================== */

.srcs-policy-card-content {
    position: relative;
    z-index: 2;
    padding: 45px 35px;
}

.srcs-policy-card h3 {
    margin: 0;
    color: #17251f;
    font-size: 34px;
    font-weight: 400;
    line-height: 1.2;
}

.srcs-policy-card-content p {
    margin: 0 0 13px;
    color: #4c5952;
    font-size: 16px;
    line-height: 1.8;
}


/* ==========================================
   CARD DECORATION
========================================== */

.srcs-card-decoration {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.srcs-decoration-circle {
    position: absolute;
    display: none;
    width: 200px;
    height: 200px;
    right: -10px;
    border-radius: 50%;
    background: #edf6f1;
}

.srcs-card-decoration svg {
    position: relative;
    z-index: 2;
    width: 125px;
    height: 125px;
    fill: none;
    stroke: #087c45;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* ==========================================
   LANGUAGE DECORATION
========================================== */

.srcs-language-decoration {
    position: relative;
}

.srcs-language-circle {
    position: absolute;
    display: none;
    width: 215px;
    height: 215px;
    right: -5px;
    border-radius: 50%;
    background: radial-gradient( circle at center, rgba(8, 124, 69, 0.08) 0, rgba(8, 124, 69, 0.03) 55%, transparent 56%);
}

.srcs-chat-bubble {
    position: absolute;
    z-index: 3;
    width: 105px;
    height: 70px;
    border-radius: 50px;
}

.bubble-one {
    right: 48px;
    top: 105px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: #087c45;
}

.bubble-one::after {
    content: "";
    position: absolute;
    left: 15px;
    bottom: -13px;
    border-top: 18px solid #087c45;
    border-right: 15px solid transparent;
}

.bubble-one span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #ffffff;
}

.bubble-two {
    right: 10px;
    top: 135px;
    width: 105px;
    height: 68px;
    background: #a7dbc2;
    opacity: 0.9;
}

.bubble-two::after {
    content: "";
    position: absolute;
    right: 15px;
    bottom: -12px;
    border-top: 17px solid #a7dbc2;
    border-left: 15px solid transparent;
}


/* ==========================================
   LARGE TABLET
========================================== */

@media (max-width: 1100px) {
    .srcs-policy-wrapper {
        width: 92%;
    }
    .srcs-policy-hero {
        padding: 35px 30px;
    }
    .srcs-policy-hero h2 {
        font-size: 46px;
    }
    .srcs-policy-card {
        grid-template-columns: 125px minmax(0, 1fr) 180px;
    }
    .srcs-policy-card-content {
        padding: 38px 28px;
    }
    .srcs-policy-card h3 {
        font-size: 29px;
    }
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 850px) {
    .srcs-policies {
        padding: 65px 0;
    }
    .srcs-policy-hero {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .srcs-policy-hero-content {
        padding-right: 0;
    }
    .srcs-policy-hero-image {
        min-height: auto;
    }
    .srcs-image-frame {
        width: 92%;
    }
    .srcs-policy-card {
        grid-template-columns: 115px minmax(0, 1fr);
    }
    .srcs-card-decoration {
        display: none;
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {
    .srcs-policies {
        padding: 20px 0 20px;
    }
    .srcs-policy-wrapper {
        width: 92%;
    }
    .srcs-policy-hero {
        padding: 25px 20px 35px;
        gap: 35px;
    }
    .srcs-policy-label {
        font-size: 9px;
        letter-spacing: 1.2px;
    }
    .srcs-policy-icon {
        width: 38px;
        height: 38px;
        font-size: 17px;
    }
    .srcs-policy-hero h2 {
        margin-top: 20px;
        font-size: 38px;
        letter-spacing: -1px;
    }
    .srcs-policy-hero-content p {
        font-size: 13px;
        line-height: 1.7;
    }
    .srcs-policy-hero-image {
        min-height: 300px;
    }
    .srcs-image-green-bg {
        width: 100px;
        height: 100px;
        right: -5px;
    }
    .srcs-image-frame {
        width: 94%;
        height: 285px;
        margin-left: 0;
    }
    .srcs-image-frame img {
        height: 100%;
    }
    .srcs-dot-pattern {
        width: 45px;
        height: 45px;
        background-size: 8px 8px;
    }
    .srcs-policy-card {
        display: block;
        margin-top: 25px;
    }
    .srcs-policy-number {
        height: 95px;
        justify-content: flex-start;
        padding-left: 22px;
    }
    .srcs-card-icon {
        width: 58px;
        height: 58px;
    }
    .srcs-card-icon svg {
        width: 29px;
        height: 29px;
    }
    .srcs-policy-number>span {
        right: 20px;
        left: auto;
        bottom: -7px;
        font-size: 75px;
    }
    .srcs-policy-card-content {
        padding: 28px 22px 30px;
    }
    .srcs-small-label {
        font-size: 9px;
        letter-spacing: 1.3px;
    }
    .srcs-policy-card h3 {
        font-size: 27px;
        line-height: 1.18;
    }
    .srcs-policy-card-content p {
        font-size: 12px;
        line-height: 1.7;
    }
    .srcs-green-line {
        margin: 18px 0 20px;
    }
}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 400px) {
    .srcs-policy-hero h2 {
        font-size: 31px !important;
    }
    .srcs-image-frame img {
        height: 245px;
    }
    .srcs-policy-card h3 {
        font-size: 24px;
    }
}

.sr-policy-modern {
    width: 100%;
    padding: 0px 0 100px;
    background: #fff;
    overflow: hidden;
}

.sr-policy-wrap {
    width: 90%;
    max-width: 1250px;
    margin: 0 auto;
}


/* ==========================================
   COMMON
========================================== */

.sr-green-line {
    width: 55px;
    height: 3px;
    margin: 25px 0 27px;
    background: #087c45;
}


/* ==========================================
   FIRST SECTION
========================================== */

.sr-policy-first {
    display: grid;
    grid-template-columns: 52% 48%;
    align-items: center;
    min-height: 560px;
    padding: 25px 15px 25px 5px;
    background: #ffffff;
}


/* ==========================================
   IMAGE
========================================== */

.sr-policy-photo {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sr-photo-green {
    position: absolute;
    width: 225px;
    height: 205px;
    top: 0;
    left: 0;
    border-radius: 10px 0 10px 0;
    background: #087c45;
}

.sr-photo-box {
    position: relative;
    z-index: 2;
    width: 90%;
    margin-left: 25px;
    padding: 4px;
    border: 1px solid #087c45;
    border-radius: 17px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(15, 67, 43, 0.15);
}

.sr-photo-box img {
    display: block;
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-radius: 13px;
}


/* ==========================================
   PHOTO BADGE
========================================== */

.sr-photo-badge {
    position: absolute;
    z-index: 5;
    width: 82px;
    height: 82px;
    right: 28%;
    bottom: -34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.13);
}

.sr-photo-badge svg {
    width: 42px;
    height: 42px;
    fill: none;
    stroke: #087c45;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* ==========================================
   DOTS
========================================== */

.sr-dots {
    position: absolute;
    width: 72px;
    height: 72px;
    background-image: radial-gradient( #71bd99 1.6px, transparent 1.6px);
    background-size: 12px 12px;
}

.sr-dots-left {
    left: 0;
    bottom: 0;
}

.sr-dots-right {
    right: 0;
    bottom: 20px;
}


/* ==========================================
   FIRST CONTENT
========================================== */

.sr-policy-first-content {
    padding: 10px 25px 10px 25px;
}

.sr-policy-label {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 23px;
    color: #087c45;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.7px;
}

.sr-label-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #087c45;
}

.sr-label-icon svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* ==========================================
   HEADING
========================================== */

.sr-policy-first-content h2 {
    margin: 0;
    color: #15231d;
    font-size: 50px;
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -1.8px;
}

.sr-policy-first-content h2 em {
    color: #087c45;
    font-style: normal;
    font-weight: 400;
}


/* ==========================================
   PARAGRAPHS
========================================== */

.sr-policy-first-content p {
    max-width: 580px;
    margin: 0 0 17px;
    color: #45534c;
    font-size: 16px;
    line-height: 1.85;
}


/* ==========================================
   SECOND POLICY
========================================== */

.sr-policy-wide {
    position: relative;
    display: grid;
    grid-template-columns: 165px minmax(0, 1fr) 245px;
    min-height: 320px;
    margin-top: 55px;
    overflow: hidden;
    border: 1px solid #dceae3;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 12px 38px rgba(19, 68, 44, 0.07);
    transition: all 0.35s ease;
}

.sr-policy-wide:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(19, 68, 44, 0.11);
}


/* ==========================================
   NUMBER
========================================== */

.sr-wide-number {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient( 180deg, #087c45, #056b3c);
}

.sr-wide-number>span {
    position: absolute;
    bottom: -10px;
    left: 25px;
    color: rgba(255, 255, 255, 0.07);
    font-size: 85px;
    font-weight: 700;
    line-height: 1;
}

.sr-wide-icon {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 110px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 50%;
}

.sr-wide-icon svg {
    width: 52px;
    height: 52px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* ==========================================
   SECOND CONTENT
========================================== */

.sr-wide-content {
    position: relative;
    z-index: 3;
    padding: 40px 35px;
}

.sr-wide-label {
    margin-bottom: 16px;
    color: #087c45;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.8px;
}

.sr-wide-content h3 {
    margin: 0;
    color: #17251f;
    font-size: 34px;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.8px;
}

.sr-wide-content h3 em {
    color: #087c45;
    font-style: normal;
    font-weight: 400;
}

.sr-wide-content h3 span {
    font-style: normal;
}

.sr-wide-content p {
    max-width: 800px;
    margin: 0 0 14px;
    color: #4c5952;
    font-size: 16px;
    line-height: 1.8;
}


/* ==========================================
   GROWTH ART
========================================== */

.sr-growth-art {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.sr-art-circle {
    position: absolute;
    width: 205px;
    height: 205px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background: #eaf4ee;
}

.sr-art-dots {
    position: absolute;
    left: 10px;
    bottom: 25px;
    width: 60px;
    height: 60px;
    background-image: radial-gradient( #79c4a1 1.5px, transparent 1.5px);
    background-size: 10px 10px;
}

.sr-growth-art svg {
    position: relative;
    z-index: 3;
    width: 220px;
    height: 220px;
}

.sr-art-line {
    fill: none;
    stroke: #3b9369;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sr-art-person {
    fill: none;
    stroke: #3b9369;
    stroke-width: 2;
}


/* ==========================================
   1100px
========================================== */

@media (max-width: 1100px) {
    .sr-policy-first {
        grid-template-columns: 50% 50%;
    }
    .sr-policy-first-content {
        padding-left: 15px;
    }
    .sr-policy-first-content h2 {
        font-size: 45px;
    }
    .sr-policy-wide {
        grid-template-columns: 125px minmax(0, 1fr) 190px;
    }
    .sr-wide-content {
        padding: 35px 25px;
    }
    .sr-wide-content h3 {
        font-size: 28px;
    }
}


/* ==========================================
   850px
========================================== */

@media (max-width: 850px) {
    .sr-policy-modern {
        padding: 65px 0 80px;
    }
    .sr-policy-first {
        grid-template-columns: 1fr;
        gap: 45px;
        padding: 35px;
    }
    .sr-policy-photo {
        min-height: 450px;
    }
    .sr-policy-first-content {
        padding: 0;
    }
    .sr-policy-first-content h2 {
        font-size: 52px;
    }
    .sr-policy-wide {
        grid-template-columns: 120px minmax(0, 1fr);
    }
    .sr-growth-art {
        display: none;
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {
    .sr-policy-modern {
        padding: 45px 0 60px;
    }
    .sr-policy-wrap {
        width: 92%;
    }
    .sr-policy-first {
        padding: 25px 20px 35px;
        gap: 35px;
    }
    .sr-policy-photo {
        min-height: 330px;
    }
    .sr-photo-green {
        width: 135px;
        height: 125px;
    }
    .sr-photo-box {
        width: 94%;
        margin-left: 10px;
    }
    .sr-photo-box img {
        height: 290px;
    }
    .sr-photo-badge {
        width: 62px;
        height: 62px;
        right: 20%;
        bottom: -25px;
    }
    .sr-photo-badge svg {
        width: 32px;
        height: 32px;
    }
    .sr-dots {
        width: 45px;
        height: 45px;
        background-size: 8px 8px;
    }
    .sr-policy-label {
        gap: 9px;
        font-size: 9px;
        letter-spacing: 1.1px;
    }
    .sr-label-icon {
        width: 38px;
        height: 38px;
    }
    .sr-label-icon svg {
        width: 21px;
        height: 21px;
    }
    .sr-policy-first-content h2 {
        font-size: 39px;
        letter-spacing: -1px;
    }
    .sr-policy-first-content p {
        font-size: 12px;
        line-height: 1.75;
    }
    .sr-green-line {
        margin: 19px 0 22px;
    }
    /* SECOND */
    .sr-policy-wide {
        display: block;
        margin-top: 30px;
        border-radius: 11px;
    }
    .sr-wide-number {
        height: 90px;
        justify-content: flex-start;
        padding-left: 22px;
    }
    .sr-wide-icon {
        width: 58px;
        height: 58px;
    }
    .sr-wide-icon svg {
        width: 29px;
        height: 29px;
    }
    .sr-wide-number>span {
        right: 20px;
        left: auto;
        bottom: -7px;
        font-size: 75px;
    }
    .sr-wide-content {
        padding: 28px 22px 32px;
    }
    .sr-wide-label {
        font-size: 9px;
        letter-spacing: 1.3px;
    }
    .sr-wide-content h3 {
        font-size: 27px;
        line-height: 1.2;
    }
    .sr-wide-content p {
        font-size: 12px;
        line-height: 1.7;
    }
}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 400px) {
    .sr-policy-first-content h2 {
        font-size: 35px;
    }
    .sr-photo-box img {
        height: 250px;
    }
    .sr-policy-photo {
        min-height: 295px;
    }
    .sr-wide-content h3 {
        font-size: 24px;
    }
}


/* =========================================================
   CONTACT SECTION
========================================================= */

.sr-contact-section {
    width: 100%;
    padding: 90px 0 0;
    background: #ffffff;
    overflow: hidden;
}

.sr-contact-container {
    width: 90%;
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
}


/* =========================================================
   HEADINGS
========================================================= */

.sr-contact-heading h2 {
    margin: 0;
    color: #15231d;
    font-size: 48px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -1.5px;
}

.sr-contact-heading h2 span {
    color: #087c45;
}

.sr-contact-line {
    width: 45px;
    height: 3px;
    margin: 20px 0 20px;
    background: #087c45;
}

.sr-contact-heading>p {
    max-width: 360px;
    margin: 0 0 25px;
    color: #5c6862;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   CONTACT CARDS
========================================================= */

.sr-contact-list {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.sr-contact-card {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 96px;
    overflow: hidden;
    border: 1px solid #e2ebe6;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 7px 25px rgba(17, 67, 43, 0.06);
    transition: all 0.35s ease;
}

.sr-contact-card::before {
    content: "";
    position: absolute;
    left: -35px;
    top: -25px;
    width: 145px;
    height: 145px;
    border-radius: 50%;
    background: #eef7f2;
}

.sr-contact-card:hover {
    transform: translateX(7px);
    border-color: #c7dfd2;
    box-shadow: 0 14px 32px rgba(17, 67, 43, 0.10);
}


/* =========================================================
   CONTACT ICON
========================================================= */

.sr-contact-icon {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 74px;
    height: 74px;
    flex: 0 0 74px;
    margin-left: 18px;
    border-radius: 50%;
    background: #087c45;
}

.sr-contact-icon svg {
    width: 34px;
    height: 34px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   CONTACT INFO
========================================================= */

.sr-contact-info {
    position: relative;
    z-index: 3;
    padding: 16px 18px 16px 25px;
}

.sr-contact-info h3 {
    margin: 0 0 9px;
    color: #18251f;
    font-size: 19px;
    font-weight: 600;
}

.sr-contact-detail {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #27342e;
    font-size: 14px;
    line-height: 1.5;
}

.sr-phone-icon {
    color: #087c45;
    font-size: 20px;
    line-height: 1;
    transform: rotate(-35deg);
}

.sr-contact-info a {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 5px;
    color: #087c45;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.25s ease;
}

.sr-contact-info a:hover {
    color: #045c33;
}

.sr-contact-detail .sr-contact-link {
    display: inline;
    margin-top: 0;
    color: #27342e;
    font-size: inherit;
    font-weight: 400;
}

.sr-contact-detail .sr-contact-link:hover {
    color: #087c45;
}

.sr-mail-icon {
    font-size: 15px;
}


/* =========================================================
   RIGHT ROUTES
========================================================= */

.sr-contact-right {
    min-width: 0;
}

.sr-route-list {
    margin-top: 25px;
}

.sr-route-item {
    display: grid;
    grid-template-columns: 64px 1fr;
    align-items: center;
    gap: 16px;
    padding: 17px 0;
    border-bottom: 1px dashed #ccd9d2;
}

.sr-route-item:first-child {
    padding-top: 5px;
}

.sr-route-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #eef7f2;
}

.sr-route-icon svg {
    width: 29px;
    height: 29px;
    fill: none;
    stroke: #087c45;
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sr-route-item p {
    margin: 0;
    color: #4c5852;
    font-size: 14px;
    line-height: 1.8;
}

.sr-route-item strong {
    color: #17241e;
    font-weight: 700;
}


/* =========================================================
   MAP
========================================================= */

.sr-map-box {
    position: relative;
    width: 100%;
    height: 275px;
    margin-top: 25px;
    overflow: hidden;
    border: 1px solid #d9e6df;
    border-radius: 13px;
    box-shadow: 0 10px 30px rgba(20, 66, 44, 0.10);
}

.sr-map-box iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}


/* MAP INFO */

.sr-map-label {
    position: absolute;
    z-index: 5;
    top: 15px;
    left: 15px;
    width: 215px;
    padding: 17px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.13);
}

.sr-map-label strong {
    display: block;
    margin-bottom: 7px;
    color: #1c2923;
    font-size: 12px;
}

.sr-map-label span {
    display: block;
    color: #4d5b54;
    font-size: 11px;
    line-height: 1.55;
}

.sr-map-label a {
    display: inline-block;
    margin-top: 9px;
    color: #087c45;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
}


/* =========================================================
   BOTTOM BAR
========================================================= */

.sr-contact-bottom {
    width: 90%;
    max-width: 1250px;
    margin: 55px auto 70px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid #dfebe5;
    border-radius: 13px;
    background: #f4f9f6;
    box-shadow: 0 8px 25px rgba(17, 67, 43, 0.05);
}

.sr-bottom-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 105px;
    padding: 20px 30px;
}

.sr-bottom-item+.sr-bottom-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 25px;
    width: 1px;
    height: 55px;
    background: #ccdcd4;
}

.sr-bottom-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    border-radius: 50%;
    background: #087c45;
}

.sr-bottom-icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sr-bottom-item strong {
    display: block;
    margin-bottom: 6px;
    color: #087c45;
    font-size: 14px;
}

.sr-bottom-item span {
    display: block;
    color: #26332d;
    font-size: 13px;
    line-height: 1.5;
}

.sr-bottom-link {
    color: #26332d;
    text-decoration: none;
    transition: color 0.25s ease;
}

.sr-bottom-link:hover {
    color: #087c45;
    text-decoration: underline;
}


/* =========================================================
   1100px
========================================================= */

@media (max-width: 1100px) {
    .sr-contact-container {
        gap: 40px;
    }
    .sr-contact-heading h2 {
        font-size: 42px;
    }
    .sr-contact-card {
        min-height: 90px;
    }
    .sr-contact-icon {
        width: 64px;
        height: 64px;
        flex-basis: 64px;
        margin-left: 13px;
    }
    .sr-contact-icon svg {
        width: 29px;
        height: 29px;
    }
    .sr-contact-info {
        padding-left: 18px;
    }
    .sr-contact-info h3 {
        font-size: 22px !important;
        font-weight: 500!important;
    }
    .sr-contact-detail,
    .sr-contact-info a {
        font-size: 11px;
    }
    .sr-route-item p {
        font-size: 12px;
    }
    .sr-bottom-item {
        padding: 18px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 850px) {
    .sr-contact-section {
        padding-top: 65px;
    }
    .sr-contact-container {
        grid-template-columns: 1fr;
        gap: 65px;
    }
    .sr-contact-left,
    .sr-contact-right {
        width: 100%;
        max-width: 750px;
        margin: 0 auto;
    }
    .sr-contact-heading h2 {
        font-size: 46px;
    }
    .sr-contact-card {
        min-height: 100px;
    }
    .sr-contact-icon {
        width: 72px;
        height: 72px;
        flex-basis: 72px;
        margin-left: 18px;
    }
    .sr-contact-info {
        padding-left: 23px;
    }
    .sr-contact-info h3 {
        font-size: 18px;
    }
    .sr-contact-detail,
    .sr-contact-info a {
        font-size: 13px;
    }
    .sr-bottom-item {
        padding: 20px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {
    .sr-contact-section {
        padding-top: 45px;
    }
    .sr-contact-container,
    .sr-contact-bottom {
        width: 92%;
    }
    .sr-contact-container {
        gap: 50px;
    }
    .sr-contact-heading h2 {
        font-size: 38px;
        letter-spacing: -1px;
    }
    .sr-contact-heading>p {
        font-size: 13px;
    }
    /* CONTACT CARD */
    .sr-contact-card {
        min-height: 88px;
    }
    .sr-contact-card::before {
        width: 120px;
        height: 120px;
    }
    .sr-contact-icon {
        width: 57px;
        height: 57px;
        flex-basis: 57px;
        margin-left: 10px;
    }
    .sr-contact-icon svg {
        width: 27px;
        height: 27px;
    }
    .sr-contact-info {
        padding: 13px 10px 13px 14px;
    }
    .sr-contact-info h3 {
        margin-bottom: 6px;
        font-size: 14px;
    }
    .sr-contact-detail {
        gap: 6px;
        font-size: 10px;
    }
    .sr-contact-info a {
        gap: 6px;
        margin-top: 3px;
        font-size: 10px;
    }
    .sr-phone-icon {
        font-size: 16px;
    }
    /* ROUTES */
    .sr-route-item {
        grid-template-columns: 48px 1fr;
        gap: 12px;
        padding: 15px 0;
    }
    .sr-route-icon {
        width: 46px;
        height: 46px;
    }
    .sr-route-icon svg {
        width: 23px;
        height: 23px;
    }
    .sr-route-item p {
        font-size: 11px;
        line-height: 1.7;
    }
    /* MAP */
    .sr-map-box {
        height: 290px;
    }
    .sr-map-label {
        width: 170px;
        top: 10px;
        left: 10px;
        padding: 12px;
    }
    .sr-map-label strong {
        font-size: 10px;
    }
    .sr-map-label span {
        font-size: 9px;
    }
    .sr-map-label a {
        font-size: 9px;
    }
    /* BOTTOM */
    .sr-contact-bottom {
        grid-template-columns: 1fr;
        margin-top: 40px;
        margin-bottom: 45px;
    }
    .sr-bottom-item {
        min-height: 85px;
        padding: 15px 20px;
    }
    .sr-bottom-item+.sr-bottom-item::before {
        top: 0;
        left: 20px;
        width: calc(100% - 40px);
        height: 1px;
    }
    .sr-bottom-icon {
        width: 43px;
        height: 43px;
        flex-basis: 43px;
    }
    .sr-bottom-icon svg {
        width: 22px;
        height: 22px;
    }
    .sr-bottom-item strong {
        font-size: 12px;
    }
    .sr-bottom-item span {
        font-size: 11px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 390px) {
    .sr-contact-heading h2 {
        font-size: 34px;
    }
    .sr-contact-info {
        padding-left: 10px;
    }
    .sr-contact-detail,
    .sr-contact-info a {
        font-size: 9px;
    }
    .sr-contact-icon {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
    }
    .sr-contact-icon svg {
        width: 24px;
        height: 24px;
    }
}


/* ================================
   SRCS ABOUT SECTION
================================ */

.srcs-about {
    position: relative;
    width: 100%;
    min-height: 700px;
    overflow: hidden;
    background: #f7f6ef;
    isolation: isolate;
}


/* Background Image */

.srcs-about-bg {
    position: absolute;
    z-index: -3;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background-image: url("../images/diveristy-bg.png");
    background-size: auto 120%;
    background-position: right 38%;
    clip-path: ellipse(82% 78% at 85% 50%);
    transform: scale(1.02);
}


/* Soft fade between image and content */

.srcs-about-overlay {
    position: absolute;
    z-index: -2;
    inset: 0;
    background: linear-gradient( 90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, .98) 34%, rgba(255, 255, 255, .78) 54%, rgba(255, 255, 255, .28) 76%, rgba(255, 255, 255, .08) 100%);
}


/* Main wrapper */

.srcs-about-inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 75px 55px 0px;
}


/* Content */

.srcs-about-content {
    width: 58%;
    max-width: 790px;
}


/* Keep the numbered points in a clean left column on the inner pages. */

.srcs-about-inner {
    max-width: none;
    padding-left: 4vw;
    padding-right: 4vw;
}

.srcs-about-content {
    width: 54%;
    max-width: 760px;
}

.srcs-about-item {
    gap: 18px;
}


/* Individual paragraphs */

.srcs-about-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 0 0 27px;
    margin-bottom: 27px;
}

.srcs-about-item:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 54px;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient( 90deg, rgba(24, 91, 58, 0.25), rgba(24, 91, 58, 0));
}


/* Number circle */

.srcs-about-icon {
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(24, 91, 58, 0.16);
    color: #185b3a;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(20, 55, 38, 0.09), inset 0 0 0 5px rgba(255, 255, 255, 0.5);
    transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}


/* Paragraph */

.srcs-about-item p {
    margin: 0;
    color: #202722;
    font-size: 16px;
    line-height: 1.72;
    font-weight: 400;
    letter-spacing: 0.05px;
}


/* Hover */

.srcs-about-item:hover .srcs-about-icon {
    transform: translateY(-4px);
    background: #185b3a;
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(24, 91, 58, 0.18), inset 0 0 0 5px rgba(255, 255, 255, 0.12);
}

.srcs-about-item:hover p {
    color: #10251a;
}


/* Decorative dots */

.srcs-about-dots {
    position: absolute;
    z-index: -1;
    left: 28px;
    top: 35px;
    width: 105px;
    height: 75px;
    background-image: radial-gradient( rgba(24, 91, 58, 0.20) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.55;
}


/* Bottom decorative curve */

.srcs-about::after {
    content: "";
    position: absolute;
    z-index: -1;
    width: 360px;
    height: 360px;
    right: -170px;
    bottom: -220px;
    border-radius: 50%;
    border: 1px solid rgba(24, 91, 58, 0.16);
}


/* ================================
   TABLET
================================ */

@media (max-width: 1100px) {
    .srcs-about {
        min-height: auto;
    }
    .srcs-about-bg {
        width: 50%;
        opacity: 0.8;
    }
    .srcs-about-content {
        width: 68%;
    }
    .srcs-about-item p {
        font-size: 15px;
        line-height: 1.65;
    }
    .srcs-about-inner {
        padding: 60px 40px;
    }
}


/* ================================
   MOBILE
================================ */

@media (max-width: 767px) {
    .srcs-about {
        background: #f7f6ef;
    }
    .srcs-about-bg {
        position: absolute;
        top: auto;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 360px;
        opacity: 0.18;
        clip-path: none;
        background-position: center;
    }
    .srcs-about-overlay {
        background: linear-gradient( 180deg, #f7f6ef 0%, rgba(247, 246, 239, 0.96) 65%, rgba(247, 246, 239, 0.75) 100%);
    }
    .srcs-about-inner {
        padding: 55px 22px 65px;
    }
    .srcs-about-content {
        width: 100%;
    }
    .srcs-about-item {
        gap: 16px;
        padding-bottom: 22px;
        margin-bottom: 22px;
    }
    .srcs-about-item:not(:last-child)::after {
        left: 46px;
    }
    .srcs-about-icon {
        flex: 0 0 46px;
        width: 46px;
        height: 46px;
        font-size: 10px;
    }
    .srcs-about-item p {
        font-size: 14px;
        line-height: 1.65;
    }
    .srcs-about-dots {
        left: 10px;
        top: 15px;
        transform: scale(0.7);
        transform-origin: top left;
    }
}


/* Small mobile */

@media (max-width: 480px) {
    .srcs-about-inner {
        padding: 45px 18px 55px;
    }
    .srcs-about-item {
        gap: 13px;
    }
    .srcs-about-icon {
        flex-basis: 40px;
        width: 40px;
        height: 40px;
    }
    .srcs-about-item:not(:last-child)::after {
        left: 40px;
    }
    .srcs-about-item p {
        font-size: 13.5px;
        line-height: 1.62;
    }
}


/* =========================================
   ADMISSION FORM
========================================= */

.admission-form-section {
    position: relative;
    width: 100%;
    padding: 40px 20px;
    overflow: hidden;
    background: #fff;
}


/* =========================================
   MAIN WRAPPER
========================================= */

.admission-form-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 360px 1fr;
    background: #ffffff;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(20, 45, 32, 0.12);
}


/* =========================================
   LEFT INTRO
========================================= */

.admission-intro {
    position: relative;
    padding: 55px 40px;
    overflow: hidden;
    background: #155b39;
    color: #ffffff;
}

.admission-intro::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    top: -130px;
    right: -150px;
}

.admission-intro::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 50%;
    bottom: -120px;
    left: -100px;
}

.intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 13px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 700;
}

.intro-badge::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d3ae62;
}

.admission-intro h2 {
    position: relative;
    margin: 32px 0 20px;
    font-size: 38px;
    line-height: 1.08;
    font-weight: 500;
    letter-spacing: -1px;
}

.admission-intro>p {
    position: relative;
    margin: 0;
    max-width: 270px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.75;
}

.intro-line {
    width: 55px;
    height: 2px;
    margin: 32px 0;
    background: #d3ae62;
}

.intro-points {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.intro-point {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.intro-point>span {
    width: 35px;
    height: 35px;
    flex: 0 0 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 50%;
    color: #d3ae62;
    font-size: 13px;
    font-weight: 700;
}

.intro-point strong {
    display: block;
    margin-bottom: 4px;
    font-size: 16px;
    font-weight: 500;
}

.intro-point small {
    display: block;
    color: rgba(255, 255, 255, 0.58);
    font-size: 15px;
    line-height: 1.5;
}

.intro-decoration {
    position: absolute;
    bottom: 35px;
    right: 35px;
    display: grid;
    grid-template-columns: repeat(3, 6px);
    gap: 8px;
    opacity: 0.5;
}

.intro-decoration span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #d3ae62;
}


/* =========================================
   FORM CARD
========================================= */

.admission-form-card {
    padding: 52px 55px 45px;
    background: #ffffff;
}

.form-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-bottom: 30px;
    margin-bottom: 5px;
    border-bottom: 1px solid #e9ece7;
}

.form-kicker {
    display: block;
    margin-bottom: 8px;
    color: #155b39;
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 700;
}

.form-top h3 {
    margin: 0;
    color: #183a2a;
    font-size: 27px;
    font-weight: 600;
}

.form-count {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.form-count span {
    color: #155b39;
    font-size: 25px;
    font-weight: 700;
}

.form-count small {
    color: #a3aaa5;
    font-size: 12px;
}


/* =========================================
   FORM SECTION
========================================= */

.form-section {
    padding: 31px 0;
    border-bottom: 1px solid #edf0ec;
}

.section-heading {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 23px;
}

.section-heading>span {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #edf5ef;
    color: #155b39;
    font-size: 10px;
    font-weight: 700;
}

.section-heading strong {
    display: block;
    margin-bottom: 3px;
    color: #203c2d;
    font-size: 14px;
    font-weight: 650;
}

.section-heading small {
    color: #929a95;
    font-size: 11px;
}


/* =========================================
   FORM GRID
========================================= */

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 19px 17px;
}

.field {
    min-width: 0;
}

.field.full {
    grid-column: 1 / -1;
}

.field label {
    display: block;
    margin-bottom: 8px;
    color: #46534b;
    font-size: 15px;
    font-weight: 600;
}

.field label span {
    color: #b88736;
    margin-left: 2px;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #dfe4df;
    border-radius: 8px;
    background: #fafbfa;
    color: #26342c;
    font-size: 13px;
    outline: none;
    transition: all 0.25s ease;
}

.field input,
.field select {
    height: 47px;
    padding: 0 14px;
}

.field textarea {
    min-height: 105px;
    padding: 13px 14px;
    resize: vertical;
    font-family: inherit;
}

.field input::placeholder,
.field textarea::placeholder {
    color: #aeb5b0;
}

.field select {
    cursor: pointer;
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #718078 50%), linear-gradient(135deg, #718078 50%, transparent 50%);
    background-position: calc(100% - 17px) 20px, calc(100% - 12px) 20px;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
    padding-right: 38px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: #155b39;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(21, 91, 57, 0.07);
}

.field input:hover,
.field select:hover,
.field textarea:hover {
    border-color: #b9c8be;
}

.field input[readonly] {
    background: #f1f4f1;
    color: #69756e;
}


/* =========================================
   BOTTOM
========================================= */

.form-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 30px;
}

.form-bottom p {
    margin: 0;
    color: #929a95;
    font-size: 11px;
}

.form-bottom p span {
    color: #b88736;
}

.form-bottom button {
    min-width: 175px;
    height: 50px;
    padding: 0 10px 0 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 0;
    border-radius: 7px;
    background: #155b39;
    color: #ffffff;
    cursor: pointer;
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.form-bottom button b {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 16px;
    font-weight: 400;
    transition: transform 0.3s ease;
}

.form-bottom button:hover {
    background: #0e4329;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(21, 91, 57, 0.20);
}

.form-bottom button:hover b {
    transform: translate(3px, -3px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {
    .admission-form-wrapper {
        grid-template-columns: 300px 1fr;
    }
    .admission-intro {
        padding: 45px 30px;
    }
    .admission-intro h2 {
        font-size: 32px;
    }
    .admission-form-card {
        padding: 42px 35px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {
    .admission-form-section {
        padding: 45px 15px;
    }
    .admission-form-wrapper {
        grid-template-columns: 1fr;
        border-radius: 18px;
    }
    .admission-intro {
        padding: 38px 28px;
    }
    .admission-intro h2 {
        font-size: 31px;
        margin-top: 25px;
    }
    .admission-intro>p {
        max-width: 100%;
    }
    .intro-line {
        margin: 25px 0;
    }
    .intro-points {
        gap: 18px;
    }
    .intro-decoration {
        display: none;
    }
    .admission-form-card {
        padding: 35px 22px;
    }
    .form-top h3 {
        font-size: 23px;
    }
    .form-grid {
        grid-template-columns: 1fr;
        gap: 17px;
    }
    .field.full {
        grid-column: auto;
    }
    .form-section {
        padding: 26px 0;
    }
    .form-bottom {
        align-items: stretch;
        flex-direction: column;
    }
    .form-bottom button {
        width: 100%;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 420px) {
    .admission-form-section {
        padding: 25px 10px;
    }
    .admission-intro {
        padding: 32px 22px;
    }
    .admission-form-card {
        padding: 30px 18px;
    }
    .form-top {
        padding-bottom: 23px;
    }
    .form-count {
        display: none;
    }
    .section-heading small {
        line-height: 1.5;
    }
}

.srcs-feature-section {
    width: 100%;
    padding: 40px 0 40px;
    background: #f7faf8;
    overflow: hidden;
}

.srcs-feature-wrap {
    width: 90%;
    max-width: 1250px;
    margin: 0 auto;
}


/* ==========================================
   MAIN CARD
========================================== */

.srcs-feature-card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 380px;
    margin-bottom: 28px;
    overflow: hidden;
    border: 1px solid #e0eae4;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 12px 40px rgba(18, 68, 45, 0.07);
    transition: all 0.4s ease;
}

.srcs-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 55px rgba(18, 68, 45, 0.12);
}


/* ==========================================
   IMAGE
========================================== */

.srcs-feature-image {
    position: relative;
    min-height: 380px;
    overflow: hidden;
}

.srcs-feature-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(0, 0, 0, 0.02), transparent);
    pointer-events: none;
}

.srcs-feature-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.srcs-feature-card:hover .srcs-feature-image img {
    transform: scale(1.045);
}


/* ==========================================
   CONTENT
========================================== */

.srcs-feature-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 55px 65px;
    overflow: hidden;
}

.srcs-feature-content::before {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    top: -75px;
    right: -65px;
    border-radius: 50%;
    background: #e7f4ed;
}


/* ==========================================
   ICON
========================================== */

.srcs-feature-icon {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 22px;
    border-radius: 50%;
    background: #087c45;
    box-shadow: 0 8px 20px rgba(8, 124, 69, 0.18);
}

.srcs-feature-icon svg {
    width: 29px;
    height: 29px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 1.45;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* ==========================================
   LABEL
========================================== */

.srcs-feature-label {
    position: relative;
    z-index: 2;
    margin-bottom: 12px;
    color: #087c45;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}


/* ==========================================
   HEADING
========================================== */

.srcs-feature-content h2 {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #17241e;
    font-size: 45px;
    font-weight: 400;
    line-height: 1.04;
    letter-spacing: 1px;
}

.srcs-feature-content h2 em {
    color: #f4c400;
    font-style: normal;
    font-weight: 400;
}


/* ==========================================
   LINE
========================================== */

.srcs-feature-line {
    position: relative;
    z-index: 2;
    width: 48px;
    height: 3px;
    margin: 22px 0 21px;
    background: #087c45;
}


/* ==========================================
   TEXT
========================================== */

.srcs-feature-content p {
    position: relative;
    z-index: 2;
    max-width: 450px;
    margin: 0 0 25px;
    color: #53615a;
    font-size: 16px;
    line-height: 1.8;
}


/* ==========================================
   BUTTON
========================================== */

.srcs-feature-btn {
    position: relative;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 28px;
    padding: 13px 20px;
    border-radius: 7px;
    background: #087c45;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(8, 124, 69, 0.15);
    transition: all 0.3s ease;
}

.srcs-feature-btn span {
    font-size: 20px;
    line-height: 0;
    transition: transform 0.3s ease;
}

.srcs-feature-btn:hover {
    background: #056b3b;
    color: #ffffff;
}

.srcs-feature-btn:hover span {
    transform: translateX(5px);
}


/* OUTLINE BUTTON */

.srcs-outline-btn {
    background: transparent;
    color: #087c45;
    border: 1px solid #087c45;
    box-shadow: none;
}

.srcs-outline-btn:hover {
    background: #087c45;
    color: #ffffff;
}


/* ==========================================
   DOT PATTERN
========================================== */

.srcs-feature-pattern {
    position: absolute;
    right: 35px;
    bottom: 30px;
    width: 65px;
    height: 65px;
    opacity: 0.65;
    background-image: radial-gradient( #79c5a2 1.5px, transparent 1.5px);
    background-size: 11px 11px;
}


/* ==========================================
   ALTERNATING CARD
========================================== */

.srcs-feature-reverse {
    grid-template-columns: 1fr 1fr;
}

.srcs-feature-reverse .srcs-feature-image {
    order: 2;
}

.srcs-feature-reverse .srcs-feature-content {
    order: 1;
    background: #f5faf7;
}

.srcs-feature-reverse .srcs-feature-content::before {
    right: auto;
    left: -75px;
    top: auto;
    bottom: -85px;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 1000px) {
    .srcs-feature-content {
        padding: 45px 40px;
    }
    .srcs-feature-content h2 {
        font-size: 40px;
    }
    .srcs-feature-content p {
        font-size: 13px;
    }
}


/* ==========================================
   TABLET / SMALL LAPTOP
========================================== */

@media (max-width: 800px) {
    .srcs-feature-section {
        padding: 65px 0 75px;
    }
    .srcs-feature-card,
    .srcs-feature-reverse {
        grid-template-columns: 1fr;
    }
    .srcs-feature-image,
    .srcs-feature-reverse .srcs-feature-image {
        order: 1;
        min-height: 330px;
    }
    .srcs-feature-image img {
        min-height: 330px;
        height: 330px;
    }
    .srcs-feature-content,
    .srcs-feature-reverse .srcs-feature-content {
        order: 2;
        min-height: 330px;
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {
    .srcs-feature-section {
        padding: 45px 0 60px;
    }
    .srcs-feature-wrap {
        width: 92%;
    }
    .srcs-feature-card {
        margin-bottom: 20px;
        border-radius: 12px;
    }
    .srcs-feature-image,
    .srcs-feature-image img {
        min-height: 260px;
        height: 260px;
    }
    .srcs-feature-content {
        min-height: 330px;
        padding: 32px 25px;
    }
    .srcs-feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 18px;
    }
    .srcs-feature-icon svg {
        width: 25px;
        height: 25px;
    }
    .srcs-feature-label {
        font-size: 8px;
        letter-spacing: 1.4px;
    }
    .srcs-feature-content h2 {
        font-size: 35px;
        letter-spacing: -1px;
    }
    .srcs-feature-line {
        margin: 18px 0 18px;
    }
    .srcs-feature-content p {
        font-size: 12px;
        line-height: 1.7;
    }
    .srcs-feature-btn {
        gap: 20px;
        padding: 12px 16px;
        font-size: 11px;
    }
    .srcs-feature-pattern {
        right: 18px;
        bottom: 18px;
        width: 45px;
        height: 45px;
        background-size: 8px 8px;
    }
}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 400px) {
    .srcs-feature-image,
    .srcs-feature-image img {
        min-height: 225px;
        height: 225px;
    }
    .srcs-feature-content {
        min-height: 315px;
        padding: 28px 21px;
    }
    .srcs-feature-content h2 {
        font-size: 31px;
    }
}


/* ==========================================
   ADMISSIONS CONTACT SECTION
========================================== */

.sr-admission-section {
    width: 100%;
    padding: 75px 0 90px;
    background: #ffffff;
    overflow: hidden;
}

.sr-admission-container {
    width: 90%;
    max-width: 1180px;
    margin: 0 auto;
}


/* ==========================================
   HEADING
========================================== */

.sr-admission-heading {
    text-align: center;
    margin-bottom: 45px;
}

.sr-admission-heading h2 {
    margin: 0;
    color: #17241e;
    font-size: 53px;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -1px;
}

.sr-admission-heading h2 span {
    color: #087c45;
    font-style: normal;
    font-weight: 400;
}


/* ==========================================
   HEADING DIVIDER
========================================== */

.sr-admission-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 17px;
}

.sr-admission-divider i {
    display: block;
    width: 55px;
    height: 1px;
    background: #087c45;
}

.sr-admission-divider b {
    color: #087c45;
    font-size: 10px;
    font-weight: 400;
}


/* ==========================================
   PEOPLE GRID
========================================== */

.sr-admission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}


/* ==========================================
   PERSON CARD
========================================== */

.sr-admission-card {
    overflow: hidden;
    border: 1px solid #e2ebe6;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 10px 35px rgba(20, 70, 46, 0.07);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.sr-admission-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 45px rgba(20, 70, 46, 0.13);
}


/* ==========================================
   IMAGE
========================================== */

.sr-admission-image {
    position: relative;
    height: 485px;
    overflow: hidden;
    background: #edf3ef;
}

.sr-admission-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.7s ease;
}

.sr-admission-card:hover .sr-admission-image img {
    transform: scale(1.035);
}


/* ==========================================
   INFORMATION
========================================== */

.sr-admission-info {
    position: relative;
    padding: 25px 25px 23px;
    text-align: center;
    background: #ffffff;
}

.sr-admission-info h3 {
    margin: 0;
    color: #17241e;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.25;
}

.sr-admission-info p {
    margin: 7px 0 0;
    color: #5a6861;
    font-size: 17px;
    line-height: 1.5;
}


/* ==========================================
   SMALL CARD DIVIDER
========================================== */

.sr-card-divider {
    position: relative;
    width: 70px;
    height: 1px;
    margin: 18px auto 0;
    background: #087c45;
}

.sr-card-divider::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    border: 1px solid #087c45;
    background: #ffffff;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 900px) {
    .sr-admission-section {
        padding: 65px 0 75px;
    }
    .sr-admission-heading h2 {
        font-size: 36px;
    }
    .sr-admission-grid {
        gap: 22px;
    }
    .sr-admission-image {
        height: 400px;
    }
    .sr-admission-info h3 {
        font-size: 19px;
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 650px) {
    .sr-admission-section {
        padding: 50px 0 60px;
    }
    .sr-admission-container {
        width: 92%;
    }
    .sr-admission-heading {
        margin-bottom: 30px;
    }
    .sr-admission-heading h2 {
        font-size: 31px;
        letter-spacing: -0.5px;
    }
    .sr-admission-divider {
        margin-top: 13px;
    }
    .sr-admission-divider i {
        width: 35px;
    }
    .sr-admission-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .sr-admission-image {
        height: 390px;
    }
    .sr-admission-info {
        padding: 21px 15px 20px;
    }
    .sr-admission-info h3 {
        font-size: 18px;
    }
    .sr-admission-info p {
        font-size: 12px;
    }
}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 400px) {
    .sr-admission-heading h2 {
        font-size: 27px;
    }
    .sr-admission-image {
        height: 330px;
    }
    .sr-admission-info h3 {
        font-size: 16px;
    }
}


/* ==========================================
   CAMPUS SHOWCASE
========================================== */

.campus-showcase {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 105px 30px 95px;
    background: #fff;
}


/* ==========================================
   WRAPPER
========================================== */

.campus-wrap {
    position: relative;
    z-index: 2;
    max-width: 1380px;
    margin: 0 auto;
}


/* ==========================================
   INTRO
========================================== */

.campus-intro {
    margin-bottom: 58px;
}

.campus-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 17px;
    color: #155b39;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.campus-eyebrow span {
    width: 28px;
    height: 1px;
    background: #bd9147;
}

.campus-heading-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: end;
}

.campus-heading-row h2 {
    margin: 0;
    color: #143d29;
    font-size: 47px;
    line-height: 1.1;
    letter-spacing: 1px;
    font-weight: 500;
}

.campus-heading-row h2 em {
    display: block;
    color: #bd9147;
    font-style: normal;
}

.campus-intro-copy {
    position: relative;
    padding-left: 27px;
    padding-bottom: 4px;
}

.campus-intro-copy::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    bottom: 2px;
    width: 2px;
    background: #bd9147;
}

.campus-intro-copy p {
    margin: 0;
    color: #000;
    font-size: 14px;
    line-height: 1.85;
}


/* ==========================================
   EXPERIENCE AREA
========================================== */

.campus-experience {
    display: grid;
    grid-template-columns: 1.45fr 0.75fr;
    gap: 25px;
    min-height: 590px;
}


/* ==========================================
   MAIN IMAGE
========================================== */

.campus-main-image {
    position: relative;
    min-height: 590px;
    overflow: hidden;
    border-radius: 20px;
    background: #ddd;
}

.campus-main-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( 180deg, rgba(0, 0, 0, 0) 55%, rgba(8, 35, 22, 0.68) 100%);
    pointer-events: none;
}

.campus-main-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.campus-main-image:hover img {
    transform: scale(1.045);
}

.campus-image-label {
    position: absolute;
    z-index: 2;
    left: 32px;
    bottom: 28px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: #fff;
}

.campus-image-label span {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    font-size: 10px;
}

.campus-image-label strong {
    font-size: 16px;
    font-weight: 500;
}


/* ==========================================
   SIDE
========================================== */

.campus-side {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 25px;
}


/* ==========================================
   SMALL IMAGE
========================================== */

.campus-small-image {
    position: relative;
    height: 285px;
    overflow: hidden;
    border-radius: 20px;
    background: #ddd;
}

.campus-small-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.campus-small-image:hover img {
    transform: scale(1.06);
}

.campus-image-number {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 39px;
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #155b39;
    font-size: 10px;
    font-weight: 700;
}


/* ==========================================
   VISIT CARD
========================================== */

.campus-visit-card {
    position: relative;
    flex: 1;
    padding: 31px 30px 27px;
    background: #155b39;
    border-radius: 20px;
    overflow: hidden;
}

.campus-visit-card::before {
    content: "";
    position: absolute;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    right: -110px;
    top: -110px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.campus-visit-card::after {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    left: -75px;
    bottom: -80px;
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.visit-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.visit-icon {
    width: 37px;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    color: #fff;
    font-size: 15px;
}

.visit-label {
    color: #d5b36c;
    font-size: 9px;
    letter-spacing: 2px;
    font-weight: 700;
}

.campus-visit-card h3 {
    position: relative;
    z-index: 2;
    margin: 27px 0 13px;
    color: #fff;
    font-size: 31px;
    line-height: 1.12;
    font-weight: 500;
    letter-spacing: -0.8px;
}

.campus-visit-card h3 span {
    color: #d5b36c;
}

.campus-visit-card p {
    position: relative;
    z-index: 2;
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 15px;
    line-height: 1.7;
}

.campus-visit-btn {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 47px;
    box-sizing: border-box;
    padding: 7px 8px 7px 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: #155b39;
    background: #f5f5ee;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.campus-visit-btn b {
    width: 33px;
    height: 33px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d5b36c;
    color: #fff;
    font-size: 15px;
    border-radius: 15px;
    font-weight: 400;
    transition: transform 0.3s ease;
}

.campus-visit-btn:hover {
    background: #fff;
}

.campus-visit-btn:hover b {
    transform: translate(3px, -3px);
}


/* ==========================================
   BOTTOM INFO
========================================== */

.campus-bottom {
    display: flex;
    align-items: center;
    min-height: 118px;
    margin-top: 28px;
    padding: 0 42px;
    background: linear-gradient(110deg, #f7fbf8 0%, #ffffff 55%, #f4f8f0 100%);
    border: 1px solid rgba(21, 91, 57, 0.16);
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(21, 91, 57, 0.09);
    position: relative;
    overflow: hidden;
}

.campus-bottom::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(#f5c945, #bd9147);
}

.campus-bottom::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -115px;
    width: 240px;
    height: 240px;
    border: 1px solid rgba(189, 145, 71, 0.22);
    border-radius: 50%;
    pointer-events: none;
}

.campus-bottom-item {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 14px;
}

.campus-bottom-item span {
    color: #087c45;
    font-size: 39px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: -1px;
}

.campus-bottom-item p {
    margin: 0;
    color: #000;
    font-size: 13px;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.campus-bottom-line {
    width: 1px;
    height: 42px;
    margin: 0 45px;
    background: rgba(21, 91, 57, 0.2);
}

.campus-tour-btn {
    position: relative;
    z-index: 1;
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 20px;
    color: #087c45;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.campus-tour-btn span {
    width: 39px;
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #087c45;
    border-radius: 50%;
    font-size: 16px;
    transition: all 0.3s ease;
}

.campus-tour-btn:hover span {
    background: #087c45;
    color: #fff;
    transform: translate(3px, -3px);
}


/* ==========================================
   LARGE TABLET
========================================== */

@media (max-width: 1050px) {
    .campus-showcase {
        padding: 80px 25px;
    }
    .campus-heading-row {
        gap: 40px;
    }
    .campus-experience {
        grid-template-columns: 1.25fr 0.75fr;
    }
    .campus-main-image {
        min-height: 520px;
    }
    .campus-small-image {
        height: 250px;
    }
    .campus-visit-card h3 {
        font-size: 25px;
    }
    .campus-bottom-line {
        margin: 0 25px;
    }
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 800px) {
    .campus-heading-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .campus-intro {
        margin-bottom: 40px;
    }
    .campus-experience {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .campus-main-image {
        min-height: 450px;
    }
    .campus-side {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .campus-small-image {
        height: 100%;
        min-height: 300px;
    }
    .campus-visit-card {
        min-height: 300px;
    }
    .campus-bottom {
        flex-wrap: wrap;
        gap: 25px;
        padding: 25px;
    }
    .campus-tour-btn {
        margin-left: 0;
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {
    .campus-showcase {
        padding: 60px 16px;
    }
    .campus-heading-row h2 {
        font-size: 30px !important;
        letter-spacing: -1.4px;
        line-height: 1.35 !important;
    }
    .campus-intro-copy {
        padding-left: 18px;
    }
    .campus-intro-copy p {
        font-size: 13px;
        line-height: 1.75;
    }
    .campus-main-image {
        min-height: 370px;
    }
    .campus-side {
        display: flex;
    }
    .campus-small-image {
        height: 250px;
        min-height: 0;
    }
    .campus-visit-card {
        min-height: 300px;
        padding: 27px 23px;
    }
    .campus-visit-card h3 {
        font-size: 28px;
    }
    .campus-bottom {
        align-items: flex-start;
        flex-direction: column;
        margin-top: 16px;
        padding: 25px 22px;
    }
    .campus-bottom-line {
        width: 100%;
        height: 1px;
        margin: 0;
    }
    .campus-tour-btn {
        width: 100%;
        justify-content: space-between;
    }
}


/* =========================================
   APPLY ONLINE PAGE
========================================= */

.apply-online-page {
    background: #f6f8f3;
    color: #12382b;
}

.apply-page-hero .simple-page-title span {
    color: #f8d04d !important;
}

.apply-container {
    width: min(1380px, calc(100% - 64px));
    margin: 0 auto;
}

.apply-intro-section {
    padding: 30px 0 30px;
    background: radial-gradient( circle at 15% 25%, rgba(247, 205, 72, 0.16), transparent 25%), #f6f8f3;
}

.apply-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
    gap: 80px;
    align-items: center;
}

.apply-kicker {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    color: #b07a1d;
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 700;
}

.apply-kicker i {
    display: inline-block;
    width: 42px;
    height: 2px;
    background: #d5a62f;
}

.apply-intro-copy h2,
.apply-form-intro h2 {
    margin: 22px 0 25px;
    color: #073f2d;
    font-family: "Times New Roman", Times, serif;
    font-size: 52px;
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: 1px;
}

.apply-intro-copy h2 em,
.apply-form-intro h2 em {
    color: #d2a329;
    font-style: normal;
}

.apply-intro-copy p {
    max-width: 760px;
    margin: 0 0 14px;
    color: #4c6259;
    font-size: 17px;
    line-height: 1.75;
}

.apply-intro-copy strong {
    color: #126d49;
    font-weight: 700;
}

.apply-deadline-card {
    position: relative;
    overflow: hidden;
    padding: 36px 34px;
    border: 1px solid rgba(8, 112, 70, 0.2);
    border-radius: 24px 24px 8px 24px;
    background: linear-gradient(145deg, #075237, #0c714a);
    color: #fff;
    box-shadow: 0 22px 48px rgba(5, 62, 38, 0.18);
}

.apply-deadline-card::after {
    content: "";
    position: absolute;
    right: -75px;
    bottom: -90px;
    width: 220px;
    height: 220px;
    border: 1px solid rgba(248, 208, 77, 0.5);
    border-radius: 50%;
}

.apply-deadline-card>span {
    position: relative;
    z-index: 1;
    color: #f9d15a;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.apply-deadline-row {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.apply-deadline-row strong {
    color: #f9d15a;
    font-family: "Times New Roman", Times, serif;
    font-size: 52px;
    line-height: 0.7;
    font-weight: 600;
}

.apply-deadline-row small {
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 1px;
}

.apply-deadline-row small b {
    color: #fff;
    font-size: 13px;
    letter-spacing: 0;
    font-weight: 500;
}

.apply-deadline-card>a {
    position: relative;
    z-index: 1;
    display: inline-flex;
    gap: 12px;
    margin-top: 25px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.apply-deadline-card>a i {
    color: #f9d15a;
}

.apply-steps-section {
    padding: 44px 0 92px;
    background: #fff;
}

.apply-section-heading {
    margin-bottom: 34px;
    text-align: center;
}

.apply-section-heading>span {
    color: #b07a1d;
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 700;
}

.apply-section-heading h2 {
    margin: 10px 0 0;
    color: #073f2d;
    font-family: "Times New Roman", Times, serif;
    font-size: 48px;
    font-weight: 500;
}

.apply-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.apply-step {
    position: relative;
    min-height: 235px;
    padding: 28px 28px 25px;
    border: 1px solid #dce7df;
    border-radius: 18px;
    background: #f9fbf8;
    color: #153d2e;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.apply-step:hover {
    transform: translateY(-6px);
    border-color: #c6dccc;
    box-shadow: 0 15px 35px rgba(19, 77, 50, 0.1);
}

.apply-step-active {
    background: linear-gradient(145deg, #075237, #0b7149);
    border-color: #075237;
    color: #fff;
}

.apply-step>b {
    position: absolute;
    top: 22px;
    right: 25px;
    color: #c99c29;
    font-size: 13px;
    letter-spacing: 1px;
}

.apply-step>i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    margin-bottom: 24px;
    border-radius: 50%;
    background: #f9edc5;
    color: #08784b;
    font-size: 17px;
}

.apply-step-active>i {
    background: #f8cd47;
    color: #075237;
}

.apply-step strong {
    display: block;
    margin-bottom: 9px;
    font-family: "Times New Roman", Times, serif;
    font-size: 30px;
    letter-spacing: 1px;
    font-weight: 500;
}

.apply-step p {
    max-width: 300px;
    margin: 0;
    color: #64776e;
    margin-bottom: 45px;
    font-size: 16px;
    line-height: 1.6;
}

.apply-step-active p {
    color: rgba(255, 255, 255, 0.72);
}

.apply-step>span {
    position: absolute;
    bottom: 25px;
    color: #08784b;
    font-size: 12px;
    font-weight: 700;
}

.apply-step-active>span {
    color: #f8cd47;
}

.apply-step>span i {
    margin-left: 8px;
    font-size: 10px;
}

.apply-form-section {
    padding: 100px 0 125px;
    background: linear-gradient(135deg, #eaf3ed 0%, #f8f7ee 100%);
}

.apply-form-layout {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 55px;
    align-items: start;
}

.apply-form-intro {
    position: sticky;
    top: 30px;
}

.apply-form-intro h2 {
    font-size: 42px;
    line-height: 1.1;
    font-weight: 500 !important;
    letter-spacing: 1px;
}

.apply-form-intro>p {
    color: #52685d;
    font-size: 15px;
    line-height: 1.75;
}

.apply-form-note {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    margin-top: 35px;
    padding: 16px;
    border-left: 3px solid #f2c53e;
    background: rgba(255, 255, 255, 0.6);
}

.apply-form-note>i {
    color: #08784b;
    font-size: 21px;
}

.apply-form-note strong,
.apply-form-note small {
    display: block;
}

.apply-form-note strong {
    color: #164b36;
    font-size: 15px;
}

.apply-form-note small {
    margin-top: 4px;
    color: #77857e;
    font-size: 11px;
}

.apply-contact-mini {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-top: 45px;
    padding-top: 24px;
    border-top: 1px solid #cfddd3;
}

.apply-contact-mini span {
    margin-bottom: 5px;
    color: #b07a1d;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 500;
}

.apply-form-card {
    padding: 42px 45px;
    border: 1px solid #d8e4da;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 25px 60px rgba(17, 72, 45, 0.1);
}

.apply-form-block {
    padding: 0 0 35px;
    margin-bottom: 35px;
    border-bottom: 1px solid #e1e9e2;
}

.apply-form-title {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 25px;
}

.apply-form-title>b {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #075b3b;
    color: #f8cf4a;
    font-size: 12px;
}

.apply-form-title strong,
.apply-form-title small {
    display: block;
}

.apply-form-title strong {
    color: #123f2e;
    font-family: "Times New Roman", Times, serif;
    font-size: 28px;
    font-weight: 500;
}

.apply-form-title small {
    margin-top: 2px;
    color: #7a8980;
    font-size: 12px;
}

.apply-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 17px 18px;
}

.apply-fields label {
    color: #3f5a4c;
    font-size: 15px;
    font-weight: 600;
}

.apply-fields input,
.apply-fields select {
    display: block;
    width: 100%;
    height: 47px;
    margin-top: 8px;
    padding: 0 14px;
    border: 1px solid #d7e1d9;
    border-radius: 8px;
    outline: none;
    background: #fbfcfa;
    color: #203b2e;
    font: inherit;
    font-size: 13px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.apply-fields input:focus,
.apply-fields select:focus {
    border-color: #0a7950;
    box-shadow: 0 0 0 3px rgba(10, 121, 80, 0.09);
}

.apply-fields input::placeholder {
    color: #a4aea8;
}

.apply-fields select {
    cursor: pointer;
}

.apply-field-wide {
    grid-column: 1 / -1;
}

.apply-submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.apply-submit-row p {
    max-width: 370px;
    margin: 0;
    color: #7a8980;
    font-size: 11px;
    line-height: 1.5;
}

.apply-submit-row button {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    min-height: 52px;
    padding: 0 20px 0 24px;
    border: 0;
    border-radius: 8px;
    background: #075b3b;
    color: #fff;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    transition: transform 0.2s, background 0.2s;
}

.apply-submit-row button i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f8cd47;
    color: #075b3b;
}

.apply-submit-row button:hover {
    background: #0b794d;
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .apply-intro-grid,
    .apply-form-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .apply-deadline-card {
        max-width: 520px;
    }
    .apply-form-intro {
        position: static;
    }
    .apply-form-intro h2 {
        max-width: 500px;
    }
}

@media (max-width: 680px) {
    .apply-container {
        width: min(100% - 30px, 520px);
    }
    .apply-intro-section {
        padding: 30px 0 30px;
    }
    .apply-intro-copy h2,
    .apply-form-intro h2 {
        font-size: 33px!important;
        line-height: 1.1;
    }
    .apply-intro-copy p {
        font-size: 15px;
    }
    .apply-steps-section {
        padding: 55px 0 65px;
    }
    .apply-section-heading h2 {
        font-size: 40px;
    }
    .apply-steps-grid {
        grid-template-columns: 1fr;
    }
    .apply-step {
        min-height: 190px;
    }
    .apply-form-section {
        padding: 30px 0 30px;
    }
    .apply-form-intro {
        padding-top: 8px;
    }
    .apply-form-intro h2 {
        margin-top: 16px;
        font-size: 40px;
        line-height: 1.02;
    }
    .apply-form-intro>p {
        font-size: 14px;
    }
    .apply-contact-mini {
        margin-top: 32px;
    }
    .apply-contact-mini a {
        gap: 10px;
    }
    .apply-form-card {
        padding: 28px 20px;
        border-radius: 17px;
    }
    .apply-fields {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .apply-field-wide {
        grid-column: auto;
    }
    .apply-submit-row {
        align-items: stretch;
        flex-direction: column;
    }
    .apply-submit-row button {
        justify-content: center;
    }
    .apply-page-hero {
        min-height: 270px;
        padding-top: 125px;
    }
}


/* Apply page visual polish */

.apply-contact-mini {
    position: relative;
    margin-top: 34px;
    padding: 22px 20px 20px;
    border: 1px solid #d8e5da;
    border-radius: 16px;
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 12px 28px rgba(17, 72, 45, .07);
}

.apply-contact-mini>span {
    display: block;
}

.apply-contact-mini a {
    min-height: 34px;
}

.apply-contact-mini a i {
    display: inline-flex !important;
    width: 32px !important;
    height: 32px !important;
    flex: 0 0 32px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(213, 166, 47, .35) !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 10px rgba(15, 75, 46, .08);
    background: #f9edc5 !important;
    line-height: 1 !important;
}

.apply-contact-mini a b {
    font-size: 13px;
}

.apply-step>span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 31px;
    padding: 0 11px 0 13px;
    border: 1px solid #cfe1d4;
    border-radius: 30px;
    background: #fff;
    font-size: 15px;
    letter-spacing: .2px;
    transition: background .2s, color .2s;
}

.apply-step:hover>span {
    background: #075b3b;
    color: #fff;
    border-color: #075b3b;
}

.apply-step-active>span {
    border-color: rgba(248, 205, 71, .55);
    background: rgba(255, 255, 255, .08);
}

.apply-step-active:hover>span {
    background: #f8cd47;
    color: #075b3b;
}

.apply-step>span i {
    margin-left: 2px;
}

.apply-section-heading h2 {
    letter-spacing: -.4px;
}

@media (max-width: 680px) {
    .apply-contact-mini {
        margin-top: 27px;
        padding: 19px 16px;
    }
    .apply-step {
        min-height: 205px;
        padding: 24px 22px;
    }
    .apply-step>span {
        bottom: 21px;
    }
}


/* ==========================================
   VIRTUAL TOUR SECTION
========================================== */

.sr-virtual-tour {
    width: 100%;
    padding: 40px 0 30px;
    background: #ffffff;
    overflow: hidden;
}

.sr-tour-container {
    width: 90%;
    max-width: 1250px;
    margin: 0 auto;
}


/* ==========================================
   TOP HEADING
========================================== */

.sr-tour-heading {
    text-align: center;
    margin-bottom: 40px;
}

.sr-tour-kicker {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    margin-bottom: 18px;
    color: #087c45;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.sr-tour-kicker span {
    width: 42px;
    height: 1px;
    background: #c8a85b;
}

.sr-tour-heading h2 {
    margin: 0;
    color: #16231d;
    font-size: 52px;
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -2px;
}

.sr-tour-heading h2 em {
    color: #087c45;
    font-style: normal;
    font-weight: 400;
}

.sr-tour-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.sr-tour-divider i {
    width: 55px;
    height: 1px;
    background: #c8a85b;
}

.sr-tour-divider b {
    color: #c8a85b;
    font-size: 10px;
    font-weight: 400;
}


/* ==========================================
   HERO
========================================== */

.sr-tour-hero {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    border-radius: 18px;
    background: #064c32;
    box-shadow: 0 20px 55px rgba(16, 65, 43, 0.18);
}


/* ==========================================
   BACKGROUND IMAGE
========================================== */

.sr-tour-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s ease;
}

.sr-tour-hero:hover .sr-tour-bg {
    transform: scale(1.025);
}


/* ==========================================
   GREEN OVERLAY
========================================== */

.sr-tour-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient( 90deg, rgba(0, 73, 47, 0.96) 0%, rgba(0, 91, 57, 0.84) 22%, rgba(0, 102, 64, 0.55) 45%, rgba(0, 92, 57, 0.25) 72%, rgba(0, 74, 46, 0.22) 100%);
}


/* ==========================================
   HERO CONTENT
========================================== */

.sr-tour-content {
    position: absolute;
    z-index: 5;
    top: 50%;
    left: 7%;
    width: 43%;
    transform: translateY(-55%);
}

.sr-tour-small-title {
    display: block;
    margin-bottom: 15px;
    color: #d6b66a;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.sr-tour-content h3 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(42px, 4.5vw, 61px);
    font-weight: 400;
    line-height: 1.03;
    letter-spacing: -1.5px;
}

.sr-tour-content h3 em {
    color: #f4c400;
    font-style: normal;
    font-weight: 400;
}

.sr-tour-gold-line {
    width: 65px;
    height: 3px;
    margin: 25px 0 25px;
    background: #d6b66a;
}

.sr-tour-content p {
    max-width: 450px;
    margin: 0 0 30px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    line-height: 1.8;
}


/* ==========================================
   BUTTON
========================================== */

.sr-tour-btn {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    padding: 11px 18px 11px 11px;
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.sr-tour-btn:hover {
    background: #ffffff;
    color: #087c45;
    border-color: #ffffff;
}

.sr-play {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #ffffff;
    color: #087c45;
}

.sr-play svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    stroke: none;
}

.sr-tour-btn strong {
    margin-left: 10px;
    font-size: 20px;
    font-weight: 400;
    transition: transform 0.3s ease;
}

.sr-tour-btn:hover strong {
    transform: translateX(4px);
}


/* ==========================================
   FEATURES BAR
========================================== */

.sr-tour-features {
    position: absolute;
    z-index: 6;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 23px 25px;
    background: rgba(0, 65, 43, 0.87);
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(8px);
}


/* ==========================================
   FEATURE ITEM
========================================== */

.sr-tour-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 5px 22px;
}

.sr-tour-feature+.sr-tour-feature {
    border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.sr-tour-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
}

.sr-tour-feature-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 1.35;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sr-tour-feature h4 {
    margin: 0 0 5px;
    color: #ffffff;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 1px;
}

.sr-tour-feature p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    line-height: 1.4;
}


/* ==========================================
   HOVER FEATURE
========================================== */

.sr-tour-feature {
    transition: transform 0.3s ease;
}

.sr-tour-feature:hover {
    transform: translateY(-3px);
}


/* ==========================================
   1100px
========================================== */

@media (max-width: 1100px) {
    .sr-tour-content {
        width: 50%;
        left: 6%;
    }
    .sr-tour-feature {
        padding: 5px 12px;
        gap: 10px;
    }
    .sr-tour-feature-icon {
        width: 50px;
        height: 50px;
        flex-basis: 50px;
    }
    .sr-tour-feature-icon svg {
        width: 24px;
        height: 24px;
    }
    .sr-tour-feature h4 {
        font-size: 12px;
    }
    .sr-tour-feature p {
        font-size: 9px;
    }
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 800px) {
    .sr-virtual-tour {
        padding: 65px 0 75px;
    }
    .sr-tour-hero {
        min-height: 650px;
    }
    .sr-tour-content {
        top: 45%;
        width: 70%;
    }
    .sr-tour-features {
        grid-template-columns: repeat(2, 1fr);
        padding: 18px;
    }
    .sr-tour-feature:nth-child(3) {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
    .sr-tour-feature:nth-child(4) {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {
    .sr-virtual-tour {
        padding: 48px 0 60px;
    }
    .sr-tour-container {
        width: 92%;
    }
    .sr-tour-heading {
        margin-bottom: 28px;
    }
    .sr-tour-kicker {
        font-size: 8px;
        letter-spacing: 1.5px;
    }
    .sr-tour-kicker span {
        width: 25px;
    }
    .sr-tour-heading h2 {
        font-size: 34px;
        letter-spacing: -1px;
    }
    .sr-tour-divider i {
        width: 35px;
    }
    /* HERO */
    .sr-tour-hero {
        min-height: 750px;
        border-radius: 13px;
    }
    .sr-tour-overlay {
        background: linear-gradient( 180deg, rgba(0, 73, 47, 0.42) 0%, rgba(0, 73, 47, 0.76) 45%, rgba(0, 73, 47, 0.96) 100%);
    }
    .sr-tour-content {
        top: 35%;
        left: 7%;
        width: 86%;
        transform: translateY(-50%);
    }
    .sr-tour-small-title {
        font-size: 9px;
        letter-spacing: 1.8px;
    }
    .sr-tour-content h3 {
        font-size: 42px;
    }
    .sr-tour-content p {
        font-size: 12px;
        line-height: 1.7;
    }
    .sr-tour-btn {
        padding: 8px 14px 8px 8px;
        font-size: 11px;
    }
    .sr-play {
        width: 31px;
        height: 31px;
    }
    .sr-tour-btn strong {
        font-size: 17px;
    }
    /* FEATURES */
    .sr-tour-features {
        grid-template-columns: 1fr 1fr;
        padding: 10px;
    }
    .sr-tour-feature {
        min-height: 78px;
        padding: 8px;
        gap: 8px;
    }
    .sr-tour-feature-icon {
        width: 39px;
        height: 39px;
        flex-basis: 39px;
    }
    .sr-tour-feature-icon svg {
        width: 20px;
        height: 20px;
    }
    .sr-tour-feature h4 {
        margin-bottom: 2px;
        font-size: 10px !important;
        line-height: 1.2 !important;
    }
    .sr-tour-feature p {
        font-size: 9px !important;
        line-height: 1.45 !important;
    }
}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 400px) {
    .sr-tour-hero {
        min-height: 750px;
    }
    .sr-tour-content h3 {
        font-size: 36px !important;
    }
    .sr-tour-content p {
        font-size: 11px;
    }
    .sr-tour-feature {
        min-height: 70px;
    }
    .sr-tour-feature-icon {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
    }
    .sr-tour-feature-icon svg {
        width: 17px;
        height: 17px;
    }
    .sr-tour-feature h4 {
        font-size: 12px !important;
    }
    .sr-tour-feature p {
        font-size: 9px !important;
    }
}


/* =========================================
   TUITION & FINANCIAL AID PAGE
========================================= */

.tuition-page {
    background: #f7faf7;
    color: #173b2c;
}

.tuition-page-hero .simple-page-title span {
    color: #f8d04d !important;
}

.tuition-container {
    width: min(1320px, calc(100% - 64px));
    margin: 0 auto;
}

.tuition-welcome {
    padding: 90px 0 75px;
    background: radial-gradient( circle at 8% 30%, rgba(248, 207, 71, 0.15), transparent 25%), #f7faf7;
}

.tuition-welcome-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 90px;
    align-items: end;
}

.tuition-kicker {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    color: #b27b1b;
    font-size: 14px;
    letter-spacing: 3px;
    font-weight: 500;
}

.tuition-kicker i {
    width: 42px;
    height: 2px;
    background: #d3a52b;
}

.tuition-welcome h2,
.tuition-aid-copy h2 {
    margin: 20px 0 0;
    color: #064b35;
    font-family: "Times New Roman", Times, serif;
    font-size: 52px;
    line-height: 0.98;
    font-weight: 500;
    letter-spacing: -0.8px;
}

.tuition-welcome h2 em,
.tuition-aid-copy h2 em,
.tuition-heading-row h2 em {
    color: #d1a32c;
    font-style: normal;
}

.tuition-welcome-copy {
    max-width: 700px;
    color: #50655a;
    font-size: 16px;
    line-height: 1.8;
}

.tuition-welcome-copy p {
    margin: 0 0 14px;
    font-size: 16px;
}

.tuition-welcome-copy h3 {
    margin: 0 0 23px;
    color: #075b3b;
    font-family: "Times New Roman", Times, serif;
    font-size: 32px;
    line-height: 1.1;
    margin-top: -13px;
    font-weight: 500;
    letter-spacing: 1px;
}

.tuition-welcome-copy p:last-child {
    margin-bottom: 0;
    padding-top: 14px;
    border-top: 1px solid #d9e6dc;
}

.tuition-fees-section {
    padding: 82px 0 100px;
    background: #fff;
}

.tuition-heading-row {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: end;
    margin-bottom: 38px;
}

.tuition-heading-row h2 {
    margin: 16px 0 0;
    color: #064b35;
    font-family: "Times New Roman", Times, serif;
    font-size: 50px;
    line-height: 1;
    font-weight: 500;
}

.tuition-heading-row>p {
    margin: 0 0 5px;
    color: #000;
    font-size: 15px;
    line-height: 1.6;
}

.tuition-fee-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.tuition-fee-card {
    position: relative;
    overflow: hidden;
    min-height: 340px;
    padding: 31px 29px 28px;
    border: 1px solid #dbe7df;
    border-radius: 20px;
    background: #f8fbf8;
    box-shadow: 0 15px 35px rgba(18, 73, 46, 0.06);
}

.tuition-fee-card::after {
    content: "";
    position: absolute;
    right: -65px;
    bottom: -75px;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(211, 165, 43, 0.28);
    border-radius: 50%;
}

.tuition-fee-card-featured {
    color: #fff;
    border-color: #075b3b;
    background: linear-gradient(145deg, #075237, #0b7049);
}

.tuition-fee-number {
    position: absolute;
    top: 28px;
    right: 27px;
    color: #c69523;
    font-size: 12px;
    font-weight: 700;
}

.tuition-fee-card-featured .tuition-fee-number {
    color: #f8cf4a;
}

.tuition-fee-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    margin-bottom: 25px;
    border-radius: 50%;
    background: #f9edc5;
    color: #08784b;
    font-size: 18px;
}

.tuition-fee-card-featured .tuition-fee-icon {
    background: #f8cd47;
    color: #075237;
}

.tuition-fee-card>span {
    color: #b17b20;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 700;
}

.tuition-fee-card-featured>span {
    color: #f8cf4a;
}

.tuition-fee-card h3 {
    margin: 14px 0 14px;
    color: #143e2e;
    font-family: "Times New Roman", Times, serif;
    font-size: 33px;
    line-height: 1;
    font-weight: 500;
}

.tuition-fee-card-featured h3 {
    color: #fff;
}

.tuition-fee-card p {
    max-width: 280px;
    min-height: 68px;
    margin: 0;
    padding-bottom: 55px;
    color: #63766c;
    font-size: 16px;
    line-height: 1.6;
}

.tuition-fee-card-featured p {
    color: rgba(255, 255, 255, 0.75);
}

.tuition-fee-card a {
    position: absolute;
    bottom: 28px;
    left: 29px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #08784b;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.tuition-fee-card a i {
    color: #c69523;
}

.tuition-fee-card-featured a {
    color: #f8cf4a;
}

.tuition-aid-section {
    padding: 95px 0;
    background: linear-gradient(135deg, #e9f3ec, #f8f7ef);
}

.tuition-aid-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 90px;
    align-items: center;
}

.tuition-aid-copy h2 {
    font-size: 55px;
}

.tuition-aid-copy>p {
    max-width: 500px;
    margin: 25px 0 0;
    color: #50655a;
    font-size: 16px;
    line-height: 1.75;
}

.tuition-discount-list {
    display: grid;
    gap: 18px;
}

.tuition-discount {
    display: grid;
    grid-template-columns: 35px 50px 1fr;
    gap: 17px;
    align-items: start;
    padding: 25px;
    border: 1px solid #d7e5da;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 12px 25px rgba(18, 73, 46, 0.05);
}

.tuition-discount>b {
    color: #c39527;
    font-size: 15px;
}

.tuition-discount>i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #075b3b;
    color: #f8cf4a;
}

.tuition-discount h3 {
    margin: 0 0 7px;
    color: #075b3b;
    font-family: "Times New Roman", Times, serif;
    font-size: 26px;
    font-weight: 500;
    letter-spacing: 1px;
}

.tuition-discount p {
    margin: 0;
    color: #607269;
    font-size: 16px;
    line-height: 1.6;
}

.tuition-discount strong {
    color: #08784b;
}

.tuition-next-section {
    padding: 78px 0 40px;
    background: #fff;
}

.tuition-next-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: 42px 48px;
    border: 1px solid #d6e4d9;
    border-radius: 22px;
    background: linear-gradient(115deg, #f9fcf8, #edf6ee);
    box-shadow: 0 18px 40px rgba(18, 73, 46, 0.07);
}

.tuition-next-card h2 {
    margin: 15px 0 7px;
    color: #075b3b;
    font-family: "Times New Roman", Times, serif;
    font-size: 42px;
    font-weight: 500;
}

.tuition-next-card p {
    margin: 0;
    color: #607269;
    font-size: 16px;
}

.tuition-next-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.tuition-next-actions a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border: 1px solid #c9dbcd;
    border-radius: 25px;
    color: #075b3b;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
}

.tuition-next-actions a i {
    color: #c69523;
}

.tuition-next-actions .tuition-next-primary {
    border-color: #075b3b;
    background: #075b3b;
    color: #fff;
}

@media (max-width: 800px) {
    .tuition-welcome-grid,
    .tuition-aid-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .tuition-fee-grid {
        grid-template-columns: 1fr;
    }
    .tuition-fee-card {
        min-height: 300px;
    }
    .tuition-next-card {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .tuition-container {
        width: min(100% - 30px, 520px);
    }
    .tuition-welcome {
        padding: 58px 0;
    }
    .tuition-welcome h2,
    .tuition-aid-copy h2 {
        font-size: 43px;
    }
    .tuition-fees-section,
    .tuition-aid-section {
        padding: 62px 0;
    }
    .tuition-heading-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }
    .tuition-heading-row h2 {
        font-size: 40px;
    }
    .tuition-next-section {
        padding: 55px 0 20px;
    }
    .tuition-next-card {
        padding: 30px 24px;
    }
    .tuition-next-card h2 {
        font-size: 35px;
    }
    .tuition-next-actions {
        width: 100%;
        flex-direction: column;
    }
    .tuition-next-actions a {
        justify-content: center;
    }
}

.tuition-fee-card>a {
    left: 29px;
    bottom: 14px;
    min-height: 38px;
    font-size: 14px;
    padding: 0 18px 0 20px;
    border: 1px solid #bcd7c4;
    border-radius: 20px;
    background: #fff;
    box-sizing: border-box;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}

.tuition-fee-card>a:hover {
    transform: translateY(-2px);
    background: #075b3b;
    color: #fff;
    border-color: #075b3b;
}

.tuition-fee-card-featured>a {
    border-color: #f8cf4a;
    background: #f8cf4a;
    color: #075b3b;
}

.tuition-fee-card-featured>a:hover {
    background: #fff;
    color: #075b3b;
    border-color: #fff;
}


/* Tuition welcome: editorial left column with a quiet campus backdrop on the right. */

.tuition-welcome {
    min-height: 560px;
    padding: 55px 0 46px;
    background-image: linear-gradient(90deg, #f7faf7 0%, #f7faf7 34%, rgba(247, 250, 247, .97) 48%, rgba(247, 250, 247, .35) 76%, rgba(247, 250, 247, .05) 100%), url('../images/diveristy-bg.png');
    background-position: center, right center;
    background-repeat: no-repeat;
    background-size: cover, auto 100%;
}

.tuition-welcome-grid {
    display: block;
}

.tuition-welcome-grid>div:first-child,
.tuition-welcome-copy {
    max-width: 760px;
}

.tuition-welcome-copy {
    margin-top: 38px;
}

@media (max-width: 800px) {
    .tuition-welcome {
        min-height: 0;
        background-image: radial-gradient(circle at 90% 10%, rgba(209, 236, 218, .7), transparent 42%), #f7faf7;
    }
    .tuition-welcome-grid>div:first-child,
    .tuition-welcome-copy {
        max-width: none;
    }
}


/* Keep every inner-page breadcrumb and title on the same desktop alignment grid. */

.simple-page-content .simple-breadcrumb-wrap {
    width: min(1460px, calc(100% - 64px));
    margin-left: auto;
    margin-right: auto;
}


/* Keep the Academic Curriculum banner aligned with its wider content grid. */

.tuition-page-hero .simple-breadcrumb-wrap {
    width: min(1520px, calc(100% - 60px));
}

@media (max-width: 767px) {
    .simple-page-content .simple-breadcrumb-wrap {
        width: calc(100% - 40px);
    }
    .tuition-page-hero .simple-breadcrumb-wrap {
        width: calc(100% - 40px);
    }
}


/* Schedule a visit: keep the action centred beneath the form fields. */

.srcs-visit-form {
    display: flex;
    flex-direction: column;
}

.srcs-submit {
    align-self: center;
    min-width: 190px;
    margin: 30px auto 0;
    padding: 14px 20px 14px 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, #087c45, #0b9253);
    box-shadow: 0 10px 24px rgba(8, 124, 69, .2);
}

.srcs-submit svg {
    width: 20px;
    height: 20px;
    padding: 4px;
    border-radius: 50%;
    background: #f8cf4a;
    color: #075b3b;
    box-sizing: content-box;
}

@media (max-width: 767px) {
    .srcs-submit {
        align-self: stretch;
        width: 100%;
        margin-top: 24px;
    }
}


/* =========================================================
   MAIN SECTION
========================================================= */

.srcs-visit {
    width: 100%;
    padding: 40px 0 40px;
    background: #f7faf8;
    overflow: hidden;
}

.srcs-visit-wrap {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: stretch;
}


/* =========================================================
   LEFT FORM CARD
========================================================= */

.srcs-student-card {
    position: relative;
    padding: 48px 34px 38px;
    overflow: hidden;
    border: 1px solid #dce7e1;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 12px 40px rgba(14, 65, 42, 0.08);
}


/* =========================================================
   FORM DECORATION
========================================================= */

.srcs-form-circle {
    position: absolute;
    right: -95px;
    bottom: -95px;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: #f1f8f4;
    pointer-events: none;
}

.srcs-form-dots {
    position: absolute;
    right: 32px;
    bottom: 32px;
    width: 95px;
    height: 70px;
    opacity: 0.55;
    background-image: radial-gradient( #7bc5a3 1.5px, transparent 1.5px);
    background-size: 12px 12px;
    pointer-events: none;
}


/* =========================================================
   FORM TOP
========================================================= */

.srcs-student-top {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 38px;
}

.srcs-visit-kicker {
    display: block;
    margin-bottom: 10px;
    color: #087c45;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.3px;
}

.srcs-student-top h2 {
    margin: 0;
    color: #18251f;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -1.2px;
}

.srcs-student-top h2 em {
    color: #087c45;
    font-style: normal;
    font-weight: 400;
}


/* =========================================================
   TITLE DIVIDER
========================================================= */

.srcs-title-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 17px auto 15px;
}

.srcs-title-line i {
    display: block;
    width: 50px;
    height: 1px;
    background: #c8a75d;
}

.srcs-title-line b {
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #c8a75d;
}

.srcs-student-top p {
    margin: 0;
    color: #68746e;
    font-size: 12px;
    line-height: 1.6;
}


/* =========================================================
   FORM
========================================================= */

.srcs-visit-form {
    position: relative;
    z-index: 4;
}

.srcs-form-fields {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 21px 18px;
}


/* =========================================================
   INPUT GROUP
========================================================= */

.srcs-input-group label {
    display: block;
    margin-bottom: 8px;
    color: #293730;
    font-size: 13px;
    font-weight: 500;
}


/* =========================================================
   INPUT WRAPPER
========================================================= */

.srcs-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
    height: 45px;
    border: 1px solid #ccd7d1;
    border-radius: 5px;
    background: #ffffff;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.srcs-input-wrap:hover {
    border-color: #a8c5b6;
}

.srcs-input-wrap:focus-within {
    border-color: #087c45;
    box-shadow: 0 0 0 3px rgba(8, 124, 69, 0.07);
}


/* =========================================================
   INPUT ICON
========================================================= */

.srcs-input-wrap svg {
    position: absolute;
    left: 13px;
    width: 19px;
    height: 19px;
    fill: none;
    stroke: #727d77;
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
    pointer-events: none;
}

.srcs-input-wrap input,
.srcs-input-wrap textarea,
.srcs-input-wrap select {
    width: 100%;
    height: 100%;
    padding: 0 12px 0 40px;
    border: 0;
    outline: 0;
    background: transparent;
    color: #26332d;
    font-size: 11px;
    box-sizing: border-box;
}

.srcs-input-wrap textarea {
    height: 100%;
    padding-top: 12px;
    resize: none;
}

.srcs-input-wrap select {
    cursor: pointer;
    appearance: none;
    padding-right: 32px;
}


/* =========================================================
   SELECT ARROW
========================================================= */

.srcs-input-group:last-child .srcs-input-wrap::after {
    content: "";
    position: absolute;
    right: 13px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-right: 1px solid #4d5953;
    border-bottom: 1px solid #4d5953;
    transform: translateY(-65%) rotate(45deg);
    pointer-events: none;
}


/* =========================================================
   SUBMIT
========================================================= */

.srcs-submit {
    position: relative;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 42px;
    min-width: 145px;
    margin-top: 29px;
    padding: 13px 17px;
    border: 0;
    border-radius: 2px;
    background: #087c45;
    color: #ffffff;
    cursor: pointer;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 7px 18px rgba(8, 124, 69, 0.17);
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.srcs-submit svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.3s ease;
}

.srcs-submit:hover {
    background: #056b3a;
    transform: translateY(-2px);
    box-shadow: 0 11px 24px rgba(8, 124, 69, 0.23);
}

.srcs-submit:hover svg {
    transform: translateX(4px);
}


/* =========================================================
   RIGHT HOTEL PANEL
========================================================= */

.srcs-hotels-card {
    overflow: hidden;
    border: 1px solid #dce6e0;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 12px 40px rgba(14, 65, 42, 0.07);
}


/* =========================================================
   HOTEL HEADER
========================================================= */

.srcs-hotels-header {
    display: flex;
    align-items: center;
    min-height: 78px;
    padding: 0 25px;
    background: #087c45;
    color: #ffffff;
}

.srcs-hotel-heading-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-right: 15px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

.srcs-hotel-heading-icon svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.srcs-hotels-header h2 {
    margin: 0;
    font-size: 26px;
    font-weight: 400;
    line-height: 1.2;
}


/* =========================================================
   HOTEL ITEMS
========================================================= */

.srcs-hotel-items {
    padding: 17px;
}

.srcs-hotel-item {
    position: relative;
    display: grid;
    grid-template-columns: 75px minmax(0, 1fr) 45px;
    gap: 16px;
    align-items: center;
    min-height: 132px;
    margin-bottom: 14px;
    padding: 17px;
    border: 1px solid #e0e7e3;
    border-radius: 10px;
    background: #ffffff;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.srcs-hotel-item:last-child {
    margin-bottom: 0;
}

.srcs-hotel-item:hover {
    transform: translateY(-3px);
    border-color: #c5dbcf;
    box-shadow: 0 9px 25px rgba(15, 66, 43, 0.08);
}


/* =========================================================
   HOTEL NUMBER
========================================================= */

.srcs-hotel-num {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    border-radius: 15px;
    background: #f0f7f3;
}

.srcs-hotel-num strong {
    color: #087c45;
    font-size: 28px;
    font-weight: 400;
    line-height: 1;
}

.srcs-hotel-num span {
    display: block;
    width: 25px;
    height: 1px;
    margin-top: 8px;
    background: #087c45;
}


/* =========================================================
   HOTEL DETAILS
========================================================= */

.srcs-hotel-details {
    min-width: 0;
}

.srcs-hotel-details h3 {
    margin: 0 0 5px;
    color: #087c45;
    font-size: 19px;
    letter-spacing: 1px;
    font-weight: 500;
    line-height: 1.2;
}

.srcs-hotel-details p {
    margin: 0 0 8px;
    color: #414d47;
    font-size: 13px;
    line-height: 1.65;
}


/* =========================================================
   HOTEL META
========================================================= */

.srcs-hotel-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 3px;
}

.srcs-hotel-info span {
    color: #4e5954;
    font-size: 12px;
    line-height: 1.5;
}

.srcs-hotel-info i {
    width: 4px;
    height: 4px;
    flex: 0 0 4px;
    border-radius: 50%;
    background: #087c45;
}


/* =========================================================
   HOTEL ARROW
========================================================= */

.srcs-hotel-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    border: 1px solid #78ad94;
    border-radius: 50%;
    color: #087c45;
    font-size: 23px;
    font-weight: 400;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.srcs-hotel-item:hover .srcs-hotel-arrow {
    background: #087c45;
    color: #ffffff;
    transform: rotate(45deg);
}


/* =========================================================
   1150px
========================================================= */

@media (max-width: 1150px) {
    .srcs-visit-wrap {
        gap: 25px;
    }
    .srcs-student-card {
        padding: 40px 25px 32px;
    }
    .srcs-student-top h2 {
        font-size: 34px;
    }
    .srcs-hotels-header h2 {
        font-size: 22px;
    }
    .srcs-hotel-item {
        grid-template-columns: 60px minmax(0, 1fr) 38px;
        gap: 12px;
        padding: 14px;
    }
    .srcs-hotel-num {
        width: 58px;
        height: 58px;
    }
    .srcs-hotel-num strong {
        font-size: 24px;
    }
    .srcs-hotel-details h3 {
        font-size: 15px;
    }
}


/* =========================================================
   850px TABLET
========================================================= */

@media (max-width: 850px) {
    .srcs-visit {
        padding: 60px 0 75px;
    }
    .srcs-visit-wrap {
        grid-template-columns: 1fr;
        max-width: 720px;
        gap: 35px;
    }
    .srcs-student-card,
    .srcs-hotels-card {
        width: 100%;
    }
    .srcs-student-card {
        padding: 45px 35px 38px;
    }
    .srcs-student-top h2 {
        font-size: 40px;
    }
    .srcs-hotels-header h2 {
        font-size: 27px;
    }
    .srcs-hotel-item {
        min-height: 125px;
    }
}


/* =========================================================
   600px MOBILE
========================================================= */

@media (max-width: 600px) {
    .srcs-visit {
        padding: 45px 0 60px;
    }
    .srcs-visit-wrap {
        width: 92%;
        gap: 28px;
    }
    .srcs-student-card {
        padding: 30px 20px 30px;
        border-radius: 11px;
    }
    .srcs-student-top {
        margin-bottom: 28px;
    }
    .srcs-visit-kicker {
        font-size: 8px;
        letter-spacing: 1.8px;
    }
    .srcs-student-top h2 {
        font-size: 31px;
    }
    .srcs-student-top p {
        font-size: 10px;
    }
    .srcs-title-line i {
        width: 35px;
    }
    /* FORM */
    .srcs-form-fields {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .srcs-input-group label {
        font-size: 11px;
    }
    .srcs-input-wrap {
        height: 43px;
    }
    .srcs-input-wrap input,
    .srcs-input-wrap textarea,
    .srcs-input-wrap select {
        font-size: 10px;
    }
    .srcs-submit {
        width: 100%;
        margin-top: 23px;
    }
    /* HOTELS */
    .srcs-hotels-card {
        border-radius: 11px;
    }
    .srcs-hotels-header {
        min-height: 67px;
        padding: 0 17px;
    }
    .srcs-hotel-heading-icon {
        width: 33px;
        height: 33px;
        margin-right: 11px;
    }
    .srcs-hotel-heading-icon svg {
        width: 18px;
        height: 18px;
    }
    .srcs-hotels-header h2 {
        font-size: 21px;
    }
    .srcs-hotel-items {
        padding: 11px;
    }
    .srcs-hotel-item {
        grid-template-columns: 48px minmax(0, 1fr) 30px;
        gap: 9px;
        min-height: 110px;
        padding: 13px 10px;
    }
    .srcs-hotel-num {
        width: 45px;
        height: 52px;
        border-radius: 11px;
    }
    .srcs-hotel-num strong {
        font-size: 20px;
    }
    .srcs-hotel-num span {
        width: 19px;
        margin-top: 5px;
    }
    .srcs-hotel-details h3 {
        font-size: 12px;
    }
    .srcs-hotel-details p {
        font-size: 8px;
        line-height: 1.5;
    }
    .srcs-hotel-info {
        gap: 4px;
    }
    .srcs-hotel-info span {
        font-size: 7px;
    }
    .srcs-hotel-info i {
        width: 3px;
        height: 3px;
        flex-basis: 3px;
    }
    .srcs-hotel-arrow {
        width: 29px;
        height: 29px;
        font-size: 16px;
    }
}


/* =========================================================
   400px SMALL MOBILE
========================================================= */

@media (max-width: 400px) {
    .srcs-student-card {
        padding: 27px 16px;
    }
    .srcs-student-top h2 {
        font-size: 28px;
    }
    .srcs-hotels-header h2 {
        font-size: 21px !important;
    }
    .srcs-hotel-item {
        grid-template-columns: 43px minmax(0, 1fr) 27px;
        gap: 7px;
        padding: 11px 7px;
    }
    .srcs-hotel-num {
        width: 40px;
        height: 47px;
    }
    .srcs-hotel-num strong {
        font-size: 18px;
    }
    .srcs-hotel-details h3 {
        font-size: 20px !important;
    }
    .srcs-hotel-details p {
        font-size: 7.5px;
    }
    .srcs-hotel-info span {
        font-size: 12px;
    }
}


/* Schedule a visit: centred, polished form action. */

.srcs-visit-form {
    display: flex;
    flex-direction: column;
}

.srcs-visit-form .srcs-submit {
    align-self: center;
    min-width: 190px;
    margin: 30px auto 0;
    padding: 14px 20px 14px 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, #087c45, #0b9253);
    box-shadow: 0 10px 24px rgba(8, 124, 69, .2);
}

.srcs-visit-form .srcs-submit svg {
    width: 20px;
    height: 20px;
    padding: 4px;
    border-radius: 50%;
    background: #f8cf4a;
    color: #075b3b;
    box-sizing: content-box;
}

@media (max-width: 767px) {
    .srcs-visit-form .srcs-submit {
        align-self: stretch;
        width: 100%;
        margin-top: 24px;
    }
}


/* =========================================================
   EXPLORE MORE SECTION
========================================================= */

.srcs-explore-section {
    width: 100%;
    padding: 45px 0 40px;
    background: #ffffff;
    overflow: hidden;
}

.srcs-explore-container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}


/* =========================================================
   HEADING
========================================================= */

.srcs-explore-heading {
    text-align: center;
    margin-bottom: 48px;
}

.srcs-explore-kicker {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 15px;
    color: #087c45;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.4px;
}

.srcs-explore-kicker::before,
.srcs-explore-kicker::after {
    content: "";
    width: 38px;
    height: 1px;
    background: #c9a95f;
}

.srcs-explore-heading h2 {
    margin: 0;
    color: #18251f;
    font-size: 52px;
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: 1px;
}

.srcs-explore-heading h2 em {
    color: #087c45;
    font-style: normal;
    font-weight: 400;
}


/* =========================================================
   HEADING LINE
========================================================= */

.srcs-explore-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 18px;
}

.srcs-explore-line i {
    width: 52px;
    height: 1px;
    background: #c9a95f;
}

.srcs-explore-line b {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #c9a95f;
}


/* =========================================================
   GRID
========================================================= */

.srcs-explore-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}


/* =========================================================
   CARD
========================================================= */

.srcs-explore-card {
    position: relative;
    overflow: visible;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid #e0e9e4;
    box-shadow: 0 12px 35px rgba(15, 65, 42, 0.07);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.srcs-explore-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 48px rgba(15, 65, 42, 0.13);
}


/* =========================================================
   IMAGE
========================================================= */

.srcs-explore-image {
    position: relative;
    width: 100%;
    height: 255px;
    overflow: hidden;
    border-radius: 14px 14px 0 0;
}

.srcs-explore-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( 180deg, rgba(0, 0, 0, 0.02), rgba(0, 70, 43, 0.08));
    pointer-events: none;
}

.srcs-explore-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.srcs-explore-card:hover .srcs-explore-image img {
    transform: scale(1.06);
}


/* =========================================================
   FLOATING ICON
========================================================= */

.srcs-explore-icon {
    position: absolute;
    z-index: 4;
    left: 50%;
    top: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e3ebe6;
    box-shadow: 0 7px 20px rgba(20, 70, 45, 0.13);
    transition: transform 0.35s ease, background 0.35s ease;
}

.srcs-explore-card:hover .srcs-explore-icon {
    transform: translateX(-50%) translateY(-4px);
    background: #f2f8f5;
}

.srcs-explore-icon svg {
    width: 29px;
    height: 29px;
    fill: none;
    stroke: #087c45;
    stroke-width: 1.35;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   CARD CONTENT
========================================================= */

.srcs-explore-content {
    min-height: 165px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 53px 20px 24px;
    text-align: center;
    border-radius: 0 0 14px 14px;
}


/* =========================================================
   CARD HEADING
========================================================= */

.srcs-explore-content h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin: 0;
    color: #000;
    font-size: 21px;
    letter-spacing: 1px;
    font-weight: 500;
    line-height: 1.25;
}


/* =========================================================
   CARD LINE
========================================================= */

.srcs-card-line {
    width: 28px;
    height: 2px;
    margin: 13px 0 20px;
    background: #c9a95f;
    transition: width 0.3s ease;
}

.srcs-explore-card:hover .srcs-card-line {
    width: 48px;
}


/* =========================================================
   BUTTON
========================================================= */

.srcs-explore-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 175px;
    min-height: 42px;
    padding: 5px 7px 5px 17px;
    box-sizing: border-box;
    border: 1px solid #d6e4dc;
    border-radius: 30px;
    background: #ffffff;
    color: #087c45;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.srcs-explore-btn b {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #087c45;
    color: #ffffff;
    transition: transform 0.3s ease, background 0.3s ease;
}

.srcs-explore-btn b svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.srcs-explore-btn:hover {
    border-color: #087c45;
    background: #087c45;
    color: #ffffff;
    box-shadow: 0 7px 18px rgba(8, 124, 69, 0.17);
}

.srcs-explore-btn:hover b {
    background: #ffffff;
    color: #087c45;
    transform: translateX(3px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {
    .srcs-explore-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 25px;
    }
    .srcs-explore-image {
        height: 300px;
    }
    .srcs-explore-icon {
        top: 265px;
    }
    .srcs-explore-content {
        min-height: 175px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {
    .srcs-explore-section {
        padding: 55px 0 70px;
    }
    .srcs-explore-container {
        width: 92%;
    }
    .srcs-explore-heading {
        margin-bottom: 32px;
    }
    .srcs-explore-kicker {
        font-size: 8px;
        letter-spacing: 1.7px;
        gap: 8px;
    }
    .srcs-explore-kicker::before,
    .srcs-explore-kicker::after {
        width: 24px;
    }
    .srcs-explore-heading h2 {
        font-size: 34px;
        letter-spacing: -1px;
    }
    .srcs-explore-line i {
        width: 35px;
    }
    .srcs-explore-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .srcs-explore-image {
        height: 270px;
    }
    .srcs-explore-icon {
        top: 235px;
        width: 64px;
        height: 64px;
    }
    .srcs-explore-content {
        min-height: 155px;
        padding: 48px 18px 22px;
    }
    .srcs-explore-content h3 {
        font-size: 18px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {
    .srcs-explore-heading h2 {
        font-size: 30px;
    }
    .srcs-explore-image {
        height: 240px;
    }
    .srcs-explore-icon {
        top: 205px;
        width: 58px;
        height: 58px;
    }
    .srcs-explore-icon svg {
        width: 25px;
        height: 25px;
    }
    .srcs-explore-content {
        min-height: 145px;
    }
    .srcs-explore-content h3 {
        font-size: 16px;
    }
    .srcs-explore-btn {
        max-width: 165px;
    }
}


/* =========================================================
   WITHDRAWAL SECTION
========================================================= */

.srcs-withdrawal-section {
    width: 100%;
    padding: 30px 0 30px;
    background: #fff;
    overflow: hidden;
}

.srcs-withdrawal-container {
    position: relative;
    width: 90%;
    max-width: 1350px;
    margin: 0 auto;
    padding: 35px 55px 50px;
    box-sizing: border-box;
    background: #ffffff;
    border: 1px solid #e1e9e5;
    border-radius: 18px;
    box-shadow: 0 15px 45px rgba(12, 62, 40, 0.08);
}


/* =========================================================
   TOP LINE
========================================================= */

.srcs-withdrawal-topline {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55%;
    max-width: 570px;
    margin: 0 auto 25px;
    gap: 15px;
}

.srcs-withdrawal-topline>span {
    flex: 1;
    height: 1px;
    background: #d3b05c;
}

.srcs-withdrawal-doc-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    border: 1px solid #d8e3dd;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(20, 70, 45, 0.08);
}

.srcs-withdrawal-doc-icon svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: #087c45;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   RULES
========================================================= */

.srcs-withdrawal-rules {
    width: 100%;
}

.srcs-withdrawal-rule {
    display: grid;
    grid-template-columns: 70px 28px minmax(0, 1fr);
    align-items: center;
    min-height: 82px;
    border-bottom: 1px solid #e4e9e6;
    transition: background 0.3s ease;
}

.srcs-withdrawal-rule:hover {
    background: #fbfdfc;
}


/* =========================================================
   RULE ICON
========================================================= */

.srcs-rule-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #f0f7f3;
}

.srcs-rule-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: #087c45;
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   RULE ARROW
========================================================= */

.srcs-rule-arrow {
    color: #d3a93e;
    font-size: 31px;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.3s ease, color 0.3s ease;
}

.srcs-withdrawal-rule:hover .srcs-rule-arrow {
    color: #087c45;
    transform: translateX(4px);
}


/* =========================================================
   RULE TEXT
========================================================= */

.srcs-rule-text {
    padding: 15px 0;
    color: #1e2924;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.65;
}


/* =========================================================
   LEGAL NOTE
========================================================= */

.srcs-withdrawal-note {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    margin-top: 22px;
    padding: 17px 22px;
    border: 1px solid #e3ebe6;
    border-radius: 10px;
    background: #f5faf7;
    color: #27332e;
    font-size: 14px;
    line-height: 1.65;
}

.srcs-note-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(12, 62, 40, 0.07);
}

.srcs-note-icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: #087c45;
    stroke-width: 1.35;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   ORGANISATION NOTE
========================================================= */

.srcs-withdrawal-org {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    margin-top: 14px;
    padding: 17px 22px;
    border: 1px solid #dce6e1;
    border-radius: 10px;
    background: #ffffff;
    color: #1d2923;
    font-size: 14px;
    line-height: 1.7;
}

.srcs-org-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f1f7f3;
}

.srcs-org-icon svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: #087c45;
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   BUTTON WRAP
========================================================= */

.srcs-withdrawal-button-wrap {
    display: flex;
    justify-content: center;
    margin-top: 27px;
}


/* =========================================================
   WITHDRAWAL BUTTON
========================================================= */

.srcs-withdrawal-btn {
    display: inline-flex;
    align-items: center;
    min-width: 480px;
    height: 68px;
    padding: 0 13px 0 20px;
    box-sizing: border-box;
    border-radius: 9px;
    background: #087c45;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(8, 124, 69, 0.18);
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.srcs-withdrawal-btn:hover {
    background: #056b3b;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 15px 32px rgba(8, 124, 69, 0.25);
}


/* =========================================================
   PDF ICON
========================================================= */

.srcs-pdf-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 39px;
    height: 39px;
    flex: 0 0 39px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 7px;
}

.srcs-pdf-icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 1.3;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   BUTTON TEXT
========================================================= */

.srcs-btn-text {
    flex: 1;
    padding-left: 15px;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
}


/* =========================================================
   BUTTON ARROW
========================================================= */

.srcs-btn-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 47px;
    height: 47px;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.srcs-btn-arrow svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.3s ease;
}

.srcs-withdrawal-btn:hover .srcs-btn-arrow svg {
    transform: translateX(5px);
}


/* =========================================================
   1100px
========================================================= */

@media (max-width: 1100px) {
    .srcs-withdrawal-container {
        padding: 30px 35px 40px;
    }
    .srcs-rule-text {
        font-size: 14px;
    }
    .srcs-withdrawal-note,
    .srcs-withdrawal-org {
        font-size: 13px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 800px) {
    .srcs-withdrawal-section {
        padding: 55px 0 70px;
    }
    .srcs-withdrawal-container {
        width: 92%;
        padding: 28px 25px 35px;
        border-radius: 14px;
    }
    .srcs-withdrawal-topline {
        width: 75%;
    }
    .srcs-withdrawal-rule {
        grid-template-columns: 58px 23px minmax(0, 1fr);
        min-height: 78px;
    }
    .srcs-rule-icon {
        width: 48px;
        height: 48px;
    }
    .srcs-rule-icon svg {
        width: 24px;
        height: 24px;
    }
    .srcs-rule-text {
        font-size: 13px;
    }
    .srcs-withdrawal-btn {
        min-width: 420px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {
    .srcs-withdrawal-section {
        padding: 42px 0 55px;
    }
    .srcs-withdrawal-container {
        width: 92%;
        padding: 22px 15px 28px;
        border-radius: 12px;
    }
    .srcs-withdrawal-topline {
        width: 80%;
        gap: 9px;
        margin-bottom: 18px;
    }
    .srcs-withdrawal-doc-icon {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
    }
    .srcs-withdrawal-doc-icon svg {
        width: 23px;
        height: 23px;
    }
    /* RULES */
    .srcs-withdrawal-rule {
        grid-template-columns: 48px 17px minmax(0, 1fr);
        min-height: 90px;
    }
    .srcs-rule-icon {
        width: 40px;
        height: 40px;
    }
    .srcs-rule-icon svg {
        width: 20px;
        height: 20px;
    }
    .srcs-rule-arrow {
        font-size: 25px;
    }
    .srcs-rule-text {
        padding: 13px 0;
        font-size: 10px;
        line-height: 1.6;
    }
    /* NOTES */
    .srcs-withdrawal-note,
    .srcs-withdrawal-org {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 11px;
        padding: 13px;
        font-size: 9px;
        line-height: 1.65;
    }
    .srcs-note-icon,
    .srcs-org-icon {
        width: 38px;
        height: 38px;
    }
    .srcs-note-icon svg,
    .srcs-org-icon svg {
        width: 21px;
        height: 21px;
    }
    /* BUTTON */
    .srcs-withdrawal-button-wrap {
        margin-top: 22px;
    }
    .srcs-withdrawal-btn {
        width: 100%;
        min-width: 0;
        height: 57px;
        padding-left: 10px;
    }
    .srcs-pdf-icon {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
    }
    .srcs-pdf-icon svg {
        width: 19px;
        height: 19px;
    }
    .srcs-btn-text {
        padding-left: 10px;
        font-size: 11px;
    }
    .srcs-btn-arrow {
        width: 39px;
        height: 39px;
    }
    .srcs-btn-arrow svg {
        width: 20px;
        height: 20px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {
    .srcs-withdrawal-container {
        padding-left: 11px;
        padding-right: 11px;
    }
    .srcs-withdrawal-rule {
        grid-template-columns: 43px 14px minmax(0, 1fr);
    }
    .srcs-rule-icon {
        width: 36px;
        height: 36px;
    }
    .srcs-rule-icon svg {
        width: 18px;
        height: 18px;
    }
    .srcs-rule-text {
        font-size: 12px;
    }
    .srcs-withdrawal-note,
    .srcs-withdrawal-org {
        font-size: 8px;
    }
    .srcs-btn-text {
        font-size: 15px;
    }
}


/* Withdrawal PDF action: prevent the global arrow pseudo-element from duplicating the SVG arrow. */

.srcs-withdrawal-btn {
    min-width: 520px;
    height: 72px;
    padding: 0 14px 0 22px;
    border-radius: 16px;
    background: linear-gradient(135deg, #087c45, #079052);
    box-shadow: 0 14px 30px rgba(8, 124, 69, .2);
}

.srcs-withdrawal-btn .srcs-btn-arrow::before {
    display: none;
}

.srcs-withdrawal-btn .srcs-btn-arrow {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: #f8cf4a;
}

.srcs-withdrawal-btn .srcs-btn-arrow svg {
    width: 22px;
    height: 22px;
    stroke: #075b3b;
}

@media (max-width: 767px) {
    .srcs-withdrawal-btn {
        min-width: 0;
        width: 100%;
        height: 62px;
        padding-left: 14px;
    }
}


/* Keep the withdrawal policy copy readable on phones.  The older mobile
   overrides reduced the policy text to 8–10px, which made the lower notes
   appear missing and clipped on small screens. */

@media (max-width: 600px) {
    .srcs-withdrawal-section {
        overflow: visible;
    }
    .srcs-withdrawal-container {
        height: auto;
        min-height: 0;
        overflow: visible;
    }
    .srcs-rule-text {
        font-size: 13px;
        line-height: 1.5;
    }
    .srcs-withdrawal-note,
    .srcs-withdrawal-org {
        font-size: 11px;
        line-height: 1.5;
    }
    .srcs-btn-text {
        font-size: 13px;
    }
}

@media (max-width: 400px) {
    .srcs-rule-text {
        font-size: 12px;
    }
    .srcs-withdrawal-note,
    .srcs-withdrawal-org {
        font-size: 10px;
    }
    .srcs-btn-text {
        font-size: 12px;
    }
}


/* =========================================================
   CISCE SECTION
========================================================= */

.srcs-cisce-section {
    width: 100%;
    padding: 30px 0 30px;
    background: #ffffff;
    overflow: hidden;
}

.srcs-cisce-container {
    position: relative;
    width: 90%;
    max-width: 1350px;
    margin: 0 auto;
}


/* =========================================================
   INTRO
========================================================= */

.srcs-cisce-intro {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 70px;
    align-items: center;
}


/* =========================================================
   INTRO CONTENT
========================================================= */

.srcs-cisce-intro-content {
    padding: 10px 0;
}

.srcs-cisce-label {
    display: inline-flex;
    align-items: center;
    margin-bottom: 16px;
    color: #087c45;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.srcs-cisce-label::before {
    content: "";
    width: 28px;
    height: 1px;
    margin-right: 10px;
    background: #c9a95f;
}

.srcs-cisce-intro-content h2 {
    margin: 0 0 20px;
    color: #17241e;
    font-size: 52px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 1px;
}

.srcs-cisce-intro-content h2 span {
    color: #087c45;
    font-style: normal;
}

.srcs-gold-line {
    width: 55px;
    height: 2px;
    margin-bottom: 24px;
    background: #c9a95f;
}

.srcs-cisce-intro-content p {
    margin: 0 0 17px;
    color: #3e4944;
    font-size: 14px;
    line-height: 1.8;
}

.srcs-cisce-intro-content p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   IMAGE
========================================================= */

.srcs-cisce-image-wrap {
    position: relative;
    padding: 15px;
}

.srcs-cisce-image-border {
    position: relative;
    z-index: 2;
    padding: 9px;
    border: 1px solid #087c45;
    border-radius: 9px;
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(17, 67, 43, 0.10);
}

.srcs-cisce-image-border img {
    display: block;
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: 3px;
}

.srcs-image-accent {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 160px;
    height: 110px;
    border-radius: 5px;
    background: #e9f3ee;
}

.srcs-image-dots {
    position: absolute;
    top: -15px;
    right: -5px;
    width: 90px;
    height: 70px;
    opacity: 0.6;
    background-image: radial-gradient( #70b69a 1.6px, transparent 1.6px);
    background-size: 11px 11px;
}


/* =========================================================
   PRINCIPLES HEADING
========================================================= */

.srcs-principles-heading {
    margin: 30px auto 30px;
    text-align: center;
}

.srcs-principles-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.srcs-principles-decoration span {
    width: 150px;
    height: 1px;
    background: #c9a95f;
}

.srcs-principles-decoration b {
    color: #c9a95f;
    font-size: 15px;
    font-weight: 400;
}

.srcs-principles-heading h2 {
    margin: 0;
    color: #000;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: 1px;
}

.srcs-heading-small-line {
    width: 48px;
    height: 2px;
    margin: 20px auto 0;
    background: #c9a95f;
}


/* =========================================================
   SLIDER
========================================================= */

.srcs-principles-slider {
    position: relative;
    width: 100%;
}

.srcs-slider-window {
    position: relative;
    width: 100%;
    overflow: hidden;
    border: 1px solid #e0e9e4;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 18px 50px rgba(14, 65, 42, 0.09);
}

.srcs-slides {
    position: relative;
    width: 100%;
}


/* =========================================================
   SLIDE
========================================================= */

.srcs-principle-slide {
    display: none;
    width: 100%;
    grid-template-columns: 0.8fr 1.2fr;
    min-height: 470px;
}

.srcs-principle-slide.active {
    display: grid;
    animation: srcsSlideIn 0.55s ease both;
}

@keyframes srcsSlideIn {
    from {
        opacity: 0;
        transform: translateX(25px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* =========================================================
   SLIDE CONTENT
========================================================= */

.srcs-slide-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 55px 60px 55px 70px;
    background: #ffffff;
}

.srcs-slide-content::before {
    content: "";
    position: absolute;
    left: 35px;
    top: 95px;
    width: 1px;
    height: 100px;
    background: #d4b35f;
}


/* =========================================================
   SLIDE NUMBER
========================================================= */

.srcs-slide-number {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 27px;
}

.srcs-slide-number strong {
    color: #087c45;
    font-size: 16px;
    font-weight: 700;
}

.srcs-slide-number span {
    color: #a2aca7;
    font-size: 13px;
}


/* =========================================================
   SLIDE TITLE
========================================================= */

.srcs-slide-content h3 {
    margin: 0;
    color: #087c45;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.srcs-slide-line {
    width: 45px;
    height: 2px;
    margin: 22px 0;
    background: #c9a95f;
}

.srcs-slide-content p {
    max-width: 390px;
    margin: 0 0 28px;
    color: #46524c;
    font-size: 14px;
    line-height: 1.85;
}


/* =========================================================
   SLIDE BUTTON
========================================================= */

.srcs-slide-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 175px;
    height: 48px;
    padding: 0 7px 0 18px;
    box-sizing: border-box;
    border: 1px solid #087c45;
    border-radius: 20px;
    background: #ffffff;
    color: #087c45;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.srcs-slide-btn b {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 20px;
    background: #087c45;
    color: #ffffff;
    transition: transform 0.3s ease, background 0.3s ease;
}

.srcs-slide-btn b svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.srcs-slide-btn:hover {
    background: #087c45;
    color: #ffffff;
    transform: translateY(-2px);
}

.srcs-slide-btn:hover b {
    background: #ffffff;
    color: #087c45;
    transform: translateX(3px);
}


/* =========================================================
   SLIDE IMAGE
========================================================= */

.srcs-slide-image {
    min-height: 470px;
    overflow: hidden;
    background: #edf4f0;
}

.srcs-slide-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.srcs-principle-slide.active .srcs-slide-image img {
    animation: srcsImageZoom 1.1s ease both;
}

@keyframes srcsImageZoom {
    from {
        transform: scale(1.04);
    }
    to {
        transform: scale(1);
    }
}


/* =========================================================
   ARROWS
========================================================= */

.srcs-slider-arrow {
    position: absolute;
    z-index: 10;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin: 0;
    border: 0;
    border-radius: 50%;
    background: #087c45;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(8, 124, 69, 0.22);
    transform: translateY(-50%);
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.srcs-slider-prev {
    left: -27px;
}

.srcs-slider-next {
    right: -27px;
}

.srcs-slider-arrow svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.srcs-slider-prev:hover {
    background: #056b3b;
    transform: translateY(-50%) translateX(-3px);
    box-shadow: 0 12px 28px rgba(8, 124, 69, 0.3);
}

.srcs-slider-next:hover {
    background: #056b3b;
    transform: translateY(-50%) translateX(3px);
    box-shadow: 0 12px 28px rgba(8, 124, 69, 0.3);
}


/* =========================================================
   PAGINATION
========================================================= */

.srcs-slider-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 27px;
}

.srcs-slider-pagination button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 39px;
    height: 39px;
    padding: 0;
    border: 1px solid #e0e7e3;
    border-radius: 50%;
    background: #f5f8f6;
    color: #65716b;
    cursor: pointer;
    font-size: 10px;
    font-weight: 700;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.srcs-slider-pagination button:hover {
    border-color: #087c45;
    color: #087c45;
    transform: translateY(-2px);
}

.srcs-slider-pagination button.active {
    border-color: #087c45;
    background: #087c45;
    color: #ffffff;
    box-shadow: 0 6px 15px rgba(8, 124, 69, 0.2);
}


/* =========================================================
   1050px
========================================================= */

@media (max-width: 1050px) {
    .srcs-cisce-intro {
        gap: 40px;
    }
    .srcs-cisce-image-border img {
        height: 380px;
    }
    .srcs-slide-content {
        padding: 45px 40px 45px 55px;
    }
    .srcs-slide-content h3 {
        font-size: 38px;
    }
}


/* =========================================================
   850px
========================================================= */

@media (max-width: 850px) {
    .srcs-cisce-section {
        padding: 30px 0 35px;
    }
    .srcs-cisce-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .srcs-cisce-intro-content {
        max-width: 700px;
    }
    .srcs-cisce-image-wrap {
        max-width: 700px;
        width: 100%;
        margin: 0 auto;
    }
    .srcs-cisce-image-border img {
        height: 400px;
    }
    .srcs-principles-heading {
        margin-top: 70px;
    }
    .srcs-principle-slide {
        grid-template-columns: 1fr;
    }
    .srcs-slide-content {
        min-height: 390px;
        padding: 45px 55px;
    }
    .srcs-slide-image {
        min-height: 400px;
    }
    .srcs-slider-arrow {
        width: 48px;
        height: 48px;
    }
    .srcs-slider-prev {
        left: -20px;
    }
    .srcs-slider-next {
        right: -20px;
    }
}


/* =========================================================
   600px
========================================================= */

@media (max-width: 600px) {
    .srcs-cisce-section {
        padding: 45px 0 60px;
    }
    .srcs-cisce-container {
        width: 92%;
    }
    /* INTRO */
    .srcs-cisce-intro {
        gap: 28px;
    }
    .srcs-cisce-intro-content h2 {
        font-size: 34px;
        letter-spacing: -1px;
    }
    .srcs-cisce-intro-content p {
        font-size: 11px;
        line-height: 1.75;
    }
    .srcs-cisce-image-wrap {
        padding: 8px;
    }
    .srcs-cisce-image-border {
        padding: 6px;
    }
    .srcs-cisce-image-border img {
        height: 270px;
    }
    .srcs-image-accent {
        width: 100px;
        height: 70px;
    }
    .srcs-image-dots {
        width: 65px;
        height: 50px;
    }
    /* HEADING */
    .srcs-principles-heading {
        margin: 30px auto 28px;
    }
    .srcs-principles-decoration span {
        width: 55px;
    }
    .srcs-principles-heading h2 {
        font-size: 21px;
        line-height: 1.4;
    }
    .srcs-heading-small-line {
        margin-top: 15px;
    }
    /* SLIDER */
    .srcs-slider-window {
        border-radius: 12px;
    }
    .srcs-principle-slide.active {
        display: flex;
        flex-direction: column;
    }
    .srcs-slide-content {
        min-height: 350px;
        padding: 35px 25px 30px;
    }
    .srcs-slide-content::before {
        left: 18px;
        top: 70px;
        height: 75px;
    }
    .srcs-slide-number {
        margin-bottom: 20px;
    }
    .srcs-slide-content h3 {
        font-size: 34px;
        letter-spacing: -1px;
    }
    .srcs-slide-line {
        margin: 17px 0;
    }
    .srcs-slide-content p {
        margin-bottom: 22px;
        font-size: 11px;
        line-height: 1.7;
    }
    .srcs-slide-image {
        min-height: 280px;
        height: 280px;
    }
    /* ARROWS */
    .srcs-slider-arrow {
        width: 42px;
        height: 42px;
    }
    .srcs-slider-arrow svg {
        width: 21px;
        height: 21px;
    }
    .srcs-slider-prev {
        left: -14px;
    }
    .srcs-slider-next {
        right: -14px;
    }
    /* Keep navigation over the image, away from the text/image boundary. */
    .srcs-slider-arrow {
        top: auto;
        bottom: 140px;
        transform: translateY(50%);
    }
    .srcs-slider-prev:hover,
    .srcs-slider-next:hover {
        transform: translateY(50%);
    }
    /* PAGINATION */
    .srcs-slider-pagination {
        gap: 6px;
        margin-top: 20px;
    }
    .srcs-slider-pagination button {
        width: 31px;
        height: 31px;
        font-size: 8px;
    }
}


/* =========================================================
   400px
========================================================= */

@media (max-width: 400px) {
    .srcs-cisce-intro-content h2 {
        font-size: 30px;
        letter-spacing: 1px !important;
    }
    .srcs-cisce-image-border img {
        height: 230px;
    }
    .srcs-principles-heading h2 {
        font-size: 20px !important;
        line-height: 1.35 !important;
        ;
    }
    .srcs-slide-content {
        min-height: 330px;
        padding: 30px 20px 25px;
    }
    .srcs-slide-content h3 {
        font-size: 29px;
    }
    .srcs-slide-image {
        height: 235px;
        min-height: 235px;
    }
    .srcs-slider-arrow {
        bottom: 117px;
    }
    .srcs-slider-pagination button {
        width: 28px;
        height: 28px;
    }
}


/* Academic principles: split every slide title into dark and green text. */

.srcs-slide-content h3.srcs-principle-title {
    color: #17251f;
}

.srcs-slide-content h3.srcs-principle-title span {
    color: #17251f;
    padding-left: 20px;
}

.srcs-slide-content h3.srcs-principle-title em {
    color: #087c45;
    font-style: normal;
}

.srcs-cisce-section .srcs-cisce-label::before,
.srcs-cisce-section .srcs-gold-line,
.srcs-cisce-section .srcs-principles-decoration span,
.srcs-cisce-section .srcs-heading-small-line,
.srcs-cisce-section .srcs-slide-content::before,
.srcs-cisce-section .srcs-slide-line {
    background: #f4c400 !important;
}

.srcs-cisce-section .srcs-principles-decoration b {
    color: #f4c400 !important;
}


/* =====================================================
   SHRI RAM | EDUCATION SECTION
===================================================== */

.sr-section {
    width: 100%;
    padding: 50px 20px;
    background: #ffff;
    overflow: hidden;
}

.sr-container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}


/* =====================================================
   TOP INTRO
===================================================== */

.sr-intro {
    width: 100%;
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    align-items: center;
    gap: 80px;
    margin-bottom: 70px;
}


/* =====================================================
   LEFT CONTENT
===================================================== */

.sr-intro-content {
    max-width: 600px;
}

.sr-kicker {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #000;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    margin-bottom: 22px;
}

.sr-kicker::after {
    content: "";
    width: 65px;
    height: 1px;
    background: #f4c400;
}

.sr-intro h2 {
    margin: 0;
    color: #084b31;
    font-size: 53px;
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: 1px;
}

.sr-intro h2 span {
    display: block;
    color: #f4c400;
    font-style: normal;
}

.sr-heading-line {
    width: 65px;
    height: 3px;
    margin: 28px 0;
    background: #f4c400;
}

.sr-intro-content>p {
    margin: 0 0 18px;
    color: #525d57;
    font-size: 16px;
    line-height: 1.85;
}


/* =====================================================
   HIGHLIGHT
===================================================== */

.sr-highlight {
    display: flex;
    align-items: center;
    gap: 18px;
    width: fit-content;
    margin-top: 28px;
    padding: 16px 25px;
    background: #ffffff;
    border-radius: 50px;
    box-shadow: 0 12px 35px rgba(0, 50, 30, 0.08);
}

.sr-highlight-icon {
    width: 43px;
    height: 43px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #084b31;
    color: #f4c400;
    font-size: 20px;
}

.sr-highlight strong {
    color: #084b31;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1.5;
}


/* =====================================================
   IMAGE AREA
===================================================== */

.sr-images {
    position: relative;
    height: 520px;
    display: grid;
    grid-template-columns: 1fr 0.86fr;
    gap: 16px;
}

.sr-image {
    position: relative;
    height: 100%;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 50, 30, 0.12);
}

.sr-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.sr-image:hover img {
    transform: scale(1.06);
}

.sr-image-one {
    border-radius: 35px 5px 35px 5px;
}

.sr-image-two {
    margin-top: 45px;
    height: calc(100% - 45px);
    border-radius: 5px 35px 5px 35px;
}


/* =====================================================
   IMAGE BADGE
===================================================== */

.sr-image-badge {
    position: absolute;
    left: 50%;
    bottom: -22px;
    transform: translateX(-50%);
    width: 260px;
    padding: 20px 22px;
    background: #084b31;
    border-radius: 20px;
    color: #ffffff;
    font-family: Arial, sans-serif;
    font-size: 13px;
    line-height: 1.5;
    box-shadow: 0 15px 35px rgba(0, 45, 30, 0.20);
}

.sr-image-badge span {
    display: inline-flex;
    width: 35px;
    height: 35px;
    margin-right: 10px;
    align-items: center;
    justify-content: center;
    border: 1px solid #d5af60;
    border-radius: 50%;
    color: #d5af60;
    vertical-align: middle;
}


/* =====================================================
   GREEN LEARNING PANEL
===================================================== */

.sr-learning {
    width: 100%;
    display: grid;
    grid-template-columns: 1.15fr repeat(4, 1fr);
    gap: 0;
    padding: 55px 55px;
    background: #084b31;
    border-radius: 28px;
    box-shadow: 0 20px 55px rgba(0, 55, 35, 0.14);
}


/* =====================================================
   LEARNING INTRO
===================================================== */

.sr-learning-intro {
    padding-right: 45px;
    border-right: 1px solid rgba(255, 255, 255, 0.20);
}

.sr-learning-intro>span {
    display: block;
    margin-bottom: 16px;
    color: #f4c400;
    font-family: Arial, sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.sr-learning-intro h3 {
    margin: 0 0 22px;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.05;
}

.sr-learning-intro h3 em {
    color: #f4c400;
    font-style: normal;
}

.sr-learning-intro p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.8;
}


/* =====================================================
   PILLARS
===================================================== */

.sr-pillar {
    padding: 0 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.sr-pillar:last-child {
    border-right: none;
}

.sr-pillar-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border: 1px solid #f4c400;
    border-radius: 50%;
    color: #f4c400;
    font-size: 32px;
    transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

.sr-pillar:hover .sr-pillar-icon {
    background: #f4c400;
    color: #084b31;
    transform: rotate(8deg);
}

.sr-pillar h4 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: 23px;
    font-weight: 400;
    line-height: 1.1;
}

.sr-pillar p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 1.75;
}

.sr-small-line {
    width: 45px;
    height: 2px;
    margin-top: 22px;
    background: #f4c400;
}


/* =====================================================
   MISSION
===================================================== */

.sr-mission {
    display: grid;
    grid-template-columns: 55px 1.25fr 1fr;
    align-items: center;
    gap: 25px;
    margin-top: 18px;
    padding: 25px 35px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0, 50, 30, 0.06);
}

.sr-quote {
    color: #d3a94f;
    font-family: Georgia, serif;
    font-size: 70px;
    line-height: 0.7;
}

.sr-mission-text p {
    margin: 0;
    color: #3f4943;
    font-size: 16px;
    line-height: 1.7;
}

.sr-mission-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.sr-mission-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    border-left: 1px solid #e7e7e1;
    padding-left: 10px;
}

.sr-mission-item span {
    color: #084b31;
    font-size: 28px;
}

.sr-mission-item small {
    color: #4f5b54;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.3;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {
    .sr-intro {
        grid-template-columns: 1fr 1fr;
        gap: 45px;
    }
    .sr-images {
        height: 450px;
    }
    .sr-learning {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
        padding: 45px;
    }
    .sr-learning-intro {
        grid-column: span 2;
        padding-right: 0;
        padding-bottom: 30px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.20);
    }
    .sr-pillar {
        padding: 0 20px;
    }
    .sr-mission {
        grid-template-columns: 45px 1fr;
    }
    .sr-mission-items {
        grid-column: span 2;
        margin-top: 15px;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {
    .sr-section {
        padding: 30px 15px;
    }
    .sr-intro {
        display: flex;
        flex-direction: column;
        gap: 45px;
        margin-bottom: 55px;
    }
    .sr-intro-content {
        max-width: 100%;
    }
    .sr-kicker {
        font-size: 9px;
        letter-spacing: 1.8px;
    }
    .sr-kicker::after {
        width: 35px;
    }
    .sr-intro h2 {
        font-size: 45px;
        letter-spacing: -1.5px;
    }
    .sr-intro-content>p {
        font-size: 14px;
        line-height: 1.75;
    }
    .sr-highlight {
        width: 100%;
        border-radius: 18px;
        padding: 14px 18px;
    }
    .sr-images {
        width: 100%;
        height: 380px;
        gap: 9px;
    }
    .sr-image-one {
        border-radius: 22px 3px 22px 3px;
    }
    .sr-image-two {
        margin-top: 25px;
        height: calc(100% - 25px);
        border-radius: 3px 22px 3px 22px;
    }
    .sr-image-badge {
        width: 215px;
        bottom: -18px;
        padding: 14px 16px;
        font-size: 10px;
        border-radius: 14px;
    }
    .sr-image-badge span {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
    /* GREEN PANEL */
    .sr-learning {
        display: grid;
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 35px 25px;
        border-radius: 20px;
    }
    .sr-learning-intro {
        grid-column: auto;
        padding-bottom: 30px;
    }
    .sr-learning-intro h3 {
        font-size: 32px;
    }
    .sr-pillar {
        padding: 0 0 30px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }
    .sr-pillar:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }
    /* MISSION */
    .sr-mission {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 25px 20px;
    }
    .sr-quote {
        font-size: 55px;
    }
    .sr-mission-items {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
        margin-top: 10px;
    }
    .sr-mission-item {
        border-left: none;
        padding: 10px;
        border: 1px solid #eeeeea;
        border-radius: 12px;
    }
}


/* Academic curriculum collage: give each mobile image enough width to be
   readable instead of squeezing both images into narrow columns. */

@media (max-width: 700px) {
    .sr-images {
        display: flex;
        flex-direction: column;
        height: auto;
        gap: 16px;
    }
    .sr-image,
    .sr-image-one,
    .sr-image-two {
        width: 100%;
        height: clamp(240px, 72vw, 340px);
        min-height: 0;
        margin-top: 0;
    }
    .sr-image img {
        object-fit: cover;
    }
}


/* =========================================================
   PEDAGOGY SECTION
========================================================= */

.pedagogy-section {
    position: relative;
    width: 100%;
    padding: 40px 20px;
    background: #fff;
    overflow: hidden;
}

.pedagogy-container {
    position: relative;
    width: 100%;
    max-width: 1500px;
    min-height: 780px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    align-items: center;
    background: #fff;
    overflow: hidden;
    border-radius: 0 35px 35px 0;
}


/* =========================================================
   DECORATIVE TOP GREEN SHAPE
========================================================= */

.pedagogy-top-shape {
    position: absolute;
    top: -2px;
    left: -2px;
    width: 285px;
    height: 100px;
    background: #084b35;
    border-radius: 0 0 100px 0;
    z-index: 1;
}


/* =========================================================
   DOT PATTERN
========================================================= */

.pedagogy-dots {
    position: absolute;
    display: grid;
    grid-template-columns: repeat(3, 6px);
    gap: 10px;
    z-index: 5;
}

.pedagogy-dots span {
    width: 5px;
    height: 5px;
    display: block;
    border-radius: 50%;
    background: #d5ad5b;
}

.pedagogy-dots-top {
    top: 120px;
    left: 25px;
}

.pedagogy-dots-bottom {
    right: 35px;
    bottom: 30px;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.pedagogy-content {
    position: relative;
    z-index: 6;
    padding: 85px 55px 70px 40px;
}


/* =========================================================
   EYEBROW
========================================================= */

.pedagogy-eyebrow {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 22px;
}

.pedagogy-book-icon {
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: #084b35;
    border: 2px solid #d2aa59;
    color: #d9b664;
    font-size: 22px;
    box-shadow: 0 8px 20px rgba(8, 75, 53, 0.12);
}

.pedagogy-eyebrow span {
    color: #c3923d;
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    white-space: nowrap;
}

.pedagogy-eyebrow-line {
    width: 70px;
    height: 1px;
    background: #c3923d;
}


/* =========================================================
   HEADING
========================================================= */

.pedagogy-content h2 {
    margin: 0;
    color: #084b35;
    font-size: 53px;
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -3px;
}

.pedagogy-title-line {
    width: 58px;
    height: 4px;
    margin: 25px 0 30px;
    background: #c89d4d;
}


/* =========================================================
   TEXT
========================================================= */

.pedagogy-text {
    max-width: 620px;
}

.pedagogy-text p {
    margin: 0 0 22px;
    color: #37433d;
    font-size: 16px;
    line-height: 1.85;
}

.pedagogy-text p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   HIGHLIGHT
========================================================= */

.pedagogy-highlight {
    display: flex;
    align-items: center;
    gap: 18px;
    max-width: 600px;
    margin-top: 28px;
    padding: 18px 24px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0, 50, 30, 0.07);
}

.pedagogy-highlight-icon {
    width: 55px;
    height: 55px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #084b35;
    color: #d3ad5d;
    font-size: 21px;
}

.pedagogy-highlight-line {
    width: 2px;
    height: 55px;
    flex-shrink: 0;
    background: #d4aa58;
}

.pedagogy-highlight p {
    margin: 0;
    color: #263d33;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
}


/* =========================================================
   FEATURE BOXES
========================================================= */

.pedagogy-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 28px;
    max-width: 650px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0, 50, 30, 0.07);
    overflow: hidden;
}

.pedagogy-feature {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 145px;
    padding: 18px 10px;
    text-align: center;
    border-right: 1px solid #e8dfcf;
}

.pedagogy-feature:last-child {
    border-right: none;
}

.pedagogy-feature-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    color: #084b35;
    font-size: 25px;
}

.pedagogy-feature h4 {
    margin: 0;
    color: #183e31;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.35;
}

.pedagogy-feature h4 span {
    display: block;
}

.pedagogy-feature-line {
    width: 28px;
    height: 2px;
    margin-top: 12px;
    background: #c89d4d;
    transition: width 0.35s ease;
}

.pedagogy-feature:hover .pedagogy-feature-line {
    width: 45px;
}


/* =========================================================
   RIGHT VISUAL
========================================================= */

.pedagogy-visual {
    position: relative;
    height: 100%;
    min-height: 780px;
    overflow: hidden;
}


/* =========================================================
   IMAGE
========================================================= */

.pedagogy-image-frame {
    position: absolute;
    top: 25px;
    right: 0;
    width: 96%;
    height: calc(100% - 25px);
    overflow: hidden;
    border-radius: 150px 0 0 150px;
}

.pedagogy-image-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(8, 75, 53, 0.05), transparent 30%);
    pointer-events: none;
}

.pedagogy-image-frame img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.pedagogy-image-frame:hover img {
    transform: scale(1.04);
}


/* =========================================================
   GOLD CURVE
========================================================= */

.pedagogy-curve {
    position: absolute;
    left: 0;
    top: 5%;
    width: 155px;
    height: 90%;
    border: 2px solid #d2aa59;
    border-right: none;
    border-radius: 150px 0 0 150px;
    z-index: 3;
    pointer-events: none;
}


/* =========================================================
   FLOATING GRADUATION ICON
========================================================= */

.pedagogy-floating-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #084b35;
    border: 2px solid #d3aa59;
    color: #ffffff;
    font-size: 27px;
    z-index: 8;
    box-shadow: 0 15px 30px rgba(0, 45, 30, 0.20);
}


/* =========================================================
   GREEN CORNER
========================================================= */

.pedagogy-green-corner {
    position: absolute;
    right: -70px;
    bottom: -100px;
    width: 280px;
    height: 280px;
    background: #084b35;
    border-radius: 50%;
    z-index: 4;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1200px) {
    .pedagogy-container {
        grid-template-columns: 1fr 1fr;
        min-height: 700px;
    }
    .pedagogy-content {
        padding: 70px 35px 60px 55px;
    }
    .pedagogy-eyebrow span {
        font-size: 10px;
    }
    .pedagogy-eyebrow-line {
        width: 40px;
    }
    .pedagogy-text p {
        font-size: 14px;
    }
    .pedagogy-visual {
        min-height: 700px;
    }
    .pedagogy-image-frame {
        border-radius: 110px 0 0 110px;
    }
    .pedagogy-curve {
        width: 115px;
    }
    .pedagogy-floating-icon {
        width: 65px;
        height: 65px;
        left: 3px;
        font-size: 22px;
    }
}


/* =========================================================
   TABLET SMALL
========================================================= */

@media (max-width: 950px) {
    .pedagogy-container {
        display: flex;
        flex-direction: column;
        min-height: auto;
        border-radius: 0 0 30px 30px;
    }
    .pedagogy-content {
        width: 100%;
        padding: 80px 45px 55px;
    }
    .pedagogy-visual {
        width: 100%;
        height: 550px;
        min-height: 550px;
    }
    .pedagogy-image-frame {
        top: 0;
        width: 92%;
        height: 100%;
        border-radius: 100px 0 0 0;
    }
    .pedagogy-curve {
        top: 5%;
        height: 90%;
        width: 120px;
    }
    .pedagogy-floating-icon {
        left: 25px;
    }
    .pedagogy-green-corner {
        width: 220px;
        height: 220px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {
    .pedagogy-section {
        padding: 45px 12px;
    }
    .pedagogy-container {
        border-radius: 0 0 20px 20px;
    }
    .pedagogy-top-shape {
        width: 190px;
        height: 65px;
    }
    .pedagogy-dots-top {
        top: 85px;
        left: 15px;
    }
    .pedagogy-content {
        padding: 75px 22px 45px;
    }
    .pedagogy-eyebrow {
        gap: 9px;
        flex-wrap: wrap;
    }
    .pedagogy-book-icon {
        width: 48px;
        height: 48px;
        font-size: 17px;
    }
    .pedagogy-eyebrow span {
        font-size: 8px;
        letter-spacing: 1.2px;
    }
    .pedagogy-eyebrow-line {
        display: none;
    }
    .pedagogy-content h2 {
        font-size: 55px;
        letter-spacing: -2px;
    }
    .pedagogy-title-line {
        width: 45px;
        margin: 20px 0 25px;
    }
    .pedagogy-text p {
        font-size: 13px;
        line-height: 1.75;
        text-align: left;
    }
    .pedagogy-highlight {
        gap: 12px;
        padding: 15px;
        border-radius: 14px;
    }
    .pedagogy-highlight-icon {
        width: 43px;
        height: 43px;
        font-size: 17px;
    }
    .pedagogy-highlight-line {
        height: 45px;
    }
    .pedagogy-highlight p {
        font-size: 11px;
    }
    /* FEATURES */
    .pedagogy-features {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 20px;
        border-radius: 14px;
    }
    .pedagogy-feature {
        min-height: 120px;
        padding: 15px 8px;
    }
    .pedagogy-feature:nth-child(2) {
        border-right: none;
    }
    .pedagogy-feature:nth-child(-n+2) {
        border-bottom: 1px solid #e8dfcf;
    }
    .pedagogy-feature-icon {
        width: 38px;
        height: 38px;
        font-size: 20px;
        margin-bottom: 8px;
    }
    .pedagogy-feature h4 {
        font-size: 10px;
    }
    /* IMAGE */
    .pedagogy-visual {
        height: 400px;
        min-height: 400px;
    }
    .pedagogy-image-frame {
        width: 94%;
        height: 100%;
        border-radius: 65px 0 0 0;
    }
    .pedagogy-curve {
        width: 70px;
        border-radius: 70px 0 0 70px;
    }
    .pedagogy-floating-icon {
        left: 7px;
        width: 55px;
        height: 55px;
        font-size: 19px;
    }
    .pedagogy-green-corner {
        width: 150px;
        height: 150px;
        right: -55px;
        bottom: -60px;
    }
    .pedagogy-dots-bottom {
        right: 15px;
        bottom: 15px;
    }
}


/* =========================================
   PRIMARY CURRICULUM
========================================= */

.primary-curriculum {
    width: 100%;
    padding: 55px 20px;
    background: #fff;
    overflow: hidden;
}


/* =========================================
   SAME 1500px WIDTH
========================================= */

.primary-wrap {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}


/* =========================================
   TOP SECTION
========================================= */

.primary-top {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 55px;
    margin-bottom: 35px;
}


/* =========================================
   IMAGE
========================================= */

.primary-photo {
    position: relative;
    height: 390px;
    overflow: hidden;
    border-radius: 25px 90px 25px 90px;
    background: #084b35;
    box-shadow: 0 15px 35px rgba(8, 75, 53, 0.12);
}

.primary-photo::before {
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 18px 80px 18px 80px;
    z-index: 2;
    pointer-events: none;
}

.primary-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.primary-photo:hover img {
    transform: scale(1.04);
}


/* =========================================
   CONTENT
========================================= */

.primary-content {
    max-width: 720px;
}

.primary-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 13px;
    color: #000;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.primary-label span {
    width: 32px;
    height: 1px;
    background: #b38b3d;
}

.primary-content h2 {
    margin: 0;
    color: #084b35;
    font-size: 53px;
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: 1px;
}

.primary-content h2 em {
    display: block;
    color: #f4c400;
    font-style: normal;
}

.primary-line {
    width: 55px;
    height: 3px;
    margin: 20px 0 22px;
    background: #f4c400;
}

.primary-content p {
    max-width: 680px;
    margin: 0 0 14px;
    color: #4f5b55;
    font-size: 16px;
    line-height: 1.7;
}

.primary-content p:last-child {
    margin-bottom: 0;
}


/* =========================================
   PILLARS BOX
========================================= */

.pillars-box {
    width: 100%;
    display: grid;
    grid-template-columns: 220px 1fr;
    align-items: center;
    padding: 25px 30px;
    background: #ffffff;
    border: 1px solid rgba(8, 75, 53, 0.10);
    border-radius: 22px;
    box-shadow: 0 12px 35px rgba(8, 75, 53, 0.06);
}


/* =========================================
   PILLAR HEADING
========================================= */

.pillars-heading {
    padding-right: 25px;
    border-right: 1px solid #e5e2d9;
}

.pillars-heading span {
    display: block;
    margin-bottom: 7px;
    color: #b38b3d;
    font-family: Arial, sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2px;
}

.pillars-heading h3 {
    margin: 0;
    color: #084b35;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 27px;
    font-weight: 400;
    line-height: 1.05;
}


/* =========================================
   PILLARS LIST
========================================= */

.pillars-list {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    align-items: center;
}


/* =========================================
   PILLAR ITEM
========================================= */

.pillar-item {
    position: relative;
    min-height: 105px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    text-align: center;
    border-right: 1px solid #e9e6de;
    transition: transform 0.3s ease;
}

.pillar-item:last-child {
    border-right: none;
}

.pillar-item:hover {
    transform: translateY(-5px);
}


/* =========================================
   ICON
========================================= */

.pillar-icon {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 9px;
    border-radius: 50%;
    background: #eef4ef;
    color: #084b35;
    font-size: 17px;
    transition: background 0.3s ease, color 0.3s ease;
}

.pillar-item:hover .pillar-icon {
    background: #084b35;
    color: #d5ad5b;
}


/* =========================================
   TEXT
========================================= */

.pillar-item span {
    color: #30463b;
    font-size: 10px;
    font-weight: 00;
    line-height: 1.3;
}


/* Refined 9-pillars panel */

.pillars-box {
    grid-template-columns: 245px 1fr;
    padding: 28px 30px;
    background: linear-gradient(135deg, #f7faf7 0%, #ffffff 100%);
    border: 1px solid #dce8df;
    border-radius: 24px;
    box-shadow: 0 16px 40px rgba(8, 75, 53, 0.08);
}

.pillars-heading {
    position: relative;
    padding: 8px 30px 8px 4px;
    border-right: 1px solid #dce8df;
}

.pillars-heading::after {
    content: "";
    display: block;
    width: 42px;
    height: 3px;
    margin-top: 17px;
    background: #f4c400;
}

.pillars-heading span {
    color: #f4c400;
}

.pillars-heading h3 {
    color: #084b35;
    font-size: 30px;
    line-height: 1.02;
}

.pillar-item {
    min-height: 112px;
    padding: 8px 12px;
    border-right: 1px solid #dce8df;
}

.pillar-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 11px;
    background: #eaf3ed;
    color: #084b35;
    box-shadow: inset 0 0 0 1px rgba(8, 75, 53, 0.04);
}

.pillar-item:hover .pillar-icon {
    background: #084b35;
    color: #f4c400;
}

.pillar-item span {
    color: #173b2c;
    font-size: 10px;
    line-height: 1.35;
}


/* Alternate card layout for the 9 pillars */

.pillars-box {
    display: block;
    padding: 52px 52px 48px;
    background: #ffffff;
    border: 1px solid #dce8df;
    border-radius: 30px;
    box-shadow: 0 18px 45px rgba(8, 75, 53, 0.08);
}

.pillars-heading {
    display: block;
    text-align: center;
    padding: 0 0 28px;
    border-right: 0;
    border-bottom: 1px solid #dce8df;
}

.pillars-heading::after {
    display: none;
}

.pillars-heading span {
    margin-bottom: 10px;
    color: #f4c400;
    letter-spacing: 3px;
}

.pillars-heading h3 {
    color: #084b35;
    font-size: 38px;
    line-height: 1;
}

.pillars-heading h3::after {
    content: "Explore the foundations of a joyful, well-rounded education.";
    display: block;
    max-width: 360px;
    margin-top: 12px;
    margin-left: auto;
    margin-right: auto;
    color: #63746b;
    font-family: Arial, sans-serif;
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 0;
}

.pillars-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    padding-top: 28px;
}

.pillar-item,
.pillar-item:nth-child(3n),
.pillar-item:nth-child(-n+6) {
    min-height: 128px;
    padding: 20px 14px;
    border: 0;
    border-radius: 18px;
    border: 1px solid #e1ece4;
    background: #f4f9f5;
    transition: background 0.3s ease, transform 0.3s ease;
}

.pillar-item:hover {
    border-color: #f4c400;
    background: #ffffff;
    transform: translateY(-6px);
}

.pillar-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 13px;
    background: #f4c400;
    color: #084b35;
    font-size: 18px;
}

.pillar-item:hover .pillar-icon {
    background: #ffffff;
    color: #084b35;
}

.pillar-item span {
    color: #000;
    font-size: 15px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {
    .primary-top {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 35px;
    }
    .primary-photo {
        height: 350px;
    }
    .primary-content p {
        font-size: 13px;
    }
    .pillars-box {
        grid-template-columns: 180px 1fr;
        padding: 22px;
    }
    .pillars-heading h3 {
        font-size: 24px;
    }
    .pillar-item {
        padding: 5px;
    }
    .pillar-icon {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
    .pillar-item span {
        font-size: 8px;
    }
}


/* =========================================
   TABLET SMALL
========================================= */

@media (max-width: 850px) {
    .primary-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .primary-photo {
        height: 400px;
        max-width: 700px;
    }
    .primary-content {
        max-width: 100%;
    }
    .pillars-box {
        display: block;
        padding: 25px;
    }
    .pillars-heading {
        display: block;
        padding: 0 0 18px;
        margin-bottom: 18px;
        border-right: none;
        border-bottom: 1px solid #e5e2d9;
    }
    .pillars-heading::after {
        margin-top: 14px;
    }
    .pillars-list {
        grid-template-columns: repeat(3, 1fr);
    }
    .pillar-item:nth-child(3n) {
        border-right: none;
    }
    .pillar-item:nth-child(-n+6) {
        border-bottom: 1px solid #e9e6de;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {
    .primary-curriculum {
        padding: 20px 15px;
    }
    .primary-top {
        gap: 25px;
        margin-bottom: 25px;
    }
    .primary-photo {
        height: 280px;
        border-radius: 20px 60px 20px 60px;
    }
    .primary-photo::before {
        inset: 7px;
        border-radius: 14px 50px 14px 50px;
    }
    .primary-label {
        font-size: 8px;
        letter-spacing: 1.8px;
    }
    .primary-content h2 {
        font-size: 48px;
        letter-spacing: -1.5px;
    }
    .primary-line {
        margin: 17px 0 20px;
    }
    .primary-content p {
        font-size: 13px;
        line-height: 1.7;
    }
    /* PILLARS */
    .pillars-box {
        padding: 20px 15px;
        border-radius: 17px;
    }
    .pillars-heading h3 {
        font-size: 25px;
    }
    .pillars-list {
        grid-template-columns: repeat(3, 1fr);
    }
    .pillar-item {
        min-height: 110px;
        padding: 8px 4px;
    }
    .pillar-icon {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
    .pillar-item span {
        font-size: 10px;
    }
    .pillar-item:nth-child(3n) {
        border-right: none;
    }
    .pillar-item:nth-child(-n+6) {
        border-bottom: 1px solid #e9e6de;
    }
}


/* ==========================================
   PROGRAMME SECTION
========================================== */

.programme-section {
    width: 100%;
    padding: 75px 20px;
    background: #f6f8f3;
    overflow: hidden;
}

.programme-container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}


/* ==========================================
   HEADER
========================================== */

.programme-header {
    text-align: center;
    margin-bottom: 55px;
}

.programme-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #f4c400;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.8px;
}

.programme-eyebrow span {
    width: 35px;
    height: 1px;
    background: #b08a3b;
}

.programme-header h2 {
    margin: 0;
    color: #084b31;
    font-size: 53px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -2px;
}

.programme-header h2 em {
    color: #f4c400;
    font-style: normal;
}


/* ==========================================
   TEACHING BLOCK
========================================== */

.teaching-block {
    background: #ffffff;
    border-radius: 28px;
    padding: 45px 50px 35px;
    box-shadow: 0 15px 45px rgba(8, 75, 49, 0.06);
    border: 1px solid rgba(8, 75, 49, 0.08);
}


/* ==========================================
   BLOCK HEADING
========================================== */

.block-heading {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 25px;
}

.heading-icon {
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #084b31;
    color: #d4ad5d;
    font-size: 22px;
    box-shadow: 0 8px 20px rgba(8, 75, 49, 0.12);
}

.block-heading span {
    display: block;
    margin-bottom: 5px;
    color: #b08a3b;
    font-family: Arial, sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.block-heading h3 {
    margin: 0;
    color: #084b31;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    font-weight: 400;
    line-height: 1;
}


/* ==========================================
   INTRO TEXT
========================================== */

.teaching-intro {
    max-width: 1200px;
    margin-left: 76px;
    margin-bottom: 30px;
}

.teaching-intro p {
    margin: 0 0 12px;
    color: #56625b;
    font-size: 16px;
    line-height: 1.75;
}


/* ==========================================
   STRATEGY LIST
========================================== */

.strategy-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 1px solid #e5e9e3;
    border-bottom: 1px solid #e5e9e3;
}


/* ==========================================
   STRATEGY ITEM
========================================== */

.strategy-item {
    position: relative;
    min-height: 245px;
    padding: 30px 22px;
    border-right: 1px solid #e5e9e3;
    transition: background 0.35s ease, transform 0.35s ease;
}

.strategy-item:last-child {
    border-right: none;
}

.strategy-item:hover {
    background: #f0f5f0;
}


/* ==========================================
   STRATEGY ICON
========================================== */

.strategy-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 50%;
    background: #edf4ee;
    color: #084b31;
    font-size: 18px;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.strategy-item:hover .strategy-icon {
    background: #084b31;
    color: #d5ad5c;
    transform: rotate(8deg);
}


/* ==========================================
   STRATEGY CONTENT
========================================== */

.strategy-content h4 {
    margin: 0 0 12px;
    color: #084b31;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.1;
}

.strategy-content p {
    margin: 0;
    color: #68736d;
    font-size: 16px;
    line-height: 1.7;
}


/* ==========================================
   GOLD BOTTOM LINE
========================================== */

.strategy-item::after {
    content: "";
    position: absolute;
    left: 22px;
    bottom: 20px;
    width: 25px;
    height: 2px;
    background: #c39b4e;
    transition: width 0.35s ease;
}

.strategy-item:hover::after {
    width: 50px;
}


/* ==========================================
   ASSESSMENT
========================================== */

.assessment-block {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 0;
    margin-top: 22px;
    background: #084b31;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(8, 75, 49, 0.13);
}


/* ==========================================
   ASSESSMENT MAIN
========================================== */

.assessment-main {
    padding: 42px 50px;
}

.assessment-main .heading-icon {
    background: #ffffff;
    color: #084b31;
}

.assessment-main .block-heading {
    margin-bottom: 25px;
}

.assessment-main .block-heading span {
    color: #d4ad5d;
}

.assessment-main .block-heading h3 {
    color: #ffffff;
}

.assessment-text {
    max-width: 900px;
    margin-left: 76px;
}

.assessment-text p {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.8;
}


/* ==========================================
   ASSESSMENT TYPES
========================================== */

.assessment-types {
    padding: 42px 38px;
    background: rgba(255, 255, 255, 0.07);
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.assessment-title {
    margin-bottom: 25px;
    color: #d4ad5d;
    font-size: 22px;
}


/* ==========================================
   ASSESSMENT ITEM
========================================== */

.assessment-type {
    display: flex;
    gap: 15px;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.assessment-number {
    width: 35px;
    height: 35px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d4ad5d;
    border-radius: 50%;
    color: #d4ad5d;
    font-family: Arial, sans-serif;
    font-size: 9px;
}

.assessment-type strong {
    display: block;
    margin-bottom: 5px;
    color: #ffffff;
    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: 500;
}

.assessment-type p {
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    line-height: 1.5;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 1100px) {
    .strategy-list {
        grid-template-columns: repeat(3, 1fr);
    }
    .strategy-item:nth-child(3) {
        border-right: none;
    }
    .strategy-item:nth-child(-n+3) {
        border-bottom: 1px solid #e5e9e3;
    }
    .assessment-block {
        grid-template-columns: 1fr;
    }
    .assessment-types {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 700px) {
    .programme-section {
        padding: 50px 15px;
    }
    .programme-header {
        margin-bottom: 35px;
    }
    .programme-eyebrow {
        font-size: 8px;
        letter-spacing: 2px;
    }
    .programme-eyebrow span {
        width: 22px;
    }
    .programme-header h2 {
        font-size: 42px;
    }
    /* Teaching */
    .teaching-block {
        padding: 28px 20px 20px;
        border-radius: 20px;
    }
    .block-heading {
        gap: 12px;
    }
    .heading-icon {
        width: 48px;
        height: 48px;
        border-radius: 13px;
        font-size: 18px;
    }
    .block-heading span {
        font-size: 7px;
        letter-spacing: 1.5px;
    }
    .block-heading h3 {
        font-size: 27px;
    }
    .teaching-intro {
        margin-left: 0;
        margin-bottom: 25px;
    }
    .teaching-intro p {
        font-size: 12px;
        line-height: 1.7;
    }
    /* Strategies */
    .strategy-list {
        grid-template-columns: 1fr;
    }
    .strategy-item {
        min-height: auto;
        padding: 23px 15px 30px;
        border-right: none;
        border-bottom: 1px solid #e5e9e3;
    }
    .strategy-item:last-child {
        border-bottom: none;
    }
    .strategy-item:nth-child(-n+3) {
        border-bottom: 1px solid #e5e9e3;
    }
    .strategy-icon {
        width: 42px;
        height: 42px;
        margin-bottom: 13px;
    }
    .strategy-content h4 {
        font-size: 19px;
    }
    .strategy-content p {
        font-size: 11px;
    }
    /* Assessment */
    .assessment-block {
        border-radius: 20px;
        margin-top: 15px;
    }
    .assessment-main {
        padding: 28px 20px;
    }
    .assessment-text {
        margin-left: 0;
    }
    .assessment-text p {
        font-size: 12px;
    }
    .assessment-types {
        padding: 28px 20px;
    }
    .assessment-title {
        font-size: 18px;
    }
}


/* =========================================================
   GLOBAL MOBILE TYPOGRAPHY
   Keep all pages readable and proportionate on phones.
========================================================= */

@media (max-width: 600px) {
    body {
        font-size: 15px;
    }
    h1 {
        font-size: clamp(34px, 9.5vw, 46px) !important;
        line-height: 1.05 !important;
    }
    h2 {
        font-size: clamp(32px, 8.5vw, 44px) !important;
        line-height: 1.1 !important;
    }
    h3 {
        font-size: clamp(25px, 7vw, 35px) !important;
        line-height: 1.15 !important;
    }
    h4 {
        font-size: clamp(19px, 5.5vw, 26px) !important;
        line-height: 1.2 !important;
    }
    p {
        font-size: 15px !important;
        line-height: 1.7 !important;
    }
    .simple-page-title {
        font-size: clamp(34px, 9.5vw, 46px) !important;
        line-height: 1.05 !important;
    }
    .simple-breadcrumb {
        font-size: 11px !important;
        gap: 7px !important;
    }
    button,
    a {
        -webkit-tap-highlight-color: transparent;
    }
    /* Add breathing room to the Primary School pedagogy layout. */
    .pedagogy-section {
        padding-top: 58px;
        padding-bottom: 58px;
    }
    .pedagogy-top-shape {
        width: 175px;
        height: 48px;
    }
    .pedagogy-content {
        padding-top: 96px;
        padding-bottom: 58px;
    }
    .pedagogy-eyebrow {
        margin-bottom: 30px;
    }
    .pedagogy-content h2 {
        margin-bottom: 0;
        line-height: 1;
    }
    .pedagogy-title-line {
        margin-top: 24px;
        margin-bottom: 30px;
    }
    .pedagogy-text p {
        margin-bottom: 26px;
    }
    .pedagogy-highlight {
        margin-top: 34px;
    }
    .pedagogy-highlight p {
        font-size: 12px !important;
        line-height: 1.45 !important;
    }
    .pedagogy-feature h4 {
        font-size: 13px !important;
        line-height: 1.2 !important;
    }
}


/* =========================================================
   REGGIO LEARNING SECTION
========================================================= */

.reccio-learning-section {
    width: 100%;
    padding: 55px 20px 75px;
    background: #f8f9f5;
    overflow: hidden;
}

.reccio-container {
    position: relative;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}


/* =========================================================
   LEARNING CYCLE
========================================================= */

.learning-cycle {
    position: relative;
    width: 100%;
    height: 610px;
    background: #ffffff;
    border: 1px solid #e4e9e1;
    border-radius: 28px;
    box-shadow: 0 15px 45px rgba(8, 75, 49, 0.06);
    overflow: hidden;
}


/* =========================================================
   CENTER
========================================================= */

.cycle-center {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 270px;
    height: 270px;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: radial-gradient( circle, #075d37 0%, #075d37 58%, #edf4ed 59%, #edf4ed 68%, transparent 69%);
    z-index: 5;
}

.cycle-center-inner {
    width: 205px;
    height: 205px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 50%;
    background: #086638;
    border: 1px dashed rgba(255, 255, 255, 0.65);
    color: #ffffff;
    box-shadow: 0 15px 35px rgba(0, 75, 45, 0.16);
}

.cycle-center-inner i {
    margin-bottom: 13px;
    color: #ffffff;
    font-size: 25px;
}

.cycle-center-inner h3 {
    margin: 0;
    font-family: Arial, sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
}


/* =========================================================
   OUTER CARDS
========================================================= */

.cycle-card {
    position: absolute;
    width: 210px;
    height: 210px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px;
    text-align: center;
    border-radius: 50%;
    background: #edfaf4;
    border: 1px solid #d9e9df;
    box-shadow: 0 10px 30px rgba(8, 75, 49, 0.05);
    z-index: 4;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.cycle-card:hover {
    transform: scale(1.04);
    box-shadow: 0 18px 40px rgba(8, 75, 49, 0.12);
}


/* Curriculum */

.cycle-curriculum {
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
}

.cycle-curriculum:hover {
    transform: translateX(-50%) scale(1.04);
}


/* Pedagogy */

.cycle-pedagogy {
    left: calc(50% - 390px);
    bottom: 55px;
}


/* Assessment */

.cycle-assessment {
    right: calc(50% - 390px);
    bottom: 55px;
}


/* =========================================================
   CARD ICON
========================================================= */

.cycle-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    color: #075c37;
    font-size: 22px;
}

.cycle-card h3 {
    margin: 0 0 8px;
    color: #075c37;
    font-family: Arial, sans-serif;
    font-size: 17px;
    font-weight: 600;
}

.cycle-card p {
    margin: 0;
    max-width: 155px;
    color: #4d6b5b;
    font-family: Arial, sans-serif;
    font-size: 10px;
    line-height: 1.5;
}


/* =========================================================
   ARROWS
========================================================= */

.cycle-arrow {
    position: absolute;
    z-index: 3;
    color: #777b77;
    font-size: 32px;
}

.cycle-arrow-left {
    left: calc(50% - 250px);
    top: 225px;
    transform: rotate(35deg);
}

.cycle-arrow-right {
    right: calc(50% - 250px);
    top: 225px;
    transform: rotate(-35deg);
}

.cycle-arrow-bottom {
    left: 50%;
    bottom: 82px;
    transform: translateX(-50%) rotate(90deg);
}


/* =========================================================
   NOTES
========================================================= */

.cycle-note {
    position: absolute;
    z-index: 7;
    color: #68706b;
    font-family: Arial, sans-serif;
    font-size: 10px;
    line-height: 1.45;
    text-align: center;
}

.note-left {
    left: calc(50% - 505px);
    top: 210px;
}

.note-right {
    right: calc(50% - 505px);
    top: 210px;
}

.note-bottom {
    left: 50%;
    bottom: 25px;
    transform: translateX(-50%);
}


/* =========================================================
   DECORATIVE DOTS
========================================================= */

.cycle-decoration {
    position: absolute;
    display: grid;
    grid-template-columns: repeat(3, 5px);
    gap: 10px;
    z-index: 2;
}

.cycle-decoration i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #d5ad55;
}

.dots-left {
    top: 35px;
    left: 35px;
}

.dots-right {
    right: 35px;
    bottom: 30px;
}


/* =========================================================
   REGGIO CONTENT
========================================================= */

.reggio-content {
    margin-top: 22px;
    padding: 55px 65px 65px;
    background: #ffffff;
    border-radius: 28px;
    border: 1px solid #e4e9e1;
    box-shadow: 0 15px 45px rgba(8, 75, 49, 0.05);
}


/* =========================================================
   CONTENT ROW
========================================================= */

.reggio-heading-row {
    display: grid;
    grid-template-columns: 85px 1fr;
    gap: 25px;
    align-items: start;
    max-width: 1250px;
    margin: 0 auto 40px;
}

.vision-row {
    margin-bottom: 45px;
}


/* =========================================================
   CONTENT ICON
========================================================= */

.reggio-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #075d37;
    border: 2px solid #d3aa58;
    color: #d7b15e;
    font-size: 25px;
    box-shadow: 0 8px 22px rgba(8, 75, 49, 0.10);
}


/* =========================================================
   MINI LABEL
========================================================= */

.section-mini-label {
    display: block;
    margin-bottom: 7px;
    color: #b28b3e;
    font-family: Arial, sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.5px;
}


/* =========================================================
   CONTENT HEADING
========================================================= */

.reggio-heading-content h2 {
    margin: 0;
    color: #084b35;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(32px, 3vw, 48px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.reggio-heading-content h2 em {
    color: #b18a3d;
    font-style: italic;
}


/* =========================================================
   GOLD LINE
========================================================= */

.heading-gold-line {
    width: 48px;
    height: 3px;
    margin: 15px 0 18px;
    background: #c69e50;
}


/* =========================================================
   CONTENT PARAGRAPH
========================================================= */

.reggio-heading-content p {
    max-width: 1050px;
    margin: 0;
    color: #56635b;
    font-family: Arial, sans-serif;
    font-size: 13px;
    line-height: 1.8;
}


/* =========================================================
   COLLABORATION
========================================================= */

.collaboration-area {
    position: relative;
    width: 100%;
    height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    background: #f6faf5;
    border: 1px solid #dfeadf;
    border-radius: 22px;
    overflow: hidden;
}


/* =========================================================
   RINGS
========================================================= */

.collaboration-ring {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: none;
}

.ring-one {
    width: 315px;
    height: 315px;
    background: #0b6338;
    box-shadow: inset 0 0 0 18px rgba(255, 255, 255, 0.08);
}

.ring-two {
    width: 265px;
    height: 265px;
    background: #084f2e;
    box-shadow: inset 0 0 0 17px rgba(255, 255, 255, 0.07);
}

.ring-three {
    width: 215px;
    height: 215px;
    background: #063f25;
}


/* =========================================================
   RING TEXT
========================================================= */

.collaboration-title {
    position: absolute;
    top: calc(50% - 145px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    color: #ffffff;
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.collaboration-subtitle {
    position: absolute;
    top: calc(50% - 113px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    color: #ffffff;
    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}


/* =========================================================
   CHILD
========================================================= */

.collaboration-child {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 125px;
    height: 125px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    color: #ffffff;
    z-index: 10;
}

.collaboration-child-icon {
    font-size: 24px;
}

.collaboration-child strong {
    font-family: Arial, sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
}


/* =========================================================
   PERSON CIRCLES
========================================================= */

.collaboration-person {
    position: absolute;
    width: 125px;
    height: 125px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid #dbe3db;
    border-radius: 50%;
    z-index: 12;
    box-shadow: 0 10px 25px rgba(0, 45, 25, 0.12);
    color: #075d37;
    transition: transform 0.35s ease;
}

.collaboration-person:hover {
    transform: scale(1.07);
}

.person-icon {
    font-size: 22px;
}

.collaboration-person strong {
    font-family: Arial, sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
}


/* Parent */

.collaboration-parent {
    left: calc(50% - 260px);
    top: 50%;
    transform: translateY(-50%);
}

.collaboration-parent:hover {
    transform: translateY(-50%) scale(1.07);
}


/* Teacher */

.collaboration-teacher {
    right: calc(50% - 260px);
    top: 50%;
    transform: translateY(-50%);
}

.collaboration-teacher:hover {
    transform: translateY(-50%) scale(1.07);
}


/* Community */

.collaboration-community {
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
}

.collaboration-community:hover {
    transform: translateX(-50%) scale(1.07);
}


/* =========================================================
   CONNECTION LINES
========================================================= */

.connection-line {
    position: absolute;
    z-index: 8;
    height: 1px;
    background: #d3aa58;
    transform-origin: left center;
}

.connection-parent {
    width: 80px;
    left: calc(50% - 135px);
    top: 50%;
    transform: rotate(0deg);
}

.connection-teacher {
    width: 80px;
    left: calc(50% + 55px);
    top: 50%;
    transform: rotate(0deg);
}

.connection-community {
    width: 85px;
    left: calc(50% - 1px);
    top: calc(50% + 55px);
    transform: rotate(90deg);
}


/* =========================================================
   OUTER ARROWS
========================================================= */

.outer-arrow {
    position: absolute;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c79c48;
    font-size: 25px;
    z-index: 3;
}

.outer-arrow-left {
    left: calc(50% - 360px);
    top: 50%;
    transform: translateY(-50%);
}

.outer-arrow-right {
    right: calc(50% - 360px);
    top: 50%;
    transform: translateY(-50%);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {
    .learning-cycle {
        height: 560px;
    }
    .cycle-card {
        width: 180px;
        height: 180px;
    }
    .cycle-curriculum {
        top: 25px;
    }
    .cycle-pedagogy {
        left: calc(50% - 315px);
        bottom: 55px;
    }
    .cycle-assessment {
        right: calc(50% - 315px);
        bottom: 55px;
    }
    .cycle-center {
        width: 230px;
        height: 230px;
    }
    .cycle-center-inner {
        width: 175px;
        height: 175px;
    }
    .note-left {
        left: 7%;
    }
    .note-right {
        right: 7%;
    }
    .reggio-content {
        padding: 45px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {
    .reccio-learning-section {
        padding: 35px 12px 50px;
    }
    /* Cycle */
    .learning-cycle {
        height: 780px;
        border-radius: 20px;
    }
    .cycle-center {
        width: 190px;
        height: 190px;
    }
    .cycle-center-inner {
        width: 145px;
        height: 145px;
    }
    .cycle-center-inner i {
        font-size: 19px;
    }
    .cycle-center-inner h3 {
        font-size: 16px;
    }
    .cycle-card {
        width: 145px;
        height: 145px;
        padding: 17px;
    }
    .cycle-card h3 {
        font-size: 14px;
    }
    .cycle-card p {
        font-size: 8px;
    }
    .cycle-icon {
        width: 35px;
        height: 35px;
        margin-bottom: 5px;
        font-size: 17px;
    }
    .cycle-curriculum {
        top: 30px;
    }
    .cycle-pedagogy {
        left: 20px;
        bottom: 170px;
    }
    .cycle-assessment {
        right: 20px;
        bottom: 170px;
    }
    .cycle-arrow-left,
    .cycle-arrow-right {
        display: none;
    }
    .cycle-arrow-bottom {
        bottom: 140px;
        font-size: 22px;
    }
    .cycle-note {
        font-size: 8px;
    }
    .note-left {
        left: 15px;
        top: 330px;
        width: 120px;
    }
    .note-right {
        right: 15px;
        top: 330px;
        width: 120px;
    }
    .note-bottom {
        bottom: 35px;
        width: 180px;
    }
    .dots-left {
        top: 20px;
        left: 20px;
    }
    .dots-right {
        right: 20px;
        bottom: 20px;
    }
    /* Reggio */
    .reggio-content {
        margin-top: 15px;
        padding: 30px 20px;
        border-radius: 20px;
    }
    .reggio-heading-row {
        grid-template-columns: 50px 1fr;
        gap: 15px;
        margin-bottom: 30px;
    }
    .reggio-icon {
        width: 48px;
        height: 48px;
        font-size: 17px;
    }
    .section-mini-label {
        font-size: 7px;
        letter-spacing: 1.7px;
    }
    .reggio-heading-content h2 {
        font-size: 28px;
        letter-spacing: -0.8px;
    }
    .reggio-heading-content p {
        font-size: 11px;
        line-height: 1.7;
    }
    /* Collaboration */
    .collaboration-area {
        height: 360px;
        border-radius: 16px;
    }
    .ring-one {
        width: 230px;
        height: 230px;
    }
    .ring-two {
        width: 195px;
        height: 195px;
    }
    .ring-three {
        width: 160px;
        height: 160px;
    }
    .collaboration-child {
        width: 90px;
        height: 90px;
    }
    .collaboration-child-icon {
        font-size: 18px;
    }
    .collaboration-child strong {
        font-size: 10px;
    }
    .collaboration-person {
        width: 85px;
        height: 85px;
    }
    .person-icon {
        font-size: 17px;
    }
    .collaboration-person strong {
        font-size: 9px;
    }
    .collaboration-parent {
        left: calc(50% - 150px);
    }
    .collaboration-teacher {
        right: calc(50% - 150px);
    }
    .collaboration-community {
        bottom: 5px;
    }
    .collaboration-title {
        top: calc(50% - 105px);
        font-size: 8px;
    }
    .collaboration-subtitle {
        top: calc(50% - 82px);
        font-size: 7px;
    }
    .connection-parent {
        width: 35px;
        left: calc(50% - 80px);
    }
    .connection-teacher {
        width: 35px;
        left: calc(50% + 45px);
    }
    .connection-community {
        width: 45px;
        top: calc(50% + 40px);
    }
    .outer-arrow {
        display: none;
    }
}


/* =====================================================
   LEARNING ECOSYSTEM
===================================================== */

.learning-ecosystem {
    width: 100%;
    padding: 65px 20px;
    background: #f5f7f2;
    overflow: hidden;
}

.learning-container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}


/* =====================================================
   TOP
===================================================== */

.learning-top {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 70px;
    align-items: center;
    padding: 50px 55px;
    background: #ffffff;
    border: 1px solid #e1e7df;
    border-radius: 28px;
}


/* =====================================================
   INTRO
===================================================== */

.learning-intro {
    max-width: 580px;
}

.learning-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: #b28a3c;
    font-family: Arial, sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.learning-tag span {
    width: 32px;
    height: 2px;
    background: #b28a3c;
}

.learning-intro h2 {
    margin: 0;
    color: #084b31;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(52px, 5vw, 78px);
    font-weight: 400;
    line-height: .92;
    letter-spacing: -3px;
}

.learning-intro h2 em {
    display: block;
    color: #b18a3d;
    font-style: italic;
}

.learning-lead {
    max-width: 490px;
    margin: 25px 0 30px;
    color: #5b675f;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.8;
}


/* =====================================================
   OBJECTIVE BOX
===================================================== */

.learning-objective {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    max-width: 510px;
    padding: 22px 24px;
    background: #f0f6f1;
    border-left: 4px solid #084b31;
    border-radius: 0 16px 16px 0;
}

.objective-mark {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #084b31;
    color: #d4ad5c;
    font-size: 17px;
}

.learning-objective small {
    display: block;
    margin-bottom: 5px;
    color: #b28a3c;
    font-family: Arial, sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2px;
}

.learning-objective h3 {
    margin: 0;
    color: #084b31;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    font-weight: 400;
}

.learning-objective h3 span {
    color: #b28a3c;
    font-style: italic;
}

.learning-objective p {
    margin: 7px 0 0;
    color: #647168;
    font-family: Arial, sans-serif;
    font-size: 11px;
    line-height: 1.6;
}


/* =====================================================
   PILLARS
===================================================== */

.learning-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}


/* =====================================================
   PILLAR
===================================================== */

.learning-pillar {
    position: relative;
    min-height: 330px;
    display: flex;
    flex-direction: column;
    padding: 25px 22px;
    background: #f1f7f2;
    border: 1px solid #dce8de;
    border-radius: 20px;
    overflow: hidden;
    transition: transform .35s ease, background .35s ease, box-shadow .35s ease;
}

.learning-pillar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #d0a653;
}

.learning-pillar:hover {
    transform: translateY(-8px);
    background: #084b31;
    box-shadow: 0 20px 35px rgba(8, 75, 49, .15);
}


/* =====================================================
   PILLAR TOP
===================================================== */

.pillar-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pillar-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #ffffff;
    color: #084b31;
    font-size: 20px;
}

.pillar-top>span {
    color: #b28a3c;
    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.learning-pillar:hover .pillar-icon {
    background: #d5ad5c;
    color: #084b31;
}


/* =====================================================
   PILLAR BODY
===================================================== */

.pillar-body {
    margin-top: auto;
}

.pillar-body h3 {
    margin: 0 0 12px;
    color: #084b31;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    font-weight: 400;
}

.pillar-body p {
    margin: 0;
    color: #617066;
    font-family: Arial, sans-serif;
    font-size: 12px;
    line-height: 1.7;
}

.learning-pillar:hover .pillar-body h3,
.learning-pillar:hover .pillar-body p {
    color: #ffffff;
}


/* =====================================================
   PILLAR ARROW
===================================================== */

.pillar-arrow {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d1aa5a;
    border-radius: 50%;
    color: #084b31;
    font-size: 11px;
}

.learning-pillar:hover .pillar-arrow {
    color: #ffffff;
    background: #0a5b38;
}


/* =====================================================
   PROCESS SECTION
===================================================== */

.learning-process {
    display: grid;
    grid-template-columns: 260px 1fr;
    align-items: center;
    margin-top: 18px;
    padding: 30px 38px;
    background: #084b31;
    border-radius: 24px;
    overflow: hidden;
}


/* =====================================================
   PROCESS LABEL
===================================================== */

.process-label {
    padding-right: 35px;
    border-right: 1px solid rgba(255, 255, 255, .18);
}

.process-label>span {
    display: block;
    margin-bottom: 9px;
    color: #d3ab5a;
    font-family: Arial, sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.process-label h3 {
    margin: 0;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 27px;
    font-weight: 400;
    line-height: 1.05;
}

.process-label h3 em {
    color: #d3ab5a;
    font-style: italic;
}


/* =====================================================
   PROCESS FLOW
===================================================== */

.process-flow {
    display: grid;
    grid-template-columns: 1fr 45px 1fr 45px 1fr 45px 1fr;
    align-items: center;
    padding-left: 35px;
}


/* =====================================================
   PERSON
===================================================== */

.process-person {
    display: flex;
    align-items: center;
    gap: 13px;
}

.process-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #cda557;
    border-radius: 50%;
    color: #d4ad5c;
    font-size: 17px;
}

.process-person small {
    display: block;
    margin-bottom: 3px;
    color: #d0a653;
    font-family: Arial, sans-serif;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 1px;
}

.process-person strong {
    display: block;
    margin-bottom: 4px;
    color: #ffffff;
    font-family: Arial, sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.process-person p {
    margin: 0;
    color: rgba(255, 255, 255, .62);
    font-family: Arial, sans-serif;
    font-size: 9px;
    line-height: 1.45;
}


/* =====================================================
   CONNECTOR
===================================================== */

.process-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d1a652;
    font-size: 10px;
}

.process-connector span {
    width: 18px;
    height: 1px;
    background: rgba(255, 255, 255, .25);
}


/* =====================================================
   FOOTER
===================================================== */

.learning-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 18px;
}

.learning-footer p {
    max-width: 720px;
    margin: 0;
    text-align: center;
    color: #68746c;
    font-family: Arial, sans-serif;
    font-size: 11px;
    line-height: 1.6;
}

.footer-line {
    width: 70px;
    height: 1px;
    background: #cda653;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {
    .learning-top {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 45px;
    }
    .learning-intro {
        max-width: 800px;
    }
    .learning-pillars {
        grid-template-columns: repeat(3, 1fr);
    }
    .learning-pillar {
        min-height: 250px;
    }
    .learning-process {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .process-label {
        padding-right: 0;
        padding-bottom: 20px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .18);
    }
    .process-flow {
        padding-left: 0;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {
    .learning-ecosystem {
        padding: 40px 14px;
    }
    .learning-top {
        padding: 30px 20px;
        border-radius: 20px;
    }
    .learning-intro h2 {
        font-size: 50px;
        letter-spacing: -2px;
    }
    .learning-lead {
        font-size: 12px;
        line-height: 1.7;
    }
    .learning-objective {
        padding: 17px;
        gap: 12px;
    }
    .objective-mark {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
    .learning-objective h3 {
        font-size: 21px;
    }
    /* PILLARS */
    .learning-pillars {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .learning-pillar {
        min-height: 175px;
        padding: 20px;
    }
    .pillar-body {
        margin-top: 25px;
    }
    .pillar-body h3 {
        font-size: 24px;
    }
    /* PROCESS */
    .learning-process {
        padding: 25px 20px;
        border-radius: 20px;
    }
    .process-label h3 {
        font-size: 25px;
    }
    .process-flow {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 5px;
    }
    .process-person {
        padding: 12px 0;
    }
    .process-connector {
        justify-content: flex-start;
        padding-left: 22px;
        transform: rotate(90deg);
        width: 35px;
    }
    .process-connector span {
        width: 15px;
    }
    .learning-footer {
        gap: 10px;
    }
    .footer-line {
        width: 25px;
    }
    .learning-footer p {
        font-size: 9px;
    }
}


/* =====================================================
   LEARNING PHILOSOPHY
===================================================== */

.learning-philosophy {
    width: 100%;
    padding: 75px 20px;
    background: #f6f8f3;
    overflow: hidden;
}

.lp-container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}


/* =====================================================
   MAIN HEADING
===================================================== */

.lp-heading {
    text-align: center;
    margin-bottom: 45px;
}

.lp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    color: #b18a3d;
    font-family: Arial, sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.lp-eyebrow::before,
.lp-eyebrow::after {
    content: "";
    width: 35px;
    height: 1px;
    background: #b18a3d;
}

.lp-heading h2 {
    margin: 0;
    color: #084b31;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 4.5vw, 66px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -2px;
}

.lp-heading h2 em {
    color: #b18a3d;
    font-style: italic;
}

.lp-heading-line {
    width: 50px;
    height: 3px;
    margin: 20px auto 0;
    background: #c59b4e;
}


/* =====================================================
   FRAMEWORK
===================================================== */

.lp-framework {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr repeat(3, 1fr);
    gap: 15px;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #e0e7df;
    border-radius: 26px;
    box-shadow: 0 15px 40px rgba(8, 75, 49, .06);
}


/* =====================================================
   FRAMEWORK INTRO
===================================================== */

.lp-framework-intro {
    padding: 20px 30px 20px 10px;
    grid-row: span 2;
}

.lp-framework-intro>span {
    display: block;
    margin-bottom: 12px;
    color: #b18a3d;
    font-family: Arial, sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.lp-framework-intro h3 {
    margin: 0 0 18px;
    color: #084b31;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 36px;
    font-weight: 400;
    line-height: 1;
}

.lp-framework-intro h3 em {
    color: #b18a3d;
    font-style: italic;
}

.lp-framework-intro p {
    max-width: 360px;
    margin: 0;
    color: #657068;
    font-family: Arial, sans-serif;
    font-size: 12px;
    line-height: 1.75;
}


/* =====================================================
   FRAMEWORK CARD
===================================================== */

.lp-framework-card {
    position: relative;
    min-height: 245px;
    display: flex;
    flex-direction: column;
    padding: 25px;
    background: #f1f7f2;
    border: 1px solid #dfe9e1;
    border-radius: 18px;
    overflow: hidden;
    transition: transform .35s ease, background .35s ease, box-shadow .35s ease;
}

.lp-framework-card:hover {
    transform: translateY(-6px);
    background: #084b31;
    box-shadow: 0 18px 35px rgba(8, 75, 49, .15);
}


/* =====================================================
   NUMBER
===================================================== */

.lp-card-number {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #b28b3e;
    font-family: Arial, sans-serif;
    font-size: 9px;
    font-weight: 700;
}


/* =====================================================
   ICON
===================================================== */

.lp-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    background: #ffffff;
    border-radius: 14px;
    color: #084b31;
    font-size: 18px;
    transition: background .35s ease, color .35s ease;
}

.lp-framework-card:hover .lp-card-icon {
    background: #d3aa59;
    color: #084b31;
}


/* =====================================================
   CARD CONTENT
===================================================== */

.lp-card-content {
    margin-top: auto;
}

.lp-card-content h3 {
    margin: 0 0 10px;
    color: #084b31;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 27px;
    font-weight: 400;
}

.lp-card-content p {
    margin: 0;
    color: #617068;
    font-family: Arial, sans-serif;
    font-size: 11px;
    line-height: 1.65;
}

.lp-framework-card:hover .lp-card-content h3,
.lp-framework-card:hover .lp-card-content p {
    color: #ffffff;
}


/* =====================================================
   CARD BOTTOM
===================================================== */

.lp-card-bottom {
    margin-top: 20px;
    padding-top: 12px;
    border-top: 1px solid #dce5dd;
}

.lp-card-bottom span {
    color: #b18a3d;
    font-family: Arial, sans-serif;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 1.5px;
}


/* =====================================================
   OBJECTIVE
===================================================== */

.lp-objective {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 25px;
    background: #084b31;
    border-radius: 17px;
}

.lp-objective-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d4ad5c;
    border-radius: 50%;
    color: #d4ad5c;
    font-size: 19px;
}

.lp-objective span {
    display: block;
    margin-bottom: 3px;
    color: #d4ad5c;
    font-family: Arial, sans-serif;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 2px;
}

.lp-objective h3 {
    margin: 0;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    font-weight: 400;
}

.lp-objective h3 em {
    color: #d4ad5c;
    font-style: italic;
}

.lp-objective p {
    margin: 5px 0 0;
    color: rgba(255, 255, 255, .68);
    font-size: 13px;
}


/* =====================================================
   NOTES
===================================================== */

.lp-note {
    display: none;
}


/* =====================================================
   CONTENT SECTION
===================================================== */

.lp-content-section {
    margin-top: 20px;
    padding: 50px 60px;
    background: #ffffff;
    border: 1px solid #e0e7df;
    border-radius: 26px;
    box-shadow: 0 15px 40px rgba(8, 75, 49, .05);
}


/* =====================================================
   LABEL
===================================================== */

.lp-content-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: #b18a3d;
    font-family: Arial, sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.lp-content-label span {
    width: 30px;
    height: 2px;
    background: #b18a3d;
}


/* =====================================================
   CONTENT GRID
===================================================== */

.lp-content-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 70px;
    align-items: start;
    padding-bottom: 38px;
    border-bottom: 1px solid #e5e9e3;
}

.lp-content-heading h2 {
    margin: 0;
    color: #084b31;
    font-size: 52px;
    font-weight: 400;
    line-height: 1.03;
    letter-spacing: 1px;
}

.lp-content-heading h2 em {
    display: block;
    color: #b18a3d;
    font-style: normal;
}

.lp-content-copy {
    padding-top: 8px;
}

.lp-content-copy p {
    margin: 0;
    color: #58645c;
    font-size: 16px;
    line-height: 1.85;
}


/* =====================================================
   VISION
===================================================== */

.lp-vision {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    padding: 38px 0;
}

.lp-vision-title {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lp-small-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #eef5ef;
    border-radius: 50%;
    color: #084b31;
    font-size: 19px;
}

.lp-vision-title span {
    display: block;
    margin-bottom: 5px;
    color: #b18a3d;
    font-family: Arial, sans-serif;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 2px;
}

.lp-vision-title h3 {
    margin: 0;
    color: #084b31;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    font-weight: 400;
}

.lp-vision-text p {
    margin: 0;
    color: #58645c;
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.85;
}


/* =====================================================
   ECOSYSTEM
===================================================== */

.lp-ecosystem {
    position: relative;
    display: grid;
    grid-template-columns: 300px 1fr;
    align-items: center;
    min-height: 370px;
    padding: 35px;
    background: #f3f8f3;
    border-radius: 22px;
    overflow: hidden;
}


/* =====================================================
   ECO HEADING
===================================================== */

.lp-eco-heading {
    position: relative;
    z-index: 5;
}

.lp-eco-heading span {
    display: block;
    margin-bottom: 12px;
    color: #b18a3d;
    font-family: Arial, sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2px;
}

.lp-eco-heading h3 {
    max-width: 240px;
    margin: 0;
    color: #084b31;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    font-weight: 400;
    line-height: 1.05;
}

.lp-eco-heading h3 em {
    color: #b18a3d;
    font-style: italic;
}


/* =====================================================
   ECO CONTENT
===================================================== */

.lp-eco-content {
    position: relative;
    height: 300px;
}


/* =====================================================
   CENTER
===================================================== */

.lp-eco-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 125px;
    height: 125px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #084b31;
    border: 2px solid #d4ad5c;
    border-radius: 50%;
    color: #ffffff;
    z-index: 10;
    box-shadow: 0 15px 35px rgba(8, 75, 49, .18);
}

.lp-eco-center-icon {
    font-size: 22px;
}

.lp-eco-center strong {
    font-family: Arial, sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
}


/* =====================================================
   ECO CARDS
===================================================== */

.lp-eco-card {
    position: absolute;
    width: 155px;
    min-height: 78px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 17px;
    background: #ffffff;
    border: 1px solid #dce6dd;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(8, 75, 49, .09);
    z-index: 12;
    transition: transform .3s ease;
}

.lp-eco-card:hover {
    transform: translateY(-5px);
}

.lp-eco-icon {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: #edf5ef;
    color: #084b31;
    font-size: 16px;
}

.lp-eco-card span {
    display: block;
    margin-bottom: 3px;
    color: #b18a3d;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
}

.lp-eco-card strong {
    color: #084b31;
    font-family: Arial, sans-serif;
    font-size: 10px;
    letter-spacing: 1.5px;
}


/* Parent */

.lp-parent {
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
}

.lp-parent:hover {
    transform: translateY(-50%) translateY(-5px);
}


/* Teacher */

.lp-teacher {
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
}

.lp-teacher:hover {
    transform: translateY(-50%) translateY(-5px);
}


/* Community */

.lp-community {
    left: 50%;
    bottom: -5px;
    transform: translateX(-50%);
}

.lp-community:hover {
    transform: translateX(-50%) translateY(-5px);
}


/* =====================================================
   ECO BADGE
===================================================== */

.lp-eco-badge {
    position: absolute;
    left: 50%;
    top: 7px;
    transform: translateX(-50%);
    z-index: 8;
    text-align: center;
}

.lp-eco-badge span {
    display: block;
    margin-bottom: 5px;
    color: #084b31;
    font-family: Arial, sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2px;
}

.lp-eco-badge strong {
    color: #b18a3d;
    font-family: Arial, sans-serif;
    font-size: 7px;
    letter-spacing: 2px;
}


/* =====================================================
   CONNECTION LINES
===================================================== */

.eco-line {
    position: absolute;
    z-index: 4;
    background: #cba354;
}

.eco-line-parent {
    left: 22%;
    top: 50%;
    width: 28%;
    height: 1px;
}

.eco-line-teacher {
    right: 22%;
    top: 50%;
    width: 28%;
    height: 1px;
}

.eco-line-community {
    left: 50%;
    top: 52%;
    width: 1px;
    height: 25%;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {
    .lp-framework {
        grid-template-columns: repeat(3, 1fr);
    }
    .lp-framework-intro {
        grid-column: 1 / -1;
        grid-row: auto;
        padding: 10px 0 20px;
    }
    .lp-framework-intro p {
        max-width: 650px;
    }
    .lp-objective {
        grid-column: 1 / -1;
    }
    .lp-content-grid {
        gap: 35px;
    }
    .lp-vision {
        grid-template-columns: 230px 1fr;
    }
    .lp-ecosystem {
        grid-template-columns: 230px 1fr;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {
    .learning-philosophy {
        padding: 45px 14px;
    }
    .lp-heading {
        margin-bottom: 30px;
    }
    .lp-heading h2 {
        font-size: 40px;
        letter-spacing: -1.5px;
    }
    .lp-eyebrow {
        font-size: 7px;
        letter-spacing: 1.8px;
    }
    .lp-eyebrow::before,
    .lp-eyebrow::after {
        width: 20px;
    }
    /* Framework */
    .lp-framework {
        display: flex;
        flex-direction: column;
        padding: 20px;
        border-radius: 20px;
    }
    .lp-framework-intro {
        padding: 5px 0 10px;
    }
    .lp-framework-intro h3 {
        font-size: 31px;
    }
    .lp-framework-intro p {
        font-size: 11px;
    }
    .lp-framework-card {
        min-height: 190px;
        width: 100%;
    }
    .lp-card-content h3 {
        font-size: 25px;
    }
    .lp-objective {
        padding: 18px;
        gap: 13px;
    }
    .lp-objective-icon {
        width: 43px;
        height: 43px;
    }
    .lp-objective h3 {
        font-size: 21px;
    }
    /* Content */
    .lp-content-section {
        margin-top: 14px;
        padding: 28px 20px;
        border-radius: 20px;
    }
    .lp-content-grid {
        display: block;
        padding-bottom: 28px;
    }
    .lp-content-heading {
        margin-bottom: 20px;
    }
    .lp-content-heading h2 {
        font-size: 32px;
    }
    .lp-content-copy p {
        font-size: 11px;
    }
    /* Vision */
    .lp-vision {
        display: block;
        padding: 28px 0;
    }
    .lp-vision-title {
        margin-bottom: 18px;
    }
    .lp-vision-text p {
        font-size: 11px;
    }
    /* Ecosystem */
    .lp-ecosystem {
        display: block;
        min-height: 650px;
        padding: 25px 15px;
    }
    .lp-eco-heading h3 {
        max-width: 100%;
        font-size: 29px;
    }
    .lp-eco-content {
        height: 480px;
        margin-top: 15px;
    }
    .lp-eco-center {
        width: 105px;
        height: 105px;
    }
    .lp-eco-card {
        width: 135px;
        min-height: 65px;
        padding: 8px 11px;
    }
    .lp-eco-icon {
        width: 35px;
        height: 35px;
        font-size: 13px;
    }
    .lp-eco-card strong {
        font-size: 8px;
    }
    .lp-parent {
        left: 0;
        top: 42%;
    }
    .lp-teacher {
        right: 0;
        top: 42%;
    }
    .lp-community {
        bottom: 5px;
    }
    .lp-eco-badge {
        top: 20px;
    }
    .lp-eco-badge span {
        font-size: 7px;
    }
    .eco-line-parent {
        left: 27%;
        width: 23%;
    }
    .eco-line-teacher {
        right: 27%;
        width: 23%;
    }
    .eco-line-community {
        top: 50%;
        height: 28%;
    }
}


/* =====================================================
   LEARNING PHILOSOPHY
===================================================== */

.learning-philosophy {
    width: 100%;
    padding: 35px 20px;
    background: #f6f8f3;
    overflow: hidden;
}

.lp-container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}


/* =====================================================
   MAIN HEADING
===================================================== */

.lp-heading {
    text-align: center;
    margin-bottom: 45px;
}

.lp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    color: #f4c400;
    font-family: Arial, sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.lp-eyebrow::before,
.lp-eyebrow::after {
    content: "";
    width: 35px;
    height: 1px;
    background: #f4c400;
}

.lp-heading h2 {
    margin: 0;
    color: #084b31;
    font-size: 52px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 1px;
}

.lp-heading h2 em {
    color: #f4c400;
    font-style: normal;
}

.lp-heading-line {
    width: 50px;
    height: 3px;
    margin: 20px auto 0;
    background: #f4c400;
}


/* =====================================================
   FRAMEWORK
===================================================== */

.lp-framework {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr repeat(3, 1fr);
    gap: 15px;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #e0e7df;
    border-radius: 26px;
    box-shadow: 0 15px 40px rgba(8, 75, 49, 0.06);
}


/* =====================================================
   FRAMEWORK INTRO
===================================================== */

.lp-framework-intro {
    padding: 20px 30px 20px 10px;
    grid-row: span 2;
}

.lp-framework-intro>span {
    display: block;
    margin-bottom: 12px;
    color: #f4c400;
    font-family: Arial, sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.lp-framework-intro h3 {
    margin: 0 0 18px;
    color: #084b31;
    font-size: 36px;
    font-weight: 400;
    line-height: 1;
}

.lp-framework-intro h3 em {
    color: #f4c400;
    font-style: normal;
}

.lp-framework-intro p {
    max-width: 360px;
    margin: 0;
    color: #657068;
    font-size: 16px;
    line-height: 1.75;
}


/* =====================================================
   FRAMEWORK CARDS
===================================================== */

.lp-framework-card {
    position: relative;
    min-height: 245px;
    display: flex;
    flex-direction: column;
    padding: 25px;
    background: #f1f7f2;
    border: 1px solid #dfe9e1;
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.lp-framework-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #f4c400;
}

.lp-framework-card:hover {
    transform: translateY(-6px);
    background: #084b31;
    box-shadow: 0 18px 35px rgba(8, 75, 49, 0.15);
}


/* =====================================================
   CARD NUMBER
===================================================== */

.lp-card-number {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #f4c400;
    font-family: Arial, sans-serif;
    font-size: 9px;
    font-weight: 700;
}


/* =====================================================
   CARD ICON
===================================================== */

.lp-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    background: #ffffff;
    border-radius: 14px;
    color: #084b31;
    font-size: 18px;
    transition: background 0.35s ease, color 0.35s ease;
}

.lp-framework-card:hover .lp-card-icon {
    background: #f4c400;
    color: #084b31;
}


/* =====================================================
   CARD CONTENT
===================================================== */

.lp-card-content {
    margin-top: auto;
}

.lp-card-content h3 {
    margin: 0 0 10px;
    color: #084b31;
    font-size: 31px;
    letter-spacing: 1px;
    ;
    font-weight: 400;
}

.lp-card-content p {
    margin: 0;
    color: #617068;
    font-family: Arial, sans-serif;
    font-size: 15px;
    line-height: 1.65;
}

.lp-framework-card:hover .lp-card-content h3,
.lp-framework-card:hover .lp-card-content p {
    color: #ffffff;
}


/* =====================================================
   CARD BOTTOM
===================================================== */

.lp-card-bottom {
    margin-top: 20px;
    padding-top: 12px;
    border-top: 1px solid #dce5dd;
}

.lp-card-bottom span {
    color: #000;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
}


/* =====================================================
   LEARNER OBJECTIVE
===================================================== */

.lp-objective {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 25px;
    background: #084b31;
    border-radius: 17px;
}

.lp-objective-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f4c400;
    border-radius: 50%;
    color: #f4c400;
    font-size: 19px;
}

.lp-objective span {
    display: block;
    margin-bottom: 3px;
    color: #f4c400;
    font-family: Arial, sans-serif;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 2px;
}

.lp-objective h3 {
    margin: 0;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-weight: 400;
}

.lp-objective h3 em {
    color: #f4c400;
    font-style: normal;
}

.lp-objective p {
    margin: 5px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
}


/* =====================================================
   CONTENT SECTION
===================================================== */

.lp-content-section {
    margin-top: 20px;
    padding: 50px 60px;
    background: #ffffff;
    border: 1px solid #e0e7df;
    border-radius: 26px;
    box-shadow: 0 15px 40px rgba(8, 75, 49, 0.05);
}


/* =====================================================
   CONTENT LABEL
===================================================== */

.lp-content-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: #f4c400;
    font-family: Arial, sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.lp-content-label span {
    width: 30px;
    height: 2px;
    background: #f4c400;
}


/* =====================================================
   CONTENT GRID
===================================================== */

.lp-content-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 70px;
    align-items: start;
    padding-bottom: 38px;
    border-bottom: 1px solid #e5e9e3;
}

.lp-content-heading h2 {
    margin: 0;
    color: #084b31;
    font-size: 45px;
    font-weight: 400;
    line-height: 1.03;
    letter-spacing: 1px;
}

.lp-content-heading h2 em {
    display: block;
    color: #f4c400;
    font-style: normal;
}

.lp-content-copy {
    padding-top: 8px;
}

.lp-content-copy p {
    margin: 0;
    color: #58645c;
    font-size: 16px;
    line-height: 1.85;
}


/* =====================================================
   VISION
===================================================== */

.lp-vision {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    padding: 38px 0;
}

.lp-vision-title {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lp-small-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #eef5ef;
    border-radius: 50%;
    color: #084b31;
    font-size: 19px;
}

.lp-vision-title span {
    display: block;
    margin-bottom: 5px;
    color: #f4c400;
    font-family: Arial, sans-serif;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 2px;
}

.lp-vision-title h3 {
    margin: 0;
    color: #084b31;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    font-weight: 400;
}

.lp-vision-text p {
    margin: 0;
    color: #58645c;
    font-size: 16px;
    line-height: 1.85;
}


/* =====================================================
   ECOSYSTEM
===================================================== */

.lp-ecosystem {
    position: relative;
    display: grid;
    grid-template-columns: 300px 1fr;
    align-items: center;
    min-height: 370px;
    padding: 35px;
    background: #f3f8f3;
    border-radius: 22px;
    overflow: hidden;
}


/* =====================================================
   ECO HEADING
===================================================== */

.lp-eco-heading {
    position: relative;
    z-index: 5;
}

.lp-eco-heading span {
    display: block;
    margin-bottom: 12px;
    color: #f4c400;
    font-family: Arial, sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2px;
}

.lp-eco-heading h3 {
    max-width: 240px;
    margin: 0;
    color: #084b31;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    font-weight: 400;
    line-height: 1.05;
}

.lp-eco-heading h3 em {
    color: #f4c400;
    font-style: italic;
}


/* =====================================================
   ECO CONTENT
===================================================== */

.lp-eco-content {
    position: relative;
    height: 300px;
}


/* =====================================================
   ECO CENTER
===================================================== */

.lp-eco-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 125px;
    height: 125px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #084b31;
    border: 2px solid #f4c400;
    border-radius: 50%;
    color: #ffffff;
    z-index: 10;
    box-shadow: 0 15px 35px rgba(8, 75, 49, .18);
}

.lp-eco-center-icon {
    font-size: 22px;
}

.lp-eco-center strong {
    font-family: Arial, sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
}


/* =====================================================
   ECO CARDS
===================================================== */

.lp-eco-card {
    position: absolute;
    width: 155px;
    min-height: 78px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 17px;
    background: #ffffff;
    border: 1px solid #dce6dd;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(8, 75, 49, .09);
    z-index: 12;
    transition: transform .3s ease;
}

.lp-eco-card:hover {
    transform: translateY(-5px);
}

.lp-eco-icon {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: #edf5ef;
    color: #084b31;
    font-size: 16px;
}

.lp-eco-card span {
    display: block;
    margin-bottom: 3px;
    color: #f4c400;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
}

.lp-eco-card strong {
    color: #084b31;
    font-family: Arial, sans-serif;
    font-size: 10px;
    letter-spacing: 1.5px;
}


/* =====================================================
   PARENT
===================================================== */

.lp-parent {
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
}

.lp-parent:hover {
    transform: translateY(-50%) translateY(-5px);
}


/* =====================================================
   TEACHER
===================================================== */

.lp-teacher {
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
}

.lp-teacher:hover {
    transform: translateY(-50%) translateY(-5px);
}


/* =====================================================
   COMMUNITY
===================================================== */

.lp-community {
    left: 50%;
    bottom: -5px;
    transform: translateX(-50%);
}

.lp-community:hover {
    transform: translateX(-50%) translateY(-5px);
}


/* =====================================================
   ECO BADGE
===================================================== */

.lp-eco-badge {
    position: absolute;
    left: 50%;
    top: 7px;
    transform: translateX(-50%);
    z-index: 8;
    text-align: center;
}

.lp-eco-badge span {
    display: block;
    margin-bottom: 5px;
    color: #084b31;
    font-family: Arial, sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2px;
}

.lp-eco-badge strong {
    color: #f4c400;
    font-family: Arial, sans-serif;
    font-size: 7px;
    letter-spacing: 2px;
}


/* =====================================================
   CONNECTION LINES
===================================================== */

.eco-line {
    position: absolute;
    z-index: 4;
    background: #f4c400;
}

.eco-line-parent {
    left: 22%;
    top: 50%;
    width: 28%;
    height: 1px;
}

.eco-line-teacher {
    right: 22%;
    top: 50%;
    width: 28%;
    height: 1px;
}

.eco-line-community {
    left: 50%;
    top: 52%;
    width: 1px;
    height: 25%;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {
    .lp-framework {
        grid-template-columns: repeat(3, 1fr);
    }
    .lp-framework-intro {
        grid-column: 1 / -1;
        grid-row: auto;
        padding: 10px 0 20px;
    }
    .lp-framework-intro p {
        max-width: 650px;
    }
    .lp-objective {
        grid-column: 1 / -1;
    }
    .lp-content-grid {
        gap: 35px;
    }
    .lp-vision {
        grid-template-columns: 230px 1fr;
    }
    .lp-ecosystem {
        grid-template-columns: 230px 1fr;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {
    .learning-philosophy {
        padding: 25px 14px;
    }
    .lp-heading {
        margin-bottom: 30px;
    }
    .lp-heading h2 {
        font-size: 40px;
        letter-spacing: -1.5px;
    }
    .lp-eyebrow {
        font-size: 7px;
        letter-spacing: 1.8px;
    }
    .lp-eyebrow::before,
    .lp-eyebrow::after {
        width: 20px;
    }
    /* FRAMEWORK */
    .lp-framework {
        display: flex;
        flex-direction: column;
        padding: 20px;
        border-radius: 20px;
    }
    .lp-framework-intro {
        padding: 5px 0 10px;
    }
    .lp-framework-intro h3 {
        font-size: 31px;
    }
    .lp-framework-intro p {
        font-size: 11px;
    }
    .lp-framework-card {
        min-height: 190px;
        width: 100%;
    }
    .lp-card-content h3 {
        font-size: 25px;
    }
    .lp-objective {
        padding: 18px;
        gap: 13px;
    }
    .lp-objective-icon {
        width: 43px;
        height: 43px;
    }
    .lp-objective h3 {
        font-size: 21px;
    }
    /* CONTENT */
    .lp-content-section {
        margin-top: 14px;
        padding: 28px 20px;
        border-radius: 20px;
    }
    .lp-content-grid {
        display: block;
        padding-bottom: 28px;
    }
    .lp-content-heading {
        margin-bottom: 20px;
    }
    .lp-content-heading h2 {
        font-size: 32px;
    }
    .lp-content-copy p {
        font-size: 11px;
    }
    /* VISION */
    .lp-vision {
        display: block;
        padding: 28px 0;
    }
    .lp-vision-title {
        margin-bottom: 18px;
    }
    .lp-vision-text p {
        font-size: 11px;
    }
    /* ECOSYSTEM */
    .lp-ecosystem {
        display: block;
        min-height: 650px;
        padding: 25px 15px;
    }
    .lp-eco-heading h3 {
        max-width: 100%;
        font-size: 29px;
    }
    .lp-eco-content {
        height: 480px;
        margin-top: 15px;
    }
    .lp-eco-center {
        width: 105px;
        height: 105px;
    }
    .lp-eco-card {
        width: 135px;
        min-height: 65px;
        padding: 8px 11px;
    }
    .lp-eco-icon {
        width: 35px;
        height: 35px;
        font-size: 13px;
    }
    .lp-eco-card strong {
        font-size: 8px;
    }
    .lp-parent {
        left: 0;
        top: 42%;
    }
    .lp-teacher {
        right: 0;
        top: 42%;
    }
    .lp-community {
        bottom: 5px;
    }
    .lp-eco-badge {
        top: 20px;
    }
    .lp-eco-badge span {
        font-size: 7px;
    }
    .eco-line-parent {
        left: 27%;
        width: 23%;
    }
    .eco-line-teacher {
        right: 27%;
        width: 23%;
    }
    .eco-line-community {
        top: 50%;
        height: 28%;
    }
}


/* Refined Primary School collaboration ecosystem */

.learning-philosophy .lp-vision {
    padding: 42px 0 48px;
    border-bottom: 1px solid #e2ebe4;
}

.learning-philosophy .lp-ecosystem {
    min-height: 390px;
    padding: 42px 38px;
    background: #ffffff;
    border: 1px solid #dce8df;
    border-radius: 28px;
    box-shadow: 0 18px 45px rgba(8, 75, 53, 0.08);
}

.learning-philosophy .lp-eco-heading {
    padding-left: 22px;
    border-left: 4px solid #f4c400;
}

.learning-philosophy .lp-eco-heading span {
    color: #f4c400;
}

.learning-philosophy .lp-eco-heading h3 {
    max-width: 270px;
    font-size: 40px;
    line-height: 1.02;
}

.learning-philosophy .lp-eco-heading h3 em {
    color: #f4c400;
    text-decoration: normal !important;
}

.learning-philosophy .lp-eco-content {
    height: 305px;
}

.learning-philosophy .lp-eco-center {
    width: 118px;
    height: 118px;
    background: #084b35;
    border: 3px solid #f4c400;
    box-shadow: 0 16px 35px rgba(8, 75, 53, 0.18);
}

.learning-philosophy .lp-eco-card {
    width: 175px;
    min-height: 82px;
    padding: 13px 18px;
    border-radius: 18px;
    box-shadow: 0 12px 26px rgba(8, 75, 53, 0.09);
}

.learning-philosophy .lp-eco-icon {
    width: 44px;
    height: 44px;
    background: #eef5ef;
    color: #084b35;
}

.learning-philosophy .eco-line {
    background: #f4c400;
}

@media (max-width: 700px) {
    .learning-philosophy .lp-vision {
        padding: 30px 0 34px;
    }
    .learning-philosophy .lp-ecosystem {
        min-height: 570px;
        padding: 30px 18px;
        border-radius: 22px;
    }
    .learning-philosophy .lp-eco-heading {
        padding-left: 16px;
    }
    .learning-philosophy .lp-eco-heading h3 {
        max-width: 100%;
        font-size: 31px;
    }
    .learning-philosophy .lp-eco-content {
        height: 405px;
        margin-top: 24px;
    }
    .learning-philosophy .lp-eco-card {
        width: 145px;
        min-height: 68px;
        padding: 9px 11px;
        border-radius: 16px;
    }
}


/* Completely redesigned collaboration section: partner cards, no network diagram. */

.learning-philosophy .lp-ecosystem {
    display: block;
    min-height: 0;
    padding: 58px 48px 52px;
    background: linear-gradient(135deg, #f7faf7 0%, #ffffff 100%);
    border: 1px solid #dce8df;
    border-radius: 30px;
    box-shadow: 0 20px 55px rgba(8, 75, 53, 0.09);
}

.learning-philosophy .lp-eco-heading {
    padding: 0;
    border: 0;
    text-align: center;
}


/* New bento-style collaboration layout */

.learning-philosophy .lp-ecosystem {
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
    gap: 26px;
    min-height: 0;
    padding: 28px;
    background: #ffffff;
    border: 1px solid #dce8df;
    border-radius: 30px;
    box-shadow: 0 20px 55px rgba(8, 75, 53, 0.08);
}

.learning-philosophy .lp-eco-heading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 38px 34px;
    border: 0;
    border-radius: 22px;
    background: #f2f8f3;
    text-align: left;
}

.learning-philosophy .lp-eco-heading::before {
    content: "01 / 04";
    display: block;
    margin-bottom: 34px;
    color: #f4c400;
    font: 700 10px/1 Arial, sans-serif;
    letter-spacing: 2px;
}

.learning-philosophy .lp-eco-heading span {
    margin-bottom: 13px;
    color: #087c45;
}

.learning-philosophy .lp-eco-heading h3 {
    max-width: 300px;
    font-size: 38px;
    line-height: 1.04;
}

.learning-philosophy .lp-eco-heading h3 em {
    color: #f4c400;
    font-style: normal;
}

.learning-philosophy .lp-eco-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    height: auto;
    margin: 0;
}

.learning-philosophy .lp-eco-center,
.learning-philosophy .lp-eco-card {
    position: relative;
    inset: auto;
    width: auto;
    height: auto;
    min-height: 170px;
    transform: none;
    border: 1px solid #dce8df;
    border-radius: 20px;
    background: rgba(247, 250, 247, 0.72);
    box-shadow: 0 10px 25px rgba(8, 75, 53, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.learning-philosophy .lp-eco-center {
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #084b35;
}

.learning-philosophy .lp-eco-center::before {
    content: "THE HEART OF LEARNING";
    position: static;
    color: #087c45;
    font: 700 8px/1 Arial, sans-serif;
    letter-spacing: 1.8px;
}

.learning-philosophy .lp-eco-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    padding: 24px;
    text-align: left;
}

.learning-philosophy .lp-eco-card:hover {
    transform: translateY(-5px);
    border-color: #f4c400;
    background: #ffffff;
}

.learning-philosophy .lp-eco-card .lp-eco-icon,
.learning-philosophy .lp-eco-center-icon {
    width: 48px;
    height: 48px;
    background: #f4c400;
    color: #084b35;
}

.learning-philosophy .lp-eco-card span {
    margin: 0;
    color: #f0b900;
}

.learning-philosophy .lp-eco-card strong {
    color: #084b35;
    font-size: 13px;
    letter-spacing: 1.6px;
}


/* Keep the Sunbeam Preschool heading compact with natural wrapping. */

.learning-philosophy .lp-content-heading h2 {
    font-size: 42px;
    line-height: 1.08;
    letter-spacing: 0;
}

.learning-philosophy .lp-content-heading h2 em {
    display: inline;
    font-style: normal;
}

.learning-philosophy .lp-parent {
    order: 2;
}

.learning-philosophy .lp-teacher {
    order: 3;
}

.learning-philosophy .lp-community {
    order: 4;
}

@media (max-width: 700px) {
    .learning-philosophy .lp-ecosystem {
        display: block;
        padding: 18px;
        border-radius: 22px;
    }
    .learning-philosophy .lp-eco-heading {
        padding: 28px 24px;
        margin-bottom: 16px;
    }
    .learning-philosophy .lp-eco-heading::before {
        margin-bottom: 22px;
    }
    .learning-philosophy .lp-eco-heading h3 {
        font-size: 32px;
    }
    .learning-philosophy .lp-eco-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .learning-philosophy .lp-eco-center,
    .learning-philosophy .lp-eco-card {
        min-height: 145px;
    }
    .learning-philosophy .lp-eco-card {
        padding: 16px;
    }
    .learning-philosophy .lp-content-heading h2 {
        font-size: 28px !important;
        line-height: 1.12 !important;
    }
}

.learning-philosophy .lp-eco-heading span {
    margin-bottom: 12px;
}

.learning-philosophy .lp-eco-heading h3 {
    max-width: none;
    font-size: 42px;
}

.learning-philosophy .lp-eco-heading h3 em {
    color: #f4c400;
    font-style: normal;
}

.learning-philosophy .lp-eco-content {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    height: auto;
    margin-top: 38px;
}

.learning-philosophy .lp-eco-center,
.learning-philosophy .lp-eco-card {
    position: relative;
    inset: auto;
    transform: none;
}

.learning-philosophy .lp-eco-center {
    order: 1;
    width: auto;
    height: 166px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #084b35;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.learning-philosophy .lp-eco-center::before {
    display: none;
}

.learning-philosophy .lp-parent {
    order: 2;
}

.learning-philosophy .lp-teacher {
    order: 3;
}

.learning-philosophy .lp-community {
    order: 4;
}

.learning-philosophy .lp-eco-card {
    width: auto;
    min-height: 166px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 22px 16px;
    border: 0;
    border-radius: 0;
    background: transparent;
    text-align: center;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.learning-philosophy .lp-eco-card:hover {
    transform: translateY(-6px);
    background: #f7faf7;
}

.learning-philosophy .lp-eco-card .lp-eco-icon {
    width: 52px;
    height: 52px;
    background: #f4c400;
    color: #084b35;
}

.learning-philosophy .lp-eco-center-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #f4c400;
    color: #084b35;
}

.learning-philosophy .lp-eco-center-icon,
.learning-philosophy .lp-eco-card .lp-eco-icon {
    border: 1px solid #f4c400;
    box-shadow: 0 8px 18px rgba(8, 75, 53, 0.08);
}

.learning-philosophy .lp-eco-card span {
    margin-bottom: 5px;
}

.learning-philosophy .lp-eco-card strong {
    font-size: 12px;
}

.learning-philosophy .lp-eco-badge,
.learning-philosophy .eco-line {
    display: none;
}

@media (max-width: 700px) {
    .learning-philosophy .lp-ecosystem {
        padding: 38px 18px;
        border-radius: 22px;
    }
    .learning-philosophy .lp-eco-heading h3 {
        font-size: 26px !important;
    }
    .learning-philosophy .lp-eco-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        margin-top: 28px;
    }
    .learning-philosophy .lp-eco-center,
    .learning-philosophy .lp-eco-card {
        min-height: 135px;
        height: 135px;
    }
}


/* Primary School mobile: keep the collaboration block clear of the fixed
   header and prevent its top content from being clipped while scrolling. */

@media (max-width: 700px) {
    .learning-philosophy {
        position: relative;
        z-index: 1;
        padding-top: 105px;
        overflow: visible;
    }
    .learning-philosophy .lp-ecosystem {
        position: relative;
        z-index: 1;
        overflow: visible;
    }
}


/* =========================================
   APPROACH EDITORIAL SECTION
========================================= */

.approach-editorial {
    width: 100%;
    padding: 40px 20px;
    background: #f6f8f3;
}

.approach-editorial-inner {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 55px 65px;
    background: #ffffff;
    border: 1px solid #e1e7df;
    border-radius: 24px;
    box-sizing: border-box;
}


/* =========================================
   HEADING
========================================= */

.ae-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 35px;
    border-bottom: 1px solid #e2e7e2;
}

.ae-heading span {
    display: block;
    margin-bottom: 12px;
    color: #f4c400;
    font-family: Arial, sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.ae-heading h2 {
    max-width: 650px;
    margin: 0;
    color: #084b31;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 4.5vw, 65px);
    font-weight: 400;
    line-height: .95;
    letter-spacing: -2px;
}

.ae-heading h2 em {
    display: block;
    color: #f4c400;
    font-style: italic;
}


/* =========================================
   INTRO
========================================= */

.ae-intro {
    max-width: 1120px;
    margin: 35px 0 0 115px;
}

.ae-intro p {
    margin: 0 0 14px;
    color: #000;
    font-size: 16px;
    line-height: 1.85;
}

.ae-intro p:last-child {
    margin-bottom: 0;
    color: #084b31;
    font-size: 16px;
    font-weight: 500;
}


/* =========================================
   MAIN PARAGRAPHS
========================================= */

.ae-main-content {
    display: grid;
    grid-template-columns: 115px 1fr;
    gap: 0;
    margin-top: 35px;
    padding: 35px 0;
    border-top: 1px solid #e2e7e2;
    border-bottom: 1px solid #e2e7e2;
}


/* =========================================
   SIDE LABEL
========================================= */

.ae-side-label {
    position: relative;
    padding-top: 3px;
}

.ae-side-label::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: #f4c400;
}

.ae-side-label span {
    display: block;
    padding-top: 15px;
    color: #084b31;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-weight: 400;
}

.ae-side-label b {
    display: block;
    margin-top: 5px;
    color: #9aa49d;
    font-family: Arial, sans-serif;
    font-size: 7px;
    line-height: 1.5;
    letter-spacing: 1.5px;
}


/* =========================================
   PARAGRAPHS
========================================= */

.ae-paragraphs {
    max-width: 1080px;
}

.ae-paragraphs p {
    position: relative;
    margin: 0;
    padding: 15px 0 15px 25px;
    color: #59655d;
    font-size: 15px;
    line-height: 1.8;
    border-bottom: 1px solid #edf0ec;
}

.ae-paragraphs p:first-child {
    padding-top: 0;
}

.ae-paragraphs p:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.ae-paragraphs p::before {
    content: "";
    position: absolute;
    left: 0;
    top: 24px;
    width: 6px;
    height: 6px;
    background: #f4c400;
    border-radius: 50%;
}

.ae-paragraphs p:first-child::before {
    top: 8px;
}

.ae-paragraphs strong {
    color: #084b31;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 16px;
    font-weight: 500;
}


/* =========================================
   CLOSING
========================================= */

.ae-closing {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 30px;
    align-items: center;
    margin-top: 35px;
    padding: 30px 35px;
    background: #084b31;
    border-radius: 18px;
}

.ae-closing-mark {
    width: 58px;
    height: 58px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid #f4c400;
    border-radius: 50%;
}

.ae-closing-mark span {
    width: 20px;
    height: 2px;
    background: #f4c400;
}

.ae-closing-mark span:nth-child(2) {
    width: 13px;
}

.ae-closing-mark span:nth-child(3) {
    width: 7px;
}

.ae-closing p {
    max-width: 1100px;
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {
    .approach-editorial-inner {
        padding: 45px;
    }
    .ae-heading {
        display: block;
    }
    .ae-heading h2 {
        margin-top: 10px;
    }
    .ae-intro {
        margin-left: 0;
    }
    .ae-main-content {
        grid-template-columns: 80px 1fr;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {
    .approach-editorial {
        padding: 40px 12px;
    }
    .approach-editorial-inner {
        padding: 30px 20px;
        border-radius: 18px;
    }
    .ae-heading {
        padding-bottom: 25px;
    }
    .ae-heading h2 {
        font-size: 42px;
        letter-spacing: -1.5px;
    }
    .ae-intro {
        margin-top: 25px;
    }
    .ae-intro p {
        font-size: 11px;
        line-height: 1.75;
    }
    .ae-main-content {
        display: block;
        margin-top: 25px;
        padding: 25px 0;
    }
    .ae-side-label {
        margin-bottom: 20px;
    }
    .ae-side-label span {
        font-size: 25px;
    }
    .ae-paragraphs p {
        padding: 14px 0 14px 20px;
        font-size: 11px;
        line-height: 1.75;
    }
    .ae-paragraphs strong {
        font-size: 14px;
    }
    .ae-closing {
        grid-template-columns: 50px 1fr;
        gap: 15px;
        padding: 20px 17px;
        border-radius: 15px;
    }
    .ae-closing-mark {
        width: 45px;
        height: 45px;
    }
    .ae-closing p {
        font-size: 10px;
        line-height: 1.7;
    }
}


/* Final approach heading alignment and type scale */

.approach-editorial .ae-heading {
    display: block;
    text-align: left;
}

.approach-editorial .ae-heading h2 {
    max-width: 900px;
    margin: 8px 0 0;
    font-size: clamp(38px, 3.4vw, 52px);
    line-height: 1.05;
    letter-spacing: -1px;
    text-align: left;
}

.approach-editorial .ae-heading h2 em {
    display: inline;
    font-style: normal;
}

@media (max-width: 650px) {
    .approach-editorial .ae-heading h2 {
        max-width: 100%;
        font-size: clamp(30px, 8.5vw, 38px);
        line-height: 1.1;
        letter-spacing: -.5px;
    }
}


/* Keep the activity list clean and left-aligned without the numbered side rail. */

.approach-editorial .ae-main-content {
    display: block;
}

.approach-editorial .ae-side-label {
    display: none;
}

.approach-editorial .ae-paragraphs {
    width: 100%;
    max-width: none;
}

.approach-editorial .ae-intro {
    margin-left: 0;
    max-width: none;
}


/* =========================================
   SENIOR SCHOOL PAGE
========================================= */

.senior-school-page {
    background: #f7faf8;
    color: #183d31;
}

.senior-page-hero {
    background: linear-gradient(90deg, rgba(2, 39, 24, .98), rgba(5, 74, 45, .88)), url('../images/sectionbg-1.png') center / cover no-repeat;
}

.senior-container {
    width: min(1320px, calc(100% - 64px));
    margin: 0 auto;
}

.senior-intro-section {
    padding: 92px 0 78px;
    background: #fff;
}

.senior-intro-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 80px;
    align-items: center;
}

.senior-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #f4c400;
    font: 700 11px/1.2 Arial, sans-serif;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.senior-eyebrow i {
    width: 38px;
    height: 2px;
    background: currentColor;
}

.senior-intro-copy h2,
.senior-section-heading h2,
.senior-cta-card h2 {
    margin: 20px 0 22px;
    color: #075c43;
    font-size: 52px;
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: 1px;
}

.senior-intro-copy h2 span,
.senior-section-heading h2 span,
.senior-cta-card h2 span {
    color: #f4c400;
}

.senior-line {
    width: 65px;
    height: 3px;
    margin-bottom: 25px;
    background: #f4c400;
}

.senior-intro-copy p {
    max-width: 650px;
    margin: 0 0 16px;
    color: #52615a;
    font-size: 16px;
    line-height: 1.8;
}

.senior-quote-card {
    position: relative;
    padding: 48px 45px 42px;
    border-radius: 28px 0 28px 0;
    background: linear-gradient(135deg, #075c43, #0b3d2e);
    color: #fff;
    box-shadow: 0 25px 60px rgba(7, 92, 67, .18);
}

.senior-quote-card::after {
    content: "";
    position: absolute;
    right: 28px;
    bottom: 25px;
    width: 95px;
    height: 95px;
    border: 1px solid rgba(244, 196, 0, .3);
    border-radius: 50%;
}

.senior-quote-mark {
    display: block;
    height: 44px;
    color: #f4c400;
    font: 90px/.7 Georgia, serif;
}

.senior-quote-card blockquote {
    position: relative;
    z-index: 1;
    margin: 18px 0 25px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 27px;
    line-height: 1.35;
}

.senior-quote-card cite {
    color: rgba(255, 255, 255, .68);
    font-size: 12px;
    font-style: normal;
    letter-spacing: 1px;
    line-height: 1.7;
    text-transform: uppercase;
}

.senior-practices-section {
    padding: 88px 0 105px;
    background: #f3f8f4;
}

.senior-section-heading {
    margin-bottom: 42px;
}

.senior-section-heading h2 {
    margin-bottom: 14px;
}

.senior-section-heading p {
    margin: 0;
    color: #607068;
    font-size: 16px;
    line-height: 1.7;
}

.senior-practices-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.senior-practice-card {
    position: relative;
    min-height: 270px;
    padding: 28px 27px 25px;
    overflow: hidden;
    border: 1px solid #dce9df;
    border-radius: 22px 0 22px 0;
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 16px 35px rgba(7, 92, 67, .07);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.senior-practice-card:hover {
    transform: translateY(-6px);
    border-color: #f4c400;
    box-shadow: 0 24px 48px rgba(7, 92, 67, .14);
}

.senior-practice-card>span {
    position: absolute;
    top: 24px;
    right: 24px;
    color: #a6b4aa;
    font: 700 11px Arial, sans-serif;
    letter-spacing: 2px;
}

.senior-practice-icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin-bottom: 22px;
    border-radius: 50%;
    background: #f4c400;
    color: #075c43;
    font-size: 22px;
}

.senior-practice-card h3 {
    margin: 0 0 12px;
    color: #075c43;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    font-weight: 500;
    line-height: 1.12;
}

.senior-practice-card p {
    margin: 0;
    color: #617068;
    font-size: 14px;
    line-height: 1.65;
}

.senior-practice-wide {
    grid-column: 1 / -1;
    min-height: 185px;
}

.senior-practice-wide p {
    max-width: 820px;
}

.senior-cta-section {
    padding: 0 0 100px;
    background: #f3f8f4;
}

.senior-cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: 42px 52px;
    border-radius: 26px 0 26px 0;
    background: #075c43;
}

.senior-cta-card h2 {
    max-width: 720px;
    margin: 15px 0 0;
    color: #fff;
    font-size: 40px;
}

.senior-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
    padding: 14px 18px 14px 24px;
    border-radius: 999px;
    background: #f4c400;
    color: #075c43;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.senior-cta-button i {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #075c43;
    color: #f4c400;
}

@media (max-width: 850px) {
    .senior-intro-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }
    .senior-practices-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .senior-container {
        width: min(100% - 32px, 560px);
    }
    .senior-intro-section {
        padding: 62px 0 58px;
    }
    .senior-intro-copy h2,
    .senior-section-heading h2 {
        font-size: 35px !important;
    }
    .senior-intro-copy p,
    .senior-section-heading p {
        font-size: 14px;
    }
    .senior-quote-card {
        padding: 34px 25px 30px;
    }
    .senior-quote-card blockquote {
        font-size: 21px;
    }
    .senior-practices-section {
        padding: 30px 0 30px;
    }
    .senior-practices-grid {
        grid-template-columns: 1fr;
    }
    .senior-practice-wide {
        grid-column: auto;
    }
    .senior-cta-section {
        padding-bottom: 70px;
    }
    .senior-cta-card {
        display: block;
        padding: 30px 25px;
    }
    .senior-cta-card h2 {
        font-size: 31px;
    }
    .senior-cta-button {
        margin-top: 24px;
    }
}


/* Keep the Senior School approach heading on one clean desktop line. */

.senior-school-page .senior-section-heading h2 {
    max-width: none;
    white-space: nowrap;
    font-size: clamp(34px, 3.45vw, 52px);
}

@media (min-width: 768px) {
    .senior-page-hero .simple-breadcrumb-wrap {
        transform: translateX(80px);
    }
}

@media (max-width: 767px) {
    .main-header .header-container {
        justify-content: flex-start;
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
}

@media (max-width: 700px) {
    .senior-school-page .senior-section-heading h2 {
        white-space: normal;
        font-size: 35px;
    }
}


/* =====================================================
   MIDDLE SCHOOL NEW DESIGN
===================================================== */

.middle-school-new {
    width: 100%;
    padding: 65px 20px;
    background: #fff;
    overflow: hidden;
}

.ms-new-container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}


/* =====================================================
   TOP SECTION
===================================================== */

.ms-new-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px;
    align-items: end;
    padding: 10px 35px 38px;
    border-bottom: 1px solid #dfe6df;
}

.ms-new-title span {
    display: block;
    margin-bottom: 12px;
    color: #f4c400;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.ms-new-title h2 {
    margin: 0;
    color: #084b31;
    font-size: 52px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -1.5px;
}

.ms-yellow-line {
    width: 52px;
    height: 4px;
    margin-top: 20px;
    background: #f4c400;
}

.ms-new-intro {
    width: 100%;
    max-width: none;
}

.ms-new-intro p {
    margin: 0 0 15px;
    color: #59655e;
    font-size: 16px;
    line-height: 1.85;
}

.ms-new-intro p:last-child {
    margin-bottom: 0;
}


/* =====================================================
   FOUNDATION FEATURE
===================================================== */

.ms-feature {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 0;
    margin-top: 20px;
    background: #ffffff;
    border: 1px solid #dfe6df;
    border-radius: 24px;
    overflow: hidden;
}


/* CONTENT */

.ms-feature-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 55px 55px 55px 60px;
}

.ms-small-label {
    display: inline-block;
    width: fit-content;
    margin-bottom: 17px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f4c400;
    color: #084b31;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2px;
}

.ms-feature-content h3 {
    max-width: 500px;
    margin: 0 0 25px;
    color: #084b31;
    font-size: 38px;
    font-weight: 500;
    line-height: 1.05;
}

.ms-feature-content h3 span {
    display: block;
    color: #f4c400;
}

.ms-feature-content p {
    max-width: 620px;
    margin: 0 0 17px;
    color: #59655e;
    font-size: 16px;
    line-height: 1.85;
}

.ms-feature-content p:last-child {
    margin-bottom: 0;
}


/* IMAGE */

.ms-feature-image {
    position: relative;
    min-height: 470px;
    overflow: hidden;
}

.ms-feature-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .6s ease;
}

.ms-feature-image:hover img {
    transform: scale(1.04);
}

.ms-feature-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( 180deg, transparent 55%, rgba(0, 0, 0, .38));
}

.ms-image-caption {
    position: absolute;
    left: 25px;
    bottom: 22px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    background: #ffffff;
    color: #084b31;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.ms-image-caption span {
    width: 22px;
    height: 3px;
    background: #f4c400;
}


/* =====================================================
   PEDAGOGY
===================================================== */

.ms-pedagogy {
    display: grid;
    grid-template-columns: .86fr 1.14fr;
    margin-top: 20px;
    min-height: 390px;
    background: #084b31;
    border-radius: 24px;
    overflow: hidden;
}

.ms-pedagogy-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 55px 50px 60px;
}

.ms-pedagogy-label {
    display: block;
    margin-bottom: 12px;
    color: #f4c400;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.ms-pedagogy-text h3 {
    margin: 0;
    color: #ffffff;
    font-size: 42px;
    font-weight: 500;
    line-height: 1;
}

.ms-heading-line {
    width: 45px;
    height: 3px;
    margin: 18px 0 25px;
    background: #f4c400;
}

.ms-pedagogy-text p {
    max-width: 590px;
    margin: 0;
    color: rgba(255, 255, 255, .76);
    font-size: 16px;
    line-height: 1.9;
}

.ms-pedagogy-image {
    position: relative;
    min-height: 390px;
    overflow: hidden;
}

.ms-pedagogy-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .6s ease;
}

.ms-pedagogy-image:hover img {
    transform: scale(1.04);
}


/* =====================================================
   ASSESSMENT
===================================================== */

.ms-assessment {
    display: grid;
    grid-template-columns: .6fr 1.4fr;
    gap: 65px;
    margin-top: 20px;
    padding: 50px 60px;
    background: #ffffff;
    border: 1px solid #dfe6df;
    border-radius: 24px;
}

.ms-assessment-heading {
    padding-right: 40px;
    border-right: 1px solid #e0e6e0;
}

.ms-assessment-label {
    display: block;
    margin-bottom: 15px;
    color: #f4c400;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.ms-assessment-heading h3 {
    margin: 0;
    color: #084b31;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.02;
}

.ms-assessment-heading h3 strong {
    display: block;
    color: #f4c400;
    font-weight: 500;
}

.ms-assessment-line {
    width: 45px;
    height: 3px;
    margin-top: 22px;
    background: #f4c400;
}

.ms-assessment-content {
    max-width: 1050px;
}

.ms-assessment-content p {
    margin: 0 0 18px;
    color: #59655e;
    font-size: 16px;
    line-height: 1.9;
}

.ms-assessment-content p:last-child {
    margin-bottom: 0;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1050px) {
    .ms-new-top {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .ms-feature {
        grid-template-columns: 1fr;
    }
    .ms-feature-image {
        min-height: 400px;
    }
    .ms-pedagogy {
        grid-template-columns: 1fr;
    }
    .ms-pedagogy-image {
        min-height: 350px;
    }
    .ms-assessment {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .ms-assessment-heading {
        padding-right: 0;
        padding-bottom: 25px;
        border-right: none;
        border-bottom: 1px solid #e0e6e0;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {
    .middle-school-new {
        padding: 45px 12px;
    }
    .ms-new-top {
        padding: 5px 12px 28px;
        gap: 22px;
    }
    .ms-new-title h2 {
        font-size: 52px;
    }
    .ms-new-intro p {
        font-size: 11px;
        line-height: 1.75;
    }
    /* FEATURE */
    .ms-feature {
        margin-top: 14px;
        border-radius: 18px;
    }
    .ms-feature-content {
        padding: 32px 22px;
    }
    .ms-feature-content h3 {
        font-size: 31px;
        margin-bottom: 20px;
    }
    .ms-feature-content p {
        font-size: 10px;
        line-height: 1.8;
    }
    .ms-feature-image {
        min-height: 260px;
    }
    .ms-image-caption {
        left: 15px;
        bottom: 15px;
        font-size: 7px;
    }
    /* PEDAGOGY */
    .ms-pedagogy {
        margin-top: 14px;
        border-radius: 18px;
    }
    .ms-pedagogy-text {
        padding: 32px 22px;
    }
    .ms-pedagogy-text h3 {
        font-size: 35px;
    }
    .ms-pedagogy-text p {
        font-size: 10px;
        line-height: 1.8;
    }
    .ms-pedagogy-image {
        min-height: 260px;
    }
    /* ASSESSMENT */
    .ms-assessment {
        margin-top: 14px;
        padding: 30px 22px;
        border-radius: 18px;
    }
    .ms-assessment-heading h3 {
        font-size: 34px;
    }
    .ms-assessment-content p {
        font-size: 10px;
        line-height: 1.8;
    }
    /* Keep the assessment title on one mobile line. */
    .middle-school-new .ms-assessment-heading h3 {
        font-size: 25px;
        letter-spacing: -0.5px;
        white-space: nowrap;
    }
    .middle-school-new .ms-assessment-heading h3 strong {
        display: inline;
    }
}


/* Middle School copy: full-width text with the requested 16px reading size. */

.middle-school-new .ms-new-top {
    grid-template-columns: 1fr;
}

.middle-school-new .ms-new-intro,
.middle-school-new .ms-new-intro p {
    width: 100%;
    max-width: none;
}

.middle-school-new .ms-new-intro p,
.middle-school-new .ms-feature-content p,
.middle-school-new .ms-pedagogy-text p,
.middle-school-new .ms-assessment-content p {
    font-size: 16px !important;
    line-height: 1.75;
}


/* =====================================================
   OLYMPIAD SECTION
===================================================== */

.olympiad-section {
    width: 100%;
    padding: 65px 20px;
    background: #f5f7f2;
    overflow: hidden;
}

.olympiad-wrap {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #dce5dd;
    border-radius: 24px;
    overflow: hidden;
}


/* =====================================================
   TOP AREA
===================================================== */

.olympiad-top {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    min-height: 450px;
}


/* =====================================================
   COPY
===================================================== */

.olympiad-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 55px 55px 55px 65px;
}

.olympiad-label {
    display: block;
    margin-bottom: 16px;
    color: #f4c400;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.olympiad-copy h2 {
    max-width: 570px;
    margin: 0;
    color: #084b31;
    font-size: 52px;
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: -1.5px;
}

.olympiad-yellow-line {
    width: 52px;
    height: 4px;
    margin: 20px 0 25px;
    background: #f4c400;
}

.olympiad-copy p {
    max-width: 620px;
    margin: 0;
    color: #56635b;
    font-size: 16px;
    line-height: 1.85;
}


/* =====================================================
   IMAGE
===================================================== */

.olympiad-image {
    position: relative;
    min-height: 450px;
    overflow: hidden;
}

.olympiad-image::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: #f4c400;
    z-index: 3;
}

.olympiad-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .6s ease;
}

.olympiad-image:hover img {
    transform: scale(1.04);
}


/* =====================================================
   CONTENT AREA
===================================================== */

.olympiad-content {
    padding: 10px 65px 35px;
}


/* =====================================================
   PARAGRAPHS
===================================================== */

.olympiad-content p {
    position: relative;
    margin: 0;
    padding: 23px 25px 23px 32px;
    color: #59655d;
    font-size: 16px;
    line-height: 1.85;
    border-top: 1px solid #e4e9e4;
}

.olympiad-content p::before {
    content: "";
    position: absolute;
    left: 0;
    top: 29px;
    width: 4px;
    height: 45px;
    background: #f4c400;
    border-radius: 2px;
}

.olympiad-content p:first-child {
    border-top: none;
}


/* =====================================================
   HOVER EFFECT
===================================================== */

.olympiad-content p {
    transition: background .3s ease, padding-left .3s ease;
}

.olympiad-content p:hover {
    background: #f7faf6;
    padding-left: 38px;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {
    .olympiad-top {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .olympiad-copy {
        padding: 45px;
    }
    .olympiad-image {
        min-height: 400px;
    }
    .olympiad-content {
        padding: 10px 45px 30px;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {
    .olympiad-section {
        padding: 40px 12px;
    }
    .olympiad-wrap {
        border-radius: 18px;
    }
    .olympiad-copy {
        padding: 32px 22px;
    }
    .olympiad-label {
        font-size: 7px;
        letter-spacing: 2px;
    }
    .olympiad-copy h2 {
        font-size: 52px;
        line-height: .98;
        letter-spacing: -1.5px;
    }
    .olympiad-copy p {
        font-size: 11px;
        line-height: 1.75;
    }
    .olympiad-image {
        min-height: 270px;
    }
    .olympiad-content {
        padding: 5px 20px 20px;
    }
    .olympiad-content p {
        padding: 18px 0 18px 20px;
        font-size: 10px;
        line-height: 1.8;
    }
    .olympiad-content p::before {
        top: 23px;
        width: 3px;
        height: 28px;
    }
    .olympiad-content p:hover {
        padding-left: 20px;
    }
}


/* =========================================
   STAR ACHIEVERS PAGE
========================================= */

.achievers-page {
    background: #f7faf8;
    color: #183d31
}

.achievers-hero {
    background: linear-gradient(90deg, rgba(2, 39, 24, .98), rgba(5, 74, 45, .88)), url('../images/sectionbg-1.png') center/cover no-repeat
}

.achievers-container {
    width: min(1320px, calc(100% - 64px));
    margin: 0 auto
}

.achievers-intro {
    padding: 30px 0 30px;
    background: #fff
}

.achievers-intro-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 85px;
    align-items: center
}

.achievers-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #f4c400;
    font: 700 11px/1.2 Arial, sans-serif;
    letter-spacing: 3px;
    text-transform: uppercase
}

.achievers-eyebrow i {
    width: 38px;
    height: 2px;
    background: currentColor
}

.achievers-intro-copy h2,
.achievers-section-head h2 {
    margin: 20px 0 22px;
    color: #075c43;
    font-weight: 500;
    font-size: 52px;
    letter-spacing: 1px
}

.achievers-intro-copy h2 span,
.achievers-section-head h2 span {
    color: #f4c400
}

.achievers-line {
    width: 65px;
    height: 3px;
    margin-bottom: 25px;
    background: #f4c400
}

.achievers-intro-copy p,
.achievers-closing p {
    margin: 0 0 16px;
    color: #52615a;
    font-size: 16px;
    line-height: 1.8
}

.achievers-intro-visual {
    position: relative;
    min-height: 400px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 32px 0;
    background: radial-gradient(circle, #24855f, #075c43 46%, #043b2d);
    box-shadow: 0 30px 70px rgba(7, 92, 67, .2)
}

.achievers-medal {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 190px;
    height: 190px;
    border: 2px solid #f4c400;
    border-radius: 50%;
    color: #f4c400;
    box-shadow: 0 0 0 13px rgba(244, 196, 0, .1), 0 0 0 30px rgba(244, 196, 0, .06)
}

.achievers-medal i {
    font-size: 54px
}

.achievers-medal strong {
    margin-top: -20px;
    color: #fff;
    font: 600 22px Georgia, serif;
    letter-spacing: 3px
}

.achievers-medal span {
    margin-top: -28px;
    font: 700 9px Arial, sans-serif;
    letter-spacing: 3px
}

.achievers-orbit {
    position: absolute;
    border: 1px solid rgba(244, 196, 0, .32);
    border-radius: 50%
}

.orbit-one {
    width: 330px;
    height: 150px;
    transform: rotate(-25deg)
}

.orbit-two {
    width: 410px;
    height: 230px;
    transform: rotate(35deg)
}

.achievers-results {
    padding: 40px 0 40px;
    background: #f3f8f4
}

.achievers-section-head {
    margin-bottom: 34px
}

.achievers-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px
}

.achiever-tab {
    padding: 13px 19px;
    border: 1px solid #d4e4d8;
    border-radius: 999px;
    background: #fff;
    color: #075c43;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer
}

.achiever-tab.active,
.achiever-tab:hover {
    border-color: #075c43;
    background: #075c43;
    color: #fff
}

.achiever-panel {
    display: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px
}

.achiever-panel.active {
    display: grid
}

.achiever-card {
    position: relative;
    min-height: 145px;
    padding: 25px 22px;
    border: 1px solid #dce9df;
    border-radius: 20px 0;
    background: #fff;
    box-shadow: 0 14px 32px rgba(7, 92, 67, .06)
}

.achiever-card>span {
    color: #a7b5aa;
    font: 700 10px Arial, sans-serif;
    letter-spacing: 2px
}

.achiever-card h3 {
    margin: 22px 0 12px;
    color: #075c43;
    font: 500 22px/1.1 Georgia, serif
}

.achiever-card strong {
    color: #e0aa00;
    font: 600 29px Georgia, serif
}

.achiever-card.featured {
    background: #075c43;
    border-color: #075c43
}

.achiever-card.featured>span {
    color: rgba(255, 255, 255, .55)
}

.achiever-card.featured h3 {
    color: #fff
}

.achiever-card.featured strong {
    color: #f4c400
}

.achievers-closing {
    padding: 82px 0 100px;
    background: #fff;
    text-align: center
}

.achievers-closing .achievers-container {}

.achievers-closing p {
    margin: 0 auto 22px
}

.achievers-closing blockquote {
    margin: 28px auto;
    color: #075c43;
    font-weight: 500;
    font-size: 17px;
}

.achievers-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
}

.achievers-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 23px;
    border-radius: 999px;
    background: #075c43;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
}

.achievers-actions a:last-child {
    background: #f4c400;
    color: #075c43;
}

@media(max-width:850px) {
    .achievers-intro-grid {
        grid-template-columns: 1fr;
        gap: 45px
    }
    .achiever-panel.active {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
}

@media(max-width:600px) {
    .achievers-container {
        width: min(100% - 32px, 560px)
    }
    .achievers-intro {
        padding: 65px 0
    }
    .achievers-intro-copy h2,
    .achievers-section-head h2 {
        font-size: 36px
    }
    .achievers-intro-copy p,
    .achievers-closing p {
        font-size: 16px
    }
    .achievers-intro-visual {
        width: 100%;
        min-height: 0;
        height: clamp(310px, 82vw, 360px);
        border-radius: 24px 0;
        overflow: hidden;
    }
    .achievers-medal {
        width: 142px;
        height: 142px;
    }
    .achievers-medal i {
        font-size: 40px
    }
    .achievers-results {
        padding: 35px 0 35px
    }
    .achievers-intro-visual .orbit-one {
        width: 285px;
        height: 130px;
    }
    .achievers-intro-visual .orbit-two {
        width: 320px;
        height: 175px;
    }
    .achievers-medal img {
        width: 125px;
    }
    .achiever-panel.active {
        grid-template-columns: 1fr
    }
    .achiever-card {
        min-height: 125px
    }
    .achievers-closing {
        padding: 20px 0 20px
    }
}


/* =====================================================
   ACADEMIC SUPPORT
===================================================== */

.academic-support {
    width: 100%;
    padding: 65px 20px;
    background: #f5f7f2;
    overflow: hidden;
}

.academic-support-inner {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}


/* =====================================================
   INTRO
===================================================== */

.academic-support-intro {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 80px;
    align-items: center;
    padding: 45px 55px;
    background: #ffffff;
    border: 1px solid #dfe7df;
    border-radius: 24px;
}

.academic-support-intro-title span {
    display: block;
    margin-bottom: 13px;
    color: #f4c400;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.academic-support-intro-title h2 {
    margin: 0;
    color: #084b31;
    font-size: 54px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -1.5px;
}

.academic-support-intro-title h2 b {
    display: block;
    color: #f4c400;
    font-weight: 500;
}

.academic-yellow-line {
    width: 50px;
    height: 4px;
    margin-top: 20px;
    background: #f4c400;
}

.academic-support-intro-text {
    max-width: 950px;
}

.academic-support-intro-text p {
    margin: 0;
    color: #59655d;
    font-size: 14px;
    line-height: 1.9;
}


/* College Counselling lower block: copy below the heading. */

.college-counselling .cc-lower {
    display: block;
}

.college-counselling .cc-lower-heading {
    padding-right: 0;
    padding-bottom: 24px;
    border-right: 0;
    border-bottom: 0;
}

.college-counselling .cc-lower-text {
    width: 100%;
    max-width: none;
    margin-top: 4px;
}


/* Academic Support intro: heading first, paragraph content underneath. */

.academic-support .academic-support-intro {
    display: block;
}

.academic-support .academic-support-intro-text {
    width: 100%;
    max-width: none;
    margin-top: 30px;
}

.academic-support .academic-support-intro-text p {
    font-size: 16px;
    line-height: 1.75;
}


/* =====================================================
   CONTENT GRID
===================================================== */

.academic-support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}


/* =====================================================
   SUPPORT BLOCK
===================================================== */

.academic-support-block {
    position: relative;
    min-height: 390px;
    padding: 45px 50px;
    background: #ffffff;
    border: 1px solid #dfe7df;
    border-radius: 24px;
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease;
}

.academic-support-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(8, 75, 49, .09);
}

.academic-support-block::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: #f4c400;
}


/* =====================================================
   BLOCK TOP
===================================================== */

.academic-support-block-top {
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid #e2e8e2;
}

.academic-support-block-top span {
    display: block;
    margin-bottom: 12px;
    color: #f4c400;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.academic-support-block-top h3 {
    margin: 0;
    color: #084b31;
    font-size: 35px;
    font-weight: 500;
    line-height: 1.05;
}


/* =====================================================
   PARAGRAPH
===================================================== */

.academic-support-block-content {
    max-width: 650px;
}

.academic-support-block-content p {
    margin: 0;
    color: #59655d;
    font-size: 16px;
    line-height: 1.9;
}


/* =====================================================
   DARK BLOCK
===================================================== */

.academic-support-dark {
    background: #084b31;
    border-color: #084b31;
}

.academic-support-dark::before {
    background: #f4c400;
}

.academic-support-dark .academic-support-block-top {
    border-color: rgba(255, 255, 255, .16);
}

.academic-support-dark .academic-support-block-top h3 {
    color: #ffffff;
}

.academic-support-dark .academic-support-block-content p {
    color: rgba(255, 255, 255, .76);
}


/* =====================================================
   DECORATIVE CORNER
===================================================== */

.academic-support-block::after {
    content: "";
    position: absolute;
    right: -35px;
    bottom: -35px;
    width: 100px;
    height: 100px;
    border: 1px solid #f4c400;
    border-radius: 50%;
    opacity: .25;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {
    .academic-support-intro {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px;
    }
    .academic-support-grid {
        grid-template-columns: 1fr;
    }
    .academic-support-block {
        min-height: auto;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {
    .academic-support {
        padding: 40px 12px;
    }
    .academic-support-intro {
        padding: 30px 22px;
        border-radius: 18px;
    }
    .academic-support-intro-title h2 {
        font-size: 52px;
        line-height: .98;
    }
    .academic-support-intro-text p {
        font-size: 11px;
        line-height: 1.8;
    }
    .academic-support-grid {
        gap: 14px;
        margin-top: 14px;
    }
    .academic-support-block {
        padding: 32px 25px;
        border-radius: 18px;
    }
    .academic-support-block-top {
        margin-bottom: 22px;
        padding-bottom: 20px;
    }
    .academic-support-block-top h3 {
        font-size: 30px;
    }
    .academic-support-block-content p {
        font-size: 10px;
        line-height: 1.8;
    }
}

.achievers-medal img {
    width: 92px;
    height: auto;
    object-fit: contain;
    margin-bottom: -8px;
}

.achievers-medal img {
    width: 135px;
    margin: 0;
}

.achievers-medal img {
    width: 170px;
}

@media (max-width: 600px) {
    .achievers-medal img {
        width: 105px !important;
        max-width: 105px;
        height: auto;
        object-fit: contain;
        image-rendering: auto;
    }
}

.achiever-panel.active {
    margin-top: 20px;
}

.achievers-results .achievers-tabs {
    display: flex !important;
    width: 100% !important;
    max-width: none !important;
    position: static !important;
    margin: 0 0 28px !important;
    transform: none !important;
    justify-content: center !important;
    gap: 14px !important;
}

@media (max-width: 600px) {
    .achievers-results .achievers-tabs {
        width: 100% !important;
        max-width: 100%;
    }
}

.achievers-results .achievers-section-head {
    text-align: center;
}

.achievers-results .achievers-section-head .achievers-eyebrow {
    justify-content: center;
}

.achievers-medal span {
    margin-top: 8px;
}


/* =====================================================
   FACILITIES SECTION
===================================================== */

.facilities-section {
    width: 100%;
    padding: 65px 20px;
    background: #ffffff;
    overflow: hidden;
}

.facilities-container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}


/* =====================================================
   MAIN HEADING
===================================================== */

.facilities-heading {
    text-align: center;
    margin-bottom: 38px;
}

.facilities-heading h2 {
    margin: 0;
    color: #084b31;
    font-size: 52px;
    font-weight: 500;
    line-height: 1;
}

.facilities-heading span {
    display: block;
    width: 80px;
    height: 2px;
    margin: 17px auto 0;
    background: #084b31;
}


/* =====================================================
   SLIDER
===================================================== */

.facilities-slider {
    width: 100%;
    overflow: hidden;
    border: 1px solid #d9e2db;
    border-radius: 20px;
    background: #f6f9f6;
    transition: height .75s cubic-bezier(.22, .61, .36, 1);
}


/* =====================================================
   TRACK
===================================================== */

.facilities-track {
    display: flex;
    width: 100%;
    animation: none;
    will-change: transform;
    transition: transform .75s cubic-bezier(.22, .61, .36, 1);
}

.facilities-slider:hover .facilities-track {
    animation-play-state: paused;
}


/* =====================================================
   SINGLE SLIDE
===================================================== */

.facility-slide {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 455px;
    flex-shrink: 0;
    background: #ffffff;
}


/* =====================================================
   CONTENT
===================================================== */

.facility-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 50px 80px;
    overflow: hidden;
}


/* decorative circle */

.facility-content::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    left: -130px;
    bottom: -130px;
    border: 1px solid #dce8df;
    border-radius: 50%;
}

.facility-content::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    right: -75px;
    top: -75px;
    background: #f7faf7;
    border-radius: 50%;
}


/* =====================================================
   LABEL
===================================================== */

.facility-label {
    position: relative;
    z-index: 2;
    margin-bottom: 17px;
    color: #f4c400;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2.5px;
}


/* =====================================================
   INNER HEADING
===================================================== */

.facility-content h3 {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #111111;
    font-size: 45px;
    font-weight: 500;
    line-height: 1.05;
}

.facility-content h3 span {
    color: #084b31;
}


/* =====================================================
   YELLOW LINE
===================================================== */

.facility-line {
    position: relative;
    z-index: 2;
    width: 65px;
    height: 3px;
    margin: 20px 0 25px;
    background: #f4c400;
}


/* =====================================================
   DESCRIPTION
===================================================== */

.facility-content p {
    position: relative;
    z-index: 2;
    max-width: 570px;
    margin: 0;
    color: #59655d;
    font-size: 16px;
    line-height: 1.85;
}


/* =====================================================
   IMAGE
===================================================== */

.facility-image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 455px;
    overflow: hidden;
}

.facility-image::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: #f4c400;
}

.facility-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .6s ease;
}

.facility-slide:hover .facility-image img {
    transform: scale(1.04);
}


/* =====================================================
   CONTINUOUS ANIMATION
===================================================== */

@keyframes facilitiesMove {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


/* =====================================================
   DOTS
===================================================== */

.facility-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
    margin-top: 22px;
}

.facility-dots span {
    width: 7px;
    height: 7px;
    display: block;
    border-radius: 50%;
    background: #c9d5cc;
}

.facility-dots span.active {
    width: 9px;
    height: 9px;
    background: #084b31;
    box-shadow: 0 0 0 4px #e4eee7;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {
    .facility-slide {
        width: 100vw;
        grid-template-columns: 1fr 1fr;
    }
    .facility-content {
        padding: 40px;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {
    .facilities-track {
        align-items: flex-start;
    }
    .facilities-section {
        padding: 45px 12px;
    }
    .facilities-heading {
        margin-bottom: 25px;
    }
    .facilities-heading h2 {
        font-size: 52px;
    }
    .facility-slide {
        width: calc(100vw - 24px);
        display: flex;
        flex-direction: column;
        height: auto;
        align-self: flex-start;
        min-height: auto;
    }
    .facility-content {
        min-height: 300px;
        padding: 35px 22px;
    }
    .facility-content h3 {
        font-size: 35px;
    }
    .facility-content p {
        max-width: 430px;
        font-size: 10px;
        line-height: 1.75;
    }
    .facility-image {
        min-height: 270px;
        height: 270px;
    }
    .facility-line {
        margin: 15px 0 20px;
    }
    .facility-dots {
        margin-top: 17px;
    }
}

.facilities-slider .facility-slide {
    width: 100%;
}


/* =====================================================
   COLLEGE COUNSELLING
===================================================== */

.college-counselling {
    width: 100%;
    padding: 65px 20px;
    background: #f5f7f2;
    overflow: hidden;
}

.cc-container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}


/* =====================================================
   HEADER
===================================================== */

.cc-header {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 75px;
    align-items: end;
    padding: 10px 35px 40px;
    border-bottom: 1px solid #dfe6df;
}

.college-counselling .cc-header {
    display: block;
}


/* =====================================================
   TITLE
===================================================== */

.cc-title span {
    display: block;
    margin-bottom: 15px;
    color: #f4c400;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.cc-title h2 {
    margin: 0;
    color: #084b31;
    font-size: 52px;
    font-weight: 500;
    line-height: .98;
    letter-spacing: 1px;
}

.cc-title h2 b {
    display: block;
    color: #151515;
    font-weight: 600;
}

.cc-title-line {
    width: 52px;
    height: 4px;
    margin-top: 20px;
    background: #f4c400;
}


/* =====================================================
   INTRO
===================================================== */

.cc-intro {
    width: 100%;
    max-width: none;
    margin-top: 32px;
}

.cc-intro p {
    margin: 0 0 16px;
    color: #59655d;
    font-size: 16px;
    line-height: 1.85;
}

.cc-intro p:last-child {
    margin-bottom: 0;
}

.college-counselling .cc-lower-text p {
    font-size: 16px;
    line-height: 1.75;
}


/* =====================================================
   VISUAL AREA
===================================================== */

.cc-visual {
    position: relative;
    display: grid;
    grid-template-columns: 1.35fr .65fr;
    gap: 18px;
    min-height: 470px;
    margin-top: 20px;
    padding: 25px;
    background: #ffffff;
    border: 1px solid #dfe6df;
    border-radius: 24px;
}


/* =====================================================
   MAIN IMAGE
===================================================== */

.cc-image-main {
    position: relative;
    height: 420px;
    overflow: hidden;
    border-radius: 17px;
}

.cc-image-main img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .6s ease;
}

.cc-image-main:hover img {
    transform: scale(1.04);
}

.cc-image-main::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( 180deg, transparent 55%, rgba(0, 0, 0, .42));
}

.cc-image-main span {
    position: absolute;
    left: 22px;
    bottom: 20px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    background: #ffffff;
    color: #084b31;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.cc-image-main span::before {
    content: "";
    width: 22px;
    height: 3px;
    background: #f4c400;
}


/* =====================================================
   SECOND IMAGE
===================================================== */

.cc-image-small {
    position: relative;
    height: 420px;
    margin-top: 45px;
    overflow: hidden;
    border-radius: 17px;
}

.cc-image-small img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .6s ease;
}

.cc-image-small:hover img {
    transform: scale(1.05);
}


/* =====================================================
   VISUAL LABEL
===================================================== */

.cc-visual-label {
    position: absolute;
    left: 38px;
    top: 38px;
    z-index: 5;
    display: flex;
    align-items: baseline;
    gap: 9px;
    padding: 10px 15px;
    background: #084b31;
    color: #ffffff;
    border-radius: 4px;
}

.cc-visual-label strong {
    color: #f4c400;
    font-size: 12px;
    font-weight: 600;
}

.cc-visual-label span {
    font-size: 9px;
    opacity: .8;
}


/* =====================================================
   LOWER CONTENT
===================================================== */

.cc-lower {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 70px;
    margin-top: 20px;
    padding: 45px 55px;
    background: #084b31;
    border-radius: 24px;
}


/* =====================================================
   LOWER HEADING
===================================================== */

.cc-lower-heading {
    padding-right: 35px;
    border-right: 1px solid rgba(255, 255, 255, .17);
}

.cc-lower-heading span {
    display: block;
    margin-bottom: 15px;
    color: #f4c400;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.cc-lower-heading h3 {
    margin: 0;
    color: #ffffff;
    font-size: 37px;
    font-weight: 500;
    line-height: 1.08;
}

.cc-lower-heading h3 strong {
    display: block;
    color: #f4c400;
    font-weight: 500;
}


/* =====================================================
   LOWER PARAGRAPHS
===================================================== */

.cc-lower-text {
    max-width: 1000px;
}

.cc-lower-text p {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, .76);
    font-size: 12px;
    line-height: 1.9;
}

.cc-lower-text p:last-child {
    margin-bottom: 0;
}


/* Stack the lower counselling content: heading, yellow divider, then copy. */

.college-counselling .cc-lower {
    display: block;
}

.college-counselling .cc-lower-heading {
    padding-right: 0;
    padding-bottom: 24px;
    border-right: 0;
    border-bottom: 0;
}

.college-counselling .cc-lower-heading::after {
    content: "";
    display: block;
    width: 58px;
    height: 3px;
    margin-top: 22px;
    background: #f4c400;
}

.college-counselling .cc-lower-text {
    max-width: none;
}


/* Lower counselling block: heading on the left, content on the right. */

.college-counselling .cc-lower {
    display: block;
}

.college-counselling .cc-lower-heading {
    padding-right: 35px;
    padding-bottom: 0;
    border-right: 1px solid rgba(255, 255, 255, .17);
}

.college-counselling .cc-lower-heading::after {
    margin-top: 22px;
}


/* Keep both Boost section headings on one clean desktop line. */

@media (min-width: 768px) {
    .academic-support .academic-support-intro-title h2 {
        white-space: nowrap;
        font-size: clamp(38px, 3.2vw, 52px);
    }
    .academic-support .academic-support-intro-title h2 b,
    .college-counselling .cc-lower-heading h3 strong {
        display: inline;
    }
    .college-counselling .cc-lower-heading h3 {
        white-space: nowrap;
        font-size: clamp(25px, 2.15vw, 36px);
    }
}

@media (max-width: 1000px) {
    .college-counselling .cc-lower {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .college-counselling .cc-lower-heading {
        padding-right: 0;
        padding-bottom: 24px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .17);
    }
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {
    .cc-header {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .cc-visual {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .cc-image-main,
    .cc-image-small {
        height: 350px;
    }
    .cc-image-small {
        margin-top: 0;
    }
    .cc-lower {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .cc-lower-heading {
        padding-right: 0;
        padding-bottom: 25px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .17);
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {
    .college-counselling {
        padding: 45px 12px;
    }
    .cc-header {
        padding: 5px 12px 28px;
        gap: 22px;
    }
    .cc-title h2 {
        font-size: 52px;
        line-height: .98;
    }
    .cc-intro p {
        font-size: 16px;
        line-height: 1.75;
    }
    /* VISUAL */
    .cc-visual {
        gap: 12px;
        margin-top: 14px;
        padding: 12px;
        border-radius: 18px;
    }
    .cc-image-main {
        height: 280px;
        border-radius: 14px;
    }
    .cc-image-small {
        height: 230px;
        border-radius: 14px;
    }
    .cc-visual-label {
        left: 22px;
        top: 22px;
        padding: 8px 11px;
    }
    .cc-visual-label span {
        display: none;
    }
    .cc-image-main span {
        left: 15px;
        bottom: 15px;
        font-size: 7px;
    }
    /* LOWER */
    .cc-lower {
        gap: 25px;
        margin-top: 14px;
        padding: 30px 22px;
        border-radius: 18px;
    }
    .cc-lower-heading h3 {
        font-size: 32px;
    }
    .cc-lower-text p {
        font-size: 16px;
        line-height: 1.8;
    }
}


/* =====================================================
   STAFF DEVELOPMENT
===================================================== */

.staff-development {
    width: 100%;
    padding: 65px 20px;
    background: #f5f7f2;
    overflow: hidden;
}

.staff-development-wrap {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}


/* =====================================================
   HEADER
===================================================== */

.staff-dev-header {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 75px;
    align-items: center;
    padding: 20px 35px 40px;
    background: #ffffff;
    border: 1px solid #dfe6df;
    border-radius: 24px;
}


/* =====================================================
   HEADING
===================================================== */

.staff-dev-heading span {
    display: block;
    margin-bottom: 13px;
    color: #f4c400;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.staff-dev-heading h2 {
    margin: 0;
    color: #111111;
    font-size: 52px;
    font-weight: 500;
    line-height: .98;
    letter-spacing: -1.5px;
}

.staff-dev-heading h2 strong {
    display: block;
    color: #084b31;
    font-weight: 500;
}

.staff-dev-line {
    width: 55px;
    height: 4px;
    margin-top: 20px;
    background: #f4c400;
}


/* =====================================================
   INTRO
===================================================== */

.staff-dev-intro {
    max-width: 1000px;
}

.staff-dev-intro p {
    margin: 0 0 15px;
    color: #59655d;
    font-size: 13px;
    line-height: 1.85;
}

.staff-dev-intro p:last-child {
    margin-bottom: 0;
}


/* =====================================================
   PRACTICES
===================================================== */

.staff-dev-practices {
    display: block;
    margin-top: 20px;
    padding: 48px 55px;
    background: #084b31;
    border-radius: 24px;
}


/* =====================================================
   SIDE TITLE
===================================================== */

.staff-dev-side {
    position: relative;
    padding: 15px 45px 15px 10px;
    padding-bottom: 25px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.staff-dev-side span {
    display: block;
    margin-bottom: 15px;
    color: #f4c400;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.staff-dev-side h3 {
    margin: 0;
    color: #ffffff;
    font-size: 39px;
    font-weight: 500;
    line-height: 1.08;
}

.staff-dev-side h3 strong {
    display: block;
    color: #f4c400;
    font-weight: 500;
}


/* =====================================================
   LIST
===================================================== */

.staff-dev-list {
    position: relative;
    margin-top: 30px;
    padding-left: 25px;
}


/* vertical line */

.staff-dev-list::before {
    content: "";
    position: absolute;
    left: 3px;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: rgba(255, 255, 255, .2);
}


/* =====================================================
   ITEM
===================================================== */

.staff-dev-item {
    position: relative;
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 17px;
    padding: 0 0 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.staff-dev-item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}


/* DOT */

.staff-dev-dot {
    position: relative;
    z-index: 2;
    width: 9px;
    height: 9px;
    margin-top: 6px;
    border: 2px solid #084b31;
    border-radius: 50%;
    background: #f4c400;
    box-shadow: 0 0 0 4px #084b31;
}


/* ITEM HEADING */

.staff-dev-item h4 {
    margin: 0 0 7px;
    color: #ffffff;
    font-size: 22px;
    letter-spacing: 1px;
    font-weight: 500;
    line-height: 1.3;
}


/* ITEM PARA */

.staff-dev-item p {
    margin: 0;
    color: rgba(255, 255, 255, .73);
    font-size: 11px;
    line-height: 1.8;
}


/* =====================================================
   BOTTOM
===================================================== */

.staff-dev-bottom {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 15px;
    align-items: center;
    margin-top: 20px;
    padding: 30px 45px;
    background: #ffffff;
    border: 1px solid #dfe6df;
    border-radius: 24px;
}


/* MARK */

.staff-dev-bottom-mark {
    display: flex;
    align-items: center;
    gap: 5px;
}

.staff-dev-bottom-mark span {
    display: block;
    width: 7px;
    height: 35px;
    background: #f4c400;
    border-radius: 2px;
}

.staff-dev-bottom-mark span:nth-child(2) {
    height: 23px;
}

.staff-dev-bottom-mark span:nth-child(3) {
    height: 13px;
}


/* BOTTOM TEXT */

.staff-dev-bottom p {
    margin: 0;
    color: #59655d;
    font-size: 12px;
    line-height: 1.85;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {
    .staff-dev-header {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 40px;
    }
    .staff-dev-practices {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px;
    }
    .staff-dev-side {
        padding: 0 0 25px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .18);
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {
    .staff-development {
        padding: 45px 12px;
    }
    .staff-dev-header {
        padding: 30px 22px;
        border-radius: 18px;
    }
    .staff-dev-heading h2 {
        font-size: 52px;
    }
    .staff-dev-intro p {
        font-size: 11px;
        line-height: 1.8;
    }
    /* PRACTICES */
    .staff-dev-practices {
        gap: 28px;
        margin-top: 14px;
        padding: 30px 22px;
        border-radius: 18px;
    }
    .staff-dev-side h3 {
        font-size: 32px;
    }
    .staff-dev-list {
        padding-left: 20px;
    }
    .staff-dev-item {
        grid-template-columns: 15px 1fr;
        gap: 13px;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    .staff-dev-item h4 {
        font-size: 13px;
    }
    .staff-dev-item p {
        font-size: 10px;
        line-height: 1.8;
    }
    /* BOTTOM */
    .staff-dev-bottom {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 14px;
        padding: 28px 22px;
        border-radius: 18px;
    }
    .staff-dev-bottom p {
        font-size: 10px;
        line-height: 1.8;
    }
}


/* Staff Development: readable paragraph size throughout the section. */

.staff-development .staff-dev-intro p,
.staff-development .staff-dev-item p,
.staff-development .staff-dev-bottom p {
    font-size: 16px !important;
    line-height: 1.75;
}


/* Staff intro: keep the heading above the full-width copy. */

.staff-development {
    padding-top: 24px;
}

.staff-development .staff-dev-header {
    display: block;
    padding: 32px 35px 36px;
}

.staff-development .staff-dev-intro {
    width: 100%;
    max-width: none;
    margin-top: 28px;
}

.staff-development .staff-dev-side h3 {
    white-space: nowrap;
}

.staff-development .staff-dev-side h3 strong {
    display: inline;
}

.staff-development .staff-dev-heading h2 {
    white-space: nowrap;
}

.staff-development .staff-dev-heading h2 strong {
    display: inline;
}

@media (max-width: 650px) {
    .staff-development {
        padding-top: 24px;
    }
    .staff-development .staff-dev-header {
        padding: 28px 22px 30px;
    }
    .staff-development .staff-dev-intro {
        margin-top: 22px;
    }
    .staff-development .staff-dev-side h3 {
        white-space: normal;
    }
    .staff-development .staff-dev-heading h2 {
        white-space: normal;
    }
}


/* =====================================================
   FACILITIES 12 SLIDER
===================================================== */

.facilities12-section {
    width: 100%;
    padding: 65px 20px;
    background: #ffffff;
    overflow: hidden;
}

.facilities12-container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}


/* =====================================================
   HEADING
===================================================== */

.facilities12-heading {
    text-align: center;
    margin-bottom: 38px;
}

.facilities12-heading h2 {
    margin: 0;
    color: #084b31;
    font-size: 52px;
    font-weight: 600;
    line-height: 1;
}

.facilities12-heading span {
    display: block;
    width: 80px;
    height: 2px;
    margin: 17px auto 0;
    background: #084b31;
}


/* =====================================================
   SLIDER
===================================================== */

.facilities12-slider {
    width: 100%;
    overflow: hidden;
    border: 1px solid #d9e2db;
    border-radius: 20px;
    background: #ffffff;
}


/* =====================================================
   TRACK
===================================================== */

.facilities12-track {
    display: flex;
    width: max-content;
    animation: facilities12Move 72s linear infinite;
}

.facilities12-slider:hover .facilities12-track {
    animation-play-state: paused;
}


/* =====================================================
   SLIDE
===================================================== */

.facilities12-slide {
    width: 1500px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 455px;
    flex-shrink: 0;
    background: #ffffff;
}


/* =====================================================
   CONTENT
===================================================== */

.facilities12-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 50px 80px;
    overflow: hidden;
}


/* decorative circles */

.facilities12-content::before {
    content: "";
    position: absolute;
    width: 270px;
    height: 270px;
    left: -135px;
    bottom: -135px;
    border: 1px solid #dce8df;
    border-radius: 50%;
}

.facilities12-content::after {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    right: -80px;
    top: -80px;
    background: #f7faf7;
    border-radius: 50%;
}


/* =====================================================
   SMALL LABEL
===================================================== */

.facilities12-content small {
    position: relative;
    z-index: 2;
    margin-bottom: 16px;
    color: #f4c400;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2.5px;
}


/* =====================================================
   INNER HEADING
===================================================== */

.facilities12-content h3 {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #111111;
    font-size: 45px;
    font-weight: 500;
    line-height: 1.05;
}

.facilities12-content h3 span {
    color: #084b31;
}


/* =====================================================
   LINE
===================================================== */

.facilities12-line {
    position: relative;
    z-index: 2;
    width: 65px;
    height: 3px;
    margin: 20px 0 25px;
    background: #f4c400;
}


/* =====================================================
   PARAGRAPH
===================================================== */

.facilities12-content p {
    position: relative;
    z-index: 2;
    max-width: 570px;
    margin: 0;
    color: #59655d;
    font-size: 13px;
    line-height: 1.85;
}


/* =====================================================
   IMAGE
===================================================== */

.facilities12-image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 455px;
    overflow: hidden;
}

.facilities12-image::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: #f4c400;
}

.facilities12-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .6s ease;
}

.facilities12-slide:hover .facilities12-image img {
    transform: scale(1.04);
}


/* =====================================================
   SEAMLESS CONTINUOUS MOVEMENT
===================================================== */

@keyframes facilities12Move {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {
    .facilities12-slide {
        width: 100vw;
    }
    .facilities12-content {
        padding: 40px;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {
    .facilities12-section {
        padding: 45px 12px;
    }
    .facilities12-heading {
        margin-bottom: 25px;
    }
    .facilities12-heading h2 {
        font-size: 52px;
    }
    .facilities12-slide {
        width: calc(100vw - 24px);
        display: flex;
        flex-direction: column;
        min-height: auto;
    }
    .facilities12-content {
        min-height: 300px;
        padding: 35px 22px;
    }
    .facilities12-content h3 {
        font-size: 35px;
    }
    .facilities12-content p {
        max-width: 430px;
        font-size: 10px;
        line-height: 1.75;
    }
    .facilities12-image {
        min-height: 270px;
        height: 270px;
    }
    .facilities12-line {
        margin: 15px 0 20px;
    }
}


/* =====================================================
   TOUR D'HORIZON PAGE
===================================================== */

.tour-page {
    background: #f5f8f4;
}

.tour-container {
    width: min(1320px, calc(100% - 64px));
    margin: 0 auto;
}

.tour-intro {
    padding: 40px 0 40px;
    background: #fff;
}

.tour-intro .tour-container {
    display: block;
}

.tour-eyebrow {
    display: block;
    margin-bottom: 18px;
    color: #f4c400;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
}

.tour-intro-heading h2 {
    margin: 0;
    color: #084b31;
    font: 500 clamp(32px, 4vw, 58px)/1.02 Georgia, serif;
    white-space: nowrap;
}

.tour-intro-heading h2 span {
    color: #f0bd00;
}

.tour-intro-copy {
    margin-top: 30px;
    padding-left: 0;
    border-left: 0;
}

.tour-intro-copy p,
.tour-closing p {
    margin: 0 0 18px;
    color: #53625a;
    font-size: 16px;
    line-height: 1.8;
}

.tour-intro-copy p:last-child,
.tour-closing p:last-child {
    margin-bottom: 0;
}

.tour-facilities {
    padding-top: 70px;
    padding-bottom: 72px;
    background: #f5f8f4;
}

.tour-facilities .facilities12-track {
    width: 100%;
    animation: none;
    transition: transform .65s cubic-bezier(.22, 1, .36, 1);
}

.tour-facilities .facilities12-slide {
    width: 100%;
}

.tour-facilities .facilities12-content p {
    font-size: 16px;
    line-height: 1.75;
}

.tour-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 22px;
}

.tour-slider-btn {
    width: 42px;
    height: 42px;
    border: 1px solid #0a6448;
    border-radius: 50%;
    background: #fff;
    color: #0a6448;
    cursor: pointer;
    font-size: 18px;
    transition: .25s ease;
}

.tour-slider-btn:hover,
.tour-slider-dot.active {
    background: #0a6448;
    color: #fff;
}

.tour-slider-dots {
    display: flex;
    align-items: center;
    gap: 7px;
}

.tour-slider-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #bfd2c6;
    cursor: pointer;
}

.tour-slider-dot.active {
    width: 11px;
    height: 11px;
}

.tour-closing {
    padding: 40px 0 40px;
    background: #fff;
}

.tour-closing .tour-container {
    text-align: center;
}

@media (max-width: 800px) {
    .tour-container {
        width: min(100% - 36px, 620px);
    }
    .tour-intro .tour-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .tour-intro-copy {
        padding-left: 0;
        border-left: 0;
    }
    .tour-intro-heading h2 {
        white-space: normal;
    }
    .tour-facilities .facilities12-slide {
        display: flex;
        flex-direction: column;
    }
    .tour-facilities .facilities12-content {
        min-height: 330px;
    }
}


/* =====================================================
   CLUBS & SOCIETIES PAGE
===================================================== */

.clubs-page {
    background: #f5f8f4;
    color: #084b31;
}

.clubs-container {
    width: min(1320px, calc(100% - 64px));
    margin: 0 auto;
}

.clubs-intro {
    padding: 30px 0 0px;
    text-align: center;
    background: #fff;
}

.clubs-eyebrow {
    display: inline-block;
    color: #e5ad00;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
}

.clubs-intro h2,
.clubs-section-heading h2,
.clubs-saturday-title h2 {
    margin: 18px 0 0;
    color: #084b31;
    font: 500 clamp(38px, 4.5vw, 62px)/1.02 Georgia, serif;
}

.clubs-intro h2 span,
.clubs-section-heading h2 span,
.clubs-saturday-title h2 span {
    color: #efbb00;
}

.clubs-divider {
    width: 60px;
    height: 3px;
    margin: 24px auto 26px;
    background: #f4c400;
}

.clubs-intro p {
    margin: 0 auto;
    color: #53625a;
    font-size: 17px;
    line-height: 1.8;
}

.clubs-discover {
    padding: 90px 0 45px;
    background: #f5f8f4;
}

.clubs-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 45px;
}

.clubs-section-heading>p {
    max-width: 400px;
    margin: 0 0 5px;
    color: #59655d;
    font-size: 16px;
    line-height: 1.75;
}

.clubs-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.clubs-grid article {
    min-height: 220px;
    padding: 28px 26px;
    background: rgba(255, 255, 255, .82);
    border: 1px solid #dbe7df;
    border-radius: 22px 0 22px 0;
    box-shadow: 0 18px 45px rgba(8, 75, 49, .07);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.clubs-grid article:hover {
    transform: translateY(-6px);
    border-color: #f4c400;
    box-shadow: 0 26px 55px rgba(8, 75, 49, .13);
}

.clubs-grid i {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 24px;
    border-radius: 50%;
    color: #084b31;
    background: #f4c400;
    font-size: 21px;
}

.clubs-grid h3 {
    margin: 0 0 10px;
    color: #084b31;
    font: 500 25px/1.1 Georgia, serif;
}

.clubs-grid p,
.clubs-copy-block p,
.clubs-saturday-copy p {
    margin: 0 0 16px;
    color: #59655d;
    font-size: 16px;
    line-height: 1.75;
}

.clubs-copy-block {
    margin: 44px auto 0;
    padding-top: 34px;
    border-top: 1px solid #d9e4dc;
}

.clubs-saturdays {
    padding: 45px 0 45px;
    color: #fff;
    background: linear-gradient(135deg, #063c2b, #08704d);
}

.clubs-saturday-grid {
    display: block;
}

.clubs-saturday-title h2 {
    color: #fff;
}

.clubs-saturday-title .clubs-divider {
    margin-left: 0;
}

.clubs-saturday-title h2 {
    white-space: nowrap;
}

.clubs-saturday-copy {
    margin-top: 32px;
    padding-left: 0;
    border-left: 0;
}

.clubs-saturday-copy p {
    color: rgba(255, 255, 255, .82);
}

@media (max-width: 800px) {
    .clubs-container {
        width: min(100% - 36px, 620px);
    }
    .clubs-section-heading,
    .clubs-saturday-grid {
        display: block;
    }
    .clubs-section-heading>p {
        margin-top: 22px;
    }
    .clubs-grid {
        grid-template-columns: 1fr;
    }
    .clubs-saturday-copy {
        margin-top: 35px;
        padding-left: 0;
        border-left: 0;
    }
    .clubs-saturday-title h2 {
        white-space: normal;
    }
}


/* =====================================================
   OUTDOOR LEARNING PAGE
===================================================== */

.outdoor-page {
    color: #073f2d;
    background: #f5f8f4;
}

.outdoor-container {
    width: min(1360px, calc(100% - 64px));
    margin: 0 auto;
}

.outdoor-intro {
    padding: 40px 0 40px;
    background: #ffffff;
}

.outdoor-intro .outdoor-container {
    display: block;
}

.outdoor-heading {
    position: static;
}

.outdoor-heading h2 {
    white-space: nowrap;
}

.outdoor-copy {
    margin-top: 42px;
}

.outdoor-intro .outdoor-container {
    display: block;
}

.outdoor-heading {
    position: static;
}

.outdoor-eyebrow {
    display: inline-block;
    color: #e5ad00;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
}

.outdoor-heading h2,
.outdoor-experience-content h2 {
    margin: 18px 0 0;
    color: #084b31;
    font-weight: 500;
    font-size: 53px
}

.outdoor-heading h2 span,
.outdoor-experience-content h2 span {
    color: #efbb00;
}

.outdoor-line {
    width: 62px;
    height: 3px;
    margin-bottom: 8px !important;
    margin: 24px 0 0;
    background: #f4c400;
}

.outdoor-copy p,
.outdoor-experience-content p {
    margin: 0 0 22px;
    color: #53625a;
    font-size: 16px;
    line-height: 1.85;
}

.outdoor-copy p:last-child,
.outdoor-experience-content p:last-of-type {
    margin-bottom: 0;
}

.outdoor-experience {
    padding: 88px 0 105px;
    background: #f5f8f4;
}

.outdoor-experience-grid {
    display: grid;
    grid-template-columns: minmax(360px, .9fr) minmax(0, 1.1fr);
    gap: 72px;
    align-items: center;
}

.outdoor-experience-image {
    min-height: 0;
    height: auto;
    align-self: stretch;
    overflow: hidden;
    border-radius: 30px 0 30px 0;
    background: linear-gradient(135deg, #075c43, #0a8060);
    box-shadow: 0 28px 70px rgba(7, 63, 45, .16);
}

.outdoor-experience-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
}

.outdoor-experience-content {
    padding: 12px 0;
}

.outdoor-experience-content ul {
    display: grid;
    gap: 0;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.outdoor-experience-content li {
    position: relative;
    padding: 18px 0 18px 28px;
    border-top: 1px solid #d9e4dc;
    color: #53625a;
    font-size: 16px;
    line-height: 1.7;
}

.outdoor-experience-content li::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f4c400;
}

@media (max-width: 850px) {
    .outdoor-intro .outdoor-container,
    .outdoor-experience-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }
    .outdoor-heading {
        position: static;
    }
    .outdoor-experience-image,
    .outdoor-experience-image img {
        min-height: 420px;
    }
}

@media (max-width: 600px) {
    .outdoor-container {
        width: min(100% - 36px, 620px);
    }
    .outdoor-intro,
    .outdoor-experience {
        padding: 20px 0 20px;
    }
    .outdoor-heading h2,
    .outdoor-experience-content h2 {
        font-size: 40px;
    }
    .outdoor-heading h2 {
        white-space: normal;
    }
    .outdoor-copy p,
    .outdoor-experience-content p,
    .outdoor-experience-content li {
        font-size: 15px;
    }
    .outdoor-experience-image,
    .outdoor-experience-image img {
        min-height: 330px;
    }
}


/* =====================================================
   SPORTS INFRASTRUCTURE PAGE
===================================================== */

.sports-page {
    background: #f4f8f4;
    color: #073f2d;
}

.sports-container {
    width: min(1360px, calc(100% - 64px));
    margin: 0 auto;
}

.sports-quote {
    padding: 82px 0 78px;
    color: #fff;
    background: linear-gradient(135deg, #063b2a, #087452);
}

.sports-eyebrow {
    display: inline-block;
    color: #f4c400;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
}

.sports-quote blockquote {
    max-width: 1080px;
    margin: 22px 0 18px;
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 25px;
}

.sports-quote cite {
    color: #f4c400;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
}

.sports-facilities {
    padding: 40px 0 40px;
}

.sports-section-heading {
    margin-bottom: 42px;
}

.sports-section-heading h2 {
    margin: 16px 0 0;
    color: #084b31;
    font-weight: 500;
    font-size: 52px;
}

.sports-section-heading h2 span {
    color: #efbb00;
}

.sports-line {
    width: 62px;
    height: 3px;
    margin-top: 22px;
    background: #f4c400;
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.sports-grid article {
    position: relative;
    min-height: 240px;
    padding: 30px 28px 28px;
    background: #fff;
    border: 1px solid #dce8df;
    border-radius: 24px 0 24px 0;
    box-shadow: 0 18px 48px rgba(7, 63, 45, .08);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.sports-grid article:hover {
    transform: translateY(-6px);
    border-color: #f4c400;
    box-shadow: 0 28px 60px rgba(7, 63, 45, .14);
}

.sports-number {
    display: block;
    margin-bottom: 25px;
    color: #c69a18;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.sports-grid h3 {
    margin: 0 0 13px;
    color: #084b31;
    font: 500 26px/1.12 Georgia, serif;
}

.sports-grid p {
    margin: 0;
    color: #59655d;
    font-size: 15px;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .sports-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .sports-container {
        width: min(100% - 36px, 620px);
    }
    .sports-quote {
        padding: 62px 0 60px;
    }
    .sports-facilities {
        padding: 25px 0 25px;
    }
    .sports-grid {
        grid-template-columns: 1fr;
    }
    .sports-grid article {
        min-height: 0;
    }
}


/* Sports quote redesign: a distinct floating banner that visually connects with the hero. */

.sports-quote {
    position: relative;
    z-index: 2;
    margin-top: -42px;
    padding: 55px 0 0px;
    color: #fff;
    background: #f4f8f4;
}

.sports-quote .sports-container {
    position: relative;
    overflow: hidden;
    padding: 54px 72px 50px;
    border-radius: 30px 0 30px 0;
    background: linear-gradient(110deg, #063b2a 0%, #075c43 58%, #087a55 100%);
    box-shadow: 0 28px 70px rgba(7, 63, 45, .2);
}

.sports-quote .sports-container::after {
    content: '';
    position: absolute;
    right: -90px;
    bottom: -170px;
    width: 390px;
    height: 390px;
    border: 1px solid rgba(244, 196, 0, .42);
    border-radius: 50%;
    box-shadow: 0 0 0 24px rgba(244, 196, 0, .06), 0 0 0 48px rgba(244, 196, 0, .04);
    pointer-events: none;
}

.sports-quote blockquote {
    position: relative;
    z-index: 1;
    max-width: 1050px;
    margin: 20px 0 18px;
    color: #fff;
    font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif !important;
    font-size: 36px;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1.12;
}

.sports-quote cite {
    position: relative;
    z-index: 1;
}

@media (max-width: 600px) {
    .sports-quote {
        margin-top: -24px;
        padding-bottom: 42px;
    }
    .sports-quote .sports-container {
        padding: 36px 26px 34px;
        border-radius: 24px 0 24px 0;
    }
    .sports-quote blockquote {
        max-width: none;
        margin: 16px 0 14px;
        font-size: 22px;
        line-height: 1.28;
        letter-spacing: .2px;
    }
    .sports-quote cite {
        font-size: 12px;
    }
}


/* Balance the final facility instead of leaving one short card alone. */

@media (min-width: 601px) {
    .sports-grid>article:last-child {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 90px minmax(220px, .7fr) minmax(0, 1.3fr);
        align-items: center;
        column-gap: 22px;
        min-height: 170px;
        padding: 28px 34px;
        border-radius: 24px 0 24px 0;
        background: linear-gradient(110deg, #075c43 0%, #087a55 100%);
        border-color: transparent;
        box-shadow: 0 22px 55px rgba(7, 63, 45, .16);
    }
    .sports-grid>article:last-child .sports-number {
        margin: 0;
        color: #f4c400;
    }
    .sports-grid>article:last-child h3 {
        margin: 0;
        color: #fff;
    }
    .sports-grid>article:last-child p {
        color: rgba(255, 255, 255, .84);
    }
}

@media (max-width: 900px) and (min-width: 601px) {
    .sports-grid>article:last-child {
        grid-template-columns: 70px minmax(0, 1fr);
        row-gap: 10px;
    }
    .sports-grid>article:last-child h3,
    .sports-grid>article:last-child p {
        grid-column: 2;
    }
}

@media (max-width: 600px) {
    .sports-grid>article:last-child {
        background: #fff;
        border: 1px solid #dce8df;
        box-shadow: 0 18px 48px rgba(7, 63, 45, .08);
    }
}


/* =====================================================
   LIFE SKILLS
===================================================== */

.life-skills-new {
    width: 100%;
    padding: 65px 20px;
    background: #f5f7f2;
    overflow: hidden;
}

.life-skills-wrap {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}


/* =====================================================
   HEADER
===================================================== */

.life-skills-header {
    display: grid;
    grid-template-columns: .65fr 1.35fr;
    gap: 70px;
    align-items: center;
    padding: 10px 35px 40px;
    border-bottom: 1px solid #dfe6df;
}


/* =====================================================
   TITLE
===================================================== */

.life-skills-title span {
    display: block;
    margin-bottom: 14px;
    color: #f4c400;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.life-skills-title h2 {
    margin: 0;
    color: #111111;
    font-size: 52px;
    font-weight: 600;
    line-height: .98;
    letter-spacing: -1.5px;
}

.life-skills-title h2 strong {
    display: block;
    color: #084b31;
    font-weight: 600;
}

.life-yellow-line {
    width: 55px;
    height: 4px;
    margin-top: 20px;
    background: #f4c400;
}


/* =====================================================
   QUOTE
===================================================== */

.life-skills-quote {
    position: relative;
    max-width: 900px;
    padding: 30px 45px 27px;
    background: #084b31;
    border-radius: 18px;
}

.quote-mark {
    position: absolute;
    left: 22px;
    top: 8px;
    color: #f4c400;
    font-size: 45px;
    font-weight: 700;
    line-height: 1;
}

.life-skills-quote p {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.7;
}

.life-skills-quote>span {
    color: #f4c400;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2px;
}


/* =====================================================
   OUR HOUSES PAGE
===================================================== */

.houses-page {
    background: #f4f8f4;
    color: #073f2d;
}

.houses-container {
    width: min(1320px, calc(100% - 64px));
    margin: 0 auto;
}

.houses-intro {
    padding: 20px 0 20px;
    background: #fff;
    text-align: center;
}

.houses-eyebrow {
    color: #e5ad00;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
}

.houses-intro h2 {
    margin: 18px 0 0;
    color: #084b31;
    font-weight: 500;
    font-size: 52px;
}

.houses-intro h2 span {
    color: #efbb00;
    font-weight: 500;
}

.houses-intro h2 {
    white-space: nowrap;
}

@media (max-width: 800px) {
    .houses-intro h2 {
        white-space: normal;
    }
}

.houses-line {
    width: 62px;
    height: 3px;
    margin: 24px auto 0;
    background: #f4c400;
}

.houses-list {
    padding: 30px 0 20px;
    background: #fff;
}

.house-card {
    position: relative;
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 55px;
    align-items: center;
    min-height: 330px;
    margin-bottom: 22px;
    padding: 40px 55px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .34);
    border-radius: 28px 0 28px 0;
    box-shadow: 0 25px 65px rgba(7, 63, 45, .13);
}

.house-griffin {
    background: linear-gradient(120deg, #075c43, #0a8060);
    color: #fff;
}

.house-phoenix {
    background: linear-gradient(120deg, #8e2625, #c94b36);
    color: #fff;
}

.house-sphinx {
    background: linear-gradient(120deg, #e7b400, #f4d348);
    color: #143d2c;
}

.house-unicorn {
    background: linear-gradient(120deg, #174f87, #3a83bd);
    color: #fff;
}

.house-emblem {
    position: relative;
    display: grid;
    place-items: center;
    width: 165px;
    height: 165px;
    border: 1px solid rgba(255, 255, 255, .65);
    border-radius: 50%;
    background: rgba(255, 255, 255, .14);
    box-shadow: inset 0 0 0 14px rgba(255, 255, 255, .08), 0 15px 35px rgba(0, 0, 0, .12);
}

.house-emblem i {
    font-size: 54px;
    color: #fff;
}

.house-emblem-image {
    display: block;
    width: 92px;
    height: 92px;
    padding: 14px;
    object-fit: contain;
    background: #ffffff;
    border-radius: 50%;
    box-sizing: border-box;
}

.house-emblem.has-image i {
    display: none;
}

.house-sphinx .house-emblem i {
    color: #084b31;
}

.house-emblem small {
    position: absolute;
    right: 17px;
    top: 18px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    opacity: .75;
}

.house-copy>span {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
    opacity: .8;
}

.house-copy h3 {
    margin: 12px 0 2px;
    color: inherit;
    font: 500 clamp(38px, 4vw, 58px)/1 Georgia, serif;
}

.house-copy h4 {
    margin: 0 0 18px;
    color: inherit;
    font: 500 23px/1.2 Georgia, serif;
    opacity: .9;
}

.house-copy p {
    max-width: 850px;
    margin: 0;
    color: inherit;
    font-size: 16px;
    line-height: 1.75;
    opacity: .88;
}

.house-card::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    right: -100px;
    bottom: -150px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    box-shadow: 0 0 0 24px rgba(255, 255, 255, .05);
}

@media (max-width: 800px) {
    .houses-container {
        width: min(100% - 36px, 620px);
    }
    .house-card {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 32px 26px;
        text-align: center;
    }
    .house-emblem {
        margin: 0 auto;
        width: 135px;
        height: 135px;
    }
    .house-emblem i {
        font-size: 43px;
    }
    .house-copy p {
        text-align: left;
    }
}


/* Life Skills: make the quote the main visual focus. */

.life-skills-new .life-skills-header {
    display: block;
    padding: 10px 35px 45px;
}

.life-skills-new .life-skills-title {
    display: none;
}

.life-skills-new .life-skills-quote {
    width: 100%;
    max-width: none;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 58px clamp(35px, 8vw, 120px) 42px;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 28px;
    background: radial-gradient(circle at 88% 18%, rgba(244, 196, 0, .18), transparent 26%), linear-gradient(125deg, #063d2b 0%, #075b40 52%, #0a4b37 100%);
    box-shadow: 0 25px 65px rgba(8, 75, 49, .2), inset 0 1px 0 rgba(255, 255, 255, .28);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    overflow: hidden;
}

.life-skills-new .life-skills-quote::after {
    content: "";
    position: absolute;
    width: 230px;
    height: 230px;
    right: -70px;
    bottom: -130px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 50%;
    box-shadow: 0 0 0 22px rgba(244, 196, 0, .08), 0 0 0 44px rgba(255, 255, 255, .05);
}

.life-skills-new .life-skills-quote p {
    position: relative;
    z-index: 1;
    max-width: 1050px;
    margin: 0 0 22px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
    letter-spacing: 1px;
    line-height: 1.3;
    font-weight: 500;
}

.life-skills-new .quote-mark {
    left: 35px;
    top: 10px;
    z-index: 1;
    font-family: Georgia, serif;
    font-size: 78px;
    line-height: 1;
}


/* =====================================================
   MAIN FEATURE
===================================================== */

.life-skills-feature {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    min-height: 455px;
    margin-top: 20px;
    background: #ffffff;
    border: 1px solid #dfe6df;
    border-radius: 24px;
    overflow: hidden;
}


/* =====================================================
   FEATURE TEXT
===================================================== */

.life-skills-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 55px 55px 55px 60px;
}

.life-small-label {
    display: inline-block;
    width: fit-content;
    margin-bottom: 17px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f4c400;
    color: #084b31;
    font-size: 1px;
    font-weight: 700;
    letter-spacing: 2px;
}

.life-skills-text h3 {
    margin: 0 0 24px;
    color: #111111;
    font-size: 39px;
    font-weight: 500;
    line-height: 1.05;
}

.life-skills-text h3 strong {
    display: block;
    color: #084b31;
    font-weight: 500;
}

.life-skills-text p {
    max-width: 610px;
    margin: 0;
    color: #59655d;
    font-size: 16px;
    line-height: 1.9;
}


/* =====================================================
   IMAGE
===================================================== */

.life-skills-image {
    position: relative;
    min-height: 455px;
    overflow: hidden;
}

.life-skills-image::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: #f4c400;
    z-index: 3;
}

.life-skills-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .6s ease;
}

.life-skills-image:hover img {
    transform: scale(1.04);
}


/* =====================================================
   IMAGE TAG
===================================================== */

.life-image-tag {
    position: absolute;
    left: 25px;
    bottom: 22px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    background: #ffffff;
    color: #084b31;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.life-image-tag span {
    width: 22px;
    height: 3px;
    background: #f4c400;
}


/* =====================================================
   SKILLS AREA
===================================================== */

.life-skills-points {
    display: grid;
    grid-template-columns: .55fr 1.45fr;
    gap: 65px;
    margin-top: 20px;
    padding: 45px 55px;
    background: #ffffff;
    border: 1px solid #dfe6df;
    border-radius: 24px;
}


/* =====================================================
   POINT HEADING
===================================================== */

.life-points-heading {
    padding-right: 35px;
    border-right: 1px solid #e0e7e1;
}

.life-points-heading span {
    display: block;
    margin-bottom: 14px;
    color: #f4c400;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.life-points-heading h3 {
    margin: 0;
    color: #111111;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.08;
}

.life-points-heading h3 strong {
    display: block;
    color: #084b31;
    font-weight: 500;
}


/* =====================================================
   POINT LIST
===================================================== */

.life-points-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 35px;
    row-gap: 22px;
}

.life-point {
    position: relative;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding-bottom: 18px;
    border-bottom: 1px solid #e3e8e3;
}

.life-point-line {
    flex-shrink: 0;
    width: 2px;
    height: 40px;
    margin-top: 2px;
    background: #f4c400;
}

.life-point p {
    margin: 0;
    color: #59655d;
    font-size: 16px;
    line-height: 1.75;
}


/* =====================================================
   BOTTOM
===================================================== */

.life-skills-bottom {
    display: grid;
    grid-template-columns: 7px 1fr;
    gap: 25px;
    align-items: center;
    margin-top: 20px;
    padding: 30px 45px;
    background: #084b31;
    border-radius: 24px;
}

.life-bottom-accent {
    width: 4px;
    height: 55px;
    background: #f4c400;
}

.life-skills-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: 16px;
    line-height: 1.85;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {
    .life-skills-header {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .life-skills-feature {
        grid-template-columns: 1fr;
    }
    .life-skills-image {
        min-height: 400px;
    }
    .life-skills-points {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .life-points-heading {
        padding-right: 0;
        padding-bottom: 25px;
        border-right: none;
        border-bottom: 1px solid #e0e7e1;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {
    .life-skills-new {
        padding: 28px 12px 45px;
    }
    .life-skills-new .life-skills-header {
        width: 100%;
        padding: 0 0 20px;
    }
    .life-skills-new .life-skills-quote {
        width: 100%;
        min-height: 0;
        padding: 34px 24px 28px;
        border-radius: 22px;
    }
    .life-skills-new .life-skills-quote p {
        max-width: none;
        font-size: 15px;
        margin-top: 20px !important;
        line-height: 1.55;
    }
    .life-skills-new .quote-mark {
        left: 24px;
        top: 8px;
        font-size: 64px;
    }
    .life-skills-header {
        gap: 22px;
        padding: 5px 12px 28px;
    }
    .life-skills-title h2 {
        font-size: 52px;
    }
    .life-skills-quote {
        padding: 28px 22px 24px;
    }
    .life-skills-quote p {
        font-size: 11px;
        line-height: 1.75;
    }
    /* FEATURE */
    .life-skills-feature {
        margin-top: 14px;
        border-radius: 18px;
    }
    .life-skills-text {
        padding: 32px 22px;
    }
    .life-skills-text h3 {
        font-size: 31px;
        margin-bottom: 20px;
    }
    .life-skills-text p {
        font-size: 10px;
        line-height: 1.8;
    }
    .life-skills-image {
        min-height: 270px;
    }
    .life-image-tag {
        left: 15px;
        bottom: 15px;
        font-size: 7px;
    }
    /* POINTS */
    .life-skills-points {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 14px;
        padding: 30px 22px;
        border-radius: 18px;
    }
    .life-points-heading {
        padding-bottom: 20px;
    }
    .life-points-heading h3 {
        font-size: 31px;
    }
    .life-points-list {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .life-point p {
        font-size: 10px;
        line-height: 1.8;
    }
    /* BOTTOM */
    .life-skills-bottom {
        gap: 18px;
        margin-top: 14px;
        padding: 27px 22px;
        border-radius: 18px;
    }
    .life-skills-bottom p {
        font-size: 10px;
        line-height: 1.8;
    }
}


/* Life Skills outcomes: heading first, outcomes below. */

.life-skills-new .life-skills-points {
    display: block;
}

.life-skills-new .life-points-heading {
    padding-right: 0;
    padding-bottom: 24px;
    border-right: 0;
    border-bottom: 1px solid #e0e7e1;
}

.life-skills-new .life-points-heading h3 {
    white-space: nowrap;
}

.life-skills-new .life-points-heading h3 strong {
    display: inline;
}

.life-skills-new .life-points-list {
    margin-top: 30px;
}

.life-skills-new .life-skills-text h3 {
    white-space: nowrap;
}

.life-skills-new .life-skills-text h3 strong {
    display: inline;
}

@media (max-width: 650px) {
    .life-skills-new .life-points-heading h3 {
        white-space: normal;
    }
    .life-skills-new .life-skills-text h3 {
        white-space: normal;
    }
}


/* Clubs page: source layout uses three image-led content sections. */

.clubs-content {
    padding: 30px 0 30px;
    background: #fff;
}

.club-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 390px;
    margin-bottom: 24px;
    overflow: hidden;
    border: 1px solid #dbe7df;
    border-radius: 28px 0 28px 0;
    box-shadow: 0 24px 65px rgba(8, 75, 49, .1);
}

.club-feature-green {
    color: #fff;
    background: linear-gradient(135deg, #07533b, #087451);
}

.club-feature-green .club-feature-copy p {
    color: rgba(255, 255, 255, .84);
}

.club-feature-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 55px;
}

.club-feature-copy p {
    margin: 18px 0 0;
    color: #59655d;
    font-size: 16px;
    line-height: 1.8;
}

.club-feature-image {
    min-height: 390px;
    overflow: hidden;
}

.club-feature-image img,
.clubs-saturday-title img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.club-feature-green .club-feature-image {
    order: -1;
}

.clubs-saturday-title img {
    height: 270px;
    margin-top: 30px;
    border-radius: 22px;
    opacity: .92;
}

@media (max-width: 800px) {
    .club-feature {
        grid-template-columns: 1fr;
    }
    .club-feature-copy {
        padding: 34px 26px;
    }
    .club-feature-image {
        min-height: 280px;
    }
    .club-feature-green .club-feature-image {
        order: 0;
    }
}


/* Saturday section: copy on the left with the local photo as a right-side background. */

.clubs-saturdays {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(6, 60, 43, .98) 0%, rgba(7, 86, 64, .68) 48%, rgba(7, 86, 64, .18) 100%), url('../images/website/club3.png') right center / cover no-repeat;
}

.clubs-saturdays::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(4, 54, 40, .82) 0%, rgba(4, 54, 40, .36) 48%, rgba(4, 54, 40, .02) 100%);
    pointer-events: none;
}

.clubs-saturday-grid {
    position: relative;
    z-index: 1;
    display: block;
    width: min(1600px, calc(100% - 64px));
    max-width: none;
    margin: 0 auto;
    padding-right: 42%;
}

.clubs-saturday-title img {
    display: none;
}

.clubs-saturday-title h2 {
    white-space: nowrap;
}

.clubs-saturday-copy {
    margin-top: 30px;
    padding-left: 0;
    border-left: 0;
}

@media (max-width: 800px) {
    .clubs-saturdays {
        background-position: 70% center;
    }
    .clubs-saturday-grid {
        width: min(100% - 36px, 620px);
        padding-right: 0;
    }
    .clubs-saturday-title h2 {
        white-space: normal;
    }
}


/* =====================================================
   INTERNATIONAL EXCHANGE - MODERN DESIGN
===================================================== */

.exchange-modern {
    width: 100%;
    padding: 45px 15px;
    background: #ffffff;
    overflow: hidden;
}

.exchange-modern-wrap {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}


/* =====================================================
   TOP INTRO
===================================================== */

.exchange-modern-intro {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 190px;
    padding: 25px 85px 25px 265px;
    border: 1px solid #8aa695;
    border-radius: 22px;
    background: #ffffff;
    overflow: hidden;
}


/* =====================================================
   GLOBE
===================================================== */

.exchange-globe {
    position: absolute;
    left: 55px;
    top: 32px;
    width: 115px;
    height: 115px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #084b31;
    box-shadow: 0 0 0 18px #f3f7f3, 0 0 0 19px #dce9df;
}

.exchange-globe span {
    display: none;
}

.exchange-globe::before {
    content: "🌐";
    font-family: "Segoe UI Symbol", "Arial Unicode MS", sans-serif;
    color: #f4c400;
    font-size: 52px;
    line-height: 1;
}


/* =====================================================
   INTRO YELLOW LINE
===================================================== */

.exchange-intro-line {
    position: absolute;
    left: 205px;
    top: 35px;
    bottom: 35px;
    width: 3px;
    background: #f4c400;
}


/* =====================================================
   INTRO TEXT
===================================================== */

.exchange-modern-intro p {
    margin: 0;
    max-width: 1100px;
    color: #161616;
    font-size: 17px;
    line-height: 1.8;
}


/* =====================================================
   PLANE
===================================================== */

.exchange-plane {
    position: absolute;
    right: 40px;
    bottom: 35px;
    width: 85px;
    height: 55px;
}

.exchange-plane::before {
    content: "";
    position: absolute;
    width: 70px;
    height: 35px;
    left: -5px;
    top: 4px;
    border-top: 1px dashed #8aa695;
    border-radius: 50%;
    transform: rotate(-25deg);
}

.exchange-plane span {
    position: absolute;
    right: 0;
    top: 0;
    color: #f4c400;
    font-size: 27px;
}


/* =====================================================
   GALLERY
===================================================== */

.exchange-modern-gallery {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 22px;
    margin-top: 28px;
    padding: 32px 38px;
    background: #075f38;
    border-radius: 22px;
    overflow: hidden;
}


/* subtle decoration */

.exchange-modern-gallery::before {
    content: "";
    position: absolute;
    left: 170px;
    top: -90px;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(244, 196, 0, .08);
    border-radius: 50%;
}

.exchange-modern-gallery::after {
    content: "";
    position: absolute;
    right: 100px;
    bottom: -120px;
    width: 330px;
    height: 330px;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 50%;
}


/* =====================================================
   CARD
===================================================== */

.exchange-modern-card {
    position: relative;
    z-index: 2;
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .10);
}


/* =====================================================
   IMAGE
===================================================== */

.exchange-modern-img {
    width: 100%;
    height: 375px;
    overflow: hidden;
}

.exchange-modern-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .6s ease;
}

.exchange-modern-card:hover .exchange-modern-img img {
    transform: scale(1.05);
}


/* =====================================================
   CARD BOTTOM
===================================================== */

.exchange-card-bottom {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 92px;
    padding: 14px 25px;
    background: #ffffff;
}


/* =====================================================
   CARD ICON
===================================================== */

.exchange-card-icon {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f4c400;
    color: #ffffff;
    font-size: 29px;
    font-weight: 400;
}


/* =====================================================
   CARD TEXT
===================================================== */

.exchange-card-bottom strong {
    display: block;
    color: #151515;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.2;
}

.exchange-card-bottom span {
    display: block;
    color: #151515;
    font-size: 17px;
    line-height: 1.2;
}

.exchange-card-bottom i {
    display: block;
    width: 65px;
    height: 3px;
    margin-top: 9px;
    background: #f4c400;
}


/* =====================================================
   BOTTOM SECTION
===================================================== */

.exchange-modern-bottom {
    display: grid;
    grid-template-columns: 1.55fr .85fr;
    gap: 30px;
    align-items: stretch;
    margin-top: 25px;
    padding: 28px 32px;
    background: #f5f7f2;
    border-radius: 20px;
}


/* =====================================================
   BENEFITS
===================================================== */

.exchange-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.exchange-benefit {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 5px 20px;
    border-right: 1px solid #cfdcd3;
}

.exchange-benefit:first-child {
    padding-left: 0;
}

.exchange-benefit:last-child {
    border-right: none;
}


/* =====================================================
   BENEFIT ICON
===================================================== */

.benefit-icon {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #084b31;
    color: #f4c400;
    font-size: 27px;
    box-shadow: 0 0 0 5px #e3eee6;
}


/* =====================================================
   BENEFIT TEXT
===================================================== */

.exchange-benefit p {
    margin: 0;
    color: #151515;
    font-size: 13px;
    line-height: 1.5;
}


/* =====================================================
   BOTTOM TEXT
===================================================== */

.exchange-bottom-text {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-left: 10px;
}

.exchange-bottom-line {
    flex-shrink: 0;
    width: 3px;
    height: 100px;
    background: #f4c400;
}

.exchange-bottom-text p {
    margin: 0;
    color: #161616;
    font-size: 16px;
    line-height: 1.75;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {
    .exchange-modern-intro {
        padding-left: 210px;
        padding-right: 50px;
    }
    .exchange-globe {
        left: 40px;
    }
    .exchange-intro-line {
        left: 175px;
    }
    .exchange-modern-gallery {
        gap: 15px;
        padding: 25px;
    }
    .exchange-modern-img {
        height: 310px;
    }
    .exchange-modern-bottom {
        grid-template-columns: 1fr;
    }
    .exchange-benefits {
        padding-bottom: 10px;
    }
    .exchange-bottom-text {
        padding-left: 0;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {
    .exchange-modern {
        padding: 30px 12px;
    }
    /* INTRO */
    .exchange-modern-intro {
        display: flex;
        flex-direction: column;
        align-items: center;
        min-height: auto;
        padding: 28px 22px 30px;
        border-radius: 17px;
    }
    .exchange-globe {
        position: relative;
        left: auto;
        top: auto;
        width: 62px;
        height: 62px;
        margin-bottom: 18px;
        box-shadow: 0 0 0 9px #f3f7f3, 0 0 0 10px #dce9df;
    }
    .exchange-globe span {
        font-size: 34px;
    }
    .exchange-intro-line {
        position: relative;
        left: auto;
        top: auto;
        bottom: auto;
        width: 65px;
        height: 2px;
        margin-bottom: 18px;
    }
    .exchange-modern-intro p {
        width: 100%;
        max-width: none;
        text-align: center;
        font-size: 11px;
        line-height: 1.8;
    }
    .exchange-plane {
        display: none;
    }
    /* GALLERY */
    .exchange-modern-gallery {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 15px;
        padding: 14px;
        border-radius: 17px;
    }
    .exchange-modern-img {
        height: 280px;
    }
    .exchange-card-bottom {
        min-height: 70px;
        padding: 10px 15px;
    }
    .exchange-card-icon {
        width: 43px;
        height: 43px;
        font-size: 22px;
    }
    .exchange-card-bottom strong,
    .exchange-card-bottom span {
        font-size: 13px;
    }
    /* BOTTOM */
    .exchange-modern-bottom {
        display: block;
        margin-top: 15px;
        padding: 22px 18px;
        border-radius: 17px;
    }
    .exchange-benefits {
        grid-template-columns: 1fr 1fr;
        row-gap: 20px;
    }
    .exchange-benefit {
        padding: 5px 10px;
        border-right: 1px solid #cfdcd3;
    }
    .exchange-benefit:nth-child(2),
    .exchange-benefit:nth-child(4) {
        border-right: none;
    }
    .exchange-benefit p {
        font-size: 10px;
    }
    .benefit-icon {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }
    .exchange-bottom-text {
        margin-top: 25px;
        padding-top: 20px;
        border-top: 1px solid #d6e0d8;
    }
    .exchange-bottom-line {
        height: 75px;
    }
    .exchange-bottom-text p {
        font-size: 10px;
        line-height: 1.75;
    }
}


/* International Exchange mobile hero: leave room for the fixed header logo
   so the page heading starts cleanly below it. */

@media (max-width: 700px) {
    .houses-page .tuition-page-hero {
        padding-top: 165px;
    }
    .houses-page .tuition-page-hero .simple-page-title {
        margin-top: 20px;
    }
    .international-exchange-page .tuition-page-hero {
        min-height: 330px !important;
        padding-top: 140px !important;
    }
    .international-exchange-page .tuition-page-hero .simple-page-title {
        display: block;
        margin-top: 28px !important;
        font-size: 38px;
    }
}


/* =====================================================
   STUDENT DEVELOPMENT
===================================================== */

.student-development {
    width: 100%;
    padding: 55px 15px;
    background: #f6f8f5;
    overflow: hidden;
}

.student-development-wrap {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}


/* =====================================================
   QUOTE
===================================================== */

.sdm-quote {
    position: relative;
    margin: 0 auto 30px;
    padding: 32px 60px 27px;
    text-align: center;
    background: #ffffff;
    border: 1px solid #dce5de;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(8, 75, 49, .05);
}

.sdm-quote-mark {
    display: block;
    margin-bottom: 4px;
    color: #f4c400;
    font-size: 46px;
    font-weight: 700;
    line-height: .7;
}

.sdm-quote p {
    margin: 0 auto 12px;
    color: #084b31;
    font-size: 16px;
    line-height: 1.7;
}

.sdm-quote small {
    color: #f4c400;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1.5px;
}


/* =====================================================
   INTRO
===================================================== */

.sdm-intro {
    margin-bottom: 20px;
    padding: 0 25px;
}

.sdm-intro p {
    margin: 0;
    color: #4f5c54;
    font-size: 16px;
    line-height: 1.85;
    text-align: left;
}


/* =====================================================
   FEATURE
===================================================== */

.sdm-feature {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    min-height: 335px;
    margin-bottom: 18px;
    background: #ffffff;
    border: 1px solid #dce5de;
    border-radius: 18px;
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease;
}

.sdm-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(8, 75, 49, .09);
}


/* =====================================================
   REVERSE
===================================================== */

.sdm-feature-reverse {
    grid-template-columns: 1.3fr .7fr;
}


/* =====================================================
   CONTENT
===================================================== */

.sdm-feature-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 42px 55px;
    background: #f5faf7;
    overflow: hidden;
}


/* decorative circle */

.sdm-feature-content::before {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    right: -90px;
    top: -90px;
    border: 1px solid #dce9df;
    border-radius: 50%;
}

.sdm-feature-content::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    left: -50px;
    bottom: -50px;
    background: #eaf4ee;
    border-radius: 50%;
}


/* =====================================================
   NUMBER
===================================================== */

.sdm-number {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin-bottom: 15px;
    border-radius: 50%;
    background: #084b31;
    color: #f4c400;
    font-size: 9px;
    font-weight: 700;
}


/* =====================================================
   HEADING
===================================================== */

.sdm-feature-content h3 {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #084b31;
    font-size: 34px;
    font-weight: 500;
    line-height: 1.1;
}


/* =====================================================
   LINE
===================================================== */

.sdm-line {
    position: relative;
    z-index: 2;
    width: 48px;
    height: 3px;
    margin: 14px 0 18px;
    background: #f4c400;
}


/* =====================================================
   CONTENT PARA
===================================================== */

.sdm-feature-content p {
    position: relative;
    z-index: 2;
    max-width: 570px;
    margin: 0;
    color: #56635b;
    font-size: 16px;
    line-height: 1.8;
}


/* =====================================================
   IMAGE
===================================================== */

.sdm-feature-image {
    position: relative;
    min-height: 335px;
    overflow: hidden;
}

.sdm-feature-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(8, 75, 49, .06), transparent 35%);
    pointer-events: none;
}

.sdm-feature-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .6s ease;
}

.sdm-feature:hover .sdm-feature-image img {
    transform: scale(1.035);
}


/* =====================================================
   YELLOW IMAGE EDGE
===================================================== */

.sdm-feature:nth-of-type(3) .sdm-feature-image::before,
.sdm-feature:nth-of-type(4) .sdm-feature-image::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #f4c400;
    z-index: 3;
}

.sdm-feature:nth-of-type(3) .sdm-feature-image::before {
    left: 0;
}

.sdm-feature:nth-of-type(4) .sdm-feature-image::before {
    right: 0;
}


/* =====================================================
   BOTTOM
===================================================== */

.sdm-bottom {
    margin-top: 2px;
    padding: 30px 40px;
    background: #084b31;
    border-radius: 18px;
}

.sdm-bottom-text {
    max-width: 1250px;
    margin: 0 auto;
}

.sdm-bottom-text p {
    margin: 0 0 13px;
    color: rgba(255, 255, 255, .78);
    font-size: 16px;
    line-height: 1.8;
}

.sdm-bottom-text p:last-child {
    margin-bottom: 0;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {
    .sdm-feature {
        grid-template-columns: 1fr 1fr;
    }
    .sdm-feature-reverse {
        grid-template-columns: 1fr 1fr;
    }
    .sdm-feature-content {
        padding: 35px;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {
    .student-development {
        padding: 40px 12px;
    }
    /* QUOTE */
    .sdm-quote {
        padding: 28px 22px 23px;
        margin-bottom: 20px;
        border-radius: 15px;
    }
    .sdm-quote-mark {
        font-size: 38px;
    }
    .sdm-quote p {
        font-size: 10px;
        line-height: 1.7;
    }
    /* INTRO */
    .sdm-intro {
        padding: 0 8px;
        margin-bottom: 14px;
    }
    .sdm-intro p {
        font-size: 10px;
        line-height: 1.8;
    }
    /* FEATURES */
    .sdm-feature,
    .sdm-feature-reverse {
        display: flex;
        flex-direction: column;
        margin-bottom: 14px;
        border-radius: 15px;
    }
    .sdm-feature-image {
        order: -1;
        min-height: 240px;
        height: 240px;
    }
    .sdm-feature-content {
        min-height: 250px;
        padding: 30px 22px;
    }
    .sdm-feature-content h3 {
        font-size: 27px;
    }
    .sdm-feature-content p {
        font-size: 10px;
        line-height: 1.8;
    }
    /* BOTTOM */
    .sdm-bottom {
        padding: 25px 20px;
        border-radius: 15px;
    }
    .sdm-bottom-text p {
        font-size: 10px;
        line-height: 1.8;
    }
}


/* =====================================================
   SPORTS SHOWCASE
===================================================== */

.sports-showcase {
    width: 100%;
    padding: 55px 15px;
    background: #f6f8f5;
    overflow: hidden;
}

.sports-showcase-wrap {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}


/* =====================================================
   IMAGE SHOWCASE
===================================================== */

.sports-visual {
    position: relative;
    display: grid;
    grid-template-columns: 1.25fr .95fr;
    gap: 22px;
    min-height: 470px;
    padding: 28px;
    background: #084b31;
    border-radius: 24px;
    overflow: hidden;
}


/* =====================================================
   DECORATION
===================================================== */

.sports-visual::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    left: -150px;
    bottom: -160px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 50%;
}

.sports-visual::after {
    content: "";
    position: absolute;
    width: 430px;
    height: 430px;
    right: -220px;
    top: -250px;
    border: 1px solid rgba(244, 196, 0, .12);
    border-radius: 50%;
}


/* =====================================================
   IMAGE
===================================================== */

.sports-image {
    position: relative;
    z-index: 2;
    overflow: hidden;
    background: #ffffff;
}

.sports-image-large {
    height: 414px;
    border-radius: 16px 0 16px 16px;
}

.sports-image-small {
    height: 414px;
    margin-top: 45px;
    border-radius: 0 16px 16px 16px;
}

.sports-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .6s ease;
}

.sports-image:hover img {
    transform: scale(1.045);
}


/* =====================================================
   IMAGE LABEL
===================================================== */

.sports-image-label {
    position: absolute;
    left: 18px;
    bottom: 18px;
    padding: 8px 13px;
    background: #ffffff;
    color: #084b31;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2px;
}

.sports-image-label::before {
    content: "";
    display: inline-block;
    width: 17px;
    height: 3px;
    margin-right: 8px;
    vertical-align: middle;
    background: #f4c400;
}


/* =====================================================
   YELLOW BLOCK
===================================================== */

.sports-yellow-block {
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;
    width: 105px;
    height: 7px;
    background: #f4c400;
}


/* =====================================================
   CONTENT
===================================================== */

.sports-content {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 50px;
    margin-top: 22px;
    padding: 42px 48px;
    background: #ffffff;
    border: 1px solid #dce5de;
    border-radius: 20px;
}


/* =====================================================
   LEFT CONTENT
===================================================== */

.sports-content-left {
    padding-right: 45px;
    border-right: 1px solid #dce5de;
}

.sports-mini-title {
    display: inline-block;
    color: #084b31;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.sports-line {
    width: 55px;
    height: 4px;
    margin: 15px 0 20px;
    background: #f4c400;
}

.sports-content-left p {
    margin: 0;
    color: #4f5c54;
    font-size: 16px;
    line-height: 1.85;
}


/* =====================================================
   RIGHT CONTENT
===================================================== */

.sports-content-right {
    display: flex;
    align-items: center;
    gap: 22px;
}

.sports-accent {
    flex-shrink: 0;
    width: 5px;
    height: 95px;
    background: #f4c400;
}

.sports-content-right p {
    margin: 0;
    color: #4f5c54;
    font-size: 16px;
    line-height: 1.85;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {
    .sports-visual {
        grid-template-columns: 1fr 1fr;
        min-height: 400px;
        padding: 20px;
    }
    .sports-image-large,
    .sports-image-small {
        height: 350px;
    }
    .sports-image-small {
        margin-top: 30px;
    }
    .sports-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .sports-content-left {
        padding-right: 0;
        padding-bottom: 25px;
        border-right: none;
        border-bottom: 1px solid #dce5de;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {
    .sports-showcase {
        padding: 35px 12px;
    }
    .sports-visual {
        grid-template-columns: 1fr;
        gap: 12px;
        min-height: auto;
        padding: 12px;
        border-radius: 17px;
    }
    .sports-image-large,
    .sports-image-small {
        height: 250px;
        margin-top: 0;
        border-radius: 12px;
    }
    .sports-image-small {
        height: 220px;
    }
    .sports-image-label {
        left: 12px;
        bottom: 12px;
        font-size: 7px;
    }
    .sports-content {
        display: block;
        margin-top: 14px;
        padding: 28px 22px;
        border-radius: 16px;
    }
    .sports-content-left {
        padding-right: 0;
        padding-bottom: 22px;
        border-bottom: 1px solid #dce5de;
    }
    .sports-mini-title {
        font-size: 8px;
    }
    .sports-content-left p,
    .sports-content-right p {
        font-size: 10px;
        line-height: 1.8;
    }
    .sports-content-right {
        margin-top: 22px;
        gap: 15px;
    }
    .sports-accent {
        height: 75px;
        width: 4px;
    }
}


/* Final fix: remove the legacy corner decoration so it never covers achiever text. */

.achievement-wall .achievement-card::before,
.achievement-wall .achievement-card::after {
    content: none !important;
    display: none !important;
    clip-path: none !important;
}

.achievement-wall .achievement-card {
    padding-left: 25px !important;
}


/* Sports Star Achievers: standalone ranking-card layout */

.star-achievers-page .achievement-wall {
    padding: 76px 28px 110px;
    background: #f4f6f1;
}

.star-achievers-page .achievement-wrap {
    width: min(1320px, 100%);
    max-width: none;
    margin: 0 auto;
}

.star-achievers-page .achievement-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    counter-reset: star;
}

.star-achievers-page .achievement-item,
.star-achievers-page .achievement-item:nth-child(n) {
    min-height: 0;
    padding: 0;
    transform: none;
    counter-increment: star;
}

.star-achievers-page .achievement-card,
.star-achievers-page .achievement-grid>.achievement-item:last-child .achievement-card {
    min-height: 164px;
    height: 100%;
    padding: 30px 28px 26px 86px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    border: 1px solid #d8e4da;
    border-radius: 6px 28px 6px 28px;
    background: #fff;
    box-shadow: 0 12px 26px rgba(8, 75, 49, .06);
}

.star-achievers-page .achievement-card::before {
    content: counter(star, decimal-leading-zero) !important;
    display: grid !important;
    place-items: center;
    position: absolute;
    top: 25px;
    left: 25px;
    width: 42px;
    height: 42px;
    color: #084b31;
    background: #f4c400;
    border-radius: 50%;
    clip-path: none !important;
    font: 800 11px Arial, sans-serif;
    letter-spacing: 1px;
}

.star-achievers-page .achievement-card::after {
    content: "";
    display: block !important;
    position: absolute;
    right: -34px;
    bottom: -34px;
    width: 92px;
    height: 92px;
    border: 1px solid rgba(8, 75, 49, .12);
    border-radius: 50%;
}

.star-achievers-page .achievement-name {
    margin: 0 0 13px;
    color: #084b31;
    font: 500 22px/1.15 Georgia, serif;
}

.star-achievers-page .achievement-achievement {
    padding: 8px 13px;
    color: #084b31;
    background: #edf5ef;
    border-radius: 3px;
    font: 700 11px/1.2 Arial, sans-serif;
}

.star-achievers-page .achievement-featured .achievement-card {
    border-color: #075c43;
    background: linear-gradient(135deg, #075c43, #0b7650);
}

.star-achievers-page .achievement-featured .achievement-name {
    color: #fff;
}

.star-achievers-page .achievement-featured .achievement-achievement {
    color: #084b31;
    background: #f4c400;
    font-size: 16px;
}

.star-achievers-page .achievement-grid>.achievement-item:last-child {
    grid-column: auto !important;
}

.star-achievers-page .achievement-grid>.achievement-item:last-child .achievement-card {
    min-height: 164px;
    background: #fff;
}

@media (max-width: 900px) {
    .star-achievers-page .achievement-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .star-achievers-page .achievement-wall {
        padding: 42px 16px 70px;
    }
    .star-achievers-page .achievement-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .star-achievers-page .achievement-card,
    .star-achievers-page .achievement-grid>.achievement-item:last-child .achievement-card {
        min-height: 132px;
        padding: 25px 20px 22px 30px !important;
        border-radius: 5px 22px 5px 22px;
    }
    .star-achievers-page .achievement-card::before {
        top: 22px;
        left: 20px;
        width: 40px;
        height: 40px;
    }
    .star-achievers-page .achievement-name {
        font-size: 19px;
    }
    .star-achievers-page .achievement-achievement {
        font-size: 10px;
    }
}


/* Sports achievers: align cards and improve text visibility. */

.achievement-grid {
    align-items: stretch;
    gap: 20px;
}

.achievement-item,
.achievement-item:nth-child(2),
.achievement-item:nth-child(3),
.achievement-item:nth-child(5),
.achievement-item:nth-child(6),
.achievement-item:nth-child(8),
.achievement-item:nth-child(9),
.achievement-item:nth-child(11),
.achievement-item:nth-child(12),
.achievement-item:nth-child(14),
.achievement-item:nth-child(15),
.achievement-item:nth-child(17),
.achievement-item:nth-child(18) {
    min-height: 0;
    padding: 0;
    transform: none;
}

.achievement-card {
    min-height: 150px;
    height: 100%;
    padding: 28px 26px;
    border-radius: 18px 0 18px 0;
}

.achievement-name {
    margin-bottom: 14px;
    font-size: 16px;
    line-height: 1.3;
}

.achievement-achievement {
    padding: 7px 12px;
    font-size: 11px;
    line-height: 1.3;
}

.achievement-grid>.achievement-item:last-child {
    grid-column: 1 / -1 !important;
}

.achievement-grid>.achievement-item:last-child .achievement-card {
    display: grid;
    grid-template-columns: 90px minmax(220px, .7fr) minmax(0, 1.3fr);
    align-items: center;
    column-gap: 22px;
    min-height: 120px;
    background: linear-gradient(110deg, #075c43, #087a55);
    border-color: transparent;
}

.achievement-grid>.achievement-item:last-child .achievement-name {
    margin: 0;
    color: #fff;
}

.achievement-grid>.achievement-item:last-child .achievement-achievement {
    justify-self: start;
}

@media (max-width: 900px) {
    .achievement-grid>.achievement-item:last-child .achievement-card {
        grid-template-columns: 70px minmax(0, 1fr);
        row-gap: 10px;
    }
    .achievement-grid>.achievement-item:last-child .achievement-name,
    .achievement-grid>.achievement-item:last-child .achievement-achievement {
        grid-column: 2;
    }
}

@media (max-width: 600px) {
    .achievement-card {
        min-height: 120px;
        padding: 24px 20px;
    }
    .achievement-grid>.achievement-item:last-child {
        grid-column: auto !important;
    }
    .achievement-grid>.achievement-item:last-child .achievement-card {
        display: flex;
        min-height: 120px;
    }
}


/* Alternate achievers layout: a balanced four-column editorial wall. */

.achievement-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.achievement-grid>.achievement-item:last-child {
    grid-column: auto !important;
}

.achievement-item,
.achievement-item:nth-child(n) {
    min-height: 0;
    padding: 0;
    transform: none;
}

.achievement-card,
.achievement-grid>.achievement-item:last-child .achievement-card {
    display: flex;
    min-height: 164px;
    height: 100%;
    padding: 30px 24px 25px;
    justify-content: flex-end;
    align-items: flex-start;
    border: 1px solid #d8e5dc;
    border-left: 4px solid #f4c400;
    border-radius: 16px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 12px 30px rgba(8, 75, 49, .07);
}

.achievement-card::before {
    top: 0;
    right: auto;
    left: 0;
    width: 42px;
    height: 42px;
    background: #084b31;
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.achievement-card::after {
    top: 13px;
    right: 14px;
    width: 6px;
    height: 6px;
}

.achievement-name {
    margin: 0 0 13px;
    color: #084b31;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.25;
}

.achievement-achievement {
    padding: 7px 12px;
    color: #084b31;
    background: #eef5ef;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.3;
    border-radius: 999px;
}

.achievement-card .achievement-achievement::before {
    display: none;
}

.achievement-featured .achievement-card {
    border-color: #084b31;
    border-left-color: #f4c400;
    background: linear-gradient(135deg, #075c43, #087a55);
    box-shadow: 0 18px 38px rgba(8, 75, 49, .18);
}

.achievement-featured .achievement-card::before {
    background: #f4c400;
}

.achievement-featured .achievement-name {
    color: #fff;
}

.achievement-featured .achievement-achievement {
    color: #084b31;
    background: #f4c400;
}

.achievement-item:hover {
    transform: translateY(-5px) !important;
}

@media (max-width: 1100px) {
    .achievement-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .achievement-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .achievement-card,
    .achievement-grid>.achievement-item:last-child .achievement-card {
        min-height: 145px;
        padding: 27px 18px 20px;
    }
    .achievement-name {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .achievement-grid {
        grid-template-columns: 1fr;
    }
}


/* Final redesign: replace the old corner-card wall with a clean achiever timeline. */

.achievement-wall {
    padding: 86px 28px 110px;
    background: linear-gradient(180deg, #f7faf7 0%, #eef5f0 100%);
}

.achievement-wrap {
    max-width: 1180px;
}

.achievement-grid {
    counter-reset: achievement;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.achievement-item,
.achievement-item:nth-child(n) {
    counter-increment: achievement;
    min-height: 0;
    padding: 0;
    transform: none;
}

.achievement-card,
.achievement-grid>.achievement-item:last-child .achievement-card {
    position: relative;
    display: flex;
    min-height: 150px;
    height: 100%;
    padding: 30px 28px 28px 92px;
    justify-content: center;
    align-items: flex-start;
    border: 1px solid rgba(8, 75, 49, .12);
    border-left: 1px solid rgba(8, 75, 49, .12);
    border-radius: 22px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 14px 34px rgba(8, 75, 49, .07);
}

.achievement-card::before {
    content: counter(achievement, decimal-leading-zero);
    position: absolute;
    top: 25px;
    left: 25px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: #084b31;
    background: #f4c400;
    border-radius: 50%;
    clip-path: none;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}

.achievement-card::after {
    display: none;
}

.achievement-name {
    margin: 0 0 13px;
    color: #084b31;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
}

.achievement-achievement {
    display: inline-flex;
    width: fit-content;
    padding: 8px 14px;
    color: #084b31;
    background: #edf5ef;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.25;
}

.achievement-card .achievement-achievement::before {
    display: none;
}

.achievement-featured .achievement-card {
    border-color: #075c43;
    background: linear-gradient(135deg, #075c43, #087a55);
    box-shadow: 0 20px 42px rgba(8, 75, 49, .2);
}

.achievement-featured .achievement-card::before {
    color: #084b31;
    background: #f4c400;
}

.achievement-featured .achievement-name {
    color: #fff;
}

.achievement-featured .achievement-achievement {
    color: #084b31;
    background: #f4c400;
}

.achievement-grid>.achievement-item:last-child {
    grid-column: 1 / -1 !important;
}

.achievement-grid>.achievement-item:last-child .achievement-card {
    min-height: 125px;
    background: #fff;
}

@media (max-width: 760px) {
    .achievement-wall {
        padding: 58px 16px 76px;
    }
    .achievement-grid {
        grid-template-columns: 1fr;
    }
    .achievement-grid>.achievement-item:last-child {
        grid-column: auto !important;
    }
}

@media (max-width: 480px) {
    .achievement-card,
    .achievement-grid>.achievement-item:last-child .achievement-card {
        min-height: 132px;
        padding: 26px 20px 24px 82px;
    }
    .achievement-card::before {
        top: 22px;
        left: 20px;
        width: 40px;
        height: 40px;
    }
    .achievement-name {
        font-size: 16px;
    }
    .achievement-achievement {
        font-size: 11px;
    }
}


/* =====================================================
   CALIBRATING FITNESS
===================================================== */

.fitness-page {
    background: #f4f8f4;
    color: #073f2d;
}

.fitness-wrap {
    width: min(1420px, calc(100% - 64px));
    margin: 0 auto;
}

.fitness-intro {
    padding: 40px 0 30px;
}

.fitness-intro-card {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
    align-items: stretch;
    gap: 64px;
    padding: 54px;
    background: #fff;
    border: 1px solid #dce8df;
    border-radius: 30px 0 30px 0;
    box-shadow: 0 25px 70px rgba(7, 63, 45, 0.1);
}

.fitness-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fitness-eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    color: #c49516;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
}

.fitness-copy h2 {
    margin: 0;
    color: #084b31;
    font-size: 52px;
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: 1px;
}

.fitness-copy h2 span {
    color: #efb900;
}

.fitness-line {
    width: 58px;
    height: 3px;
    margin: 24px 0 28px;
    background: #f4c400;
}

.fitness-copy p {
    max-width: 640px;
    margin: 0 0 18px;
    color: #52625a;
    font-size: 16px;
    line-height: 1.8;
}

.fitness-copy p:last-child {
    margin-bottom: 0;
}

.fitness-visual {
    position: relative;
    min-height: 540px;
    overflow: hidden;
    border-radius: 24px 0 24px 0;
    background: #075c43;
}

.fitness-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient( 180deg, rgba(3, 39, 27, 0.03) 42%, rgba(3, 39, 27, 0.7) 100%);
    pointer-events: none;
}

.fitness-visual::before {
    content: "";
    position: absolute;
    right: -100px;
    top: -100px;
    width: 350px;
    height: 350px;
    border: 1px solid rgba(244, 196, 0, 0.45);
    border-radius: 50%;
    box-shadow: 0 0 0 24px rgba(244, 196, 0, 0.07), 0 0 0 48px rgba(244, 196, 0, 0.04);
}

.fitness-image {
    position: absolute;
    overflow: hidden;
    margin: 0;
    border: 7px solid rgba(255, 255, 255, 0.92);
    box-shadow: 0 22px 50px rgba(0, 35, 24, 0.25);
    z-index: 2;
}

.fitness-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fitness-image-main {
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.fitness-image-accent {
    right: 24px;
    bottom: 24px;
    width: 39%;
    height: 34%;
    border-radius: 20px 0 20px 0;
}

.fitness-badge {
    position: absolute;
    left: 28px;
    bottom: 28px;
    z-index: 3;
    padding: 13px 18px;
    color: #084b31;
    background: #f4c400;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1.4;
}

.fitness-badge strong {
    font-size: 12px;
}

@media (max-width: 1000px) {
    .fitness-intro-card {
        grid-template-columns: 1fr;
        gap: 42px;
        padding: 42px;
    }
    .fitness-visual {
        min-height: 500px;
    }
}

@media (max-width: 600px) {
    .fitness-wrap {
        width: min(100% - 32px, 560px);
    }
    .fitness-intro {
        padding: 48px 0 64px;
    }
    .fitness-intro-card {
        gap: 30px;
        padding: 28px 20px 20px;
        border-radius: 24px 0 24px 0;
    }
    .fitness-copy h2 {
        font-size: 32px !important;
    }
    .fitness-copy p {
        font-size: 15px;
        line-height: 1.7;
    }
    .fitness-visual {
        min-height: 390px;
        border-radius: 20px 0 20px 0;
    }
    .fitness-image {
        border-width: 5px;
    }
    .fitness-badge {
        left: 16px;
        bottom: 16px;
    }
}


/* =====================================================
   ACHIEVEMENT WALL
===================================================== */

.achievement-wall {
    width: 100%;
    padding: 65px 20px;
    background: #f5f7f3;
    overflow: hidden;
}

.achievement-wrap {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}


/* =====================================================
   GRID
===================================================== */

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 24px;
}


/* =====================================================
   ITEM
===================================================== */

.achievement-item {
    position: relative;
    min-height: 125px;
    padding: 10px;
    background: linear-gradient( 135deg, rgba(8, 75, 49, .04), transparent 60%);
    border-radius: 18px;
    transition: transform .35s ease;
}


/* =====================================================
   OFFSET LAYOUT
===================================================== */

.achievement-item:nth-child(2),
.achievement-item:nth-child(5),
.achievement-item:nth-child(8),
.achievement-item:nth-child(11),
.achievement-item:nth-child(14),
.achievement-item:nth-child(17) {
    transform: translateY(18px);
}

.achievement-item:nth-child(3),
.achievement-item:nth-child(6),
.achievement-item:nth-child(9),
.achievement-item:nth-child(12),
.achievement-item:nth-child(15),
.achievement-item:nth-child(18) {
    transform: translateY(-5px);
}


/* =====================================================
   CARD
===================================================== */

.achievement-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 105px;
    padding: 25px 25px 30px;
    background: #ffffff;
    border: 1px solid #d8e2db;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(8, 75, 49, .045);
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}


/* =====================================================
   HOVER
===================================================== */

.achievement-item:hover {
    transform: translateY(-7px);
}

.achievement-item:nth-child(2):hover,
.achievement-item:nth-child(5):hover,
.achievement-item:nth-child(8):hover,
.achievement-item:nth-child(11):hover,
.achievement-item:nth-child(14):hover,
.achievement-item:nth-child(17):hover {
    transform: translateY(11px);
}

.achievement-card:hover {
    border-color: #084b31;
    box-shadow: 0 18px 35px rgba(8, 75, 49, .12);
}


/* =====================================================
   DECORATIVE GREEN CORNER
===================================================== */

.achievement-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 55px;
    height: 55px;
    background: #084b31;
    clip-path: polygon(100% 0, 100% 100%, 0 0);
}


/* =====================================================
   YELLOW DOT
===================================================== */

.achievement-card::after {
    content: "";
    position: absolute;
    top: 13px;
    right: 13px;
    width: 7px;
    height: 7px;
    background: #f4c400;
    border-radius: 50%;
    z-index: 2;
}


/* =====================================================
   NAME
===================================================== */

.achievement-name {
    position: relative;
    z-index: 3;
    margin-bottom: 13px;
    color: #084b31;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.25;
}


/* =====================================================
   ACHIEVEMENT
===================================================== */

.achievement-achievement {
    position: relative;
    z-index: 3;
    display: inline-block;
    width: fit-content;
    padding: 6px 12px;
    background: #084b31;
    color: #ffffff;
    font-size: 9px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: .2px;
    border-radius: 4px;
}


/* =====================================================
   FEATURED 95.2%
===================================================== */

.achievement-featured .achievement-card {
    background: #084b31;
    border-color: #084b31;
}

.achievement-featured .achievement-card::before {
    background: #f4c400;
}

.achievement-featured .achievement-card::after {
    background: #084b31;
}

.achievement-featured .achievement-name {
    color: #ffffff;
}

.achievement-featured .achievement-achievement {
    background: #f4c400;
    color: #084b31;
}


/* =====================================================
   BOTTOM ACCENT
===================================================== */

.achievement-card .achievement-achievement::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    margin-right: 6px;
    vertical-align: middle;
    background: #f4c400;
    border-radius: 50%;
}

.achievement-featured .achievement-achievement::before {
    background: #084b31;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {
    .achievement-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .achievement-item:nth-child(2),
    .achievement-item:nth-child(5),
    .achievement-item:nth-child(8),
    .achievement-item:nth-child(11),
    .achievement-item:nth-child(14),
    .achievement-item:nth-child(17) {
        transform: translateY(10px);
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {
    .achievement-wall {
        padding: 40px 12px;
    }
    .achievement-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .achievement-item,
    .achievement-item:nth-child(2),
    .achievement-item:nth-child(3),
    .achievement-item:nth-child(5),
    .achievement-item:nth-child(6),
    .achievement-item:nth-child(8),
    .achievement-item:nth-child(9),
    .achievement-item:nth-child(11),
    .achievement-item:nth-child(12),
    .achievement-item:nth-child(14),
    .achievement-item:nth-child(15),
    .achievement-item:nth-child(17),
    .achievement-item:nth-child(18) {
        transform: none;
    }
    .achievement-item {
        min-height: 105px;
        padding: 5px;
    }
    .achievement-card {
        min-height: 90px;
        padding: 22px 20px 27px;
        border-radius: 12px;
    }
    .achievement-name {
        font-size: 14px;
    }
    .achievement-achievement {
        font-size: 8px;
    }
}


/* Final fix: remove legacy corner decoration so it never covers achiever text. */

.achievement-wall .achievement-card::before,
.achievement-wall .achievement-card::after {
    content: none !important;
    display: none !important;
    clip-path: none !important;
}

.achievement-wall .achievement-card {
    padding-left: 25px !important;
}


/* =========================================================
   ALUMNI MODERN SECTION
========================================================= */

.alumni-modern-section {
    width: 100%;
    padding: 55px 20px;
    background: #f7f9f6;
    overflow: hidden;
}

.alumni-container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}


/* =========================================================
   INTRO
========================================================= */

.alumni-intro {
    display: flex;
    align-items: center;
    max-width: 1150px;
    margin: 0 auto 35px;
    padding: 8px 25px 8px 0;
}

.alumni-quote-mark {
    flex-shrink: 0;
    width: 90px;
    color: #086b43;
    font-size: 75px;
    font-weight: 700;
    line-height: .8;
    text-align: center;
}

.alumni-intro-content {
    padding-left: 25px;
    border-left: 2px solid #f4c400;
}

.alumni-intro-content p {
    margin: 0 0 10px;
    color: #303b35;
    font-size: 15px;
    line-height: 1.75;
}

.alumni-intro-content p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   EVENT COMMON
========================================================= */

.alumni-event {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
    margin-bottom: 25px;
    border-radius: 15px;
    overflow: hidden;
}


/* =========================================================
   LIGHT EVENT
========================================================= */

.alumni-event-light {
    background: #ffffff;
    border: 1px solid #dbe6df;
    box-shadow: 0 8px 30px rgba(8, 75, 49, .045);
}


/* =========================================================
   GREEN EVENT
========================================================= */

.alumni-event-green {
    background: #086b43;
    box-shadow: 0 12px 35px rgba(8, 75, 49, .12);
}


/* =========================================================
   EVENT CONTENT
========================================================= */

.alumni-event-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 55px 60px;
}

.alumni-event-text {
    position: relative;
    z-index: 2;
    flex: 1;
}


/* =========================================================
   ICON
========================================================= */

.alumni-event-icon {
    flex-shrink: 0;
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dce8e1;
    border-radius: 50%;
    background: #f7faf8;
    color: #086b43;
    font-size: 25px;
}

.alumni-event-green .alumni-event-icon {
    background: transparent;
    border-color: rgba(255, 255, 255, .35);
    color: #f4c400;
}


/* =========================================================
   EVENT HEADING
========================================================= */

.alumni-event-text h3 {
    margin: 0;
    color: #086b43;
    font-size: 33px;
    font-weight: 500;
    line-height: 1.2;
}

.alumni-event-green .alumni-event-text h3 {
    color: #ffffff;
}


/* =========================================================
   YELLOW LINE
========================================================= */

.alumni-yellow-line {
    display: block;
    width: 42px;
    height: 3px;
    margin: 15px 0 20px;
    background: #f4c400;
}


/* =========================================================
   EVENT PARAGRAPH
========================================================= */

.alumni-event-text p {
    margin: 0;
    color: #5d6962;
    font-size: 16px;
    line-height: 1.85;
}

.alumni-event-green .alumni-event-text p {
    color: rgba(255, 255, 255, .82);
}


/* =========================================================
   IMAGE
========================================================= */

.alumni-event-image {
    position: relative;
    min-height: 420px;
    overflow: hidden;
}

.alumni-event-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .7s ease;
}

.alumni-event:hover .alumni-event-image img {
    transform: scale(1.035);
}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.alumni-event-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(8, 75, 49, .08), transparent 35%);
    pointer-events: none;
}


/* =========================================================
   GREEN EVENT DECORATION
========================================================= */

.alumni-event-green {
    position: relative;
}

.alumni-event-green::before {
    content: "";
    position: absolute;
    width: 230px;
    height: 230px;
    right: -110px;
    top: -110px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 50%;
}

.alumni-event-green::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    right: 25px;
    top: 25px;
    border: 1px dashed rgba(255, 255, 255, .15);
    border-radius: 50%;
}


/* =========================================================
   INVITE
========================================================= */

.alumni-invite {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 5px 0 25px;
    padding: 30px 45px;
    background: #f0f5f1;
    border-radius: 15px;
    border: 1px solid #e0e9e2;
}

.alumni-invite-icon {
    flex-shrink: 0;
    width: 85px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #086b43;
    color: #ffffff;
    font-size: 30px;
    box-shadow: 0 0 0 5px #f4c400, 0 0 0 6px #086b43;
}

.alumni-invite-line {
    width: 2px;
    height: 105px;
    flex-shrink: 0;
    background: #f4c400;
}

.alumni-invite-content {
    max-width: 950px;
}

.alumni-invite-content p {
    margin: 0 0 10px;
    color: #3e4b44;
    font-size: 15px;
    line-height: 1.8;
}

.alumni-invite-content p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   FORM
========================================================= */

.alumni-form-box {
    padding: 32px 40px 38px;
    background: #ffffff;
    border: 2px solid #086b43;
    border-radius: 13px;
}


/* =========================================================
   FORM HEADING
========================================================= */

.alumni-form-heading {
    text-align: center;
    margin-bottom: 25px;
}

.alumni-form-heading h3 {
    margin: 0;
    color: #086b43;
    font-size: 35px;
    font-weight: 500;
}

.alumni-heading-line {
    position: relative;
    width: 75px;
    height: 2px;
    margin: 10px auto 0;
    background: #086b43;
}

.alumni-heading-line span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 7px;
    height: 7px;
    transform: translate(-50%, -50%);
    background: #f4c400;
    border-radius: 50%;
}


/* =========================================================
   FORM ROW
========================================================= */

.alumni-form-row {
    display: grid;
    gap: 22px;
    margin-bottom: 18px;
}

.alumni-two {
    grid-template-columns: 1fr 1fr;
}

.alumni-three {
    grid-template-columns: repeat(3, 1fr);
}


/* =========================================================
   FIELD
========================================================= */

.alumni-field {
    display: flex;
    flex-direction: column;
}

.alumni-field label {
    margin-bottom: 6px;
    color: #4b574f;
    font-size: 14px;
    font-weight: 500;
}

.alumni-field input {
    width: 100%;
    height: 35px;
    padding: 0 10px;
    border: 1px solid #ccd7cf;
    outline: none;
    background: #ffffff;
    color: #26352d;
    font-size: 11px;
    border-radius: 30px;
    transition: border-color .25s ease, box-shadow .25s ease;
}

.alumni-field input:focus {
    border-color: #086b43;
    box-shadow: 0 0 0 3px rgba(8, 107, 67, .08);
}


/* =========================================================
   SUBMIT
========================================================= */

.alumni-submit-wrap {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.alumni-submit-wrap button {
    min-width: 185px;
    height: 42px;
    padding: 0 25px;
    border: none;
    border-radius: 30px;
    background: #f4c400;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

.alumni-submit-wrap button:hover {
    background: #086b43;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(8, 75, 49, .15);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {
    .alumni-event {
        grid-template-columns: 1fr 1fr;
    }
    .alumni-event-content {
        padding: 35px;
    }
    .alumni-event-icon {
        width: 55px;
        height: 55px;
    }
    .alumni-event-text h3 {
        font-size: 22px;
    }
    .alumni-event-text p {
        font-size: 10px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {
    .alumni-modern-section {
        padding: 35px 12px;
    }
    /* INTRO */
    .alumni-intro {
        padding: 0;
        margin-bottom: 22px;
    }
    .alumni-quote-mark {
        width: 45px;
        font-size: 50px;
    }
    .alumni-intro-content {
        padding-left: 15px;
    }
    .alumni-intro-content p {
        font-size: 10px;
        line-height: 1.7;
    }
    /* EVENTS */
    .alumni-event {
        display: flex;
        flex-direction: column;
        margin-bottom: 15px;
        border-radius: 12px;
    }
    .alumni-event-content {
        order: 2;
        padding: 28px 22px;
        gap: 15px;
    }
    .alumni-event-image {
        order: 1;
        min-height: 230px;
        height: 230px;
    }
    .alumni-event-icon {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
    .alumni-event-text h3 {
        font-size: 20px;
    }
    .alumni-event-text p {
        font-size: 9px;
        line-height: 1.75;
    }
    /* INVITE */
    .alumni-invite {
        align-items: flex-start;
        gap: 18px;
        padding: 25px 20px;
        flex-wrap: wrap;
    }
    .alumni-invite-icon {
        width: 62px;
        height: 62px;
        font-size: 22px;
    }
    .alumni-invite-line {
        height: 75px;
    }
    .alumni-invite-content {
        width: 100%;
    }
    .alumni-invite-content p {
        font-size: 9px;
        line-height: 1.75;
    }
    /* FORM */
    .alumni-form-box {
        padding: 25px 18px 30px;
    }
    .alumni-form-heading h3 {
        font-size: 21px;
    }
    .alumni-two,
    .alumni-three {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .alumni-form-row {
        margin-bottom: 14px;
    }
    .alumni-submit-wrap button {
        width: 100%;
    }
}


/* =====================================================
   ALUMNI MODERN
===================================================== */

.alumni-modern {
    width: 100%;
    padding: 30px 20px;
    background: #f6f8f5;
    overflow: hidden;
}

.alumni-modern-inner {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}


/* =====================================================
   QUOTE
===================================================== */

.alumni-quote {
    position: relative;
    margin: 0 auto 32px;
    padding: 27px 20px 12px;
    text-align: center;
    background: #ffffff;
    border: 1px solid #d7e2db;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(8, 75, 49, .05);
}

.alumni-quote::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 75px;
    height: 3px;
    transform: translateX(-50%);
    background: #f4c400;
}

.alumni-quote-mark {
    display: block;
    margin-bottom: 3px;
    color: #f4c400;
    font-size: 43px;
    font-weight: 700;
    line-height: .7;
}

.alumni-quote p {
    margin: 0 auto 11px;
    color: #086b43;
    font-size: 16px;
    line-height: 1.7;
}

.alumni-author {
    color: #f4c400;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
}


/* =====================================================
   INTRO
===================================================== */

.alumni-copy {
    margin: 0 auto 30px;
    padding: 0 25px;
}

.alumni-copy p {
    margin: 0 0 10px;
    color: #4c5951;
    font-size: 16px;
    line-height: 1.8;
}

.alumni-copy p:last-child {
    margin-bottom: 0;
}


/* =====================================================
   IMAGE GALLERY
===================================================== */

.alumni-gallery {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 16px;
    height: 430px;
    margin-bottom: 28px;
    padding: 14px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}

.alumni-gallery::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    right: -170px;
    top: -170px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
}

.alumni-gallery-main,
.alumni-gallery-side {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 11px;
}

.alumni-gallery-main img,
.alumni-gallery-side img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .65s ease;
}

.alumni-gallery-main:hover img,
.alumni-gallery-side:hover img {
    transform: scale(1.04);
}

.alumni-gallery-side {
    margin-top: 42px;
    margin-bottom: 25px;
}


/* =====================================================
   GALLERY LABEL
===================================================== */

.alumni-gallery-label {
    position: absolute;
    z-index: 5;
    left: 30px;
    bottom: 28px;
    padding: 9px 15px;
    background: #ffffff;
    color: #086b43;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.8px;
}

.alumni-gallery-label::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 3px;
    margin-right: 8px;
    vertical-align: middle;
    background: #f4c400;
}


/* =====================================================
   CONNECTION
===================================================== */

.alumni-connection {
    margin: 0 auto 30px;
    padding: 0 25px;
}

.alumni-connection p {
    margin: 0 0 10px;
    color: #4c5951;
    font-size: 16px;
    line-height: 1.8;
}

.alumni-connection p:last-child {
    margin-bottom: 0;
}


/* =====================================================
   SECTION HEADING
===================================================== */

.alumni-section-heading {
    display: flex;
    align-items: center;
    gap: 13px;
    margin: 0 auto 20px;
    padding: 0 25px;
}

.alumni-section-heading span {
    width: 35px;
    height: 3px;
    flex-shrink: 0;
    background: #f4c400;
}

.alumni-section-heading h3 {
    margin: 0;
    color: #086b43;
    font-size: 35px;
    font-weight: 500;
}


/* =====================================================
   INTERACTION
===================================================== */

.alumni-interaction {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    min-height: 340px;
    margin-bottom: 20px;
    background: #ffffff;
    border: 1px solid #d7e2db;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(8, 75, 49, .045);
}

.alumni-interaction-reverse {
    grid-template-columns: 1.15fr .85fr;
}


/* =====================================================
   INTERACTION TEXT
===================================================== */

.alumni-interaction-text {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 50px;
    background: #f1f7f3;
    overflow: hidden;
}

.alumni-interaction-text::before {
    content: "";
    position: absolute;
    right: -80px;
    top: -80px;
    width: 180px;
    height: 180px;
    border: 1px solid #dce8e0;
    border-radius: 50%;
}

.alumni-small-label {
    position: relative;
    z-index: 2;
    width: 31px;
    height: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    background: #086b43;
    color: #ffffff;
    border-radius: 50%;
    font-size: 8px;
    font-weight: 700;
}

.alumni-interaction-text h4 {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #086b43;
    font-size: 30px;
    font-weight: 500;
}

.alumni-yellow-line {
    position: relative;
    z-index: 2;
    width: 42px;
    height: 3px;
    margin: 13px 0 17px;
    background: #f4c400;
}

.alumni-interaction-text p {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0;
    color: #56635b;
    font-size: 16px;
    line-height: 1.85;
}


/* =====================================================
   INTERACTION IMAGE
===================================================== */

.alumni-interaction-image {
    min-height: 340px;
    overflow: hidden;
}

.alumni-interaction-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .65s ease;
}

.alumni-interaction:hover .alumni-interaction-image img {
    transform: scale(1.035);
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {
    .alumni-modern {
        padding: 35px 12px;
    }
    .alumni-quote {
        padding: 27px 20px 23px;
        border-radius: 13px;
    }
    .alumni-quote p {
        font-size: 9px;
    }
    .alumni-copy,
    .alumni-connection {
        padding: 0 5px;
    }
    .alumni-copy p,
    .alumni-connection p {
        font-size: 9px;
        line-height: 1.8;
    }
    /* GALLERY */
    .alumni-gallery {
        grid-template-columns: 1fr;
        height: auto;
        padding: 9px;
        gap: 9px;
        border-radius: 14px;
    }
    .alumni-gallery-main {
        height: 240px;
    }
    .alumni-gallery-side {
        height: 190px;
        margin: 0;
    }
    .alumni-gallery-label {
        left: 18px;
        bottom: 18px;
        font-size: 6px;
    }
    /* HEADING */
    .alumni-section-heading {
        padding: 0 5px;
        margin-bottom: 15px;
    }
    .alumni-section-heading h3 {
        font-size: 15px;
    }
    /* INTERACTION */
    .alumni-interaction,
    .alumni-interaction-reverse {
        display: flex;
        flex-direction: column;
        min-height: auto;
        border-radius: 14px;
    }
    .alumni-interaction-image {
        order: 1;
        height: 230px;
        min-height: 230px;
    }
    .alumni-interaction-text {
        order: 2;
        padding: 28px 22px;
    }
    .alumni-interaction-text h4 {
        font-size: 20px;
    }
    .alumni-interaction-text p {
        font-size: 9px;
        line-height: 1.8;
    }
}


/* =========================================
   MAIN SECTION
========================================= */

.srcs-life-section {
    padding: 20px 0;
    background: #f6f8f5;
    color: #173b2a;
}

.srcs-container {
    width: min(1400px, calc(100% - 50px));
    margin: auto;
}


/* =========================================
   COMMON LABELS
========================================= */

.srcs-eyebrow,
.srcs-small-label,
.srcs-feature-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #08783f;
}


/* =========================================
   H2
========================================= */

.srcs-intro-content h2,
.srcs-section-heading h2 {
    margin: 15px 0 28px;
    font-size: 52px;
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: -1.5px;
    color: #123b29;
}

.srcs-intro-content h2 span,
.srcs-section-heading h2 span {
    display: block;
    color: #08783f;
    font-style: normal;
}


/* Keep the boarding section title on a single line. */

.srcs-section-heading h2 span {
    display: inline;
}


/* =========================================
   INTRO TEXT
========================================= */

.srcs-intro-content p {
    max-width: 590px;
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 1.85;
    color: #56665d;
}

.srcs-intro-content .srcs-lead {
    font-size: 16px;
    line-height: 1.75;
    color: #274d3a;
}


/* =========================================
   INTRO GRID
========================================= */

.srcs-intro-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 70px;
}


/* =========================================
   INTRO IMAGE
========================================= */

.srcs-intro-image {
    position: relative;
    height: 500px;
}

.srcs-intro-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 5px 70px 5px 5px;
}


/* =========================================
   FLOATING IMAGE LABEL
========================================= */

.srcs-image-label {
    position: absolute;
    left: -25px;
    bottom: 28px;
    width: 235px;
    padding: 20px 24px;
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
}

.srcs-image-label span {
    display: block;
    margin-bottom: 8px;
    font-size: 10px;
    letter-spacing: 2px;
    color: #08783f;
}

.srcs-image-label strong {
    display: block;
    font-size: 17px;
    line-height: 1.3;
    font-weight: 600;
}


/* =========================================
   COMMUNITY
========================================= */

.srcs-community {
    display: grid;
    grid-template-columns: 65px 1fr;
    gap: 25px;
    margin: 20px auto 30px;
    align-items: start;
}

.srcs-community-number {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #a9bdb0;
    border-radius: 50%;
    font-size: 15px;
    color: #08783f;
}

.srcs-community p {
    margin: 14px 0 0;
    font-size: 16px;
    line-height: 1.8;
    color: #536159;
}


/* =========================================
   FEATURE CARD
========================================= */

.srcs-feature-card {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    min-height: 470px;
    overflow: hidden;
    background: #056d3a;
    border-radius: 5px;
    box-shadow: 0 25px 60px rgba(12, 67, 39, .13);
}


/* =========================================
   FEATURE IMAGE
========================================= */

.srcs-feature-image {
    min-height: 470px;
    overflow: hidden;
}

.srcs-feature-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .7s ease;
}

.srcs-feature-card:hover .srcs-feature-image img {
    transform: scale(1.04);
}


/* =========================================
   FEATURE CONTENT
========================================= */

.srcs-feature-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    color: #ffffff;
}

.srcs-feature-tag {
    margin-bottom: 20px;
    color: #bce5cd;
}

.srcs-feature-content h3 {
    margin: 0 0 24px;
    font-size: 40px;
    line-height: 1.05;
    font-weight: 500;
    white-space: nowrap;
}

.srcs-feature-content h3 span {
    color: #f4c400;
}

.srcs-feature-content p {
    max-width: 430px;
    margin: 0 0 13px;
    font-size: 16px;
    line-height: 1.75;
    color: #000;
}

.imagine-yourself-page .srcs-feature-content p.text-white {
    color: #fff;
}

.srcs-feature-line {
    width: 55px;
    height: 1px;
    margin: 28px 0 17px;
    background: rgba(255, 255, 255, .5);
}

.srcs-feature-footer {
    font-size: 16px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, .65);
}


/* =========================================
   BOARDING
========================================= */

.srcs-boarding {
    padding-top: 30px;
}


/* =========================================
   BOARDING HEADING
========================================= */

.srcs-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 32px;
    border-bottom: 1px solid #d5ddd8;
}

.srcs-section-heading h2 {
    margin-bottom: 0;
}

.srcs-heading-number {
    font-size: 75px;
    line-height: .8;
    color: #dce6df;
    font-weight: 300;
}


/* =========================================
   BOARDING INTRO
========================================= */

.srcs-boarding-intro {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 75px;
    padding: 48px 0 58px;
}

.srcs-boarding-intro h3 {
    margin: 0;
    font-size: 29px;
    line-height: 1.2;
    font-weight: 500;
    color: #173f2c;
}

.srcs-boarding-intro p {
    margin: 0;
    font-size: 15px;
    line-height: 1.85;
    color: #59675f;
}


/* =========================================
   GALLERY
========================================= */

.srcs-gallery {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 20px;
}

.srcs-gallery-card {
    position: relative;
    height: 420px;
    overflow: hidden;
    border-radius: 5px;
}

.srcs-gallery-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .7s ease;
}

.srcs-gallery-card:hover img {
    transform: scale(1.05);
}


/* =========================================
   GALLERY OVERLAY
========================================= */

.srcs-gallery-overlay {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    padding: 20px;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(10px);
}

.srcs-gallery-overlay span {
    display: block;
    margin-bottom: -2px;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 700;
    color: #fff;
}

.srcs-gallery-overlay strong {
    display: block;
    font-size: 19px;
    line-height: 1.3;
    font-weight: 500;
    color: #173b2a;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {
    .srcs-life-section {
        padding: 75px 0;
    }
    .srcs-container {
        width: min(100% - 35px, 700px);
    }
    .srcs-intro-grid,
    .srcs-feature-card,
    .srcs-boarding-intro,
    .srcs-gallery {
        grid-template-columns: 1fr;
    }
    .srcs-intro-grid {
        gap: 30px;
    }
    .srcs-intro-image {
        height: 420px;
    }
    .srcs-feature-image {
        min-height: 350px;
    }
    .srcs-feature-content {
        padding: 50px 35px;
    }
    .srcs-community {
        margin: 30px auto 30px;
    }
    .srcs-boarding {
        padding-top: 85px;
    }
    .srcs-boarding-intro {
        gap: 30px;
    }
    .srcs-gallery-card {
        height: 360px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {
    .srcs-container {
        width: calc(100% - 28px);
    }
    .srcs-intro-content h2,
    .srcs-section-heading h2 {
        font-size: 52px;
        letter-spacing: -1px;
    }
    .srcs-intro-image {
        height: 350px;
    }
    .srcs-image-label {
        left: 15px;
        bottom: 15px;
        width: 205px;
        padding: 17px;
    }
    .srcs-community {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .srcs-feature-image {
        min-height: 280px;
    }
    .srcs-feature-content {
        padding: 40px 25px;
    }
    .srcs-feature-content h3 {
        font-size: 30px;
    }
    .srcs-section-heading {
        align-items: flex-start;
    }
    .srcs-heading-number {
        font-size: 50px;
    }
    .srcs-boarding-intro {
        padding: 35px 0 45px;
    }
    .srcs-gallery-card {
        height: 300px;
    }
    .srcs-gallery-overlay {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 16px;
    }
}


/* Refined Living & Growing section */

.srcs-life-section {
    padding: 30px 0 35px;
    background: linear-gradient(180deg, #f8faf7 0%, #f1f6f0 100%);
}

.srcs-boarding {
    padding-top: 0;
}

.srcs-section-heading {
    position: relative;
    padding-bottom: 28px;
    border-bottom: 1px solid #cfdcd2;
}

.srcs-section-heading::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 72px;
    height: 3px;
    background: #f4c400;
}

.srcs-section-heading h2 {
    margin-top: 14px;
    font-size: clamp(44px, 5vw, 68px);
    letter-spacing: -2.5px;
    white-space: nowrap;
}

.srcs-section-heading h2 span {
    display: inline !important;
}

.srcs-section-heading>div:first-child {
    flex: 1 1 auto;
    min-width: 0;
}

.srcs-heading-number {
    font-size: clamp(64px, 7vw, 92px);
    letter-spacing: -5px;
}

.srcs-boarding-intro {
    display: block;
    padding: 48px 0 62px;
}

.srcs-boarding-intro h3 {
    max-width: none;
    margin-bottom: 26px;
    padding-left: 22px;
    border-left: 4px solid #f4c400;
    font-size: clamp(27px, 2.35vw, 35px);
    line-height: 1.14;
}

.srcs-boarding-intro p {
    max-width: none;
    font-size: 16px;
    line-height: 1.85;
}

.srcs-gallery {
    grid-template-columns: 1.25fr .85fr;
    gap: 24px;
}

.srcs-gallery-card {
    height: 430px;
    border-radius: 12px 12px 0 12px;
    box-shadow: 0 18px 45px rgba(23, 59, 42, .12);
}

.srcs-gallery-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 48%, rgba(3, 39, 27, .32) 100%);
    pointer-events: none;
}

.srcs-gallery-overlay {
    z-index: 1;
    left: 20px;
    right: 20px;
    bottom: 20px;
    padding: 21px 24px;
    border-left: 4px solid #f4c400;
    border-radius: 0 4px 4px 0;
    box-shadow: 0 12px 28px rgba(16, 45, 31, .12);
}

@media (max-width: 900px) {
    .srcs-life-section {
        padding: 72px 0 82px;
    }
    .srcs-boarding-intro {
        gap: 34px;
    }
}

@media (max-width: 600px) {
    .srcs-life-section {
        padding: 25px 0 68px;
    }
    .srcs-section-heading h2 {
        font-size: 43px;
        letter-spacing: -1.5px;
        white-space: normal;
    }
    .srcs-section-heading {
        padding-bottom: 22px;
    }
    .srcs-heading-number {
        font-size: 54px;
    }
    .srcs-boarding-intro {
        padding: 36px 0 44px;
    }
    .srcs-gallery-card {
        height: 310px;
    }
}


/* Keep the school-life headings on one line and stack the second copy below. */

.srcs-life-section .srcs-heading-content h2,
.srcs-allout-section h2 {
    white-space: nowrap;
}

.srcs-life-section .srcs-heading-content h2 span,
.srcs-allout-section h2 span {
    display: inline !important;
}

.srcs-allout-section h2 span {
    color: #f4c400;
}

.srcs-allout-header {
    display: block;
}

.srcs-allout-text {
    width: auto;
    margin-top: 24px;
}

.srcs-allout-text p {
    max-width: 760px;
}

@media (max-width: 600px) {
    .srcs-life-section .srcs-heading-content h2,
    .srcs-allout-section h2 {
        white-space: normal;
    }
}


/* Final cascade reset for the redesigned Going All Out section. */

.srcs-allout-section {
    margin-top: 110px !important;
    padding: 78px 80px 82px !important;
    border-radius: 18px;
}

.srcs-allout-section h2 span {
    display: inline !important;
    color: #f4c400 !important;
}

.srcs-allout-header {
    display: block !important;
    margin-bottom: 48px !important;
}

.srcs-allout-text {
    width: auto !important;
    margin-top: 24px;
}

.srcs-dark-slider {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.srcs-dark-slider .srcs-slider-track {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    width: 100% !important;
    animation: none !important;
}

.srcs-dark-slider .srcs-dark-card {
    display: block;
    width: auto !important;
    height: 360px !important;
    flex: none;
}

.srcs-dark-slider .srcs-dark-card:nth-child(n+5) {
    display: none !important;
}

@media (max-width: 900px) {
    .srcs-allout-section {
        padding: 58px 35px 62px !important;
    }
    .srcs-dark-slider .srcs-slider-track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .srcs-allout-section {
        margin-top: 75px !important;
        padding: 46px 20px 50px !important;
        border-radius: 12px;
    }
    .srcs-dark-slider .srcs-slider-track {
        grid-template-columns: 1fr;
    }
    .srcs-dark-slider .srcs-dark-card {
        height: 320px !important;
    }
}


/* Completely new editorial treatment for Going All Out. */

.srcs-allout-section {
    margin-top: 120px !important;
    padding: 0 0 70px !important;
    border-radius: 0 !important;
    background: #f1eee5 !important;
    color: #123b29;
    overflow: visible !important;
}

.srcs-allout-section::before {
    display: none;
}

.srcs-allout-header {
    position: relative;
    padding: 54px 62px 46px;
    margin-bottom: 42px !important;
    background: #f4c400;
}

.srcs-allout-header::after {
    content: '04';
    position: absolute;
    right: 55px;
    top: 30px;
    color: rgba(18, 59, 41, .14);
    font: 500 108px/.8 Georgia, serif;
}

.srcs-allout-section .srcs-overline {
    color: #123b29;
}

.srcs-allout-section h2 {
    position: relative;
    z-index: 1;
    margin: 14px 0 0;
    color: #123b29 !important;
    font-size: clamp(52px, 6vw, 84px) !important;
    line-height: .92;
}

.srcs-allout-section h2 span {
    color: #08783f !important;
}

.srcs-allout-text {
    position: relative;
    z-index: 1;
    margin-top: 25px;
}

.srcs-allout-text p {
    max-width: 720px;
    color: #294c3a !important;
    font-size: 17px;
    line-height: 1.7;
}

.srcs-dark-slider {
    padding: 0 62px !important;
}

.srcs-dark-slider .srcs-slider-track {
    display: grid !important;
    grid-template-columns: 1.15fr repeat(3, 1fr);
    align-items: end;
    gap: 22px;
}

.srcs-dark-slider .srcs-dark-card {
    height: 350px !important;
    border-radius: 0 !important;
    background: #fff;
    box-shadow: 0 16px 32px rgba(18, 59, 41, .12);
}

.srcs-dark-slider .srcs-dark-card:first-child {
    height: 420px !important;
}

.srcs-dark-slider .srcs-dark-card img {
    height: 100%;
}

.srcs-dark-number {
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    background: #fff !important;
    color: #08783f !important;
}

.srcs-dark-caption {
    left: 0;
    right: 0;
    bottom: 0;
    padding: 17px 20px 18px;
    border-left: 0;
    border-top: 3px solid #f4c400;
    background: rgba(255, 255, 255, .96) !important;
}

.srcs-dark-caption span {
    color: #08783f !important;
}

.srcs-dark-caption strong {
    color: #123b29 !important;
    font-size: 16px;
}

@media (max-width: 900px) {
    .srcs-allout-header {
        padding: 45px 35px 38px;
    }
    .srcs-allout-header::after {
        right: 25px;
        font-size: 80px;
    }
    .srcs-dark-slider {
        padding: 0 35px !important;
    }
    .srcs-dark-slider .srcs-slider-track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .srcs-dark-slider .srcs-dark-card:first-child {
        height: 350px !important;
    }
}

@media (max-width: 600px) {
    .srcs-allout-section {
        margin-top: 75px !important;
        padding-bottom: 45px !important;
    }
    .srcs-allout-header {
        padding: 38px 22px 32px;
    }
    .srcs-allout-header::after {
        right: 18px;
        top: 25px;
        font-size: 64px;
    }
    .srcs-allout-section h2 {
        font-size: 52px !important;
        white-space: normal;
    }
    .srcs-dark-slider {
        padding: 0 22px !important;
    }
    .srcs-dark-slider .srcs-slider-track {
        grid-template-columns: 1fr;
    }
    .srcs-dark-slider .srcs-dark-card,
    .srcs-dark-slider .srcs-dark-card:first-child {
        height: 340px !important;
    }
}


/* People section: keep the title together and place its copy underneath. */

.srcs-people-intro {
    display: block !important;
}

.srcs-people-intro h2 {
    white-space: nowrap;
}

.srcs-people-intro h2 span {
    display: inline !important;
}

.srcs-people-intro>p {
    max-width: none;
    margin-top: 24px;
}

@media (max-width: 600px) {
    .srcs-people-intro h2 {
        white-space: normal;
    }
}


/* Final cascade reset for the redesigned Going All Out section. */

.srcs-allout-section {
    margin-top: 110px !important;
    padding: 78px 80px 82px !important;
    border-radius: 18px;
}

.srcs-allout-section h2 span {
    display: inline !important;
    color: #f4c400 !important;
}

.srcs-allout-header {
    display: block !important;
    margin-bottom: 48px !important;
}

.srcs-allout-text {
    width: auto !important;
    margin-top: 24px;
}

.srcs-dark-slider {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.srcs-dark-slider .srcs-slider-track {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    width: 100% !important;
    animation: none !important;
}

.srcs-dark-slider .srcs-dark-card {
    display: block;
    width: auto !important;
    height: 360px !important;
    flex: none;
}

.srcs-dark-slider .srcs-dark-card:nth-child(n+5) {
    display: none !important;
}

@media (max-width: 900px) {
    .srcs-allout-section {
        padding: 58px 35px 62px !important;
    }
    .srcs-dark-slider .srcs-slider-track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .srcs-allout-section {
        margin-top: 75px !important;
        padding: 46px 20px 50px !important;
        border-radius: 12px;
    }
    .srcs-dark-slider .srcs-slider-track {
        grid-template-columns: 1fr;
    }
    .srcs-dark-slider .srcs-dark-card {
        height: 320px !important;
    }
}


/* New Going All Out layout — replaces the old continuous slider presentation. */

.srcs-allout-section {
    position: relative;
    margin-top: 110px;
    padding: 78px 80px 82px;
    border-radius: 18px;
    background: linear-gradient(135deg, #034c2e 0%, #087945 100%);
    overflow: hidden;
}

.srcs-allout-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -100px;
    width: 390px;
    height: 390px;
    border: 1px solid rgba(244, 196, 0, .35);
    border-radius: 50%;
    box-shadow: 0 0 0 28px rgba(244, 196, 0, .04), 0 0 0 58px rgba(244, 196, 0, .025);
}

.srcs-allout-header {
    position: relative;
    z-index: 1;
    display: block !important;
    margin-bottom: 48px;
}

.srcs-allout-section h2 {
    margin: 16px 0 0;
    color: #fff;
    font-size: clamp(48px, 5vw, 76px);
    line-height: .95;
    white-space: nowrap;
}

.srcs-allout-section h2 span {
    display: inline !important;
    color: #f4c400 !important;
}

.srcs-allout-text {
    width: auto !important;
    margin-top: 24px;
}

.srcs-allout-text p {
    max-width: 780px;
    margin: 0;
    color: rgba(255, 255, 255, .8);
    font-size: 16px;
    line-height: 1.75;
}

.srcs-dark-slider {
    position: relative;
    z-index: 1;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible;
}

.srcs-dark-slider .srcs-slider-track {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    width: 100%;
    animation: none;
}

.srcs-dark-slider .srcs-dark-card {
    position: relative;
    display: block;
    width: auto;
    height: 360px;
    min-width: 0;
    overflow: hidden;
    border-radius: 10px;
    background: #0b5939;
}

.srcs-dark-slider .srcs-dark-card:nth-child(n+5) {
    display: none;
}

.srcs-dark-slider .srcs-dark-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.srcs-dark-slider .srcs-dark-card:hover img {
    transform: scale(1.06);
}

.srcs-dark-number {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #f4f8f4;
    color: #08783f;
    font-size: 11px;
    font-weight: 700;
}

.srcs-dark-caption {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 17px 18px;
    border-left: 3px solid #f4c400;
    background: rgba(3, 59, 42, .93);
}

.srcs-dark-caption span,
.srcs-dark-caption strong {
    display: block;
}

.srcs-dark-caption span {
    margin-bottom: 6px;
    color: #f4c400;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.srcs-dark-caption strong {
    color: #fff;
    font-size: 15px;
    line-height: 1.35;
}

@media (max-width: 900px) {
    .srcs-allout-section {
        padding: 58px 35px 62px;
    }
    .srcs-dark-slider .srcs-slider-track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .srcs-allout-section {
        margin-top: 75px;
        padding: 46px 20px 50px;
        border-radius: 12px;
    }
    .srcs-allout-section h2 {
        font-size: 48px;
        white-space: normal;
    }
    .srcs-dark-slider .srcs-slider-track {
        grid-template-columns: 1fr;
    }
    .srcs-dark-slider .srcs-dark-card {
        height: 320px;
    }
}


/* =========================================================
   TRANSPORTATION PAGE
========================================================= */

.transport-page {
    --transport-green: #056d3a;
    --transport-deep: #063b2a;
    --transport-yellow: #f4c400;
    background: #f4f8f4;
    color: var(--transport-deep);
}

.transport-shell {
    width: min(1400px, calc(100% - 50px));
    margin: 0 auto;
}

.transport-hero {
    padding: 34px 0 90px;
    background: linear-gradient(120deg, rgba(3, 48, 33, .97), rgba(5, 109, 58, .84)), url('../images/website/life1.png') center / cover;
    color: #fff;
}

.transport-breadcrumb {
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 12px;
    color: rgba(255, 255, 255, .68);
}

.transport-breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.transport-breadcrumb strong {
    color: var(--transport-yellow);
    font-weight: 500;
}

.transport-hero-grid {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 50px;
    padding-top: 100px;
}

.transport-kicker {
    display: block;
    color: var(--transport-yellow);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.transport-hero h1 {
    margin: 18px 0 20px;
    font-size: clamp(56px, 7vw, 104px);
    line-height: .95;
    letter-spacing: -3px;
    font-weight: 500;
    color: #fff;
}

.transport-page em {
    color: var(--transport-yellow);
    font-style: normal;
}

.transport-hero p {
    max-width: 500px;
    margin: 0;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .82);
}

.transport-hero-mark {
    display: grid;
    place-items: center;
    width: 190px;
    height: 190px;
    border: 1px solid rgba(244, 196, 0, .6);
    border-radius: 50%;
    color: var(--transport-yellow);
    transform: rotate(-10deg);
}

.transport-hero-mark span {
    font-family: Georgia, serif;
    font-size: 54px;
    line-height: .8;
}

.transport-hero-mark b {
    font-size: 10px;
    letter-spacing: 2px;
}

.transport-intro,
.transport-content {
    display: block;
    padding: 50px 0;
}

.transport-intro-heading h2,
.transport-content-heading h2,
.transport-routes h2,
.transport-cta h2 {
    margin: 18px 0 0;
    font-size: 52px;
    line-height: .98;
    letter-spacing: 1px;
    font-weight: 500;
}

.transport-intro-copy,
.transport-content-copy {
    padding-top: 20px;
}

.transport-page h1 br,
.transport-page h2 br {
    display: none;
}

.transport-page p {
    font-size: 16px;
    line-height: 1.9;
    color: #fff;
}

.transport-intro-copy p,
.transport-content-copy p {
    margin: 0 0 22px;
}

.transport-feature {
    padding: 40px 0;
    background: radial-gradient(circle at 12% 18%, rgba(244, 196, 0, .14), transparent 28%), linear-gradient(120deg, #edf5ef 0%, #f8f8f3 52%, #e5f0e8 100%);
    color: var(--transport-deep);
}

.transport-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 110px;
}

.transport-feature-visual {
    min-height: 470px;
    border-radius: 8px 100px 8px 8px;
    background: url('../images/website/t1.png') left center / cover no-repeat;
    position: relative;
}

.transport-route-orbit {
    position: absolute;
    right: 30px;
    bottom: 30px;
    width: 125px;
    height: 125px;
    border: 1px solid rgba(244, 196, 0, .75);
    border-radius: 50%;
    display: grid;
    place-content: center;
    text-align: center;
    background: rgba(3, 59, 42, .85);
    transform: rotate(8deg);
}

.transport-route-orbit span,
.transport-route-orbit small {
    display: block;
    color: var(--transport-yellow);
    font-size: 9px;
    letter-spacing: 2px;
}

.transport-route-orbit strong {
    display: block;
    font-family: Georgia, serif;
    font-size: 28px;
}

.transport-feature-copy h2 {
    margin: 18px 0 28px;
    font-size: 52px;
    line-height: 1;
    font-weight: 500;
    color: var(--transport-deep);
}

.transport-feature-copy p {
    color: #53675d;
}

.transport-stat-row {
    display: flex;
    gap: 50px;
    margin-top: 35px;
    padding-top: 24px;
    border-top: 1px solid rgba(6, 59, 42, .18);
}

.transport-stat-row b {
    display: block;
    color: var(--transport-yellow);
    font: 500 36px Georgia, serif;
}

.transport-stat-row span {
    font-size: 11px;
    letter-spacing: 1px;
    color: #53675d;
}

.transport-content {
    padding-top: 50px;
    padding-bottom: 50px;
}

.transport-content-heading {
    position: static;
}

.transport-routes {
    padding: 40px 0 40px;
    background: #eaf2eb;
}

.transport-routes-head {
    display: block;
    margin-bottom: 55px;
}

.transport-table-wrap {
    overflow-x: auto;
    background: #fff;
    box-shadow: 0 20px 50px rgba(14, 57, 37, .08);
}

.transport-table-wrap table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
}

.transport-table-wrap th,
.transport-table-wrap td {
    padding: 19px 26px;
    text-align: left;
    border-bottom: 1px solid #dce7de;
    font-size: 15px;
    line-height: 1.6;
}

.transport-table-wrap th {
    background: var(--transport-green);
    color: #fff;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.transport-table-wrap td:first-child {
    width: 170px;
    color: var(--transport-green);
    font-weight: 700;
}

.transport-table-wrap tr:last-child td {
    border-bottom: 0;
}

.transport-cta {
    padding: 105px 0;
    background: var(--transport-deep);
    color: #fff;
}

.transport-cta h2 {
    color: #fff;
}

.transport-button {
    display: inline-flex;
    gap: 30px;
    align-items: center;
    margin-top: 35px;
    padding: 14px 4px;
    border-bottom: 1px solid var(--transport-yellow);
    color: #fff;
    text-decoration: none;
    letter-spacing: 1px;
}

.transport-button span {
    color: var(--transport-yellow);
    font-size: 24px;
}

@media (max-width: 800px) {
    .transport-hero-grid,
    .transport-intro,
    .transport-content,
    .transport-feature-grid {
        grid-template-columns: 1fr;
        display: grid;
        gap: 15px;
    }
    .transport-hero-grid {
        padding-top: 70px;
    }
    .transport-hero-mark {
        width: 125px;
        height: 125px;
    }
    .transport-intro,
    .transport-content,
    .transport-feature {
        padding: 25px 0;
    }
    .transport-feature-visual {
        min-height: 350px;
    }
    .transport-content-heading {
        position: static;
    }
    .transport-routes-head {
        display: block;
    }
    .transport-routes-head p {
        margin-top: 25px;
    }
}

@media (max-width: 600px) {
    .transport-shell {
        width: calc(100% - 28px);
    }
    .transport-hero {
        padding-bottom: 65px;
    }
    .transport-hero h1 {
        font-size: 58px;
        letter-spacing: -2px;
    }
    .transport-intro-heading h2,
    .transport-content-heading h2,
    .transport-routes h2,
    .transport-cta h2 {
        font-size: 48px;
    }
    .transport-feature-visual {
        min-height: 290px;
        border-radius: 8px 55px 8px 8px;
    }
    .transport-stat-row {
        gap: 25px;
    }
    .transport-routes {
        padding: 20px 0;
    }
}


/* =========================================================
   MAIN SECTION
========================================================= */

.srcs-community-section {
    width: 100%;
    padding: 20px 0;
    background: #f5f8f5;
    color: #163b2a;
    overflow: hidden;
}

.srcs-community-wrap {
    width: min(1400px, calc(100% - 50px));
    margin: 0 auto;
}


/* =========================================================
   COMMON OVERLINE
========================================================= */

.srcs-overline {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #08783f;
}

.srcs-light-label {
    color: #b9dfca;
}


/* =========================================================
   COMMON H2
========================================================= */

.srcs-life-section h2,
.srcs-allout-section h2,
.srcs-people-section h2 {
    margin: 0;
    font-size: 52px;
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: -1.5px;
}

.srcs-life-section h2 span,
.srcs-allout-section h2 span,
.srcs-people-section h2 span {
    display: block;
    font-style: normal;
}


/* =========================================================
   LIFE SECTION
========================================================= */

.srcs-life-section {
    width: 100%;
}

.srcs-section-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 70px;
    margin-bottom: 45px;
}

.srcs-heading-content {
    flex: 1;
}

.srcs-life-section h2 span {
    color: #08783f;
}

.srcs-heading-description {
    width: 360px;
}

.srcs-heading-description p {
    margin: 0;
    font-size: 16px;
    line-height: 1.75;
    color: #59675f;
}


/* =========================================================
   INFINITE SLIDER
========================================================= */

.srcs-infinite-slider {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
}

.srcs-slider-track {
    display: flex;
    width: max-content;
    gap: 18px;
    animation: srcsContinuousMove 32s linear infinite;
    will-change: transform;
}

.srcs-infinite-slider:hover .srcs-slider-track {
    animation-play-state: paused;
}


/* =========================================================
   TOP SLIDER CARDS
========================================================= */

.srcs-slider-card {
    position: relative;
    width: 340px;
    height: 390px;
    flex: 0 0 340px;
    overflow: hidden;
    border-radius: 5px;
    background: #ddd;
}

.srcs-slider-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .7s ease;
}

.srcs-slider-card:hover img {
    transform: scale(1.06);
}


/* =========================================================
   TOP SLIDER CAPTION
========================================================= */

.srcs-slider-info {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(12px);
}

.srcs-slider-info span {
    display: block;
    margin-bottom: 6px;
    font-size: 10px;
    letter-spacing: 2px;
    color: #08783f;
}

.srcs-slider-info strong {
    display: block;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 600;
    color: #173b2a;
}


/* =========================================================
   CONTINUOUS ANIMATION
========================================================= */

@keyframes srcsContinuousMove {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-50% - 9px));
    }
}


/* =========================================================
   PEOPLE SECTION
========================================================= */

.srcs-people-section {
    padding-top: 30px;
}

.srcs-people-intro {
    display: grid;
    grid-template-columns: 1fr .75fr;
    align-items: end;
    gap: 80px;
}

.srcs-people-intro h2 span {
    color: #08783f;
}

.srcs-people-intro p {
    margin: 0;
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.85;
    color: #59675f;
}


/* =========================================================
   GUIDANCE
========================================================= */

.srcs-guidance-block {
    margin-top: 35px;
    padding: 38px 0;
    border-top: 1px solid #d5ded8;
    border-bottom: 1px solid #d5ded8;
}

.srcs-guidance-heading {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 25px;
}

.srcs-guidance-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #08783f;
    color: #ffffff;
    font-size: 18px;
}

.srcs-guidance-heading .srcs-overline {
    margin-bottom: 6px;
}

.srcs-guidance-heading h3 {
    margin: 0;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 500;
    color: #173f2c;
}

.srcs-guidance-block>p {
    margin: 0;
    font-size: 16px;
    line-height: 1.85;
    color: #59675f;
}


/* =========================================================
   TEAM
========================================================= */

.srcs-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 55px;
}

.srcs-team-card {
    overflow: hidden;
    border-radius: 5px;
    background: #ffffff;
    box-shadow: 0 12px 35px rgba(20, 55, 38, .07);
    transition: transform .35s ease, box-shadow .35s ease;
}

.srcs-team-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 45px rgba(20, 55, 38, .13);
}

.srcs-team-image {
    height: 390px;
    overflow: hidden;
}

.srcs-team-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .6s ease;
}

.srcs-team-card:hover .srcs-team-image img {
    transform: scale(1.04);
}

.srcs-team-info {
    padding: 20px 22px 23px;
}

.srcs-team-info span {
    display: block;
    margin-bottom: 7px;
    font-size: 15px;
    letter-spacing: 1.8px;
    font-weight: 700;
    color: #08783f;
}

.srcs-team-info h4 {
    margin: 0;
    font-size: 30px;
    line-height: 1.3;
    font-weight: 500;
    color: #173b2a;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {
    .srcs-community-section {
        padding: 25px 0;
    }
    .srcs-community-wrap {
        width: min(100% - 35px, 700px);
    }
    .srcs-section-top,
    .srcs-allout-header,
    .srcs-people-intro {
        grid-template-columns: 1fr;
        display: grid;
        gap: 25px;
    }
    .srcs-heading-description,
    .srcs-allout-text {
        width: auto;
    }
    .srcs-slider-card {
        width: 300px;
        height: 350px;
        flex-basis: 300px;
    }
    .srcs-allout-section {
        padding: 45px 30px 40px;
    }
    .srcs-dark-slider {
        width: calc(100% + 60px);
        margin-left: -30px;
        padding-left: 30px;
        padding-right: 30px;
        margin-bottom: -40px;
    }
    .srcs-dark-card {
        width: 310px;
        height: 320px;
        flex-basis: 310px;
    }
    .srcs-team-grid {
        grid-template-columns: 1fr 1fr;
    }
    .srcs-team-card:last-child {
        display: none;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {
    .srcs-community-wrap {
        width: calc(100% - 28px);
    }
    .srcs-life-section h2,
    .srcs-allout-section h2,
    .srcs-people-section h2 {
        font-size: 32px !important;
        letter-spacing: -1px;
        margin-bottom: 10px;
    }
    .srcs-section-top {
        margin-bottom: 35px;
    }
    .srcs-heading-description p,
    .srcs-allout-text p,
    .srcs-people-intro p,
    .srcs-guidance-block>p {
        font-size: 16px;
    }
    .srcs-slider-track {
        gap: 12px;
        animation-duration: 25s;
    }
    .srcs-slider-card {
        width: 285px;
        height: 350px;
        flex-basis: 285px;
    }
    .srcs-slider-info {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 15px;
    }
    .srcs-allout-section {
        margin-top: 70px;
        padding: 38px 20px 35px;
    }
    .srcs-allout-header {
        margin-bottom: 32px;
    }
    .srcs-dark-slider {
        width: calc(100% + 40px);
        margin-left: -20px;
        padding-left: 20px;
        padding-right: 20px;
        margin-bottom: -35px;
    }
    .srcs-slider-track-reverse {
        animation-duration: 29s;
    }
    .srcs-dark-card {
        width: 285px;
        height: 310px;
        flex-basis: 285px;
    }
    .srcs-dark-caption {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 15px;
    }
    .srcs-people-section {
        padding-top: 25px;
    }
    .srcs-guidance-block {
        margin-top: 55px;
    }
    .srcs-team-grid {
        grid-template-columns: 1fr;
    }
    .srcs-team-card:last-child {
        display: block;
    }
    .srcs-team-image {
        height: 350px;
    }
}


/* =========================================================
   REDUCED MOTION ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {
    .srcs-slider-track {
        animation: none;
    }
    .srcs-slider-card img,
    .srcs-dark-card img,
    .srcs-team-image img {
        transition: none;
    }
}


/* Final layout overrides for the school-life sections. */

.srcs-life-section .srcs-heading-content h2,
.srcs-allout-section h2 {
    white-space: nowrap;
}

.srcs-life-section .srcs-heading-content h2 span,
.srcs-allout-section h2 span {
    display: inline !important;
}

.srcs-allout-section h2 span {
    color: #f4c400 !important;
}


/* New Going All Out card grid. */

.srcs-allout-section {
    position: relative;
    margin-top: 110px !important;
    padding: 78px 80px 82px !important;
    border-radius: 18px;
    background: #f1eee5 !important;
    color: #123b29;
    overflow: hidden;
}

.srcs-allout-section::before {
    display: none;
    content: '';
    position: absolute;
    top: -150px;
    right: -100px;
    width: 390px;
    height: 390px;
    border: 1px solid rgba(244, 196, 0, .35);
    border-radius: 50%;
    box-shadow: 0 0 0 28px rgba(244, 196, 0, .04), 0 0 0 58px rgba(244, 196, 0, .025);
}

.srcs-allout-header {
    position: relative;
    z-index: 1;
    display: block !important;
    margin-bottom: 48px !important;
    padding: 54px 62px 46px;
    background: #f4c400;
}

.srcs-allout-section h2 {
    color: #123b29 !important;
    font-size: clamp(52px, 6vw, 84px);
}

.srcs-allout-section h2 span {
    color: #08783f !important;
}

.srcs-allout-text {
    width: auto !important;
    margin-top: 24px;
}

.srcs-allout-text p {
    max-width: 780px;
    margin: 0;
    color: #294c3a !important;
}

.srcs-dark-slider {
    position: relative;
    z-index: 1;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.srcs-dark-slider .srcs-slider-track {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    width: 100% !important;
    animation: none !important;
}

.srcs-dark-slider .srcs-dark-card {
    display: block;
    width: auto !important;
    height: 360px !important;
    min-width: 0;
    flex: none;
    overflow: hidden;
    border-radius: 10px;
}

.srcs-dark-slider .srcs-dark-card:nth-child(n+5) {
    display: none !important;
}

.srcs-dark-slider .srcs-dark-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.srcs-dark-slider .srcs-dark-card:hover img {
    transform: scale(1.06);
}

.srcs-dark-number {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #f4f8f4;
    color: #08783f;
    font-size: 11px;
    font-weight: 700;
}

.srcs-dark-caption {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 17px 18px;
    border-left: 0;
    border-top: 3px solid #f4c400;
    background: rgba(255, 255, 255, .96) !important;
}

.srcs-dark-caption span,
.srcs-dark-caption strong {
    display: block;
}

.srcs-dark-caption span {
    margin-bottom: 6px;
    color: #08783f;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.srcs-dark-caption strong {
    color: #123b29;
    font-size: 15px;
    line-height: 1.35;
}

@media (max-width: 900px) {
    .srcs-allout-section {
        padding: 58px 35px 62px !important;
    }
    .srcs-dark-slider .srcs-slider-track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .srcs-life-section .srcs-heading-content h2,
    .srcs-allout-section h2 {
        white-space: normal;
    }
    .srcs-allout-section {
        margin-top: 75px !important;
        padding: 46px 20px 50px !important;
        border-radius: 12px;
    }
    .srcs-dark-slider .srcs-slider-track {
        grid-template-columns: 1fr;
    }
    .srcs-dark-slider .srcs-dark-card {
        height: 320px !important;
    }
}


/* =========================================================
   MAIN SECTION
========================================================= */

.srcs-boarding-main {
    width: 100%;
    padding: 80px 0 100px;
    background: #f7f8f4;
    color: #123a29;
    overflow: hidden;
}

.srcs-boarding-inner {
    width: min(1400px, calc(100% - 50px));
    margin: 0 auto;
}


/* =========================================================
   TOP AREA
========================================================= */

.srcs-boarding-top {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    min-height: 690px;
    align-items: stretch;
    gap: 70px;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.srcs-boarding-content {
    padding: 20px 0 20px 5px;
}

.srcs-mini-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 9px 17px;
    border: 1px solid #d8e4db;
    border-radius: 30px;
    background: #eef5ef;
    color: #08783f;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}


/* =========================================================
   MAIN H2
========================================================= */

.srcs-boarding-content h2 {
    max-width: 780px;
    margin: 0;
    font-size: 52px;
    line-height: 1.08;
    font-weight: 500;
    letter-spacing: -1.6px;
    color: #123a29;
}

.srcs-boarding-content h2 span {
    color: #08783f;
    font-style: normal;
}


/* =========================================================
   TITLE LINE
========================================================= */

.srcs-title-line {
    position: relative;
    width: 70px;
    height: 2px;
    margin: 27px 0 27px;
    background: #08783f;
}

.srcs-title-line::after {
    content: "";
    position: absolute;
    right: -7px;
    top: 50%;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #c89b22;
    transform: translateY(-50%);
}


/* =========================================================
   PARAGRAPHS
========================================================= */

.srcs-boarding-content p {
    max-width: 800px;
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 1.72;
    color: #4f5f56;
}

.srcs-boarding-content p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   RIGHT IMAGE
   BACKGROUND IMAGE
========================================================= */

.srcs-boarding-visual {
    position: relative;
    min-height: 690px;
    border-radius: 5px 70px 5px 70px;
    background-image: linear-gradient( 180deg, rgba(255, 255, 255, .03) 0%, rgba(7, 48, 31, .04) 100%), url("YOUR-CAMPUS-IMAGE.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}


/* =========================================================
   IMAGE SOFT OVERLAY
========================================================= */

.srcs-boarding-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( 180deg, transparent 55%, rgba(7, 48, 31, .18) 100%);
    pointer-events: none;
}


/* =========================================================
   IMAGE BADGE
========================================================= */

.srcs-visual-badge {
    position: absolute;
    z-index: 2;
    top: 28px;
    left: 28px;
    width: 145px;
    padding: 22px 18px;
    border-radius: 22px;
    background: #056d3a;
    color: #ffffff;
    text-align: center;
    box-shadow: 0 18px 35px rgba(0, 0, 0, .16);
}

.srcs-badge-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 50%;
}

.srcs-badge-icon svg {
    width: 30px;
    height: 30px;
}

.srcs-visual-badge span {
    display: block;
    margin-bottom: 5px;
    font-size: 9px;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: #b9dfca;
}

.srcs-visual-badge strong {
    display: block;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 500;
}


/* =========================================================
   FACILITY HEADING
========================================================= */

.srcs-facility-heading {
    padding: 85px 0 35px;
    text-align: center;
}

.srcs-facility-heading .srcs-mini-label {
    margin-bottom: 13px;
}

.srcs-facility-heading h3 {
    max-width: 850px;
    margin: 0 auto;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: -.8px;
    color: #123a29;
}


/* =========================================================
   DECORATION
========================================================= */

.srcs-heading-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 20px;
}

.srcs-heading-decoration span {
    width: 55px;
    height: 1px;
    background: #cdd9d1;
}

.srcs-heading-decoration i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1px solid #c89b22;
    border-radius: 50%;
    color: #08783f;
    font-size: 12px;
    font-style: normal;
}


/* =========================================================
   FACILITY BOX
========================================================= */

.srcs-facility-box {
    position: relative;
    padding: 35px 35px 30px;
    border-radius: 22px;
    background: linear-gradient( 135deg, rgba(4, 111, 58, .97), rgba(2, 91, 47, .97));
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(5, 70, 40, .14);
}

.srcs-facility-box::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .08;
    background-image: radial-gradient(circle at 20% 20%, #ffffff 0 2px, transparent 3px), radial-gradient(circle at 80% 70%, #ffffff 0 2px, transparent 3px);
    background-size: 110px 110px, 150px 150px;
    pointer-events: none;
}


/* =========================================================
   FACILITY LIST
========================================================= */

.srcs-facility-list {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
}


/* =========================================================
   FACILITY ITEM
========================================================= */

.srcs-facility-item {
    position: relative;
    display: grid;
    grid-template-columns: 65px 1fr 42px;
    align-items: center;
    gap: 18px;
    min-height: 68px;
    padding: 7px 14px 7px 10px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 14px;
    background: rgba(255, 255, 255, .055);
    transition: background .3s ease, transform .3s ease, border-color .3s ease;
}

.srcs-facility-item:hover {
    background: rgba(255, 255, 255, .11);
    border-color: rgba(200, 155, 34, .35);
    transform: translateX(5px);
}


/* =========================================================
   FACILITY ICON
========================================================= */

.srcs-facility-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(200, 155, 34, .75);
    border-radius: 50%;
    color: #e0b943;
    background: rgba(0, 0, 0, .08);
}

.srcs-facility-icon svg {
    width: 25px;
    height: 25px;
}


/* =========================================================
   FACILITY TEXT
========================================================= */

.srcs-facility-item p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: #ffffff;
}


/* =========================================================
   ARROW
========================================================= */

.srcs-arrow {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d7a923;
    border-radius: 50%;
    color: #e0b943;
    font-size: 25px;
    line-height: 1;
    transition: all .3s ease;
}

.srcs-facility-item:hover .srcs-arrow {
    background: #d7a923;
    color: #056d3a;
}


/* =========================================================
   BOTTOM DESCRIPTION
========================================================= */

.srcs-facility-bottom {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 35px 1fr;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
    padding-top: 5px;
}

.srcs-bottom-line {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, .28);
}

.srcs-bottom-leaf {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d8c16c;
    font-size: 15px;
}

.srcs-facility-bottom p {
    grid-column: 1 / -1;
    max-width: 1060px;
    margin: 3px auto 0;
    text-align: center;
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, .9);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {
    .srcs-boarding-inner {
        width: min(100% - 40px, 900px);
    }
    .srcs-boarding-top {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    .srcs-boarding-content {
        padding: 0;
    }
    .srcs-boarding-visual {
        min-height: 560px;
    }
    .srcs-boarding-content p {
        max-width: none;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {
    .srcs-boarding-main {
        padding: 65px 0 75px;
    }
    .srcs-boarding-inner {
        width: calc(100% - 28px);
    }
    /* MAIN HEADING */
    .srcs-boarding-content h2 {
        font-size: 52px;
        line-height: 1.04;
        letter-spacing: -1px;
    }
    /* TEXT */
    .srcs-boarding-content p {
        font-size: 16px;
        line-height: 1.7;
    }
    /* IMAGE */
    .srcs-boarding-visual {
        min-height: 470px;
        border-radius: 5px 45px 5px 45px;
        background-position: center;
    }
    .srcs-visual-badge {
        top: 18px;
        left: 18px;
        width: 125px;
        padding: 17px 14px;
    }
    .srcs-badge-icon {
        width: 45px;
        height: 45px;
    }
    .srcs-badge-icon svg {
        width: 24px;
        height: 24px;
    }
    /* FACILITY HEADING */
    .srcs-facility-heading {
        padding: 65px 0 30px;
    }
    .srcs-facility-heading h3 {
        font-size: 32px;
    }
    /* FACILITY BOX */
    .srcs-facility-box {
        padding: 20px 15px 25px;
        border-radius: 16px;
    }
    /* ITEMS */
    .srcs-facility-item {
        grid-template-columns: 48px 1fr 30px;
        gap: 12px;
        min-height: 70px;
        padding: 8px;
    }
    .srcs-facility-icon {
        width: 42px;
        height: 42px;
    }
    .srcs-facility-icon svg {
        width: 21px;
        height: 21px;
    }
    .srcs-facility-item p {
        font-size: 16px;
        line-height: 1.45;
    }
    .srcs-arrow {
        width: 28px;
        height: 28px;
        font-size: 20px;
    }
    /* BOTTOM */
    .srcs-facility-bottom {
        grid-template-columns: 1fr 30px 1fr;
        gap: 8px;
    }
    .srcs-facility-bottom p {
        font-size: 16px;
        line-height: 1.7;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 430px) {
    .srcs-boarding-content h2 {
        font-size: 44px;
    }
    .srcs-facility-heading h3 {
        font-size: 28px;
    }
    .srcs-facility-item {
        grid-template-columns: 43px 1fr;
    }
    .srcs-arrow {
        display: none;
    }
    .srcs-facility-item p {
        font-size: 16px;
    }
}


/* =========================================================
   MAIN SECTION
========================================================= */

.srcs-boarding-section {
    width: 100%;
    padding: 0;
    background: #f7f8f4;
    overflow: hidden;
}

.srcs-boarding-wrapper {
    width: 100%;
    margin: 0;
}

.srcs-facility-container {
    width: min(1450px, calc(100% - 50px));
    margin: 0 auto;
}


/* =========================================================
   COMMON LABEL
========================================================= */

.srcs-label {
    display: inline-flex;
    align-items: center;
    padding: 9px 17px;
    border: 1px solid #d7e3da;
    border-radius: 30px;
    background: rgba(240, 247, 241, .9);
    color: #08783f;
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}


/* =========================================================
   HERO
========================================================= */

.srcs-boarding-hero {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    border-radius: 0;
    overflow: hidden;
    background-color: #f7f8f4;
    /*
       IMAGE IS THE BACKGROUND.
       It is NOT a separate right-side image.
    */
    background-image: linear-gradient(90deg, #f7f8f4 0%, #f7f8f4 43%, rgba(247, 248, 244, .88) 51%, rgba(247, 248, 244, 0) 67%), url("../images/diveristy-bg.png");
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.srcs-hero-content {
    position: relative;
    z-index: 2;
    width: min(760px, 54%);
    margin-left: clamp(30px, 8vw, 125px);
    padding: 30px 0;
}

.srcs-hero-content h2 {
    max-width: 790px;
    margin: 22px 0 0;
    font-size: 40px;
    line-height: 1.08;
    font-weight: 500;
    letter-spacing: -1.6px;
    color: #123a29;
}

.srcs-hero-content h2 span {
    color: #08783f;
    font-style: normal;
}


/* =========================================================
   TITLE LINE
========================================================= */

.srcs-heading-line {
    position: relative;
    width: 70px;
    height: 2px;
    margin: 27px 0 27px;
    background: #08783f;
}

.srcs-heading-line::after {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    right: -7px;
    top: 50%;
    border-radius: 50%;
    background: #c89b22;
    transform: translateY(-50%);
}


/* =========================================================
   HERO PARAGRAPHS
========================================================= */

.srcs-hero-content p {
    max-width: 800px;
    margin: 0 0 17px;
    font-size: 16px;
    line-height: 1.72;
    color: #4f5f56;
}

.srcs-hero-content p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   IMAGE BADGE
========================================================= */

.srcs-hero-badge {
    position: absolute;
    z-index: 3;
    right: 45px;
    top: 45px;
    width: 150px;
    padding: 23px 18px;
    text-align: center;
    border-radius: 22px;
    background: #056d3a;
    color: #ffffff;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .16);
}

.srcs-badge-symbol {
    width: 55px;
    height: 55px;
    margin: 0 auto 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 50%;
}

.srcs-badge-symbol svg {
    width: 30px;
    height: 30px;
}

.srcs-hero-badge span {
    display: block;
    margin-bottom: 5px;
    font-size: 9px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #b9dfca;
}

.srcs-hero-badge strong {
    display: block;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 500;
}


/* =========================================================
   FACILITY HEADING
========================================================= */

.srcs-facility-heading {
    padding: 30px 0 35px;
    text-align: center;
}

.srcs-facility-heading .srcs-label {
    margin-bottom: 15px;
}

.srcs-facility-heading h3 {
    max-width: 900px;
    margin: 0 auto;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: -.8px;
    color: #123a29;
}


/* =========================================================
   HEADING DECORATION
========================================================= */

.srcs-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 20px;
}

.srcs-decoration span {
    width: 55px;
    height: 1px;
    background: #cdd9d1;
}

.srcs-decoration i {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #c89b22;
    border-radius: 50%;
    color: #08783f;
    font-size: 12px;
    font-style: normal;
}


/* =========================================================
   FACILITY BOX
========================================================= */

.srcs-facility-wrapper {
    width: 100%;
}

.srcs-facility-box {
    position: relative;
    padding: 34px 34px 30px;
    border-radius: 22px;
    background: linear-gradient( 135deg, #056d3a 0%, #035c32 100%);
    overflow: hidden;
    box-shadow: 0 25px 65px rgba(5, 70, 40, .15);
}


/* =========================================================
   BACKGROUND PATTERN
========================================================= */

.srcs-box-pattern {
    position: absolute;
    inset: 0;
    opacity: .07;
    background-image: radial-gradient( circle at 15% 20%, #ffffff 0, #ffffff 2px, transparent 3px), radial-gradient( circle at 80% 75%, #ffffff 0, #ffffff 2px, transparent 3px);
    background-size: 110px 110px, 150px 150px;
    pointer-events: none;
}


/* =========================================================
   FACILITY ITEMS
========================================================= */

.srcs-facility-items {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 7px;
}


/* =========================================================
   SINGLE ITEM
========================================================= */

.srcs-facility-item {
    position: relative;
    display: grid;
    grid-template-columns: 65px 1fr 42px;
    align-items: center;
    gap: 18px;
    min-height: 70px;
    padding: 7px 14px 7px 10px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 14px;
    background: rgba(255, 255, 255, .055);
    transition: background .3s ease, transform .3s ease, border-color .3s ease;
}

.srcs-facility-item:hover {
    background: rgba(255, 255, 255, .11);
    border-color: rgba(215, 174, 54, .4);
    transform: translateX(5px);
}


/* =========================================================
   ICON
========================================================= */

.srcs-facility-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(215, 174, 54, .8);
    border-radius: 50%;
    color: #e0b943;
    background: rgba(0, 0, 0, .08);
}

.srcs-facility-icon svg {
    width: 25px;
    height: 25px;
}


/* =========================================================
   ITEM TEXT
========================================================= */

.srcs-facility-item p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: #ffffff;
}


/* =========================================================
   ARROW
========================================================= */

.srcs-item-arrow {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d7a923;
    border-radius: 50%;
    color: #e0b943;
    font-size: 25px;
    line-height: 1;
    transition: background .3s ease, color .3s ease;
}

.srcs-facility-item:hover .srcs-item-arrow {
    background: #d7a923;
    color: #056d3a;
}


/* =========================================================
   BOTTOM DESCRIPTION
========================================================= */

.srcs-facility-bottom {
    position: relative;
    z-index: 2;
    margin-top: 25px;
    padding-top: 5px;
}

.srcs-bottom-decoration {
    display: grid;
    grid-template-columns: 1fr 35px 1fr;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.srcs-bottom-decoration span {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, .28);
}

.srcs-bottom-decoration i {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d8c16c;
    font-size: 14px;
    font-style: normal;
}

.srcs-facility-bottom p {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, .9);
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1500px) {
    .srcs-boarding-wrapper {
        width: 100%;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {
    .srcs-boarding-wrapper {
        width: 100%;
    }
    .srcs-boarding-hero {
        min-height: auto;
        background-size: cover;
        background-position: center right;
    }
    .srcs-hero-content {
        width: 65%;
        margin-left: 40px;
        padding: 50px 0 50px 35px;
    }
    .srcs-hero-badge {
        right: 25px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {
    .srcs-boarding-section {
        padding: 0 0 25px;
    }
    .srcs-boarding-wrapper {
        width: 100%;
    }
    .srcs-facility-container {
        width: calc(100% - 28px);
    }
    /* HERO */
    .srcs-boarding-hero {
        min-height: auto;
        align-items: flex-start;
        background-image: linear-gradient(180deg, rgba(247, 248, 244, .98) 0%, rgba(247, 248, 244, .93) 48%, rgba(247, 248, 244, .35) 100%), url("../images/diveristy-bg.png");
        background-position: center;
        background-size: cover;
        border-radius: 0;
    }
    .srcs-hero-content {
        width: 100%;
        margin-left: 0;
        padding: 30px 20px 0px;
    }
    /* H2 */
    .srcs-hero-content h2 {
        font-size: 52px;
        line-height: 1.04;
        letter-spacing: -1px;
    }
    /* TEXT */
    .srcs-hero-content p {
        font-size: 16px;
        line-height: 1.7;
    }
    /* BADGE */
    .srcs-hero-badge {
        top: auto;
        right: 20px;
        bottom: 25px;
        width: 130px;
        padding: 18px 15px;
    }
    .srcs-badge-symbol {
        width: 48px;
        height: 48px;
    }
    .srcs-badge-symbol svg {
        width: 25px;
        height: 25px;
    }
    /* FACILITY HEADING */
    .srcs-facility-heading {
        padding: 65px 0 30px;
    }
    .srcs-facility-heading h3 {
        font-size: 31px;
        line-height: 1.2;
    }
    /* BOX */
    .srcs-facility-box {
        padding: 20px 14px 25px;
        border-radius: 16px;
    }
    /* ITEM */
    .srcs-facility-item {
        grid-template-columns: 48px 1fr 30px;
        gap: 12px;
        min-height: 70px;
        padding: 8px;
    }
    .srcs-facility-icon {
        width: 42px;
        height: 42px;
    }
    .srcs-facility-icon svg {
        width: 21px;
        height: 21px;
    }
    .srcs-facility-item p {
        font-size: 16px;
        line-height: 1.45;
    }
    .srcs-item-arrow {
        width: 28px;
        height: 28px;
        font-size: 20px;
    }
    /* BOTTOM */
    .srcs-bottom-decoration {
        grid-template-columns: 1fr 28px 1fr;
        gap: 8px;
    }
    .srcs-facility-bottom p {
        font-size: 16px;
        line-height: 1.7;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 430px) {
    .srcs-hero-content h2 {
        font-size: 44px;
    }
    .srcs-hero-content {}
    .srcs-facility-heading h3 {
        font-size: 28px;
    }
    .srcs-facility-item {
        grid-template-columns: 43px 1fr;
    }
    .srcs-item-arrow {
        display: none;
    }
}


/* =========================================================
   MAIN
========================================================= */

.srcs-excellence-section {
    width: 100%;
    padding: 50px 0 30px;
    background: #f7f8f4;
    color: #143c2b;
    overflow: hidden;
}

.srcs-excellence-wrapper {
    width: min(1450px, calc(100% - 50px));
    margin: 0 auto;
}


/* =========================================================
   LABEL
========================================================= */

.srcs-excellence-label {
    display: inline-flex;
    align-items: center;
    padding: 9px 17px;
    border: 1px solid #d7e3da;
    border-radius: 30px;
    background: #eef5ef;
    color: #08783f;
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}


/* =========================================================
   INTRO
========================================================= */

.srcs-excellence-intro {
    display: block;
    padding-bottom: 80px;
}

.srcs-intro-heading {
    padding-top: 10px;
}

.srcs-intro-heading h2 {
    max-width: none;
    margin: 22px 0 0;
    font-size: 52px;
    line-height: 1.06;
    font-weight: 500;
    letter-spacing: -1.5px;
    color: #123a29;
}

.srcs-intro-heading h2 span {
    display: inline;
    color: #08783f;
    font-style: normal;
}


/* =========================================================
   LINE
========================================================= */

.srcs-excellence-line {
    position: relative;
    width: 75px;
    height: 2px;
    margin-top: 30px;
    background: #08783f;
}

.srcs-excellence-line::after {
    content: "";
    position: absolute;
    right: -7px;
    top: 50%;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #c99b24;
    transform: translateY(-50%);
}


/* =========================================================
   INTRO COPY
========================================================= */

.srcs-intro-copy {
    padding-top: 25px;
}

.srcs-intro-heading h2 {
    white-space: nowrap;
}

.srcs-intro-copy p {
    max-width: none;
}

.srcs-intro-copy p {
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 1.8;
    color: #56655d;
}

.srcs-intro-copy p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   REASONS
========================================================= */

.srcs-reasons-section {
    padding: 65px 50px 55px;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 20px 60px rgba(20, 60, 40, .07);
}

.srcs-reasons-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 1px solid #dce5df;
}

.srcs-reasons-header span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #08783f;
}

.srcs-reasons-header p {
    max-width: 390px;
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #66736c;
}


/* =========================================================
   REASON GRID
========================================================= */

.srcs-reasons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 35px;
}


/* =========================================================
   REASON CARD
========================================================= */

.srcs-reason-card {
    position: relative;
    display: grid;
    grid-template-columns: 60px 1fr 35px;
    gap: 20px;
    align-items: start;
    min-height: 230px;
    padding: 35px 10px 32px 0;
    border-bottom: 1px solid #dce5df;
    transition: transform .35s ease, padding-left .35s ease;
}

.srcs-reason-card:hover {
    transform: translateX(5px);
}


/* =========================================================
   NUMBER
========================================================= */

.srcs-reason-number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #edf5ef;
    color: #08783f;
    font-size: 12px;
    font-weight: 700;
    transition: background .3s ease, color .3s ease;
}

.srcs-reason-card:hover .srcs-reason-number {
    background: #08783f;
    color: #ffffff;
}


/* =========================================================
   REASON CONTENT
========================================================= */

.srcs-reason-content h3 {
    margin: 0 0 13px;
    font-size: 21px;
    line-height: 1.3;
    font-weight: 500;
    color: #163d2b;
}

.srcs-reason-content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.75;
    color: #59675f;
}


/* =========================================================
   ARROW
========================================================= */

.srcs-reason-arrow {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #cfdad3;
    border-radius: 50%;
    color: #08783f;
    font-size: 15px;
    transition: background .3s ease, color .3s ease, border-color .3s ease;
}

.srcs-reason-card:hover .srcs-reason-arrow {
    background: #08783f;
    color: #ffffff;
    border-color: #08783f;
}


/* =========================================================
   CONCLUSION
========================================================= */

.srcs-reasons-conclusion {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 40px;
    margin-top: 38px;
    padding: 30px 0 5px;
}

.srcs-reasons-conclusion>span {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #08783f;
}

.srcs-reasons-conclusion p {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: #59675f;
}


/* =========================================================
   MATTER SECTION
========================================================= */

.srcs-matter-section {
    padding-top: 120px;
}


/* =========================================================
   MATTER HEADING
========================================================= */

.srcs-matter-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 38px;
    border-bottom: 1px solid #d5ded8;
}

.srcs-matter-heading h2 {
    max-width: none;
    margin: 20px 0 0;
    font-size: 52px;
    line-height: 1.06;
    font-weight: 500;
    letter-spacing: -1.5px;
    color: #123a29;
}

.srcs-matter-heading h2 span {
    display: inline;
    color: #08783f;
    font-style: normal;
}

.srcs-matter-number {
    font-size: 85px;
    line-height: .8;
    font-weight: 300;
    color: #dce6df;
}


/* =========================================================
   MATTER BOX
========================================================= */

.srcs-matter-box {
    position: relative;
    margin-top: 45px;
    padding: 50px;
    border-radius: 20px;
    background: linear-gradient( 135deg, #056d3a 0%, #035d32 100%);
    color: #ffffff;
    overflow: hidden;
    box-shadow: 0 25px 65px rgba(5, 70, 40, .15);
}

.srcs-matter-box::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    right: -180px;
    top: -220px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
    box-shadow: 0 0 0 60px rgba(255, 255, 255, .025), 0 0 0 120px rgba(255, 255, 255, .018);
    pointer-events: none;
}


/* =========================================================
   MATTER INTRO
========================================================= */

.srcs-matter-intro {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 270px 1fr;
    gap: 60px;
    padding-bottom: 42px;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.srcs-matter-heading h2 {
    white-space: nowrap;
}

.srcs-matter-intro {
    display: block;
}

.srcs-matter-intro p {
    max-width: none;
    margin-top: 20px;
}

.srcs-matter-small {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #b9dfca;
}

.srcs-matter-intro p {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .9);
}


/* =========================================================
   MATTER POINTS
========================================================= */

.srcs-matter-points {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 55px;
    padding-top: 10px;
}


/* =========================================================
   MATTER POINT
========================================================= */

.srcs-matter-point {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 20px;
    padding: 32px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.srcs-matter-point>span {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(215, 174, 54, .8);
    border-radius: 50%;
    color: #e0b943;
    font-size: 10px;
    font-weight: 700;
}

.srcs-matter-point h3 {
    margin: 0 0 10px;
    font-size: 21px;
    line-height: 1.3;
    font-weight: 600;
    color: #ffffff;
}

.srcs-matter-point p {
    margin: 0;
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, .78);
}


/* =========================================================
   MATTER FOOTER
========================================================= */

.srcs-matter-footer {
    position: relative;
    z-index: 1;
    margin-top: 35px;
    padding: 30px 35px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
}

.srcs-matter-footer p {
    max-width: 1150px;
    margin: 0 auto;
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .9);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {
    .srcs-excellence-wrapper {
        width: min(100% - 40px, 850px);
    }
    .srcs-excellence-intro {
        gap: 30px;
    }
    .srcs-intro-copy {
        padding-top: 0;
    }
    .srcs-reasons-grid {
        grid-template-columns: 1fr;
    }
    .srcs-matter-intro {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .srcs-matter-points {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {
    .srcs-excellence-section {
        padding: 65px 0 80px;
    }
    .srcs-excellence-wrapper {
        width: calc(100% - 28px);
    }
    /* H2 */
    .srcs-intro-heading h2,
    .srcs-matter-heading h2 {
        font-size: 52px;
        line-height: 1.04;
        letter-spacing: -1px;
        white-space: normal;
    }
    .srcs-intro-heading h2 {
        white-space: normal;
    }
    /* INTRO */
    .srcs-excellence-intro {
        padding-bottom: 55px;
    }
    .srcs-intro-copy p {
        font-size: 16px;
        line-height: 1.7;
    }
    /* REASONS */
    .srcs-reasons-section {
        padding: 35px 20px 30px;
        border-radius: 7px;
    }
    .srcs-reasons-header {
        display: block;
    }
    .srcs-reasons-header p {
        margin-top: 15px;
        font-size: 16px;
    }
    .srcs-reason-card {
        grid-template-columns: 48px 1fr 30px;
        gap: 13px;
        min-height: auto;
        padding: 27px 0;
    }
    .srcs-reason-number {
        width: 40px;
        height: 40px;
    }
    .srcs-reason-content h3 {
        font-size: 19px;
    }
    .srcs-reason-content p {
        font-size: 16px;
        line-height: 1.7;
    }
    .srcs-reason-arrow {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }
    /* CONCLUSION */
    .srcs-reasons-conclusion {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .srcs-reasons-conclusion p {
        font-size: 16px;
    }
    /* MATTER */
    .srcs-matter-section {
        padding-top: 80px;
    }
    .srcs-matter-heading {
        align-items: flex-start;
    }
    .srcs-matter-number {
        font-size: 55px;
    }
    .srcs-matter-box {
        margin-top: 30px;
        padding: 28px 20px;
        border-radius: 14px;
    }
    .srcs-matter-intro p {
        font-size: 16px;
    }
    .srcs-matter-point {
        grid-template-columns: 38px 1fr;
        gap: 13px;
        padding: 27px 0;
    }
    .srcs-matter-point>span {
        width: 32px;
        height: 32px;
    }
    .srcs-matter-point h3 {
        font-size: 23px !important;
        font-weight: 500 !important;
    }
    .srcs-matter-point p {
        font-size: 16px;
        line-height: 1.7;
    }
    .srcs-matter-footer {
        padding: 22px 17px;
    }
    .srcs-matter-footer p {
        font-size: 16px;
        line-height: 1.7;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 430px) {
    .srcs-intro-heading h2,
    .srcs-matter-heading h2 {
        font-size: 31px !important;
    }
    .srcs-reason-card {
        grid-template-columns: 42px 1fr;
    }
    .srcs-reason-arrow {
        display: none;
    }
}


/* =========================================================
   MAIN SECTION
========================================================= */

.srcs-day-slider-section {
    width: 100%;
    padding: 30px 0 30px;
    background: #f7f8f4;
    overflow: hidden;
}

.srcs-day-slider-wrap {
    width: min(1450px, calc(100% - 50px));
    margin: 0 auto;
}


/* =========================================================
   HEADING
========================================================= */

.srcs-day-heading {
    text-align: center;
    margin-bottom: 48px;
}

.srcs-day-heading>span {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #08783f;
}

.srcs-day-heading h2 {
    margin: 0;
    font-size: 52px;
    line-height: 1.08;
    font-weight: 500;
    letter-spacing: -1.5px;
    color: #123a29;
}

.srcs-day-heading p {
    max-width: 650px;
    margin: 17px auto 0;
    font-size: 16px;
    line-height: 1.7;
    color: #64716a;
}


/* =========================================================
   SLIDER
========================================================= */

.srcs-day-slider {
    position: relative;
    width: 100%;
    border: 1px solid #173d2c;
    border-radius: 4px;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(18, 59, 40, .09);
}


/* =========================================================
   TRACK
========================================================= */

.srcs-day-track {
    position: relative;
    width: 100%;
}


/* =========================================================
   SLIDE
========================================================= */

.srcs-day-slide {
    display: none;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    min-height: 500px;
    background: #ffffff;
}

.srcs-day-slide.active {
    display: grid;
    animation: srcsSlideIn .55s ease both;
}

@keyframes srcsSlideIn {
    from {
        opacity: 0;
        transform: translateX(25px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* =========================================================
   CONTENT SIDE
========================================================= */

.srcs-day-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 65px 75px 65px 80px;
    background: linear-gradient( 145deg, #ffffff 0%, #f8faf7 100%);
}


/* =========================================================
   SLIDE COUNT
========================================================= */

.srcs-slide-count {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.srcs-slide-count>span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #08783f;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
}

.srcs-slide-count>div {
    width: 40px;
    height: 1px;
    background: #cbd8cf;
}

.srcs-slide-count strong {
    font-size: 10px;
    line-height: 1;
    letter-spacing: 1.8px;
    font-weight: 700;
    color: #08783f;
}


/* =========================================================
   SLIDE HEADING
========================================================= */

.srcs-day-content h3 {
    margin: 0 0 35px;
    font-size: 40px;
    line-height: 1.1;
    font-weight: 500;
    letter-spacing: -.8px;
    color: #123a29;
}


/* =========================================================
   SCHEDULE
========================================================= */

.srcs-day-schedule {
    display: flex;
    flex-direction: column;
    max-width: 500px;
}

.srcs-time-item {
    position: relative;
    padding: 0 0 19px 20px;
    border-left: 1px solid #d4dfd8;
}

.srcs-time-item:last-child {
    padding-bottom: 0;
    border-left-color: transparent;
}


/* Timeline dot */

.srcs-time-item::before {
    content: "";
    position: absolute;
    left: -4px;
    top: 4px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #c79b24;
    box-shadow: 0 0 0 4px #f7f8f4;
}


/* TIME */

.srcs-time-item strong {
    display: block;
    margin-bottom: 5px;
    font-size: 13px;
    line-height: 1.3;
    font-weight: 700;
    color: #143d2b;
}


/* DESCRIPTION */

.srcs-time-item p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: #606c65;
}


/* =========================================================
   IMAGE
========================================================= */

.srcs-day-image {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    background: #dce4de;
}

.srcs-day-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .8s ease;
}

.srcs-day-slide.active .srcs-day-image img {
    animation: srcsImageZoom 6s ease-out both;
}

@keyframes srcsImageZoom {
    from {
        transform: scale(1.04);
    }
    to {
        transform: scale(1);
    }
}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.srcs-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 180deg, rgba(0, 0, 0, 0) 55%, rgba(5, 45, 29, .5) 100%);
    pointer-events: none;
}


/* =========================================================
   IMAGE LABEL
========================================================= */

.srcs-image-label {
    position: absolute;
    left: 25px;
    bottom: 22px;
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, .4);
    border-radius: 20px;
    background: rgba(5, 61, 36, .75);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    backdrop-filter: blur(8px);
}


/* =========================================================
   ARROWS
========================================================= */

.srcs-day-arrow {
    position: absolute;
    z-index: 5;
    top: 25px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 50%;
    background: rgba(7, 62, 38, .85);
    color: #ffffff;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: background .25s ease, transform .25s ease, border-color .25s ease;
}

.srcs-day-prev {
    left: 25px;
}

.srcs-day-next {
    right: 25px;
}

.srcs-day-arrow span {
    display: block;
    margin-top: -3px;
    font-size: 30px;
    line-height: 1;
    font-weight: 300;
}

.srcs-day-arrow:hover {
    background: #08783f;
    border-color: #ffffff;
    transform: scale(1.08);
}

.srcs-day-arrow:active {
    transform: scale(.95);
}


/* =========================================================
   BOTTOM NAVIGATION
========================================================= */

.srcs-day-navigation {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 22px;
}


/* PROGRESS */

.srcs-day-progress {
    position: relative;
    flex: 1;
    height: 2px;
    background: #d5ded8;
    overflow: hidden;
}

.srcs-progress-active {
    width: 12.5%;
    height: 100%;
    background: #08783f;
    transition: width .45s ease;
}


/* COUNTER */

.srcs-day-counter {
    display: flex;
    align-items: center;
    gap: 7px;
    min-width: 60px;
    font-size: 12px;
}

.srcs-day-counter strong {
    color: #08783f;
}

.srcs-day-counter span {
    color: #9ba7a0;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {
    .srcs-day-slider-wrap {
        width: min(100% - 40px, 800px);
    }
    .srcs-day-slide {
        grid-template-columns: 1fr 1fr;
    }
    .srcs-day-content {
        padding: 55px 40px;
    }
    .srcs-day-content h3 {
        font-size: 34px;
    }
    .srcs-day-image {
        min-height: 480px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {
    .srcs-day-slider-section {
        padding: 25px 0 30px;
    }
    .srcs-day-slider-wrap {
        width: calc(100% - 28px);
    }
    /* HEADING */
    .srcs-day-heading {
        margin-bottom: 30px;
    }
    .srcs-day-heading h2 {
        font-size: 52px;
        line-height: 1.04;
        letter-spacing: -1px;
    }
    .srcs-day-heading p {
        font-size: 16px;
    }
    /* SLIDE */
    .srcs-day-slide {
        grid-template-columns: 1fr;
    }
    /* IMAGE FIRST */
    .srcs-day-image {
        order: -1;
        min-height: 300px;
        height: 300px;
    }
    /* CONTENT */
    .srcs-day-content {
        padding: 42px 25px 48px;
    }
    .srcs-day-content h3 {
        margin-bottom: 30px;
        font-size: 34px;
    }
    /* ARROWS */
    .srcs-day-arrow {
        top: 15px;
        width: 42px;
        height: 42px;
    }
    .srcs-day-prev {
        left: 15px;
    }
    .srcs-day-next {
        right: 15px;
    }
    .srcs-day-arrow span {
        font-size: 27px;
    }
    /* IMAGE LABEL */
    .srcs-image-label {
        left: 15px;
        bottom: 15px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 430px) {
    .srcs-day-heading h2 {
        font-size: 44px;
    }
    .srcs-day-image {
        min-height: 270px;
        height: 270px;
    }
    .srcs-day-content {
        padding: 35px 20px 42px;
    }
    .srcs-day-content h3 {
        font-size: 30px;
    }
    .srcs-slide-count {
        margin-bottom: 20px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
    .srcs-day-slide.active {
        animation: none;
    }
    .srcs-day-slide.active .srcs-day-image img {
        animation: none;
    }
}


/* =========================================================
   MAIN SECTION
========================================================= */

.srcs-support-faq {
    position: relative;
    width: 100%;
    background: #fbfcf8;
    overflow: hidden;
    color: #153d2c;
}


/* =========================================================
   PEOPLE CONTAINER
========================================================= */

.srcs-support-container {
    position: relative;
    width: min(1450px, calc(100% - 50px));
    margin: 0 auto;
    padding: 55px 0 80px;
    z-index: 2;
}


/* =========================================================
   HEADING
========================================================= */

.srcs-support-heading {
    text-align: center;
}


/* =========================================================
   TOP LABEL
========================================================= */

.srcs-heading-tag {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 15px;
    color: #174b34;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.srcs-tag-line {
    width: 42px;
    height: 2px;
    background: #f1bb16;
}

.srcs-tag-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #edf5e8;
    color: #08783f;
    font-size: 14px;
}


/* =========================================================
   MAIN H2
========================================================= */

.srcs-support-heading h2 {
    margin: 0;
    font-size: 52px;
    line-height: 1.08;
    font-weight: 500;
    letter-spacing: -1.7px;
    color: #123d2c;
}

.srcs-support-heading h2 span {
    color: #f0b719;
    font-style: normal;
}


/* =========================================================
   HEADING DECORATION
========================================================= */

.srcs-heading-leaf {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    margin-top: 15px;
}

.srcs-heading-leaf span {
    width: 82px;
    height: 1px;
    background: #e7c75b;
}

.srcs-heading-leaf b {
    display: block;
    color: #08783f;
    font-size: 27px;
    line-height: 1;
    transform: rotate(-25deg);
}


/* =========================================================
   DESCRIPTION
========================================================= */

.srcs-support-description {
    max-width: 1160px;
    margin: 27px auto 0;
    text-align: center;
}

.srcs-support-description p {
    margin: 0 0 15px;
    font-size: 16px;
    line-height: 1.75;
    color: #3f4d46;
}

.srcs-support-description p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   STAFF SLIDER
========================================================= */

.srcs-staff-slider {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 45px;
}

.srcs-staff-viewport {
    width: 100%;
    overflow: hidden;
    padding: 0 75px;
}

.srcs-staff-track {
    display: flex;
    gap: 32px;
    transition: transform .55s cubic-bezier(.22, .61, .36, 1);
}


/* =========================================================
   STAFF CARD
========================================================= */

.srcs-staff-card {
    position: relative;
    flex: 0 0 calc(50% - 16px);
    min-width: 0;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(18, 61, 44, .10);
    overflow: hidden;
    border: 1px solid #edf0ea;
    transition: transform .35s ease, box-shadow .35s ease;
}

.srcs-staff-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 55px rgba(18, 61, 44, .15);
}


/* =========================================================
   STAFF IMAGE
========================================================= */

.srcs-staff-image {
    position: relative;
    width: 100%;
    height: 365px;
    overflow: hidden;
    background: #e8eee9;
}

.srcs-staff-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
    transition: transform .7s ease;
}

.srcs-staff-card:hover .srcs-staff-image img {
    transform: scale(1.035);
}


/* =========================================================
   IMAGE SHADE
========================================================= */

.srcs-image-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient( 180deg, rgba(5, 50, 30, 0) 65%, rgba(5, 50, 30, .18) 100%);
    pointer-events: none;
}


/* =========================================================
   STAFF INFO
========================================================= */

.srcs-staff-info {
    position: relative;
    min-height: 125px;
    padding: 36px 25px 23px;
    text-align: center;
    background: #ffffff;
}


/* =========================================================
   STAFF ICON
========================================================= */

.srcs-staff-icon {
    position: absolute;
    top: -27px;
    left: 50%;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid #ffffff;
    border-radius: 50%;
    background: #08783f;
    color: #ffffff;
    transform: translateX(-50%);
    box-shadow: 0 5px 15px rgba(0, 0, 0, .12);
}

.srcs-staff-icon span {
    font-size: 24px;
    line-height: 1;
}


/* =========================================================
   STAFF NAME
========================================================= */

.srcs-staff-info h3 {
    margin: 0 0 7px;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 600;
    color: #12452f;
}


/* =========================================================
   STAFF ROLE
========================================================= */

.srcs-staff-info p {
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
    color: #47544d;
}


/* =========================================================
   STAFF GOLD LINE
========================================================= */

.srcs-staff-line {
    width: 45px;
    height: 3px;
    margin: 14px auto 0;
    background: #f1bd18;
    border-radius: 10px;
}


/* =========================================================
   CARD GOLD/GREEN CORNER
========================================================= */

.srcs-staff-card::after {
    content: "";
    position: absolute;
    right: -1px;
    bottom: -1px;
    width: 48px;
    height: 48px;
    background: linear-gradient( 135deg, transparent 50%, #08783f 51%, #08783f 72%, #f1bd18 73%, #f1bd18 100%);
    pointer-events: none;
}


/* =========================================================
   SLIDER ARROWS
========================================================= */

.srcs-staff-arrow {
    position: absolute;
    z-index: 5;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #f4bd18;
    color: #ffffff;
    font-size: 38px;
    line-height: 1;
    font-weight: 300;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(220, 165, 15, .18);
    transition: transform .25s ease, background .25s ease;
}

.srcs-staff-arrow:hover {
    background: #08783f;
    transform: scale(1.08);
}

.srcs-staff-arrow:active {
    transform: scale(.94);
}

.srcs-staff-prev {
    left: 0;
}

.srcs-staff-next {
    right: 0;
}


/* =========================================================
   DOTS
========================================================= */

.srcs-staff-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.srcs-staff-dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #d8ddd8;
    cursor: pointer;
    transition: width .3s ease, background .3s ease;
}

.srcs-staff-dots button.active {
    width: 14px;
    height: 14px;
    background: #f1bd18;
}


/* =========================================================
   FAQ BACKGROUND
========================================================= */

.srcs-faq-area {
    position: relative;
    width: 100%;
    padding: 65px 0 85px;
    background: linear-gradient( 180deg, #f1f7ef 0%, #edf5ea 100%);
    border-top: 1px solid #eef2eb;
    z-index: 2;
}


/* =========================================================
   FAQ CONTAINER
========================================================= */

.srcs-faq-container {
    width: min(1350px, calc(100% - 50px));
    margin: 0 auto;
}


/* =========================================================
   FAQ HEADING
========================================================= */

.srcs-faq-heading {
    text-align: center;
    margin-bottom: 35px;
}

.srcs-faq-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #174b34;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.srcs-faq-tag-line {
    width: 42px;
    height: 2px;
    background: #eab617;
}

.srcs-faq-question {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f3bf1a;
    color: #12442e;
    font-size: 16px;
    font-weight: 800;
}

.srcs-faq-heading h2 {
    margin: 0;
    font-size: 52px;
    line-height: 1.08;
    font-weight: 500;
    letter-spacing: -1.5px;
    color: #123d2b;
}

.srcs-faq-heading h2 span {
    color: #f0b719;
    font-style: normal;
}


/* =========================================================
   FAQ ITEM
========================================================= */

.srcs-faq-item {
    position: relative;
    width: 100%;
    padding: 25px 30px 30px;
    border: 1px solid #e2e8df;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 15px 45px rgba(32, 67, 47, .08);
    overflow: hidden;
}


/* =========================================================
   FAQ TOP
========================================================= */

.srcs-faq-top {
    display: grid;
    grid-template-columns: 52px 1fr 42px;
    align-items: center;
    gap: 20px;
}


/* =========================================================
   FAQ NUMBER
========================================================= */

.srcs-faq-number {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f5c21b;
    color: #153f2b;
    font-size: 14px;
    font-weight: 800;
}


/* =========================================================
   QUESTION
========================================================= */

.srcs-faq-question-text h3 {
    margin: 0;
    font-size: 24px;
    line-height: 1.4;
    font-weight: 500;
    color: #16452f;
}


/* =========================================================
   FAQ TOGGLE
========================================================= */

.srcs-faq-toggle {
    position: relative;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.srcs-faq-toggle span {
    position: absolute;
    width: 17px;
    height: 2px;
    background: #164a32;
    border-radius: 5px;
    transition: transform .3s ease;
}

.srcs-faq-toggle span:first-child {
    transform: rotate(45deg);
}

.srcs-faq-toggle span:last-child {
    transform: rotate(-45deg);
}

.srcs-faq-item:not(.active) .srcs-faq-toggle span:first-child {
    transform: rotate(90deg);
}

.srcs-faq-item:not(.active) .srcs-faq-toggle span:last-child {
    transform: rotate(0deg);
}


/* =========================================================
   FAQ ANSWER
========================================================= */

.srcs-faq-answer {
    display: none;
    max-width: 1130px;
    margin-left: 72px;
    padding-top: 17px;
}

.srcs-faq-item.active .srcs-faq-answer {
    display: block;
}

.srcs-faq-answer p {
    margin: 0 0 8px;
    font-size: 16px;
    line-height: 1.65;
    color: #4d5c53;
}

.srcs-faq-answer p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   DECORATIVE LEAVES
========================================================= */

.srcs-decor-leaf {
    position: absolute;
    pointer-events: none;
    opacity: .8;
}

.srcs-leaf-left {
    left: -20px;
    bottom: 15px;
    width: 100px;
    height: 130px;
    transform: rotate(-20deg);
}

.srcs-leaf-right {
    right: -20px;
    top: 20px;
    width: 100px;
    height: 130px;
    transform: rotate(25deg);
}

.srcs-decor-leaf span {
    position: absolute;
    display: block;
    width: 42px;
    height: 75px;
    border: 2px solid #b6cdbd;
    border-radius: 100% 0 100% 0;
    transform-origin: bottom center;
}

.srcs-leaf-left span:nth-child(1) {
    left: 10px;
    bottom: 5px;
    transform: rotate(25deg);
}

.srcs-leaf-left span:nth-child(2) {
    left: 35px;
    bottom: 35px;
    transform: rotate(55deg);
}

.srcs-leaf-left span:nth-child(3) {
    left: 5px;
    bottom: 45px;
    transform: rotate(-15deg);
}

.srcs-leaf-right span:nth-child(1) {
    right: 10px;
    bottom: 5px;
    transform: rotate(-25deg);
}

.srcs-leaf-right span:nth-child(2) {
    right: 35px;
    bottom: 35px;
    transform: rotate(-55deg);
}

.srcs-leaf-right span:nth-child(3) {
    right: 5px;
    bottom: 45px;
    transform: rotate(15deg);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {
    .srcs-support-container {
        width: min(100% - 40px, 850px);
    }
    .srcs-staff-viewport {
        padding: 0 55px;
    }
    .srcs-staff-card {
        flex-basis: calc(50% - 16px);
    }
    .srcs-staff-image {
        height: 320px;
    }
    .srcs-faq-container {
        width: min(100% - 40px, 850px);
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {
    .srcs-support-container {
        width: calc(100% - 28px);
        padding: 55px 0 65px;
    }
    /* HEADING */
    .srcs-support-heading h2,
    .srcs-faq-heading h2 {
        font-size: 52px;
        line-height: 1.04;
        letter-spacing: -1px;
    }
    .srcs-support-description {
        margin-top: 23px;
    }
    .srcs-support-description p {
        font-size: 16px;
        line-height: 1.7;
    }
    /* STAFF */
    .srcs-staff-slider {
        margin-top: 35px;
    }
    .srcs-staff-viewport {
        padding: 0 40px;
    }
    .srcs-staff-track {
        gap: 16px;
    }
    .srcs-staff-card {
        flex: 0 0 100%;
    }
    .srcs-staff-image {
        height: 340px;
    }
    .srcs-staff-info {
        min-height: 120px;
        padding-top: 35px;
    }
    .srcs-staff-info h3 {
        font-size: 22px;
    }
    .srcs-staff-info p {
        font-size: 16px;
    }
    /* ARROWS */
    .srcs-staff-arrow {
        width: 42px;
        height: 42px;
        font-size: 30px;
    }
    /* DOTS */
    .srcs-staff-dots {
        margin-top: 23px;
    }
    /* FAQ */
    .srcs-faq-area {
        padding: 55px 0 70px;
    }
    .srcs-faq-container {
        width: calc(100% - 28px);
    }
    .srcs-faq-heading {
        margin-bottom: 28px;
    }
    .srcs-faq-item {
        padding: 20px 17px 23px;
        border-radius: 14px;
    }
    .srcs-faq-top {
        grid-template-columns: 45px 1fr 35px;
        gap: 12px;
    }
    .srcs-faq-number {
        width: 40px;
        height: 40px;
    }
    .srcs-faq-question-text h3 {
        font-size: 18px;
        line-height: 1.35;
    }
    .srcs-faq-answer {
        margin-left: 0;
        padding: 18px 5px 0;
    }
    .srcs-faq-answer p {
        font-size: 16px;
        line-height: 1.7;
    }
    .srcs-faq-toggle {
        width: 32px;
        height: 32px;
    }
    /* LEAVES */
    .srcs-decor-leaf {
        opacity: .45;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 430px) {
    .srcs-support-heading h2,
    .srcs-faq-heading h2 {
        font-size: 44px;
    }
    .srcs-staff-image {
        height: 300px;
    }
    .srcs-staff-viewport {
        padding: 0 34px;
    }
    .srcs-staff-arrow {
        width: 38px;
        height: 38px;
        font-size: 27px;
    }
    .srcs-staff-prev {
        left: -2px;
    }
    .srcs-staff-next {
        right: -2px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
    .srcs-staff-track,
    .srcs-staff-card,
    .srcs-staff-image img,
    .srcs-staff-arrow {
        transition: none;
    }
}


/* Staff cards advance automatically; navigation arrows are intentionally hidden. */

.srcs-staff-arrow {
    display: none !important;
}

.srcs-staff-viewport {
    padding-left: 0;
    padding-right: 0;
}

.srcs-staff-track {
    transition: none !important;
    will-change: transform;
}


/* =========================================================
   MAIN SECTION
========================================================= */

.srcs-health-section {
    width: 100%;
    padding: 35px 0 30px;
    background: linear-gradient( 180deg, #fbfcf9 0%, #f3f7f2 100%);
    color: #153e2d;
    overflow: hidden;
}

.srcs-health-wrap {
    width: min(1450px, calc(100% - 50px));
    margin: 0 auto;
}


/* =========================================================
   LABEL
========================================================= */

.srcs-health-label {
    display: inline-flex;
    align-items: center;
    padding: 9px 17px;
    border: 1px solid #d8e5db;
    border-radius: 30px;
    background: #eef5ef;
    color: #08783f;
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}


/* =========================================================
   INTRO
========================================================= */

.srcs-health-intro {
    margin-bottom: 50px;
}

.srcs-health-intro h2,
.srcs-infirmary-heading h2 {
    margin: 22px 0 0;
    font-size: 52px;
    line-height: 1.06;
    font-weight: 500;
    letter-spacing: -1.5px;
    color: #123d2b;
}

.srcs-health-intro h2 span {
    color: #08783f;
}

.srcs-health-rule {
    position: relative;
    width: 80px;
    height: 3px;
    margin: 25px 0;
    background: #f1bd18;
}

.srcs-health-rule::after {
    content: "";
    position: absolute;
    right: -8px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #08783f;
    transform: translateY(-50%);
}

.srcs-health-intro p {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: #526158;
}


/* =========================================================
   MORNING FEATURE
========================================================= */

.srcs-health-feature {
    position: relative;
    display: grid;
    grid-template-columns: 44% 56%;
    min-height: 480px;
    margin-bottom: 48px;
    border-radius: 20px;
    background: #075f35;
    overflow: hidden;
    box-shadow: 0 25px 65px rgba(13, 65, 40, .13);
}


/* =========================================================
   FEATURE COPY
========================================================= */

.srcs-feature-copy {
    position: relative;
    display: flex;
    align-items: center;
    padding: 70px 65px 70px 75px;
    background: linear-gradient( 145deg, #075f35 0%, #08783f 100%);
    z-index: 2;
}

.srcs-feature-copy::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    left: -160px;
    bottom: -150px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 50%;
    box-shadow: 0 0 0 55px rgba(255, 255, 255, .025), 0 0 0 110px rgba(255, 255, 255, .018);
    pointer-events: none;
}

.srcs-feature-copy p {
    position: relative;
    margin: 0;
    max-width: 530px;
    font-size: 16px;
    line-height: 1.85;
    color: rgba(255, 255, 255, .92);
}


/* =========================================================
   NUMBER
========================================================= */

.srcs-feature-number {
    position: absolute;
    left: 28px;
    top: 28px;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 50%;
    color: #f4c21b;
    font-size: 12px;
    font-weight: 700;
}


/* =========================================================
   IMAGE
========================================================= */

.srcs-feature-image {
    position: relative;
    min-height: 480px;
    overflow: hidden;
}

.srcs-feature-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .8s ease;
}

.srcs-health-feature:hover .srcs-feature-image img {
    transform: scale(1.035);
}


/* =========================================================
   IMAGE BADGE
========================================================= */

.srcs-image-badge {
    position: absolute;
    left: 25px;
    bottom: 25px;
    padding: 10px 17px;
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 30px;
    background: rgba(4, 55, 32, .78);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    backdrop-filter: blur(8px);
}


/* =========================================================
   TEXT BELOW FEATURE
========================================================= */

.srcs-health-text {
    display: grid;
    grid-template-columns: 8px 1fr;
    gap: 25px;
    margin: 0 auto 50px;
    align-items: start;
}

.srcs-text-mark {
    width: 4px;
    min-height: 75px;
    border-radius: 10px;
    background: #f1bd18;
}

.srcs-health-text p {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: #4e5c54;
}


/* =========================================================
   INFIRMARY HEADING
========================================================= */

.srcs-infirmary-heading {
    text-align: center;
    margin: 0 auto 48px;
}

.srcs-infirmary-heading .srcs-health-rule {
    margin-left: auto;
    margin-right: auto;
}

.srcs-infirmary-heading h2 {
    color: #08783f;
}

.srcs-infirmary-heading p {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: #526158;
}


/* =========================================================
   INFIRMARY FEATURE
========================================================= */

.srcs-infirmary-feature {
    position: relative;
    display: grid;
    grid-template-columns: 56% 44%;
    min-height: 480px;
    margin-bottom: 45px;
    border-radius: 20px;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 20px 55px rgba(20, 60, 40, .10);
    border: 1px solid #e4ebe5;
}


/* =========================================================
   INFIRMARY IMAGE
========================================================= */

.srcs-infirmary-image {
    position: relative;
    min-height: 480px;
    overflow: hidden;
}

.srcs-infirmary-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .8s ease;
}

.srcs-infirmary-feature:hover .srcs-infirmary-image img {
    transform: scale(1.035);
}


/* =========================================================
   INFIRMARY COPY
========================================================= */

.srcs-infirmary-copy {
    position: relative;
    display: flex;
    align-items: center;
    padding: 70px 75px 70px 65px;
    background: linear-gradient( 135deg, #ffffff 0%, #f3f7f3 100%);
}

.srcs-infirmary-copy .srcs-feature-number {
    color: #08783f;
    border-color: #cbdacf;
}

.srcs-infirmary-copy p {
    margin: 0;
    font-size: 16px;
    line-height: 1.85;
    color: #4d5b53;
}


/* =========================================================
   FINAL TEXT
========================================================= */

.srcs-health-final {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin: 0 auto;
}

.srcs-final-line {
    flex: 0 0 55px;
    height: 3px;
    margin-top: 10px;
    background: #08783f;
}

.srcs-health-final p {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: #4e5c54;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {
    .srcs-health-wrap {
        width: min(100% - 40px, 850px);
    }
    .srcs-health-feature,
    .srcs-infirmary-feature {
        grid-template-columns: 1fr;
    }
    .srcs-feature-image,
    .srcs-infirmary-image {
        min-height: 430px;
        height: 430px;
    }
    .srcs-feature-copy,
    .srcs-infirmary-copy {
        min-height: 330px;
    }
    .srcs-health-text {
        margin-bottom: 80px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {
    .srcs-health-section {
        padding: 30px 0 30px;
    }
    .srcs-health-wrap {
        width: calc(100% - 28px);
    }
    /* HEADINGS */
    .srcs-health-intro h2,
    .srcs-infirmary-heading h2 {
        font-size: 52px;
        line-height: 1.04;
        letter-spacing: -1px;
    }
    /* INTRO */
    .srcs-health-intro {
        margin-bottom: 35px;
    }
    .srcs-health-intro p,
    .srcs-infirmary-heading p {
        font-size: 16px;
        line-height: 1.7;
    }
    /* MORNING */
    .srcs-health-feature {
        border-radius: 14px;
        margin-bottom: 30px;
    }
    .srcs-feature-image {
        order: -1;
        height: 330px;
        min-height: 330px;
    }
    .srcs-feature-copy {
        min-height: 350px;
        padding: 65px 25px 45px;
    }
    .srcs-feature-copy p {
        font-size: 16px;
        line-height: 1.75;
    }
    .srcs-feature-number {
        left: 20px;
        top: 20px;
    }
    /* TEXT */
    .srcs-health-text {
        grid-template-columns: 5px 1fr;
        gap: 17px;
        margin-bottom: 20px;
    }
    .srcs-health-text p {
        font-size: 16px;
        line-height: 1.7;
    }
    /* INFIRMARY */
    .srcs-infirmary-heading {
        margin-bottom: 32px;
    }
    .srcs-infirmary-feature {
        border-radius: 14px;
    }
    .srcs-infirmary-image {
        height: 320px;
        min-height: 320px;
    }
    .srcs-infirmary-copy {
        min-height: 370px;
        padding: 65px 25px 45px;
    }
    .srcs-infirmary-copy p {
        font-size: 16px;
        line-height: 1.75;
    }
    /* FINAL */
    .srcs-health-final {
        gap: 15px;
    }
    .srcs-final-line {
        flex-basis: 35px;
    }
    .srcs-health-final p {
        font-size: 16px;
        line-height: 1.7;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 430px) {
    .srcs-health-intro h2,
    .srcs-infirmary-heading h2 {
        font-size: 44px;
    }
    .srcs-feature-image {
        height: 280px;
        min-height: 280px;
    }
    .srcs-infirmary-image {
        height: 280px;
        min-height: 280px;
    }
    .srcs-feature-copy {
        min-height: 390px;
    }
    .srcs-infirmary-copy {
        min-height: 410px;
    }
}


/* =========================================================
   MAIN SECTION
========================================================= */

.srcs-advisor-section {
    width: 100%;
    padding: 20px 0 40px;
    background: linear-gradient( 180deg, #fbfcf9 0%, #f1f6f1 100%);
    color: #143d2b;
    overflow: hidden;
}

.srcs-advisor-wrap {
    width: min(1450px, calc(100% - 50px));
    margin: 0 auto;
}


/* =========================================================
   NURSE PROFILE
========================================================= */

.srcs-nurse-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 80px;
    text-align: center;
}


/* =========================================================
   NURSE IMAGE
========================================================= */

.srcs-nurse-image-wrap {
    position: relative;
    width: 590px;
    max-width: 100%;
    padding: 13px;
    background: #ffffff;
    border: 1px solid #174331;
    box-shadow: 0 18px 45px rgba(20, 60, 42, .09);
}

.srcs-nurse-image {
    width: 100%;
    height: 355px;
    overflow: hidden;
    background: #e5ebe6;
}

.srcs-nurse-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center 30%;
    transition: transform .7s ease;
}

.srcs-nurse-image-wrap:hover img {
    transform: scale(1.035);
}


/* =========================================================
   NURSE CORNER
========================================================= */

.srcs-nurse-corner {
    position: absolute;
    right: -1px;
    bottom: -1px;
    width: 75px;
    height: 75px;
    background: linear-gradient( 135deg, transparent 49%, #08783f 50%, #08783f 72%, #f1bd18 73%, #f1bd18 100%);
}


/* =========================================================
   NURSE NAME
========================================================= */

.srcs-nurse-name {
    margin-top: 13px;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
    color: #08783f;
}

.srcs-nurse-name span {
    display: inline;
    font-weight: 500;
    color: #405047;
}


/* =========================================================
   ADVISOR HEADING
========================================================= */

.srcs-advisor-heading {
    margin: 0 auto 55px;
    text-align: center;
}

.srcs-advisor-label {
    display: inline-flex;
    align-items: center;
    padding: 9px 18px;
    border: 1px solid #d9e4db;
    border-radius: 30px;
    background: #edf5ef;
    color: #08783f;
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.srcs-advisor-heading h2 {
    margin: 21px 0 0;
    font-size: 52px;
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: -1.5px;
    color: #123d2b;
}

.srcs-advisor-heading h2 span {
    color: #f0b719;
}

.srcs-advisor-line {
    position: relative;
    width: 75px;
    height: 3px;
    margin: 25px auto;
    background: #f1bd18;
}

.srcs-advisor-line::before,
.srcs-advisor-line::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    transform: translateY(-50%);
}

.srcs-advisor-line::before {
    left: -9px;
    background: #08783f;
}

.srcs-advisor-line::after {
    right: -9px;
    background: #08783f;
}

.srcs-advisor-heading>p {
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    color: #536159;
}


/* =========================================================
   ADVISOR FEATURE
========================================================= */

.srcs-advisor-feature {
    position: relative;
    display: grid;
    grid-template-columns: 55% 45%;
    min-height: 500px;
    margin-bottom: 50px;
    border-radius: 18px;
    background: #ffffff;
    overflow: hidden;
    border: 1px solid #dce6df;
    box-shadow: 0 25px 60px rgba(20, 60, 42, .10);
}


/* =========================================================
   IMAGE
========================================================= */

.srcs-advisor-image {
    position: relative;
    min-height: 500px;
    overflow: hidden;
}

.srcs-advisor-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .8s ease;
}

.srcs-advisor-feature:hover .srcs-advisor-image img {
    transform: scale(1.035);
}


/* =========================================================
   IMAGE TAG
========================================================= */

.srcs-advisor-image-tag {
    position: absolute;
    left: 28px;
    bottom: 27px;
    padding: 10px 17px;
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 30px;
    background: rgba(5, 62, 37, .80);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    backdrop-filter: blur(8px);
}


/* =========================================================
   COPY SIDE
========================================================= */

.srcs-advisor-copy {
    position: relative;
    display: flex;
    align-items: center;
    padding: 75px 75px 75px 65px;
    background: linear-gradient( 135deg, #ffffff 0%, #f1f6f2 100%);
}


/* =========================================================
   NUMBER
========================================================= */

.srcs-advisor-number {
    position: absolute;
    top: 28px;
    right: 30px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d9e3dc;
    border-radius: 50%;
    color: #08783f;
    font-size: 12px;
    font-weight: 700;
}


/* =========================================================
   COPY INNER
========================================================= */

.srcs-copy-inner {
    width: 100%;
}

.srcs-copy-label {
    display: inline-block;
    margin-bottom: 22px;
    padding-left: 15px;
    border-left: 3px solid #f1bd18;
    color: #08783f;
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.srcs-copy-inner p {
    margin: 0;
    font-size: 16px;
    line-height: 1.85;
    color: #4d5b53;
}


/* =========================================================
   BOTTOM CONTENT
========================================================= */

.srcs-advisor-bottom {
    display: grid;
    grid-template-columns: 7px 1fr;
    gap: 25px;
    margin: 0 auto 35px;
}

.srcs-bottom-accent {
    width: 4px;
    min-height: 95px;
    border-radius: 10px;
    background: linear-gradient( 180deg, #08783f 0%, #f1bd18 100%);
}

.srcs-advisor-bottom p {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: #4e5c54;
}


/* =========================================================
   FINAL CONTENT
========================================================= */

.srcs-advisor-final {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 40px;
    margin: 0 auto;
    padding-top: 28px;
    border-top: 1px solid #d8e2da;
}

.srcs-advisor-final>span {
    padding-top: 4px;
    color: #08783f;
    font-size: 10px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1.8px;
}

.srcs-advisor-final p {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: #4e5c54;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {
    .srcs-advisor-wrap {
        width: min(100% - 40px, 850px);
    }
    .srcs-advisor-feature {
        grid-template-columns: 1fr;
    }
    .srcs-advisor-image {
        height: 430px;
        min-height: 430px;
    }
    .srcs-advisor-copy {
        min-height: 370px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {
    .srcs-advisor-section {
        padding: 30px 0 30px;
    }
    .srcs-advisor-wrap {
        width: calc(100% - 28px);
    }
    /* NURSE */
    .srcs-nurse-profile {
        margin-bottom: 65px;
    }
    .srcs-nurse-image-wrap {
        padding: 9px;
    }
    .srcs-nurse-image {
        height: 290px;
    }
    .srcs-nurse-name {
        font-size: 16px;
    }
    /* HEADING */
    .srcs-advisor-heading {
        margin-bottom: 35px;
    }
    .srcs-advisor-heading h2 {
        font-size: 52px;
        line-height: 1.04;
        letter-spacing: -1px;
    }
    .srcs-advisor-heading>p {
        font-size: 16px;
        line-height: 1.7;
    }
    /* FEATURE */
    .srcs-advisor-feature {
        grid-template-columns: 1fr;
        border-radius: 14px;
        margin-bottom: 35px;
    }
    .srcs-advisor-image {
        height: 320px;
        min-height: 320px;
    }
    .srcs-advisor-copy {
        min-height: 390px;
        padding: 65px 25px 45px;
    }
    .srcs-advisor-copy .srcs-advisor-number {
        top: 20px;
        right: 20px;
    }
    .srcs-copy-inner p {
        font-size: 16px;
        line-height: 1.75;
    }
    /* BOTTOM */
    .srcs-advisor-bottom {
        grid-template-columns: 5px 1fr;
        gap: 17px;
        margin-bottom: 35px;
    }
    .srcs-advisor-bottom p {
        font-size: 16px;
        line-height: 1.7;
    }
    /* FINAL */
    .srcs-advisor-final {
        grid-template-columns: 1fr;
        gap: 12px;
        padding-top: 23px;
    }
    .srcs-advisor-final p {
        font-size: 16px;
        line-height: 1.7;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 430px) {
    .srcs-advisor-heading h2 {
        font-size: 44px;
    }
    .srcs-nurse-image {
        height: 255px;
    }
    .srcs-advisor-image {
        height: 280px;
        min-height: 280px;
    }
    .srcs-advisor-copy {
        min-height: 430px;
    }
}


/* =========================================================
   MAIN SECTION
========================================================= */

.srcs-weekend-section {
    width: 100%;
    padding: 30px 0 30px;
    background: linear-gradient( 180deg, #fbfcf9 0%, #f1f6f1 100%);
    color: #143d2b;
    overflow: hidden;
}

.srcs-weekend-wrap {
    width: min(1450px, calc(100% - 50px));
    margin: 0 auto;
}


/* =========================================================
   INTRO
========================================================= */

.srcs-weekend-intro {
    margin-bottom: 55px;
}

.srcs-weekend-label {
    display: inline-flex;
    align-items: center;
    padding: 9px 18px;
    border-radius: 30px;
    background: #edf5ef;
    border: 1px solid #d8e4da;
    color: #08783f;
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1.7px;
}

.srcs-weekend-intro h2 {
    margin: 22px 0 0;
    font-size: 52px;
    line-height: 1.07;
    font-weight: 500;
    letter-spacing: -1.5px;
    color: #123d2b;
}

.srcs-weekend-intro h2 span {
    color: #08783f;
}

.srcs-weekend-accent {
    position: relative;
    width: 82px;
    height: 3px;
    margin: 25px 0;
    background: #f1bd18;
}

.srcs-weekend-accent::after {
    content: "";
    position: absolute;
    right: -9px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #08783f;
    transform: translateY(-50%);
}

.srcs-weekend-intro p {
    margin: 0 0 13px;
    font-size: 16px;
    line-height: 1.8;
    color: #4f5e55;
}

.srcs-weekend-intro p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   FEATURE
========================================================= */

.srcs-weekend-feature {
    position: relative;
    display: grid;
    grid-template-columns: 45% 55%;
    min-height: 475px;
    margin-bottom: 48px;
    overflow: hidden;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid #dfe8e1;
    box-shadow: 0 25px 60px rgba(17, 65, 42, .11);
}


/* =========================================================
   FEATURE COPY
========================================================= */

.srcs-weekend-feature-copy {
    position: relative;
    display: flex;
    align-items: center;
    padding: 70px 65px 70px 75px;
    background: linear-gradient( 145deg, #075f35 0%, #08783f 100%);
    overflow: hidden;
}

.srcs-weekend-feature-copy::before {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    left: -240px;
    bottom: -250px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 50%;
    box-shadow: 0 0 0 55px rgba(255, 255, 255, .025), 0 0 0 110px rgba(255, 255, 255, .018);
    pointer-events: none;
}


/* =========================================================
   NUMBER
========================================================= */

.srcs-weekend-number {
    position: absolute;
    top: 28px;
    left: 28px;
    width: 47px;
    height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .38);
    border-radius: 50%;
    color: #f5c21b;
    font-size: 12px;
    font-weight: 700;
}


/* =========================================================
   COPY CONTENT
========================================================= */

.srcs-weekend-copy-content {
    position: relative;
    z-index: 2;
    max-width: 540px;
}

.srcs-mini-label {
    display: inline-block;
    margin-bottom: 22px;
    padding-left: 14px;
    border-left: 3px solid #f2bd18;
    color: #000;
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1.6px;
}

.srcs-weekend-copy-content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.85;
    color: rgba(255, 255, 255, .93);
}


/* =========================================================
   FEATURE IMAGE
========================================================= */

.srcs-weekend-feature-image {
    position: relative;
    min-height: 475px;
    overflow: hidden;
}

.srcs-weekend-feature-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .8s ease;
}

.srcs-weekend-feature:hover .srcs-weekend-feature-image img {
    transform: scale(1.04);
}


/* =========================================================
   IMAGE LABEL
========================================================= */

.srcs-weekend-image-label {
    position: absolute;
    left: 25px;
    bottom: 25px;
    padding: 10px 17px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, .45);
    background: rgba(5, 62, 37, .82);
    color: #ffffff;
    font-size: 10px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1.5px;
    backdrop-filter: blur(8px);
}


/* =========================================================
   CLOSING CONTENT
========================================================= */

.srcs-weekend-closing {
    display: grid;
    grid-template-columns: 7px 1fr;
    gap: 25px;
    margin: 0 auto 65px;
}

.srcs-closing-line {
    width: 4px;
    min-height: 100%;
    border-radius: 10px;
    background: linear-gradient( 180deg, #f1bd18 0%, #08783f 100%);
}

.srcs-weekend-closing p {
    margin: 0 0 13px;
    font-size: 16px;
    line-height: 1.8;
    color: #4f5e55;
}

.srcs-weekend-closing p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   GALLERY
========================================================= */

.srcs-weekend-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    padding: 13px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #dce6df;
    box-shadow: 0 20px 55px rgba(17, 65, 42, .08);
}

.srcs-weekend-gallery-card {
    position: relative;
    height: 390px;
    overflow: hidden;
    border-radius: 12px;
    background: #e7ede8;
}

.srcs-weekend-gallery-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .7s ease;
}

.srcs-weekend-gallery-card:hover img {
    transform: scale(1.045);
}


/* =========================================================
   GALLERY OVERLAY
========================================================= */

.srcs-gallery-overlay {
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .5);
    background: rgba(5, 62, 37, .82);
    color: #f5c21b;
    font-size: 11px;
    font-weight: 700;
    backdrop-filter: blur(7px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {
    .srcs-weekend-wrap {
        width: min(100% - 40px, 850px);
    }
    .srcs-weekend-feature {
        grid-template-columns: 1fr;
    }
    .srcs-weekend-feature-image {
        height: 430px;
        min-height: 430px;
    }
    .srcs-weekend-feature-copy {
        min-height: 360px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {
    .srcs-weekend-section {
        padding: 25px 0 25px;
    }
    .srcs-weekend-wrap {
        width: calc(100% - 28px);
    }
    /* INTRO */
    .srcs-weekend-intro {
        margin-bottom: 35px;
    }
    .srcs-weekend-intro h2 {
        font-size: 52px;
        line-height: 1.04;
        letter-spacing: -1px;
    }
    .srcs-weekend-intro p {
        font-size: 16px;
        line-height: 1.7;
    }
    /* FEATURE */
    .srcs-weekend-feature {
        border-radius: 14px;
        margin-bottom: 35px;
    }
    .srcs-weekend-feature-image {
        order: -1;
        height: 320px;
        min-height: 320px;
    }
    .srcs-weekend-feature-copy {
        min-height: 390px;
        padding: 70px 25px 45px;
    }
    .srcs-weekend-copy-content p {
        font-size: 16px;
        line-height: 1.75;
    }
    .srcs-weekend-number {
        top: 20px;
        left: 20px;
    }
    /* CLOSING */
    .srcs-weekend-closing {
        grid-template-columns: 5px 1fr;
        gap: 17px;
        margin-bottom: 45px;
    }
    .srcs-weekend-closing p {
        font-size: 16px;
        line-height: 1.7;
    }
    /* GALLERY */
    .srcs-weekend-gallery {
        grid-template-columns: 1fr;
        gap: 13px;
        padding: 9px;
        border-radius: 14px;
    }
    .srcs-weekend-gallery-card {
        height: 300px;
        border-radius: 9px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 430px) {
    .srcs-weekend-intro h2 {
        font-size: 44px;
    }
    .srcs-weekend-feature-image {
        height: 280px;
        min-height: 280px;
    }
    .srcs-weekend-feature-copy {
        min-height: 430px;
    }
    .srcs-weekend-gallery-card {
        height: 260px;
    }
}


/* =========================================================
   MAIN SECTION
========================================================= */

.srcs-leadership-section {
    width: 100%;
    padding: 30px 0 30px;
    background: radial-gradient( circle at 10% 10%, rgba(8, 120, 63, .06), transparent 28%), linear-gradient( 180deg, #fbfcf9 0%, #f1f6f1 100%);
    color: #143d2b;
    overflow: hidden;
}

.srcs-leadership-wrap {
    width: min(1450px, calc(100% - 50px));
    margin: 0 auto;
}


/* =========================================================
   INTRO
========================================================= */

.srcs-leadership-intro {
    margin: 0 auto 65px;
    text-align: center;
}


/* =========================================================
   TAG
========================================================= */

.srcs-leadership-tag {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 20px;
    color: #08783f;
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1.7px;
}

.srcs-leadership-tag span {
    width: 38px;
    height: 2px;
    background: #f1bd18;
}


/* =========================================================
   MAIN HEADING
========================================================= */

.srcs-leadership-intro h2 {
    margin: 0;
    font-size: 52px;
    line-height: 1.08;
    font-weight: 500;
    letter-spacing: -1.6px;
    color: #123d2b;
}

.srcs-leadership-intro h2 strong {
    color: #f0b719;
    font-weight: 500;
}


/* =========================================================
   DIVIDER
========================================================= */

.srcs-leadership-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 22px 0 25px;
}

.srcs-leadership-divider::before,
.srcs-leadership-divider::after {
    content: "";
    width: 70px;
    height: 1px;
    background: #d8dfd9;
}

.srcs-leadership-divider i {
    display: block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #f1bd18;
    box-shadow: 0 0 0 5px rgba(241, 189, 24, .12);
}


/* =========================================================
   INTRO TEXT
========================================================= */

.srcs-leadership-intro p {
    margin: 0 0 13px;
    font-size: 16px;
    line-height: 1.8;
    color: #526057;
}

.srcs-leadership-intro p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   MAIN FEATURE
========================================================= */

.srcs-leadership-feature {
    position: relative;
    display: grid;
    grid-template-columns: 46% 54%;
    min-height: 520px;
    margin-bottom: 85px;
    overflow: hidden;
    border-radius: 22px;
    background: #075f35;
    box-shadow: 0 28px 70px rgba(12, 65, 40, .14);
}


/* =========================================================
   FEATURE CONTENT
========================================================= */

.srcs-leadership-feature-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 75px 70px 75px 80px;
    background: linear-gradient( 145deg, #075e34 0%, #08783f 100%);
    overflow: hidden;
    z-index: 2;
}


/* =========================================================
   DECORATIVE CIRCLE
========================================================= */

.srcs-leadership-feature-content::before {
    content: "";
    position: absolute;
    width: 390px;
    height: 390px;
    left: -245px;
    bottom: -255px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 50%;
    box-shadow: 0 0 0 55px rgba(255, 255, 255, .025), 0 0 0 110px rgba(255, 255, 255, .018);
    pointer-events: none;
}


/* =========================================================
   NUMBER
========================================================= */

.srcs-leadership-number {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 50%;
    color: #f4c21b;
    font-size: 12px;
    font-weight: 700;
}


/* =========================================================
   FEATURE LABEL
========================================================= */

.srcs-feature-label {
    position: relative;
    display: inline-block;
    width: fit-content;
    margin-bottom: 18px;
    padding-left: 14px;
    border-left: 3px solid #f1bd18;
    color: #f4c21b;
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1.7px;
}


/* =========================================================
   FEATURE HEADING
========================================================= */

.srcs-leadership-feature-content h3 {
    position: relative;
    margin: 0 0 20px;
    max-width: 430px;
    font-size: 42px;
    line-height: 1.1;
    font-weight: 500;
    color: #ffffff;
}

.srcs-leadership-feature-content h3 span {
    color: #f4c21b;
}


/* =========================================================
   FEATURE TEXT
========================================================= */

.srcs-leadership-feature-content p {
    position: relative;
    max-width: 525px;
    margin: 0;
    font-size: 16px;
    line-height: 1.85;
    color: rgba(255, 255, 255, .92);
}


/* =========================================================
   FEATURE IMAGE
========================================================= */

.srcs-leadership-feature-image {
    position: relative;
    min-height: 520px;
    overflow: hidden;
}

.srcs-leadership-feature-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .8s ease;
}

.srcs-leadership-feature:hover .srcs-leadership-feature-image img {
    transform: scale(1.04);
}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.srcs-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(4, 65, 37, .22), transparent 40%);
}


/* =========================================================
   IMAGE CAPTION
========================================================= */

.srcs-image-caption {
    position: absolute;
    right: 28px;
    bottom: 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 3px;
    padding: 13px 17px;
    border-radius: 9px;
    background: rgba(5, 55, 32, .80);
    border: 1px solid rgba(255, 255, 255, .3);
    backdrop-filter: blur(8px);
}

.srcs-image-caption span {
    color: #ffffff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.7px;
}

.srcs-image-caption strong {
    color: #f3c21c;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
}


/* =========================================================
   ROLES
========================================================= */

.srcs-leadership-roles {
    display: block;
    margin-bottom: 70px;
}


/* =========================================================
   ROLE INTRO
========================================================= */

.srcs-role-intro {
    padding-top: 12px;
    margin-bottom: 38px;
}

.srcs-role-tag {
    display: inline-block;
    margin-bottom: 18px;
    color: #08783f;
    font-size: 10px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1.7px;
}

.srcs-role-intro h3 {
    margin: 0;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 500;
    letter-spacing: 1px;
    color: #123d2b;
}

.srcs-role-intro h3 span {
    color: #08783f;
}


/* =========================================================
   ROLE LIST
========================================================= */

.srcs-role-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}


/* =========================================================
   ROLE ITEM
========================================================= */

.srcs-role-item {
    position: relative;
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 25px;
    padding: 25px 30px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid #e1e9e2;
    box-shadow: 0 8px 30px rgba(18, 61, 43, .055);
    transition: transform .3s ease, box-shadow .3s ease;
}

.srcs-role-item:hover {
    transform: translateX(6px);
    box-shadow: 0 14px 38px rgba(18, 61, 43, .10);
}


/* =========================================================
   ROLE ICON
========================================================= */

.srcs-role-icon {
    width: 53px;
    height: 53px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #08783f;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 0 0 6px #edf5ef;
}


/* =========================================================
   ROLE CONTENT
========================================================= */

.srcs-role-content h4 {
    margin: 2px 0 9px;
    font-size: 26px;
    line-height: 1.3;
    font-weight: 500;
    color: #16452f;
}

.srcs-role-content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.75;
    color: #526057;
}


/* =========================================================
   FINAL
========================================================= */

.srcs-leadership-final {
    display: grid;
    grid-template-columns: 100px 1fr;
    align-items: center;
    gap: 35px;
    margin: 0 auto;
    padding: 35px 40px;
    border-radius: 16px;
    background: linear-gradient( 100deg, #075e34, #08783f);
    box-shadow: 0 18px 45px rgba(12, 65, 40, .13);
}

.srcs-final-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.srcs-final-mark span {
    display: block;
    width: 8px;
    height: 35px;
    border-radius: 8px;
    background: #f4c21b;
    transform: rotate(-25deg);
}

.srcs-final-mark span:nth-child(2) {
    height: 48px;
}

.srcs-final-mark span:nth-child(3) {
    height: 27px;
}

.srcs-leadership-final p {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .94);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {
    .srcs-leadership-wrap {
        width: min(100% - 40px, 850px);
    }
    .srcs-leadership-feature {
        grid-template-columns: 1fr;
    }
    .srcs-leadership-feature-image {
        min-height: 430px;
        height: 430px;
    }
    .srcs-leadership-feature-content {
        min-height: 390px;
    }
    .srcs-leadership-roles {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .srcs-role-intro {
        text-align: center;
    }
    .srcs-role-intro h3 {
        font-size: 38px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {
    .srcs-leadership-section {
        padding: 30px 0 30px;
    }
    .srcs-leadership-wrap {
        width: calc(100% - 28px);
    }
    /* INTRO */
    .srcs-leadership-intro {
        margin-bottom: 40px;
    }
    .srcs-leadership-intro h2 {
        font-size: 52px;
        line-height: 1.04;
        letter-spacing: -1px;
    }
    .srcs-leadership-intro p {
        font-size: 16px;
        line-height: 1.7;
    }
    /* FEATURE */
    .srcs-leadership-feature {
        border-radius: 15px;
        margin-bottom: 55px;
    }
    .srcs-leadership-feature-image {
        height: 320px;
        min-height: 320px;
        order: -1;
    }
    .srcs-leadership-feature-content {
        min-height: 470px;
        padding: 75px 25px 45px;
    }
    .srcs-leadership-feature-content h3 {
        font-size: 34px ! important;
    }
    .srcs-leadership-feature-content p {
        font-size: 16px;
        line-height: 1.75;
    }
    .srcs-leadership-number {
        top: 20px;
        left: 20px;
    }
    /* ROLES */
    .srcs-leadership-roles {
        gap: 25px;
        margin-bottom: 45px;
    }
    .srcs-role-intro h3 {
        font-size: 35px;
    }
    .srcs-role-item {
        grid-template-columns: 52px 1fr;
        gap: 17px;
        padding: 22px 18px;
    }
    .srcs-role-icon {
        width: 45px;
        height: 45px;
        box-shadow: 0 0 0 5px #edf5ef;
    }
    .srcs-role-content h4 {
        font-size: 20px;
    }
    .srcs-role-content p {
        font-size: 16px;
        line-height: 1.7;
    }
    /* FINAL */
    .srcs-leadership-final {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 28px 22px;
    }
    .srcs-final-mark {
        justify-content: flex-start;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 430px) {
    .srcs-leadership-intro h2 {
        font-size: 44px;
    }
    .srcs-leadership-feature-image {
        height: 280px;
        min-height: 280px;
    }
    .srcs-leadership-feature-content {
        min-height: 520px;
    }
    .srcs-role-intro h3 {
        font-size: 32px !important;
    }
}


/* =========================================================
   MAIN SECTION
========================================================= */

.srcs-art-section {
    width: 100%;
    padding: 30px 0 30px;
    background: linear-gradient( 180deg, #fbfcf9 0%, #f1f6f1 100%);
    color: #143d2b;
    overflow: hidden;
}

.srcs-art-wrap {
    width: min(1450px, calc(100% - 50px));
    margin: 0 auto;
}


/* =========================================================
   INTRO
========================================================= */

.srcs-art-intro {
    margin: 0 auto 50px;
    text-align: center;
}


/* =========================================================
   TOP LABEL
========================================================= */

.srcs-art-tag {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 20px;
    color: #08783f;
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1.7px;
}

.srcs-art-tag span {
    width: 40px;
    height: 2px;
    background: #f1bd18;
}


/* =========================================================
   HEADING
========================================================= */

.srcs-art-intro h2 {
    margin: 0;
    font-size: 52px;
    line-height: 1.08;
    font-weight: 500;
    letter-spacing: -1.5px;
    color: #123d2b;
}

.srcs-art-intro h2 strong {
    color: #f0b719;
    font-weight: 500;
}


/* =========================================================
   DIVIDER
========================================================= */

.srcs-art-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 21px 0 25px;
}

.srcs-art-divider::before,
.srcs-art-divider::after {
    content: "";
    width: 70px;
    height: 1px;
    background: #d6dfd8;
}

.srcs-art-divider i {
    width: 9px;
    height: 9px;
    display: block;
    border-radius: 50%;
    background: #f1bd18;
    box-shadow: 0 0 0 5px rgba(241, 189, 24, .12);
}


/* =========================================================
   INTRO TEXT
========================================================= */

.srcs-art-intro p {
    margin: 0 0 13px;
    font-size: 16px;
    line-height: 1.8;
    color: #526057;
}

.srcs-art-intro p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   ART SHOWCASE
========================================================= */

.srcs-art-showcase {
    display: grid;
    grid-template-columns: 1.45fr 1fr;
    gap: 18px;
    height: 560px;
    padding: 12px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid #dce6df;
    box-shadow: 0 25px 65px rgba(18, 61, 43, .10);
}

.srcs-art-preload {
    display: none;
}


/* =========================================================
   MAIN ART
========================================================= */

.srcs-art-main {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border-radius: 14px;
    background: #e7ece8;
}

.srcs-art-main img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .8s ease;
}

.srcs-art-main:hover img {
    transform: scale(1.045);
}


/* =========================================================
   MAIN ART OVERLAY
========================================================= */

.srcs-art-main-overlay {
    position: absolute;
    left: 25px;
    bottom: 25px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #08783f;
    border: 2px solid #ffffff;
    color: #f4c21b;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
}


/* =========================================================
   SIDE ART
========================================================= */

.srcs-art-side {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 18px;
    min-width: 0;
}

.srcs-art-small {
    position: relative;
    min-height: 0;
    overflow: hidden;
    border-radius: 14px;
    background: #e7ece8;
}

.srcs-art-small img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .8s ease;
}

.srcs-art-small:hover img {
    transform: scale(1.045);
}


/* =========================================================
   SMALL ART OVERLAY
========================================================= */

.srcs-art-small-overlay {
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(5, 62, 37, .85);
    border: 1px solid rgba(255, 255, 255, .45);
    color: #f4c21b;
    font-size: 11px;
    font-weight: 700;
    backdrop-filter: blur(7px);
}


/* =========================================================
   DOTS
========================================================= */

.srcs-art-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin: 20px 0 30px;
}

.srcs-art-dots span {
    width: 10px;
    height: 10px;
    display: block;
    border-radius: 50%;
    background: #d3dad4;
    cursor: pointer;
    transition: width .3s ease, background .3s ease;
}

.srcs-art-dots span.active {
    width: 14px;
    height: 14px;
    background: #f1bd18;
}


/* Keep the artwork showcase clean without image number badges. */

.srcs-art-main-overlay,
.srcs-art-small-overlay {
    display: none;
}


/* =========================================================
   VYNDAGE
========================================================= */

.srcs-vyndage {
    display: grid;
    grid-template-columns: 35% 65%;
    min-height: 280px;
    border-radius: 22px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #dce6df;
    box-shadow: 0 22px 55px rgba(18, 61, 43, .09);
}


/* =========================================================
   VYNDAGE HEADING
========================================================= */

.srcs-vyndage-heading {
    position: relative;
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 55px 45px;
    background: linear-gradient( 145deg, #075e34 0%, #08783f 100%);
    overflow: hidden;
}

.srcs-vyndage-heading::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    left: -170px;
    bottom: -180px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 50%;
    box-shadow: 0 0 0 55px rgba(255, 255, 255, .025), 0 0 0 110px rgba(255, 255, 255, .018);
}


/* =========================================================
   NUMBER
========================================================= */

.srcs-vyndage-number {
    position: relative;
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 50%;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}


/* =========================================================
   VYNDAGE LABEL
========================================================= */

.srcs-vyndage-label {
    position: relative;
    margin-bottom: 11px;
    color: #f4c21b;
    font-size: 10px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1.7px;
}


/* =========================================================
   VYNDAGE TITLE
========================================================= */

.srcs-vyndage-heading h3 {
    position: relative;
    margin: 0;
    font-size: 45px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 1px;
    color: #ffffff;
}


/* =========================================================
   VYNDAGE CONTENT
========================================================= */

.srcs-vyndage-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 50px 65px;
}

.srcs-vyndage-content p {
    max-width: 850px;
    margin: 0 0 27px;
    font-size: 16px;
    line-height: 1.8;
    color: #4e5c54;
}


/* =========================================================
   BUTTON
========================================================= */

.srcs-vyndage-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 14px 20px;
    border: 1px solid #d4e1d7;
    border-radius: 4px;
    background: #ffffff;
    color: #08783f;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    text-decoration: none;
    transition: color .3s ease, background .3s ease, border-color .3s ease, transform .3s ease;
}

.srcs-vyndage-button span {
    color: #f1bd18;
    font-size: 18px;
    transition: transform .3s ease;
}

.srcs-vyndage-button:hover {
    background: #08783f;
    border-color: #08783f;
    color: #ffffff;
    transform: translateY(-2px);
}

.srcs-vyndage-button:hover span {
    color: #f4c21b;
    transform: translateX(4px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {
    .srcs-art-wrap {
        width: min(100% - 40px, 850px);
    }
    .srcs-art-showcase {
        height: 500px;
    }
    .srcs-vyndage {
        grid-template-columns: 1fr;
    }
    .srcs-vyndage-heading {
        min-height: 230px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {
    .srcs-art-section {
        padding: 30px 0 30px;
    }
    .srcs-art-wrap {
        width: calc(100% - 28px);
    }
    /* HEADING */
    .srcs-art-intro {
        margin-bottom: 35px;
    }
    .srcs-art-intro h2 {
        font-size: 52px;
        line-height: 1.04;
        letter-spacing: -1px;
    }
    .srcs-art-intro p {
        font-size: 16px;
        line-height: 1.7;
    }
    /* ART SHOWCASE */
    .srcs-art-showcase {
        grid-template-columns: 1fr;
        height: auto;
        gap: 12px;
        padding: 9px;
        border-radius: 15px;
    }
    .srcs-art-main {
        height: 330px;
    }
    .srcs-art-side {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 220px;
        gap: 12px;
    }
    .srcs-art-small {
        height: 220px;
    }
    /* DOTS */
    .srcs-art-dots {
        margin: 18px 0 65px;
    }
    /* VYNDAGE */
    .srcs-vyndage {
        border-radius: 15px;
    }
    .srcs-vyndage-heading {
        min-height: 210px;
        padding: 40px 25px;
    }
    .srcs-vyndage-number {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
    }
    .srcs-vyndage-heading h3 {
        font-size: 40px;
    }
    .srcs-vyndage-content {
        padding: 35px 25px;
    }
    .srcs-vyndage-content p {
        font-size: 16px;
        line-height: 1.7;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 430px) {
    .srcs-art-intro h2 {
        font-size: 31px !important;
    }
    .srcs-art-main {
        height: 280px;
    }
    .srcs-art-side {
        grid-template-rows: 190px;
    }
    .srcs-art-small {
        height: 190px;
    }
    .srcs-vyndage-heading {
        gap: 18px;
    }
    .srcs-vyndage-heading h3 {
        font-size: 35px;
    }
}


/* =========================================================
   MAIN SECTION
========================================================= */

.srcs-dining-section {
    width: 100%;
    padding: 40px 0 40px;
    background: radial-gradient( circle at 90% 15%, rgba(241, 189, 24, .08), transparent 24%), linear-gradient( 180deg, #fbfcf9 0%, #f1f6f1 100%);
    color: #143d2b;
    overflow: hidden;
}

.srcs-dining-wrap {
    width: min(1450px, calc(100% - 50px));
    margin: 0 auto;
}


/* =========================================================
   HERO
========================================================= */

.srcs-dining-hero {
    display: grid;
    grid-template-columns: 42% 58%;
    align-items: center;
    min-height: 610px;
    margin-bottom: 90px;
}


/* =========================================================
   INTRO
========================================================= */

.srcs-dining-intro {
    position: relative;
    z-index: 3;
    padding: 65px 35px 65px 15px;
}

.srcs-dining-label {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 30px;
    background: #edf5ef;
    border: 1px solid #d8e5db;
    color: #08783f;
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1.7px;
}

.srcs-dining-intro h2 {
    margin: 22px 0 0;
    font-size: 52px;
    line-height: 1.03;
    font-weight: 500;
    letter-spacing: -1.8px;
    color: #123d2b;
}

.srcs-dining-intro h2 span {
    color: #f0b719;
}

.srcs-dining-line {
    position: relative;
    width: 78px;
    height: 3px;
    margin: 25px 0;
    background: #f1bd18;
}

.srcs-dining-line::after {
    content: "";
    position: absolute;
    right: -9px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #08783f;
    transform: translateY(-50%);
}

.srcs-dining-intro p {
    margin: 0 0 15px;
    font-size: 16px;
    line-height: 1.8;
    color: #526057;
}

.srcs-dining-intro p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   VISUAL COMPOSITION
========================================================= */

.srcs-dining-visual {
    position: relative;
    height: 610px;
}


/* =========================================================
   MAIN IMAGE
========================================================= */

.srcs-dining-image-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 78%;
    height: 500px;
    overflow: hidden;
    border-radius: 24px 24px 24px 90px;
    background: #e5ebe6;
    box-shadow: 0 25px 65px rgba(18, 61, 43, .14);
}

.srcs-dining-image-main img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .8s ease;
}

.srcs-dining-image-main:hover img {
    transform: scale(1.045);
}


/* =========================================================
   MAIN IMAGE NUMBER
========================================================= */

.srcs-dining-image-number {
    position: absolute;
    right: 25px;
    top: 25px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #08783f;
    border: 2px solid #ffffff;
    color: #f4c21b;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
}


/* =========================================================
   SMALL IMAGE
========================================================= */

.srcs-dining-image-small {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 52%;
    height: 315px;
    padding: 10px;
    background: #ffffff;
    border: 1px solid #d9e4dc;
    border-radius: 16px;
    box-shadow: 0 22px 50px rgba(18, 61, 43, .15);
    z-index: 4;
}

.srcs-dining-image-small img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 9px;
    transition: transform .8s ease;
}

.srcs-dining-image-small:hover img {
    transform: scale(1.04);
}


/* =========================================================
   SMALL IMAGE LABEL
========================================================= */

.srcs-dining-small-label {
    position: absolute;
    left: 25px;
    bottom: 25px;
    padding: 10px 16px;
    border-radius: 30px;
    background: rgba(5, 62, 37, .84);
    border: 1px solid rgba(255, 255, 255, .4);
    color: #ffffff;
    font-size: 9px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1.3px;
    backdrop-filter: blur(8px);
}


/* =========================================================
   DECORATIVE YELLOW CIRCLE
========================================================= */

.srcs-dining-visual::before {
    content: "";
    position: absolute;
    right: -65px;
    bottom: 5px;
    width: 145px;
    height: 145px;
    border: 2px solid #f1bd18;
    border-radius: 50%;
    opacity: .7;
}

.srcs-dining-visual::after {
    content: "";
    position: absolute;
    right: -30px;
    bottom: 40px;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: #f1bd18;
    opacity: .12;
}


/* =========================================================
   PHILOSOPHY CARD
========================================================= */

.srcs-dining-philosophy {
    position: relative;
    display: grid;
    grid-template-columns: 38% 62%;
    overflow: hidden;
    min-height: 420px;
    border-radius: 24px;
    background: linear-gradient( 145deg, #075e34 0%, #08783f 100%);
    box-shadow: 0 28px 70px rgba(12, 65, 40, .15);
}


/* =========================================================
   PHILOSOPHY LEFT
========================================================= */

.srcs-dining-philosophy-top {
    position: relative;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 60px;
    overflow: hidden;
}

.srcs-dining-philosophy-top::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    left: -225px;
    bottom: -235px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 50%;
    box-shadow: 0 0 0 55px rgba(255, 255, 255, .025), 0 0 0 110px rgba(255, 255, 255, .018);
}


/* =========================================================
   NUMBER
========================================================= */

.srcs-dining-number {
    position: relative;
    flex: 0 0 55px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 50%;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}


/* =========================================================
   LABEL
========================================================= */

.srcs-philosophy-label {
    position: relative;
    display: block;
    margin-bottom: 13px;
    color: #f4c21b;
    font-size: 10px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1.6px;
}


/* =========================================================
   PHILOSOPHY HEADING
========================================================= */

.srcs-dining-philosophy-top h3 {
    position: relative;
    max-width: 390px;
    margin: 0;
    font-size: 40px;
    line-height: 1.15;
    font-weight: 500;
    color: #ffffff;
}

.srcs-dining-philosophy-top h3 span {
    color: #f4c21b;
}


/* =========================================================
   PHILOSOPHY CONTENT
========================================================= */

.srcs-dining-philosophy-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 70px;
    background: linear-gradient( 135deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .025));
    border-left: 1px solid rgba(255, 255, 255, .13);
}

.srcs-dining-philosophy-content p {
    margin: 0 0 15px;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .92);
}

.srcs-dining-philosophy-content p:last-of-type {
    margin-bottom: 28px;
}


/* =========================================================
   MENU BUTTON
========================================================= */

.srcs-dining-menu {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    gap: 22px;
    padding: 14px 20px;
    border: 1px solid rgba(244, 194, 27, .65);
    border-radius: 20px;
    background: #f4c21b;
    color: #123d2b;
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    text-decoration: none;
    transition: transform .3s ease, background .3s ease, color .3s ease;
}

.srcs-dining-menu span {
    font-size: 18px;
    transition: transform .3s ease;
}

.srcs-dining-menu:hover {
    transform: translateY(-3px);
    background: #ffffff;
    color: #08783f;
}

.srcs-dining-menu:hover span {
    transform: translateX(4px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {
    .srcs-dining-wrap {
        width: min(100% - 40px, 850px);
    }
    .srcs-dining-hero {
        grid-template-columns: 1fr;
        margin-bottom: 70px;
    }
    .srcs-dining-intro {
        padding: 0;
        margin-bottom: 45px;
    }
    .srcs-dining-visual {
        height: 560px;
    }
    .srcs-dining-philosophy {
        grid-template-columns: 1fr;
    }
    .srcs-dining-philosophy-content {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, .13);
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {
    .srcs-dining-section {
        padding: 30px 0 30px;
    }
    .srcs-dining-wrap {
        width: calc(100% - 28px);
    }
    /* INTRO */
    .srcs-dining-intro {
        margin-bottom: 35px;
    }
    .srcs-dining-intro h2 {
        font-size: 52px;
        line-height: 1.04;
        letter-spacing: -1px;
    }
    .srcs-dining-intro p {
        font-size: 16px;
        line-height: 1.7;
    }
    /* VISUAL */
    .srcs-dining-visual {
        height: 510px;
    }
    .srcs-dining-image-main {
        width: 82%;
        height: 390px;
        border-radius: 18px 18px 18px 55px;
    }
    .srcs-dining-image-small {
        width: 58%;
        height: 245px;
    }
    .srcs-dining-small-label {
        left: 17px;
        bottom: 17px;
        font-size: 8px;
    }
    .srcs-dining-visual::before {
        width: 90px;
        height: 90px;
        right: -30px;
    }
    /* PHILOSOPHY */
    .srcs-dining-philosophy {
        border-radius: 16px;
    }
    .srcs-dining-philosophy-top {
        min-height: 280px;
        padding: 40px 25px;
        gap: 18px;
    }
    .srcs-dining-number {
        flex-basis: 48px;
        width: 48px;
        height: 48px;
    }
    .srcs-dining-philosophy-top h3 {
        font-size: 29px;
    }
    .srcs-dining-philosophy-content {
        padding: 35px 25px 40px;
    }
    .srcs-dining-philosophy-content p {
        font-size: 16px;
        line-height: 1.7;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 430px) {
    .srcs-dining-intro h2 {
        font-size: 34px !important;
    }
    .srcs-dining-visual {
        height: 440px;
    }
    .srcs-dining-image-main {
        width: 84%;
        height: 335px;
    }
    .srcs-dining-image-small {
        width: 62%;
        height: 210px;
    }
    .srcs-dining-philosophy-top {
        min-height: 300px;
    }
}


/* Calibrating Fitness: cleaner mobile image composition */

@media (max-width: 600px) {
    .fitness-visual {
        min-height: 370px;
        padding: 12px;
        background: #eaf2ec;
        border-radius: 22px 0 22px 0;
    }
    .fitness-visual::after {
        display: none;
    }
    .fitness-image-main {
        inset: 12px;
        width: auto;
        height: auto;
        border-radius: 16px 0 16px 0;
    }
    .fitness-image-main img {
        object-position: center center;
    }
    .fitness-image-accent {
        right: 24px;
        bottom: 24px;
        width: 38%;
        height: 34%;
        border: 4px solid #fff;
        border-radius: 14px 0 14px 0;
        box-shadow: 0 10px 22px rgba(0, 35, 24, .22);
    }
}


/* Extra Murals: light editorial image gallery */

.extra-murals-page .sports-showcase {
    background: #f7f8f4;
}

.extra-murals-page .sports-visual {
    background: linear-gradient(135deg, #f2eee5 0%, #e6eee8 100%);
    border: 1px solid #d9e2da;
    box-shadow: 0 22px 55px rgba(16, 55, 41, .12);
}

.extra-murals-page .sports-visual::before {
    border-color: rgba(8, 75, 49, .12);
}

.extra-murals-page .sports-visual::after {
    border-color: rgba(214, 166, 0, .24);
}

.extra-murals-page .sports-image {
    box-shadow: 0 12px 28px rgba(16, 55, 41, .16);
}

.extra-murals-page .sports-yellow-block {
    width: 135px;
    height: 6px;
}

@media (max-width: 650px) {
    .extra-murals-page .sports-visual {
        background: #f2eee5;
        box-shadow: 0 14px 30px rgba(16, 55, 41, .10);
    }
}


/* Keep the final achiever card's name visible after legacy overrides. */

.star-achievers-page .achievement-grid>.achievement-item:last-child .achievement-name {
    display: block !important;
    position: relative;
    z-index: 5;
    visibility: visible !important;
    margin-bottom: 14px;
    opacity: 1 !important;
    color: #084b31 !important;
}


/* Imagine Yourself Here gallery: restore card captions on mobile. */

.imagine-yourself-page .srcs-gallery-overlay {
    width: auto;
    height: auto;
    right: 14px;
    bottom: 14px;
    left: 14px;
    display: block;
    padding: 13px 15px;
    border: 0;
    border-left: 3px solid #f4c400;
    border-radius: 0 5px 5px 0;
    background: rgba(255, 255, 255, .96);
    color: #084b31;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 18px rgba(16, 55, 41, .14);
}

.imagine-yourself-page .srcs-gallery-overlay span {
    margin-bottom: 5px;
    color: #08783f;
    font-size: 8px;
    letter-spacing: 1.7px;
}

.imagine-yourself-page .srcs-gallery-overlay strong {
    color: #173b2a;
    font-size: 15px;
    line-height: 1.25;
}


/* Residential Boarding: keep mobile copy clear of the background artwork. */

@media (max-width: 700px) {
    .srcs-boarding-section .srcs-boarding-hero {
        background-image: none !important;
        background-color: #f7f8f4;
    }
    .srcs-boarding-section .srcs-hero-content {
        position: relative;
        z-index: 2;
        background: #f7f8f4;
    }
    .srcs-boarding-section .srcs-hero-content p {
        color: #40574b;
    }
}


/* Residential FAQ: place the number above the question on mobile. */

@media (max-width: 700px) {
    .srcs-support-faq .srcs-faq-top {
        grid-template-columns: minmax(0, 1fr) 35px;
        grid-template-rows: auto auto;
        align-items: center;
        gap: 10px 12px;
    }
    .srcs-support-faq .srcs-faq-number {
        grid-column: 1 / -1;
        grid-row: 1;
        width: 38px;
        height: 38px;
        font-size: 13px;
    }
    .srcs-support-faq .srcs-faq-question-text {
        grid-column: 1;
        grid-row: 2;
    }
    .srcs-support-faq .srcs-faq-question-text h3 {
        font-size: 22px !important;
        line-height: 1.28;
    }
    .srcs-support-faq .srcs-faq-toggle {
        grid-column: 2;
        grid-row: 2;
    }
    .srcs-support-faq .srcs-faq-answer p {
        font-size: 15px;
        line-height: 1.65;
    }
}

@media (max-width: 600px) {
    .imagine-yourself-page .srcs-gallery {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .imagine-yourself-page .srcs-gallery-card {
        height: 300px;
        border-radius: 14px 14px 0 14px;
    }
    .imagine-yourself-page .srcs-gallery-card::after {
        background: linear-gradient(180deg, transparent 45%, rgba(3, 39, 27, .18) 100%);
    }
}


/* Imagine Yourself Here: keep the intro heading on one mobile line. */

@media (max-width: 600px) {
    .imagine-yourself-page .srcs-intro-content h2 {
        white-space: nowrap;
        font-size: 29px;
        line-height: 1.1;
        letter-spacing: -.8px;
    }
    .imagine-yourself-page .srcs-intro-content h2 span {
        display: inline;
    }
    .star-achievers-page .simple-page-title {
        font-size: 38px;
        line-height: 1.08;
    }
    .star-achievers-page .achievement-name {
        font-size: 21px;
    }
    .star-achievers-page .achievement-achievement {
        font-size: 11px;
    }
}


/* Transportation light sections must use dark body copy. */

.transport-page .transport-intro-copy p,
.transport-page .transport-content-copy p {
    color: #4f5f56 !important;
}

.transport-page .transport-intro-copy,
.transport-page .transport-content-copy {
    color: #4f5f56;
}


/* Events invite card: move the yellow divider below the icon/content flow. */

@media (max-width: 650px) {
    .alumni-modern-section .alumni-invite {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .alumni-modern-section .alumni-invite-line {
        width: 42px;
        height: 3px;
        margin: 0;
        order: 3;
    }
    .alumni-modern-section .alumni-invite-content {
        width: 100%;
        order: 2;
    }
    .alumni-modern-section .alumni-invite-content p {
        font-size: 15px;
        line-height: 1.7;
    }
}


/* Dine With Us: remove oversized mobile block heights. */

@media (max-width: 650px) {
    .srcs-dining-section {
        padding-bottom: 18px;
    }
    .srcs-dining-hero {
        min-height: 0;
        margin-bottom: 34px;
    }
    .srcs-dining-visual {
        height: 390px;
    }
    .srcs-dining-image-main {
        height: 315px;
    }
    .srcs-dining-image-small {
        height: 190px;
    }
    .srcs-dining-philosophy-top {
        min-height: 0;
        padding: 30px 22px;
    }
    .srcs-dining-philosophy-content {
        padding: 28px 22px 30px;
    }
}


/* Homepage About Us: restore the right-side campus image. */

.srcs-about-section .container {
    width: min(1400px, calc(100% - 50px));
    max-width: none;
    margin: 0 auto;
    padding: 0;
}

.srcs-about-section .srcs-about-grid {
    display: grid !important;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    gap: 70px;
    align-items: center;
}

.srcs-about-section .srcs-about-visual {
    display: flex !important;
    min-height: 680px;
    align-items: center;
    justify-content: center;
}


/* Events gallery: replace the heavy green image surround with a warm editorial frame. */

.events-page .alumni-gallery {
    background: linear-gradient(135deg, #f3eee4 0%, #e8efe9 100%);
    border: 1px solid #dce4dc;
    box-shadow: 0 18px 42px rgba(28, 65, 47, .10);
}

.events-page .alumni-gallery::before {
    border-color: rgba(8, 75, 49, .14);
}

.events-page .alumni-gallery-main,
.events-page .alumni-gallery-side {
    box-shadow: 0 10px 24px rgba(28, 65, 47, .14);
}

@media (max-width: 650px) {
    .events-page .alumni-gallery {
        background: #f3eee4;
        padding: 10px;
    }
}

@media (max-width: 700px) {
    .srcs-about-section .container {
        width: calc(100% - 28px);
    }
    .srcs-about-section .srcs-about-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .srcs-about-section .srcs-about-visual {
        min-height: 360px;
    }
    .srcs-about-section .srcs-image-frame {
        width: 100%;
        height: 360px;
    }
}


/* Homepage About Us: use sectionbg-1 as the full background artwork. */

.srcs-about-section {
    /* Keep the background artwork from adding empty space below the content. */
    min-height: 0;
    padding: 90px 0;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, .99) 0%, rgba(255, 255, 255, .96) 34%, rgba(255, 255, 255, .72) 58%, rgba(255, 255, 255, .10) 84%), url('../images/sectionbg-2.png');
    background-position: center, center;
    background-size: cover, cover;
    background-repeat: no-repeat;
}

.srcs-about-section .srcs-about-grid {
    display: block !important;
}

.srcs-about-section .srcs-about-content {
    max-width: 650px;
}

.srcs-about-section .srcs-about-visual {
    display: none !important;
}

@media (max-width: 700px) {
    .srcs-about-section {
        min-height: 0;
        padding: 65px 0 75px;
        background-position: center, 68% center;
        background-size: cover, auto 100%;
    }
    .srcs-about-section .srcs-about-content {
        max-width: none;
    }
}

/* Give laptop/Mac layouts a consistent gutter instead of letting the copy hug the edge. */
@media (min-width: 701px) and (max-width: 1700px) {
    .srcs-about-section .container {
        width: min(1320px, calc(100% - 96px));
    }
}

.campus-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.86);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.campus-lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.campus-lightbox img {
    display: block;
    max-width: min(1100px, 92vw);
    max-height: 88vh;
    border-radius: 8px;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.55);
}

.campus-lightbox-close {
    position: absolute;
    top: 1.25rem;
    right: 1.75rem;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 3rem;
    line-height: 1;
    cursor: pointer;
}
