:root {
    --brand-gold: #c2a041;
    --brand-gold-dark: #9f8231;
    --brand-charcoal: #151515;
    --brand-dark: #0e0e0e;
    --brand-text: #4d4d4d;
    --brand-soft: #f8f5ee;
    --brand-border: rgba(0,0,0,0.08);
    --brand-white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: var(--brand-text);
    background: #fff;
    line-height: 1.7;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; }

.site-header {
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--brand-border);
}

.navbar { padding: 0 0 !important; }
.brand-logo {
    /*width: 74px;*/
    height: 100px;
    object-fit: contain;
}
.brand-name {
    font-weight: 800;
    color: var(--brand-charcoal);
    letter-spacing: 0.04em;
}
.brand-subtitle {
    font-size: 0.85rem;
    color: #777;
}
.nav-link {
    color: var(--brand-charcoal);
    font-weight: 600;
}
.nav-link:hover { color: var(--brand-gold-dark); }

.btn {
    border-radius: 999px;
    padding: 0.85rem 1.35rem;
    font-weight: 700;
    transition: 0.25s ease;
}
.btn-brand {
    background: var(--brand-gold);
    border: 1px solid var(--brand-gold);
    color: #fff;
}
.btn-brand:hover {
    background: var(--brand-gold-dark);
    border-color: var(--brand-gold-dark);
    color: #fff;
}
.btn-outline-brand {
    background: transparent;
    border: 1px solid var(--brand-gold);
    color: var(--brand-gold-dark);
}
.btn-outline-brand:hover,
.btn-light-outline:hover {
    background: var(--brand-gold);
    border-color: var(--brand-gold);
    color: #fff;
}
.btn-light-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.35);
    color: var(--brand-charcoal);
}
.btn-brand-light {
    background: #fff;
    color: var(--brand-charcoal);
    border: 1px solid #fff;
}
.btn-brand-light:hover {
    background: var(--brand-soft);
    color: var(--brand-charcoal);
}
.btn-outline-light-custom {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.45);
    color: #fff;
}
.btn-outline-light-custom:hover {
    background: #fff;
    color: var(--brand-charcoal);
}

.hero-section {
    position: relative;
    padding: 5rem 0 4rem;
    background:
        radial-gradient(circle at top right, rgba(194,160,65,0.18), transparent 24%),
        linear-gradient(180deg, #fff 0%, #fcfbf7 100%);
}
.eyebrow,
.section-tag,
.light-tag {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.eyebrow,
.section-tag { color: var(--brand-gold-dark); }
.light-tag { color: rgba(255,255,255,0.86); }

.hero-title,
.section-title {
    font-family: 'Cormorant Garamond', serif;
    color: var(--brand-charcoal);
    line-height: 1.05;
    margin-bottom: 1rem;
}
.hero-title { font-size: clamp(2.65rem, 5vw, 5rem); }
.section-title { font-size: clamp(2rem, 4vw, 3.3rem); }
.hero-text,
.section-text {
    font-size: 1.05rem;
    max-width: 62ch;
    text-align: justify;
}
.hero-note {
    font-size: 0.95rem;
    color: #777;
}
.narrow { max-width: 900px; }

.card-frame {
    border: 1px solid var(--brand-border);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 18px 60px rgba(0,0,0,0.08);
    background: #fff;
}
.soft-bg { background: var(--brand-soft); }

.hero-stats { margin-top: 2.5rem; }
.stat-card {
    background: #fff;
    border: 1px solid var(--brand-border);
    border-radius: 22px;
    padding: 1.4rem;
    box-shadow: 0 12px 35px rgba(0,0,0,0.04);
    height: 100%;
}
.stat-value {
    color: var(--brand-charcoal);
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
}
.stat-label {
    color: #777;
    font-weight: 600;
    margin-top: 0.3rem;
}

.section-block { padding: 5.5rem 0; }
.alt-bg { background: var(--brand-soft); }
.section-dark-accent {
    background: linear-gradient(180deg, #171717 0%, #0d0d0d 100%);
}
.text-light { color: rgba(255,255,255,0.74) !important; }

.mini-card,
.value-card,
.timeline-card {
    border-radius: 24px;
    padding: 1.5rem;
    border: 1px solid var(--brand-border);
    background: #fff;
    box-shadow: 0 12px 35px rgba(0,0,0,0.05);
}
.mini-card h3,
.value-card h3,
.timeline-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--brand-charcoal);
    margin-bottom: 0.65rem;
}
.mini-card p,
.value-card p,
.timeline-card p { margin-bottom: 0; }

.timeline-card {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.78);
}
.timeline-card h3 { color: #fff; }
.timeline-card .year {
    display: inline-block;
    color: var(--brand-gold);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.value-card { position: relative; overflow: hidden; }
.value-card::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-gold), transparent);
}
.icon-placeholder {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 800;
    background: var(--brand-soft);
    color: var(--brand-gold-dark);
    margin-bottom: 1rem;
}

