﻿.Become-section {
    background: linear-gradient(109.41deg, #3B3B3B 13.58%, #555555 35.92%, #6E6E6E 58.25%, #888888 80.58%, #A1A1A1 102.92%);
    padding: 100px 80px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-radius: 15px;
    height: 550px;
    position: relative;
    z-index: 1;
    margin-top: 6.5rem;
    margin-left: 0.8rem;
    margin-right: 0.8rem;
}

.Become-content {
    max-width: 500px;
    margin-top: -80px;
    margin-left: 5rem;
}

    .Become-content h1 {
        font-size: 2.2rem;
        margin-bottom: -4px;
        font-weight: 700;
        font-family: 'Lato';
    }

    .Become-content p {
        line-height: 1.5;
        margin-bottom: 25px;
        color: #fbfbfb;
        font-size: 20px;
        font-family: 'Lato';
    }

    .Become-content button {
        padding: 15px 52px;
        background: transparent;
        color: #fbfbfb;
        border: 2px solid white;
        border-radius: 10px;
        font-size: 22px;
        cursor: pointer;
        transition: .3s;
        font-family: 'Montserrat';
    }

        .Become-content button:hover {
            background: #ffffff;
            color: black;
        }

.hero-image img {
    width: 530px;
    border-radius: 10px;
    margin-left: -4rem;
    margin-top: -4rem;
}

/* --- FIXED HERE --- */
.cards-wrapper {
    width: 73%;
    background: #ffffff;
    border-radius: 15px;
    padding: 40px 50px;
    margin: -160px auto 40px auto;
    box-shadow: rgba(0,0,0,0.12) 0px 6px 15px;
    position: relative;
    z-index: 5; /* ensures it's above hero section */
    height: 17rem;
    margin-top: -6rem;
    margin-left: 11rem;
}

.cards-area {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
}

.card {
    width: 272px;
    text-align: left;
    position: relative;
    padding-bottom: 20px;
    border: none;
    height: 14rem;
    margin-top: -1rem;
}

    .card img {
        width: 32px;
        margin-bottom: 15px;
    }

    .card h3 {
        margin-bottom: 2px;
        font-size: 22px;
        color: #3b3b3b;
        font-family: unset;
    }

    .card p {
        font-size: 19px;
        color: #3b3b3b;
        line-height: 1.5;
        text-align: justify;
        font-family: 'Lato';
    }

    .card:not(:last-child)::after {
        content: "";
        position: absolute;
        right: -30px;
        top: 0;
        height: 100%;
        width: 1px;
        background: #b4b4b4;
    }
/* -----------------------------------
   📌 TABLET RESPONSIVE (768px - 1024px)
--------------------------------------*/
@media (max-width: 1024px) {

    .Become-section {
        height: auto;
        padding: 60px 40px;
        flex-direction: column;
        text-align: center;
        width: 95%;
        margin-left: 1.5rem;
    }
    .Become-content h1 {
        font-size: 70px;
        margin-bottom: 14px;
        font-weight: 600;
        font-family: lato;
        line-height: 5.5rem;
    }
    .Become-content p {
        line-height: 1.5;
        margin-bottom: 25px;
        color: #fbfbfb;
        font-size: 35px;
        font-family: 'Lato';
    }
    .Become-content {
        margin-left: 0;
        margin-top: 0;
        max-width: 100%;
    }

    .hero-image img {
        width: 600px;
        margin: 20px auto 0;
    }

    .cards-wrapper {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        padding: 30px;
        height: auto;
        margin-top: -4rem;
    }
    .card h3 {
        margin-bottom: 20px;
        font-size: 35px;
        color: #3b3b3b;
        font-family: unset;
        font-family: 'Lato';
    }
    .card p {
        font-size: 30px;
        color: #3b3b3b;
        line-height: 1.5;
        text-align: justify;
        font-family: 'Lato';
    }
    .cards-area {
        gap: 30px;
    }

    .card {
        width: 220px;
        height: auto;
    }

        .card:not(:last-child)::after {
            right: -20px;
        }
}


/* -----------------------------------
   📌 MOBILE (Small Screens)
--------------------------------------*/
@media (max-width: 768px) {

    .Become-section {
        height: auto;
        padding: 60px 40px;
        flex-direction: column;
        text-align: center;
        width: 95%;
        margin-left: 1.5rem;
    }

    
       .Become-content p {
        line-height: 1.5;
        margin-bottom: 25px;
        color: #fbfbfb;
        font-size: 28px;
        font-family: 'Montserrat';
    }
    

    .Become-content p {
        font-size: 15px;
        text-align: center;
    }

    .Become-content button {
        width: 100%;
        font-size: 18px;
        padding: 14px;
    }

    .hero-image img {
        width: 300px;
        margin: 20px auto 0;
    }

    .cards-wrapper {
        width: 95%;
        margin-top: -80px;
        padding: 25px;
        height: auto;
        margin-top: -4rem;
    }

    .cards-area {
        flex-direction: column;
        gap: 35px;
        align-items: center;
    }

    .card {
        width: 100%;
        height: auto;
        text-align: center;
    }

        .card img {
            margin-left: auto;
            margin-right: auto;
        }

        .card:not(:last-child)::after {
            display: none; /* remove line between cards */
        }
}


/* -------------------------------------
   📌 VERY SMALL DEVICES (Below 480px)
--------------------------------------*/
@media (max-width: 480px) {

    .Become-content h1 {
        font-size: 28px;
    }

    .hero-image img {
        width: 250px;
    }

    .cards-wrapper {
        margin-top: -60px;
    }

    .card p {
        font-size: 14px;
    }
}




/*2nd section*/

.partner-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px;
    gap: 40px;
}

