/* =======================================================
   HASIBA ACADEMY
   Official Website
======================================================= */

:root {
    --primary: #0b1f3a;
    --primary-dark: #08182d;
    --primary-light: #163a66;
    --secondary: #d4af37;

    --white: #ffffff;
    --light: #f5f7fa;
    --text: #2c3e50;
    --muted: #667085;

    --shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 45px rgba(0, 0, 0, 0.14);

    --radius: 20px;
    --container: 1180px;
    --transition: 0.3s ease;
}


/* =======================================================
   RESET
======================================================= */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    min-width: 320px;

    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.7;

    color: var(--text);
    background: var(--white);

    overflow-x: hidden;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
}

ul {
    padding: 0;
    margin: 0;
}

.container {
    width: min(92%, var(--container));
    margin-inline: auto;
}

section {
    padding: 100px 0;
}


/* =======================================================
   COMMON
======================================================= */

.section-title {
    max-width: 800px;
    margin: 0 auto 55px;

    text-align: center;
}

.section-title p,
.eyebrow {
    display: inline-block;

    margin-bottom: 12px;

    color: var(--secondary);

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.section-title h2 {
    color: var(--primary);

    font-family: "Poppins", sans-serif;
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.25;
}

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

    min-height: 52px;
    padding: 13px 28px;

    border-radius: 999px;

    font-weight: 700;

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        background var(--transition),
        color var(--transition);
}

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

.btn-primary {
    background: var(--secondary);
    color: var(--white);

    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover {
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
}

.btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.9);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}


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

header {
    position: fixed;
    inset: 0 0 auto;

    z-index: 1000;

    padding: 16px 0;

    transition:
        background var(--transition),
        box-shadow var(--transition),
        padding var(--transition);
}

header.scrolled {
    padding: 10px 0;

    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);

    backdrop-filter: blur(10px);
}

nav {
    position: relative;

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

    min-height: 56px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    min-width: 0;
}

.logo img {
    width: 52px;
    height: 52px;

    flex: 0 0 52px;

    object-fit: contain;
}

.logo span {
    color: var(--white);

    font-family: "Poppins", sans-serif;
    font-size: 21px;
    font-weight: 700;

    white-space: nowrap;

    transition: color var(--transition);
}

header.scrolled .logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;

    list-style: none;
}

.nav-links a {
    color: var(--white);

    font-size: 15px;
    font-weight: 600;

    transition: color var(--transition);
}

header.scrolled .nav-links a {
    color: var(--primary);
}

.nav-links a:hover {
    color: var(--secondary);
}

.menu-btn {
    display: none;

    width: 44px;
    height: 44px;

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

    border-radius: 10px;

    background: transparent;

    color: var(--white);
    font-size: 25px;

    cursor: pointer;

    z-index: 1002;
}

header.scrolled .menu-btn {
    color: var(--primary);
}


/* =======================================================
   LOADER
======================================================= */

.loader {
    position: fixed;
    inset: 0;

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

    z-index: 99999;

    background: var(--white);

    transition: opacity 0.5s ease;
}

.spinner {
    width: 58px;
    height: 58px;

    border: 6px solid #eeeeee;
    border-top-color: var(--secondary);

    border-radius: 50%;

    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


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

.hero {
    position: relative;

    min-height: 100svh;

    display: flex;
    align-items: center;

    padding: 130px 0 90px;

    background:
        linear-gradient(
            135deg,
            var(--primary-dark),
            var(--primary),
            var(--primary-light)
        );

    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(212, 175, 55, 0.12),
            transparent 35%
        );
}

.hero-content {
    position: relative;
    z-index: 1;

    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;

    gap: 60px;
}

.hero-left {
    min-width: 0;
}

.subtitle {
    margin-bottom: 12px;

    color: var(--secondary);

    font-weight: 700;
    letter-spacing: 4px;
}

