body {
    font-family: 'Merriweather', Georgia, serif;
    text-align: center;
    margin: 0;
    padding: 0;
    background: #fff;
    color: #4a4a4a;
}

.heading {
    font-size: 36px;
}

/*  */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    border-bottom: 1px solid #eee;
}

/* .menu .navbar-brand {
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
} */
p {
    font-size: 16px;
}

header .icons {
    display: flex;
    gap: 15px;
    font-size: 20px;
}

.menu {
    border-bottom: 1px solid #d7d7d7;
    position: fixed;
    width: 100%;
    padding: 13px 0;
    background: #fff;
    z-index: 1;
}

.menu .profile_pic {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -35px;
    margin: 0 auto;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    transition: all 0.4s ease;
}

.profile_pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.navbar.scrolled .profile_pic {
    width: 45px;
    height: 45px;
    bottom: 11px;
    transition: all 0.4s ease;
}

/* New Css */
/* Hamburger Button */
/* ================= NAVBAR ================= */
.menu {
    position: fixed;
    width: 100%;
    padding: 13px 0;
    background: #fff;
    z-index: 1000;
    top: 0;
    border-bottom: none;
    /* remove old border */
}

/* left side like lemonade */
.logo_section {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 15px;
}

.menu-toggle {
    font-size: 24px;
    cursor: pointer;
    border: none;
    background: none;
}

.menu .navbar-brand {
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    display: flex;
    align-items: center;
}

/* Progressbar wrapper acts like navbar border */
.progressbar-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    background: #fff;
    padding: 10px 0;
    position: fixed;
    top: 90px;
    left: 0;
    z-index: 999;
}

/* Progressbar container */
.progressbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 70%;
    max-width: 800px;
    position: relative;
}

.progressbar::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    background: #0272a5;
    transform: translateY(-50%);
    z-index: 0;
}

/* Circles */
.progressbar .circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid #0272a5;
    background: #fff;
    color: #0272a5;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 16px;
    position: relative;
    z-index: 1;
}

.progressbar .circle.active {
    background: #0272a5;
    color: #fff;
}

.circle.active:after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    box-shadow: 0 0 0 3px #ffffff inset;
    pointer-events: none;
    color: #fff;
}

.progressbar .circle.completed {
    background: #0272a5;
    color: #fff;
    font-size: 0;
}

.progressbar .circle.completed::before {
    content: "✔";
    font-size: 18px;
    color: #fff;
    position: absolute;
}


/* Side menu main */
.side-menu {
    height: 100%;
    width: 0;
    /* hidden initially */
    position: fixed;
    top: 0;
    left: 0;
    /* left side open */
    background-color: #313131;
    overflow-x: hidden;
    transition: 0.4s;
    padding-top: 60px;
    z-index: 1200;
}

.side-menu a {
    padding: 10px 20px;
    text-decoration: none;
    font-size: 18px;
    color: #fff;
    display: block;
    transition: 0.3s;
    text-align: left;
    font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif;
}

.side-menu a:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ================== STEP CONTAINER ================== */
/* .step {
    position: absolute;
    left: -100%;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 20px;
    box-sizing: border-box;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.step.active {
    left: 0;
    opacity: 1;
    z-index: 2;
}


.step.exit-left {
    left: -100%;
    opacity: 0;
    z-index: 1;
} */
form .step {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 1;
    transform: translateX(100%);
    transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
}

/* Active step (center screen) */
form .step.active {
    transform: translateX(0);
    opacity: 1;
    z-index: 2;
}

/* Slide out to left (when moving forward) */
form .step.exit-left {
    transform: translateX(-100%);
    opacity: 0;
    z-index: 1;
}

/* Slide out to right (when moving backward) */
form .step.exit-right {
    transform: translateX(100%);
    opacity: 0;
    z-index: 1;
}

form.smooth-form {
    position: relative;
    overflow: hidden;
    height: auto;
}



/* exit animation */
form.name_Field {
    max-width: 520px;
    margin: 0 auto !important;
    margin-top: 3rem !important;
}

form.mx-auto {
    max-width: 670px;
}

/* End new Css */

/* Close (X) inside menu */
.side-menu .closebtn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}

/* Social icons bottom */
.side-menu .social {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    gap: 15px;
}

.side-menu .social a {
    font-size: 20px;
    color: #fff;
}

/* Overlay background */
#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1100;
}


/* first_sec */

.first_sec {
    padding-top: 200px;
}

.first_sec .option {
    display: flex;
    align-items: center;
    width: 300px;
    padding: 15px 20px;
    border-radius: 8px;
    background: #f7f7f7;
    cursor: pointer;
    font-size: 16px;
    justify-content: flex-start;
    gap: 15px;
    font-weight: 600;
    height: 60px;
}

.option .form-check-input {
    transform: scale(1.4);
    cursor: pointer;
    margin-left: 5px;
    margin-top: 0;
}

