/* =========================================================
   GLOBAL
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    color: #222;
    background: #fff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea {
    font-family: inherit;
}

.container {
    width: min(1180px, 92%);
    margin: auto;
}

.section {
    padding: 90px 0;
}

.center {
    text-align: center;
}

.small-title {
    display: inline-block;
    color: #087b3e;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-heading h2 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    color: #143a27;
}

.section-heading h2 span {
    color: #087b3e;
}

.section-heading p {
    max-width: 650px;
    margin: 18px auto 0;
    color: #777;
    line-height: 1.8;
}

.heading-line {
    width: 65px;
    height: 4px;
    background: #e11920;
    border-radius: 20px;
    margin-top: 18px;
}

.center .heading-line {
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   TOP BAR
========================================================= */

.top-bar {
    background: #087b3e;
    color: #fff;
    font-size: 13px;
}

.top-bar-inner {
    min-height: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left,
.top-right {
    display: flex;
    align-items: center;
    gap: 22px;
}

.top-left a,
.top-right a {
    display: flex;
    align-items: center;
    gap: 7px;
    transition: .3s;
}

.top-left a:hover,
.top-right a:hover {
    color: #ffd83d;
}

.top-right a {
    width: 28px;
    height: 28px;
    justify-content: center;
    border-radius: 50%;
}


/* =========================================================
   SCHOOL HEADER
========================================================= */

.school-header {
    background: #fff;
    border-top: 4px solid #e11920;
}

.school-header-inner {
    width: min(1250px, 100%);
    margin: auto;
}

.school-header-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}


/* =========================================================
   NAVIGATION
========================================================= */

.main-navigation {
    background: #087b3e;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .12);
}

.nav-container {
    min-height: 70px;
    display: flex;
    align-items: center;
    gap: 22px;
}

.home-icon {
    color: #fff;
    font-size: 21px;
    padding: 10px;
}

.nav-menu {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 27px;
}

.nav-menu a {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    position: relative;
    padding: 25px 0;
    white-space: nowrap;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    bottom: 17px;
    left: 0;
    width: 0;
    height: 3px;
    background: #ffd633;
    transition: .3s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: #004d28;
    color: #fff;
    padding: 13px 24px;
    border-radius: 40px;
    font-weight: 700;
    transition: .3s;
    white-space: nowrap;
}

.login-btn:hover {
    background: #e11920;
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 30px;
    height: 4px;
    margin: 5px 0;
    border-radius: 10px;
    background: #fff;
}


/* =========================================================
   HERO
========================================================= */

.hero-section {
    position: relative;
}

.hero-slider {
    position: relative;
    height: 580px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, .82) 0%,
            rgba(0, 0, 0, .58) 38%,
            rgba(0, 0, 0, .10) 100%
        );
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    z-index: 2;
}

.hero-badge {
    width: fit-content;
    background: #ffd43d;
    color: #075d32;
    padding: 12px 25px;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 22px;
}

.hero-content h1 {
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -2px;
}

.hero-content h1 span {
    color: #fff;
}

.hero-content p {
    max-width: 590px;
    margin-top: 25px;
    font-size: 20px;
    line-height: 1.7;
    color: #f4f4f4;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    margin-top: 35px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 58px;
    padding: 0 30px;
    border-radius: 35px;
    font-size: 16px;
    font-weight: 700;
    transition: .3s;
}

.btn-red {
    background: #e11920;
    color: #fff;
}

.btn-red:hover {
    background: #bd1016;
    transform: translateY(-3px);
}

.btn-white {
    background: #fff;
    color: #087b3e;
}

.btn-white:hover {
    background: #087b3e;
    color: #fff;
    transform: translateY(-3px);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 50%;
    background: rgba(0, 0, 0, .3);
    color: #fff;
    cursor: pointer;
    font-size: 20px;
    z-index: 5;
    transition: .3s;
}

.slider-arrow:hover {
    background: #087b3e;
}

.slider-prev {
    left: 25px;
}

.slider-next {
    right: 25px;
}

.slider-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    opacity: .85;
    cursor: pointer;
}

.dot.active {
    background: #ffd43d;
    transform: scale(1.3);
}


/* =========================================================
   QUICK ACCESS
========================================================= */