.hero-left h1 {
    margin-bottom: 20px;

    color: var(--white);

    font-family: "Poppins", sans-serif;
    font-size: clamp(48px, 7vw, 74px);
    font-weight: 800;
    line-height: 1;
}

.hero-left h1 span {
    display: block;
    color: var(--secondary);
}

.hero-left h2 {
    max-width: 650px;
    margin-bottom: 22px;

    color: var(--white);

    font-size: clamp(22px, 3vw, 30px);
    font-weight: 600;
    line-height: 1.4;
}

.hero-left .ust{
    font-size: clamp (11px, 3vw, 28px);
    white-space: nowrap;
    font-style: italic;
    max-widht: 200px;
    margin-bottom: 30px;
    color: #f5f7fa;
    
}


.hero-description {
    max-width: 620px;
    margin-bottom: 32px;

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

    font-size: 17px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-right {
    display: flex;
    justify-content: center;

    min-width: 0;
}

.hero-right img {
    width: min(100%, 540px);

    object-fit: contain;

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

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

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


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

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

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;

    gap: 65px;
}

.about-image {
    overflow: hidden;

    border-radius: 24px;

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

.about-image img {
    width: 100%;
    height: auto;

    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.04);
}

.about-content {
    min-width: 0;
}

.about-content h3 {
    margin-bottom: 20px;

    color: var(--primary);

    font-family: "Poppins", sans-serif;
    font-size: clamp(30px, 4vw, 38px);
    line-height: 1.25;
}

.about-content p {
    margin-bottom: 18px;

    color: #59636f;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 14px;

    margin-top: 30px;
}

.about-stats div {
    padding: 22px 12px;

    border-radius: 16px;

    background: var(--white);

    text-align: center;

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

.about-stats strong,
.about-stats span {
    display: block;
}

.about-stats strong {
    margin-bottom: 5px;

    color: var(--secondary);

    font-family: "Poppins", sans-serif;
    font-size: 30px;
}

.about-stats span {
    color: #59636f;

    font-size: 13px;
    font-weight: 600;
}


/* =======================================================
   VISION
======================================================= */

.vision {
    background: var(--light);
}

.vision-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);

    gap: 28px;
}

.vision-card,
.mission-card {
    padding: 40px;

    border-radius: 22px;

    background: var(--white);

    box-shadow: var(--shadow);

    transition: transform var(--transition), box-shadow var(--transition);
}

.vision-card:hover,
.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.icon {
    width: 64px;
    height: 64px;

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

    margin-bottom: 22px;

    border-radius: 50%;

    background: var(--secondary);
    color: var(--white);

    font-size: 25px;
}

.vision-card h3,
.mission-card h3 {
    margin-bottom: 15px;

    color: var(--primary);

    font-family: "Poppins", sans-serif;
    font-size: 28px;
}

.vision-card p,
.mission-card li {
    color: #59636f;
}

.mission-card ul {
    padding-left: 20px;

    list-style: disc;
}

.mission-card li {
    margin-bottom: 12px;
}


/* =======================================================
   CARD GRIDS
======================================================= */

.card-grid {
    display: grid;
    gap: 28px;
}

.values-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.program-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.why-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

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


/* =======================================================
   VALUES
======================================================= */

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

.info-card {
    padding: 34px 24px;

    border-radius: 20px;

    background: var(--white);

    text-align: center;

    box-shadow: var(--shadow);

    transition:
        transform var(--transition),
        background var(--transition),
        color var(--transition);
}

.info-card:hover {
    transform: translateY(-7px);

    background: var(--primary);
}

.info-card i {
    margin-bottom: 18px;

    color: var(--secondary);

    font-size: 42px;
}

.info-card h3 {
    margin-bottom: 12px;

    color: var(--primary);

    font-family: "Poppins", sans-serif;
    font-size: 21px;
}

.info-card p {
    color: #667085;
}

.info-card:hover h3,
.info-card:hover p {
    color: var(--white);
}


/* =======================================================
   PROGRAM
======================================================= */