.highlight-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}
.highlight-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}
.highlight-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.72rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-gold);
}

.leadership-block {
    padding-right: 1rem;
}

.admissions-cta {
    padding: 4.5rem 0;
    background: linear-gradient(120deg, #101010 0%, #272018 100%);
}

.site-footer {
    background: #0d0d0d;
    color: rgba(255,255,255,0.78);
    padding: 4rem 0 1.5rem;
    margin-top: 4rem;
}
.footer-logo {
    /*width: 62px;*/
    height: 62px;
    object-fit: contain;
}
.site-footer h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1rem;
}
.footer-text { max-width: 34ch; }
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li { margin-bottom: 0.65rem; }
.footer-links a,
.footer-links li {
    color: rgba(255,255,255,0.72);
}
.footer-links a:hover { color: var(--brand-gold); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 2rem;
    padding-top: 1.25rem;
    font-size: 0.92rem;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: #fff;
        padding: 1rem 0 0.5rem;
    }
    .hero-section { padding-top: 3rem; }
    .section-block { padding: 4rem 0; }
}

@media (max-width: 575.98px) {
    .brand-logo {
        width: 160px;
        height: 80px;
    }
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    /*.section-title{text-align: justify;}*/
    .section-text{text-align: justify;}
    .footer-text{text-align: justify;}
    .navbar>.container{justify-content: center;}
}


.who-we-are-section {
    background: #f8fafc;
}

.who-we-are-section .sub-title {
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--brand-gold-dark);
    position: relative;
}

.who-we-are-section .main-title {
    font-family: 'Cormorant Garamond', serif;
    color: var(--brand-charcoal);
    line-height: 1.05;
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4vw, 3.3rem);
}

.who-we-are-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.info-box {
    background: #ffffff;
    padding: 25px 20px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
}

.info-box h5 {
    font-size: 20px;
    font-weight: 600;
    color: #1b1b1b;
}

.info-box p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

.who-we-are-image {
    overflow: hidden;
}

.who-we-are-image img {
    min-height: 500px;
    object-fit: cover;
}

.floating-box {
    position: absolute;
    bottom: 30px;
    left: 30px;
    max-width: 320px;
    background: #ffffff;
    padding: 20px;
    border-radius: 18px;
}

.floating-box h4 {
    font-size: 22px;
    font-weight: 700;
    color: #0d6efd;
}

.floating-box p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

@media (max-width: 991.98px) {
    .who-we-are-section .main-title {
        font-size: 32px;
    }

    .who-we-are-image img {
        min-height: auto;
    }
}

@media (max-width: 767.98px) {
    .who-we-are-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .who-we-are-section .main-title {
        font-size: 28px;
    }

    .floating-box {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: 20px;
        max-width: 100%;
    }
}

/* pop-up */
.custom-load-popup .modal-content {
    background: #ffffff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.popup-content {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.popup-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--brand-gold-dark);
}

.popup-title {
    font-family: 'Cormorant Garamond', serif;
    color: var(--brand-charcoal);
    line-height: 1.05;
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4vw, 3.3rem);
}

.popup-text {
    font-size: 16px;
    line-height: 1.8;
    color: #5f6b7a;
}

.popup-image-wrap {
    min-height: 100%;
    background: #e9f2ff;
}

.popup-image {
    object-fit: cover;
    min-height: 420px;
}

.custom-close-btn {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 10;
    background-color: #ffffff;
    border-radius: 50%;
    padding: 10px;
    opacity: 1;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.custom-close-btn:hover {
    opacity: 1;
}

.custom-load-popup .btn-primary {
    background: #c2a041;
    border-color: #c2a041;
}

.custom-load-popup .btn-primary:hover {
    background: #0e0e0e;
    border-color: #0e0e0e;
}

.custom-load-popup .btn-outline-secondary {
    border-color: #d0d7e2;
    color: #495057;
}

.custom-load-popup .btn-outline-secondary:hover {
    background: #f1f3f5;
    color: #212529;
}

@media (max-width: 991.98px) {
    .popup-title {
        font-size: 28px;
    }

    .popup-image {
        min-height: 280px;
    }
}

@media (max-width: 767.98px) {
    .popup-title {
        font-size: 24px;
    }

    .popup-text {
        font-size: 15px;
        line-height: 1.7;
    }

    .popup-image {
        min-height: 220px;
    }

    .custom-close-btn {
        top: 12px;
        right: 12px;
    }
}


.icon-symbol {
    font-size: 42px;
    color: #ecd68a;
}

.icon-box.gold .icon-symbol {
    color: #000;
}

.our-philosophy-section {
    background: #f5f5f5;
    overflow: hidden;
}

.philosophy-header {
    gap: 20px;
}

.header-side-logo {
    max-height: 90px;
    width: auto;
}

.header-main-logo {
    max-height: 80px;
    width: auto;
}

.section-title {
    font-size: 56px;
    font-weight: 500;
    color: #000;
    line-height: 1.1;
}

.philosophy-divider {
    height: 1px;
    width: 100%;
    background: #c7ab7b;
}

.philosophy-side-title {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.philosophy-side-title h3 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--brand-charcoal);
    line-height: 1.05;
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4vw, 3.3rem);
    text-align: center;
}

