@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@500&display=swap');
/* Custom font-face declarations - loaded first */
@font-face {
    font-family: "SFProDisplayBold";
    src: url("../assets/fonts/SFPRODISPLAYBOLD.woff2") format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SFProDisplayMedium";
    src: url("../assets/fonts/SFProDisplayMedium.woff2") format("opentype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SFProDisplayRegular";
    src: url("../assets/fonts/SFProDisplayRegular.woff2") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Eudoxus Sans';
    src: url("../assets/fonts/EudoxusSansMedium.woff2") format("opentype");
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: "Helvetica Neue";
    src: url("../assets/fonts/HelveticaNeueMedium.otf") format("opentype");
    font-weight: 500;
    font-display: swap;
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

:root {
    --blue: #7D5CA4;
    --blue-light: #7CC0D4;
    --text-color: #191221;
    --SFProBold: "SFProDisplayBold", "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    --SFProMedium: "SFProDisplayMedium", "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    --SFProRegular: "SFProDisplayRegular", "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
}

/* ==================== LANDING PAGE STYLES ==================== */

.landing-page {
    max-width: 100%;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    font-family: 'Poppins', var(--SFProRegular);

    background-color: rgba(255, 255, 255, 1);
    padding: 24px;
    position: relative;
}

.landing-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
    border-radius: 34px;
    background: radial-gradient(ellipse 300% 300% at 100% 50%, rgba(224, 197, 255, 0.3) 100%, transparent 0%), radial-gradient(ellipse 100% 100% at 80% 50%, rgba(176, 237, 255, 0.7) 0%, transparent 80%), #FFFFFF;
}
/* Header Styles */
.landing-header {
    width: 100%;
    display: flex;
    justify-content: center;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 1);
    width: 410px;
    margin-top: -12px;
    padding-bottom: 12px;
    position: relative;
    border-radius: 0 0 34px 34px;
}

/* Left corner decoration */
.logo-container::before {
    content: '';
    position: absolute;
    top: 12px;
    left: -40px;
    width: 40px;
    height: 30px;
    background: transparent;
    border-radius: 0 34px 0 0;
    box-shadow: 15px -15px 0 15px rgba(255, 255, 255, 1);
}

/* Right corner decoration */
.logo-container::after {
    content: '';
    position: absolute;
    top: 12px;
    right: -40px;
    width: 40px;
    height: 30px;
    background: transparent;
    border-radius: 34px 0 0 0;
    box-shadow: -15px -15px 0 15px rgba(255, 255, 255, 1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0px;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 36px;
    height: 36px;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 400;
    color: var(--text-color);
    letter-spacing: -1px;
}

.logo-subtext {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: var(--blue);
    letter-spacing: 3px;
    margin-top: -5px;
}

/* Main Content Styles */
.landing-main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    flex: 1;
    display: flex;
    justify-content: center;
}

.landing-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.landing-title {
    font-family: var(--SFProBold);
    font-size: 80px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 32px;
}

.landing-title .highlight {
    color: var(--blue);
}

.landing-description {
    font-family: 'Nunito Sans';
    font-size: 24px;
    font-weight: 500;
    color: rgba(25, 18, 33, 1);
    margin-bottom: 56px;
}

/* Button Styles */
.landing-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    width: 250px;
    font-family: var(--SFProMedium);
    font-size: 20px;
    font-weight: 500;
    padding: 16px 45px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
    text-decoration: none;  
}

.btn-outline {
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(229, 229, 229, 1);
    color: var(--text-color);
    text-decoration: none;
}

.btn-outline:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.btn-primary {
    background: rgba(125, 92, 164, 1);
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background-color: #61477F;
}

/* Footer Styles */
.landing-footer {
    width: 410px;
    display: flex;
    justify-content: center;
    background: rgba(255, 255, 255, 1);
    margin-bottom: -12px;
    position: relative;
    border-radius: 34px 34px 0 0;
}

/* Left corner decoration */
.landing-footer::before {
    content: '';
    position: absolute;
    bottom: 12px;
    left: -40px;
    width: 40px;
    height: 30px;
    background: transparent;
    border-radius: 0 0 34px 0;
    box-shadow: 15px 15px 0 15px rgba(255, 255, 255, 1);
}

/* Right corner decoration */
.landing-footer::after {
    content: '';
    position: absolute;
    bottom: 12px;
    right: -40px;
    width: 40px;
    height: 30px;
    background: transparent;
    border-radius: 0 0 0 34px;
    box-shadow: -15px 15px 0 15px rgba(255, 255, 255, 1);
}