.program {
    background: var(--light);
}

.program-card {
    padding: 40px 28px;

    border-radius: 22px;

    background: var(--white);

    text-align: center;

    box-shadow: var(--shadow);

    transition:
        transform var(--transition),
        background var(--transition);
}

.program-card:hover {
    transform: translateY(-8px);
    background: var(--primary);
}

.program-card i {
    margin-bottom: 20px;

    color: var(--secondary);

    font-size: 48px;
}

.program-card h3 {
    margin-bottom: 14px;

    color: var(--primary);

    font-family: "Poppins", sans-serif;
    font-size: 25px;
    line-height: 1.3;
}

.program-card p {
    color: #667085;
}

.program-card:hover h3,
.program-card:hover p {
    color: var(--white);
}


/* =======================================================
   WHY
======================================================= */

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

.why-card {
    padding: 36px 28px;

    border-radius: 20px;

    background: var(--white);

    text-align: center;

    box-shadow: var(--shadow);

    transition:
        transform var(--transition),
        background var(--transition);
}

.why-card:hover {
    transform: translateY(-8px);
    background: var(--primary);
}

.why-card i {
    margin-bottom: 18px;

    color: var(--secondary);

    font-size: 44px;
}

.why-card h3 {
    margin-bottom: 12px;

    color: var(--primary);

    font-family: "Poppins", sans-serif;
    font-size: 22px;
    line-height: 1.35;
}

.why-card p {
    color: #667085;
}

.why-card:hover h3,
.why-card:hover p {
    color: var(--white);
}


/* =======================================================
   STATISTICS
======================================================= */

