body {
    font-family: 'Lato-Regular';
}

/* Banner */
#book-an-apt-banner {
    position: relative;
    padding: 10% 0%;
    background-image: url("/public/uploads/images/Book-an-app-Banner.webp");
    background-size: 100% auto;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-end;

}

#book-an-apt-banner .consultation-type.text-center {
    display: flex;
    width: 100%;
    max-width: 100%;
    justify-content: center;
}

#book-an-apt-banner .banner-content h2 {
    color: #fff;
    font-size: 3vw;
    margin-bottom: 2.5vw;
    font-family: 'Lato-Semibold';
}

#book-an-apt-banner .btn-submit {
    background: rgba(60, 65, 150, 1);
    color: #fcda17;
    border: none;
    padding: 2.5% 6%;
    font-size: 1.4vw;
    border-radius: 0.4vw;
    cursor: pointer;
    font-family: 'Lato-Regular';
}

#book-an-apt-banner .btn-submit:hover {
    background: #2a1f70;
}

/* Breadcrumb */
#book-an-apt-banner .breadcrumb-container {
    text-align: left;
    font-size: 1.1vw;
    padding: 2% 10%;
    color: #333;
}

/* Appointment Section */
#appointment-form-sec {
    display: block;
    background-image: url("/public/uploads/images/Book-Form-Bg.webp");
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0px;
    width: 100%;
    padding-bottom: 5%;
}

#appointment-form-sec .appointment-card {
    background: #f6f6f6;
    padding: 3% 4%;
    border-radius: 1vw;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    width: 60%;
    text-align: center;
    display: block;
    margin: auto;
}

#appointment-form-sec .appointment-card .title {
    color: #3C4196;
    font-size: 1.5vw;
    padding: 1vw 2vw;
    border-radius: 0.4vw;
    display: inline-block;
    margin-bottom: 1vw;
}



/* Radio Buttons */
#appointment-form-sec .radio-btn {
    margin: 0 1.5vw;
    font-size: 1vw;
    cursor: pointer;
    display: block;
    width: 32%;
}

#appointment-form-sec .radio-btn input {
    /* display: none; */
    position: relative;
    left: 2vw;
    top: 0.1vw;
}

#appointment-form-sec .radio-btn span {
    color: #3C4196;
    background: #fff;
    border: none;
    padding: 0.3vw 3%;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1.2vw;
    line-height: 1.2;
    font-weight: 400;
    /* width: 100%; */
}



/* Form */
#appointment-form-sec .appointment-form {
    margin-top: 2vw;
}

#appointment-form-sec .form-group {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2vw;
    gap: 2%;
}

#appointment-form-sec .form-control {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 1.5vw 1.5vw;
    font-size: 1.1vw;
}

/* Custom Dropdown */
#appointment-form-sec .custom-dropdown {
    position: relative;
    width: 100%;
}

#appointment-form-sec .dropdown-btn {
    width: 100%;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 0.7vw 1.5vw;
    font-size: 1.1vw;
    cursor: pointer;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#book-an-apt-banner .banner-overlay.container {
    width: 92%;
    max-width: 92%;
    display: flex;
    justify-content: end;
}

#book-an-apt-banner .banner-content {
    width: 40%;
}

#appointment-form-sec .dropdown-list {
    display: none;
    position: absolute;
    top: 105%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 0.4vw;
    z-index: 10;
    padding-left: 0px;
}

#appointment-form-sec .dropdown-list li {
    list-style: none;
    padding: 0.8vw;
    cursor: pointer;
}

#appointment-form-sec .dropdown-list li:hover {
    background: #f3f3f3;
}

/* Submit Button */
#appointment-form-sec .btn-main {
    background: #3C4196;
    color: #fff;
    border: none;
    padding: 0.8vw 3vw;
    border-radius: 50px;
    font-size: 1.2vw;
    letter-spacing: 0.05vw;
    cursor: pointer;
    margin-top: 3%;
    margin-bottom: 3%;
}