.landing-footer p {
    font-family: 'Nunito Sans';
    font-size: 14px;
    font-weight: 500;
    color: rgba(25, 18, 33, 1);
    padding-top: 24px;
    padding-bottom: 24px;
}

/* ==================== WHO WE ARE PAGE STYLES ==================== */

.who-we-are-main {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    text-align: left;
    gap: 20px;
    width: 100%;
    max-width: 1400px;
    /* margin-top: -15px; */
    /* flex: 1; */
    margin-top: auto;
    margin-bottom: auto;
}
/* Left Content */
.who-we-are-left {
    /* max-width: 830px; */
    /* width: 100%; */
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.12);
    border-radius: 24px;
    flex: 1.55;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--SFProBold);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color);
    text-decoration: none;
    margin-bottom: 24px;
    transition: color 0.3s ease;
    width: max-content;
}

.back-link:hover {
    color: var(--blue);
}


.who-we-are-subtitle {
    font-family: var(--SFProBold);
    font-size: 24px;
    font-weight: 700;
    color: var(--blue);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.who-we-are-title {
    font-family: var(--SFProBold);
    font-size: 40px;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.1;
    margin-bottom: 20px;
}

.who-we-are-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 735px;
    width: 100%;
    margin-bottom: 20px;
}

.who-we-are-content p {
    font-family: 'Nunito Sans';
    font-size: 18px;
    font-weight: 500;
    color: rgba(109, 109, 109, 1);
    line-height: 1.5;
    margin: 0;
}

.who-we-are-content p strong {
    font-weight: 700;
}

.who-we-are-btn {
    font-family: var(--SFProMedium);
    width: 250px;
    padding: 16px 40px;
    font-size: 20px;
    font-weight: 500;
    border-radius: 16px;
}

/* Right Content */
.who-we-are-right {
    /* max-width: 534px; */
    /* width: 100%; */
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 20px;
}

.who-we-are-illustration {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.12);
}

.who-we-are-illustration img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 315px;
}

/* Stats Grid */
.who-we-are-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.12);
    padding: 16px;
    border-radius: 24px;
}