.quick-access {
    background: #f8faf9;
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.quick-card {
    background: #fff;
    padding: 28px 18px;
    text-align: center;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .06);
    border: 1px solid #edf0ee;
    transition: .3s;
}

.quick-card:hover {
    transform: translateY(-8px);
    border-color: #087b3e;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .1);
}

.quick-icon {
    width: 70px;
    height: 70px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: #eaf7ef;
    color: #087b3e;
    font-size: 30px;
}

.quick-card h3 {
    margin-top: 18px;
    color: #183526;
    font-size: 17px;
}

.quick-card p {
    margin-top: 5px;
    color: #888;
    font-size: 12px;
}


/* =========================================================
   NOTICE
========================================================= */

.notice-section {
    padding: 35px 0;
    background: #087b3e;
    color: #fff;
}

.notice-container {
    display: flex;
    align-items: center;
    gap: 30px;
}

.notice-title {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 190px;
}

.notice-icon {
    width: 55px;
    height: 55px;
    border-radius: 15px;
    background: #ffd43d;
    color: #075d32;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.notice-title span {
    font-size: 10px;
    letter-spacing: 1.5px;
}

.notice-title h2 {
    font-size: 20px;
}

.notice-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.notice-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 15px;
    background: rgba(255,255,255,.08);
    border-radius: 10px;
    transition: .3s;
}

.notice-item:hover {
    background: rgba(255,255,255,.15);
}

.notice-date {
    min-width: 48px;
    text-align: center;
    background: #fff;
    color: #087b3e;
    border-radius: 8px;
    padding: 5px;
}

.notice-date strong {
    display: block;
    font-size: 18px;
    line-height: 1;
}

.notice-date small {
    font-size: 9px;
    font-weight: 700;
}

.notice-content {
    flex: 1;
}

.notice-content h3 {
    font-size: 13px;
}

.notice-content p {
    font-size: 11px;
    opacity: .75;
    margin-top: 2px;
}

.new-badge {
    background: #e11920;
    color: #fff;
    padding: 4px 8px;
    border-radius: 5px;
    font-size: 9px;
    font-weight: 700;
}

.notice-item > i {
    font-size: 13px;
}

.view-all {
    color: #ffd43d;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}


/* =========================================================
   LEADERSHIP
========================================================= */

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 50px;
}

.leader-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: #f5f5f5;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
}

.leader-card img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    transition: .5s;
}

.leader-card:hover img {
    transform: scale(1.04);
}

.leader-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 18px 18px;
    color: #fff;
    background: linear-gradient(
        transparent,
        rgba(0,0,0,.75)
    );
}

.leader-overlay span {
    font-weight: 700;
    font-size: 13px;
}


/* =========================================================
   ABOUT
========================================================= */

.about-section {
    background: #f7faf8;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.about-image {
    position: relative;
}

.image-frame {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,.12);
}

.image-frame img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.experience-box {
    position: absolute;
    right: -25px;
    bottom: -25px;
    background: #087b3e;
    color: #fff;
    border-radius: 20px;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 12px 35px rgba(0,0,0,.2);
}

.experience-box strong {
    font-size: 40px;
    color: #ffd43d;
}

.experience-box span {
    font-size: 12px;
    line-height: 1.5;
    font-weight: 600;
}

.about-content p {
    color: #777;
    line-height: 1.8;
    margin-top: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
    margin: 25px 0;
}

.about-features div {
    color: #314b3c;
    font-size: 13px;
    font-weight: 600;
}

.about-features i {
    color: #087b3e;
    margin-right: 7px;
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #087b3e;
    color: #fff;
    padding: 14px 25px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    transition: .3s;
}

.primary-btn:hover {
    background: #e11920;
    transform: translateY(-3px);
}


/* =========================================================
   ACADEMIC
========================================================= */

.academic-section {
    background:
        linear-gradient(
            135deg,
            #075b30,
            #087b3e
        );
    color: #fff;
}

.section-heading.light h2 {
    color: #fff;
}

.section-heading.light p {
    color: rgba(255,255,255,.75);
}

.academic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.academic-card {
    padding: 30px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.07);
    border-radius: 18px;
    transition: .3s;
}

.academic-card:hover {
    background: rgba(255,255,255,.13);
    transform: translateY(-5px);
}

.academic-icon {
    width: 58px;
    height: 58px;
    border-radius: 15px;
    background: #ffd43d;
    color: #075b30;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
}

