* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    color: #18352d;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

.site-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 9999;
    box-shadow: 0 3px 20px rgba(0,0,0,.08);
}

.nav-container {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #18352d;
    font-size: 21px;
    font-weight: 700;
}

.logo b {
    color: #b88746;
}

.logo-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #18352d;
    color: #fff;
    border-radius: 12px;
    font-size: 20px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    color: #18352d;
    font-weight: 600;
    padding: 10px 11px;
}

.nav-link:hover {
    color: #b88746;
}

.nav-apply {
    margin-left: 10px;
    background: #18352d;
    color: #fff;
    padding: 11px 19px;
    border-radius: 8px;
    font-weight: 700;
}

.nav-apply:hover {
    background: #b88746;
    color: #fff;
}

.menu-btn {
    display: none;
    border: 0;
    background: transparent;
    font-size: 31px;
    color: #18352d;
}


/* HERO */

.hero {
    min-height: 720px;
    padding-top: 76px;
    display: flex;
    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(10,39,31,.91),
            rgba(10,39,31,.40)
        ),
        url("https://images.unsplash.com/photo-1503676260728-1c00da094a0b?auto=format&fit=crop&w=1800&q=90")
        center/cover no-repeat;
}

.hero-content {
    max-width: 700px;
    color: #fff;
}

.eyebrow {
    color: #d7aa68;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.hero h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(48px, 7vw, 78px);
    line-height: 1.08;
    margin: 20px 0;
}

.hero h1 span {
    color: #d7aa68;
    display: block;
}

