/* =========================================================
   DIVINE INTERNATIONAL SCHOOLS ABA
   COMPLETE PREMIUM SCHOOL WEBSITE STYLESHEET
========================================================= */


/* =========================================================
   1. RESET
========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    background: #f8f7f3;
    color: #12213d;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

button {
    cursor: pointer;
}

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


/* =========================================================
   2. DESIGN SYSTEM
========================================================= */

:root {

    --navy: #061735;
    --navy-2: #0b234a;
    --navy-3: #102f60;

    --gold: #c6a15b;
    --gold-light: #dfc98e;

    --cream: #f8f7f3;
    --cream-2: #f0eee7;

    --white: #ffffff;

    --text: #12213d;
    --muted: #6d788b;

    --border: #e1e4e9;

    --container: 1200px;

    --shadow-sm:
        0 10px 30px rgba(6, 23, 53, 0.06);

    --shadow-md:
        0 20px 50px rgba(6, 23, 53, 0.12);

    --shadow-lg:
        0 30px 80px rgba(6, 23, 53, 0.2);

}


/* =========================================================
   3. GLOBAL UTILITIES
========================================================= */

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
}
.section {
    padding: 125px 0;
}

.section-tag {
    margin-bottom: 24px;

    color: var(--gold);

    font-size: 0.7rem;
    font-weight: 700;

    letter-spacing: 0.2em;
    text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
    font-family: "Playfair Display", serif;
    line-height: 1.1;
}

h1 {
    font-size: clamp(3.5rem, 7vw, 7rem);
}

h2 {
    font-size: clamp(2.8rem, 5vw, 5rem);
}

h3 {
    font-size: 1.8rem;
}

p {
    color: var(--muted);
}

::selection {
    background: var(--gold);
    color: var(--navy);
}


/* =========================================================
   4. ANNOUNCEMENT BAR
========================================================= */

.announcement {
    position: relative;
    z-index: 1001;

    background: var(--gold);

    color: var(--navy);

    font-size: 0.75rem;
    font-weight: 600;
}

.announcement-inner {
    min-height: 38px;

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

    gap: 20px;
}

.announcement p {
    color: var(--navy);
}

.announcement a {
    font-weight: 700;

    border-bottom: 1px solid rgba(6, 23, 53, 0.4);

    transition: 0.3s ease;
}

.announcement a:hover {
    border-color: transparent;
}


/* =========================================================
   5. HEADER
========================================================= */

.header {
    position: absolute;

    top: 38px;
    left: 0;

    width: 100%;

    z-index: 1000;

    transition:
        background 0.4s ease,
        box-shadow 0.4s ease,
        top 0.4s ease;
}

.header.scrolled {
    position: fixed;

    top: 0;

    background: rgba(6, 23, 53, 0.96);

    backdrop-filter: blur(15px);

    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.15);
}

.nav-container {
    min-height: 92px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* LOGO */

.logo {
    display: flex;
    align-items: center;

    gap: 13px;

    color: white;
}

.logo-symbol {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    border: 1px solid var(--gold);

    color: var(--gold);

    font-size: 0.75rem;
    font-weight: 700;

    letter-spacing: 0.05em;
}

.logo-name {
    display: flex;
    flex-direction: column;
}

.logo-name strong {
    font-size: 0.9rem;

    letter-spacing: 0.15em;
    color : black;
}

.logo-name span {
    margin-top: 2px;

    color: rgba(255, 255, 255, 0.6);

    font-size: 0.55rem;

    letter-spacing: 0.13em;
    color : var(--gold);
}


/* NAVIGATION */

.navbar {
    display: flex;
    align-items: center;

    gap: 28px;

    
}

.navbar > a:not(.nav-cta) {
    position: relative;

    color: rgba(255, 255, 255, 0.75);

    font-size: 0.8rem;
    font-weight: 500;

    transition: 0.3s ease;
    color : var(--navy);
}

.navbar > a:not(.nav-cta)::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 1px;

    background: var(--gold);

    transition: 0.3s ease;
}

.navbar > a:not(.nav-cta):hover {
    color: white;
}

