/*==================================================
        ABOUT PAGE - HERO SECTION
==================================================*/
:root {
    --section-space: clamp(18px, 2vh, 35px);
}

.page-banner {
    position: relative;
    overflow: hidden;

    min-height: 100vh;
    min-height: 100svh;

    display: flex;
    align-items: center;

    padding: var(--section-space) 0;

    background:
        linear-gradient(135deg,
            #fff8f1 0%,
            #ffffff 100%);
}

.page-banner::before {
    content: "";
    position: absolute;

    width: clamp(320px, 35vw, 480px);
    height: clamp(320px, 35vw, 480px);

    border-radius: 50%;

    background: rgba(239, 144, 45, .07);

    top: -45%;
    left: -15%;
}

.page-banner::after {
    content: "";
    position: absolute;

    width: clamp(250px, 28vw, 360px);
    height: clamp(250px, 28vw, 360px);

    border-radius: 50%;

    background: rgba(239, 144, 45, .05);

    bottom: -30%;
    right: -10%;
}

.banner-container {

    position: relative;
    z-index: 2;

    width: 100%;

    display: grid;
    grid-template-columns: 1.05fr .95fr;

    align-items: center;

    gap: clamp(20px, 3vw, 40px);

}

.banner-content {
    position: relative;
}

.banner-content .section-tag {

    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 12px 24px;

    border-radius: 999px;

    background: #fff;

    color: #ef902d;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: .08em;

    box-shadow:
        0 12px 30px rgba(239, 144, 45, .15);

}

.banner-content h1 {

    margin: 20px 0;

    font-size: clamp(36px, 4vw, 52px);

    line-height: 1.05;

    font-weight: 800;

    color: #111827;

    letter-spacing: -1px;

}

.banner-content h1 span {
    color: #ef902d;
}

.banner-content p {

    max-width: 560px;

    font-size: clamp(15px, 1.1vw, 17px);

    line-height: 1.8;

    color: #6b7280;

    margin-bottom: 22px;

}

.banner-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 16px;

}

.banner-buttons .btn-fill,
.banner-buttons .btn-outline {

    min-width: 190px;

    justify-content: center;

    padding: 13px 24px;

    font-size: 15px;

}

.banner-image {

    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;

}

.banner-image img {

    width: 100%;

    max-width: 620px;

    height: clamp(360px, 52vh, 560px);

    object-fit: cover;

    display: block;

    border-radius: 28px;

    box-shadow:
        0 35px 80px rgba(0, 0, 0, .16);

    transition: .45s ease;

}

.banner-image:hover img {

    transform:
        translateY(-8px) scale(1.02);

}

/*==============================
        FLOATING STATS
==============================*/

.hero-stat {

    position: absolute;

    min-width: 135px;

    padding: 18px 22px;

    text-align: center;

    border-radius: 20px;

    background: #fff;

    box-shadow:
        0 20px 45px rgba(0, 0, 0, .12);

    transition: .35s ease;

}

.hero-stat strong {

    display: block;

    font-size: 24px;

    color: #ef902d;

    font-weight: 800;

    line-height: 1;

    margin-bottom: 5px;

}

.hero-stat span {

    font-size: 13px;

    color: #6b7280;

    font-weight: 600;

}

.hero-stat:hover {
    transform: translateY(-6px);
}

.stat-one {

    top: 6%;

    left: -6%;

}

.stat-two {

    top: 45%;

    right: -6%;

}

.stat-three {

    bottom: 5%;

    left: 50%;

    transform: translateX(-50%);

}

.stat-three:hover {

    transform:
        translateX(-50%) translateY(-6px);

}

/*==============================
        DECORATION
==============================*/

.banner-content::before {

    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(239, 144, 45, .18),
            transparent 70%);

    left: -120px;
    top: 90px;

    z-index: -1;

}

.banner-content::after {

    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(239, 144, 45, .10),
            transparent 70%);

    right: 20px;
    bottom: -80px;

    z-index: -1;

}

/*==================================================
                TABLET
==================================================*/

@media(max-width:991px) {

    .page-banner {

        min-height: auto;

        padding: 110px 0 70px;

    }

    .banner-container {

        grid-template-columns: 1fr;

        text-align: center;

    }

    .banner-content p {

        margin-inline: auto;

    }

    .banner-buttons {

        justify-content: center;

    }

    .banner-image {

        max-width: 700px;

        margin: auto;

    }

    .banner-image img {

        height: 520px;

    }

    .hero-stat {

        display: none;

    }

}

