/*=========================================================
SAINIK SCHOOL NALANDA
Modern Heritage / Academic Design
=========================================================*/


/*=========================================================
ROOT VARIABLES
=========================================================*/

:root {

    --forest: #173F35;
    --forest-dark: #0D2B24;
    --forest-light: #286052;

    --gold: #C69A52;
    --gold-light: #E0C28B;

    --ivory: #F7F4EC;
    --cream: #EEE9DC;

    --charcoal: #202522;
    --text: #626862;
    --muted: #8A908A;

    --white: #FFFFFF;

    --border: #DCD8CD;

    --shadow:
        0 20px 50px rgba(24, 42, 35, .12);

    --transition: .35s ease;

    /*
    Desktop:
    top strip = 36px
    navbar   = 82px
    total    = 118px

    Mobile:
    top strip hidden
    navbar   = 78px
    */

    --header-height: 118px;

}


/*=========================================================
RESET
=========================================================*/

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}


html {

    width: 100%;

    scroll-behavior: smooth;

    /*
    Fixed header compensation for anchor links.
    */

    scroll-padding-top: var(--header-height);

}


body {

    width: 100%;

    min-height: 100vh;

    background: var(--ivory);

    color: var(--text);

    font-family: 'DM Sans', sans-serif;

    line-height: 1.8;

    overflow-x: hidden;

}


img {

    display: block;

    max-width: 100%;

}


a {

    text-decoration: none;

    transition: var(--transition);

}


button,
input,
textarea,
select {

    font-family: inherit;

}


.container {

    width: 100%;

    max-width: 1240px;

}


section {

    width: 100%;

}


/*=========================================================
FIXED HEADER
=========================================================*/

.site-header {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 9999;

}


/*
IMPORTANT:

Do NOT add padding-top to body.

The header remains above the page and
scroll-padding-top handles navigation.
*/


/*=========================================================
TOP STRIP
=========================================================*/

.top-strip {

    height: 36px;

    background: var(--forest-dark);

    color: rgba(255, 255, 255, .62);

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 1.1px;

    text-transform: uppercase;

}


.top-strip .container {

    height: 100%;

}


.top-strip-inner {

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.top-left,
.top-right {

    display: flex;

    align-items: center;

    gap: 24px;

}


.top-left span,
.top-right span {

    display: flex;

    align-items: center;

    gap: 7px;

}


.top-left i {

    color: var(--gold);

    font-size: 11px;

}


.top-right span {

    padding-left: 24px;

    border-left: 1px solid rgba(255, 255, 255, .12);

}


/*=========================================================
NAVBAR
=========================================================*/

.navbar {

    min-height: 82px;

    padding: 0;

    background: rgba(247, 244, 236, .98);

    border-bottom: 1px solid var(--border);

    box-shadow: 0 3px 18px rgba(0, 0, 0, .04);

}


.navbar>.container {

    min-height: 82px;

}


/*=========================================================
BRAND
=========================================================*/

.navbar-brand {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 0;

    margin: 0;

}


.brand-logo {

    width: 50px;

    height: 50px;

    display: flex;

    align-items: center;

    justify-content: center;

}


.brand-logo img {

    width: 100%;

    height: 100%;

    object-fit: contain;

}


.brand-text {

    display: flex;

    flex-direction: column;

    line-height: 1.05;

}


.brand-text strong {

    color: var(--forest);

    font-family: 'Playfair Display', serif;

    font-size: 17px;

    letter-spacing: .3px;

}


.brand-text span {

    color: var(--gold);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 3px;

    margin-top: 5px;

}


/*=========================================================
NAVIGATION
=========================================================*/

.navbar-nav {

    gap: 4px;

}


.nav-link {

    position: relative;

    display: flex;

    align-items: center;

    height: 82px;

    padding: 0 14px !important;

    color: var(--charcoal);

    font-size: 11px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .6px;

}


.nav-link::after {

    content: "";

    position: absolute;

    left: 14px;

    right: 14px;

    bottom: 20px;

    height: 2px;

    background: var(--gold);

    transform: scaleX(0);

    transform-origin: center;

    transition: var(--transition);

}


.nav-link:hover,
.nav-link.active {

    color: var(--forest);

}


.nav-link:hover::after,
.nav-link.active::after {

    transform: scaleX(1);

}


/*=========================================================
ADMISSION BUTTON
=========================================================*/

.nav-admission {

    margin-left: 12px;

}


.admission-link {

    min-width: 132px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    padding: 0 18px;

    background: var(--forest);

    color: #fff;

    font-size: 10px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .8px;

}


.admission-link i {

    color: var(--gold-light);

    font-size: 13px;

}


.admission-link:hover {

    background: var(--gold);

    color: #fff;

}


.admission-link:hover i {

    color: #fff;

}


/*=========================================================
MOBILE TOGGLER
=========================================================*/

.navbar-toggler {

    padding: 7px 9px;

    border: 1px solid var(--forest);

    border-radius: 0;

}


.navbar-toggler:focus {

    box-shadow: none;

}


.navbar-toggler-icon {

    background-image:

        url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23173F35' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");

}


/*=========================================================
HERO
=========================================================*/

.hero-section {

    position: relative;

    min-height: 760px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background: var(--forest-dark);

}


.hero-image {

    position: absolute;

    inset: 0;

    z-index: 0;

}


.hero-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

}


.hero-overlay {

    position: absolute;

    inset: 0;

    z-index: 1;

    background:

        linear-gradient(90deg,
            rgba(8, 31, 25, .96) 0%,
            rgba(13, 43, 36, .84) 38%,
            rgba(13, 43, 36, .35) 75%,
            rgba(13, 43, 36, .18) 100%);

}


/*=========================================================
HERO DECORATION
=========================================================*/

.hero-section::before {

    content: "";

    position: absolute;

    z-index: 2;

    width: 430px;

    height: 430px;

    right: -180px;

    top: -170px;

    border: 1px solid rgba(224, 194, 139, .28);

    border-radius: 50%;

}


.hero-section::after {

    content: "";

    position: absolute;

    z-index: 2;

    width: 260px;

    height: 260px;

    right: 100px;

    bottom: -170px;

    border: 1px solid rgba(255, 255, 255, .12);

    transform: rotate(45deg);

}