#appointment-form-sec .btn-main:hover {
    background: #2a1f70;
}


/* ======= RADIO BUTTONS (UPDATED) ======= */
#appointment-form-sec .consultation-type {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2%;
    margin-bottom: 3vw;
    margin-top: -1vw;
}

#appointment-form-sec .radio-btn {
    position: relative;
    /* display: inline-flex; */
    /* align-items: center; */
    justify-content: flex-start;
    border: 1px solid #C5C5C5;
    border-radius: 50px;
    background: #fff;
    padding: 0.8vw 0vw 0.8vw 2.5vw;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2vw;
    color: #3C4196;
    font-family: 'Lato-Regular';
    text-align: left;
}

/* hide the native radio */
#appointment-form-sec .radio-btn input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* when selected -> blue filled circle */
#appointment-form-sec .radio-btn input:checked~span::before {
    content: "";
    position: absolute;
    left: 1vw;
    top: 50%;
    transform: translateY(-50%);
    width: 1.3vw;
    height: 1.3vw;
    border-radius: 50%;
    background: #FEDA22;
    /* blue fill */
    border: 0.42vw solid #3C4196;
}

#appointment-form-sec .radio-btn span::before {
    content: "";
    position: absolute;
    left: 1vw;
    top: 50%;
    transform: translateY(-50%);
    width: 1.3vw;
    height: 1.3vw;
    border-radius: 50%;
    background: #707070;
    /* blue fill */
    border: 0.42vw solid #FEDA22;
}




/* span styling (text) */
#appointment-form-sec .radio-btn span {
    /* display: inline-block; */
    /* width: 100%; */
    text-align: left;
    font-size: 1.2vw;
    font-weight: 500;
    color: #3C4196;
}

/* selected state styling */

/* subtle hover border */
#appointment-form-sec .radio-btn:hover {
    border-color: #3C4196;
}

/* spacing between the two */
#appointment-form-sec .consultation-type .radio-btn+.radio-btn {
    margin-left: 2%;
}

/* ============================
   LABEL STYLING (New)
   ============================ */
#appointment-form-sec .form-label {
    width: 48%;
    display: flex;
    flex-direction: column;
}

#appointment-form-sec .form-label label {
    font-size: 1.1vw;
    color: #3C4196;
    font-family: 'Lato-Semibold';
    margin-bottom: 0.6vw;
    text-align: left;
}

/* ============================
   RADIO BUTTON COLOR FIX
   ============================ */
#appointment-form-sec .radio-btn span::before {
    content: "";
    position: absolute;
    left: 1vw;
    top: 50%;
    transform: translateY(-50%);
    width: 1.3vw;
    height: 1.3vw;
    border-radius: 50%;
    border: 0.42vw solid #FEDA22;
    background: #707070;
    transition: all 0.3s ease;
}

#appointment-form-sec .radio-btn input:checked~span::before {
    border: 0.42vw solid #3C4196;
    background: #FEDA22;
}

#appointment-form-sec .breadcrumb-container {
    padding: 2% 1%;
}

#appointment-form-sec .appointment-card h4.subtitle {
    color: #3C4196;
    font-size: 1.3vw;
    padding-top: 0%;
    padding-bottom: 1%;
    border-radius: 0.4vw;
    display: inline-block;
    margin-bottom: 1vw;
}


/* ============================
   MOBILE RESPONSIVENESS
   ============================ */
@media (max-width: 767px) {
    #book-an-apt-banner {
        padding: 25% 0;
        background-size: auto 100%;
        background-position: left -22vw bottom;
    }
    
    #appointment-form-sec .appointment-card h4.subtitle {
    font-size: 4vw;
}


    #book-an-apt-banner .banner-content {
        width: 90%;
        text-align: center;
    }

#book-an-apt-banner     .banner-content h2 {
        font-size: 7vw;
        line-height: 7vw;
        margin-bottom: 5vw;
	padding-top: 15%;
    }