.stat-card {
    background: transparent;
    border: 1px solid rgba(229, 229, 229, 0.8);
    border-radius: 16px;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.stat-card:hover {
    border-color: var(--blue);
}

.stat-number {
    font-family: var(--SFProBold);
    font-size: 24px;
    font-weight: 700;
    color: rgba(125, 92, 164, 1);
}

.stat-label {
    font-family: var(--SFProRegular);
    font-size: 16px;
    font-weight: 500;
    color: rgba(15, 53, 71, 1);
}

/* ==================== MODAL STYLES ==================== */

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(1px);
    justify-content: center;
    align-items: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    padding: 24px 40px;
    border-radius: 24px;
    width: 100%;
    max-width: 720px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: modalFadeIn 0.3s ease-out;
    background: radial-gradient(ellipse 50vw 50vh at 0% 5%, rgba(224, 197, 255, 0.2) 0%, transparent 50%), radial-gradient(ellipse 50vw 50vh at 100% 0%, rgba(176, 237, 255, 0.2) 0%, transparent 50%), #FFFFFF;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.close-btn {
    position: absolute;
    top: 34px;
    right: 40px;
    width: 48px;
    height: 48px;
    background: rgba(189, 189, 189, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(25, 18, 33, 1);
    font-size: 30px;
    font-weight: lighter;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.close-btn:hover {
    background: #E0E4E7;
}

.modal-title {
    font-family: var(--SFProBold);
    font-size: 56px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 8px;
}

.modal-description {
    font-family: 'Nunito Sans';
    font-size: 20px;
    font-weight: 500;
    color: rgba(109, 109, 109, 1);
    margin-bottom: 26px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 46px;
}

.input-group label {
    font-family: var(--SFProMedium);
    font-size: 20px;
    font-weight: 700;
    color: rgba(109, 109, 109, 1);
}

.input-with-icon {
    position: relative;
    width: 100%;
}

.input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
}

.input-with-icon input {
    width: 100%;
    padding: 16px 20px 16px 52px;
    border: 1px solid rgba(229, 229, 229, 1);
    border-radius: 16px;
    font-size: 20px;
    font-family: var(--SFProMedium);
    color: var(--text-color);
    outline: none;
    transition: border-color 0.3s ease;
}
.input-with-icon input:focus {
    border-color: var(--blue);
}

.input-with-icon input::placeholder {
    color: #A0AEC0;
}

.modal-submit {
    width: 100%;
    padding: 20px;
    font-family: var(--SFProMedium);
    font-size: 20px;
    border-radius: 16px;
}

.text-center {
    text-align: center;
}

.success-icon {
    width: 40%;
    height: 40%;
    margin: 0 0 24px;
}

.success-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.success-modal-content {
    max-height: 50vh;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* ==================== RESPONSIVE HEIGHT STYLES ==================== */

/* Shorter Desktop Views */
@media (max-height: 850px) {
    .modal-title {
        font-size: 44px !important;
    }
    .modal-description {
        font-size: 18px !important;
        margin-bottom: 20px !important;
    }
    .success-icon {
        margin: 0 0 16px !important;
    }
    .who-we-are-title {
        /* font-size: 32px !important; */
        margin-bottom: 12px !important;
    }
    .who-we-are-subtitle {
        font-size: 20px !important;
        margin-bottom: 14px !important;
    }
    /* .who-we-are-content {
        gap: 15px !important;
        margin-bottom: 15px !important;
    } */
    /* .who-we-are-content p {
        font-size: 16px !important;
        line-height: 1.5 !important;
    } */
    .stat-card {
        padding: 15px 10px !important;
    }
    .who-we-are-illustration {
        padding: 20px !important;
    }
    .who-we-are-illustration img {
        max-height: 250px !important;
    }
}
@media (min-height: 851px) and (max-height: 900px){
    .who-we-are-content {
        gap: 2.4vh !important;
        margin-bottom: 2.2vh !important;
        max-width: 90vh !important;
    }
     .modal-content {
        padding: 3.2vh 4.8vh !important;
        border-radius: 2.6vh !important;
    }
    .modal-title {
        font-size: 6.2vh !important;
    }
    .modal-description {
        font-size: 2.2vh !important;
        margin-bottom: 2.4vh !important;
    }
    .success-icon {
        width: 35% !important;
        margin: 0 0 2vh !important;
    }
    .input-group {
        gap: 1.8vh !important;
        margin-bottom: 4vh !important;
    }
    .modal-submit {
        padding: 2.2vh !important;
    }
    .close-btn {
        top: 3.2vh !important;
        right: 4vh !important;
        width: 5.2vh !important;
        height: 5.2vh !important;
        font-size: 3.2vh !important;
    }
    .logo-container {
        padding-bottom: 1.2vh !important;
    }
    .logo-container a img {
        width: 20vh !important;
    }
    .who-we-are-main {
        /* margin-top: -1.4vh !important; */
        gap: 2.4vh !important;
    }
    .who-we-are-right{
        gap: 2vh !important;
    }
    .who-we-are-illustration{
        padding: 2.2vh !important;
    }
    .stat-number {
        font-size: 2.6vh !important;
    }
    .stat-text {
        font-size: 1.8vh !important;
    }
    .star img {
        width: 2.2vh !important;
        height: auto !important;
    }
    .who-we-are-left {
        padding: 2.4vh !important;
    }
    .who-we-are-subtitle {
        font-size: 2.6vh !important;
        margin-bottom: 1.4vh !important;
    }
    .who-we-are-title {
        font-size: 4.44vh !important;
        margin-bottom: 2vh !important;
    }
    .who-we-are-content p {
        font-size: 2vh !important;
    }
    .back-link {
        font-size: 2.2vh !important;
        margin-bottom: 2.4vh !important;
    }
    .back-link img {
        width: 2.2vh !important;
        height: 2.2vh !important;
    }
    .who-we-are-btn {
        width: 27vh !important;
        padding: 1.8vh 4.4vh !important;
        font-size: 2.26vh !important;
    }
    .who-we-are-illustration img {
        max-height: 31vh !important;
    }
}

@media (min-height: 801px) and (max-height: 850px){
    .who-we-are-content {
        gap: 2.2vh !important;
        margin-bottom: 2.1vh !important;
        max-width: 95vh !important;
    }
     .modal-content {
        padding: 3.1vh 4.7vh !important;
        border-radius: 2.7vh !important;
    }
    .modal-title {
        font-size: 6.1vh !important;
    }
    .modal-description {
        font-size: 2.25vh !important;
        margin-bottom: 2.3vh !important;
    }
    .success-icon {
        width: 33% !important;
        margin: 0 0 1.9vh !important;
    }
    .input-group {
        gap: 1.75vh !important;
        margin-bottom: 3.9vh !important;
    }
    .modal-submit {
        padding: 2.2vh !important;
    }
    .close-btn {
        top: 3.1vh !important;
        right: 3.9vh !important;
        width: 5.3vh !important;
        height: 5.3vh !important;
        font-size: 3.2vh !important;
    }
    .logo-container {
        padding-bottom: 1.1vh !important;
    }
    .logo-container a img {
        width: 21vh !important;
    }
    .who-we-are-main {
        /* margin-top: -1.45vh !important; */
        gap: 2.3vh !important;
    }
    .who-we-are-right{
        gap: 1.75vh !important;
    }
    .who-we-are-illustration{
        padding: 2.2vh !important;
    }
    .stat-number {
        font-size: 2.55vh !important;
    }
    .stat-text {
        font-size: 1.85vh !important;
    }
    .star img {
        width: 2.3vh !important;
        height: auto !important;
    }
    .who-we-are-left {
        padding: 2.45vh !important;
    }
    .who-we-are-subtitle {
        font-size: 2.55vh !important;
        margin-bottom: 1.45vh !important;
    }
    .who-we-are-title {
        font-size: 4.4vh !important;
        margin-bottom: 1.9vh !important;
    }
    .who-we-are-content p {
        font-size: 2vh !important;
    }
    .back-link {
        font-size: 2.1vh !important;
        margin-bottom: 2vh !important;
    }
    .back-link img {
        width: 2.2vh !important;
        height: 2.2vh !important;
    }
    .who-we-are-btn {
        width: 27.5vh !important;
        padding: 1.8vh 4.4vh !important;
        font-size: 2.4vh !important;
    }
    .who-we-are-illustration img {
        max-height: 28vh !important;
    }
}

@media (min-height: 751px) and (max-height: 800px){
    .who-we-are-content {
        gap: 2vh !important;
        margin-bottom: 2vh !important;
        max-width: 100vh !important;
    }
     .modal-content {
        padding: 3vh 4.5vh !important;
        border-radius: 2.75vh !important;
    }
    .modal-title {
        font-size: 6vh !important;
    }
    .modal-description {
        font-size: 2.25vh !important;
        margin-bottom: 2.25vh !important;
    }
    .success-icon {
        width: 30% !important;
        margin: 0 0 1.75vh !important;
    }
    .input-group {
        gap: 1.75vh !important;
        margin-bottom: 3.75vh !important;
    }
    .modal-submit {
        padding: 2.25vh !important;
    }
    .close-btn {
        top: 3vh !important;
        right: 3.75vh !important;
        width: 5.5vh !important;
        height: 5.5vh !important;
        font-size: 3.25vh !important;
    }
    .logo-container {
        padding-bottom: 1vh !important;
    }
    .logo-container a img {
        width: 22.5vh !important;
    }
    .who-we-are-main {
        /* margin-top: -1.5vh !important; */
        gap: 2.25vh !important;
    }
    .who-we-are-right{
        gap: 1.5vh !important;
    }
    .who-we-are-illustration{
        padding: 2.25vh !important;
    }
    .stat-number {
        font-size: 2.5vh !important;
    }
    .stat-text {
        font-size: 1.875vh !important;
    }
    .star img {
        width: 2.5vh !important;
        height: auto !important;
    }
    .who-we-are-left {
        padding: 2.5vh !important;
    }
    .who-we-are-subtitle {
        font-size: 2.5vh !important;
        margin-bottom: 1.5vh !important;
    }
    .who-we-are-title {
        font-size: 4.3vh !important;
        margin-bottom: 1.8vh !important;
    }
    .who-we-are-content p {
        font-size: 2vh !important;
    }
    .back-link {
        font-size: 2vh !important;
        margin-bottom: 1.5vh !important;
    }
    .back-link img {
        width: 2.25vh !important;
        height: 2.25vh !important;
    }
    .who-we-are-btn {
        width: 27.5vh !important;
        padding: 1.75vh 4.375vh !important;
        font-size: 2.5vh !important;
    }
    .who-we-are-illustration img {
        max-height: 25vh !important;
    }
}

@media (min-height: 701px) and (max-height: 750px){
    .who-we-are-content {
        gap: 1.8vh !important;
        margin-bottom: 1.8vh !important;
        max-width: 105vh !important;
    }
     .modal-content {
        padding: 2.9vh 4.4vh !important;
        border-radius: 2.8vh !important;
    }
    .modal-title {
        font-size: 5.8vh !important;
    }
    .modal-description {
        font-size: 2.3vh !important;
        margin-bottom: 2.2vh !important;
    }
    .success-icon {
        width: 28% !important;
        margin: 0 0 1.7vh !important;
    }
    .input-group {
        gap: 1.7vh !important;
        margin-bottom: 3.6vh !important;
    }
    .modal-submit {
        padding: 2.2vh !important;
    }
    .close-btn {
        top: 2.9vh !important;
        right: 3.6vh !important;
        width: 5.6vh !important;
        height: 5.6vh !important;
        font-size: 3.3vh !important;
    }
    .logo-container {
        padding-bottom: 0.9vh !important;
    }
    .logo-container a img {
        width: 23vh !important;
    }
    .who-we-are-main {
        /* margin-top: -1.4vh !important; */
        gap: 2.2vh !important;
    }
    .who-we-are-right{
        gap: 1.4vh !important;
    }
    .who-we-are-illustration{
        padding: 2.2vh !important;
    }
    .stat-number {
        font-size: 2.55vh !important;
    }
    .stat-text {
        font-size: 1.9vh !important;
    }
    .star img {
        width: 2.55vh !important;
        height: auto !important;
    }
    .who-we-are-left {
        padding: 2.55vh !important;
    }
    .who-we-are-subtitle {
        font-size: 2.4vh !important;
        margin-bottom: 1.6vh !important;
    }
    .who-we-are-title {
        font-size: 4.5vh !important;
        margin-bottom: 1.9vh !important;
    }
    .who-we-are-content p {
        font-size: 2vh !important;
    }
    .back-link {
        font-size: 2vh !important;
        margin-bottom: 1.45vh !important;
    }
    .back-link img {
        width: 2.27vh !important;
        height: 2.27vh !important;
    }
    .who-we-are-btn {
        width: 28vh !important;
        padding: 1.7vh 4.3vh !important;
        font-size: 2.55vh !important;
    }
    .who-we-are-illustration img {
        max-height: 25vh !important;
    }
}

@media (min-height: 651px) and (max-height: 700px){
    .who-we-are-content {
        gap: 2.57vh !important;
        margin-bottom: 3.14vh !important;
        max-width: 109.29vh !important;
    }
     .modal-content {
        padding: 2.86vh 4.29vh !important;
        border-radius: 2.86vh !important;
    }
    .modal-title {
        font-size: 5.14vh !important;
    }
    .modal-description {
        font-size: 2.29vh !important;
        margin-bottom: 2.14vh !important;
    }
    .success-icon {
        width: 30% !important;
        margin: 0 0 1.71vh !important;
    }
    .input-group {
        gap: 1.71vh !important;
        margin-bottom: 3.57vh !important;
    }
    .modal-submit {
        padding: 2.14vh !important;
    }
    .close-btn {
        top: 2.86vh !important;
        right: 3.57vh !important;
        width: 5.71vh !important;
        height: 5.71vh !important;
        font-size: 3.43vh !important;
    }
    .logo-container {
        padding-bottom: 0.86vh !important;
    }
    .logo-container a img {
        width: 24.29vh !important;
    }
    .who-we-are-main {
        /* margin-top: -1.43vh !important; */
        gap: 2.14vh !important;
    }
    .who-we-are-right{
        gap: 1.43vh !important;
    }
    .who-we-are-illustration{
        padding: 2.14vh !important;
    }
    .stat-number {
        font-size: 2.57vh !important;
    }
    .stat-text {
        font-size: 2vh !important;
    }
    .star img {
        width: 2.57vh !important;
        height: auto !important;
    }
    .who-we-are-left {
        padding: 2.57vh !important;
    }
    .who-we-are-subtitle {
        font-size: 2.29vh !important;
        margin-bottom: 1.71vh !important;
    }
    .who-we-are-title {
        font-size: 5.86vh !important;
        margin-bottom: vh !important;
    }
    .who-we-are-content p {
        font-size: 2vh !important;
    }
    .back-link {
        font-size: 2vh !important;
        margin-bottom: 1.43vh !important;
    }
    .back-link img {
        width: 2.29vh !important;
        height: 2.29vh !important;
    }
    .who-we-are-btn {
        width: 28.57vh !important;
        padding: 1.71vh 4.29vh !important;
        font-size: 2.57vh !important;
    }
    .who-we-are-illustration img {
        max-height: 25vh !important;
    }
}

@media (min-height: 601px) and (max-height: 650px) {
    .modal-content {
        padding: 3.08vh 4.62vh !important;
        border-radius: 3.08vh !important;
    }
    .modal-title {
        font-size: 5.54vh !important;
    }
    .modal-description {
        font-size: 2.46vh !important;
        margin-bottom: 2.31vh !important;
    }
    .success-icon {
        width: 30% !important;
        margin: 0 0 1.85vh !important;
    }
    .input-group {
        gap: 1.85vh !important;
        margin-bottom: 3.85vh !important;
    }
    .modal-submit {
        padding: 2.31vh !important;
    }
    .close-btn {
        top: 3.08vh !important;
        right: 3.85vh !important;
        width: 6.15vh !important;
        height: 6.15vh !important;
        font-size: 3.69vh !important;
    }
    .logo-container {
        padding-bottom: 0.92vh !important;
    }
    .logo-container a img {
        width: 26.15vh !important;
    }
    .who-we-are-main {
        /* margin-top: -1.54vh !important; */
        gap: 2.31vh !important;
    }
    .who-we-are-right{
        gap: 1.54vh !important;
    }
    .who-we-are-illustration{
        padding: 2.31vh !important;
    }
    .stat-number {
        font-size: 2.77vh !important;
    }
    .stat-text {
        font-size: 2.15vh !important;
    }
    .star img {
        width: 2.77vh !important;
        height: auto !important;
    }
    .who-we-are-left {
        padding: 2.77vh !important;
    }
    .who-we-are-subtitle {
        font-size: 2.46vh !important;
        margin-bottom: 1.85vh !important;
    }
    .who-we-are-title {
        font-size: 6.5vh !important;
        margin-bottom: 2.5vh !important;
    }
    .who-we-are-content {
        gap: 2.5vh !important;
        margin-bottom: 2.77vh !important;
        max-width: 117.69vh !important;
    }
    .who-we-are-content p {
        font-size: 2.15vh !important;
    }
    .back-link {
        font-size: 2.15vh !important;
        margin-bottom: 1.54vh !important;
    }
    .back-link img {
        width: 2.46vh !important;
        height: 2.46vh !important;
    }
    .who-we-are-btn {
        width: 30.77vh !important;
        padding: 1.85vh 4.62vh !important;
        font-size: 2.77vh !important;
    }
    .who-we-are-illustration img {
        max-height: 25vh !important;
    }
}

/* Very Short Viewports (600px and below) */
@media (max-width: 1024px) and (max-height: 600px) {
    .who-we-are-main{
        align-items: center;
    }
    .logo-container {
        padding-bottom: 0vh !important;
    }
    .logo-container a img {
        width: 28.33vh !important;
    }
    .back-link {
        font-size: 2.67vh !important;
        margin-bottom: 2vh !important;
    }
    .back-link img {
        width: 2.67vh !important;
        height: 2.67vh !important;
    }
    .who-we-are-right {
        gap: 1.67vh !important;
    }
    .who-we-are-illustration {
        padding: 1.67vh !important;
    }
    .who-we-are-illustration img{
        max-height: 34.5vh !important;
    }
    .who-we-are-stats {
        gap: 1.33vh !important;
    }
    .stat-number {
        font-size: 3vh !important;
    }
    .stat-text {
        font-size: 2.33vh !important;
    }
    .star img {
        width: 3vh !important;
        height: auto !important;
    }
    .modal-title {
        font-size: 4.67vh !important;
    }
    .modal-content {
        padding: 2.5vh 4.17vh !important;
    }
    .success-icon {
        width: 20% !important;
    }
    .who-we-are-title {
        font-size: 4.5vh !important;
    }
    .who-we-are-subtitle {
        font-size: 3vh !important;
        margin-bottom: 2.33vh !important;
    }
    .who-we-are-content {
        gap: 2vh !important;
        margin-bottom: 2.67vh !important;
    }
    .who-we-are-content p {
        font-size: 2.17vh !important;
        line-height: 1.3 !important;
    }
    .who-we-are-btn{
        max-width: 33.5vh !important;
        padding: 2.5vh 4vh !important;
        font-size: 2.67vh !important;
    }
    .stat-label{
        font-size: 2vh !important;
    }
}