.navbar > a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    padding: 13px 20px;

    border: 1px solid var(--gold);

    color: var(--gold);

    font-size: 0.75rem;
    font-weight: 700;

    transition: 0.3s ease;
}

.nav-cta:hover {
    background: var(--gold);

    color: var(--navy);
}

/* LOGIN BUTTON */
.nav-login {
    color: white;

    font-size: 0.8rem;
    font-weight: 600;

    transition: 0.3s ease;
}

.nav-login:hover {
    color: var(--gold);
}

/* MOBILE MENU */

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 5px;

    background: transparent;

    border: 1px solid rgba(255, 255, 255, 0.3);
    background: var(--gold);
}

.menu-toggle span {
    width: 20px;
    height: 2px;

    background: white;

    transition: 0.3s ease;
}


/* =========================================================
   6. HERO
========================================================= */

.hero {
    position: relative;

    min-height: 900px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: var(--navy);

    color: white;
}

.hero-background {
    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            90deg,
            rgba(6, 23, 53, 0.98) 0%,
            rgba(6, 23, 53, 0.9) 35%,
            rgba(6, 23, 53, 0.52) 75%,
            rgba(6, 23, 53, 0.75) 100%
        );

        /* url("https://images.unsplash.com/photo-1509062522246-3755977927d7?auto=format&fit=crop&w=2200&q=90"); */

    background-position: center;
    background-size: cover;

    transform: scale(1.03);

    animation: heroZoom 12s ease-in-out infinite alternate;
}

@keyframes heroZoom {

    from {
        transform: scale(1.03);
    }

    to {
        transform: scale(1.08);
    }

}

.hero-layout {
    position: relative;
    z-index: 2;

    width: 100%;

    display: grid;

    grid-template-columns: 1.1fr 0.9fr;

    align-items: center;

    gap: 80px;
}

.hero-content {
    padding-top: 100px;
}

.hero-label {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 30px;

    color: var(--gold);

    font-size: 0.7rem;
    font-weight: 700;

    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-label span {
    width: 35px;
    height: 1px;

    background: var(--gold);
}

.hero h1 {
    max-width: 800px;

    margin-bottom: 30px;

    letter-spacing: -0.04em;
     color: var(--gold);
}

.hero h1 span {
    display: block;

    color: var(--gold);
}

.hero-content > p {
    max-width: 580px;

    margin-bottom: 40px;

    color: rgba(255, 255, 255, 0.7);

    font-size: 1.1rem;
}


/* HERO BUTTONS */

.hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 15px;

    margin-bottom: 50px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 25px;

    min-height: 54px;

    padding: 0 25px;

    border: none;

    font-size: 0.8rem;
    font-weight: 700;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}

.btn:hover {
    transform: translateY(-4px);
}

.btn span {
    font-size: 1.2rem;
}

.btn-gold {
    background: var(--gold);

    color: var(--navy);
}

.btn-gold:hover {
    background: var(--gold-light);
}

.btn-glass {
    border: 1px solid rgba(255, 255, 255, 0.35);

    color: white;

    background: rgba(255, 255, 255, 0.05);
}

.btn-glass:hover {
    background: white;

    color: var(--navy);
}


/* TRUST */

.hero-trust {
    display: flex;
    align-items: center;

    gap: 18px;
}

.trust-avatars {
    display: flex;
}

.trust-avatars span {
    width: 32px;
    height: 32px;

    display: grid;
    place-items: center;

    margin-left: -7px;

    border: 2px solid var(--navy);
    border-radius: 50%;

    background: var(--gold);

    color: var(--navy);

    font-size: 0.75rem;
}

.trust-avatars span:first-child {
    margin-left: 0;
}

.hero-trust p {
    color: rgba(255, 255, 255, 0.6);

    font-size: 0.75rem;
}

.hero-trust strong {
    color: white;
}


/* HERO SIDE */

.hero-side {
    position: relative;

    min-height: 600px;
}

.hero-badge {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 290px;
    height: 290px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(198, 161, 91, 0.55);
    border-radius: 50%;

    transform:
        translate(-50%, -50%)
        rotate(-10deg);

    background:
        radial-gradient(
            circle,
            rgba(198, 161, 91, 0.2),
            transparent 65%
        );

    animation: badgeFloat 5s ease-in-out infinite;
}