/*=========================================================
HERO CONTAINER
=========================================================*/

.hero-container {

    position: relative;

    z-index: 3;

    min-height: 760px;

    display: flex;

    align-items: center;

}


.hero-label {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 25px;

    color: var(--gold-light);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 3px;

}


.hero-label span {

    display: block;

    width: 40px;

    height: 2px;

    background: var(--gold);

}


/*=========================================================
HERO TITLE
=========================================================*/

.hero-section h1 {

    max-width: 780px;

    margin-bottom: 25px;

    color: #fff;

    font-family: 'Playfair Display', serif;

    font-size: 76px;

    font-weight: 600;

    line-height: 1.08;

    letter-spacing: -2px;

}


.hero-section h1 em {

    color: var(--gold-light);

    font-style: normal;

}


.hero-description {

    max-width: 620px;

    margin-bottom: 35px;

    color: rgba(255, 255, 255, .72);

    font-size: 14px;

    line-height: 1.9;

}


/*=========================================================
HERO BUTTONS
=========================================================*/

.hero-actions {

    display: flex;

    align-items: center;

    gap: 14px;

    flex-wrap: wrap;

}


.btn-primary-custom {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    min-height: 52px;

    padding: 0 24px;

    background: var(--gold);

    border: 1px solid var(--gold);

    color: #fff;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .8px;

    text-transform: uppercase;

}


.btn-primary-custom:hover {

    background: #A9803F;

    border-color: #A9803F;

    color: #fff;

    transform: translateY(-3px);

}


.btn-outline-custom {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 52px;

    padding: 0 24px;

    border: 1px solid rgba(255, 255, 255, .4);

    color: #fff;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .8px;

    text-transform: uppercase;

}


.btn-outline-custom:hover {

    background: #fff;

    border-color: #fff;

    color: var(--forest);

}


/*=========================================================
HERO BOTTOM
=========================================================*/

.hero-bottom {

    position: absolute;

    left: 0;

    right: 0;

    bottom: 32px;

    display: flex;

    align-items: center;

    gap: 0;

}


.hero-stat {

    display: flex;

    align-items: center;

    gap: 12px;

    min-width: 205px;

    padding-right: 25px;

    margin-right: 25px;

    border-right: 1px solid rgba(255, 255, 255, .18);

}


.hero-stat strong {

    color: var(--gold-light);

    font-family: 'Playfair Display', serif;

    font-size: 18px;

    font-weight: 500;

}


.hero-stat span {

    color: rgba(255, 255, 255, .58);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .8px;

    text-transform: uppercase;

}


.hero-scroll {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-left: auto;

    color: rgba(255, 255, 255, .55);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;

}


.hero-scroll i {

    color: var(--gold-light);

    font-size: 17px;

    animation: nalandaArrow 1.7s infinite;

}


@keyframes nalandaArrow {

    0%,
    100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(6px);

    }

}


/*=========================================================
SECTION COMMON
=========================================================*/

.section-padding {

    padding: 110px 0;

}


.section-label {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 17px;

    color: var(--forest);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2.5px;

    text-transform: uppercase;

}


.section-label::before {

    content: "";

    width: 30px;

    height: 2px;

    background: var(--gold);

}


.section-label.light {

    color: var(--gold-light);

}


.section-title {

    margin-bottom: 22px;

    color: var(--charcoal);

    font-family: 'Playfair Display', serif;

    font-size: 46px;

    font-weight: 600;

    line-height: 1.2;

}


.section-title span {

    color: var(--forest);

}


.section-title.light {

    color: #fff;

}


.section-text {

    margin-bottom: 18px;

    color: var(--text);

    font-size: 13px;

    line-height: 1.9;

}


/*=========================================================
ABOUT
=========================================================*/

.about-section {

    background: var(--ivory);

}


.about-image-wrap {

    position: relative;

    padding: 0 35px 35px 0;

}


.about-image-wrap::before {

    content: "";

    position: absolute;

    top: -25px;

    left: -25px;

    width: 150px;

    height: 150px;

    background: var(--cream);

    z-index: 0;

}


.about-image {

    position: relative;

    z-index: 2;

    overflow: hidden;

}


.about-image img {

    width: 100%;

    height: 560px;

    object-fit: cover;

    transition: .7s;

}


.about-image:hover img {

    transform: scale(1.04);

}


.about-accent {

    position: absolute;

    right: 0;

    bottom: 0;

    z-index: 1;

    width: 190px;

    height: 190px;

    background: var(--forest);

}


.about-year {

    position: absolute;

    right: 18px;

    bottom: 18px;

    z-index: 3;

    width: 145px;

    padding: 20px;

    background: var(--gold);

}


.about-year strong {

    display: block;

    color: #fff;

    font-family: 'Playfair Display', serif;

    font-size: 35px;

    line-height: 1;

}


.about-year span {

    display: block;

    margin-top: 7px;

    color: rgba(255, 255, 255, .85);

    font-size: 9px;

    line-height: 1.5;

}


.about-highlights {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;

    margin-top: 30px;

    padding-top: 25px;

    border-top: 1px solid var(--border);

}


.about-highlight {

    display: flex;

    align-items: flex-start;

    gap: 10px;

}


.about-highlight i {

    color: var(--forest);

    font-size: 18px;

}


.about-highlight strong {

    display: block;

    color: var(--charcoal);

    font-size: 10px;

    font-weight: 800;

}


.about-highlight span {

    display: block;

    margin-top: 2px;

    color: var(--muted);

    font-size: 8px;

    line-height: 1.5;

}


.text-link {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-top: 25px;

    color: var(--forest);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;

}


.text-link i {

    transition: .3s;

}


.text-link:hover {

    color: var(--gold);

}


.text-link:hover i {

    transform: translateX(5px);

}


/*=========================================================
TABLET
=========================================================*/

@media(max-width:1100px) {

    .navbar-nav {

        gap: 0;

    }


    .nav-link {

        padding-left: 9px !important;

        padding-right: 9px !important;

    }


    .nav-link::after {

        left: 9px;

        right: 9px;

    }


    .admission-link {

        min-width: 115px;

    }


    .hero-section h1 {

        font-size: 64px;

    }


    .section-title {

        font-size: 40px;

    }

}