/* ICON CIRCLE WRAP */
.icon-wrap {
    width: 58px;
    height: 58px;
    background: #B8DED4CC;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .icon-wrap img {
        width: 32px;
        height: 32px;
        object-fit: contain;
    }

.partner-left {
    width: 50%;
}

    .partner-left h1 {
        font-size: 2.2rem;
        font-weight: 700;
        margin-bottom: 0px;
        color: #3b3b3b;
        font-family: 'Lato';
    }

    .partner-left .sub-text {
        font-size: 19px;
        color: #3b3b3b;
        margin-bottom: 30px;
        text-align: left;
        font-family: 'Lato';
    }

.partner-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.partner-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

    .partner-box h3 {
        font-size: 24px;
        font-weight: 600;
        font-family: unset;
        color: #3b3b3b;
        margin-top: 8px;
    }

    .partner-box p {
        font-size: 19px;
        color: #3b3b3b;
        line-height: 1.5;
        margin-top: -3rem;
        font-family: 'Lato';
    }

.partner-right {
    width: 50%;
    display: flex;
    justify-content: center;
}

    .partner-right img {
        width: 90%;
    }

/* Responsive */
@media (max-width: 1024px) {
    .partner-section {
        flex-direction: column;
        text-align: center;
        padding: 50px;
    }
    .partner-left h1 {
        font-size: 3.5rem;
        font-weight: 600;
        margin-bottom: 10px;
        /* font-family: unset; */
        color: #3b3b3b;
        font-family: 'Lato';
    }
    .partner-left, .partner-right {
        width: 100%;
    }

        .partner-left .sub-text {
            font-size: 35px;
            color: #3b3b3b;
            margin-bottom: 30px;
            font-family: 'Lato';
            text-align: left;
            line-height: 3rem;
            text-align: center;
        }
    .partner-box h3 {
        font-size: 35px;
        font-weight: 600;
        color: #3b3b3b;
        margin-top: 8px;
        font-family: 'Lato';
    }
    .partner-box p {
        font-size: 30px;
        color: #3b3b3b;
        line-height: 1.5;
        font-family: 'Lato';
        margin-top: -2rem;
        text-align: justify;
    }
    .partner-grid {
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
    }

    .partner-right img {
        width: 320px;
        margin-top: 20px;
    }
}