.next-btn {
    margin-top: 30px;
    padding: 12px 30px;
    border-radius: 6px;
    border: none;
    background: #ddd;
    color: #fff;
    font-size: 16px;
    cursor: not-allowed;
    font-weight: 700;
    min-width: 155px;
    text-transform: uppercase;
    height: 47px;
    font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
}

.option_inner {
    padding-top: 25px;
}

.option_inner .option {
    margin-top: 5px;
}

.next-btn.btn-primary {
    background-color: #0272a5;
}

.next-btn.btn-primary:hover,
.next-btn.btn-primary:focus {
    background: #05597f;
}

.next-btn.btn-primary:hover {
    opacity: 0.9;
}

.option_inner .form-check-input:checked {
    background-color: #0272a5;
    /* border-color: #0272a5; */
}

/* footer */
footer {
    padding: 100px 0;
}

/* email sec */
.email_field {
    margin: 45px auto 0;
    width: 400px;
}

.name_Field,
.household_income {
    margin: 45px 0 0;
}

.email_field .form-control {
    border-radius: 6px;
    padding-left: 40px;
}

.email_field.name_Field {
    width: 100%;
}

.email_field .form-control:focus,
.name_Field .form-control:focus,
.household_income .form-control:focus,
.household_income .form-select:focus {
    border-color: #0272a5;
    box-shadow: none;
    border: 2px solid #0272a5;
}

.email_field .input-icon {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    color: #555;
    z-index: 1;
}

.email_field .form-floating label {
    color: #999 !important;
    padding-left: 40px;
    text-transform: uppercase;
    font-size: 14px;
}

.form-check-label,
label {
    font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
    font-weight: 600;
}

/* otp page */
.otp-input {
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 22px;
    margin: 0 5px;
    border: 2px solid #ddd;
    border-radius: 6px;
    outline: none;
    transition: border-color 0.3s;
}

.otp-input:focus {
    border-color: #0272a5;
    box-shadow: none;
}

.resend-link {
    color: #0272a5;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
}

.resend-link:hover {
    text-decoration: underline;
}

/*  */
.option-card {
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.option-card:hover {
    border-color: #ff0080;
    box-shadow: 0 6px 14px rgba(255, 0, 128, 0.15);
}

.option-card img {
    max-width: 80px;
    margin-bottom: 15px;
}

.option-card h6 {
    font-weight: 600;
    margin-bottom: 15px;
}

.option-checkbox {
    width: 22px;
    height: 22px;
    cursor: pointer;
}

.btn-next {
    background: #ccc;
    color: #fff;
    padding: 12px 40px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: not-allowed;
}

.btn-next.active {
    background: #ff0080;
    cursor: pointer;
    box-shadow: 0px 6px 18px rgba(255, 0, 128, 0.25);
}

.option-card.selected {
    border-color: #ff0080;
    box-shadow: 0 6px 14px rgba(255, 0, 128, 0.25);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.form-check-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background-color: #fff;
    cursor: pointer;
    position: relative;
}

.form-check-input:focus {
    box-shadow: none;
    outline: none;
    border-color: #ccc;
}

.form-check-input:hover {
    border-color: #d7d7d7;
}

.form-check-input:checked[type=radio] {
    background-image: none;
}

.form-check-input:checked {
    background-color: #0272a5;
    border: 3px solid #fff !important;
}

/*thankyou-page*/

.thankyou-page {
    background-color: rgb(243, 247, 254);
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    position: absolute;
    top: 0;
    left: 0;
    font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
}

.thankyou-page-inner {
    background: rgb(255, 255, 255);
    border-radius: 90px;
    width: 100%;
    position: relative;
    top: 30%;
    /*transform: translateY(50%);*/
    text-align: center;
}

.next-prev-btn {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
}

.next-prev-btn .back {
    border: 0;
    border-radius: 50px;
    background-color: rgb(41, 164, 202);
    font-size: 17px;
    color: rgb(255, 255, 255);
    font-weight: bold;
    text-transform: uppercase;
    width: 448px;
    height: 67px;

}

.tick {
    position: relative;
}

.done-tick {
    width: 120px;
    height: 120px;
    border: solid 1px transparent;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    border-left-color: rgb(34, 208, 136);
    animation: rotate-circle 0.5s linear forwards;
    animation-delay: 0.5s;
    border-radius: 50%;
    background-color: transparent;
}


.tick i {
    font-weight: 900;
    font-size: 50px;
    color: rgb(34, 208, 136);
    position: absolute;
    animation: tick-icon 0.8s linear forwards;
    animation-delay: 0.5s;
    top: 30%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation-delay: 0.5s;
}

.thankyou-page-inner h2 {
    font-size: 40px;
    color: rgb(5, 17, 51);
    margin-top: 20px;
    font-weight: bold;
}

.thankyou-page-inner p {

    font-size: 16px;
    color: rgb(170, 170, 170);
    margin-top: 20px;
}

.thankyou-page-inner .wrapper {
    padding: 45px 290px;
}

.next-prev-btn .back {
    border: 0;
    border-radius: 50px;
    background-color: rgb(41, 164, 202);
    font-size: 17px;
    color: rgb(255, 255, 255);
    font-weight: bold;
    text-transform: uppercase;
    width: 448px;
    height: 67px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*  */

/*  */
.form-control {
    font-size: 13px;
    font-weight: 600;
    color: #4a4a4a;
    font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
}

section.first_sec {
    position: relative;
}

.btn-back {
    position: absolute;
    left: 50px;
    top: 39%;
    display: block;
    opacity: .5;
    z-index: 2;
    transition: opacity .2s;
    width: 20px;
    height: 41px;
    background: transparent;
    border: none;
}

.btn-back::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../assets/images/left_icon.svg") no-repeat -129px -51px;
    background-size: 350px 100px;
    width: 20px;
    height: 41px;
    display: block;
}

.btn-back:hover {
    opacity: 1;
}

.refresh_icon i {
    position: absolute;
    right: 2%;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    cursor: pointer;
}

/* Loder and Popup */
/* Loader effect when button has .loading class */
.next-btn.loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

.next-btn.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 18px;
    border: 2px solid #fff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: spin 0.5s linear infinite;
    /* faster loader */
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.start-over-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Modal box */
.modal-content {
    background: #fff;
    padding: 30px 25px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.3s ease-in-out;
}

/* Headings */
.modal-content h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 16px;
    color: #333;
    font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
    font-weight: 700;
}

