/* ==========================================================
            STANDARDIZED SECTION LABELS & SPAN STYLES
========================================================== */

.hero-label,
.section-tag,
.quote-wrapper .section-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    margin-bottom: 1.4rem;

    background: transparent !important;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
}

/* Decorative Gold Gradient Lines on Both Sides for all Section Spans */
.hero-label::before,
.hero-label::after,
.section-tag::before,
.section-tag::after,
.quote-wrapper .section-label::before,
.quote-wrapper .section-label::after {
    content: "";
    width: 55px;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--gold),
        transparent
    );
    position: relative;
    top: 0;
    transform: none;
}

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

.about-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: url("../images/logo.png") center center/cover no-repeat;
}

.about-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(8,8,8,.72), rgba(8,8,8,.84));
    z-index: 1;
}

.about-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at right, rgba(194,155,56,.10), transparent 55%);
    z-index: 2;
}

.about-hero .container {
    position: relative;
    z-index: 5;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 5rem;
    align-items: center;
}

.about-content {
    max-width: 720px;
}

.about-content h1 {
    margin: 1.6rem 0;
    font-family: var(--heading);
    font-size: clamp(3.8rem, 7vw, 5.8rem);
    line-height: 1.05;
    color: var(--white);
}

.about-content h1 span {
    display: block;
    color: var(--gold);
}

.about-content p {
    max-width: 650px;
    margin-bottom: 2.8rem;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.9;
}

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

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
}

/* ==========================================================
                    GLASS CARD
========================================================== */

.hero-glass-card {
    padding: 3rem;
    border-radius: 30px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
}

.glass-title {
    display: block;
    margin-bottom: 2rem;
    color: var(--gold);
    letter-spacing: 4px;
    font-size: .85rem;
    text-transform: uppercase;
}

.glass-item {
    padding: 1.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.glass-item:last-child {
    border: none;
}

.glass-item h3 {
    margin-bottom: .8rem;
    font-family: var(--heading);
    color: var(--gold);
    font-size: 1.7rem;
}

.glass-item p {
    color: var(--muted);
    line-height: 1.8;
}

/* ==========================================================
                    SCROLL INDICATOR
========================================================== */

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    z-index: 10;
}

.scroll-down span {
    color: rgba(255,255,255,.65);
    font-size: .75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.mouse {
    width: 32px;
    height: 56px;
    border-radius: 40px;
    border: 2px solid rgba(255,255,255,.35);
    position: relative;
}

.wheel {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% { opacity: 0; top: 10px; }
    30% { opacity: 1; }
    100% { opacity: 0; top: 32px; }
}

/* ==========================================================
                    STORY SECTION
========================================================== */

.story-section {
    position: relative;
    padding: clamp(5rem, 10vw, 8rem) 0;
    overflow: hidden;
    background: #151515;
}

.story-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: clamp(2rem, 4vw, 5rem);
    align-items: center;
}

.story-title {
    position: relative;
}

.story-title span {
    display: block;
    font-family: var(--heading);
    font-size: clamp(3.2rem, 12vw, 6rem);
    line-height: 0.9;
    color: rgb(255 255 255 / 4%);
    text-transform: uppercase;
}

.story-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 180px;
    background: var(--gold);
    transform: translateY(-50%);
}

.story-content {
    max-width: 720px;
}

.story-content h2 {
    font-family: var(--heading);
    font-size: clamp(2.2rem, 4vw, 4.8rem);
    line-height: 1;
    margin-bottom: 35px;
    color: #fff;
    overflow-wrap: anywhere;
    hyphens: auto;
}

.story-content p {
    color: rgb(255 255 255 / 72%);
    font-size: 1.08rem;
    line-height: 2;
    margin-bottom: 25px;
    overflow-wrap: anywhere;
}

/* ==========================================================
                    CEO SPOTLIGHT
========================================================== */

.ceo-section {
    position: relative;
    padding: clamp(5rem, 10vw, 8rem) 0;
    background: #101010;
}

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

.ceo-image {
    position: relative;
    width: 100%;
    display: inline-block;
}