#book-an-apt-banner .btn-submit {
    font-size: 4.4vw;
}
    #appointment-form-sec .btn-submit {
        font-size: 4.5vw;
        padding: 5% 11%;
        border-radius: 15px;
    }

    #appointment-form-sec .appointment-card {
        width: 92%;
        padding: 8% 5%;
        border-radius: 3vw;
    
}

#book-an-apt-banner .banner-overlay.container {
    width: 92%;
    max-width: 92%;
    display: flex
;
    justify-content: center;
}

    #appointment-form-sec .appointment-card .title {
        font-size: 5vw;
        margin-bottom: 6vw;
    }

    #appointment-form-sec .consultation-type {
        flex-direction: column;
        gap: 5vw;
        margin-bottom: 10%;
    }

    #appointment-form-sec .radio-btn {
        width: 85%;
        font-size: 3.5vw;
        padding: 2.5vw 0vw 2.5vw 8vw;
    }

    #appointment-form-sec .radio-btn span::before,
    #appointment-form-sec .radio-btn input:checked~span::before {
        width: 4.5vw;
        height: 4.5vw;
        left: 3.5vw;
        border-width: 1.5vw;
    }

    #appointment-form-sec .form-group {
        flex-direction: column;
        gap: 5vw;
        margin-bottom: 5%;
    }

    #appointment-form-sec .form-label {
        width: 100%;
    }

    #appointment-form-sec .form-label label {
        font-size: 4.5vw;
        margin-bottom: 2vw;
    }

    #appointment-form-sec .form-control,
    #appointment-form-sec .custom-dropdown {
        width: 100%;
        font-size: 4.5vw;
        padding: 3.5vw 6vw;
        border-radius: 3vw;
        height: auto;
    }

    #appointment-form-sec .custom-dropdown {
        padding: 0vw;
    }

    #appointment-form-sec .dropdown-btn {
        font-size: 4.5vw;
        padding: 3.5vw;
        border-radius: 3vw;
    }

    #appointment-form-sec .btn-main {
        font-size: 3.5vw;
        padding: 3.5vw 10vw;
        border-radius: 50px;
        margin-top: 5vw;
    }

    #appointment-form-sec .breadcrumb-container {
        font-size: 5vw;
        padding: 5% 8%;
    }

    #appointment-form-sec .radio-btn span {
        font-size: 4vw;
    }

    #appointment-form-sec .dropdown-list li {
        padding: 2.8vw;
    }
}


#appointment-form-sec select.form-control {
    padding: 0.7vw 1.5vw;
}

section.hp-sec5.aos-init.aos-animate {
    /* height: 0px; */
    padding: 0px;
}
@media (max-width: 767px) {
    #appointment-form-sec select.form-control {
      padding: 3.7vw 5.5vw;
    }
}

html {
    scroll-behavior: smooth;
}
span.error-msg {
    text-align: left;
    position: absolute;
    bottom: -1.3vw;
    left: 3px;
}

#appointment-form-sec .form-label {
    position: relative;
}


.our-commitments1 {
    display: none;
}


section.hp-sec5 {
    padding: 0px !important;
}


@media(max-width: 767px)
{

#appointment-form-sec {
    padding-bottom: 15%;
}
    #book-an-apt-banner .btn-submit {
        font-size: 4.4vw;
        display: none;
    }

    #book-an-apt-banner {
        margin-top: 11%;
    }
   #book-an-apt-banner::after {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.4);
   }

    #book-an-apt-banner .banner-overlay.container {
        position: relative;
        z-index: 1;
    }
        #header .navbar-default .navbar-collapse {
        padding-bottom: 0% !important;
    }
    .navbar {
    min-height: 70px !important;
}
button.navbar-toggle {
    position: relative;
    top: 8px;
}
}

@media(min-width: 767px) and (max-width: 992px)
{
#book-an-apt-banner {
    margin-top: -7%;
}

}