/* Paragraph */
.modal-content p {
    font-size: 14px;
    color: #555;
    margin-bottom: 25px;
    font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
    padding: 15px 0 22px;
}

/* Buttons container */
.modal-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.cancel-btn {
    background: #ececec;
    color: #333;
    border: 1px solid #f7f7f7;
    padding: 12px 30px;
    border-radius: 6px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    min-width: 155px;
    text-transform: uppercase;
    height: 47px;
    font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    color: #555;
}

.cancel-btn:hover {
    background: #f0f0f0;
}

.confirm-btn {
    background-color: #0272a5;
    color: #fff;
    padding: 12px 30px;
    border-radius: 6px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    min-width: 155px;
    text-transform: uppercase;
    height: 47px;
    font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
}

.confirm-btn:hover {
    background: #05597f;
    color: #fff;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* End */
/* responsive */
@media (max-width: 1536px) {}

@media (max-width: 1440px) {
    .thankyou-page-inner {
        top: 15%;
    }

    .thankyou-page-inner .wrapper {
        padding: 100px;
    }

    .next-prev-btn .back {
        text-align: center;
    }
}

@media (max-width: 1366px) {
    .heading {
        font-size: 36px;
    }
}

@media (max-width: 1199px) {
    .heading {
        font-size: 30px;
    }

    .donate-button {
        display: block;
        text-align: center;
    }

    .donate-button * {
        margin-bottom: 10px;
    }

    .thankyou-page {
        border-radius: 0;
        padding: 20px;
    }

    .thankyou-page-inner {
        top: 5%;
    }

    .thankyou-page-inner .wrapper {
        padding: 50px;
    }

    .thankyou-page-inner h2 {
        font-size: 30px;
    }
}

@media (max-width: 1024px) {}

@media (max-width: 991px) {
    .heading {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .heading {
        font-size: 30px;
    }

    .menu .profile_pic {
        width: 40px;
        height: 40px;
    }

    .menu .navbar-brand {
        font-size: 16px;
        margin-left: 45px;
    }

    .name_Field {
        max-width: 80%;
        margin: 0 auto;
        margin-top: 2rem !important;
    }

    /* .progressbar-wrapper {
        display: none;
    } */

    button#menuBtn {
        position: absolute;
    }

    section.first_sec {
        padding-top: 180px;
    }

    .btn-back {
        /* display: none; */
        left: 0;
    }
}

@media (max-width: 575px) {
    .donate-button {
        display: block;
        text-align: center;
    }

    .donate-button * {
        margin-bottom: 10px;
    }

    .donate-button button,
    .donate-button .custom {
        width: 100%;
    }

    .thankyou-page {
        border-radius: 0;
        padding: 20px;
    }

    .thankyou-page-inner {
        top: 15%;
        border-radius: 10px;
    }

    .thankyou-page-inner .wrapper {
        padding: 50px;
    }

    .thankyou-page-inner h2 {
        font-size: 30px;
    }

    .next-prev-btn {
        display: block;
        text-align: center;
    }

    .next-prev-btn * {
        margin-bottom: 10px;
    }

    .next-prev-btn .prev,
    .next-prev-btn .back {
        margin-right: 0;
        width: 100%;
    }
}

@media (max-width: 480px) {}

@media (max-width: 400px) {
    .heading {
        font-size: 25px;
    }

    p {
        font-size: 16px;
    }
}