/* 
Josefin Sans --
Poppins --
Montserrat --
Raleway
Nunito Sans ---
Ubuntu ---
Quicksand
Barlow
Jost -
Abel
Cairo

*/
:root {
    --yellow: #f1ba2d;
    --blue: #010066;
    --white: #fff;
    --black: #000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Abel", sans-serif;
}

body {
    overflow-x: hidden;
}

/* p,
a {
    font-family: "Cairo", sans-serif;
} */

/* --- custom scroll bar ---- */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background-color: var(--gray);
}

::-webkit-scrollbar-thumb {
    background: var(--yellow);
    border-radius: 6px;
}

/* --- custom scroll bar ---- */

h1 {
    font-size: 90px;
    font-weight: 900;
    line-height: 3rem;
    color: #0f0f0f;
}

h2 {
    font-size: 45px;
    font-weight: 800;
}

h3 {
    font-size: 40px;
    font-weight: 700;
}

p {
    font-size: 18px;
}

hr {
    color: #202020;
}

/*Navigation CSS*/
.navbar {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1111;
    margin: auto;
    background-color: #fff;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.header button{
    position: absolute;
    right: 0;
}

.header-banner {
  width: 100%;
  height: 90vh;
  padding: 0;
  background-image: url('../Images/header-banner.jpg');
  background-position: center center;
  background-size: cover;
  background-attachment: scroll;
  background-repeat: no-repeat;
  /* display: flex;
  align-items: center;
  justify-content: center; */
  color: white;
}

.header-text > h3, h2{
    font-family: 'cairo';
}

.header-doctor img{
    width: 100%;
    height: auto;
}

.logo img {
    width: 200px;
    height: auto;
}

.btn-bookCounselling {
    border: 2px solid var(--blue);
}

/* ************************************** */
.line {
    width: 2px;
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 0;
    bottom: 0;
    background-color: #000;
}

.line:before,
.line:after {
    content: '';
    position: absolute;
    display: block;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background-color: #000;
    left: 50%;
    transform: translateX(-50%);
}

.line:after {
    bottom: 0;
}

/* ****************************** */


.college-img {
    position: relative;
    z-index: 1;
}

.college-img:hover>.img-overlay {
    bottom: 0;
    transition: .2s cubic-bezier(.17, .67, .83, .67);
}

.img-overlay {
    width: 100%;
    height: 100%;
    background-color: var(--yellow);
    z-index: 2;
    position: absolute;
    bottom: -100%;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    overflow: hidden;
    transition: .2s cubic-bezier(.17, .67, .83, .67);

}


.circle {
    width: 150px;
    height: 150px;
    border-radius: 100%;
    border: 3px dashed var(--blue);
}

/* FOOTER SECTION START */
footer {
    width: 100%;
    height: auto;
    background-color: var(--blue);
    padding: 50px 0;
    color: #dbdbdb;
    font-weight: 200;
}

.footer-area {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
}

.footer-content {

    width: 100%;
    height: auto;
    flex: 1;
}

.footer-content h3 {
    font-size: 25px;
    color: rgb(240, 240, 240);
}

.footer-content h5 {
    color: rgb(240, 240, 240);
    font-size: 12px;
    font-weight: 300;
}

/* .footer-map {
    flex: 1;
} */

.footer-bottom {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom .footer-bottom-right p {
    color: var(--yellow);
    text-align: center;
}

.footer-bottom .footer-bottom-left i {
    margin: 0 8px;
    cursor: pointer;
    font-size: 18px;
    color: #fff;
}

.footer-bottom .footer-bottom-left i:hover {
    color: var(--yellow);
}


/* =========== QUERY FORM POPUP CSS ========== */
.query-header{
    width: 100%;
    height: auto;
    background-color: #fff;
    border-radius: 6px;
    text-align: center;
    padding: 20px 30px;
    color: #222222;
    border: 2px solid var(--blue);
    transition: transform 0.4s, top 0.4s;
}

.query-header form label, .query-header form textarea, .query-header form .input{
    margin: 5px 0;
}

.query-popup form .input, .query-header form .input {
    width: 100%;
    padding: 10px 20px;
    border: 1px solid #eeeeee;
    border-radius: 50px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.query-popup {
    width: 420px;
    height: auto;
    background-color: #fff;
    border-radius: 6px;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.1);
    text-align: center;
    padding: 0 30px 30px;
    color: #222222;
    border: 2px solid var(--blue);
    visibility: hidden;
    transition: transform 0.4s, top 0.4s;
    z-index: 9999;
}

.query-popup form{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.query-popup form .input{
    width: 100%;
    padding: 10px 20px;
    border: 1px solid #eeeeee;
    border-radius: 50px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.query-popup form label, .query-header form label {
    width: 100%;
}

.query-popup form textarea, .query-header form textarea{
    width: 100%;
    outline: none;
    border: 2px solid #eeeeee;
    padding: 10px 20px;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.query-popup form input:focus {
    outline: none;
    transition: transform 0.4s, top 0.4s;
}


.open-query-popup {
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
    visibility: visible;
}

.query-popup h2, .query-header h2  {
    font-size: 38px;
    font-weight: 500;
    margin: 30px 0 10px;
}

.query-popup button, .query-header button {
    width: 100%;
    padding: 10px 0;
    background-color: var(--blue);
    color: #fff;
    border: 0;
    font-size: 18px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: .3s ease-in-out;
}
.query-popup button:hover, .query-header button:hover{
    background-color: var(--yellow);
    color: #000;
    transition: .3s ease-in-out;
}

.query-popup .closeTimes {
    color: #333;
    font-size: 45px;
    position: absolute;
    top: -10px;
    right: 10px;

}

/* Click to Top Button CSS Start */

.whatsapp,
.cta {
    width: 50px;
    height: 50px;
    border-radius: 100px;
    background-color: #fff;
    z-index: 9999;
    margin: auto;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
}

.whatsapp {
    position: fixed;
    bottom: 40px;
    right: 30px;
    padding: 8px;
    background-color: #1eaf19;
}

.cta {
    background-color: #fff;
    position: fixed;
    bottom: 100px;
    right: 30px;
    padding: 5px;
}

.cta i {
    font-size: 28px;
    color: #000;
}