/* GLOBAL SAFETY */
html, body {
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}


/* ========================================
ABOUT HERO – UPDATED DESIGN
======================================== */

.about-hero {
    position: relative;
    padding: 140px 20px 120px 20px;
    background-image: url("/about-page/hero-bg.png");
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* LIGHT PURPLE OVERLAY */
.about-overlay {
    position: absolute;
    inset: 0;
    background: rgba(155, 94, 182, 0.35); /* light tint */
}

/* CONTAINER */
.about-container {
    position: relative;
    max-width: 1250px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
    z-index: 2;
}

/* LEFT CONTENT */

.about-left {
    flex: 1;
    color: #410068;
}

.about-badge {
    display: inline-block;
    background: #6D3091;
    color: #fff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 20px;
    border: 1px solid #FFF100;
}


.about-left h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #410068;
}

.about-left p {
    font-size: 24px;
    line-height: 1.6;
    max-width: 500px;
    margin-bottom: 35px;
    color: #410068;
}

/* BUTTONS */

.about-buttons {
    display: flex;
    gap: 20px;
}

.about-buttons .btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
}

.btn-whatsapp {
    background-color: #4bce31;
    color: azure;
}

.btn-call {
    background-color: #1B75BB;
    color: aliceblue;
}

/* RIGHT SIDE CHECKLIST */

.about-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* LONG PILL STYLE */

.about-check {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 25px;
    border-radius: 40px;
    border: 1.5px solid rgba(65, 0, 104, 0.4);
    background: rgba(255,255,255,0.4);
    font-size: 16px;
    color: #410068;
}

/* GREEN CHECK ICON */

.check-icon {
    background: #25D366;
    color: #fff;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}




/* ========================================
WHO WE ARE SECTION
======================================== */

.who-section {
    padding: 120px 20px;
    background: #f4f4f6;
}

.who-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    flex-wrap: wrap;
}

/* IMAGE */

.who-image {
    flex: 1;
    min-width: 320px;
    max-width: 520px;
}

.who-image img {
    width: 100%;
    border-radius: 40px;
    display: block;
}

/* CONTENT */

.who-content {
    flex: 1;
    min-width: 320px;
}

.who-content h2 {
    font-size: 44px;
    font-weight: 700;
    color: #410068;
    margin-bottom: 20px;
}

.who-content p {
    font-size: 24px;
    line-height: 1.7;
    color: #641991;
    margin-bottom: 35px;
    max-width: 500px;
}

.who-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #6D3091;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s ease;
}

.who-btn:hover {
    background: #410068;
}



/* ========================================
MISSION & VISION SECTION
======================================== */

.mission-section {
    padding: 120px 20px;
    background: 
    url("/about-page/mission.png"); /* optional bg image */
    background-size: cover;
    background-position: center;
}

.mission-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Card Base */

.mission-card {
    flex: 1;
    min-width: 320px;
    padding: 50px;
    border-radius: 35px;
    color: #fff;
    box-shadow: 0 20px 40px rgba(65, 0, 104, 0.15);
}

/* Left Dark Card */

.mission-left {
    background: #4b0076;
}

/* Right Slightly Lighter */

.mission-right {
    background: #6D3091;
}

/* Text */

.mission-card h3 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.mission-card p {
    font-size: 24px;
    line-height: 1.7;
    max-width: 480px;
}




/* ========================================
CORE VALUES SECTION
======================================== */

.values-section {
    padding: 120px 20px;
    background: linear-gradient(
        rgba(155, 94, 182, 0.15),
        rgba(155, 94, 182, 0.15)
    );
    position: relative;
    overflow: hidden;
}

.values-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    position: relative;
    align-items: start;
}


/* DOTTED CONNECTOR */

.values-curve {
    position: absolute;
    top: -2rem;
    left: 0;
    width: 100%;
    height: 160px;
    z-index: 1;
    pointer-events: none;
}

.values-curve svg {
    width: 100%;
    height: 100%;
}

@media (max-width: 992px){
    .values-container{
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .values-curve{
        display: none;
    }
}


/* Value Item */

.value-item {
    flex: 1;
    position: relative;
    z-index: 2;
}

/* Icon Box */

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px auto;
    background: #6D3091;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon img {
    width: 32px;
    height: 32px;
}

/* Title */

.value-item h4 {
    font-size: 22px;
    color: #410068;
    margin-bottom: 8px;
}

/* Description */

.value-item p {
    font-size: 14px;
    color: #5a2b7a;
}





/* ========================================
ABOUT PAGE FINAL CTA
======================================== */

.about-cta {
    position: relative;
    padding: 120px 20px;
    background-image: url("about-page/cta-bg.png"); /* your bg image */
    background-size: cover;
    background-position: center;
}

.about-cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(155, 94, 182, 0.25);
}

.about-cta-container {
    position: relative;
    max-width: 1200px;
    margin: auto;
    z-index: 2;
}