@keyframes badgeFloat {

    0%,
    100% {
        transform:
            translate(-50%, -50%)
            rotate(-10deg);
    }

    50% {
        transform:
            translate(-50%, calc(-50% - 15px))
            rotate(-5deg);
    }

}

.badge-inner {
    width: 205px;
    height: 205px;

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

    border: 1px solid var(--gold);
    border-radius: 50%;

    text-align: center;

    background: rgba(6, 23, 53, 0.75);

    transform: rotate(10deg);
}

.badge-inner strong {
    color: var(--gold);

    font-family: "Playfair Display", serif;

    font-size: 6rem;

    line-height: 0.8;
}

.badge-inner span {
    margin-top: 15px;

    color: rgba(255, 255, 255, 0.65);

    font-size: 0.65rem;
    font-weight: 700;

    letter-spacing: 0.15em;
}


/* FLOATING CARDS */

.floating-card {
    position: absolute;

    z-index: 3;

    display: flex;
    align-items: center;

    gap: 15px;

    width: 270px;

    padding: 18px;

    border: 1px solid rgba(255, 255, 255, 0.15);

    background: rgba(255, 255, 255, 0.1);

    backdrop-filter: blur(15px);

    box-shadow: var(--shadow-lg);

    animation: cardFloat 6s ease-in-out infinite;
}

.card-top {
    top: 60px;
    right: 0;
}

.card-bottom {
    bottom: 80px;
    left: 0;

    animation-delay: -3s;
}

@keyframes cardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

}

.card-icon {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    background: var(--gold);

    color: var(--navy);

    font-size: 1.2rem;
}

.floating-card strong {
    display: block;

    margin-bottom: 3px;

    color: white;

    font-size: 0.8rem;
}

.floating-card small {
    display: block;

    color: rgba(255, 255, 255, 0.6);

    font-size: 0.65rem;

    line-height: 1.4;
}


/* HERO SCROLL */

.hero-scroll {
    position: absolute;

    bottom: 30px;
    left: 5%;

    z-index: 3;

    display: flex;
    align-items: center;

    gap: 12px;

    color: rgba(255, 255, 255, 0.55);

    font-size: 0.65rem;

    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-scroll span {
    width: 40px;
    height: 1px;

    background: var(--gold);
}


/* =========================================================
   7. STATS
========================================================= */

.stats {
    position: relative;
    z-index: 5;

    margin-top: -1px;

    background: var(--gold);
}

.stats-grid {
    display: grid;

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

.stat {
    min-height: 170px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 30px;

    border-right: 1px solid rgba(6, 23, 53, 0.2);
}

.stat:first-child {
    padding-left: 0;
}

.stat:last-child {
    border-right: none;
}

.stat strong {
    margin-bottom: 8px;

    color: var(--navy);

    font-family: "Playfair Display", serif;

    font-size: 3.5rem;
    line-height: 1;
}

.stat span {
    color: rgba(6, 23, 53, 0.7);

    font-size: 0.7rem;
    font-weight: 700;

    letter-spacing: 0.1em;
    text-transform: uppercase;
}


/* =========================================================
   8. ABOUT
========================================================= */

.about {
    background: var(--white);
}

.about-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 110px;
}

.about-visual {
    position: relative;

    min-height: 620px;
}

.image-main {
    position: absolute;

    top: 0;
    left: 0;

    width: 78%;
    height: 500px;

    overflow: hidden;
}

.image-main img,
.image-small img {
    height: 100%;

    object-fit: cover;

    transition: transform 0.8s ease;
}

.image-main:hover img,
.image-small:hover img {
    transform: scale(1.06);
}

.image-small {
    position: absolute;

    right: 0;
    bottom: 0;

    width: 48%;
    height: 270px;

    overflow: hidden;

    border: 12px solid white;

    box-shadow: var(--shadow-md);
}

.experience-card {
    position: absolute;

    bottom: 70px;
    left: -35px;

    display: flex;
    align-items: center;

    gap: 15px;

    padding: 20px 25px;

    background: var(--navy);

    box-shadow: var(--shadow-md);
}

.experience-card strong {
    color: var(--gold);

    font-family: "Playfair Display", serif;

    font-size: 3rem;
}

.experience-card span {
    color: white;

    font-size: 0.7rem;
    font-weight: 600;

    line-height: 1.4;
}

.about-content h2 {
    margin-bottom: 30px;
}

.about-content h2 em {
    color: var(--gold);

    font-style: normal;
}

.about-content > p {
    max-width: 580px;

    margin-bottom: 18px;

    font-size: 1rem;
}

.about-points {
    display: flex;
    flex-direction: column;

    gap: 15px;

    margin: 30px 0;
}

.about-points div {
    display: flex;
    align-items: center;

    gap: 15px;
}

.about-points span {
    width: 25px;
    height: 25px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--gold);

    color: var(--navy);

    font-size: 0.7rem;
    font-weight: 700;
}

