/* =========================================================
   RESET
========================================================= */

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", Arial, sans-serif;
    background: var(--white);
    color: var(--text3);
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
}

img {
    display: block;
    width: 100%;
    max-width: 100%;
    object-fit: cover;
}


/* =========================================================
   GLOBAL CONTAINER
========================================================= */

.section-container {
    width: min(1320px, calc(100% - 80px));
    margin-inline: auto;
}


/* =========================================================
   SECTION LABEL
========================================================= */

.section-label {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--secondary);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.about-title {
    position: relative;
    margin-bottom: 30px;
}

.hero-content .section-label {
    top: 30px;
}

.section-label span {
    display: block;
    width: 38px;
    height: 2px;
    background: var(--secondary);
}

.dark-label {
    color: var(--primary);
}

.dark-label span {
    background: var(--secondary);
}

.light-label {
    color: var(--secondary);
}


/* =========================================================
   BUTTONS
========================================================= */

.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 15px 25px;
    background: var(--secondary);
    color: var(--primary-dark);
    border-radius: 8px;
    font-weight: 800;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(255, 169, 0, 0.18);
}

.primary-btn span {
    font-size: 20px;
    transition: var(--transition);
}

.primary-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 35px rgba(255, 169, 0, 0.3);
}

.primary-btn:hover span {
    transform: translateX(5px);
}

.outline-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 13px 22px;
    border: 1.5px solid var(--primary);
    border-radius: 8px;
    color: var(--primary);
    font-weight: 700;
    transition: var(--transition);
}

.outline-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.cta-outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 25px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: white;
    border-radius: 8px;
    font-weight: 700;
    transition: var(--transition);
}

.cta-outline-btn:hover {
    background: white;
    color: var(--primary);
}


/* =========================================================
   HERO
========================================================= */

.about-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--primary);
    background-image: url(../uploads/About-bg.png);
    background-position: center center;
    background-size: cover;
}

.hero-container {
    width: min(1450px, calc(100% - 100px));
    margin-inline: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: clamp(42px, 4vw, 70px);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -2px;
}

.hero-content h1 span {
    color: var(--secondary);
}

.hero-content .primary-btn {
    margin-top: 10px;
}


/* =========================================================
   HERO IMAGE
========================================================= */

.hero-image-wrap {
    position: relative;
    height: 570px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-circle {
    position: absolute;
    width: 560px;
    height: 560px;
    /* background: radial-gradient(circle, rgba(255, 169, 0, 0.22), transparent 67%); */
    animation: pulseGlow 5s ease-in-out infinite;
}

.hero-image {
    position: relative;
    z-index: 2;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid var(--secondary);
    /* box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3); */
}


/* =========================================================
   HERO VALUE CARDS
========================================================= */

.section-value-card {
    position: relative;
    height: fit-content;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 30px;
    background: linear-gradient(180deg, #fff 0%, #f7f9f9 100%);
    padding-block: 50px 5px;
}

.hero-values {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    margin-inline: auto;
    width: calc(100% - 40px);
}

.value-card {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 15px;
    padding: 20px;
    border-radius: 12px;
    background: rgba(113, 25, 40, 1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateX(-8px);
    background: rgba(113, 25, 40, 0.9);
    border-color: rgba(255, 169, 0, 0.5);
}

.value-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid var(--secondary);
    color: var(--secondary);
    font-size: 27px;
}

.value-card h3 {
    color: var(--secondary);
    font-size: 18px;
    margin-bottom: 4px;
}

.value-card p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    line-height: 1.6;
}


/* =========================================================
   STORY
========================================================= */

.story-section {
    padding: 50px 0 100px 0;
    background: linear-gradient(180deg, #fff 0%, #f7f9f9 100%);
}

.story-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 70px;
    align-items: center;
}

.story-content h2 {
    margin-top: 18px;
    font-size: clamp(35px, 4vw, 55px);
    line-height: 1.05;
    color: var(--primary);
    letter-spacing: -1.5px;
}

.story-content h2 span {
    color: var(--secondary);
}

.story-content p {
    margin-top: 18px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   STATS
========================================================= */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.stat-card {
    min-height: 190px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 22px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-9px);
    border-color: rgba(255, 169, 0, 0.5);
    box-shadow: var(--shadow-md);
}

.stat-icon {
    font-size: 30px;
    margin-bottom: 7px;
}

.counter {
    color: var(--secondary);
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
}

.stat-card p {
    margin-top: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
}


/* =========================================================
   INFRASTRUCTURE
========================================================= */

.infrastructure-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #54101c, #711928);
    color: white;
    position: relative;
    overflow: hidden;
}