.ceo-image img {
    width: 100%;
    display: block;
    border-radius: 28px;
    object-fit: cover;
    box-shadow: 0 35px 80px rgb(0 0 0 / 45%);
    transition: 0.6s;
}

.ceo-badge {
    position: absolute;
    bottom: 10px;
    right: 25px;
    background: rgb(24 24 24 / 90%);
    color: var(--white);
    padding: 12px 24px;
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    z-index: 10;
}

.ceo-img-animate {
    opacity: 0;
    transform: translateX(-36px);
    transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
    position: relative;
}

.ceo-img-animate.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.ceo-img-animate img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    filter: grayscale(10%);
    transition: transform var(--transition, 0.45s ease), filter var(--transition, 0.45s ease), box-shadow var(--transition, 0.45s ease);
}

.ceo-img-animate:hover img {
    transform: scale(1.02);
    filter: grayscale(0%);
    box-shadow: 0 20px 40px rgb(194 155 56 / 20%);
}

.ceo-content {
    position: relative;
}

.ceo-content h2 {
    font-family: var(--heading);
    color: var(--white);
    font-size: clamp(2.1rem, 4vw, 3.2rem);
    line-height: 1.15;
    overflow-wrap: anywhere;
    hyphens: auto;
}

.ceo-content h2 span {
    display: block;
    font-size: clamp(1rem, 2.3vw, 1.4rem);
    color: var(--gold);
    margin-top: 12px;
}

.ceo-content h2 span::before {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background: var(--gold);
    margin-bottom: 8px;
}

.ceo-content p {
    color: rgb(255 255 255 / 75%);
    line-height: 2;
    margin-bottom: 22px;
    font-size: 1.05rem;
    overflow-wrap: anywhere;
}

.ceo-role {
    color: rgb(255 255 255 / 65%);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 35px;
    font-size: 0.85rem;
}

.signature {
    margin-top: 45px;
    font-family: var(--heading);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    color: var(--gold);
}

/* ==========================================================
                    PHILOSOPHY
========================================================== */

.philosophy {
    position: relative;
    padding: clamp(5rem, 10vw, 8rem) 0;
    background: #181818;
    overflow: hidden;
}

.philosophy-wrapper {
    position: relative;
}

.background-word {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--heading);
    font-size: clamp(4rem, 16vw, 10rem);
    color: rgb(255 255 255 / 3%);
    white-space: nowrap;
    pointer-events: none;
}

.philosophy-content {
    position: relative;
    z-index: 5;
    max-width: 850px;
    margin: auto;
    text-align: center;
}

.philosophy-content h2 {
    font-family: var(--heading);
    font-size: clamp(2.1rem, 4.2vw, 3.2rem);
    color: #fff;
    margin: 30px 0;
    overflow-wrap: anywhere;
    hyphens: auto;
}

.philosophy-content p {
    color: rgb(255 255 255 / 75%);
    line-height: 2;
    font-size: 1.08rem;
    margin-bottom: 20px;
    overflow-wrap: anywhere;
}

/* ==========================================================
                    FOUNDER QUOTE
========================================================== */

.founder-quote {
    position: relative;
    padding: 8rem 0;
    background: var(--black);
    overflow: hidden;
}

.founder-quote::before {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    top: -250px;
    right: -180px;
    background: radial-gradient(circle, rgba(194,155,56,.12), transparent 70%);
    filter: blur(40px);
    pointer-events: none;
}

.quote-wrapper {
    position: relative;
    max-width: 950px;
    margin: auto;
    padding: 4rem;
    border-radius: 30px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.quote-wrapper::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: var(--gold);
}

.quote-wrapper h2 {
    margin: 1rem 0 2rem;
    font-family: var(--heading);
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    line-height: 1.1;
    color: var(--white);
}

.quote-text {
    position: relative;
    color: var(--muted);
    font-size: 1.18rem;
    line-height: 2;
    padding-left: 2rem;
}

.quote-text::before {
    content: "“";
    position: absolute;
    left: -5px;
    top: -35px;
    font-family: var(--heading);
    font-size: 7rem;
    color: var(--gold);
    line-height: 1;
}