.about-points p {
    color: var(--text);

    font-size: 0.85rem;
    font-weight: 600;
}

.text-button {
    display: inline-flex;
    align-items: center;

    gap: 18px;

    color: var(--navy);

    font-size: 0.8rem;
    font-weight: 700;

    border-bottom: 1px solid var(--gold);

    padding-bottom: 8px;

    transition: 0.3s ease;
}

.text-button:hover {
    gap: 25px;
}


/* =========================================================
   9. ACADEMICS
========================================================= */

.academics {
    background: var(--cream);
}

.section-header {
    display: flex;
    justify-content: space-between;

    gap: 70px;

    margin-bottom: 65px;
}

.section-header h2 {
    max-width: 700px;
}

.section-header h2 span {
    color: var(--gold);
}

.section-header > p {
    align-self: flex-end;

    max-width: 400px;

    font-size: 0.95rem;
}

.academic-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.academic-card {
    position: relative;

    min-height: 500px;

    padding: 40px 35px;

    overflow: hidden;

    color: white;

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.academic-card:hover {
    transform: translateY(-10px);

    box-shadow: var(--shadow-lg);
}

.academic-card::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(0, 0, 0, 0.6)
        );
}

.nursery {
    background:
        linear-gradient(
            rgba(12, 48, 80, 0.65),
            rgba(12, 48, 80, 0.95)
        ),
        url("https://images.unsplash.com/photo-1503454537195-1dcabb73ffb9?auto=format&fit=crop&w=900&q=85")
        center / cover;
}

.primary {
    background:
        linear-gradient(
            rgba(27, 68, 76, 0.6),
            rgba(27, 68, 76, 0.95)
        ),
        url("https://images.unsplash.com/photo-1588072432836-e10032774350?auto=format&fit=crop&w=900&q=85")
        center / cover;
}

.secondary {
    background:
        linear-gradient(
            rgba(39, 42, 78, 0.65),
            rgba(39, 42, 78, 0.95)
        ),
        url("https://images.unsplash.com/photo-1529390079861-591de354faf5?auto=format&fit=crop&w=900&q=85")
        center / cover;
}

.academic-card > * {
    position: relative;
    z-index: 2;
}

.academic-number {
    position: absolute;

    top: 25px;
    right: 30px;

    color: var(--gold);

    font-size: 0.75rem;
    font-weight: 700;
}

.academic-icon {
    margin-top: 55px;
    margin-bottom: 45px;

    color: var(--gold);

    font-size: 3rem;
}

.academic-card h3 {
    margin-bottom: 18px;

    font-size: 2.2rem;
}

.academic-card p {
    min-height: 85px;

    color: rgba(255, 255, 255, 0.7);

    font-size: 0.9rem;
}

.academic-card ul {
    display: flex;
    flex-direction: column;

    gap: 8px;

    margin: 25px 0;

    list-style: none;
}

.academic-card li {
    color: rgba(255, 255, 255, 0.8);

    font-size: 0.75rem;
}

.academic-card li::before {
    content: "✓";

    margin-right: 10px;

    color: var(--gold);
}

.academic-card a {
    display: inline-block;

    margin-top: 15px;

    color: var(--gold);

    font-size: 0.75rem;
    font-weight: 700;

    border-bottom: 1px solid var(--gold);

    padding-bottom: 5px;
}