.academic-card h3 {
    margin-top: 20px;
    font-size: 18px;
}

.academic-card p {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255,255,255,.7);
}


/* =========================================================
   STATS
========================================================= */

.stats-section {
    background: #e11920;
    color: #fff;
    padding: 50px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-box {
    text-align: center;
    padding: 15px;
    border-right: 1px solid rgba(255,255,255,.25);
}

.stat-box:last-child {
    border-right: 0;
}

.stat-box i {
    font-size: 25px;
    margin-bottom: 12px;
    color: #ffd43d;
}

.stat-box strong {
    display: block;
    font-size: 34px;
}

.stat-box span {
    font-size: 12px;
    opacity: .85;
}


/* =========================================================
   FACILITIES
========================================================= */

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.facility-card {
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 35px rgba(0,0,0,.08);
}

.facility-card > img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.facility-content {
    padding: 22px;
    position: relative;
}

.facility-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: #087b3e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -48px;
    position: relative;
    margin-bottom: 18px;
}

.facility-content h3 {
    color: #163927;
    font-size: 17px;
}

.facility-content p {
    color: #777;
    font-size: 12px;
    line-height: 1.7;
    margin-top: 8px;
}


/* =========================================================
   ACHIEVEMENT
========================================================= */

.achievement-section {
    background: #f8faf9;
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.achievement-card {
    position: relative;
    padding: 45px 30px 35px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #edf0ee;
    overflow: hidden;
}

.achievement-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 45px;
    font-weight: 800;
    color: #edf4ef;
}

.achievement-icon {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    background: #eaf7ef;
    color: #087b3e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
}

.achievement-card h3 {
    margin-top: 22px;
    color: #183b28;
}

.achievement-card p {
    color: #777;
    font-size: 13px;
    line-height: 1.7;
    margin-top: 10px;
}


/* =========================================================
   EVENTS
========================================================= */

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 45px;
}

.event-card {
    border-radius: 18px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.07);
}

.event-image {
    position: relative;
}

.event-image img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.event-date {
    position: absolute;
    left: 18px;
    bottom: -20px;
    width: 55px;
    height: 60px;
    border-radius: 10px;
    background: #e11920;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.event-date strong {
    font-size: 21px;
    line-height: 1;
}

.event-date span {
    font-size: 9px;
    font-weight: 700;
    margin-top: 3px;
}

.event-content {
    padding: 35px 22px 25px;
}

.event-content > span {
    color: #087b3e;
    font-size: 11px;
}

.event-content h3 {
    margin-top: 10px;
    color: #183b28;
    font-size: 17px;
}

.event-content p {
    color: #777;
    font-size: 12px;
    line-height: 1.7;
    margin: 9px 0 15px;
}

.event-content a {
    color: #087b3e;
    font-size: 12px;
    font-weight: 700;
}


/* =========================================================
   GALLERY
========================================================= */

.gallery-section {
    background: #f8faf9;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 45px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8,123,62,.65);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: .3s;
}

.gallery-overlay i {
    color: #fff;
    font-size: 25px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.center-button {
    text-align: center;
    margin-top: 35px;
}


/* =========================================================
   ADMISSION CTA
========================================================= */

.admission-cta {
    position: relative;
    min-height: 430px;
    background:
        url("assets/images/admission-bg.jpg")
        center/cover no-repeat;
    display: flex;
    align-items: center;
    color: #fff;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0,83,43,.95),
            rgba(0,83,43,.68)
        );
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content > span {
    color: #ffd43d;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 700;
}

.cta-content h2 {
    font-size: clamp(35px, 5vw, 58px);
    line-height: 1.1;
    margin-top: 12px;
}

.cta-content h2 strong {
    color: #ffd43d;
}

.cta-content p {
    max-width: 600px;
    margin-top: 18px;
    color: rgba(255,255,255,.8);
}

.cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}


/* =========================================================
   PORTAL
========================================================= */

.portal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.portal-content p {
    color: #777;
    line-height: 1.8;
    margin-top: 20px;
}

.portal-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 25px 0;
}

.portal-features div {
    font-size: 13px;
    font-weight: 600;
}

.portal-features i {
    color: #087b3e;
    margin-right: 7px;
}