/*=========================================================
MOBILE HEADER
=========================================================*/

@media(max-width:992px) {

    :root {

        --header-height: 78px;

    }


    .top-strip {

        display: none;

    }


    .navbar {

        min-height: 78px;

    }


    .navbar>.container {

        min-height: 78px;

    }


    .navbar-collapse {

        position: absolute;

        top: 78px;

        left: 0;

        right: 0;

        background: var(--ivory);

        padding: 12px 20px 22px;

        border-top: 1px solid var(--border);

        box-shadow: 0 15px 35px rgba(0, 0, 0, .1);

    }


    .navbar-nav {

        align-items: stretch !important;

    }


    .nav-link {

        height: auto;

        min-height: 45px;

        padding: 12px 0 !important;

    }


    .nav-link::after {

        left: 0;

        right: auto;

        bottom: 5px;

        width: 28px;

    }


    .nav-admission {

        margin: 10px 0 0;

    }


    .admission-link {

        width: 100%;

    }


    .hero-container {

        min-height: 680px;

    }


    .hero-section {

        min-height: 680px;

    }


    .hero-section h1 {

        font-size: 53px;

        letter-spacing: -1px;

    }


    .hero-bottom {

        bottom: 20px;

    }


    .hero-stat {

        min-width: auto;

        padding-right: 15px;

        margin-right: 15px;

    }


    .hero-stat:nth-child(3) {

        display: none;

    }

}


/*=========================================================
MOBILE
=========================================================*/

@media(max-width:768px) {

    .section-padding {

        padding: 75px 0;

    }


    .hero-section {

        min-height: 650px;

    }


    .hero-container {

        min-height: 650px;

    }


    .hero-overlay {

        background:

            linear-gradient(rgba(8, 31, 25, .86),
                rgba(8, 31, 25, .91));

    }


    .hero-section h1 {

        max-width: 600px;

        font-size: 45px;

    }


    .hero-description {

        font-size: 13px;

    }


    .hero-actions {

        flex-direction: column;

        align-items: stretch;

    }


    .btn-primary-custom,
    .btn-outline-custom {

        width: 100%;

    }


    .hero-stat {

        display: none;

    }


    .hero-scroll {

        margin: auto;

    }


    .section-title {

        font-size: 34px;

    }


    .about-image-wrap {

        padding-right: 20px;

        padding-bottom: 25px;

    }


    .about-image img {

        height: 430px;

    }


    .about-year {

        right: 5px;

        bottom: 15px;

    }


    .about-highlights {

        grid-template-columns: 1fr;

        gap: 15px;

    }

}


/*=========================================================
SMALL MOBILE
=========================================================*/

@media(max-width:576px) {

    .brand-logo {

        width: 43px;

        height: 43px;

    }


    .brand-text strong {

        font-size: 14px;

    }


    .brand-text span {

        font-size: 8px;

        letter-spacing: 2.5px;

    }


    .hero-section h1 {

        font-size: 38px;

    }


    .hero-label {

        font-size: 8px;

        letter-spacing: 2px;

    }


    .section-title {

        font-size: 30px;

    }


    .about-image img {

        height: 350px;

    }


    .about-year {

        width: 135px;

        padding: 17px;

    }


    .about-year strong {

        font-size: 30px;

    }

}


/*=========================================================
ACCESSIBILITY
=========================================================*/

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {

    outline: 2px solid var(--gold);

    outline-offset: 3px;

}


/*=========================================================
SCROLLBAR
=========================================================*/

::-webkit-scrollbar {

    width: 9px;

}


::-webkit-scrollbar-track {

    background: var(--cream);

}


::-webkit-scrollbar-thumb {

    background: var(--forest);

}


::-webkit-scrollbar-thumb:hover {

    background: var(--gold);

}

/*=========================================================
VALUES SECTION
=========================================================*/

.values-section {

    position: relative;

    background: var(--forest-dark);

    overflow: hidden;

}


.values-section::before {

    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    right: -250px;

    top: -250px;

    border: 1px solid rgba(224, 194, 139, .15);

    border-radius: 50%;

}


.values-section::after {

    content: "";

    position: absolute;

    width: 300px;

    height: 300px;

    left: -180px;

    bottom: -170px;

    border: 1px solid rgba(255, 255, 255, .08);

    transform: rotate(45deg);

}


.values-header {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 50px;

    margin-bottom: 55px;

}


.values-header .section-title {

    max-width: 650px;

    margin-bottom: 0;

}


.values-header>p {

    max-width: 390px;

    margin: 0;

    color: rgba(255, 255, 255, .58);

    font-size: 12px;

    line-height: 1.9;

}


.values-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

}


.value-card {

    position: relative;

    min-height: 360px;

    padding: 45px 38px;

    border: 1px solid rgba(255, 255, 255, .1);

    border-right: 0;

    transition: var(--transition);

}


.value-card:last-child {

    border-right: 1px solid rgba(255, 255, 255, .1);

}


.value-card:hover {

    background: var(--forest);

    transform: translateY(-8px);

}


.value-number {

    position: absolute;

    top: 25px;

    right: 28px;

    color: rgba(255, 255, 255, .2);

    font-family: 'Playfair Display', serif;

    font-size: 14px;

}


.value-icon {

    width: 55px;

    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 60px;

    border: 1px solid rgba(224, 194, 139, .35);

    color: var(--gold-light);

    font-size: 20px;

}


.value-card h3 {

    margin-bottom: 15px;

    color: #fff;

    font-family: 'Playfair Display', serif;

    font-size: 25px;

}


.value-card p {

    max-width: 300px;

    margin: 0;

    color: rgba(255, 255, 255, .55);

    font-size: 11px;

    line-height: 1.8;

}


.value-line {

    width: 40px;

    height: 2px;

    margin-top: 45px;

    background: var(--gold);

}


/*=========================================================
PRINCIPAL / LEADERSHIP
=========================================================*/

.principal-section {

    background: var(--cream);

}


.principal-wrapper {

    display: grid;

    grid-template-columns: .85fr 1.15fr;

    min-height: 600px;

}


.principal-image-wrap {

    position: relative;

    min-height: 600px;

    overflow: hidden;

}


.principal-image-wrap img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