/* =========================================================
   10. WHY DIVINE
========================================================= */

.why-us {
    background: var(--white);
}

.why-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: center;
}

.why-content h2 {
    margin-bottom: 30px;
}

.why-content h2 em {
    color: var(--gold);

    font-style: normal;
}

.why-content > p {
    max-width: 550px;

    margin-bottom: 40px;
}

.feature-list {
    display: flex;
    flex-direction: column;

    gap: 25px;
}

.feature {
    display: flex;

    gap: 20px;

    padding-bottom: 25px;

    border-bottom: 1px solid var(--border);
}

.feature-icon {
    width: 45px;
    height: 45px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    background: var(--navy);

    color: var(--gold);

    font-size: 0.7rem;
    font-weight: 700;
}

.feature h3 {
    margin-bottom: 8px;

    font-family: "DM Sans", sans-serif;

    font-size: 1rem;
    font-weight: 700;
}

.feature p {
    font-size: 0.85rem;
}

.why-visual {
    position: relative;

    min-height: 600px;
}

.why-image {
    height: 540px;

    overflow: hidden;
}

.why-image img {
    height: 100%;

    object-fit: cover;
}

.quote-card {
    position: absolute;

    right: -30px;
    bottom: 0;

    width: 310px;

    padding: 30px;

    background: var(--gold);

    box-shadow: var(--shadow-md);
}

.quote-mark {
    display: block;

    color: var(--navy);

    font-family: "Playfair Display", serif;

    font-size: 4rem;

    line-height: 0.5;
}

.quote-card p {
    margin-top: 20px;

    color: var(--navy);

    font-size: 0.9rem;
    font-weight: 600;
}


/* =========================================================
   11. ACHIEVEMENT
========================================================= */

.achievement {
    position: relative;

    overflow: hidden;

    background: var(--gold);
}

.achievement::before {
    content: "2025";

    position: absolute;

    right: -50px;
    bottom: -100px;

    color: rgba(255, 255, 255, 0.12);

    font-family: "Playfair Display", serif;

    font-size: 25rem;
    line-height: 1;
}

.achievement-layout {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    align-items: center;

    gap: 100px;
}

.achievement-trophy {
    position: relative;

    min-height: 430px;

    display: grid;
    place-items: center;

    background: var(--navy);
}

.trophy {
    position: relative;
    z-index: 2;

    width: 180px;
    height: 180px;

    display: grid;
    place-items: center;

    border: 1px solid var(--gold);

    border-radius: 50%;

    font-size: 5rem;
}

.trophy-ring {
    position: absolute;

    width: 260px;
    height: 260px;

    border: 1px dashed rgba(198, 161, 91, 0.5);

    border-radius: 50%;

    animation: spin 20s linear infinite;
}

@keyframes spin {

    to {
        transform: rotate(360deg);
    }

}

.achievement-text h2 {
    margin-bottom: 30px;

    color: var(--navy);
}

.achievement-text h2 span {
    color: white;
}

.achievement-text > p {
    max-width: 600px;

    color: rgba(6, 23, 53, 0.75);

    font-size: 1rem;
}

.achievement-meta {
    display: flex;

    gap: 60px;

    margin-top: 40px;
}

.achievement-meta div {
    display: flex;
    flex-direction: column;
}

.achievement-meta strong {
    color: var(--navy);

    font-family: "Playfair Display", serif;

    font-size: 2.8rem;
}

.achievement-meta span {
    color: rgba(6, 23, 53, 0.65);

    font-size: 0.7rem;
    font-weight: 700;

    text-transform: uppercase;
}


/* =========================================================
   12. SCHOOL LIFE
========================================================= */

.school-life {
    background: var(--navy);

    color: white;
}

.school-life .section-header > p {
    color: rgba(255, 255, 255, 0.6);
}

.school-life h2 {
    color: white;
}

.school-life h2 span {
    color: var(--gold);
}

.life-grid {
    display: grid;

    grid-template-columns: 1.4fr 1fr 1fr;

    grid-template-rows: 430px;

    gap: 15px;
}