.portal-image {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 300px;
    padding: 10px;
    border-radius: 40px;
    background: #111;
    box-shadow: 0 25px 70px rgba(0,0,0,.25);
}

.phone-screen {
    min-height: 560px;
    background: #f5faf7;
    border-radius: 32px;
    overflow: hidden;
}

.phone-top {
    background: #087b3e;
    color: #fff;
    padding: 25px 20px 35px;
    display: flex;
    justify-content: space-between;
}

.student-profile {
    margin: -15px 15px 0;
    background: #fff;
    border-radius: 15px;
    padding: 15px;
    display: flex;
    gap: 12px;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
}

.student-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #eaf7ef;
    color: #087b3e;
    display: flex;
    justify-content: center;
    align-items: center;
}

.student-profile strong {
    display: block;
    font-size: 12px;
}

.student-profile small {
    color: #888;
    font-size: 9px;
}

.phone-cards {
    padding: 20px 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.phone-cards div {
    background: #fff;
    border-radius: 14px;
    padding: 25px 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,.05);
}

.phone-cards i {
    display: block;
    color: #087b3e;
    font-size: 25px;
    margin-bottom: 10px;
}

.phone-cards span {
    font-size: 10px;
    font-weight: 600;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {
    background: #f8faf9;
}

.contact-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    gap: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,.05);
}

.contact-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 13px;
    background: #eaf7ef;
    color: #087b3e;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item h3 {
    font-size: 14px;
    color: #183b28;
}

.contact-item p {
    color: #777;
    font-size: 12px;
    line-height: 1.7;
    margin-top: 4px;
}

.contact-form {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0,0,0,.06);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 7px;
    color: #334a3c;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 1px solid #e1e7e3;
    border-radius: 10px;
    padding: 13px 14px;
    outline: none;
    resize: vertical;
    font-size: 12px;
    transition: .3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #087b3e;
    box-shadow: 0 0 0 3px rgba(8,123,62,.08);
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    background: #073b22;
    color: #fff;
}

.footer-grid {
    padding: 70px 0 50px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 45px;
}

.footer-logo {
    width: 270px;
    background: #fff;
    border-radius: 10px;
    padding: 7px;
}

.footer-about p {
    color: rgba(255,255,255,.65);
    font-size: 12px;
    line-height: 1.8;
    margin-top: 18px;
    max-width: 350px;
}

.social-links {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.social-links a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    transition: .3s;
}

.social-links a:hover {
    background: #e11920;
}

.footer-column h3 {
    font-size: 16px;
    margin-bottom: 20px;
}

.footer-column a,
.footer-column p {
    display: block;
    color: rgba(255,255,255,.65);
    font-size: 12px;
    margin-bottom: 12px;
}

.footer-column a:hover {
    color: #ffd43d;
}

.footer-column p i {
    color: #ffd43d;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
}

.footer-bottom-inner {
    min-height: 65px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255,255,255,.5);
    font-size: 10px;
}


/* =========================================================
   WHATSAPP
========================================================= */

.whatsapp-btn {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 62px;
    height: 62px;
    background: #20d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 31px;
    box-shadow: 0 8px 25px rgba(0,0,0,.2);
    z-index: 1500;
    transition: .3s;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}


/* =========================================================
   BACK TO TOP
========================================================= */