.about-cta-card {
    background: linear-gradient(135deg, #5a0b87, #7a39a6);
    border-radius: 35px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    box-shadow: 0 30px 60px rgba(65, 0, 104, 0.2);
    flex-wrap: wrap;
}

/* LEFT */

.about-cta-left {
    flex: 1;
    min-width: 360px;
    color: #fff;
}

.about-cta-left h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-cta-left p {
    font-size: 15px;
    line-height: 1.6;
    max-width: 500px;
}

/* RIGHT */

.about-cta-right {
    flex: 1;
    min-width: 320px;
}

.about-cta-form label {
    color: #fff;
    font-size: 14px;
    display: block;
    margin-bottom: 8px;
}

.input-group {
    display: flex;
    background: rgba(255,255,255,0.15);
    border-radius: 30px;
    overflow: hidden;
}

.input-group input {
    flex: 1;
    padding: 14px 18px;
    border: none;
    outline: none;
    background: transparent;
    color: #fff;
    font-size: 14px;
}

.input-group input::placeholder {
    color: rgba(255,255,255,0.8);
}

.input-group button {
    background: #fff;
    color: #6D3091;
    border: none;
    padding: 0 25px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.input-group button:hover {
    background: #f3f3f3;
}

.about-cta-form small {
    display: block;
    margin-top: 8px;
    color: rgba(255,255,255,0.8);
    font-size: 12px;
}


@media (max-width: 992px) {

    .about-cta-card {
        flex-direction: column;
        text-align: center;
        padding: 50px 40px;
    }

    .about-cta-left p {
        margin-left: auto;
        margin-right: auto;
    }
}


@media (max-width: 768px) {

    .about-cta {
        padding: 80px 15px;
    }

    .about-cta-card {
        padding: 35px 25px;
        border-radius: 25px;
    }

    .about-cta-left h2 {
        font-size: 24px;
    }

    .about-cta-left p {
        font-size: 15px;
    }

    .input-group {
        flex-direction: column;
        border-radius: 15px;
    }

    .input-group input {
        padding: 12px;
    }

    .input-group button {
        padding: 12px;
        width: 100%;
    }
}


@media (max-width: 1200px) {

    .about-container,
    .who-container,
    .mission-container,
    .about-cta-container {
        max-width: 95%;
    }

    .about-left h1,
    .who-content h2 {
        font-size: 38px;
    }

    .about-left p,
    .who-content p,
    .mission-card p {
        font-size: 20px;
    }

    .mission-card h3 {
        font-size: 32px;
    }
}


@media (max-width: 992px) {

    /* HERO */
    .about-container {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .about-right {
        align-items: center;
    }

    .about-check {
        max-width: 500px;
        justify-content: center;
        text-align: center;
    }

    .about-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    /* WHO SECTION */
    .who-container {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }

    .who-content p {
        margin-left: auto;
        margin-right: auto;
    }

    /* MISSION */
    .mission-container {
        flex-direction: column;
        gap: 40px;
    }

    .mission-card {
        text-align: center;
    }

    .mission-card p {
        margin-left: auto;
        margin-right: auto;
    }

    /* VALUES */
    .values-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .values-curve {
        display: none;
    }

    /* CTA */
    .about-cta-card {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .about-cta-left p {
        margin-left: auto;
        margin-right: auto;
    }
}


@media (max-width: 768px) {

    /* SECTION PADDING */
    .about-hero,
    .who-section,
    .mission-section,
    .values-section,
    .about-cta {
        padding: 80px 15px;
    }

    /* HERO */
    .about-left h1 {
        font-size: 28px;
    }

    .about-left p {
        font-size: 16px;
    }

    .about-check {
        font-size: 14px;
        padding: 10px 18px;
    }

    .about-buttons .btn {
        width: 100%;
        justify-content: center;
        font-size: 14px;
    }

    /* WHO */
    .who-content h2 {
        font-size: 28px;
    }

    .who-content p {
        font-size: 16px;
    }

    .who-btn {
        width: 100%;
        text-align: center;
    }

    .who-image img {
        border-radius: 25px;
    }

    /* MISSION */
    .mission-card {
        padding: 35px 25px;
        border-radius: 25px;
    }

    .mission-card h3 {
        font-size: 24px;
    }

    .mission-card p {
        font-size: 16px;
    }

    /* VALUES */
    .value-icon {
        width: 60px;
        height: 60px;
    }

    .value-item h4 {
        font-size: 18px;
    }

    .value-item p {
        font-size: 13px;
    }

    /* CTA */
    .about-cta-card {
        padding: 35px 25px;
        border-radius: 25px;
    }

    .about-cta-left h2 {
        font-size: 22px;
    }

    .about-cta-left p {
        font-size: 14px;
    }

    .input-group {
        flex-direction: column;
        border-radius: 15px;
    }

    .input-group input,
    .input-group button {
        width: 100%;
        padding: 12px;
    }
}


@media (max-width: 480px) {

    .about-left h1,
    .who-content h2 {
        font-size: 24px;
    }

    .mission-card h3 {
        font-size: 20px;
    }

    .about-badge {
        font-size: 12px;
        padding: 5px 12px;
    }
}





/* =========================================
MODERN SCROLL REVEAL SYSTEM
========================================= */

.reveal {
    opacity: 0;
    transform: translateY(60px) scale(0.98);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Direction Variants */

.reveal-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: all 0.9s ease;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(80px);
    transition: all 0.9s ease;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Soft zoom effect */
.reveal-zoom {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.9s ease;
}

.reveal-zoom.active {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delay classes */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }


.values-curve path {
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    transition: stroke-dashoffset 2s ease;
}

.values-curve.active path {
    stroke-dashoffset: 0;
}