.life-card {
    position: relative;

    overflow: hidden;
}

.life-card::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            transparent 35%,
            rgba(0, 0, 0, 0.75)
        );
}

.life-card img {
    height: 100%;

    object-fit: cover;

    transition: transform 0.8s ease;
}

.life-card:hover img {
    transform: scale(1.08);
}

.life-overlay {
    position: absolute;

    z-index: 2;

    right: 25px;
    bottom: 25px;
    left: 25px;
}

.life-overlay span {
    color: var(--gold);

    font-size: 0.65rem;
    font-weight: 700;

    letter-spacing: 0.18em;
}

.life-overlay h3 {
    margin-top: 8px;

    color: white;

    font-size: 1.5rem;
}


/* =========================================================
   13. ADMISSIONS
========================================================= */

.admissions {
    background: var(--cream);
}

.admissions-heading {
    max-width: 700px;

    margin-bottom: 65px;
}

.admissions-heading h2 {
    margin-bottom: 25px;
}

.admissions-heading h2 span {
    color: var(--gold);
}

.admissions-heading p {
    max-width: 550px;
}

.admission-steps {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    margin-bottom: 45px;

    border-top: 1px solid var(--border);
}

.step {
    min-height: 240px;

    padding: 35px;

    border-right: 1px solid var(--border);
}

.step:first-child {
    padding-left: 0;
}

.step:last-child {
    border-right: none;
}

.step > span {
    display: block;

    margin-bottom: 45px;

    color: var(--gold);

    font-size: 0.75rem;
    font-weight: 700;
}

.step h3 {
    margin-bottom: 12px;

    font-size: 1.5rem;
}

.step p {
    font-size: 0.85rem;
}

.btn-navy {
    background: var(--navy);

    color: white;
}

.btn-navy:hover {
    background: var(--navy-3);
}


/* =========================================================
   14. TESTIMONIAL
========================================================= */

.testimonial {
    background: var(--navy);

    color: white;
}

.testimonial-container {
    max-width: 950px;
}

.testimonial-content {
    position: relative;

    padding-left: 100px;
}

.quote-mark {
    position: absolute;

    top: -35px;
    left: 0;

    color: var(--gold);

    font-family: "Playfair Display", serif;

    font-size: 8rem;

    line-height: 1;
}

.testimonial blockquote {
    max-width: 850px;

    color: white;

    font-family: "Playfair Display", serif;

    font-size: clamp(2rem, 4vw, 4rem);

    line-height: 1.2;
}

.testimonial-controls {
    display: flex;
    align-items: center;

    gap: 20px;

    margin-top: 50px;
}

.testimonial-controls button {
    width: 45px;
    height: 45px;

    border: 1px solid rgba(255, 255, 255, 0.3);

    background: transparent;

    color: white;

    transition: 0.3s ease;
}

.testimonial-controls button:hover {
    background: var(--gold);

    color: var(--navy);

    border-color: var(--gold);
}

.testimonial-controls span {
    color: rgba(255, 255, 255, 0.5);

    font-size: 0.7rem;
}


/* =========================================================
   15. FAQ
========================================================= */

.faq {
    background: white;
}

.faq-grid {
    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 100px;
}

.faq-grid h2 span {
    color: var(--gold);
}

.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: 25px 0;

    border: none;

    background: transparent;

    color: var(--text);

    text-align: left;

    font-size: 0.9rem;
    font-weight: 700;
}

.faq-question span {
    color: var(--gold);

    font-size: 1.5rem;

    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;

    overflow: hidden;

    transition:
        max-height 0.4s ease,
        padding 0.4s ease;
}

.faq-answer p {
    padding-bottom: 25px;

    font-size: 0.85rem;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}


/* =========================================================
   16. CONTACT
========================================================= */

.contact {
    background: var(--cream);
}

.contact-layout {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 100px;

    align-items: start;
}

.contact-intro h2 {
    margin-bottom: 25px;
}

.contact-intro h2 span {
    color: var(--gold);
}

.contact-intro > p {
    max-width: 500px;

    margin-bottom: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;

    gap: 22px;
}