.infrastructure-section::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 202, 129, 0.12), transparent 70%);
    top: -250px;
    right: -200px;
}

.center-heading {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 55px;
}

.center-heading h2 {
    margin-top: 10px;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.05;
}

.center-heading h2 span {
    color: var(--secondary);
}

.center-heading p {
    margin-top: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.infrastructure-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
}

.infra-card {
    overflow: hidden;
    border-radius: 15px;
    background: var(--white);
    border: 1px solid rgba(138, 42, 60, 0.9);
    transition: var(--transition);
}

.infra-card:hover {
    transform: translateY(-10px);
    border-color: rgb(255, 202, 129);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.infra-image {
    height: 170px;
    position: relative;
    overflow: hidden;
}

.infra-image img {
    height: 100%;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.infra-card:hover .infra-image img {
    transform: scale(1.08);
}

.infra-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 12px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.35));
}

.infra-overlay span {
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--primary);
    font-weight: 800;
    font-size: 12px;
}

.infra-content {
    padding: 18px;
}

.infra-icon {
    color: var(--primary-dark);
    font-size: 25px;
    margin-bottom: 7px;
}

.infra-content h3 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--primary);
}

.infra-content p {
    color: var(--primary-light);
    font-size: 12px;
    line-height: 1.6;
}


/* =========================================================
   DIRECTOR
========================================================= */

.director-section {
    padding: 50px 0;
    background: var(--light-bg);
}

.second-section .director-grid,
.director-grid {
    display: grid;
    grid-template-columns: 0.75fr 1.45fr;
    gap: 50px;
    align-items: center;
}

.second-section .director-grid {
    display: grid;
    grid-template-columns: 1.45fr 0.75fr;
}


.director-photo {
    position: relative;
    border-radius: 25px;
    overflow: visible;
}

.director-photo img {
    height: 500px;
    border-radius: 25px;
    object-fit: contain;
    box-shadow: var(--shadow-lg);
}

.director-badge {
    position: absolute;
    right: -30px;
    bottom: 30px;
    padding: 18px 25px;
    border-radius: 14px;
    background: var(--secondary);
    color: var(--primary);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
}

.second-section .director-grid .director-badge {
    left: -30px;
    right: inherit;
}

.director-badge strong {
    font-size: 28px;
    line-height: 1;
}

.director-badge span {
    font-size: 11px;
    font-weight: 700;
}

.director-content {
    position: relative;
}

.director-content p {
    position: relative;
    z-index: 2;
    margin-top: 50px;
    color: #575656;
    font-size: clamp(18px, 2vw, 26px);
    line-height: 1.2;
    text-align: justify;
}

.director-info {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
}

.director-info strong {
    color: var(--primary);
    font-size: 16px;
}

.director-info span {
    color: var(--muted);
    font-size: 13px;
}



/* =========================================================
   ACCREDITATION
========================================================= */

.accreditation-section {
    padding: 100px 0;
    background: white;
}

.accreditation-section .center-heading h2 {
    color: var(--primary);
}

.accreditation-section .center-heading p {
    color: var(--muted);
}

.accreditation-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.accreditation-card {
    text-align: center;
    padding: 35px 20px;
    border: 1px solid var(--border);
    border-radius: 18px;
    transition: var(--transition);
}