/* 📱 Mobile Responsive */
@media (max-width: 768px) {
    .partner-section {
        padding: 25px;
        text-align: center;
    }

    .partner-left h1 {
        font-size: 32px;
    }

    .partner-left .sub-text {
        text-align: center;
        font-size: 15px;
    }
    .partner-box p {
        font-size: 22px;
        color: #3b3b3b;
        line-height: 1.5;
        font-family: 'Montserrat';
        margin-top: -2rem;
        text-align: justify;
    }
    .partner-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .partner-box {
        align-items: center;
    }
    .partner-left .sub-text {
        font-size: 25px;
        color: #3b3b3b;
        margin-bottom: 30px;
        font-family: 'Montserrat';
        text-align: left;
        line-height: 2.5rem;
        text-align:center;
    }
    .partner-right img {
        width: 250px;
        margin-top: 30px;
    }
}









/*3rd section*/
.expect-section {
    display: flex;
    justify-content: center;
    margin-top: -5rem;
    height: 40rem; 
}

.expect-container {
    display: flex;
    align-items: center;
    background: #B8DED4CC;
    width: 88%;
    border-radius: 25px;
    padding: 45px;
    gap: 50px;
}

.expect-left img {
    width: 340px;
}

.expect-right {
    max-width: 550px;
    margin-left: 3rem;
}

    .expect-right h2 {
        font-size: 2.2rem;
        font-weight: 700;
        margin-bottom: 15px;
        white-space: nowrap;
        color: #3b3b3b;
        font-family: 'Lato';
    }

    .expect-right ul {
        list-style: disc;
        padding-left: 20px;
        line-height: 2;
        font-size: 20px;
        color: #3b3b3b;
        font-family: unset;
    }


/* 📱 Tablet (Auto height + stack layout) */
@media (max-width: 1024px) {

    .expect-section {
        height: auto;
        margin-top: 2rem;
    }

    .expect-container {
        flex-direction: column;
        text-align: center;
        padding: 40px;
        gap: 30px;
    }

    .expect-left img {
        width: 280px;
    }

    .expect-right {
        margin-left: 0;
    }

        .expect-right ul {
            text-align: left;
            width: fit-content;
            margin: 0 auto;
        }

        .expect-right h2 {
            font-size: 32px;
            white-space: normal;
        }
}


/* 📱 Mobile View */
@media (max-width: 600px) {

    .expect-section {
        height: auto; /* Auto height for mobile */
        margin-top: 1rem;
    }

    .expect-container {
        width: 95%;
        padding: 25px;
        gap: 20px;
    }

    .expect-left img {
        width: 220px;
    }

    .expect-right ul {
        width: 100%;
        padding-left: 30px;
    }

    .expect-right h2 {
        font-size: 26px;
        line-height: 32px;
    }
}





/* 4th section */
.fourth-section {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: -7rem;
}

/* IMAGE CONTAINER CENTERING */
.fourth-container {
    text-align: center;
    width: 100%;
}

    /* IMAGE STYLE */
    .fourth-container img {
        width: 80%;
        max-width: 1000px;
        display: block;
        margin: 0 auto;
    }


/* 📱 Responsive Design */