/*==================================================
                MOBILE
==================================================*/

@media(max-width:576px) {

    .page-banner {

        padding: 90px 0 50px;

    }

    .banner-content h1 {

        font-size: 38px;

    }

    .banner-content p {

        font-size: 15px;

    }

    .banner-buttons {

        flex-direction: column;

    }

    .banner-buttons a {

        width: 100%;

    }

    .banner-image img {

        height: 380px;

    }

}

/*==================================================
            EXTRA SMALL
==================================================*/

@media(max-width:400px) {

    .banner-content h1 {

        font-size: 32px;

    }

    .banner-image img {

        height: 340px;

    }

}

@media(max-width:320px) {

    .banner-content h1 {

        font-size: 28px;

    }

    .banner-image img {

        height: 300px;

    }

}

/*==================================================
        ABOUT PAGE - ABOUT INTRO
==================================================*/

.about-intro {

    position: relative;

    min-height: 100vh;
    min-height: 100svh;

    display: flex;
    align-items: center;

    padding: var(--section-space) 0;

    background: #ffffff;

    overflow: hidden;

}

.about-intro::before {

    content: "";

    position: absolute;

    width: clamp(350px, 40vw, 520px);
    height: clamp(350px, 40vw, 520px);

    border-radius: 50%;

    background: rgba(239, 144, 45, .05);

    top: -35%;
    right: -10%;

}

.about-intro-container {

    position: relative;

    z-index: 2;

    width: 100%;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: clamp(35px, 5vw, 80px);

    align-items: center;

}

/*==============================
        LEFT IMAGE
==============================*/

.about-left {

    position: relative;

}

.about-left::before {

    content: "";

    position: absolute;

    inset: 40px;

    border: 2px dashed rgba(239, 144, 45, .20);

    border-radius: 32px;

    transform: rotate(-4deg);

    z-index: 0;

}

.about-left img {

    position: relative;

    width: 100%;

    height: clamp(330px, 48vh, 500px);

    object-fit: cover;

    display: block;

    border-radius: 30px;

    z-index: 2;

    box-shadow:
        0 30px 70px rgba(15, 23, 42, .15);

    transition: .45s ease;

}

.about-left:hover img {

    transform:
        translateY(-8px) scale(1.02);

}

/*==============================
        RIGHT CONTENT
==============================*/

.about-right {

    position: relative;

}

.about-right .section-tag {

    display: inline-flex;

    align-items: center;

    padding: 12px 24px;

    border-radius: 999px;

    background: #fff7ef;

    color: #ef902d;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: .08em;

    margin-bottom: 22px;
    margin-top: 22px;
}

.about-right h2 {

    font-size: clamp(30px, 3.5vw, 44px);

    line-height: 1.1;

    font-weight: 800;

    color: #111827;

    margin-bottom: 20px;

}

.about-right h2 span {

    color: #ef902d;

}

.about-right p {

    font-size: clamp(15px, 1.1vw, 17px);

    line-height: 1.8;

    color: #6b7280;

    margin-bottom: 30px;

}

/*==============================
        FEATURES
==============================*/

.about-points {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 14px;

}

.about-points>div {

    display: flex;

    align-items: flex-start;

    gap: 14px;

    padding: 16px;

    border-radius: 18px;

    background: #fff;

    border: 1px solid rgba(239, 144, 45, .10);

    box-shadow:
        0 18px 45px rgba(15, 23, 42, .08);

    transition: .35s ease;

}

.about-points>div:hover {

    transform: translateY(-8px);

    border-color: rgba(239, 144, 45, .30);

    box-shadow:
        0 28px 60px rgba(239, 144, 45, .15);

}

.about-points i {

    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 16px;

    background:
        linear-gradient(135deg,
            #ef902d,
            #ffb347);

    color: #fff;

    font-size: 20px;

}

.about-points strong {

    display: block;

    font-size: 16px;

    color: #111827;

    margin-bottom: 6px;

}

.about-points small {

    display: block;

    color: #6b7280;

    font-size: 13px;

    line-height: 1.6;

}

/*==============================
        DECORATION
==============================*/

.about-right::after {

    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(239, 144, 45, .10),
            transparent 70%);

    right: -100px;
    bottom: -80px;

    z-index: -1;

}

/*==============================
        ANIMATION
==============================*/

.about-left,
.about-right,
.about-points>div {

    transition: .35s ease;

}