.principal-image-overlay {

    position: absolute;

    inset: auto 0 0;

    padding: 35px;

    background:

        linear-gradient(transparent,
            rgba(13, 43, 36, .95));

}


.principal-role {

    color: var(--gold-light);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;

}


.principal-name {

    margin-top: 6px;

    color: #fff;

    font-family: 'Playfair Display', serif;

    font-size: 24px;

}


.principal-content {

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 75px;

    background: #fff;

}


.principal-quote {

    margin: 10px 0 30px;

    color: var(--charcoal);

    font-family: 'Playfair Display', serif;

    font-size: 35px;

    line-height: 1.35;

}


.principal-quote span {

    color: var(--forest);

}


.principal-content p {

    max-width: 600px;

    color: var(--text);

    font-size: 12px;

    line-height: 1.9;

}


.principal-signature {

    margin-top: 35px;

    padding-top: 25px;

    border-top: 1px solid var(--border);

}


.principal-signature strong {

    display: block;

    color: var(--forest);

    font-family: 'Playfair Display', serif;

    font-size: 20px;

}


.principal-signature span {

    display: block;

    margin-top: 3px;

    color: var(--muted);

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

}


/*=========================================================
ACADEMICS
=========================================================*/

.academics-section {

    background: var(--ivory);

}


.academics-header {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 50px;

    margin-bottom: 50px;

}


.academics-header .section-title {

    max-width: 600px;

    margin-bottom: 0;

}


.academics-header>p {

    max-width: 400px;

    margin: 0;

    font-size: 12px;

    line-height: 1.9;

}


.academics-feature {

    display: grid;

    grid-template-columns: 1.1fr .9fr;

    min-height: 500px;

    margin-bottom: 18px;

}


.academics-feature-image {

    overflow: hidden;

}


.academics-feature-image img {

    width: 100%;

    height: 100%;

    min-height: 500px;

    object-fit: cover;

    transition: .7s;

}


.academics-feature:hover .academics-feature-image img {

    transform: scale(1.04);

}


.academics-feature-content {

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 55px;

    background: var(--forest);

}


.academics-feature-content .feature-number {

    color: var(--gold-light);

    font-family: 'Playfair Display', serif;

    font-size: 14px;

}


.academics-feature-content h3 {

    margin: 15px 0 20px;

    color: #fff;

    font-family: 'Playfair Display', serif;

    font-size: 34px;

    line-height: 1.25;

}


.academics-feature-content p {

    color: rgba(255, 255, 255, .6);

    font-size: 11px;

    line-height: 1.9;

}


.academic-list {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;

}


.academic-card {

    padding: 30px;

    background: #fff;

    border: 1px solid var(--border);

    transition: var(--transition);

}


.academic-card:hover {

    border-color: var(--gold);

    transform: translateY(-5px);

    box-shadow: var(--shadow);

}


.academic-card i {

    display: block;

    margin-bottom: 20px;

    color: var(--forest);

    font-size: 23px;

}


.academic-card h4 {

    margin-bottom: 10px;

    color: var(--charcoal);

    font-family: 'Playfair Display', serif;

    font-size: 20px;

}


.academic-card p {

    margin: 0;

    color: var(--text);

    font-size: 10px;

    line-height: 1.8;

}


/*=========================================================
FACILITIES
=========================================================*/

.facilities-section {

    background: #fff;

}


.facilities-grid {

    display: grid;

    grid-template-columns: repeat(12, 1fr);

    grid-template-rows: 250px 250px;

    gap: 15px;

}


.facility-item {

    position: relative;

    overflow: hidden;

    background: var(--forest-dark);

}


.facility-item:nth-child(1) {

    grid-column: span 5;

    grid-row: span 2;

}


.facility-item:nth-child(2) {

    grid-column: span 4;

}


.facility-item:nth-child(3) {

    grid-column: span 3;

}


.facility-item:nth-child(4) {

    grid-column: span 3;

}


.facility-item:nth-child(5) {

    grid-column: span 4;

}


.facility-item img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .7s;

}


.facility-item::after {

    content: "";

    position: absolute;

    inset: 0;

    background:

        linear-gradient(to top,
            rgba(8, 31, 25, .9),
            rgba(8, 31, 25, .05) 65%);

}


.facility-item:hover img {

    transform: scale(1.07);

}


.facility-content {

    position: absolute;

    z-index: 2;

    left: 25px;

    right: 25px;

    bottom: 23px;

}


.facility-content span {

    color: var(--gold-light);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.5px;

    text-transform: uppercase;

}


.facility-content h3 {

    margin-top: 5px;

    color: #fff;

    font-family: 'Playfair Display', serif;

    font-size: 21px;

}


.facility-content p {

    margin: 0;

    color: rgba(255, 255, 255, .6);

    font-size: 9px;

}


/*=========================================================
RESIDENTIAL / HOSTEL
=========================================================*/

.residential-section {

    background: var(--forest);

}


.residential-wrapper {

    display: grid;

    grid-template-columns: 1fr 1fr;

    min-height: 580px;

}


.residential-image {

    position: relative;

    overflow: hidden;

}


.residential-image img {

    width: 100%;

    height: 100%;

    min-height: 580px;

    object-fit: cover;

    transition: .7s;

}


.residential-image:hover img {

    transform: scale(1.04);

}


.residential-content {

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 70px;

}


.residential-content .section-title {

    max-width: 530px;

    margin-bottom: 25px;

}


.residential-content .section-title span {

    color: var(--gold-light);

}


.residential-content>p {

    max-width: 530px;

    color: rgba(255, 255, 255, .62);

    font-size: 12px;

    line-height: 1.9;

}


.residential-features {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;

    margin-top: 35px;

    padding-top: 25px;

    border-top: 1px solid rgba(255, 255, 255, .12);

}


.residential-feature {

    display: flex;

    align-items: flex-start;

    gap: 12px;

}


.residential-feature i {

    color: var(--gold-light);

    font-size: 17px;

}


.residential-feature strong {

    display: block;

    color: #fff;

    font-size: 10px;

}


.residential-feature span {

    display: block;

    margin-top: 3px;

    color: rgba(255, 255, 255, .45);

    font-size: 8px;

    line-height: 1.5;

}


/*=========================================================
FACILITIES / ACADEMIC CTA
=========================================================*/