.contact-info > div {
    display: flex;

    gap: 18px;

    padding-bottom: 20px;

    border-bottom: 1px solid var(--border);
}

.contact-info span {
    color: var(--gold);

    font-size: 1.2rem;
}

.contact-info p {
    color: var(--text);

    font-size: 0.85rem;
}


/* FORM */

.contact-form {
    padding: 45px;

    background: white;

    box-shadow: var(--shadow-sm);
}

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;

    gap: 8px;

    margin-bottom: 22px;
}

.form-group label {
    color: var(--text);

    font-size: 0.7rem;
    font-weight: 700;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    width: 100%;

    padding: 15px;

    border: 1px solid var(--border);

    outline: none;

    background: var(--cream);

    color: var(--text);

    font-size: 0.85rem;

    transition: 0.3s ease;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);

    background: white;

    box-shadow:
        0 0 0 3px rgba(198, 161, 91, 0.12);
}

.contact-form .btn {
    width: 100%;
}

.form-message {
    min-height: 20px;

    margin-top: 15px;

    color: #218653;

    font-size: 0.8rem;
}


/* =========================================================
   17. FOOTER
========================================================= */

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

.footer {
    background: var(--navy);
    color: white;

    /* Extra breathing space at the sides */
    padding-left: 0;
    padding-right: 0;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 100px;

    padding-top: 100px;
    padding-bottom: 100px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding-top: 30px;
    padding-bottom: 30px;

    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand > p {
    max-width: 250px;

    margin-top: 20px;

    color: rgba(255, 255, 255, 0.55);

    font-size: 0.85rem;
}

.footer-links {
    display: flex;

    gap: 100px;
}

.footer-links > div {
    display: flex;
    flex-direction: column;

    gap: 12px;
}

.footer-links h4 {
    margin-bottom: 10px;

    color: var(--gold);

    font-family: "DM Sans", sans-serif;

    font-size: 0.75rem;

    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);

    font-size: 0.8rem;

    transition: 0.3s ease;
}

.footer-links a:hover {
    color: white;

    transform: translateX(5px);
}



/* =========================================================
   18. WHATSAPP BUTTON
========================================================= */

.whatsapp {
    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 999;

    display: flex;
    align-items: center;

    gap: 10px;

    padding: 13px 17px;

    border-radius: 50px;

    background: #218c55;

    color: white;

    box-shadow: var(--shadow-md);

    font-size: 0.75rem;
    font-weight: 700;

    transition: 0.3s ease;
}

.whatsapp:hover {
    transform: translateY(-5px);

    background: #176c40;
}

.whatsapp span {
    display: none;
}


/* =========================================================
   19. SCROLL REVEAL
========================================================= */

