:root {
    --pink: #f5386d;
    --orange: #ff8a1e;
    --gradient: linear-gradient(90deg, #f5386d 0%, #ff8a1e 100%);
    --dark: #1a1a2e;
    --gray: #666;
    --light: #fff8f8;
    --iconBg: #fff3f5;
}

/* ==========================================
   ABOUT HERO
========================================== */

.about-hero {
    padding: 20px 0 0px;
    overflow: hidden;
    background: #fff;
}


/* ==========================================
   BREADCRUMB
========================================== */

.about-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 55px;
}

.about-breadcrumb a,
.about-breadcrumb span {
    font-size: 12px;
    text-decoration: none;
}

.about-breadcrumb a {
    color: #555;
}

.about-breadcrumb span {
    color: var(--pink);
    font-weight: 600;
}

.about-breadcrumb i {
    color: #999;
    font-size: 8px;
}


/* ==========================================
   TAG
========================================== */

.about-tag {
    display: inline-block;
    padding: 7px 18px;

    color: var(--pink);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;

    border-radius: 30px;

    background: #fff0f4;
}


/* ==========================================
   HEADING
========================================== */

.about-hero-content h1 {
    margin: 25px 0 0;

    color: var(--dark);

    font-size: 48px;
    font-weight: 700;
    line-height: 1.25;
}

.about-hero-content h1 span {
    background: var(--gradient);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* ==========================================
   LINE
========================================== */

.about-title-line {
    width: 55px;
    height: 3px;

    margin: 15px 0;

    border-radius: 20px;

    background: var(--gradient);
}


/* ==========================================
   PARAGRAPH
========================================== */

.about-hero-content>p {
    max-width: 540px;

    color: #555;

    font-size: 14px;
    line-height: 2;

    margin-bottom: 30px;
}


/* ==========================================
   BUTTONS
========================================== */

.about-hero-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 18px;
}

.about-gradient-btn,
.about-outline-btn {
    padding: 15px 25px;

    border-radius: 7px;

    font-size: 13px;
    font-weight: 600;

    transition: .3s;
}

.about-gradient-btn {
    color: #fff;

    border: none;

    background: var(--gradient);

    box-shadow:
        0 10px 25px rgba(245, 56, 109, .20);
}

.about-gradient-btn:hover {
    color: #fff;
    transform: translateY(-3px);
}

.about-outline-btn {
    color: var(--pink);

    border: 1.5px solid var(--pink);

    background: #fff;
}

.about-outline-btn:hover {
    color: #fff;
    background: var(--pink);
}


/* ==========================================
   FEATURES
========================================== */

.about-hero-features {
    display: flex;
    align-items: center;

    gap: 35px;

    margin-top: 45px;
}

.about-feature {
    display: flex;
    align-items: center;

    gap: 11px;
}

.about-feature-icon {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff2f5;

    box-shadow:
        0 5px 18px rgba(245, 56, 109, .08);
}

.about-feature-icon i {
    color: var(--pink);
    font-size: 18px;
}

.about-feature strong {
    display: block;

    color: var(--dark);

    font-size: 12px;
    font-weight: 700;
}

.about-feature span {
    display: block;

    margin-top: 3px;

    color: #666;

    font-size: 9px;
}


/* ==========================================
   RIGHT VISUAL
========================================== */

.about-hero-visual {
    position: relative;

    min-height: 427px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-visual::before {
    content: "";

    position: absolute;

    width: 520px;
    height: 420px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(245, 56, 109, .12),
            transparent 68%);
}

.about-hero-image {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 650px;

    object-fit: contain;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 991px) {

    .about-hero-content {
        text-align: center;
    }

    .about-title-line {
        margin-left: auto;
        margin-right: auto;
    }

    .about-hero-content>p {
        margin-left: auto;
        margin-right: auto;
    }

    .about-hero-buttons,
    .about-hero-features {
        justify-content: center;
    }

    .about-hero-visual {
        min-height: auto;
        margin-top: 30px;
    }

}


@media (max-width: 576px) {

    .about-breadcrumb {
        margin-bottom: 35px;
    }

    .about-hero-content h1 {
        font-size: 31px;
    }

    .about-hero-features {
        display: grid;
        grid-template-columns: repeat(3, 1fr);

        gap: 8px;
    }

    .about-feature {
        flex-direction: column;
        text-align: center;
    }

    .about-feature span {
        font-size: 8px;
    }

}

/* =====================================================
   WHO WE ARE
===================================================== */

.about-company {
    background: #fff;
}