.section-cta {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    margin-top: 45px;

    padding-top: 25px;

    border-top: 1px solid var(--border);

}


.section-cta p {

    margin: 0;

    color: var(--muted);

    font-size: 10px;

}


.section-cta .text-link {

    margin: 0;

}


/*=========================================================
RESPONSIVE — VALUES
=========================================================*/

@media(max-width:992px) {

    .values-header {

        display: block;

    }


    .values-header>p {

        margin-top: 20px;

    }


    .values-grid {

        grid-template-columns: 1fr;

    }


    .value-card {

        min-height: 280px;

        border-right: 1px solid rgba(255, 255, 255, .1);

        border-bottom: 0;

    }


    .value-card:last-child {

        border-bottom: 1px solid rgba(255, 255, 255, .1);

    }


    .principal-wrapper {

        grid-template-columns: 1fr;

    }


    .principal-image-wrap {

        min-height: 500px;

    }


    .principal-content {

        padding: 55px;

    }


    .academics-header {

        display: block;

    }


    .academics-header>p {

        margin-top: 20px;

    }


    .academics-feature {

        grid-template-columns: 1fr;

    }


    .academics-feature-image img {

        min-height: 400px;

        height: 400px;

    }


    .academic-list {

        grid-template-columns: 1fr 1fr;

    }


    .facilities-grid {

        grid-template-columns: 1fr 1fr;

        grid-template-rows: 250px 250px 250px;

    }


    .facility-item:nth-child(1) {

        grid-column: span 2;

        grid-row: span 1;

    }


    .facility-item:nth-child(2),
    .facility-item:nth-child(3),
    .facility-item:nth-child(4),
    .facility-item:nth-child(5) {

        grid-column: span 1;

    }


    .residential-wrapper {

        grid-template-columns: 1fr;

    }


    .residential-image {

        min-height: 450px;

    }


    .residential-image img {

        min-height: 450px;

        height: 450px;

    }


    .residential-content {

        padding: 60px 45px;

    }

}


/*=========================================================
RESPONSIVE — MOBILE
=========================================================*/

@media(max-width:768px) {

    .values-header {

        margin-bottom: 35px;

    }


    .value-card {

        padding: 35px 28px;

    }


    .value-icon {

        margin-bottom: 40px;

    }


    .principal-image-wrap {

        min-height: 400px;

    }


    .principal-content {

        padding: 45px 30px;

    }


    .principal-quote {

        font-size: 28px;

    }


    .academics-feature-content {

        padding: 40px 30px;

    }


    .academics-feature-content h3 {

        font-size: 28px;

    }


    .academic-list {

        grid-template-columns: 1fr;

    }


    .facilities-grid {

        display: grid;

        grid-template-columns: 1fr;

        grid-template-rows: repeat(5, 230px);

    }


    .facility-item:nth-child(n) {

        grid-column: span 1;

        grid-row: span 1;

    }


    .residential-content {

        padding: 50px 25px;

    }


    .residential-features {

        grid-template-columns: 1fr;

    }


    .section-cta {

        display: block;

    }


    .section-cta .text-link {

        margin-top: 15px;

    }

}


/*=========================================================
SMALL MOBILE
=========================================================*/

@media(max-width:576px) {

    .principal-image-wrap {

        min-height: 350px;

    }


    .principal-content {

        padding: 40px 22px;

    }


    .principal-quote {

        font-size: 25px;

    }


    .academics-feature-image img {

        min-height: 320px;

        height: 320px;

    }


    .academics-feature-content {

        padding: 35px 22px;

    }


    .facility-item {

        min-height: 220px;

    }


    .residential-image {

        min-height: 350px;

    }


    .residential-image img {

        min-height: 350px;

        height: 350px;

    }

}

/*=========================================================
SPORTS SECTION
=========================================================*/

.sports-section {

    background: var(--cream);

}


.sports-header {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 50px;

    margin-bottom: 45px;

}


.sports-header .section-title {

    max-width: 620px;

    margin-bottom: 0;

}


.sports-header>p {

    max-width: 390px;

    margin: 0;

    color: var(--text);

    font-size: 12px;

    line-height: 1.9;

}


.sports-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 14px;

}


.sport-card {

    position: relative;

    min-height: 380px;

    overflow: hidden;

    background: var(--forest-dark);

}


.sport-card img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .7s;

}


.sport-card::after {

    content: "";

    position: absolute;

    inset: 0;

    background:

        linear-gradient(to top,
            rgba(8, 31, 25, .95),
            rgba(8, 31, 25, .05) 70%);

}


.sport-card:hover img {

    transform: scale(1.08);

}


.sport-content {

    position: absolute;

    z-index: 2;

    left: 25px;

    right: 25px;

    bottom: 25px;

}


.sport-number {

    color: var(--gold-light);

    font-family: 'Playfair Display', serif;

    font-size: 12px;

}


.sport-content h3 {

    margin: 6px 0 7px;

    color: #fff;

    font-family: 'Playfair Display', serif;

    font-size: 24px;

}


.sport-content p {

    margin: 0;

    color: rgba(255, 255, 255, .58);

    font-size: 9px;

    line-height: 1.6;

}


/*=========================================================
PHYSICAL TRAINING
=========================================================*/

.training-section {

    background: var(--ivory);

}


.training-wrapper {

    display: grid;

    grid-template-columns: 1fr 1fr;

    min-height: 570px;

}


.training-content {

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 70px;

    background: var(--forest-dark);

}


.training-content .section-title {

    max-width: 540px;

    margin-bottom: 25px;

}


.training-content .section-title span {

    color: var(--gold-light);

}


.training-content>p {

    max-width: 520px;

    color: rgba(255, 255, 255, .6);

    font-size: 12px;

    line-height: 1.9;

}


.training-points {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;

    margin-top: 35px;

}


.training-point {

    display: flex;

    align-items: flex-start;

    gap: 12px;

}


.training-point i {

    color: var(--gold-light);

    font-size: 17px;

}


.training-point strong {

    display: block;

    color: #fff;

    font-size: 10px;

}


.training-point span {

    display: block;

    margin-top: 3px;

    color: rgba(255, 255, 255, .42);

    font-size: 8px;

    line-height: 1.5;

}


.training-image {

    position: relative;

    overflow: hidden;

}


