﻿/* 
 * 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-1.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: "Cormorant Garamond", Georgia, 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: rgb(255 255 255 / 28%);
    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: center;
    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: none;
}

.main-header.scrolled .brand-logo .logo-colored {
    display: block;
}

.brand-logo-image:hover {
    transform: scale(1.03);
}

.main-header.scrolled .brand-logo .logo-text {
    color: var(--primary-green);
}

.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;
}

.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(--dark-green);
}

.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;
    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;
}

.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.04;
    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 {
    width: 100%;
    max-width: none;
    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;
}


/* Multi-layer overlay: left dark + bottom vignette */

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(10, 25, 18, 0.95) 0%, rgba(10, 25, 18, 0.6) 40%, transparent 80%), linear-gradient(to top, rgba(5, 15, 10, 0.7) 0%, transparent 40%);
}

.slide-content-box {
    color: var(--base-white);
    padding-top: 6rem;
    /* offset for fixed nav */
}


/* ── 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: 60px;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 2rem;
    padding-bottom: 0.15em;
    clip-path: inset(0 0 100% 0);
    will-change: clip-path;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}


/* ── 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;
}

.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;
    }
}


/* 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: linear-gradient( 135deg, rgba(18, 58, 34, 0.96), rgba(8, 30, 19, 0.98));
}

.story-content::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -50px;
    top: -50px;
    border-radius: 50%;
    border: 1px solid rgba(185, 216, 176, 0.12);
}

.content-top {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.story-label {
    color: #b8d6af;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.quote-icon {
    position: absolute;
    top: -25px;
    right: 0;
    margin: 0;
    color: rgba(185, 216, 176, 0.2);
    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: #ffffff;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 500;
    letter-spacing: -1.5px;
}

.role {
    margin: 0 0 20px;
    color: #bdd9b6;
    font-size: 17px;
    line-height: 1.6;
}

.story-text {
    max-width: 480px;
    margin: 0;
    color: rgba(255, 255, 255, 0.63);
    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(255, 255, 255, 0.1);
}

.tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tags span {
    padding: 8px 12px;
    border: 1px solid rgba(185, 216, 176, 0.25);
    color: rgba(255, 255, 255, 0.7);
    font-size: 10px;
    letter-spacing: 0.8px;
    border-radius: 30px;
}

.story-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    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;
}

/* 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;
    }
}


/* 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;
    }
}