.statistics {
    padding: 75px 0;

    background:
        linear-gradient(
            135deg,
            var(--primary-dark),
            var(--primary)
        );
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 25px;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-item strong,
.stat-item span {
    display: block;
}

.stat-item strong {
    margin-bottom: 5px;

    color: var(--secondary);

    font-family: "Poppins", sans-serif;
    font-size: clamp(42px, 5vw, 62px);
    line-height: 1;
}

.stat-item span {
    font-size: 15px;
}


/* =======================================================
   TIMELINE
======================================================= */

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

.timeline-wrapper {
    position: relative;

    max-width: 900px;
    margin: auto;

    padding-left: 38px;

    border-left: 3px solid var(--secondary);
}

.timeline-item {
    position: relative;

    margin-bottom: 45px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item::before {
    content: "";

    position: absolute;
    left: -49px;
    top: 4px;

    width: 18px;
    height: 18px;

    border: 4px solid var(--white);
    border-radius: 50%;

    background: var(--secondary);

    box-shadow: 0 0 0 2px var(--secondary);
}

.timeline-item > span {
    display: inline-block;

    margin-bottom: 10px;
    padding: 5px 15px;

    border-radius: 999px;

    background: var(--secondary);
    color: var(--white);

    font-size: 13px;
    font-weight: 700;
}

.timeline-item h3 {
    margin-bottom: 8px;

    color: var(--primary);

    font-family: "Poppins", sans-serif;
    font-size: 25px;
}

.timeline-item p {
    color: #667085;
}


/* =======================================================
   ORGANIZATION
======================================================= */

.organization {
    background: var(--light);
}

.org-tree {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.org-box {
    width: min(100%, 270px);

    padding: 16px 24px;

    border-radius: 14px;

    background: var(--white);

    text-align: center;
    font-weight: 700;

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

.org-box-large {
    width: min(100%, 310px);
}

.org-line {
    width: 3px;
    height: 34px;

    background: var(--secondary);
}

.org-branch {
    display: flex;
    justify-content: center;
    gap: 30px;

    margin: 20px 0;
}


/* =======================================================
   QUALITY
======================================================= */

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

.quality-card {
    padding: 34px 24px;

    border-radius: 20px;

    background: var(--white);

    text-align: center;

    box-shadow: var(--shadow);

    transition:
        transform var(--transition),
        background var(--transition);
}

.quality-card:hover {
    transform: translateY(-7px);
    background: var(--primary);
}

.quality-card i {
    margin-bottom: 18px;

    color: var(--secondary);

    font-size: 44px;
}

.quality-card h3 {
    margin-bottom: 12px;

    color: var(--primary);

    font-family: "Poppins", sans-serif;
    font-size: 22px;
}

.quality-card p {
    color: #667085;
}

.quality-card:hover h3,
.quality-card:hover p {
    color: var(--white);
}


/* =======================================================
   FAQ
======================================================= */

.faq {
    background: var(--light);
}

.faq-container {
    width: min(100%, 900px);
    margin-inline: auto;
}

.faq-item {
    margin-bottom: 14px;

    overflow: hidden;

    border-radius: 15px;

    background: var(--white);

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

.faq-question {
    width: 100%;

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

    gap: 20px;

    padding: 21px 24px;

    background: var(--white);
    color: var(--primary);

    text-align: left;

    font-size: 17px;
    font-weight: 700;

    cursor: pointer;
}

.faq-question i {
    flex: 0 0 auto;

    color: var(--secondary);

    transition: transform var(--transition);
}

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

.faq-answer {
    display: none;

    padding: 0 24px 22px;

    border-top: 1px solid #eeeeee;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    padding-top: 18px;

    color: #667085;
}


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

.cta {
    background:
        linear-gradient(
            135deg,
            var(--primary-dark),
            var(--primary)
        );

    color: var(--white);

    text-align: center;
}

.cta h2 {
    max-width: 850px;
    margin: 0 auto 18px;

    font-family: "Poppins", sans-serif;
    font-size: clamp(30px, 5vw, 48px);
    line-height: 1.2;
}

.cta p {
    max-width: 700px;
    margin: 0 auto 30px;

    color: rgba(255, 255, 255, 0.82);
}


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

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

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);

    gap: 50px;

    align-items: start;
}

.contact-info {
    min-width: 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;

    gap: 17px;

    margin-bottom: 28px;
}

.contact-item > i {
    width: 54px;
    height: 54px;

    flex: 0 0 54px;

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

    border-radius: 50%;

    background: var(--secondary);
    color: var(--white);

    font-size: 21px;
}

.contact-item h3 {
    margin-bottom: 4px;

    color: var(--primary);

    font-family: "Poppins", sans-serif;
    font-size: 18px;
}

.contact-item p {
    color: #667085;

    overflow-wrap: anywhere;
}

.contact-map {
    min-width: 0;
}

.contact-map iframe {
    width: 100%;
    height: 430px;

    border: 0;
    border-radius: 20px;

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


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

footer {
    padding: 70px 0 25px;

    background: var(--primary-dark);
    color: var(--white);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;

    gap: 45px;

    margin-bottom: 45px;
}

.footer-brand img {
    width: 75px;
    height: 75px;
    margin-bottom: 16px;
    object-fit: contain;
    
    
}

.footer-brand h3,
.footer-menu h3,
.footer-social h3 {
    margin-bottom: 14px;

    font-family: "Poppins", sans-serif;
}

.footer-brand p {
    max-width: 420px;

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

.footer-menu ul {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 9px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.75);

    transition: color var(--transition);
}

.footer-menu a:hover {
    color: var(--secondary);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-links a {
    width: 43px;
    height: 43px;

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

    border-radius: 50%;

    background: #13294b;
    color: var(--white);

    transition:
        background var(--transition),
        transform var(--transition);
}

.social-links a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.copyright {
    padding-top: 22px;

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

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

    text-align: center;

    font-size: 14px;
}


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

.top-btn {
    position: fixed;
    right: 22px;
    bottom: 22px;

    width: 48px;
    height: 48px;

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

    border-radius: 50%;

    background: var(--secondary);
    color: var(--white);

    font-size: 21px;

    cursor: pointer;

    z-index: 998;

    opacity: 0;
    visibility: hidden;

    transform: translateY(12px);

    transition:
        opacity var(--transition),
        visibility var(--transition),
        transform var(--transition);
}

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


/* =======================================================
   TABLET
======================================================= */

@media (max-width: 1100px) {
    .nav-links {
        gap: 20px;
    }

    .values-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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


/* =======================================================
   TABLET / SMALL LAPTOP
======================================================= */

@media (max-width: 900px) {
    section {
        padding: 85px 0;
    }

    .hero {
        padding-top: 115px;
    }

    .hero-content {
        grid-template-columns: 1fr;

        gap: 40px;

        text-align: center;
    }

    .hero-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-description {
        max-width: 680px;
    }

    .hero-right img {
        width: min(80%, 480px);
    }

    .about-grid,
    .vision-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        max-width: 700px;
        margin-inline: auto;
    }

    .about-content {
        max-width: 760px;
        margin-inline: auto;
    }

    .program-grid,
    .why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

    .footer-brand {
        grid-column: 1 / -1;
    }
}


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

@media (max-width: 700px) {
    html {
        scroll-padding-top: 78px;
    }

    body {
        font-size: 15px;
    }

    section {
        padding: 70px 0;
    }

    .container {
        width: min(90%, 560px);
    }


    /* -------------------------
       Header
    ------------------------- */

    header {
        padding: 10px 0;
    }

    header.scrolled {
        padding: 8px 0;
    }

    nav {
        min-height: 52px;
    }

    .logo {
        gap: 9px;
    }

    .logo img {
        width: 46px;
        height: 46px;

        flex-basis: 46px;
    }

    .logo span {
        font-size: 17px;
    }

    .menu-btn {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;

        width: 100%;
        max-height: calc(100svh - 85px);

        display: flex;
        flex-direction: column;
        align-items: stretch;

        gap: 3px;

        padding: 9px;

        overflow-y: auto;

        border-radius: 16px;

        background: var(--white);

        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transform: translateY(-8px);

        transition:
            opacity var(--transition),
            visibility var(--transition),
            transform var(--transition);
    }

    .nav-links.show {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a,
    header.scrolled .nav-links a {
        display: block;

        width: 100%;

        padding: 13px 14px;

        border-radius: 10px;

        color: var(--primary);

        font-size: 15px;
    }

    .nav-links a:hover {
        background: var(--light);
        color: var(--secondary);
    }


    /* -------------------------
       Hero
    ------------------------- */

    .hero {
        min-height: auto;

        padding: 125px 0 65px;
    }

    .hero-content {
        gap: 30px;
    }

    .hero-left h1 {
        font-size: clamp(43px, 14vw, 60px);
    }

    .hero-left h2 {
        font-size: 21px;
        line-height: 1.45;
    }

    .hero-description {
        font-size: 15px;
        line-height: 1.75;
    }

    .hero-buttons {
        width: 100%;

        flex-direction: column;

        gap: 10px;
    }

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

    .hero-right img {
        width: min(88%, 380px);
    }


    /* -------------------------
       Section title
    ------------------------- */

    .section-title {
        margin-bottom: 40px;
    }

    .section-title p {
        margin-bottom: 8px;

        font-size: 12px;
        letter-spacing: 2.5px;
    }

    .section-title h2 {
        font-size: 29px;
        line-height: 1.3;
    }


    /* -------------------------
       About
    ------------------------- */

    .about-grid {
        gap: 32px;
    }

    .about-image {
        border-radius: 18px;
    }

    .about-content h3 {
        font-size: 29px;
    }

    .about-content p {
        font-size: 15px;
        line-height: 1.75;
    }

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

        gap: 10px;
    }

    .about-stats div {
        padding: 17px;
    }

    .about-stats strong {
        font-size: 27px;
    }


    /* -------------------------
       Vision
    ------------------------- */

    .vision-card,
    .mission-card {
        padding: 28px 22px;

        border-radius: 18px;
    }

    .vision-card h3,
    .mission-card h3 {
        font-size: 25px;
    }


    /* -------------------------
       Cards
    ------------------------- */

    .values-grid,
    .program-grid,
    .why-grid,
    .quality-grid {
        grid-template-columns: 1fr;
    }

    .info-card,
    .program-card,
    .why-card,
    .quality-card {
        padding: 30px 22px;
    }


    /* -------------------------
       Statistics
    ------------------------- */

    .statistics {
        padding: 60px 0;
    }

    .stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 30px 15px;
    }

    .stat-item strong {
        font-size: 42px;
    }

    .stat-item span {
        font-size: 13px;
    }


    /* -------------------------
       Timeline
    ------------------------- */

    .timeline-wrapper {
        padding-left: 27px;
    }

    .timeline-item::before {
        left: -38px;

        width: 15px;
        height: 15px;

        border-width: 3px;
    }

    .timeline-item h3 {
        font-size: 22px;
    }


    /* -------------------------
       Organization
    ------------------------- */

    .org-box {
        width: min(100%, 250px);

        padding: 14px 18px;
    }

    .org-branch {
        width: 100%;

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

        gap: 10px;
    }

    .org-branch .org-box {
        width: 100%;
    }


    /* -------------------------
       FAQ
    ------------------------- */

    .faq-question {
        padding: 18px;

        font-size: 15px;
    }

    .faq-answer {
        padding: 0 18px 18px;
    }


    /* -------------------------
       CTA
    ------------------------- */

    .cta h2 {
        font-size: 30px;
    }

    .cta p {
        font-size: 15px;
    }


    /* -------------------------
       Contact
    ------------------------- */

    .contact-grid {
        gap: 35px;
    }

    .contact-item {
        gap: 13px;
        margin-bottom: 23px;
    }

    .contact-item > i {
        width: 46px;
        height: 46px;

        flex-basis: 46px;

        font-size: 18px;
    }

    .contact-item h3 {
        font-size: 17px;
    }

    .contact-item p {
        font-size: 14px;
    }

    .contact-map iframe {
        height: 300px;

        border-radius: 16px;
    }


    /* -------------------------
       Footer
    ------------------------- */

    footer {
        padding-top: 55px;
    }

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

        gap: 35px;
    }

    .footer-brand {
        grid-column: auto;
        
    }

    .footer-brand p {
        font-size: 14px;
    }

    .copyright {
        font-size: 12px;
    }


    /* -------------------------
       Back to top
    ------------------------- */

    .top-btn {
        right: 15px;
        bottom: 15px;

        width: 45px;
        height: 45px;
    }
}


/* =======================================================
   VERY SMALL PHONES
======================================================= */

@media (max-width: 380px) {
    .container {
        width: 88%;
    }

    .logo span {
        font-size: 15px;
    }

    .logo img {
        width: 42px;
        height: 42px;

        flex-basis: 42px;
    }

    .hero {
        padding-top: 115px;
    }

    .hero-left h1 {
        font-size: 42px;
    }

    .hero-left h2 {
        font-size: 19px;
    }

    .section-title h2 {
        font-size: 26px;
    }

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

    .org-branch {
        grid-template-columns: 1fr;
    }
}


/* =======================================================
   REDUCED MOTION
======================================================= */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


/* =======================================================
   REVEAL ANIMATION
======================================================= */

.info-card,
.program-card,
.why-card,
.quality-card,
.vision-card,
.mission-card {
    opacity: 0;
    transform: translateY(22px);

    transition:
        opacity 0.65s ease,
        transform 0.65s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.info-card.visible,
.program-card.visible,
.why-card.visible,
.quality-card.visible,
.vision-card.visible,
.mission-card.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .info-card,
    .program-card,
    .why-card,
    .quality-card,
    .vision-card,
    .mission-card {
        opacity: 1;
        transform: none;
    }
}