.quote-text::after {
    content: "”";
    position: absolute;
    right: 300px;
    bottom: -60px;
    font-family: var(--heading);
    font-size: 7rem;
    color: var(--gold);
    line-height: 1;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.author-line {
    width: 70px;
    height: 2px;
    background: var(--gold);
}

.quote-author h3 {
    margin-bottom: .4rem;
    font-family: var(--heading);
    font-size: 2rem;
    color: var(--white);
}

.quote-author span {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: .82rem;
}

.quote-wrapper:hover {
    transform: translateY(-8px);
    border-color: rgba(194,155,56,.25);
    transition: var(--transition);
}

/* ==========================================================
                    EXCELLENCE SECTION
========================================================== */

.excellence-section {
    position: relative;
    padding: clamp(5rem, 10vw, 8rem) 0;
    background: #151515;
}

.section-heading {
    margin-bottom: 2.5rem;
}

.section-heading h2 {
    font-family: var(--heading);
    font-size: clamp(2.1rem, 4vw, 3.2rem);
    line-height: 1;
    color: #fff;
    overflow-wrap: anywhere;
    hyphens: auto;
    margin-top: 1rem;
}

.excellence-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.excellence-card {
    position: relative;
    padding: 55px;
    border-radius: 30px;
    background: rgb(255 255 255 / 5%);
    border: 1px solid rgb(255 255 255 / 8%);
    transition: var(--transition);
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgb(255 255 255 / 4%);
}

.excellence-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gold);
    transform: scaleY(0);
    transform-origin: top;
    transition: 0.5s;
}

.excellence-card:hover {
    transform: translateY(-6px);
}

.excellence-card:hover::before {
    transform: scaleY(1);
}

.card-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--black);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    transition: var(--transition);
}

.card-number:hover {
    background: var(--gold);
    color: #111;
    transform: rotate(10deg);
}

.excellence-card h3 {
    font-family: var(--heading);
    font-size: clamp(1.4rem, 2.6vw, 2.1rem);
    margin-bottom: 20px;
    color: #fff;
}

.excellence-card p {
    color: rgb(255 255 255 / 72%);
    line-height: 1.9;
    overflow-wrap: anywhere;
}

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

.statistics-section {
    padding: clamp(5rem, 10vw, 8rem) 0;
    background: #101010;
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-box {
    text-align: center;
    padding: 50px 30px;
    border-radius: 24px;
    background: rgb(255 255 255 / 4%);
    border: 1px solid rgb(255 255 255 / 6%);
    transition: var(--transition);
    box-shadow: inset 0 1px 0 rgb(255 255 255 / 4%);
}

.stat-box:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
}

.stat-box h2 {
    font-family: var(--heading);
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    color: var(--gold);
    margin-bottom: 15px;
}

