/* ------------------------------------------------Navbar section------------------------------------------------- */
.navbar {
    background: #FFF8F6;
    padding: 20px 0;
    width: 100%;
    padding: 0 82px;

    position: sticky;
    top: 0;
    z-index: 100;
}


.nav-container {
    border-bottom: 1px solid #9AA093;
    /* width: 90%;
    max-width: 1300px; */
    width: 100%;
    /* margin: 0 auto; */
    padding: 25px 0px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo img {
    width: 62px;
    height: 47px;
}

/* Menu */
.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    align-items: center;
}

.nav-links li {
    position: relative;
}

/* Mobile menu header (hidden on desktop) */
.mobile-menu-header {
    display: none;
}

.nav-links>li>a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 16px;
    font-family: "clashGrotesk-semibold";
    /* line-height: 1.2; */
    transition: 0.4s;
}

/* Active Item */
/* .nav-links li.active a { */
.nav-links>li.active>a {
    color: var(--primary-color);
    font-family: "clashGrotesk-bold";
}

/* Underline Image */
/* .nav-links li.active::after { */
.nav-links>li.active::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -18px;
    width: 50px;
    height: 12px;
    background: url("../icons/underline.svg") no-repeat center;
    background-size: contain;
}

/* Hover Effect */
.nav-links>li>a:hover {
    color: var(--primary-color);
}

.nav-links.show>li>a:hover {
    color: var(--text-color);
    transform: translateX(5px);

}

.nav-btn {
    display: flex;
    flex-direction: row;
    gap: 20px;
    list-style: none;
}

.nav-btn li a {
    text-decoration: none;
    color: var(--primary-color);
    font-size: 16px;
    font-family: "clashGrotesk-semibold";
    /* line-height: 1.2; */
    transition: 0.3s;
}

.admission-btn,
.contact-btn {
    background-color: transparent;
    padding: 12px 24px;
    color: var(--primary-color);
    border-radius: 40px;
    border: 2px solid var(--primary-color);
    /* transition: transform 0.4s ease; */

    font-size: 16px;
    font-family: "clashGrotesk-semibold";
    /* line-height: 1.2; */
    transition: 0.3s;
}

.admission-btn a,
.contact-btn a {
    color: var(--primary-color);

}

.admission-btn:hover,
.contact-btn:hover {
    background-color: var(--primary-color);
}

.admission-btn:hover a,
.contact-btn:hover a {
    color: #FFF8F6;
}

.active-nav {
    background-color: var(--primary-color) !important;
}

.active-nav a {
    color: #FFF8F6 !important;
}

/* Hamburger - hidden on desktop */
.hamburger {
    display: none;
    cursor: pointer;
    /* padding: 8px; */
    background: none;
    border: none;
    z-index: 99;
    margin-right: 12px;
}

.hamburger img {
    /* width: 28px; */
    /* height: 28px; */
    display: block;
    transition: transform 0.3s ease;
}

.admission-mobile {
    background-color: var(--primary-color);
    padding: 12px 24px;
    color: var(--secondary-color);
    border-radius: 40px;
    border: 2px solid var(--primary-color);

    font-size: 16px;
    font-family: "clashGrotesk-semibold";
    transition: 0.3s;
    display: none;
}

.admission-mobile a {
    text-decoration: none;
    color: var(--secondary-color);
    font-size: 16px;
    font-family: "clashGrotesk-semibold";
    /* line-height: 1.2; */
    transition: 0.3s;
}

.admission-mobile:hover {
    background-color: transparent;
}

.admission-mobile:hover a {
    color: var(--primary-color);
}

.logo-menu {
    display: flex;
}

.menu-open {
    position: fixed;
    width: 100%;
    overflow: hidden;
}

.menu-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 99;
}

@media (max-width: 1400px) {
    .navbar {
        padding: 0px 40px;
    }

    .nav-links {
        gap: 14px;
    }

}