.hero p {
    font-size: 18px;
    line-height: 1.8;
    color: #f0f0f0;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn-main,
.btn-outline {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 700;
    transition: .3s;
}

.btn-main {
    background: #b88746;
    color: #fff;
    border: 0;
}

.btn-main:hover {
    background: #d19b55;
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #18352d;
}


/* INFO */

.info-strip {
    background: #fff;
    box-shadow: 0 10px 35px rgba(0,0,0,.09);
}

.info-item {
    padding: 27px 22px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-item i {
    color: #b88746;
    font-size: 25px;
}

.info-item strong,
.info-item span {
    display: block;
}

.info-item span {
    color: #777;
    margin-top: 4px;
    font-size: 14px;
}


/* SECTIONS */

.section {
    padding: 100px 0;
}

.light {
    background: #f5f7f5;
}

.section-tag {
    color: #b88746;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.section h2,
.heading h2,
.admissions h2 {
    font-family: "Playfair Display", serif;
    font-size: 45px;
    line-height: 1.2;
    margin: 15px 0 20px;
}

.section h2 span,
.heading h2 span,
.admissions h2 span {
    color: #b88746;
    display: block;
}

.section p {
    color: #697570;
    line-height: 1.8;
}


/* IMAGES */

.photo-card {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,.12);
}

.photo-card img {
    display: block;
    width: 100%;
    transition: .5s;
}

.photo-card:hover img {
    transform: scale(1.04);
}


/* CHECKS */

.checks {
    margin: 25px 0;
}

.checks div {
    margin: 13px 0;
    font-weight: 600;
}

.checks i {
    color: #b88746;
    margin-right: 9px;
}


/* HEADING */

.heading {
    max-width: 700px;
    text-align: center;
    margin: 0 auto 50px;
}


/* PROGRAMS */

.program-card {
    height: 100%;
    background: #fff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
    transition: .3s;
}

.program-card:hover {
    transform: translateY(-8px);
}

.program-icon {
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #edf3ef;
    color: #18352d;
    border-radius: 14px;
    font-size: 27px;
    margin-bottom: 20px;
}

.program-card small {
    color: #b88746;
    font-weight: 700;
}

.program-card h3 {
    margin: 9px 0;
}

.program-card a {
    color: #18352d;
    font-weight: 700;
}


/* FACILITIES */

.facility-list {
    margin-top: 25px;
}

.facility-list div {
    padding: 14px 0;
    border-bottom: 1px solid #eee;
    font-weight: 600;
}

.facility-list i {
    color: #b88746;
    font-size: 20px;
    margin-right: 12px;
}


/* ADMISSIONS */

.admissions {
    padding: 100px 0;
    background: #18352d;
    color: #fff;
}

.admissions p {
    color: #d6dfdb;
}

.light-tag {
    color: #d7aa68;
}

.steps {
    margin-top: 30px;
}

.steps > div {
    display: flex;
    align-items: center;
    gap: 17px;
    margin-bottom: 20px;
}

.steps b {
    min-width: 46px;
    width: 46px;
    height: 46px;
    border: 1px solid #b88746;
    color: #d7aa68;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.steps strong {
    display: block;
    margin-bottom: 3px;
}

.form-card {
    background: #fff;
    color: #18352d;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,.15);
}

.form-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 30px;
    margin: 8px 0 25px;
}

.form-card input,
.form-card select,
.form-card textarea {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 13px 14px;
    margin-bottom: 15px;
    outline: none;
    font-family: inherit;
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
    border-color: #b88746;
}

.demo {
    color: #b88746;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.full {
    width: 100%;
}


/* EVENTS */

.event-card {
    height: 100%;
    background: #fff;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,.07);
}

.event-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.event-body {
    padding: 25px;
}

.event-body small {
    color: #b88746;
    font-weight: 700;
}

.event-body h3 {
    margin: 10px 0;
}


/* CONTACT */

.contact {
    background: #fafbf9;
}

.contact-info {
    margin-top: 30px;
}

.contact-info div {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 20px 0;
}

.contact-info i {
    color: #b88746;
    font-size: 21px;
    width: 25px;
}


/* FOOTER */

footer {
    background: #102a23;
    color: #fff;
    padding: 70px 0 25px;
}

.footer-logo {
    color: #fff;
    font-size: 21px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-logo:hover {
    color: #fff;
}

footer p {
    color: #bdc8c4;
    line-height: 1.8;
}

footer h5 {
    margin-bottom: 20px;
}

footer a:not(.footer-logo) {
    display: block;
    color: #bdc8c4;
    margin: 10px 0;
}

footer a:hover {
    color: #d7aa68;
}

.socials {
    display: flex;
    gap: 9px;
    margin-top: 20px;
}

.socials a {
    width: 38px;
    height: 38px;
    border: 1px solid #52635d;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

footer hr {
    border-color: #41534d;
    margin-top: 40px;
}

.copyright {
    text-align: center;
    margin: 25px 0 0;
}


/* TOAST */

#toast {
    position: fixed;
    right: 20px;
    bottom: 25px;
    z-index: 10000;
    background: #18352d;
    color: #fff;
    padding: 14px 20px;
    border-radius: 8px;
    display: none;
}

#toast i {
    color: #d7aa68;
    margin-right: 8px;
}


/* BACK TOP */

#backTop {
    position: fixed;
    right: 20px;
    bottom: 75px;
    width: 45px;
    height: 45px;
    border: 0;
    border-radius: 50%;
    background: #b88746;
    color: #fff;
    display: none;
    z-index: 9998;
}


/* MOBILE */

@media (max-width: 991px) {

    .menu-btn {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 76px;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 15px 20px 25px;
        box-shadow: 0 15px 30px rgba(0,0,0,.10);
    }

    .nav-menu.open {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .nav-link {
        padding: 13px 5px;
        border-bottom: 1px solid #eee;
    }

    .nav-apply {
        text-align: center;
        margin: 15px 0 0;
    }

    .hero {
        min-height: 680px;
    }

    .info-item {
        border-bottom: 1px solid #eee;
    }
}


@media (max-width: 576px) {

    .section,
    .admissions {
        padding: 70px 0;
    }

    .hero {
        min-height: 650px;
    }

    .hero h1 {
        font-size: 45px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-main,
    .btn-outline {
        width: 100%;
    }

    .section h2,
    .heading h2,
    .admissions h2 {
        font-size: 36px;
    }

    .form-card {
        padding: 25px;
    }
}