.statistics-section .stat-box span {
    color: rgb(255 255 255 / 75%);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

/* ==========================================================
                    VISION & MISSION
========================================================== */

.vision-section {
    padding: clamp(5rem, 10vw, 8rem) 0;
    background: #181818;
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.vision-card {
    padding: 60px;
    border-radius: 28px;
    background: rgb(255 255 255 / 5%);
    border: 1px solid rgb(255 255 255 / 8%);
    transition: var(--transition);
    transition-delay: 0.15s;
    box-shadow: inset 0 1px 0 rgb(255 255 255 / 4%);
}

.vision-card h2 {
    font-family: var(--heading);
    font-size: clamp(1.9rem, 3.2vw, 2.7rem);
    color: #fff;
    margin: 25px 0;
    overflow-wrap: anywhere;
    hyphens: auto;
}

.vision-card p {
    color: rgb(255 255 255 / 72%);
    line-height: 2;
    overflow-wrap: anywhere;
}

/* ==========================================================
                    CALL TO ACTION
========================================================== */

.about-cta {
    position: relative;
    padding: clamp(5rem, 10vw, 8rem) 0;
    text-align: center;
    background: linear-gradient(rgb(15 15 15 / 75%), rgb(15 15 15 / 82%)), url("../images/projects/contact-cta.jpg");
    background-size: cover;
    background-position: center;
}

.about-cta h2 {
    font-family: var(--heading);
    font-size: clamp(2.1rem, 4.2vw, 3.4rem);
    line-height: 1;
    color: #fff;
    margin: 30px 0;
    overflow-wrap: anywhere;
    hyphens: auto;
}

.about-cta p {
    max-width: 700px;
    margin: 0 auto 50px;
    color: rgb(255 255 255 / 75%);
    line-height: 2;
    font-size: 1.08rem;
    overflow-wrap: anywhere;
}

.about-cta .hero-buttons {
    justify-content: center;
}

[data-reveal] {
    opacity: 0;
    will-change: transform, opacity;
    transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

[data-reveal="up"] { transform: translateY(36px); }
[data-reveal="left"] { transform: translateX(-36px); }
[data-reveal="right"] { transform: translateX(36px); }
[data-reveal].is-visible { opacity: 1; transform: translate(0, 0); }

/* ==========================================================
              MOBILE RESPONSIVE DESIGN
   ========================================================== */

/* ----------------------------------------------------------
   TABLETS & MOBILE — 768px AND BELOW
   ---------------------------------------------------------- */

@media (max-width: 768px) {

    /* =========================
       GLOBAL MOBILE SPACING
       ========================= */

    .about-hero,
    .story-section,
    .ceo-section,
    .philosophy,
    .founder-quote,
    .excellence-section,
    .statistics-section,
    .vision-section,
    .about-cta {
        padding-left: 0;
        padding-right: 0;
    }

    /* =========================
       SECTION LABELS
       ========================= */

    .hero-label,
    .section-tag,
    .quote-wrapper .section-label {
        gap: 8px;
        margin-bottom: 1rem;
        font-size: 0.68rem;
        letter-spacing: 2.5px;
        text-align: center;
    }

    .hero-label::before,
    .hero-label::after,
    .section-tag::before,
    .section-tag::after,
    .quote-wrapper .section-label::before,
    .quote-wrapper .section-label::after {
        width: 28px;
    }


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

    .about-hero {
        min-height: 100svh;
        padding: 7rem 0 5rem;
        background-position: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .about-content {
        max-width: 100%;
        margin: 0 auto;
    }

    .about-content h1 {
        margin: 1rem 0 1.3rem;
        font-size: clamp(2.8rem, 12vw, 4rem);
        line-height: 1;
    }

    .about-content p {
        max-width: 100%;
        margin: 0 auto 2rem;
        font-size: 0.95rem;
        line-height: 1.75;
    }

    .hero-buttons {
        justify-content: center;
        gap: 0.8rem;
    }

    .hero-buttons a,
    .hero-buttons button {
        min-height: 48px;
    }

    .story-title::before {
        display: none;
    }


    /* =========================
       HERO GLASS CARD
       ========================= */

    .hero-glass-card {
        width: 100%;
        padding: 1.7rem;
        border-radius: 20px;
        text-align: left;
    }

    .glass-title {
        margin-bottom: 1rem;
        font-size: 0.72rem;
        letter-spacing: 2.5px;
    }

    .glass-item {
        padding: 1.2rem 0;
    }

    .glass-item h3 {
        margin-bottom: 0.5rem;
        font-size: 1.35rem;
    }

    .glass-item p {
        font-size: 0.9rem;
        line-height: 1.7;
    }


    /* =========================
       SCROLL INDICATOR
       ========================= */

    .scroll-down {
        bottom: 20px;
        gap: 8px;
    }

    .scroll-down span {
        font-size: 0.62rem;
        letter-spacing: 2.5px;
    }

    .mouse {
        width: 25px;
        height: 43px;
        border-width: 1px;
    }

    .wheel {
        width: 4px;
        height: 4px;
        top: 8px;
    }


    /* =========================
       STORY SECTION
       ========================= */

    .story-section {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .story-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .story-title {
        text-align: center;
    }

    .story-title span {
        font-size: clamp(3.5rem, 20vw, 6rem);
        line-height: 0.85;
    }

    .story-title::before {
        left: 50%;
        top: 50%;
        width: 4px;
        height: 100px;
        transform: translate(-50%, -50%);
    }

    .story-content {
        max-width: 100%;
        text-align: center;
    }

    .story-content h2 {
        margin-bottom: 1.5rem;
        font-size: clamp(2rem, 9vw, 3.2rem);
        line-height: 1.05;
    }

    .story-content p {
        font-size: 0.95rem;
        line-height: 1.8;
        margin-bottom: 1.2rem;
    }


    /* =========================
       CEO SECTION
       ========================= */

    .ceo-section {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .ceo-grid {
        grid-template-columns: 1fr;
        gap: 2.8rem;
    }

    .ceo-image {
        width: 100%;
    }

    .ceo-image img,
    .ceo-img-animate img {
        width: 100%;
        height: auto;
        min-height: 280px;
        max-height: 500px;
        border-radius: 18px;
        object-fit: cover;
    }

    .ceo-badge {
        right: 12px;
        bottom: 12px;
        padding: 9px 14px;
        font-size: 0.65rem;
        letter-spacing: 1.5px;
    }

    .ceo-content {
        text-align: center;
    }

    .ceo-content h2 {
        font-size: clamp(2rem, 9vw, 3rem);
        line-height: 1.1;
    }

    .ceo-content h2 span {
        margin-top: 10px;
        font-size: 1rem;
    }

    .ceo-content h2 span::before {
        width: 35px;
        height: 2px;
        margin: 0 auto 8px;
    }

    .ceo-content p {
        font-size: 0.95rem;
        line-height: 1.8;
        margin-bottom: 18px;
    }

    .ceo-role {
        margin-bottom: 25px;
        font-size: 0.72rem;
        letter-spacing: 1.5px;
    }

    .signature {
        margin-top: 30px;
        font-size: 1.5rem;
    }


    /* =========================
       PHILOSOPHY
       ========================= */

    .philosophy {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .background-word {
        font-size: clamp(4rem, 24vw, 8rem);
        max-width: 100%;
        overflow: hidden;
    }

    .philosophy-content {
        max-width: 100%;
        padding: 0 0.5rem;
    }

    .philosophy-content h2 {
        margin: 1.5rem 0;
        font-size: clamp(2rem, 9vw, 3rem);
        line-height: 1.05;
    }

    .philosophy-content p {
        font-size: 0.95rem;
        line-height: 1.8;
        margin-bottom: 1rem;
    }


    /* =========================
       FOUNDER QUOTE
       ========================= */

    .founder-quote {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .founder-quote::before {
        width: 350px;
        height: 350px;
        top: -120px;
        right: -150px;
    }

    .quote-wrapper {
        width: 100%;
        padding: 2rem 1.4rem 2.2rem;
        border-radius: 20px;
    }

    .quote-wrapper::before {
        width: 3px;
    }

    .quote-wrapper h2 {
        margin: 0.8rem 0 1.5rem;
        font-size: clamp(2rem, 9vw, 3rem);
        line-height: 1.05;
    }

    .quote-text {
        padding-left: 0.8rem;
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .quote-text::before {
        left: -5px;
        top: -25px;
        font-size: 4.5rem;
    }

    .quote-text::after {
        right: 0;
        bottom: -45px;
        font-size: 4.5rem;
    }

    .quote-author {
        gap: 0.8rem;
        margin-top: 2rem;
    }

    .author-line {
        width: 35px;
    }

    .quote-author h3 {
        font-size: 1.35rem;
    }

    .quote-author span {
        letter-spacing: 1.5px;
        font-size: 0.65rem;
    }


    /* =========================
       EXCELLENCE
       ========================= */

    .excellence-section {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .section-heading {
        margin-bottom: 2rem;
        text-align: center;
    }

    .section-heading h2 {
        font-size: clamp(2rem, 9vw, 3rem);
        line-height: 1.05;
    }

    .excellence-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .excellence-card {
        padding: 1.8rem 1.4rem;
        border-radius: 20px;
    }

    .excellence-card h3 {
        font-size: 1.55rem;
        margin-bottom: 12px;
    }

    .excellence-card p {
        font-size: 0.92rem;
        line-height: 1.75;
    }

    .card-number {
        width: 55px;
        height: 55px;
        margin-bottom: 18px;
        font-size: 1rem;
    }


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

    .statistics-section {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .stat-box {
        padding: 1.7rem 0.8rem;
        border-radius: 18px;
    }

    .stat-box h2 {
        font-size: clamp(2rem, 9vw, 2.8rem);
        margin-bottom: 8px;
    }

    .statistics-section .stat-box span {
        font-size: 0.62rem;
        letter-spacing: 1px;
        line-height: 1.4;
    }


    /* =========================
       VISION & MISSION
       ========================= */

    .vision-section {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .vision-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .vision-card {
        padding: 2rem 1.4rem;
        border-radius: 20px;
    }

    .vision-card h2 {
        margin: 18px 0;
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .vision-card p {
        font-size: 0.92rem;
        line-height: 1.8;
    }


    /* =========================
       CALL TO ACTION
       ========================= */

    .about-cta {
        padding-top: 5rem;
        padding-bottom: 5rem;
        background-position: center;
    }

    .about-cta h2 {
        margin: 1.3rem 0;
        font-size: clamp(2rem, 9vw, 3rem);
        line-height: 1.05;
    }

    .about-cta p {
        margin-bottom: 2rem;
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .about-cta .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .about-cta .hero-buttons a,
    .about-cta .hero-buttons button {
        width: 100%;
    }


    /* =========================
       REVEAL ANIMATIONS
       ========================= */

    [data-reveal="left"],
    [data-reveal="right"] {
        transform: translateY(25px);
    }

    [data-reveal].is-visible {
        transform: translateY(0);
    }
}


/* ----------------------------------------------------------
   SMALL PHONES — 480px AND BELOW
   ---------------------------------------------------------- */

@media (max-width: 480px) {

    .about-hero {
        padding-top: 6rem;
        padding-bottom: 4rem;
    }

    .about-content h1 {
        font-size: clamp(2.5rem, 13vw, 3.4rem);
    }

    .about-content p {
        font-size: 0.88rem;
    }

    .hero-glass-card {
        padding: 1.3rem;
    }

    .glass-item h3 {
        font-size: 1.2rem;
    }

    .glass-item p {
        font-size: 0.84rem;
    }

    .story-section,
    .ceo-section,
    .philosophy,
    .founder-quote,
    .excellence-section,
    .statistics-section,
    .vision-section,
    .about-cta {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .story-title span {
        font-size: 20vw;
    }

    .quote-wrapper {
        padding: 1.6rem 1.1rem 2rem;
    }

    .quote-text {
        font-size: 0.88rem;
    }

    .statistics-grid {
        gap: 8px;
    }

    .stat-box {
        padding: 1.4rem 0.5rem;
    }

    .stat-box h2 {
        font-size: 2rem;
    }

    .statistics-section .stat-box span {
        font-size: 0.55rem;
    }

    .excellence-card,
    .vision-card {
        padding: 1.5rem 1.1rem;
    }
}


/* ==========================================================
        FINAL MOBILE OVERRIDE — ABOUT PAGE
        Fixes 361px mobile overflow
   ========================================================== */

@media (max-width: 992px) {
    .quote-text::before {
        left: -5px;
        top: -25px;
        display: none;
        font-size: 4.5rem;
    }

    .quote-text::after {
        display: none;
        bottom: -45px;
        font-size: 4.5rem;
    }
   }

@media (max-width: 576px) {

    /* --------------------------------------------------
       GLOBAL MOBILE WIDTH CONTROL
       -------------------------------------------------- */

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden !important;
    }

    .about-hero,
    .story-section,
    .ceo-section,
    .philosophy,
    .founder-quote,
    .excellence-section,
    .statistics-section,
    .vision-section,
    .about-cta {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    /* Force every About page container to fit */
    .about-hero .container,
    .story-section .container,
    .ceo-section .container,
    .philosophy .container,
    .founder-quote .container,
    .excellence-section .container,
    .statistics-section .container,
    .vision-section .container,
    .about-cta .container {
        width: calc(100% - 24px) !important;
        max-width: none !important;
        margin-left: 12px !important;
        margin-right: 12px !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .quote-text::before {
        left: -5px;
        top: -25px;
        display: none;
        font-size: 4.5rem;
    }

.quote-text::after {
        display: none;
        bottom: -45px;
        font-size: 4.5rem;
    }

    .scroll-down {
        bottom: 20px;
        display: none;
        gap: 8px;
    }


    /* --------------------------------------------------
       ABOUT HERO
       -------------------------------------------------- */

    .about-grid {
        width: 100%;
        max-width: 100%;
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 2rem;
    }

    .about-content,
    .hero-glass-card {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .about-content h1 {
        font-size: clamp(2.4rem, 12vw, 3.4rem);
        overflow-wrap: anywhere;
        word-break: normal;
    }

    .about-content p {
        width: 100%;
        max-width: 100%;
        overflow-wrap: anywhere;
    }


    /* --------------------------------------------------
       HERO GLASS CARD
       -------------------------------------------------- */

    .hero-glass-card {
        padding: 1.25rem !important;
        border-radius: 18px;
        overflow: hidden;
    }

    .glass-item,
    .glass-item h3,
    .glass-item p {
        min-width: 0;
        max-width: 100%;
        overflow-wrap: anywhere;
    }


    /* --------------------------------------------------
       STORY
       -------------------------------------------------- */

    .story-container {
        width: 100%;
        grid-template-columns: minmax(0, 1fr) !important;
    }

    .story-title,
    .story-content {
        min-width: 0;
        max-width: 100%;
    }


    /* --------------------------------------------------
       CEO
       -------------------------------------------------- */

    .ceo-grid {
        width: 100%;
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 2rem;
    }

    .ceo-image,
    .ceo-content {
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }

    .ceo-image img,
    .ceo-img-animate img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }


    /* --------------------------------------------------
       PHILOSOPHY
       -------------------------------------------------- */

    .philosophy-wrapper,
    .philosophy-content {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }


    /* --------------------------------------------------
       FOUNDER QUOTE
       -------------------------------------------------- */

    .quote-wrapper {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding: 1.5rem 1rem 2rem;
        box-sizing: border-box;
    }

    .quote-wrapper h2,
    .quote-text {
        max-width: 100%;
        overflow-wrap: anywhere;
    }


    /* --------------------------------------------------
       EXCELLENCE CARDS
       -------------------------------------------------- */

    .excellence-grid {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        grid-template-columns: minmax(0, 1fr) !important;
    }

    .excellence-card {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
        padding: 1.5rem 1.2rem;
    }


    /* --------------------------------------------------
       🔥 STATISTICS — MAIN FIX
       -------------------------------------------------- */

    .statistics-grid {
        display: grid !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        grid-template-columns:
            repeat(2, minmax(0, 1fr)) !important;

        gap: 10px !important;
    }

    .stat-box {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        padding: 1.4rem 0.5rem !important;

        box-sizing: border-box;
        overflow: hidden;
    }

    .stat-box h2 {
        max-width: 100%;
        font-size: clamp(1.8rem, 9vw, 2.5rem);
        overflow-wrap: anywhere;
    }

    .statistics-section .stat-box span {
        display: block;
        max-width: 100%;
        overflow-wrap: anywhere;
        word-break: normal;
        font-size: 0.58rem;
        letter-spacing: 1px;
    }


    /* --------------------------------------------------
       VISION / MISSION
       -------------------------------------------------- */

    .vision-grid {
        width: 100%;
        max-width: 100%;
        grid-template-columns: minmax(0, 1fr) !important;
    }

    .vision-card {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
        padding: 1.5rem 1.2rem;
    }


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

    .about-cta .hero-buttons {
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .about-cta .hero-buttons a,
    .about-cta .hero-buttons button {
        width: 100%;
        box-sizing: border-box;
    }
}