.back-to-top {
    position: fixed;
    right: 28px;
    bottom: 100px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: #087b3e;
    color: #fff;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 1400;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}


/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 1050px) {

    .nav-menu {
        gap: 16px;
    }

    .nav-menu a {
        font-size: 11px;
    }

    .quick-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 768px) {

    .container {
        width: min(94%, 600px);
    }

    .section {
        padding: 65px 0;
    }

    .section-heading h2 {
        font-size: 30px;
    }


    /* TOP BAR */

    .top-bar {
        display: none;
    }


    /* SCHOOL HEADER */

    .school-header {
        border-top-width: 3px;
    }

    .school-header-image {
        width: 100%;
        min-height: 105px;
        object-fit: contain;
    }


    /* NAVIGATION */

    .main-navigation {
        position: sticky;
        top: 0;
    }

    .nav-container {
        min-height: 72px;
        justify-content: space-between;
        gap: 10px;
    }

    .home-icon {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        order: 1;
    }

    .nav-menu {
        position: absolute;
        left: 0;
        right: 0;
        top: 72px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        background: #075d30;
        padding: 10px 20px 20px;
        transform: translateY(-15px);
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        box-shadow: 0 15px 25px rgba(0,0,0,.2);
    }

    .nav-menu.show {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu a {
        padding: 14px 5px;
        font-size: 14px;
        border-bottom: 1px solid rgba(255,255,255,.1);
    }

    .nav-menu a::after {
        display: none;
    }

    .login-btn {
        order: 2;
        padding: 12px 20px;
        font-size: 14px;
    }


    /* HERO */

    .hero-slider {
        height: 620px;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(0,0,0,.82),
                rgba(0,0,0,.40)
            );
    }

    .hero-content {
        justify-content: center;
        padding: 20px;
    }

    .hero-badge {
        font-size: 15px;
        padding: 10px 19px;
        margin-bottom: 18px;
    }

    .hero-content h1 {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .hero-content p {
        font-size: 16px;
        line-height: 1.65;
        margin-top: 20px;
    }

    .hero-buttons {
        gap: 10px;
        margin-top: 28px;
    }

    .btn {
        min-height: 52px;
        padding: 0 20px;
        font-size: 13px;
    }

    .slider-arrow {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .slider-prev {
        left: 12px;
    }

    .slider-next {
        right: 12px;
    }


    /* QUICK */

    .quick-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 13px;
        margin-top: 35px;
    }

    .quick-card {
        padding: 22px 10px;
        border-radius: 14px;
    }

    .quick-icon {
        width: 58px;
        height: 58px;
        font-size: 24px;
    }

    .quick-card h3 {
        font-size: 14px;
        margin-top: 13px;
    }

    .quick-card p {
        display: none;
    }


    /* NOTICE */

    .notice-container {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .notice-title {
        min-width: auto;
    }

    .notice-item {
        gap: 9px;
        padding: 9px;
    }

    .notice-content h3 {
        font-size: 11px;
    }

    .notice-content p {
        display: none;
    }

    .new-badge {
        display: none;
    }

    .view-all {
        text-align: right;
    }


    /* LEADERSHIP */

    .leadership-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-top: 35px;
    }

    .leader-card {
        border-radius: 12px;
    }


    /* ABOUT */

    .about-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .image-frame img {
        height: 350px;
    }

    .experience-box {
        right: 10px;
        bottom: -25px;
        padding: 15px 18px;
    }

    .experience-box strong {
        font-size: 30px;
    }


    /* ACADEMIC */

    .academic-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-top: 35px;
    }

    .academic-card {
        padding: 20px 15px;
    }

    .academic-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .academic-card h3 {
        font-size: 14px;
        margin-top: 14px;
    }

    .academic-card p {
        font-size: 11px;
    }


    /* STATS */

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-box {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.2);
        padding: 20px;
    }

    .stat-box:nth-child(3),
    .stat-box:nth-child(4) {
        border-bottom: 0;
    }


    /* FACILITIES */

    .facilities-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-top: 35px;
    }

    .facility-card > img {
        height: 160px;
    }

    .facility-content {
        padding: 15px;
    }

    .facility-icon {
        width: 42px;
        height: 42px;
        margin-top: -38px;
        margin-bottom: 13px;
    }

    .facility-content h3 {
        font-size: 14px;
    }

    .facility-content p {
        font-size: 10px;
    }


    /* ACHIEVEMENTS */

    .achievement-grid {
        grid-template-columns: 1fr;
        gap: 13px;
        margin-top: 35px;
    }


    /* EVENTS */

    .events-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 35px;
    }


    /* GALLERY */

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-top: 35px;
    }

    .gallery-item {
        height: 170px;
    }


    /* CTA */

    .admission-cta {
        min-height: 480px;
    }

    .cta-content h2 {
        font-size: 35px;
    }

    .cta-buttons {
        flex-direction: column;
        max-width: 280px;
    }


    /* PORTAL */

    .portal-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .portal-features {
        grid-template-columns: 1fr 1fr;
    }

    .phone-mockup {
        width: 270px;
    }


    /* CONTACT */

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 22px;
    }


    /* FOOTER */

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px 20px;
        padding: 50px 0 35px;
    }

    .footer-logo {
        width: 220px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 15px 0;
    }


    /* FLOATING BUTTON */

    .whatsapp-btn {
        width: 57px;
        height: 57px;
        right: 18px;
        bottom: 18px;
        font-size: 28px;
    }

    .back-to-top {
        right: 20px;
        bottom: 85px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

    .school-header-image {
        min-height: 90px;
    }

    .hero-slider {
        height: 590px;
    }

    .hero-content {
        padding: 15px;
    }

    .hero-content h1 {
        font-size: 35px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        max-width: 260px;
    }

    .btn {
        width: 100%;
    }

    .leadership-grid {
        grid-template-columns: 1fr 1fr;
    }

    .academic-grid {
        grid-template-columns: 1fr 1fr;
    }

    .facilities-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-item {
        height: 145px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

}


/* =========================================
   LEADERSHIP MESSAGE SECTION
========================================= */

.leadership-section {
    width: 100%;
    padding: 80px 20px;
    background: #f6f8f7;
    overflow: hidden;
}

.leadership-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}