.reveal {
    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   20. TABLET
========================================================= */

@media (max-width: 1000px) {

    .navbar {
        gap: 17px;
    }

    .navbar > a:not(.nav-cta) {
        font-size: 0.72rem;
    }

    .hero-layout {
        grid-template-columns: 1fr 0.7fr;

        gap: 30px;
    }

    .hero h1 {
        font-size: 5rem;
    }

    .about-grid,
    .why-grid,
    .achievement-layout,
    .contact-layout {
        gap: 60px;
    }

    .academic-grid {
        gap: 12px;
    }

    .academic-card {
        padding: 30px 25px;
    }

    .quote-card {
        right: -10px;
    }

}


/* =========================================================
   21. MOBILE NAVIGATION
========================================================= */

@media (max-width: 800px) {

    .announcement-inner {
        justify-content: center;

        text-align: center;
    }

    .announcement-inner a {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .navbar {
        position: absolute;

        top: 100%;

        left: 0;

        width: 100%;

        display: none;
        flex-direction: column;
        align-items: flex-start;

        gap: 0;

        padding: 20px 5% 30px;

        background: var(--navy);

        box-shadow: var(--shadow-md);
    }

    .navbar.active {
        display: flex;
    }

    .navbar > a {
        width: 100%;

        padding: 15px 0;

        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        
    }

    .navbar > a:not(.nav-cta)::after {
        display: none;
    }
    
    .navbar > a:not(.nav-cta) {
        color: white;
    }

    .nav-cta {
        margin-top: 15px;

        text-align: center;
    }

    .hero {
        min-height: 850px;
    }

    .hero-layout {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding-top: 120px;
    }

    .hero h1 {
        font-size: clamp(3.2rem, 12vw, 5rem);
    }

    .hero-side {
        display: none;
    }

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

    .stat {
        min-height: 130px;

        padding: 25px;

        border-bottom: 1px solid rgba(6, 23, 53, 0.2);
    }

    .stat:nth-child(2) {
        border-right: none;
    }

    .stat:nth-child(3) {
        padding-left: 0;
    }

    .section-header {
        flex-direction: column;

        gap: 25px;
    }

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

    .academic-card {
        min-height: 420px;
    }

    .about-grid,
    .why-grid,
    .achievement-layout,
    .contact-layout,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .about-visual {
        min-height: 500px;
    }

    .image-main {
        height: 400px;
    }

    .image-small {
        height: 220px;
    }

    .why-visual {
        min-height: 500px;
    }

    .why-image {
        height: 450px;
    }

    .achievement-trophy {
        min-height: 350px;
    }

    .life-grid {
        grid-template-columns: 1fr 1fr;

        grid-template-rows: 350px 300px;
    }

    .life-large {
        grid-column: 1 / -1;
    }

    .admission-steps {
        grid-template-columns: 1fr;
    }

    .step,
    .step:first-child {
        min-height: auto;

        padding: 30px 0;

        border-right: none;

        border-bottom: 1px solid var(--border);
    }

    .step:last-child {
        border-bottom: none;
    }

    .testimonial-content {
        padding-left: 60px;
    }

    .testimonial blockquote {
        font-size: 2.5rem;
    }

    .contact-form {
        padding: 30px;
    }

}


/* =========================================================
   22. SMALL MOBILE
========================================================= */

@media (max-width: 550px) {

    .section {
        padding: 85px 0;
    }

    .announcement {
        font-size: 0.65rem;
    }

    .nav-container {
        min-height: 78px;
    }

    .header {
        top: 38px;
    }

    .header.scrolled {
        top: 0;
    }

    .hero {
        min-height: 780px;
    }

    .hero-content {
        padding-top: 100px;
    }

    .hero h1 {
        font-size: 3.3rem;
    }

    .hero-content > p {
        font-size: 0.95rem;
    }

    .hero-actions {
        flex-direction: column;

        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

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

    .stat strong {
        font-size: 2.5rem;
    }

    .stat span {
        font-size: 0.6rem;
    }

    .about-visual {
        min-height: 400px;
    }

    .image-main {
        width: 85%;
        height: 320px;
    }

    .image-small {
        width: 52%;
        height: 180px;

        border-width: 7px;
    }

    .experience-card {
        bottom: 35px;
        left: -10px;

        padding: 14px 18px;
    }

    .experience-card strong {
        font-size: 2rem;
    }

    .experience-card span {
        font-size: 0.6rem;
    }

    .academic-card {
        min-height: 440px;
    }

    .why-visual {
        min-height: 400px;
    }

    .why-image {
        height: 350px;
    }

    .quote-card {
        right: 0;

        width: 260px;

        padding: 22px;
    }

    .achievement-meta {
        gap: 30px;
    }

    .achievement-meta strong {
        font-size: 2.2rem;
    }

    .life-grid {
        grid-template-columns: 1fr;

        grid-template-rows:
            350px
            280px
            280px;
    }

    .life-large {
        grid-column: auto;
    }

    .testimonial-content {
        padding-left: 0;
    }

    .quote-mark {
        position: relative;

        top: auto;
        left: auto;

        margin-bottom: 15px;

        font-size: 5rem;
    }

    .testimonial blockquote {
        font-size: 2rem;
    }

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

    .footer-top {
        flex-direction: column;

        padding: 55px 0;
    }

    .footer-links {
        gap: 50px;
    }

    .footer-bottom {
        flex-direction: column;

        gap: 10px;
    }

    .whatsapp {
        right: 18px;
        bottom: 18px;

        width: 50px;
        height: 50px;

        justify-content: center;

        padding: 0;

        border-radius: 50%;
    }

}