/* Tablet (1024px) */
@media (max-width: 1024px) {
    .navbar {
        padding: 0 20px;
    }

    .nav-links {
        gap: 18px;
        text-align: center;
    }

    .nav-links a {
        font-size: 14px;
    }
}

/* Mobile Navbar */
@media (max-width: 980px) {
    .navbar {
        padding: 0 16px;
        position: relative;
    }

    .nav-container {
        flex-wrap: wrap;
        padding: 17px 0;
    }

    .hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Mobile menu - hidden by default */
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 16px;
        right: 16px;
        width: auto;
        background: #C04A1A;
        /* padding: 20px 20px 28px; */
        gap: 0;
        margin: 0;
        margin-top: 10px;
        list-style: none;
        border-radius: 24px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        z-index: 101;
        overflow-y: auto;
    }

    .nav-links.show {
        display: flex;
        max-height: calc(100vh - 80px);
        text-align: left;
        padding: 24px;
        align-items: flex-start;
        width: 246px;
    }

    .nav-links.show>li>a {
        color: #ffffff;
        font-size: 14px;
    }

    .nav-links li {
        width: 100%;
    }


    .nav-links a {
        display: block;
        padding: 16px 0;
        font-size: 16px;
        color: #FFF8F6;
    }

    .mobile-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 12px;
        /* margin-bottom: 10px; */
        border-bottom: 2px solid #ffffff;
    }

    .mobile-menu-title {
        font-family: "butterpop-regular";
        font-size: 18px;
        color: #ffffff;
    }

    /* .mobile-menu-close {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        border: 1px solid #FFF8F6;
        background: transparent;
        color: #FFF8F6;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        line-height: 1;
        cursor: pointer;
    } */

    /* .admission-btn,
    .contact-btn {
        margin-top: 8px;
    } */

    .nav-btn {
        flex-direction: column;
        gap: 16px;
        margin-top: 16px;
        width: 198px;
    }

    .nav-btn li a {

        text-decoration: none;
        color: var(--secondary-color);
        font-size: 16px;
        font-family: "clashGrotesk-semibold";
        /* line-height: 1.2; */
        transition: 0.3s;
        padding: 0;
        text-align: center;

    }

    .admission-btn {
        display: none;

    }

    .admission-btn {
        display: block;
        width: 100%;
        text-align: center;
        padding: 12px 0;
        border-radius: 40px;
        border: 2px solid #FFF8F6;
        color: #C04A1A;
        background-color: #FFF8F6;

        display: none;
    }

    .contact-btn {
        background-color: var(--primary-color);
        padding: 12px 24px;
        color: var(--secondary-color);
        border-radius: 40px;
        border: 2px solid var(--secondary-color);

        font-size: 16px;
        font-family: "clashGrotesk-semibold";
        transition: 0.3s;
    }

    .contact-btn:hover {
        background-color: var(--secondary-color);
    }


    .contact-btn:hover a {
        color: var(--primary-color);
    }



    /* Remove underline in mobile */
    .nav-links li.active::after {
        display: none;
    }

    /* Optional: hamburger rotates when open */
    .hamburger.is-open img {
        transform: rotate(90deg);
    }

    .hamburger.is-open {
        display: none;
    }

    .admission-mobile {
        display: block;
    }

    .nav-links>li.active>a {
        color: #0f0f0f;
    }
}

@media (max-width: 480px) {
    .nav-container {
        border: none;
    }

    .navbar {
        border-bottom: 1px solid #9AA093;
    }
}


/* ------------------------------------------------hero section------------------------------------------------- */


.hero {
    background: #FFF8F6;
    /* padding: 100px 60px; */
    padding: clamp(55px, 4.2vw, 60px) clamp(16px, 6vw, 82px);
    /* Desktop padding */
    text-align: center;
    position: relative;
    overflow: hidden;
}


.highlight {
    display: block;
    font-family: "butterpop-regular";
    color: var(--primary-color);
    font-size: clamp(32px, 4vw, 52px);
}