.about-company-visual {
    position: relative;

    min-height: 480px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.about-company-image {
    width: 100%;
    max-width: 580px;

    object-fit: contain;
}


/* =====================================================
   EXPERIENCE CARD
===================================================== */

.experience-card {
    position: absolute;

    right: 25px;
    bottom: 35px;

    display: flex;
    align-items: center;

    gap: 15px;

    padding: 18px 25px;

    background: #fff;

    border-radius: 12px;

    box-shadow:
        0 15px 40px rgba(31, 35, 48, 0.12);
}

.experience-icon {
    width: 50px;
    height: 50px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff1f5;
}

.experience-icon i {
    color: var(--pink);
    font-size: 22px;
}

.experience-card h3 {
    margin: 0;

    color: var(--pink);

    font-size: 28px;
    font-weight: 800;
}

.experience-card span {
    color: #555;

    font-size: 11px;
    line-height: 1.5;
}


/* =====================================================
   WHO WE ARE CONTENT
===================================================== */

.about-section-tag {
    display: inline-block;

    color: var(--pink);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.5px;

    margin-bottom: 5px;
}

.about-company-content h2 {
    color: var(--dark);

    font-size: 36px;
    font-weight: 700;

    line-height: 1.35;

    margin: 0;
}

.about-company-content h2 span {
    background: var(--gradient);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-small-line {
    width: 50px;
    height: 3px;

    margin: 12px 0;

    border-radius: 20px;

    background: var(--gradient);
}

.about-company-content>p {
    color: #666;

    font-size: 13px;

    line-height: 1.9;

    margin-bottom: 15px;
}


/* =====================================================
   COMPANY POINTS
===================================================== */

.about-company-points {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;

    margin-top: 30px;
}

.company-point {
    display: flex;

    align-items: flex-start;

    gap: 13px;

    padding: 16px;

    border: 1px solid #f2e9eb;

    border-radius: 10px;

    background: #fff;

    transition: 0.35s ease;
}

.company-point:hover {
    transform: translateY(-4px);

    box-shadow:
        0 12px 30px rgba(245, 56, 109, 0.08);
}

.company-point-icon {
    width: 42px;
    height: 42px;

    min-width: 42px;

    border-radius: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff1f5;
}

.company-point-icon i {
    color: var(--pink);

    font-size: 17px;
}

.company-point h5 {
    color: var(--dark);

    font-size: 13px;
    font-weight: 700;

    margin-bottom: 5px;
}

.company-point span {
    display: block;

    color: #666;

    font-size: 10px;

    line-height: 1.6;
}


/* =====================================================
   ABOUT IMPACT
===================================================== */

.about-impact {
    padding: 30px 0;

    background: #fff;
}

.about-impact-wrapper {
    overflow: hidden;

    border-radius: 16px;

    background:
        linear-gradient(110deg,
            #fff7f9 0%,
            #fff0f4 55%,
            #fff8f5 100%);

    box-shadow:
        0 10px 35px rgba(31, 35, 48, 0.05);
}


/* =====================================================
   IMPACT ITEM
===================================================== */

.about-impact-item {
    min-height: 190px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 25px 15px;

    border-right: 1px solid rgba(245, 56, 109, 0.12);
}

.about-impact-icon {
    width: 50px;
    height: 50px;

    margin-bottom: 13px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff;
}

.about-impact-icon i {
    color: var(--pink);

    font-size: 21px;
}

.about-impact-item h2 {
    margin: 0 0 8px;

    font-size: 32px;
    font-weight: 800;

    background: var(--gradient);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-impact-item span {
    color: #333;

    font-size: 12px;
    font-weight: 600;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .about-company-visual {
        min-height: auto;
    }

    .about-company-content {
        text-align: center;
    }

    .about-small-line {
        margin-left: auto;
        margin-right: auto;
    }

    .about-impact-item {
        border-bottom:
            1px solid rgba(245, 56, 109, 0.12);
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 576px) {

    .about-company-content h2 {
        font-size: 27px;
    }

    .about-company-points {
        grid-template-columns: 1fr;
    }

    .experience-card {
        right: 10px;
        bottom: 10px;

        padding: 12px 16px;
    }

    .experience-icon {
        width: 42px;
        height: 42px;
    }

    .experience-card h3 {
        font-size: 23px;
    }

    .about-impact {
        padding-bottom: 45px;
    }

    .about-impact-item {
        min-height: 165px;

        padding: 20px 10px;
    }

    .about-impact-item h2 {
        font-size: 27px;
    }

    .about-impact-item span {
        font-size: 10px;
    }

}

/* =====================================================
   COMMON SECTION HEADING
===================================================== */

.section-heading h2 {
    color: var(--dark);
    font-size: 32px;
    font-weight: 700;
}

.section-heading h2 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title-line {
    width: 52px;
    height: 3px;
    margin-top: 17px;
    border-radius: 20px;
    background: var(--gradient);
}


/* =====================================================
   MISSION & VISION
===================================================== */

.about-purpose {
    background: #fff;
}

.purpose-card {
    position: relative;
    min-height: 330px;
    height: 100%;
    overflow: hidden;

    display: flex;
    align-items: flex-start;
    gap: 25px;

    padding: 40px;

    border: 1px solid #f2e8eb;
    border-radius: 18px;

    transition: 0.35s ease;
}

.mission-card {
    background:
        linear-gradient(135deg,
            #fff5f8 0%,
            #fff 100%);
}

.vision-card {
    background:
        linear-gradient(135deg,
            #fff8f4 0%,
            #fff 100%);
}

.purpose-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 18px 45px rgba(245, 56, 109, 0.08);
}


/* PURPOSE ICON */

.purpose-icon {
    width: 75px;
    height: 75px;
    min-width: 75px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background: #fff;

    box-shadow:
        0 10px 30px rgba(245, 56, 109, 0.1);
}

.purpose-icon i {
    color: white;
    font-size: 29px;
}


/* PURPOSE CONTENT */

.purpose-content {
    position: relative;
    z-index: 2;
}

.purpose-number {
    position: absolute;
    right: 0;
    top: -18px;

    color: rgba(245, 56, 109, 0.07);

    font-size: 90px;
    font-weight: 800;

    line-height: 1;
}

.purpose-content h3 {
    position: relative;

    color: var(--dark);

    font-size: 25px;
    font-weight: 700;

    margin-bottom: 18px;
}

.purpose-content p {
    position: relative;

    color: #666;

    font-size: 13px;
    line-height: 1.9;

    margin-bottom: 25px;
}


/* PURPOSE POINTS */

.purpose-points {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.purpose-points span {
    color: #333;

    font-size: 12px;
    font-weight: 500;
}

.purpose-points i {
    width: 22px;

    color: var(--pink);

    font-size: 11px;
}


/* =====================================================
   CORE VALUES
===================================================== */

.about-values {
    background:
        linear-gradient(180deg,
            #fff 0%,
            #fff9fa 100%);
}

.values-heading-text {
    max-width: 600px;

    margin: 20px auto 0;

    color: #666;

    font-size: 13px;
    line-height: 1.8;
}


/* =====================================================
   VALUE CARD
===================================================== */

.value-card {
    position: relative;

    min-height: 200px;
    height: 100%;

    overflow: hidden;

    padding: 20px 32px;

    border: 1px solid #f0e7e9;
    border-radius: 15px;

    background: #fff;

    transition: 0.35s ease;
}

.value-card:hover {
    transform: translateY(-7px);

    border-color: rgba(245, 56, 109, 0.2);

    box-shadow:
        0 18px 45px rgba(31, 35, 48, 0.07);
}

.value-card:hover h4::after{
    width: 50px;
}


/* VALUE NUMBER */

.value-number {
    position: absolute;

    top: 20px;
    right: 25px;

    color: rgba(245, 56, 109, 0.08);

    font-size: 55px;
    font-weight: 800;

    line-height: 1;
}


/* VALUE ICON */

.value-icon {
    position: relative;

    width: 58px;
    height: 58px;

    margin-bottom: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: #fff1f5;
}

.value-icon i {
    color: var(--pink);

    font-size: 22px;
}


/* VALUE TITLE */

.value-card h4 {
    position: relative;

    color: var(--dark);

    font-size: 18px;
    font-weight: 700;

    margin-bottom: 13px;
}


/* VALUE TEXT */

.value-card p {
    position: relative;

    color: #666;

    font-size: 12px;

    line-height: 1.8;

    margin: 0;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .purpose-card {
        padding: 30px;
    }

    .purpose-icon {
        width: 65px;
        height: 65px;
        min-width: 65px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 576px) {

    .section-heading h2 {
        font-size: 25px;
    }

    .purpose-card {
        flex-direction: column;

        min-height: auto;

        padding: 27px;
    }

    .purpose-icon {
        width: 58px;
        height: 58px;
        min-width: 58px;

        border-radius: 14px;
    }

    .purpose-icon i {
        font-size: 23px;
    }

    .purpose-content h3 {
        font-size: 21px;
    }

    .purpose-number {
        font-size: 65px;
    }

    .value-card {
        min-height: auto;

        padding: 27px;
    }

}

/* =====================================================
   WHY CHOOSE THIXPRO
===================================================== */

.about-why-card {
    overflow: hidden;
    border-radius: 22px;

    background:
        linear-gradient(120deg,
            #fff7f9 0%,
            #fff1f5 55%,
            #fff9f5 100%);

    box-shadow:
        0 15px 45px rgba(31, 35, 48, 0.05);
}

.about-why-content {
    padding: 30px 20px 45px 30px;
}

.about-why-content h2 {
    color: var(--dark);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0;
}

.about-why-content h2 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-why-text {
    max-width: 570px;
    color: #666;
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 15px;
}


/* =====================================================
   WHY GRID
===================================================== */

.about-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 25px;
}

.about-why-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.about-why-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;
    background: #fff;
}

.about-why-icon i {
    color: var(--pink);
    font-size: 17px;
}

.about-why-item h5 {
    color: var(--dark);
    font-size: 13px;
    font-weight: 700;
    margin: 0 0 5px;
}

.about-why-item p {
    color: #666;
    font-size: 10px;
    line-height: 1.6;
    margin: 0;
}


/* =====================================================
   WHY IMAGE
===================================================== */

.about-why-visual {
    min-height: 480px;

    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.about-why-visual img {
    width: 100%;
    max-width: 470px;
    object-fit: contain;
}


/* =====================================================
   INDUSTRIES
===================================================== */

.industries-heading-text {
    max-width: 600px;
    margin: 20px auto 0;

    color: #666;
    font-size: 13px;
    line-height: 1.8;
}

.about-industry-card {
    min-height: 190px;

    padding: 25px 15px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    border: 1px solid #f1e7ea;
    border-radius: 15px;

    background: #fff;

    transition: .35s ease;
}

.about-industry-card:hover {
    transform: translateY(-7px);

    border-color: rgba(245, 56, 109, .2);

    box-shadow:
        0 18px 40px rgba(245, 56, 109, .08);
}

.about-industry-icon {
    width: 62px;
    height: 62px;

    margin-bottom: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff1f5;
}

.about-industry-icon i {
    color: var(--pink);
    font-size: 24px;
}

.about-industry-card h5 {
    color: var(--dark);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 7px;
}

.about-industry-card span {
    color: #777;
    font-size: 10px;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {

    .about-why-content {
        padding: 35px;
    }

    .about-why-visual {
        min-height: auto;
    }

    .about-why-visual img {
        max-width: 350px;
    }

}

@media (max-width: 576px) {

    .about-why-content {
        padding: 27px 20px;
    }

    .about-why-content h2 {
        font-size: 25px;
    }

    .about-why-grid {
        grid-template-columns: 1fr;
    }

    .about-why-visual img {
        max-width: 280px;
    }

    .about-industry-card {
        min-height: 165px;
        padding: 20px 10px;
    }

    .about-industry-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 15px;
    }

    .about-industry-icon i {
        font-size: 20px;
    }

}

/* =====================================================
   TECHNOLOGIES
===================================================== */

.about-technologies {
    background: #fff;
}

.about-tech-slider {
    padding: 15px;

    overflow: hidden;
}

.swiper{
    overflow: visible !important;
}

.about-tech-item {
    min-height: 125px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
    transition: .35s ease;
    border: 1px solid #f1e7ea;

    border-radius: 16px;
    background: #fffafa;
    /* box-shadow: 0 10px 35px rgba(31, 35, 48, .04); */
}

.about-tech-item:hover {
    transform: translateY(-5px);

    box-shadow:
        0 12px 30px rgba(245, 56, 109, .08);
}

.about-tech-item img {
    width: 85%;
    height: 45px;

    object-fit: contain;
}

.about-tech-item span {
    color: var(--dark);

    font-size: 15px;
    font-weight: 600;
}


/* =====================================================
   LEADERSHIP TEAM SLIDER
===================================================== */

.about-team {
    overflow: hidden;

    background:
        linear-gradient(180deg,
            #fff 0%,
            #fff9fa 100%);
}

.team-heading-text {
    max-width: 658px;

    margin: 20px auto 0;

    color: #666;

    font-size: 13px;
    line-height: 1.8;
}


/* =====================================================
   SLIDER
===================================================== */

.team-slider-wrapper {
    position: relative;
}

.aboutTeamSwiper {
    overflow: hidden;

    padding: 10px 5px 30px;
}

.aboutTeamSwiper .swiper-slide {
    height: auto;
}


/* =====================================================
   TEAM CARD
===================================================== */

.about-team-card {
    height: 100%;

    overflow: hidden;

    border: 1px solid #f0e7e9;

    border-radius: 16px;

    background: #fff;

    transition: .35s ease;
}

.about-team-card:hover {
    transform: translateY(-7px);

    border-color: rgba(245, 56, 109, .2);

    box-shadow:
        0 18px 45px rgba(31, 35, 48, .08);
}


/* =====================================================
   IMAGE
===================================================== */

.team-image {
    position: relative;

    height: 300px;

    overflow: hidden;

    background:
        linear-gradient(135deg,
            #fff0f4,
            #fff8f5);
}

.team-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: top center;

    transition: .5s ease;
}

.about-team-card:hover .team-image img {
    transform: scale(1.05);
}


/* =====================================================
   SOCIAL
===================================================== */

.team-social {
    position: absolute;

    right: 15px;
    bottom: 15px;

    opacity: 0;

    transform: translateY(10px);

    transition: .35s ease;
}

.about-team-card:hover .team-social {
    opacity: 1;

    transform: translateY(0);
}

.team-social a {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    border-radius: 50%;

    text-decoration: none;

    background: var(--gradient);

    box-shadow:
        0 8px 20px rgba(245, 56, 109, .25);
}


/* =====================================================
   CONTENT
===================================================== */

.team-content {
    padding: 20px;

    text-align: center;
}

.team-content h4 {
    margin-bottom: 6px;

    color: var(--dark);

    font-size: 16px;
    font-weight: 700;
}

.team-content span {
    color: var(--pink);

    font-size: 11px;
    font-weight: 600;
}


/* =====================================================
   NAVIGATION
===================================================== */

.team-slider-navigation {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 18px;

    margin-top: 15px;
}

.team-prev,
.team-next {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--pink);
    border-radius: 50%;

    color: var(--pink);

    background: #fff;

    transition: .3s ease;
}

.team-prev:hover,
.team-next:hover {
    color: #fff;

    background: var(--gradient);

    border-color: transparent;

    transform: translateY(-3px);
}


/* =====================================================
   PAGINATION
===================================================== */

.team-pagination {
    width: auto !important;
}

.team-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;

    margin: 0 5px !important;

    opacity: 1;

    background: #e5e5e5;
}

.team-pagination .swiper-pagination-bullet-active {
    width: 25px;

    border-radius: 10px;

    background: var(--gradient);
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 576px) {

    .team-image {
        height: 340px;
    }

    .aboutTeamSwiper {
        padding-bottom: 20px;
    }

    .team-prev,
    .team-next {
        width: 40px;
        height: 40px;
    }

}

/* =====================================================
   ABOUT CTA
===================================================== */

.about-cta-wrapper {
    padding: 40px 45px;

    overflow: hidden;

    border-radius: 22px;

    color: #fff;

    background: var(--gradient);

    box-shadow:
        0 18px 45px rgba(245, 56, 109, .2);
}

.about-cta-icon {
    width: 90px;
    height: 90px;

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, .16);
}

.about-cta-icon i {
    color: #fff;

    font-size: 38px;
}

.about-cta-wrapper h2 {
    color: #fff;

    font-size: 27px;
    font-weight: 700;

    margin-bottom: 10px;
}

.about-cta-wrapper p {
    max-width: 620px;

    color: rgba(255, 255, 255, .9);

    font-size: 13px;
    line-height: 1.8;

    margin: 0;
}

.about-cta-btn {
    padding: 14px 23px;

    border-radius: 30px;

    color: var(--pink);

    background: #fff;

    font-size: 13px;
    font-weight: 700;

    white-space: nowrap;
}

.about-cta-btn:hover {
    color: var(--pink);

    background: #fff;

    transform: translateY(-3px);
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {

    .about-cta-wrapper {
        padding: 35px;

        text-align: center;
    }

    .about-cta-icon {
        margin-bottom: 25px;
    }

    .about-cta-wrapper p {
        margin: auto;
    }

}


@media (max-width: 576px) {

    .about-tech-slider {
        padding: 15px;
    }

    .about-tech-item {
        min-height: 110px;
    }

    .team-image {
        height: 330px;
    }

    .about-cta-wrapper {
        padding: 30px 20px;
    }

    .about-cta-icon {
        width: 70px;
        height: 70px;
    }

    .about-cta-icon i {
        font-size: 29px;
    }

    .about-cta-wrapper h2 {
        font-size: 23px;
    }

}

/* =========================================
   ABOUT HERO FEATURES
========================================= */

.about-hero-features {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 20px;
    flex-wrap: wrap;
}


/* =========================================
   FEATURE CARD
========================================= */

.about-feature {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;

    min-width: 238px;
    padding: 12px 18px 12px 12px;

    background: rgba(255, 255, 255, 0.82);

    border: 1px solid rgba(247, 55, 104, 0.10);
    border-radius: 18px;

    box-shadow: none !important;

    overflow: hidden;

    cursor: pointer;

    transition:
        transform 0.4s cubic-bezier(.22, 1, .36, 1),
        box-shadow 0.4s ease,
        border-color 0.4s ease,
        background 0.4s ease;

    animation: featureFadeUp 0.7s ease both;
}


/* Individual animation delay */

.about-feature:nth-child(1) {
    animation-delay: 0.15s;
}

.about-feature:nth-child(2) {
    animation-delay: 0.3s;
}

.about-feature:nth-child(3) {
    animation-delay: 0.45s;
}


/* =========================================
   HOVER CARD
========================================= */

.about-feature:hover {
    transform: translateY(-7px);

    background: #ffffff;

    border-color: rgba(247, 55, 104, 0.25);

    box-shadow:
        0 18px 40px rgba(247, 55, 104, 0.12),
        0 5px 15px rgba(0, 0, 0, 0.05);
}


/* =========================================
   SHINE EFFECT
========================================= */


/* =========================================
   ICON
========================================= */

.about-feature-icon {
    position: relative;

    width: 52px;
    height: 52px;

    min-width: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: linear-gradient(135deg,
            #fff0f5,
            #ffe8ef);

    color: #f53668;

    font-size: 21px;

    transition:
        transform 0.45s cubic-bezier(.22, 1, .36, 1),
        color 0.3s ease,
        box-shadow 0.4s ease;
}


/* =========================================
   ICON HOVER
========================================= */

.about-feature:hover .about-feature-icon {
    transform: scale(1.1) rotate(-6deg);

    color: #ffffff;

    background: linear-gradient(135deg,
            #f73768,
            #ff6b35);

    box-shadow:
        0 10px 25px rgba(247, 55, 104, 0.25);
}


.about-feature:hover .about-feature-icon::before {
    transform: scale(1.18);

    opacity: 0;
}


.about-feature:hover .about-feature-icon::after {
    opacity: 1;

    transform: scale(1);
}


/* =========================================
   TEXT
========================================= */

.about-feature-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.about-feature-content::after {
    content: "";
    position: absolute;
    left: 77px;
    bottom: 13px;
    width: 25%;
    height: 2px;
    background: var(--gradient);
    z-index: 10;
}


.about-feature strong {
    color: #101a35;

    font-size: 15px;
    font-weight: 700;

    line-height: 1.2;

    transition: color 0.3s ease;
}


.about-feature span {
    color: #70788a;

    font-size: 11px;
    font-weight: 500;

    line-height: 1.3;

    white-space: nowrap;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


.about-feature:hover strong {
    color: #f73768;
}


.about-feature:hover span {
    color: #4f5768;
    transform: translateX(2px);
}


/* =========================================
   DIFFERENT FEATURE COLORS
========================================= */


/* Security */

.about-feature:nth-child(2) .about-feature-icon {
    background: linear-gradient(135deg,
            #fff0fa,
            #fbeaff);

    color: #d91cff;
}

.about-feature:nth-child(2):hover .about-feature-icon {
    background: linear-gradient(135deg,
            #d91cff,
            #f737a8);

    color: #ffffff;

    box-shadow:
        0 10px 25px rgba(217, 28, 255, 0.22);
}

.about-feature:nth-child(2) .about-feature-icon::before {
    border-color: rgba(217, 28, 255, 0.14);
}


/* Growth */

.about-feature:nth-child(3) .about-feature-icon {
    background: linear-gradient(135deg,
            #fff4ed,
            #fff0e8);

    color: #ff642b;
}

.about-feature:nth-child(3):hover .about-feature-icon {
    background: linear-gradient(135deg,
            #ff642b,
            #ff982f);

    color: #ffffff;

    box-shadow:
        0 10px 25px rgba(255, 100, 43, 0.22);
}

.about-feature:nth-child(3) .about-feature-icon::before {
    border-color: rgba(255, 100, 43, 0.14);
}


/* =========================================
   ENTRANCE ANIMATION
========================================= */

@keyframes featureFadeUp {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================
   SUBTLE FLOATING ANIMATION
========================================= */

.about-feature-icon {
    animation: iconFloat 3s ease-in-out infinite;
}

.about-feature:nth-child(2) .about-feature-icon {
    animation-delay: 0.5s;
}

.about-feature:nth-child(3) .about-feature-icon {
    animation-delay: 1s;
}


@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }

}


/* Stop floating while hovering */

.about-feature:hover .about-feature-icon {
    animation: none;
}

.about-feature:hover .about-feature-icon i {
    color: white;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .about-hero-features {
        gap: 12px;
        margin-top: 32px;
    }

    .about-feature {
        min-width: 175px;
        padding: 10px 14px 10px 10px;
    }

    .about-feature-icon {
        width: 46px;
        height: 46px;
        min-width: 46px;
        font-size: 18px;
    }

}


@media (max-width: 575px) {

    .about-hero-features {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        width: 100%;
    }

    .about-feature {
        width: 100%;
        min-width: unset;
        padding: 12px;
    }

    .about-feature-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }

}

/* =========================================
   PURPOSE SECTION
========================================= */

.purpose-section {
    padding: 10px 0;
}


/* =========================================
   MAIN CARD
========================================= */

.purpose-card {
    position: relative;
    min-height: 238px;

    padding: 25px 28px 20px 28px;

    background: #ffffff;

    border-radius: 15px;

    overflow: hidden;

    border: 1px solid rgba(40, 60, 150, 0.10);

    box-shadow:
        0 10px 30px rgba(30, 50, 120, 0.08);

    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease;
}


/* =========================================
   LEFT GRADIENT BORDER
========================================= */

.purpose-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 10px;
    height: 100%;

    border-radius: 15px 0 0 15px;

    transition: width 0.4s ease;
}


/* Mission border */

.mission-card::before {
    background: linear-gradient(180deg,
            #ff4545 0%,
            #ff3b75 50%,
            #ff7a00 100%);
}


/* Vision border */

.vision-card::before {
    background: linear-gradient(180deg,
            #6534ff 0%,
            #3159ff 50%,
            #008cff 100%);
}


/* =========================================
   HOVER CARD
========================================= */
/* =========================================
   CARD
========================================= */

.purpose-card {
    position: relative;
    overflow: hidden;
    z-index: 1;

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}


/* =========================================
   LEFT → RIGHT COLOR ANIMATION
========================================= */

.purpose-card::after {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 100%;

    z-index: -1;

    transform: scaleX(0);
    transform-origin: left center;

    transition: transform 0.7s cubic-bezier(0.65, 0, 0.35, 1);
}


/* Mission background */

.mission-card::after {
    background: linear-gradient(90deg,
            #ff4545 0%,
            #ff3b75 50%,
            #ff7a00 100%);
}


/* Vision background */

.vision-card::after {
    background: linear-gradient(90deg,
            #6534ff 0%,
            #3159ff 50%,
            #008cff 100%);
}


/* Hover → fill LEFT to RIGHT */

.mission-card:hover::after,
.vision-card:hover::after {
    transform: scaleX(1);
}


/* =========================================
   CARD HOVER
========================================= */

.mission-card:hover,
.vision-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 18px 40px rgba(30, 50, 120, 0.18);
}


/* =========================================
   TEXT → WHITE
========================================= */



/* =========================================
   HEADING UNDERLINE
========================================= */

.mission-card:hover h3::after,
.vision-card:hover h3::after {
    background: #ffffff;
    width: 65px;
}


/* =========================================
   BORDER
========================================= */

.purpose-card:hover::before {
    width: 13px;
}

/* =========================================
   BACKGROUND DECORATION
========================================= */

.purpose-card::after {
    content: "";

    position: absolute;

    width: 190px;
    height: 190px;

    right: -55px;
    bottom: -90px;

    border-radius: 50% 0 0 0;

    pointer-events: none;

    opacity: 0.8;

    transition:
        transform 0.6s ease,
        opacity 0.5s ease;
}


/* Mission background */

.mission-card::after {
    background: linear-gradient(135deg,
            rgba(255, 70, 100, 0.03),
            rgba(255, 70, 100, 0.15));

    box-shadow:
        -25px -20px 50px rgba(255, 70, 100, 0.05);
}


/* Vision background */

.vision-card::after {
    background: linear-gradient(135deg,
            rgba(60, 100, 255, 0.03),
            rgba(60, 100, 255, 0.15));

    box-shadow:
        -25px -20px 50px rgba(60, 100, 255, 0.05);
}


.purpose-card:hover::after {
    transform: scale(1.25) rotate(8deg);

    opacity: 1;
}


/* =========================================
   ICON
========================================= */

.purpose-icon {

    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #fff;

    font-size: 29px;

    z-index: 3;

    box-shadow: none;

}


/* Mission icon */

.mission-card .purpose-icon {
    background: linear-gradient(135deg,
            #ff3d63,
            #ff244e);

    box-shadow: none;
}


/* Vision icon */

.vision-card .purpose-icon {
    background: linear-gradient(135deg,
            #2387ff,
            #3c28dc);

    box-shadow: none;
}


/* Icon hover */

.purpose-card:hover .purpose-icon {
    /* animation:
        iconRotate 0.7s ease,
        iconFloat 3s ease-in-out infinite; */

    transform: scale(1.08);
}


/* =========================================
   ICON ANIMATION
========================================= */

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}


@keyframes iconRotate {

    0% {
        transform: scale(1) rotate(0deg);
    }

    50% {
        transform: scale(1.15) rotate(-8deg);
    }

    100% {
        transform: scale(1.08) rotate(0deg);
    }
}


/* =========================================
   CONTENT
========================================= */

.purpose-content {
    position: relative;

    z-index: 2;
}


/* =========================================
   NUMBER
========================================= */

.purpose-number {
    position: absolute;

    right: 0;
    top: -18px;

    font-size: 72px;

    line-height: 1;

    font-weight: 800;

    letter-spacing: -3px;

    user-select: none;

    opacity: 0.18;

    transition:
        transform 0.5s ease,
        opacity 0.5s ease;
}


/* Mission number */

.mission-card .purpose-number {
    color: #ff315d;
}


/* Vision number */

.vision-card .purpose-number {
    color: #416cff;
}


/* Number hover */

.purpose-card:hover .purpose-number {
    transform: translateY(-5px) scale(1.05);

    opacity: 0.25;
}


/* =========================================
   HEADING
========================================= */

.purpose-content h3 {
    position: relative;

    margin: 0 0 10px;

    padding-bottom: 9px;

    font-size: 26px;

    line-height: 1.2;

    font-weight: 700;

    color: #10275f;
}


/* Small line under heading */

.purpose-content h3::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 38px;
    height: 3px;

    border-radius: 10px;

    transition:
        width 0.4s ease;
}


.mission-card h3::after {
    background: linear-gradient(90deg,
            #ff315d,
            #ff7a00);
}


.vision-card h3::after {
    background: linear-gradient(90deg,
            #6435ff,
            #1688ff);
}


.purpose-card:hover h3::after {
    width: 65px;
}


/* =========================================
   PARAGRAPH
========================================= */

.purpose-content p {
    margin: 0 0 12px;

    max-width: 390px;

    font-size: 13px;

    line-height: 1.55;

    color: #49617f;
}


/* =========================================
   POINTS
========================================= */

.purpose-points {
    display: flex;

    flex-direction: column;

    gap: 5px;
}


.purpose-points span {
    display: flex;

    align-items: center;

    gap: 8px;

    font-size: 12px;

    font-weight: 500;

    color: #243c61;

    transition:
        transform 0.3s ease,
        color 0.3s ease;
}


.purpose-points span:hover {
    transform: translateX(5px);
}


/* =========================================
   CHECK ICON
========================================= */

.purpose-points i {
    width: 15px;
    height: 15px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #ffffff;

    font-size: 8px;

    flex-shrink: 0;
}


/* Mission check */

.mission-card .purpose-points i {
    background: #ff3860;

    box-shadow:
        0 3px 8px rgba(255, 56, 96, 0.25);
}


/* Vision check */

.vision-card .purpose-points i {
    background: #5b36ed;

    box-shadow:
        0 3px 8px rgba(91, 54, 237, 0.25);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .purpose-card {
        min-height: 245px;
    }

}


@media (max-width: 575px) {

    .purpose-card {
        padding: 250px 22px 25px;

        min-height: auto;
    }

    .purpose-icon {
        left: 22px;
        top: 25px;
    }

    .purpose-number {
        right: 20px;
        top: 25px;

        font-size: 58px;
    }

    .purpose-content h3 {
        font-size: 23px;
    }

    .purpose-content p {
        max-width: 100%;

        font-size: 13px;
    }

}

.value-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 5px;
    height: 100%;

    border-radius: 15px 0 0 15px;

    transition: width 0.4s ease;
}


/* Mission border */

.value-card::before {
    background: linear-gradient(180deg,
            #ff4545 0%,
            #ff3b75 50%,
            #ff7a00 100%);
}

.value-card h4::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -5px;

    width: 30px;
    height: 2px;

    border-radius: 10px;

    transition:
        width 0.4s ease;
}


.value-card h4::after {
    background: linear-gradient(90deg,
            #ff315d,
            #ff7a00);
}

/* =========================================
   WHY CHOOSE US GRID
========================================= */

.about-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
}


/* =========================================
   CARD
========================================= */

.about-why-item {
    position: relative;
    min-height: 135px;
    padding: 16px 14px 13px;
    background: rgba(255, 255, 255, 0.9);

    border: 1px solid rgba(230, 230, 240, 0.75);
    border-radius: 12px;

    box-shadow:
        0 5px 18px rgba(45, 45, 90, 0.06);

    overflow: hidden;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;

    opacity: 0;
    animation: cardFadeUp 0.7s ease forwards;
}


/* Stagger animation */

.about-why-item:nth-child(1) {
    animation-delay: 0.1s;
}

.about-why-item:nth-child(2) {
    animation-delay: 0.2s;
}

.about-why-item:nth-child(3) {
    animation-delay: 0.3s;
}

.about-why-item:nth-child(4) {
    animation-delay: 0.4s;
}

.about-why-item:nth-child(5) {
    animation-delay: 0.5s;
}

.about-why-item:nth-child(6) {
    animation-delay: 0.6s;
}


/* =========================================
   CARD TOP GLOW
========================================= */

.about-why-item::before {
    content: "";
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.9),
        transparent
    );

    transform: translateX(-100%);

    transition: transform 0.6s ease;
}


/* =========================================
   CARD HOVER
========================================= */

.about-why-item:hover {
    transform: translateY(-7px);

    border-color: rgba(100, 100, 200, 0.15);

    box-shadow:
        0 14px 30px rgba(45, 45, 90, 0.12);
}

.about-why-item:hover::before {
    transform: translateX(100%);
}


/* =========================================
   ICON
========================================= */

.about-why-icon {
    width: 43px;
    height: 43px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 0px;

    font-size: 19px;

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}


/* Icon hover */

.about-why-item:hover .about-why-icon {
    transform: translateY(-3px) scale(1.08) rotate(5deg);

    box-shadow:
        0 8px 18px rgba(80, 80, 120, 0.15);
}


/* =========================================
   ICON COLORS
========================================= */

.icon-pink {
    color: #f62f73;

    background: linear-gradient(
        135deg,
        #ffeaf1,
        #ffdbe8
    );
}

.icon-orange {
    color: #ff8517;

    background: linear-gradient(
        135deg,
        #fff1df,
        #ffe3c5
    );
}

.icon-purple {
    color: #6534ef;

    background: linear-gradient(
        135deg,
        #eee8ff,
        #e2d8ff
    );
}

.icon-blue {
    color: #1769e8;

    background: linear-gradient(
        135deg,
        #e9f2ff,
        #dceaff
    );
}

.icon-green {
    color: #00b878;

    background: linear-gradient(
        135deg,
        #e3faf2,
        #cef5e7
    );
}

.icon-red {
    color: #f52d71;

    background: linear-gradient(
        135deg,
        #ffe8f0,
        #ffd8e5
    );
}


/* =========================================
   CONTENT
========================================= */

.about-why-content-box {
    width: 100%;
}


/* =========================================
   HEADING
========================================= */

.about-why-content-box h5 {
    position: relative;

    display: inline-block;

    margin: 0 0 5px;

    padding-bottom: 5px;

    color: #18254b;

    font-size: 14px;
    font-weight: 700;

    line-height: 1.2;
}


/* Heading underline */

.about-why-content-box h5::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 17px;
    height: 2px;

    border-radius: 10px;

    background: #e72f6f;

    transition:
        width 0.35s ease;
}


/* Expand underline on hover */

.about-why-item:hover .about-why-content-box h5::after {
    width: 32px;
}


/* =========================================
   DESCRIPTION
========================================= */

.about-why-content-box p {
    margin: 0;

    color: #62687a;

    font-size: 12px;
    line-height: 1.55;

    max-width: 210px;
}


/* =========================================
   ENTRANCE ANIMATION
========================================= */

@keyframes cardFadeUp {

    0% {
        opacity: 0;
        transform: translateY(25px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================
   ICON FLOAT ANIMATION
========================================= */

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}


/* Optional continuous icon animation */

.about-why-icon {
    animation: iconFloat 3s ease-in-out infinite;
}


/* =========================================
   RESPONSIVE - TABLET
========================================= */

@media (max-width: 991px) {

    .about-why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .about-why-item {
        min-height: 140px;
    }

}


/* =========================================
   RESPONSIVE - MOBILE
========================================= */

@media (max-width: 576px) {

    .about-why-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .about-why-item {
        min-height: auto;

        padding: 16px;
    }

    .about-why-icon {
        width: 45px;
        height: 45px;

        font-size: 19px;
    }

    .about-why-content-box h5 {
        font-size: 14px;
    }

    .about-why-content-box p {
        max-width: 100%;
        font-size: 11px;
    }
}


/* =========================================
   REDUCE MOTION ACCESSIBILITY
========================================= */

@media (prefers-reduced-motion: reduce) {

    .about-why-item,
    .about-why-icon {
        animation: none;
        opacity: 1;
    }

    .about-why-item,
    .about-why-icon {
        transition: none;
    }
}