/*==================================================
                TABLET
==================================================*/

@media(max-width:991px) {

    .about-intro {

        min-height: auto;

        padding: 90px 0;

    }

    .about-intro-container {

        grid-template-columns: 1fr;

        gap: 50px;

    }

    .about-right {

        text-align: center;

    }

    .about-right p {

        margin-left: auto;
        margin-right: auto;

    }

}

/*==================================================
                MOBILE
==================================================*/

@media(max-width:576px) {

    .about-intro {

        padding: 70px 0;

    }

    .about-right h2 {

        font-size: 36px;

    }

    .about-left img {

        height: 360px;

    }

    .about-points {

        grid-template-columns: 1fr;

    }

}

@media(max-width:400px) {

    .about-right h2 {

        font-size: 30px;

    }

    .about-left img {

        height: 320px;

    }

}

@media(max-width:320px) {

    .about-right h2 {

        font-size: 26px;

    }

    .about-left img {

        height: 280px;

    }

}

/*==================================================
        ABOUT PAGE - MISSION & VISION
==================================================*/

.mission {

    position: relative;

    min-height: 100vh;
    min-height: 100svh;

    display: flex;
    align-items: center;

    padding: var(--section-space) 0;

    background:
        linear-gradient(180deg,
            #fff8f1 0%,
            #ffffff 100%);

    overflow: hidden;

}

.mission::before {

    content: "";

    position: absolute;

    width: clamp(320px, 35vw, 450px);
    height: clamp(320px, 35vw, 450px);

    border-radius: 50%;

    background: rgba(239, 144, 45, .06);

    top: -180px;
    left: -180px;

}

.mission::after {

    content: "";

    position: absolute;

    width: clamp(250px, 28vw, 350px);
    height: clamp(250px, 28vw, 350px);

    border-radius: 50%;

    background: rgba(239, 144, 45, .05);

    bottom: -150px;
    right: -120px;

}

.mission-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: clamp(24px, 3vw, 36px);

    align-items: stretch;

    margin-top: clamp(25px, 3vh, 40px);

}

.mission-card {

    position: relative;

    overflow: hidden;

    display: flex;
    flex-direction: column;

    background: rgba(255, 255, 255, .92);

    backdrop-filter: blur(14px);

    border: 1px solid rgba(239, 144, 45, .12);

    border-radius: 24px;

    padding: clamp(18px, 1.5vw, 26px);

    min-height: 320px;

    box-shadow:
        0 18px 45px rgba(15, 23, 42, .08);

    transition: .4s ease;

}

.mission-card:hover {

    transform: translateY(-10px);

    border-color: rgba(239, 144, 45, .30);

    box-shadow:
        0 35px 70px rgba(239, 144, 45, .18);

}

.mission-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 6px;

    background:
        linear-gradient(90deg,
            #ef902d,
            #ffb347);

}

.mission-card::after {

    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    background: rgba(239, 144, 45, .05);

    top: -60px;
    right: -60px;

}