.philosophy-items {
    width: 100%;
}

.philosophy-item {
    gap: 24px;
}

.icon-box {
    width: 108px;
    height: 108px;
    min-width: 108px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box.dark {
    background: #000;
}

.icon-box.gold {
    background: #ecd68a;
}

.icon-box img {
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.item-title {
    font-family: 'Cormorant Garamond', serif;
    color: var(--brand-charcoal);
    line-height: 1.05;
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4vw, 1.0rem);
}

.item-desc {
    flex: 1;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 1.4;
    max-width: 520px;
}

/* Large devices */
@media (max-width: 1399.98px) {
    .section-title {
        font-size: 48px;
    }

    .philosophy-side-title h3 {
        font-size: 46px;
    }

    .item-title {
        flex: 0 0 280px;
        max-width: 280px;
        font-size: 24px;
    }

    .item-desc {
        font-size: 20px;
    }
}

/* Medium devices */
@media (max-width: 991.98px) {
    .section-title {
        font-size: 40px;
    }

    .philosophy-side-title {
        margin-bottom: 20px;
    }

    .philosophy-side-title h3 {
        font-size: 38px;
    }

    .philosophy-item {
        align-items: flex-start !important;
    }

    .item-title {
        flex: 0 0 100%;
        max-width: 100%;
        font-size: 24px;
        margin-top: 8px;
    }

    .item-desc {
        flex: 0 0 100%;
        max-width: 100%;
        font-size: 18px;
        padding-left: 132px;
        margin-top: -6px;
    }
}

/* Small devices */
@media (max-width: 767.98px) {
    .our-philosophy-section {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .philosophy-header {
        align-items: flex-start !important;
    }

    .header-side-logo {
        max-height: 60px;
    }

    .header-main-logo {
        max-height: 55px;
    }

    .section-title {
        font-size: 30px;
    }

    .philosophy-side-title h3 {
        font-size: 30px;
    }

    .philosophy-item {
        gap: 16px;
        margin-bottom: 28px !important;
    }

    .icon-box {
        width: 80px;
        height: 80px;
        min-width: 80px;
    }

    .icon-box img {
        width: 38px;
        height: 38px;
    }

    .item-title {
        font-size: 20px;
    }

    .item-desc {
        padding-left: 96px;
        font-size: 16px;
        line-height: 1.6;
        margin-top: -4px;
    }
}

/* Extra small devices */
@media (max-width: 575.98px) {
    .section-title {
        font-size: 28px;
    }

    .philosophy-side-title h3 {
        font-size: 26px;
    }

    .item-title {
        font-size: 22px;
    }

    .item-desc {
        font-size: 15px;
        padding-left: 0;
        margin-top: 0;
    }

    .philosophy-item {
        display: block !important;
    }

    .icon-box {
        margin-bottom: 12px;
    }
}



/**/
.hero-section {
    min-height: 100vh;
    background: #000;
}

/* VIDEO BACKGROUND */
/*.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}*/

.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.77vh;
    height: 56.25vw;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%) scale(1.2);
    pointer-events: none;
}

/* OVERLAY */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 2;
}

/* CONTENT ABOVE VIDEO */
.hero-section .container {
    position: relative;
    z-index: 3;
}

/* TEXT */
.hero-title {
    font-size: 56px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
}

/* MOBILE FALLBACK */
@media (max-width: 767px) {
    .hero-bg-video {
        display: block;
    }

    .hero-section {
        background: url('../images/banner.jpeg') center/cover no-repeat;
    }
}

.hero-section {
    min-height: 70vh;
}

.hero-container {
    min-height: 70vh;
}

.footer-social {
    margin-top: 10px;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    transition: all 0.3s ease;
}

/* Hover colors */
.social-icon.facebook:hover {
    background: #1877f2;
}

.social-icon.instagram:hover {
    background: #e4405f;
}

.social-icon.youtube:hover {
    background: #ff0000;
}

.social-icon.linkedin:hover {
    background: #0077b5;
}

/* Subtle lift effect */
.social-icon:hover {
    transform: translateY(-4px);
}


/* header */