.training-image img {

    width: 100%;

    height: 100%;

    min-height: 570px;

    object-fit: cover;

    transition: .7s;

}


.training-image:hover img {

    transform: scale(1.05);

}


.training-badge {

    position: absolute;

    right: 25px;

    bottom: 25px;

    width: 115px;

    height: 115px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(255, 255, 255, .35);

    background: rgba(13, 43, 36, .82);

    backdrop-filter: blur(5px);

}


.training-badge i {

    color: var(--gold-light);

    font-size: 24px;

}


.training-badge span {

    margin-top: 8px;

    color: #fff;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.3px;

    text-transform: uppercase;

    text-align: center;

}


/*=========================================================
LEADERSHIP
=========================================================*/

.leadership-section {

    background: #fff;

}


.leadership-header {

    max-width: 750px;

    margin-bottom: 45px;

}


.leadership-header .section-title {

    margin-bottom: 15px;

}


.leadership-header p {

    max-width: 600px;

    color: var(--text);

    font-size: 12px;

}


.leadership-layout {

    display: grid;

    grid-template-columns: .9fr 1.1fr;

    gap: 60px;

    align-items: center;

}


.leadership-image {

    position: relative;

    padding: 0 25px 25px 0;

}


.leadership-image::before {

    content: "";

    position: absolute;

    top: 25px;

    right: 0;

    bottom: 0;

    width: 75%;

    background: var(--forest);

    z-index: 0;

}


.leadership-image img {

    position: relative;

    z-index: 2;

    width: 100%;

    height: 500px;

    object-fit: cover;

}


.leadership-content h3 {

    margin-bottom: 18px;

    color: var(--charcoal);

    font-family: 'Playfair Display', serif;

    font-size: 34px;

    line-height: 1.3;

}


.leadership-content h3 span {

    color: var(--forest);

}


.leadership-content>p {

    color: var(--text);

    font-size: 12px;

    line-height: 1.9;

}


.leadership-points {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px 25px;

    margin-top: 30px;

    padding-top: 25px;

    border-top: 1px solid var(--border);

}


.leadership-point {

    display: flex;

    align-items: flex-start;

    gap: 10px;

}


.leadership-point i {

    color: var(--forest);

    font-size: 15px;

}


.leadership-point strong {

    display: block;

    color: var(--charcoal);

    font-size: 10px;

}


.leadership-point span {

    display: block;

    color: var(--muted);

    font-size: 8px;

}


/*=========================================================
ADMISSION
=========================================================*/

.admission-section {

    position: relative;

    background: var(--forest-dark);

    overflow: hidden;

}


.admission-section::before {

    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    top: -300px;

    right: -150px;

    border: 1px solid rgba(224, 194, 139, .15);

    border-radius: 50%;

}


.admission-section::after {

    content: "";

    position: absolute;

    width: 350px;

    height: 350px;

    left: -220px;

    bottom: -220px;

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 50%;

}


.admission-layout {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: 1fr .8fr;

    gap: 80px;

    align-items: center;

}


.admission-content .section-title {

    max-width: 650px;

    margin-bottom: 22px;

}


.admission-content .section-title span {

    color: var(--gold-light);

}


.admission-content>p {

    max-width: 600px;

    color: rgba(255, 255, 255, .58);

    font-size: 12px;

    line-height: 1.9;

}


.admission-actions {

    display: flex;

    gap: 12px;

    flex-wrap: wrap;

    margin-top: 30px;

}


.admission-info {

    padding: 35px;

    background: rgba(255, 255, 255, .06);

    border: 1px solid rgba(255, 255, 255, .12);

}


.admission-info>span {

    color: var(--gold-light);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;

}


.admission-info h3 {

    margin: 12px 0 25px;

    color: #fff;

    font-family: 'Playfair Display', serif;

    font-size: 27px;

}


.admission-item {

    display: flex;

    align-items: flex-start;

    gap: 13px;

    padding: 14px 0;

    border-top: 1px solid rgba(255, 255, 255, .1);

}


.admission-item i {

    color: var(--gold-light);

    font-size: 15px;

}


.admission-item strong {

    display: block;

    color: #fff;

    font-size: 10px;

}


.admission-item span {

    display: block;

    margin-top: 3px;

    color: rgba(255, 255, 255, .42);

    font-size: 8px;

}


/*=========================================================
GALLERY
=========================================================*/

.gallery-section {

    background: var(--ivory);

}


.gallery-header {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 40px;

    margin-bottom: 40px;

}


.gallery-header .section-title {

    margin-bottom: 0;

}


.gallery-header>p {

    max-width: 390px;

    margin: 0;

    font-size: 11px;

    line-height: 1.8;

}


.gallery-grid {

    display: grid;

    grid-template-columns: 1.2fr .8fr .8fr;

    grid-template-rows: 270px 270px;

    gap: 12px;

}


.gallery-item {

    position: relative;

    overflow: hidden;

    background: var(--forest-dark);

}


.gallery-item:nth-child(1) {

    grid-row: span 2;

}


.gallery-item:nth-child(4) {

    grid-column: span 2;

}


.gallery-item img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .7s;

}


.gallery-item::after {

    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(to top,
            rgba(8, 31, 25, .45),
            transparent 55%);

}


.gallery-item:hover img {

    transform: scale(1.07);

}


.gallery-caption {

    position: absolute;

    z-index: 2;

    left: 20px;

    bottom: 18px;

    color: #fff;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .7px;

    text-transform: uppercase;

}


/*=========================================================
FAQ
=========================================================*/

.faq-section {

    background: var(--cream);

}


.faq-layout {

    display: grid;

    grid-template-columns: .75fr 1.25fr;

    gap: 80px;

    align-items: start;

}


.faq-intro .section-title {

    margin-bottom: 20px;

}


.faq-intro p {

    max-width: 400px;

    color: var(--text);

    font-size: 12px;

}


.faq-list {

    border-top: 1px solid var(--border);

}


.faq-item {

    border-bottom: 1px solid var(--border);

}


.faq-question {

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 22px 0;

    background: transparent;

    border: 0;

    color: var(--charcoal);

    font-family: 'Playfair Display', serif;

    font-size: 16px;

    font-weight: 600;

    text-align: left;

    cursor: pointer;

}