/* Tablet */
@media (max-width: 992px) {
    .fourth-container img {
        width: 90%;
    }

    .fourth-section {
        margin-top: -5rem;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .fourth-container img {
        width: 100%;
    }

    .fourth-section {
        margin-top: -3rem;
    }
}






/* WRAPPER BACKGROUND */
.cta-section {
    width: 100%;
    background: #F5F5F5;
    padding: 60px 0;
    display: flex;
    justify-content: center;
}

.cta-container {
    width: 88%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cta-left h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #3b3b3b;
    margin-bottom: 10px;
    white-space: nowrap;
    font-family: 'Lato';
}

.cta-left p {
    font-size: 19px;
    color: #3b3b3b;
    font-family: 'Lato';
}


.cta-right {
    display: flex;
    gap: 15px;
    margin-left: -5rem;
}

.primary-btn {
    color: #fbfbfb;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Montserrat';
    white-space:nowrap;
    background: linear-gradient(109.41deg, #3B3B3B 13.58%, #555555 35.92%, #6E6E6E 58.25%, #888888 80.58%, #A1A1A1 102.92%);
}

    .primary-btn:hover {
        background: linear-gradient(109.41deg, #3B3B3B 13.58%, #555555 35.92%, #6E6E6E 58.25%, #888888 80.58%, #A1A1A1 102.92%);
    }

.outline-btn {
    background: transparent;
    border: 1.5px solid #0C233D;
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0C233D;
    font-family: 'Montserrat';
    white-space: nowrap;
}

    .outline-btn:hover {
        background: #0C233D;
        color: #fff;
    }

.arrow {
    font-size: 22px;
}



/* 📱 Responsive Adjustments */
@media (max-width: 1024px) {
    .cta-container {
        flex-direction: column;
        text-align: center;
    }

    .cta-right {
        justify-content: center;
    }

    .cta-left h2 {
        font-size: 3.5rem;
        font-family: 'Lato';
        padding-bottom: 12px;
    }
    .cta-left p {
        font-size: 32.3px;
        color: #3b3b3b;
        font-family: 'Lato';
    }
    .primary-btn {
        color: #fbfbfb;
        border: none;
        padding: 22px 28px;
        font-size: 28px;
        border-radius: 8px;
        cursor: pointer;
        transition: 0.3s;
        font-family: 'Lato';
        white-space: nowrap;
        background: linear-gradient(109.41deg, #3B3B3B 13.58%, #555555 35.92%, #6E6E6E 58.25%, #888888 80.58%, #A1A1A1 102.92%);
    }
    .outline-btn {
        background: transparent;
        border: 1.5px solid #0C233D;
        padding: 22px 28px;
        font-size: 25px;
        border-radius: 8px;
        cursor: pointer;
        transition: 0.3s;
        display: flex;
        align-items: center;
        gap: 8px;
        color: #0C233D;
        font-family: 'Montserrat';
        white-space: nowrap;
    }
}

@media (max-width: 600px) {
    .cta-right {
        flex-direction: column;
        width: 100%;
    }

    .primary-btn, .outline-btn {
        width: 100%;
    }
}




/*Form-section*/

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.45);
    justify-content: center;
    align-items: flex-end;
    backdrop-filter: blur(5px);
    overflow: hidden;
    z-index: 9999; 
}

.form-row label {
    color: #3b3b3b;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
    margin-left: 1.5rem;
    font-family: 'Montserrat';
}

.form-control {
    background: #fafafa;
}

.form-row div {
    display: flex;
    flex-direction: column;
}


/* Modal box full height */
.modal-box {
    width: 95%;
    height: 93vh; 
    background: #fff;
    border-radius: 22px 22px 0 0;
    overflow: hidden;
    transform: translateY(120%);
    transition: 0.55s cubic-bezier(.22,.61,.36,1);
}

.modal-content {
    height: 100%; 
    overflow-y: auto; 
    padding: 40px 50px;
}


.modal-overlay.active {
    display: flex;
}

    .modal-overlay.active .modal-box {
        transform: translateY(0);
    }

.modal-content {
    width: 100%;
    padding: 36px 44px;
    overflow-y: auto;
}

    .modal-content h1 {
        font-size: 30px;
        margin: 0 0 12px 0;
        margin-left: 1rem;
        font-family: 'Montserrat';
        color: #3b3b3b;
        font-weight: 600;
    }

.section-title {
    margin-top: 18px;
    margin-bottom: 14px;
    font-weight: 600;
    font-size: 18px;
    border-bottom: 2px solid #eee;
    padding-bottom: 6px;
}


.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 14px;
}

    .form-row.single input {
        grid-column: span 2;
    }

    .form-row input,
    .form-row select,
    .form-row textarea {
        width: 95%;
        padding: 12px 14px;
        border-radius: 10px;
        font-size: 15px;
        box-sizing: border-box;
        height: 3rem;
        margin-left: 1.5rem;
    }

.next-btn {
    margin-top: 18px;
    background: #1A73E8;
    color: #fff;
    padding: 12px 26px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    font-size: 15px;
}

.close-modal {
    position: absolute;
    right: 46px;
    top: 17px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f1f1;
    cursor: pointer;
    font-size: 18px;
    z-index: 20;
    border: none;
}

.modal-footer {
    padding: 14px 44px 30px;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    border-top: 1px solid #f0f0f0;
    border:none;
}