.accreditation-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 169, 0, 0.5);
}

.accreditation-card .accreditation-logo {
    height: 50px;
    object-fit: cover;
    margin: 0 auto 18px;
    display: flex;
    justify-content: center;
    place-items: center;
    color: var(--primary);
    font-weight: 800;
    font-size: 14px;
}

.accreditation-logo img {
    position: relative;
    max-width: 100px;
    bottom: 5px;
}

.accreditation-card h3 {
    color: var(--primary);
    font-size: 14px;
}

.accreditation-card p {
    color: var(--secondary);
    font-size: 12px;
    font-weight: 700;
    margin-top: 3px;
}


/* =========================================================
   CTA
========================================================= */

.about-cta {
    position: relative;
    overflow: hidden;
    padding: 20px 0 0 0;
    background: #ffca81;
    color: white;
    text-align: center;
}

.cta-decoration {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 1px solid rgba(113, 25, 40, 0.9);
    left: -180px;
    top: -200px;
}

.cta-decoration::after {
    content: "";
    position: absolute;
    inset: 50px;
    border: 1px solid rgba(113, 25, 40, 0.8);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.START-YOUR-JOURNEY {
    color: var(--primary);
}

.cta-content h2 {
    font-size: clamp(40px, 5vw, 70px);
    line-height: 1;
    letter-spacing: -2px;
    margin: 0;
}

.cta-content h2 span {
    color: var(--primary);
}

.cta-content p {
    max-width: 700px;
    margin: 10px auto 0;
    color: var(--black);
}

.cta-buttons {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.cta-button-new {
    background: #54101c;
    color: var(--white);
}

.cta-button-second {
    background: var(--white);
    color: var(--primary);
}

.cta-button-second:hover {
    color: var(--white);
    background: var(--primary);
}

.last {
    position: relative;
    width: 100%;
    height: 15px;
    margin-top: 20px;
    background: var(--white);
}


/* =========================================================
   REVEAL ANIMATION
========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   KEYFRAMES
========================================================= */

@keyframes pulseGlow {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {
    .section-container {
        width: min(100% - 50px, 1000px);
    }

    .hero-container {
        width: min(100% - 50px, 1000px);
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .hero-image-wrap {
        height: 500px;
    }

    .hero-values {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .value-card {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .story-grid {
        gap: 40px;
    }

    .infrastructure-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* =========================================================
   TABLET SMALL
========================================================= */

@media (max-width: 850px) {
    .about-hero {
        padding: 70px 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        padding: 0;
    }

    .hero-content p {
        margin-inline: auto;
    }

    .hero-content .primary-btn {
        margin-top: 25px;
    }

    .hero-image-wrap {
        height: 430px;
        max-width: 600px;
        width: 100%;
        margin-inline: auto;
    }

    .hero-values {
        grid-template-columns: repeat(2, 1fr);
        text-align: left;
    }

    .value-card {
        text-align: left;
        justify-items: start;
        grid-template-columns: 45px 1fr;
    }

    .value-icon {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }

    .story-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .infrastructure-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .second-section .director-grid,
    .director-grid {
        grid-template-columns: 1fr;
        max-width: 700px;
        margin-inline: auto;
    }

    .director-photo {
        max-width: 520px;
        width: 100%;
        margin-inline: auto;
    }

    .accreditation-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {
    .section-container {
        width: calc(100% - 32px);
    }

    .about-hero {
        min-height: auto;
        padding: 60px 0 70px;
    }

    .hero-container {
        width: calc(100% - 32px);
        gap: 35px;
    }

    .hero-content h1 {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .hero-content p {
        font-size: 13px;
        line-height: 1.7;
    }

    .hero-image-wrap {
        height: 330px;
    }

    .hero-image-circle {
        width: 330px;
        height: 330px;
    }

    .hero-values {
        display: flex;
        flex-direction: column;
        gap: 1;
    }
    .story-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

.footer-col ul {
    padding-inline-start: 0;
}