.mission-icon {

    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    margin-bottom: 20px;

    background:
        linear-gradient(135deg,
            #ef902d,
            #ffb347);

    color: #fff;

    font-size: 24px;

    transition: .35s;

}

.mission-card:hover .mission-icon {

    transform: rotate(8deg) scale(1.08);

}

.mission-card h3 {

    font-size: clamp(24px, 2.5vw, 30px);

    color: #111827;

    font-weight: 700;

    margin-bottom: 14px;

}

.mission-card p {

    color: #6b7280;

    font-size: 15px;

    line-height: 1.8;

    margin-bottom: 24px;

}

.mission-card ul {

    list-style: none;

    display: flex;
    flex-direction: column;

    gap: 14px;

    padding: 0;
    margin: 0;

}

.mission-card ul li {

    display: flex;

    align-items: flex-start;

    gap: 12px;

    color: #374151;

    font-size: 15px;

    line-height: 1.6;

    font-weight: 600;

}

.mission-card ul li i {

    width: 26px;
    height: 26px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: #ef902d;

    color: #fff;

    font-size: 11px;

}

/*==================================================
                TABLET
==================================================*/

@media(max-width:991px) {

    .mission {

        min-height: auto;

        padding: 90px 0;

    }

    .mission-grid {

        grid-template-columns: 1fr;

        gap: 28px;

    }

    .mission-card {

        min-height: auto;

    }

}

/*==================================================
                MOBILE
==================================================*/

@media(max-width:576px) {

    .mission {

        padding: 70px 0;

    }

    .mission-card {

        padding: 26px;

    }

    .mission-card h3 {

        font-size: 24px;

    }

    .mission-card p {

        font-size: 14px;

    }

}

@media(max-width:400px) {

    .mission-card {

        padding: 22px;

    }

    .mission-icon {

        width: 56px;
        height: 56px;

        font-size: 20px;

    }

}

/*==================================================
        ABOUT PAGE - JOURNEY
==================================================*/

.journey {

    position: relative;

    padding: clamp(60px, 8vh, 100px) 0;

    background: #ffffff;

    overflow: hidden;

}

.timeline {

    position: relative;

    max-width: 1100px;

    margin: clamp(40px, 6vh, 70px) auto 0;

}

.timeline::before {

    content: "";

    position: absolute;

    left: 50%;

    top: 0;

    width: 4px;

    height: 100%;

    transform: translateX(-50%);

    background:
        linear-gradient(to bottom,
            #ef902d,
            #ffb347);

}

.timeline-item {

    position: relative;

    width: 50%;

    padding: 0 clamp(35px, 4vw, 60px) 70px;

}

.timeline-item:last-child {

    padding-bottom: 0;

}

.timeline-item:nth-child(odd) {

    left: 0;

    text-align: right;

}

.timeline-item:nth-child(even) {

    left: 50%;

}

.timeline-year {

    position: absolute;

    top: 5px;

    width: 82px;
    height: 82px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(135deg,
            #ef902d,
            #ffb347);

    color: #fff;

    font-size: 18px;

    font-weight: 700;

    box-shadow:
        0 18px 40px rgba(239, 144, 45, .30);

    z-index: 5;

    transition: .35s ease;

}

.timeline-item:nth-child(odd) .timeline-year {

    right: -41px;

}

.timeline-item:nth-child(even) .timeline-year {

    left: -41px;

}

.timeline-content {

    position: relative;

    background: #fff;

    border-radius: 28px;

    padding: clamp(26px, 3vw, 38px);

    border: 1px solid rgba(239, 144, 45, .12);

    box-shadow:
        0 20px 50px rgba(15, 23, 42, .08);

    transition: .35s ease;

}

.timeline-content:hover {

    transform: translateY(-8px);

    border-color: rgba(239, 144, 45, .25);

    box-shadow:
        0 30px 60px rgba(239, 144, 45, .15);

}

.timeline-content::before {

    content: "";

    position: absolute;

    width: 16px;
    height: 16px;

    border-radius: 50%;

    background: #ef902d;

    top: 40px;

}

.timeline-item:nth-child(odd) .timeline-content::before {

    right: -68px;

}

.timeline-item:nth-child(even) .timeline-content::before {

    left: -68px;

}

.timeline-content h3 {

    font-size: clamp(24px, 2.5vw, 30px);

    color: #111827;

    font-weight: 700;

    margin-bottom: 14px;

}

.timeline-content p {

    font-size: 16px;

    line-height: 1.8;

    color: #6b7280;

}

.timeline-item:hover .timeline-year {

    transform: scale(1.08);

}

/*==================================================
                TABLET
==================================================*/

@media(max-width:991px) {

    .journey {

        padding: 80px 0;

    }

    .timeline {

        margin-top: 45px;

    }

    .timeline::before {

        left: 40px;

    }

    .timeline-item {

        width: 100%;

        left: 0 !important;

        text-align: left !important;

        padding-left: 100px;

        padding-right: 0;

        padding-bottom: 50px;

    }

    .timeline-year {

        left: 0 !important;

        right: auto !important;

        width: 70px;
        height: 70px;

        font-size: 16px;

    }

    .timeline-content::before {

        left: -48px !important;

        right: auto !important;

    }

}

/*==================================================
                MOBILE
==================================================*/

@media(max-width:576px) {

    .journey {

        padding: 70px 0;

    }

    .timeline {

        margin-top: 35px;

    }

    .timeline-item {

        padding-left: 85px;

        padding-bottom: 40px;

    }

    .timeline-content {

        padding: 24px;

    }

    .timeline-content h3 {

        font-size: 22px;

    }

    .timeline-content p {

        font-size: 15px;

    }

    .timeline-year {

        width: 62px;
        height: 62px;

        font-size: 14px;

    }

}

@media(max-width:400px) {

    .timeline-item {

        padding-left: 75px;

    }

    .timeline-year {

        width: 56px;
        height: 56px;

        font-size: 13px;

    }

    .timeline-content {

        padding: 20px;

    }

}

/*==================================================
                ABOUT PAGE - CTA
==================================================*/

.cta {

    position: relative;

    min-height: 100vh;
    min-height: 100svh;

    display: flex;
    align-items: center;

    padding: var(--section-space) 0;

    background: #ffffff;

}

.cta-box {

    position: relative;

    overflow: hidden;

    width: 100%;

    border-radius: 36px;

    padding: clamp(50px, 7vw, 90px);

    text-align: center;

    background:
        linear-gradient(135deg,
            #ef902d 0%,
            #ffb347 100%);

    color: #fff;

    box-shadow:
        0 35px 80px rgba(239, 144, 45, .28);

}

.cta-box::before {

    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .08);

    top: -220px;
    left: -180px;

}

.cta-box::after {

    content: "";

    position: absolute;

    width: 340px;
    height: 340px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .08);

    bottom: -170px;
    right: -150px;

}

.cta-tag {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 12px 28px;

    border-radius: 999px;

    background: rgba(255, 255, 255, .15);

    backdrop-filter: blur(12px);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: .08em;

    margin-bottom: 24px;

    position: relative;

    z-index: 2;

}

.cta-box h2 {

    position: relative;

    z-index: 2;

    font-size: clamp(34px, 5vw, 60px);

    line-height: 1.15;

    font-weight: 800;

    margin-bottom: 22px;

}

.cta-box p {

    position: relative;

    z-index: 2;

    max-width: 760px;

    margin: 0 auto 42px;

    font-size: clamp(15px, 1.2vw, 18px);

    line-height: 1.8;

    color: rgba(255, 255, 255, .95);

}

.cta-buttons {

    position: relative;

    z-index: 2;

    display: flex;

    justify-content: center;

    gap: 18px;

    flex-wrap: wrap;

}

.cta .btn-fill {

    min-width: 220px;

    background: #ffffff;

    color: #ef902d;

}

.cta .btn-fill:hover {

    background: #111827;

    color: #ffffff;

}

.cta .btn-outline {

    min-width: 220px;

    border: 2px solid rgba(255, 255, 255, .9);

    color: #ffffff;

}

.cta .btn-outline:hover {

    background: #ffffff;

    color: #ef902d;

}

/*==================================================
                TABLET
==================================================*/

@media(max-width:991px) {

    .cta {

        min-height: auto;

        padding: 90px 0;

    }

    .cta-box {

        padding: 60px 40px;

        border-radius: 30px;

    }

    .cta-box h2 {

        font-size: 42px;

    }

}

/*==================================================
                MOBILE
==================================================*/

@media(max-width:576px) {

    .cta {

        padding: 70px 0;

    }

    .cta-box {

        padding: 45px 24px;

        border-radius: 24px;

    }

    .cta-box h2 {

        font-size: 30px;

    }

    .cta-box p {

        font-size: 15px;

        margin-bottom: 30px;

    }

    .cta-buttons {

        flex-direction: column;

    }

    .cta-buttons a {

        width: 100%;

    }

}

@media(max-width:400px) {

    .cta-box {

        padding: 40px 20px;

    }

    .cta-box h2 {

        font-size: 26px;

    }

}

@media(max-width:320px) {

    .cta-box {

        padding: 36px 18px;

    }

    .cta-box h2 {

        font-size: 24px;

    }

}

/*==================================================
        GLOBAL RESPONSIVE
==================================================*/

@media (max-width:1200px) {

    .banner-container,
    .about-intro-container {
        gap: 40px;
    }

}

@media (max-width:991px) {

    .container {
        width: min(92%, 1200px);
    }

    .section-heading {
        margin-bottom: 40px;
    }

}

@media (max-width:768px) {

    .container {
        width: min(94%, 1200px);
    }

    .section-heading h2 {
        font-size: 34px;
    }

    .section-heading p {
        font-size: 15px;
    }

}

@media (max-width:576px) {

    .container {
        width: 92%;
    }

    .section-heading {
        margin-bottom: 30px;
    }

    .section-heading h2 {
        font-size: 30px;
    }

    .section-heading p {
        font-size: 14px;
    }

}

@media (max-width:400px) {

    .container {
        width: 94%;
    }

    .section-heading h2 {
        font-size: 26px;
    }

}

@media (max-width:320px) {

    .container {
        width: 95%;
    }

    .section-heading h2 {
        font-size: 24px;
    }

}