/** @format */

.mission-section {
    padding: 80px 20px;
}

.mission-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.mission-content {
    flex: 1;
}

.mission-label {
    color: #e84acb;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 18px;
    display: inline-block;
}

.mission-content h1 {
    font-size: 48px;
    line-height: 1.3;
    color: #262b45;
    margin-bottom: 30px;
    font-weight: 600;
    font-family: inter, sans-serif;
}

.mission-btn {
    display: inline-block;
    padding: 14px 34px;
    background: #e84acb;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
}

.mission-image {
    flex: 1;
    text-align: center;
}

.mission-image img {
    width: 100%;
    max-width: 520px;
}

@media (max-width: 768px) {
    .mission-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .mission-image {
        order: -1;
        width: 100%;
        margin-bottom: 25px;
        text-align: center;
    }

    .mission-content {
        order: 2;
        width: 100%;
        text-align: left;
    }
}

.vision-section {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

.vision-box {
    background: #f4f7fa;
    max-width: 972px;
    width: 100%;
    padding: 60px 70px;
    border-radius: 18px;
    text-align: center;
}

.vision-title {
    font-size: 28px;
    font-weight: 600;
    color: #0b1b33;
    margin-bottom: 25px;
}

.vision-title span {
    background: linear-gradient(90deg, #ff4fd8, #a855f7);
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.vision-box p {
    font-size: 17px;
    line-height: 1.7;
    color: #2b3445;
    max-width: 720px;
    margin: auto;
}

@media (max-width: 768px) {
    .vision-box {
        padding: 40px 30px;
        text-align: justify;
    }

    .vision-title {
        font-size: 24px;
    }

    .vision-box p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .vision-box {
        padding: 30px 22px;
        text-align: justify;
    }

    .vision-title {
        font-size: 22px;
    }

    .vision-box p {
        font-size: 15px;
        line-height: 1.65;
    }
}

.value-section {
    margin: auto;
    padding: 70px 0px;
}

.value-header h2 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 15px;
}

.value-header p {
    max-width: 820px;
    font-size: 18px;
    line-height: 1.6;
    color: #4a5b75;
    margin-bottom: 50px;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.value-card {
    border: 1px solid #f2b4a8;
    border-radius: 12px;
    padding: 30px;
    transition: 0.3s ease;
    background: #fff;
}

.value-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.value-icon {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    margin-right: 14px;
}

.value-head {
    display: flex;
}

.c-btn {
    color: #fff;
}

/* .value-icon img{width:28px;filter:brightness(0) invert(1)} */
.value-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5b75;
}

@media (max-width: 992px) {
    .value-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .value-header h2 {
        font-size: 34px;
    }
}

@media (max-width: 600px) {
    .value-section {
        padding: 50px 16px;
    }

    .value-header h2 {
        font-size: 28px;
    }

    .value-header p {
        font-size: 16px;
    }

    .value-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .value-card {
        padding: 25px;
    }

    .mission-content h1 {
        font-size: 40px;
    }
}

.team-section {
    padding: 60px 0;
}

.team-section h2 {
    font-size: 42px;
    color: #262b44;
    margin-bottom: 40px;
    font-weight: 100;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.team-card {
    border-radius: 16px;
    overflow: hidden;
    background: #f2f3f7;
    position: relative;
    transition: 0.4s ease;
}

.team-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.team-card .info {
    background: #e6e8f1;
    padding: 22px;
    position: relative;
    transition: all 0.35s ease;
}

.team-card:hover .info {
    background: #f6a9df;
}

.team-card .info::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -22px;
    width: 100%;
    height: 44px;
    background: radial-gradient(circle at 22px 0, transparent 22px, #fff 23px), radial-gradient(circle at 66px 0, transparent 22px, #f6a9df 23px), radial-gradient(circle at 110px 0, transparent 22px, #f6a9df 23px), radial-gradient(circle at 154px 0, transparent 22px, #f6a9df 23px), radial-gradient(circle at 198px 0, transparent 22px, #f6a9df 23px);
    background-size: 44px 44px;
    background-repeat: repeat-x;
    opacity: 0;
    transition: 0.35s ease;
}

.team-card:hover .info::after {
    opacity: 1;
}

.info h4 {
    margin: 6px 0 4px;
    font-size: 18px;
    color: #1e2340;
}

.info p {
    font-size: 14px;
    color: #6b6f86;
}

.icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #8b8fa3;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .team-grid {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 10px;
    }

    .team-grid::-webkit-scrollbar {
        display: none;
    }

    .team-card {
        flex: 0 0 75%;
        scroll-snap-align: start;
    }

    .team-section h2 {
        font-size: 32px;
    }

    .team-section {
        padding: 12px 0;
    }
}

.join-adventure {
    padding: 80px 20px;
    text-align: center;
}

.join-adventure h2 {
    font-size: 36px;
    margin-bottom: 60px;
}

.join-wrapper {
    max-width: 1200px;
    margin: auto;
    position: relative;
}

.image-box {
    position: relative;
    right: 147px;
}

.image-box img {
    width: 100%;
    max-width: 850px;
    border-radius: 20px;
}

.join-card {
    background: #e75acb;
    color: #fff;
    width: 380px;
    padding: 40px;
    border-radius: 20px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-3deg);
    text-align: left;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.join-card h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.join-card p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.join-card .btn {
    display: inline-block;
    background: #e5cf58;
    color: #000;
    padding: 14px 30px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
}

@media (max-width: 768px) {
    .join-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .image-box {
        order: 1;
        right: 0;
        width: 100%;
    }

    .image-box img {
        width: 100%;
        max-width: 100%;
    }

    .join-card {
        order: 2;
        position: relative;
        width: 90%;
        margin-top: -80px;
        right: auto;
        top: auto;
        transform: rotate(4deg);
        text-align: left;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .join-card {
        top: -99px;
        transform: translateY(15%) rotate(4deg);
    }

    .join-card .btn {
        padding: 18px 180px;
        font-size: 17px;
    }
}

.investor-section {
    text-align: center;
    margin-bottom: 148px;
}

.investor-section h2 {
    font-family: 'Libre Baskerville';
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 50px;
    color: #2F3551;
    --title-font-weight: 400;
}

.investor-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.investor-logo {
    width: 160px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.investor-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .investor-section h2 {
        font-size: 28px;
    }

    .investor-logos {
        gap: 20px;
    }
}

.image-box.mobview {
    display: none;
}

@media (max-width: 768px) {
    .image-box.mobview {
        display: block;
    }

    .image-box {
        display: none;
    }
}

@media (max-width: 767px) {
    .mission-section {
        padding: 34px 20px 0 20px;
    }

    .mission-content h1 {
        font-size: 40px;
    }

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

    .vision-section {
        padding: 40px 20px 0 20px;
    }

    .value-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .team-card {
        flex: 0 0 40%;
    }

    .join-card .btn {
        width: 100%;
        text-align: center;
    }

    .join-adventure {
        padding: 80px 20px 0;
    }
}

@media (max-width: 575px) {
    .team-card {
        flex: 0 0 75%;
    }

    .join-card {
        width: 100%;
    }
}

.about-up__p-hero-sectioin {
    margin-bottom: 64px;
}

.about-p__desktop {
    display: block;
}

.about-p__mobile {
    display: none;
}

@media (max-width: 576px) {
    .about-p__desktop {
        display: none;
    }

    .about-p__mobile {
        display: block;
    }
}

.about-us__p-hero-heading {
    width: 100%;
    align-items: center;
    display: flex;
    justify-content: center;
    padding: 24px 40px;
    background: #f44fca;
    color: #fcfcfd;
}

.about-us__p-hero-pink-text {
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    text-transform: capitalize;
}

.about-us__p-our-vission-card {
    margin-bottom: 148px;
}

.about-us__p-our-vission-bg {
    background: #fcfcfd;
    padding: 32px;
}

.about-us__p-our-vission-bg h3 {
    font-family: "Libre Baskerville";
    --title-font-weight: 400;
    font-size: 36px;
    color: #2f3551;
    margin-bottom: 24px;
    line-height: 1;
}

.about-us__p-our-vission-bg p {
    color: #474a5d;
}

.about-us__p-value {
    margin-bottom: 148px;
}

.about-us__p-value-head {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    justify-content: center;
    margin-bottom: 48px;
}

.about-us__p-value-head h2 {
    font-family: "Libre Baskerville";
    font-size: 40px;
    --title-font-weight: 400;
    color: #2f3551;
}

.about-us__p-value-head p {
    text-align: center;
    color: #474a5d;
}

.about-us__p-value-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.about-us__p-value-card {
    background: #fcfcfd;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-us__p-value-card h3 {
    font-size: 24px;
    color: #2f3551;
    line-height: 1;
    font-weight: 600;
}

.about-us__p-value-card p {
    font-size: 16px !important;
    color: #474A5D;
}

.about-us__team-section {
    margin-bottom: 148px;
}

.about-us__team-title {
    font-family: 'Libre Baskerville';
    text-align: center;
    font-size: 32px;
    margin-bottom: 48px;
    --title-font-weight: 400;
}

/* GRID */
.about-us__team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* CARD */
.about-us__team-card {
    text-decoration: none;
    background: #fff;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.about-us__team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* IMAGE */
.about-us__team-image {
    position: relative;
}

.about-us__team-image img {
    width: 100%;
    object-fit: cover;
    height: 328px;
}

/* LinkedIn Icon */
.about-us__team-linkedin {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 14px;
    height: 25px;
    width: 25px;
}

.about-us__team-linkedin img {
    width: 100%;
    height: auto;
}

/* CONTENT */
.about-us__team-content {
    padding: 24px 12px;
    text-align: center;
}

.about-us__team-name {
    font-family: 'Libre Baskerville';
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: 600;
    color: #2F3551;
}

.about-us__work-name {
    margin-bottom: 0;
}

.about-us__team-role {
    font-size: 12px !important;
    color: #474A5D;
}

/* RESPONSIVE */

/* Tablet */
@media (max-width: 1024px) {
    .about-us__team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .about-us__team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.about-us__p-join-section {
    margin-bottom: 148px;
}

/* GRID */
.about-us__p-join-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: stretch;
    background: #FCFCFD;
}

/* IMAGE */
.about-us__p-join-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* CONTENT */

.about-us__p-join-right-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about-us__p-join-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-us__p-join-title {
    font-family: 'Libre Baskerville';
    font-size: 32px;
    --title-font-weight: 400;
    margin-bottom: 20px;
    color: #2F3551;
}

.about-us__p-join-text {
    font-size: 16px !important;
    color: #474A5D;
}

/* BUTTON (Bottom bar style) */
.about-us__p-join-btn {
    display: block;
    text-align: center;
    background: #F44FCA;
    color: #FCFCFD;
    padding: 20px 32px;
    line-height: 1;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.about-us__p-join-btn:hover {
    opacity: 0.9;
}

/* TABLET */
@media (max-width: 768px) {
    .about-us__p-join-grid {
        grid-template-columns: 1fr;
    }
}

/* MOBILE */
@media (max-width: 576px) {

    .about-us__p-join-title {
        font-size: 24px;
    }

    .about-us__p-join-text {
        font-size: 14px;
    }

    .about-us__p-join-btn {
        padding: 14px;
        font-size: 14px;
    }
}

.about-us__p-map {
    margin-bottom: 148px;
}

.about-us__p-map h2 {
    font-size: 32px;
    font-family: 'Libre Baskerville';
    color: #2F3551;
    text-align: center;
    --title-font-weight: 400;
    margin-bottom: 32px;
}

.about-us__p-map img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
}

/* SECTION */
.about-us__p-contact {
    margin-bottom: 116px;
}

/* GRID */
.about-us__p-contact-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    align-items: stretch;
}

/* LEFT FORM */
.about-us__p-contact-form-box {
    background: #2F3551;
    padding: 20px;
}

.about-us__p-contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-us__p-contact-input {
    padding: 12px;
    border: none;
    outline: none;
    background: #eaeaf0;
    border-radius: 3px;
    font-size: 14px;
}

/* BUTTON */
.about-us__p-contact-btn {
    margin-top: 10px;
    padding: 14px;
    border: none;
    cursor: pointer;
    color: #fff;
    font-weight: 600;
    background: linear-gradient(90deg, #ff4db8, #ff6a88);
    border-radius: 4px;
    transition: 0.3s;
}

.about-us__p-contact-btn:hover {
    opacity: 0.9;
}

/* CHECKBOX */
.about-us__p-contact-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #ccc;
}

.about-us__p-contact-note {
    font-size: 11px;
    color: #aaa;
    line-height: 1.4;
}

button#wpforms-submit-9768{
	background: #F44FCA;
	width: 100%;
	margin: 0 !important;
}

/* RIGHT SIDE */
.about-us__p-contact-info {
    padding: 48px;
    background: #FCFCFD;
}

.about-us__p-contact-title {
    font-family: 'Libre Baskerville';
    font-size: 40px;
    margin-bottom: 12px;
    color: #2F3551;
    --title-font-weight: 400;
}

.about-us__p-contact-subtitle {
    margin-bottom: 24px;
    color: #474A5D;
}

/* CONTACT CARDS */

.about-us__pcontect-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-us__p-contact-card {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.about-us__p-contact-card span {
    font-size: 14px;
    color: #A3A5AE;
}

.about-us__p-contact-card a {
    font-weight: 600;
    text-decoration: underline;
    padding: 20px 32px;
    text-align: center;
}

/* COLORS */
.about-us__p-contact-support a {
    background: linear-gradient(90deg, #ff4db8, #ff6a88);
    color: #fff;
}

.about-us__p-contact-sales a {
    background: #e0c12f;
    color: #222;
}

.about-us__p-contact-press a {
    background: #f04a2f;
    color: #fff;
}


/* animation init */

/* BASE */
.solution-animate {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.7s ease;
}

/* LEFT */
.solution-animate-left {
    transform: translateX(-80px) translateY(60px);
}

/* RIGHT */
.solution-animate-right {
    transform: translateX(80px) translateY(60px);
}

/* SHOW */
.solution-animate.show {
    opacity: 1;
    transform: translateX(0) translateY(0);
}


/* RESPONSIVE */

/* Tablet */
@media (max-width: 768px) {
    .about-us__p-contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .about-us__p-contact-subtitle {
        font-size: 16px !important;
        text-align: center;
    }

    .about-us__p-contact-form-box {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .about-us__p-our-vission-bg h3 {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .about-us__p-hero-pink-text {
        text-align: center;
        font-size: 16px;
        line-height: normal;
    }

    .about-us__p-hero-heading {
        padding: 16px;
    }

    .about-up__p-hero-sectioin {
        margin-bottom: 48px;
    }

    .about-us__p-our-vission-card {
        margin-bottom: 64px;
    }

    .about-us__p-value-head h2 {
        font-size: 24px;
    }

    .about-us__p-value-head {
        align-items: start;
        gap: 16px;
        margin-bottom: 24px;
    }

    .about-us__p-value-head p {
        text-align: left;
    }

    .about-us__p-value-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-us__p-value-card h3 {
        font-size: 20px;
    }

    .about-us__p-value-card {
        gap: 12px;
    }

    .about-us__p-value {
        margin-bottom: 64px;
    }

    .about-us__team-title {
        font-size: 24px;
        text-align: left;
        margin-bottom: 32px;
    }

    .about-us__team-image img {
        height: 205px;
    }

    .about-us__team-linkedin img {
        height: auto;
    }

    .about-us__team-linkedin {
        height: 20px;
        width: 20px;
    }

    .about-us__team-name {
        font-size: 14px;
    }

    .about-us__team-grid {
        gap: 16px;
    }

    .about-us__team-section {
        margin-bottom: 64px;
    }

    .about-us__p-join-image img {
        aspect-ratio: 16 / 9;
    }

    .about-us__p-join-section {
        margin-bottom: 64px;
    }

    .investor-section h2 {
        margin-bottom: 24px;
    }

    .investor-section {
        margin-bottom: 64px;
    }

    .about-us__p-map h2 {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .about-us__p-map {
        margin-bottom: 64px;
    }

    .about-us__p-contact-form-box {
        order: 2;
    }

    .about-us__p-contact-info {
        padding: 16px;
    }

    .about-us__p-contact-title {
        font-size: 24px;
        text-align: center;
    }

    .about-us__p-contact-subtitle {
        text-align: center;
    }

    .about-us__pcontect-cards {
        text-align: center;
    }

    .about-us__p-contact-card a {
        padding: 12px 32px;
        font-size: 12px;
    }

}

@media (max-width: 576px) {
    .about-us__p-our-vission-bg p {
        font-size: 14px !important;
    }

    .about-us__p-value-cards {
        grid-template-columns: 1fr;
    }

    .about-us__p-value-card p {
        font-size: 14px !important;
    }
}