.faq-question i {

    flex-shrink: 0;

    color: var(--forest);

    font-size: 17px;

    transition: .3s;

}


.faq-item.active .faq-question {

    color: var(--forest);

}


.faq-item.active .faq-question i {

    transform: rotate(45deg);

    color: var(--gold);

}


.faq-answer {

    display: grid;

    grid-template-rows: 0fr;

    transition: .4s;

}


.faq-answer-inner {

    overflow: hidden;

}


.faq-answer p {

    margin: 0;

    padding: 0 35px 22px 0;

    color: var(--text);

    font-size: 11px;

    line-height: 1.9;

}


.faq-item.active .faq-answer {

    grid-template-rows: 1fr;

}


/*=========================================================
CONTACT
=========================================================*/

.contact-section {

    background: #fff;

}


.contact-wrapper {

    display: grid;

    grid-template-columns: .85fr 1.15fr;

}


.contact-information {

    padding: 60px;

    background: var(--forest-dark);

}


.contact-information .section-title {

    margin-bottom: 20px;

}


.contact-information .section-title span {

    color: var(--gold-light);

}


.contact-information>p {

    max-width: 430px;

    color: rgba(255, 255, 255, .56);

    font-size: 11px;

    line-height: 1.9;

}


.contact-details {

    margin-top: 35px;

}


.contact-detail {

    display: flex;

    align-items: flex-start;

    gap: 14px;

    padding: 17px 0;

    border-top: 1px solid rgba(255, 255, 255, .1);

}


.contact-detail i {

    color: var(--gold-light);

    font-size: 17px;

}


.contact-detail span {

    display: block;

    color: rgba(255, 255, 255, .4);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;

}


.contact-detail strong {

    display: block;

    margin-top: 3px;

    color: #fff;

    font-size: 10px;

    font-weight: 600;

}


.contact-form {

    padding: 60px;

    background: var(--ivory);

}


.contact-form h3 {

    margin-bottom: 25px;

    color: var(--charcoal);

    font-family: 'Playfair Display', serif;

    font-size: 30px;

}


.contact-form .form-control {

    min-height: 50px;

    padding: 13px 15px;

    border: 1px solid var(--border);

    border-radius: 0;

    background: #fff;

    color: var(--charcoal);

    font-size: 10px;

    box-shadow: none;

}


.contact-form textarea.form-control {

    min-height: 130px;

    resize: vertical;

}


.contact-form .form-control:focus {

    border-color: var(--gold);

    box-shadow: 0 0 0 2px rgba(198, 154, 82, .1);

}


.contact-form .btn-primary-custom {

    border: 0;

    cursor: pointer;

}


/*=========================================================
RESPONSIVE — SPORTS / TRAINING
=========================================================*/

@media(max-width:1100px) {

    .sports-grid {

        grid-template-columns: repeat(2, 1fr);

    }


    .sport-card {

        min-height: 350px;

    }


    .training-wrapper {

        grid-template-columns: 1fr;

    }


    .training-image {

        min-height: 450px;

    }


    .training-image img {

        min-height: 450px;

        height: 450px;

    }


    .leadership-layout {

        grid-template-columns: 1fr;

        gap: 40px;

    }


    .leadership-image {

        max-width: 600px;

    }


    .admission-layout {

        grid-template-columns: 1fr;

        gap: 45px;

    }


    .faq-layout {

        grid-template-columns: 1fr;

        gap: 40px;

    }


    .contact-wrapper {

        grid-template-columns: 1fr;

    }

}


/*=========================================================
RESPONSIVE — TABLET
=========================================================*/

@media(max-width:768px) {

    .sports-header {

        display: block;

    }


    .sports-header>p {

        margin-top: 18px;

    }


    .sports-grid {

        grid-template-columns: 1fr;

    }


    .sport-card {

        min-height: 360px;

    }


    .training-content {

        padding: 50px 30px;

    }


    .training-points {

        grid-template-columns: 1fr;

    }


    .training-image {

        min-height: 400px;

    }


    .training-image img {

        min-height: 400px;

        height: 400px;

    }


    .leadership-image {

        padding-right: 15px;

        padding-bottom: 15px;

    }


    .leadership-image img {

        height: 420px;

    }


    .leadership-content h3 {

        font-size: 29px;

    }


    .leadership-points {

        grid-template-columns: 1fr;

    }


    .admission-layout {

        gap: 35px;

    }


    .admission-content {

        padding: 0;

    }


    .admission-info {

        padding: 30px 25px;

    }


    .gallery-header {

        display: block;

    }


    .gallery-header>p {

        margin-top: 18px;

    }


    .gallery-grid {

        grid-template-columns: 1fr 1fr;

        grid-template-rows: 230px 230px 230px;

    }


    .gallery-item:nth-child(1) {

        grid-column: span 2;

        grid-row: span 1;

    }


    .gallery-item:nth-child(4) {

        grid-column: span 2;

    }


    .faq-question {

        font-size: 14px;

    }


    .contact-information,
    .contact-form {

        padding: 45px 30px;

    }

}


/*=========================================================
RESPONSIVE — SMALL MOBILE
=========================================================*/

@media(max-width:576px) {

    .sports-grid {

        gap: 10px;

    }


    .sport-card {

        min-height: 320px;

    }


    .training-content {

        padding: 45px 22px;

    }


    .training-image {

        min-height: 330px;

    }


    .training-image img {

        min-height: 330px;

        height: 330px;

    }


    .training-badge {

        width: 95px;

        height: 95px;

        right: 15px;

        bottom: 15px;

    }


    .leadership-image img {

        height: 350px;

    }


    .leadership-content h3 {

        font-size: 26px;

    }


    .admission-actions {

        flex-direction: column;

        align-items: stretch;

    }


    .admission-actions a {

        width: 100%;

    }


    .gallery-grid {

        grid-template-columns: 1fr;

        grid-template-rows:
            repeat(5, 220px);

    }


    .gallery-item:nth-child(1),
    .gallery-item:nth-child(4) {

        grid-column: span 1;

    }


    .contact-information,
    .contact-form {

        padding: 40px 22px;

    }


    .contact-form h3 {

        font-size: 26px;

    }

}

/*=========================================================
FOOTER
=========================================================*/