.hero-text {
    font-family: "clashgrotesk-semibold";
    color: var(--text-color);
    font-size: clamp(18px, 1.5vw, 22px);
    max-width: 670px;
    margin: 25px auto 0;
}

.hero-span {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;

}


.decor {
    position: absolute;
}

.decor-bag {
    top: 7%;
    left: 6%;
    /* width: 60px; */
    width: clamp(14px, 5vw, 60px);
}

.decor-pencil {
    top: 5%;
    right: 11%;
    width: clamp(35px, 7vw, 98px);
}

.decor-ball {
    top: 40%;
    left: 15%;
    /* width: clamp(14px, 4vw, 85px); */
}

.decor-puzzle {
    top: 60%;
    right: 5%;
}

.decor-abc {
    top: 38%;
    right: 15%;
    width: clamp(25px, 10vw, 142px);
}

.decor-spark {
    top: 28%;
    right: 4%;
    width: clamp(25px, 5vw, 87px);
}

.decor-book {
    bottom: 23%;
    right: 3.3%;
    width: 49px;
}

.decor-global {
    top: 50%;
    left: 4.5%;
    /* width: clamp(25px, 5vw, 87px); */
}

.decor-bottom {
    display: none;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* =========================
   TABLET (≤1024px)
========================= */

@media (max-width: 1024px) {

    /* .hero {
        padding: 80px 40px;
    } */

    .hero-title {
        font-size: 40px;
    }

    .highlight {
        font-size: 40px;
    }

}

/* =========================
   MOBILE (≤768px)
========================= */

@media (max-width: 768px) {

    /* .hero {
        padding: 55px 16px;
    } */

    .hero-title {
        font-size: 26px;
        width: 90%;
    }

    .highlight {
        font-size: 26px;
    }

    .hero-span {
        display: flex;
        /* flex-direction: column; */
        gap: 10px;
        margin-top: 34px;
    }

    .hero-span img {
        width: 35px;
    }


    /* Optional: hide some decorations on mobile */
    .decor-abc,
    .decor-pencil,
    .decor-book,
    .decor-global {
        display: none;
    }

    .decor-bottom {
        display: block;
        bottom: 5%;
        right: 0%;
    }

    .decor-bag {
        top: 3%;
        left: 1%;
        width: 31px;
    }

    .decor-puzzle {
        top: 17%;
        right: 17%;
        width: 35px;
    }

    .decor-ball {
        top: 40%;
        left: 88%;
        width: 30px;
    }
}

@media (max-width: 768px) {

    .hero {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* ------------------------------------------------Section2------------------------------------------------- */
.section2 {
    background: #FFF8F6;
    padding: clamp(55px, 4.2vw, 60px) clamp(16px, 6vw, 82px);
}

.section2-container {
    /* max-width: 1184px; */
    /* margin: auto; */
    background: #FFF8F6;
    /* border-radius: 48px; */
    /* padding: 24px; */

    display: flex;
    flex-direction: column;
    gap: clamp(24px, 2.5vw, 52px);
}

/* -------title-----------*/
.s2-title {
    font-family: "clashgrotesk-semibold";
    font-size: 22px;
    color: var(--text-color);
    text-align: center;
}

/* -------steps-----------*/
.steps {
    display: flex;
    flex-direction: row;
    gap: clamp(10px, 3.3vw, 32px);
    align-items: center;
}

.step {

    flex: 1;
    background-color: #ffffff;
    border-radius: 40px;
    padding: 24px;
    gap: 16px;
    text-align: center;
}

.step h3 {
    font-family: "clashgrotesk-semibold";
    font-size: clamp(20px, 2vw, 24px);
    color: #000000;
    margin: 16px 0;
}

.step p {
    font-family: "clashgrotesk-medium";
    font-size: clamp(14px, 2vw, 18px);
    color: var(--text-color);
}

.current {
    border: 4px solid var(--primary-color);
}

.current p,
.current h3 {
    color: var(--primary-color);
}

.underline {
    height: 10px;
    width: 64px;
    background-color: var(--secondary-color);
    border-radius: 30px;
}

.underline-current {
    background-color: var(--primary-color);
}

.form {
    width: 896px;
    margin: 0 auto;

    background-color: #ffffff;
    border: 1px solid #EBF5DF;
    border-radius: 32px;
    padding: clamp(24px, 2.22vw, 32px) clamp(16px, 2.22vw, 32px);

    display: flex;
    flex-direction: column;
    gap: 24px;

}

.form-title {
    font-family: "clashgrotesk-semibold";
    font-size: clamp(24px, 2.1vw, 30px);
    color: var(--text-color);
    line-height: 1.2;
}

.signup {
    border: 2px solid var(--secondary-color);
    padding: 26px;
    border-radius: 16px;

    display: flex;
    flex-direction: column;
    gap: 16px;

}

.p1 {
    font-family: "clashgrotesk-regular";
    font-size: 16px;
    color: #5C6D70;
    line-height: 1.5;

    text-align: center;
}

.google {
    border: 2px solid var(--secondary-color);
    padding: 15px;
    border-radius: 99px;
    cursor: pointer;
}

.google-text {
    font-family: "clashgrotesk-semibold";
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.5;

    display: flex;
    flex-direction: row;
    gap: 12px;
    justify-content: center;
}

.or {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.line {
    height: 1px;
    width: 40%;
    background-color: var(--secondary-color);
    border-radius: 99px;
}



.p2 {
    font-family: "clashgrotesk-regular";
    font-size: 14px;
    color: #5C6D70;
    line-height: 1.42;
    text-align: center;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.field label {
    font-family: "clashgrotesk-semibold";
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.5;

}

.field label span {
    color: var(--primary-color);
}

.field input,
.field textarea,
.field select {
    width: 100%;
    padding: 12px 16px;
    /* inner space */
    font-size: 16px;
    border: 2px solid var(--secondary-color);
    /* default border color */
    border-radius: 16px;
    outline: none;
    transition: 0.3s ease;

    caret-color: transparent;

    font-size: 16px;
    /* color: rgba(10, 10, 10, 0.5); */
    color: var(--text-color);
    font-family: "clashgrotesk-regular";

    resize: none;
    /* remove resize in textarea */

    appearance: none;
    /* remove default arrow */


}

/* Validation error state */
.field input.error {
    border-color: #C04A1A;
    box-shadow: 0 0 0 1px rgba(192, 74, 26, 0.15);
}

.field span.error {
    font-family: "clashgrotesk-regular";
    font-size: 13px;
    color: #C04A1A;
}

/* Validation for selects */
.field select.error {
    border-color: #C04A1A;
    box-shadow: 0 0 0 1px rgba(192, 74, 26, 0.15);
}

.field input::placeholder {
    font-size: 16px;
    color: rgba(10, 10, 10, 0.5);
    font-family: "clashgrotesk-regular";
}

/* Border color when focus */

.field input:focus {
    border-color: #8bc34a;
    box-shadow: 0 0 0 1px rgba(139, 195, 74, 0.15);
}

.field-btn {
    display: flex;
    flex-direction: row;
    gap: 8px;

    align-items: flex-start;

}


.verify-btn,
.upload-btn {
    background-color: #5C6D70;
    color: #ffffff;
    border-radius: 16px;
    font-size: 16px;
    font-family: "clashgrotesk-semibold";
    padding: 15px 24px;

    cursor: pointer;
}


.btn {
    width: 100%;
    padding: 16px;
    background-color: var(--primary-color);
    color: #ffffff;
    font-size: 18px;
    font-family: "clashgrotesk-semibold";
    border-radius: 99px;
    text-align: center;

    border: none;
    cursor: pointer;
}

/*-----------------------contain2------------------*/

.contain2 .step1 {
    border: 4px solid var(--primary-color);
}

.contain2 .step1 p,
.contain2 .step1 h3 {
    color: var(--primary-color);
}

.age-gender {
    display: flex;
    flex-direction: row;
    gap: 24px;
}

.subsidy {
    background-color: rgba(235, 245, 223, 0.3);
    padding: 24px;
    border-radius: 16px;

    display: flex;
    flex-direction: column;
    gap: 16px;
}

.radio-group {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.radio {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    cursor: pointer;
}

.radio input[type="radio"] {
    accent-color: var(--primary-color);
    background: transparent;
    width: 18px;
    height: 18px;

    padding: 0;
    appearance: auto;
}

.radio-text {
    font-family: "clashgrotesk-regular";
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-color) !important;
}

.income-text {
    color: #5C6D70;
    font-family: "clashgrotesk-regular";
    font-size: 14px;
    line-height: 1.42;
}

.submit-btn-group {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.back {
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    color: #5C6D70;
}



.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.select-wrapper {
    position: relative;
}

/* select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #d6e5b3;
    border-radius: 10px;
    appearance: none;
    font-size: 16px;
    cursor: pointer;
} */

/* arrow image */
.select-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    /* width: 14px; */
    /* pointer-events: none; */
}






/*-----------------------contain3------------------*/

.contain3 .step1,
.contain3 .step2 {
    border: 4px solid var(--primary-color);
}

.contain3 .step1 p,
.contain3 .step2 p,
.contain3 .step1 h3,
.contain3 .step2 h3 {
    color: var(--primary-color);
}


.interview-time {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.time {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 2px solid var(--secondary-color);
    border-radius: 16px;
    outline: none;
    transition: 0.3s ease;

    font-size: 16px;
    /* color: rgba(10, 10, 10, 0.5); */
    color: var(--text-color);
    font-family: "clashgrotesk-semibold";
    text-align: center;

}



/* hide radio */
.interview-time input {
    display: none;
}


/* hover effect */
.time:hover {
    border-color: var(--primary-color);
}

/* active selected */
.interview-time input:checked+.time {
    background: var(--primary-color);
    color: #ffffff;
}



.location {
    background-color: rgba(235, 245, 223, 0.3);
    padding: 24px;
    border-radius: 16px;

    display: flex;
    flex-direction: column;
    gap: 16px;
}

.location-title {
    display: flex;
    flex-direction: row;
    gap: 8px;
}

.location-title h4 {
    font-family: "clashgrotesk-semibold";
    font-size: 18px;
    line-height: 1.55;
    color: var(--text-color);
}

.address {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.address h4 {
    font-family: "clashgrotesk-semibold";
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-color);
}

.address p {
    font-family: "clashgrotesk-regular";
    font-size: 16px;
    line-height: 1.5;
    color: #5C6D70;
}

.location-text {
    font-family: "clashgrotesk-regular";
    font-size: 14px;
    line-height: 1.5;
    color: #5C6D70;
}

/* -------help-----------*/

.s2-help {
    background: #ffffff;
    padding: clamp(20px, 3.4vw, 49px) clamp(20px, 3.4vw, 49px) clamp(20px, 2.3vw, 33px);
    ;
    border-radius: 25px;

    /* box-shadow: 14px 14px 106px rgba(0, 0, 0, 0.05); */

    display: flex;
    flex-direction: column;
    gap: 40px;

    /* width: 895px;
    margin: 0 auto; */
}

.s2-help h4 {
    font-family: "clashgrotesk-semibold";
    font-size: 24px;
    line-height: 1.3;
}

/* Help Grid */

.s2-help-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.help-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}


.help-card h5 {
    font-family: "clashgrotesk-semibold";
    font-size: 18px;
    color: var(--text-color);
    line-height: 1.55;
    margin-bottom: 8px;
}

.help-card p {
    font-family: "clashgrotesk-regular";
    font-size: 16px;
    color: #5C6D70;
    line-height: 1.5;
}


/*--------------content4------------*/

/* wrapper */
.contain4 {
    width: 100%;
    width: 672px;
    /* max-width:640px; */
    /* padding:20px; */
    margin: 45px auto;
}

/* card */
.success-card {
    background: #fff;
    border-radius: 48px;
    padding: clamp(24px, 3.33vw, 48px);
    border: 1px solid var(--secondary-color);
    display: flex;
    flex-direction: column;
    gap: 32px;
    box-shadow: 14px 14px 106px rgba(0, 0, 0, 0.05);
    text-align: center;
}



/* success icon */
.success-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto;
}

/* heading */
.success-card h1 {
    font-size: 28px;
    font-weight: 700;
}

.sub-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sub-text h1 {
    font-family: "clashgrotesk-semibold";
    font-size: clamp(24px, 2.5vw, 36px);
    color: var(--text-color);

}

.sub-text p {
    font-family: "clashgrotesk-regular";
    font-size: 18px;
    color: #5C6D70;
    line-height: 1.62;
}

.sub-text span {
    font-family: "clashgrotesk-semibold";
    color: var(--primary-color);
}


/* visit box */
.visit-box {
    background: rgba(235, 245, 223, 0.5);
    border-radius: 24px;
    padding: 24px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.visit-title {
    display: flex;
    align-items: center;
    gap: 8px;
}

.visit-title h3 {
    font-family: "clashgrotesk-semibold";
    font-size: 20px;
    color: var(--text-color);
    line-height: 1.4;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.visit-details p {
    font-family: "clashgrotesk-regular";
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.5;
}

.visit-details span {
    font-family: "clashgrotesk-semibold";
    font-size: 16px;
    color: var(--text-color);
}


/* next box */
.next-box {
    border: 2px solid var(--secondary-color);
    border-radius: 24px;
    padding: 26px;
    width: 100%;
    text-align: left;

    display: flex;
    flex-direction: column;
    gap: 16px;
}

.next-box h3 {
    font-family: "clashgrotesk-semibold";
    font-size: 18px;
    color: var(--text-color);
}

.tick {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tick-text {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: start;
}


.tick-text p {
    font-family: "clashgrotesk-regular";
    font-size: 16px;
    color: #5C6D70;
    line-height: 1.5;
}

.tick-text span {
    color: var(--text-color);
}



/* buttons */
.action-buttons {
    display: flex;
    flex-direction: row;
    gap: 16px;
    /* flex-wrap: wrap; */
}

.go-facilities {
    border: 2px solid var(--primary-color);
    background-color: transparent;
    color: var(--primary-color);
}

/* bottom links */
.bottom-links {
    display: flex;
    flex-direction: row;
    gap: 16px;
    padding: 12px;
    border-top: 2px solid #EBF5DF;

    justify-content: center;
}

.bottom-text {
    display: flex;
    flex-direction: row;
    gap: 8px;
}

.bottom-text img {
    width: 20px;
    height: 20px;
}

.bottom-text p {
    font-family: "clashgrotesk-semibold";
    font-size: 16px;
    color: #5C6D70;
    line-height: 1.5;
}

.vertical {
    height: 24px;
    width: 3px;
    background-color: #EBF5DF;
}

.one {
    justify-content: end;
}

.two {
    justify-content: start;
}


a {
    text-decoration: none;
    color: unset;
    width: 100%;
    cursor: pointer;
}


.section-container {
    display: none;
}

.section-container.active-contain {
    display: block;
}






.radio-field {
    display: none;
}

.radio-field.show {
    display: flex;
}

@media (max-width: 1024px) {
    .underline {
        display: none;
    }

    .steps {
        align-items: stretch;
    }

    .steps .step {
        display: none;
    }

    .steps .step.current {
        display: block;
    }

    .form {
        width: 100%;
    }

    .s2-help {
        width: 100%;
    }

    /*--------contain2------------*/
    /* .current {
        display: none;
    } */

    /* .current :last-child {
        display: block;
    } */

    /* .current:not(:last-child) {
        display: none;
    } */

    /*--------contain3------------*/
    .submit-btn-group {
        flex-direction: column-reverse;
    }

    /*--------contain4------------*/
    .contain4 {
        width: 100%;
    }

}

@media (max-width: 768px) {

    .s2-help {
        display: none;
    }

    .interview-time {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }


    /*--------contain4------------*/

    .action-buttons {
        flex-direction: column;
    }

    .bottom-links {
        flex-direction: column;
    }

    .vertical {
        display: none;
    }

    .bottom-text {
        justify-content: center;
    }
}

@media (max-width: 480px) {

    .section2 {
        padding-left: 16px;
        padding-right: 16px;
    }

    .step {
        text-align: left;
    }

    .step h3 {
        margin: 16px 0 8px;
    }
}

/* ------------------------------------------------Footer section------------------------------------------------- */

/* ==========================
   FOOTER BASE
========================== */

.footer {
    background: #FFFFFF;
    padding: 40px clamp(16px, 5.6vw, 82px);

}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    /* max-width: 1300px; */
    margin: auto;
}

/* ==========================
   LEFT SECTION
========================== */

.footer-logo {
    width: 136px;
    height: 103px;
    margin-bottom: 40px;
}

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.footer-contact a {
    text-decoration: none;
    color: #000000;
    font-family: "clashgrotesk-medium";
    font-size: 20px;
    line-height: 160%;

}

/* .icon {
  font-size: 16px;
  color: #c04a1a;
} */

/* ==========================
   HEADINGS + LIST
========================== */

.footer-col h4 {
    font-family: "clashgrotesk-semibold";
    font-size: 18px;
    margin-bottom: 32px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 16px;
}

.footer-col ul li a {
    text-decoration: none;
    font-family: "clashgrotesk-medium";
    color: #000000;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    /* IMPORTANT */
}

.footer-col ul li a:hover {
    color: #c04a1a;
    transform: translateX(5px);
}

.combain {
    /* display: flex;
    flex-direction: row;
    justify-content: space-between; */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    width: max-content;
}

/* ==========================
   SOCIAL
========================== */

.social-icons {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.social {
    width: 36px;
    height: 36px;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;

}

.social:hover {
    /* background: #a63b12; */
    transform: scale(1.1);
}

/* ==========================
   MAP
========================== */

.map-box {
    width: 100%;
    border-radius: 30px;
}

.map-caption {
    font-family: "clashgrotesk-regular";
    font-size: 16px;
    margin-top: 12px;
    line-height: 160%;
    color: #000000;
}

/* ==========================
   1024px (Small Laptop)
========================== */

@media (max-width: 1024px) {



    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-right {
        grid-column: span 2;
    }
}

/* ==========================
   TABLET (768px)
========================== */
/* 
@media (max-width: 768px) {

    .footer {
        padding: 40px 30px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-col {
        text-align: center;
    }

    .footer-contact .contact-item {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-right {
        align-items: center;
    }

    .map-box {
        max-width: 300px;
        margin: auto;
    }
} */

/* ==========================
   MOBILE (480px)
========================== */

@media (max-width: 768px) {


    .footer-container {
        display: flex;
        flex-direction: column;
        gap: 52px;
    }

    /* .footer-logo {
        width: 70px;
    } */
    .combain {
        display: flex;
        flex-direction: row;
        gap: 56px;
    }

    .footer-contact .contact-item {
        justify-content: start;
    }

    .footer-col {
        text-align: left;
    }

    .footer-col h4 {
        font-size: 16px;
    }

    .footer-col ul li a {
        font-size: 14px;
    }

    .social {
        width: 34px;
        height: 34px;
    }

    .social-icons {
        justify-content: start;
        margin-bottom: 32px;
    }

    .map-box {
        max-width: 100%;
    }
}


/* ------------------------------------------------------------
FORM VALIDATION ERRORS
------------------------------------------------------------ */

.error-msg {
    color: #dc2626;
    font-family: "clashgrotesk-regular";
    font-size: 14px;
    /* margin-top: 6px; */
    display: block;
    /* font-weight: 500; */
}

.input-error {
    border: 1px solid #dc2626 !important;
    background-color: #fff5f5;
}