/* =========================================
   HEADING
========================================= */

.leadership-heading {
    text-align: center;
    margin-bottom: 45px;
}

.section-label {
    display: inline-block;
    padding: 7px 18px;
    border-radius: 30px;
    background: #e8f6ed;
    color: #087f3f;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.leadership-heading h2 {
    margin: 0 0 12px;
    font-size: 36px;
    line-height: 1.2;
    color: #087a3d;
    font-weight: 800;
}

.leadership-heading p {
    max-width: 650px;
    margin: 0 auto;
    color: #666;
    font-size: 16px;
    line-height: 1.7;
}


/* =========================================
   SLIDER
========================================= */

.leadership-slider {
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}


/* Track */

.leadership-track {
    display: flex;
    width: 100%;
    transition: transform 0.7s cubic-bezier(.77, 0, .18, 1);
    will-change: transform;
}


/* Each Slide */

.leadership-slide {
    flex: 0 0 100%;
    width: 100%;
}


/* Image Card */

.leadership-card {
    width: 100%;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}


/* Uploaded Image */

.leadership-card img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 650px;
    object-fit: contain;
    background: #ffffff;
}


/* =========================================
   SLIDER BUTTONS
========================================= */

.leadership-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 48px;
    height: 48px;

    border: none;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.95);
    color: #087a3d;

    font-size: 24px;
    font-weight: bold;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.15);

    z-index: 10;

    transition: all 0.25s ease;
}

.leadership-btn:hover {
    background: #087a3d;
    color: #ffffff;
    transform: translateY(-50%) scale(1.08);
}

.leadership-prev {
    left: 15px;
}

.leadership-next {
    right: 15px;
}


/* =========================================
   DOTS
========================================= */

.leadership-dots {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    margin-top: 25px;
}

.leadership-dot {
    width: 10px;
    height: 10px;

    padding: 0;
    border: none;

    border-radius: 50%;

    background: #c7cfca;

    cursor: pointer;

    transition: all 0.3s ease;
}

.leadership-dot.active {
    width: 28px;
    border-radius: 20px;
    background: #087a3d;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .leadership-section {
        padding: 55px 12px;
    }

    .leadership-heading {
        margin-bottom: 28px;
    }

    .section-label {
        font-size: 11px;
        padding: 6px 14px;
    }

    .leadership-heading h2 {
        font-size: 27px;
    }

    .leadership-heading p {
        font-size: 14px;
        line-height: 1.6;
        padding: 0 8px;
    }

    .leadership-slider {
        border-radius: 14px;
    }

    .leadership-card {
        border-radius: 14px;
    }

    .leadership-card img {
        width: 100%;
        height: auto;
        max-height: none;
    }

    .leadership-btn {
        width: 38px;
        height: 38px;
        font-size: 19px;
    }

    .leadership-prev {
        left: 8px;
    }

    .leadership-next {
        right: 8px;
    }

    .leadership-dots {
        margin-top: 18px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .leadership-section {
        padding: 45px 8px;
    }

    .leadership-heading h2 {
        font-size: 24px;
    }

    .leadership-heading p {
        font-size: 13px;
    }

    .leadership-btn {
        width: 34px;
        height: 34px;
        font-size: 17px;
    }

    .leadership-prev {
        left: 5px;
    }

    .leadership-next {
        right: 5px;
    }

    .leadership-dot {
        width: 8px;
        height: 8px;
    }

    .leadership-dot.active {
        width: 24px;
    }
}