.site-footer{

    background:var(--forest-dark);

    color:rgba(255,255,255,.52);

    padding-top:70px;

}


.footer-brand{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:22px;

}


.footer-brand img{

    width:50px;

    height:50px;

    object-fit:contain;

}


.footer-brand-text{

    display:flex;

    flex-direction:column;

    line-height:1.1;

}


.footer-brand-text strong{

    color:#fff;

    font-family:'Playfair Display',serif;

    font-size:15px;

}


.footer-brand-text span{

    margin-top:4px;

    color:var(--gold-light);

    font-size:8px;

    font-weight:800;

    letter-spacing:2px;

}


.footer-description{

    max-width:390px;

    color:rgba(255,255,255,.45);

    font-size:10px;

    line-height:1.9;

}


.footer-title{

    margin-bottom:20px;

    color:#fff;

    font-size:9px;

    font-weight:800;

    letter-spacing:1.8px;

    text-transform:uppercase;

}


.footer-links{

    list-style:none;

    padding:0;

    margin:0;

}


.footer-links li{

    margin-bottom:10px;

}


.footer-links a{

    color:rgba(255,255,255,.45);

    font-size:10px;

}


.footer-links a:hover{

    padding-left:5px;

    color:var(--gold-light);

}


.footer-contact{

    list-style:none;

    padding:0;

    margin:0;

}


.footer-contact li{

    display:flex;

    align-items:flex-start;

    gap:10px;

    margin-bottom:15px;

}


.footer-contact i{

    flex-shrink:0;

    color:var(--gold-light);

    font-size:13px;

}


.footer-contact span{

    color:rgba(255,255,255,.45);

    font-size:10px;

    line-height:1.6;

}


.footer-social{

    display:flex;

    gap:8px;

    margin-top:22px;

}


.footer-social a{

    width:34px;

    height:34px;

    display:flex;

    align-items:center;

    justify-content:center;

    border:1px solid rgba(255,255,255,.13);

    color:rgba(255,255,255,.55);

    font-size:12px;

}


.footer-social a:hover{

    background:var(--gold);

    border-color:var(--gold);

    color:#fff;

}


.footer-bottom{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:20px;

    margin-top:60px;

    padding:22px 0;

    border-top:1px solid rgba(255,255,255,.1);

}


.footer-bottom p{

    margin:0;

    color:rgba(255,255,255,.32);

    font-size:8px;

    line-height:1.6;

}


.footer-bottom-links{

    display:flex;

    gap:20px;

}


.footer-bottom-links a{

    color:rgba(255,255,255,.32);

    font-size:8px;

}


.footer-bottom-links a:hover{

    color:var(--gold-light);

}


/*=========================================================
BACK TO TOP
=========================================================*/

.back-to-top{

    position:fixed;

    right:25px;

    bottom:25px;

    z-index:9990;

    width:45px;

    height:45px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:var(--gold);

    color:#fff;

    border:0;

    opacity:0;

    visibility:hidden;

    transform:translateY(15px);

    transition:var(--transition);

    cursor:pointer;

}


.back-to-top.show{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}


.back-to-top:hover{

    background:var(--forest);

}


/*=========================================================
SCROLL REVEAL
=========================================================*/

.reveal-element{

    opacity:0;

    transform:translateY(25px);

    transition:

        opacity .7s ease,

        transform .7s ease;

}


.reveal-element.revealed{

    opacity:1;

    transform:translateY(0);

}


/*=========================================================
NAVBAR SCROLL STATE
=========================================================*/

.navbar.navbar-scrolled{

    box-shadow:

        0 8px 30px rgba(13,43,36,.12);

}


/*=========================================================
GALLERY LIGHTBOX
=========================================================*/

.image-lightbox{

    position:fixed;

    inset:0;

    z-index:10000;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:30px;

    background:rgba(5,20,16,.95);

}


.image-lightbox img{

    max-width:92vw;

    max-height:88vh;

    width:auto;

    height:auto;

    object-fit:contain;

}


.lightbox-close{

    position:absolute;

    top:20px;

    right:25px;

    width:45px;

    height:45px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:transparent;

    border:1px solid rgba(255,255,255,.3);

    color:#fff;

    font-size:28px;

    cursor:pointer;

}


.lightbox-close:hover{

    background:var(--gold);

    border-color:var(--gold);

}


/*=========================================================
FIXED HEADER / SECTION POSITION
=========================================================*/

/*
IMPORTANT:

The header is fixed.

The body does NOT receive padding-top.

The browser uses this value when an
anchor navigation link is clicked.
*/

html{

    scroll-padding-top:var(--header-height);

}


section[id]{

    scroll-margin-top:var(--header-height);

}


/*=========================================================
MOBILE HEADER POSITION
=========================================================*/

@media(max-width:992px){

    html{

        scroll-padding-top:78px;

    }


    section[id]{

        scroll-margin-top:78px;

    }


    .navbar-collapse{

        max-height:calc(100vh - 78px);

        overflow-y:auto;

    }


    .navbar-collapse::-webkit-scrollbar{

        width:4px;

    }


    .navbar-collapse::-webkit-scrollbar-thumb{

        background:var(--gold);

    }

}


/*=========================================================
FOOTER MOBILE
=========================================================*/

@media(max-width:768px){

    .site-footer{

        padding-top:55px;

    }


    .footer-bottom{

        display:block;

        margin-top:45px;

    }


    .footer-bottom-links{

        margin-top:10px;

    }


    .back-to-top{

        right:15px;

        bottom:15px;

        width:42px;

        height:42px;

    }

}


/*=========================================================
FOOTER SMALL MOBILE
=========================================================*/

@media(max-width:576px){

    .footer-bottom-links{

        gap:12px;

        flex-wrap:wrap;

    }


    .image-lightbox{

        padding:15px;

    }


    .lightbox-close{

        top:12px;

        right:12px;

        width:40px;

        height:40px;

    }

}


/*=========================================================
REDUCED MOTION
=========================================================*/

@media(prefers-reduced-motion:reduce){

    html{

        scroll-behavior:auto;

    }


    *,
    *::before,
    *::after{

        animation-duration:.01ms !important;

        animation-iteration-count:1 !important;

        transition-duration:.01ms !important;

    }

}