* {
    padding: 0;
    margin: 0;
    font-family: var(--primary_font_family);
}

:root {
    --primary_font_family: 'Poppins', sans-serif;
    --primary_color: #172048;
    --gradient_hero_one: #50D9DB;
    --gradient_hero_second: #007299;
    --gradient_button_one: #56E0E0;
    --gradient_button_two: #007299;
    --gradient_heading_one: #45BDBF;
    --gradient_heading_two: #005C7B;
}

body {
    background-color: #F4FEFF;
    font-family: var(--primary_font_family);
    margin: auto;
    overflow: hidden;
}

.center_align {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/********************************/
/*            LOADER            */
/********************************/
.loading {
    background-color: white;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading svg {
    transform: scale(1.5);
}

.loading svg polyline {
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.loading svg polyline#back {
    fill: none;
    stroke: var(--gradient_button_one);
}

.loading svg polyline#front {
    fill: none;
    stroke: var(--gradient_heading_two);
    stroke-dasharray: 48, 144;
    stroke-dashoffset: 192;
    animation: dash_682 1.4s linear infinite;
}

@keyframes dash_682 {
    72.5% {
        opacity: 0;
    }

    to {
        stroke-dashoffset: 0;
    }
}



/********************************/
/*       PARALLAX EFFECT        */
/********************************/

.animate-on-scroll {
    opacity: 0;
    transform: translateY(100px);
}

@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeSlideUp 0.6s ease-out forwards;
    animation-delay: var(--anim-delay, 0s);
}

.animate-on-scroll-2 {
    opacity: 0;
    transform: translateY(40px);
}




/********************************/
/*          MENU LIST           */
/********************************/


#menu_list {
    position: fixed;
    top: 0;
    right: -104%;
    width: 100vw;
    height: 100vh;
    background-color: #F4FEFF;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: right 0.5s ease-in-out;
    box-shadow: -4px 0 10px rgba(0, 0, 0, 0.1);
    min-height: fit-content;
    overflow-y: auto;
}

#menu_list.show {
    right: 0;
}

#menu_list ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: fit-content;
}

#menu_list ul li {
    margin: 10px 0;
}

#menu_list ul li a {
    font-family: var(--primary_font_family);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    color: #C4C4C4;
}

#menu_list ul li a.active_tab {
    color: #535151;
    pointer-events: none;
}

#close_menu {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 28px;
    cursor: pointer;
}



/********************************/
/*        NAVBAR STYLING        */
/********************************/
#navbar {
    transition: background-color 0.3s ease,
        box-shadow 0.3s ease,
        height 0.3s ease,
        transform 0.3s ease;

    display: flex;
    align-items: center;
    justify-content: center;
}

#navbar.sticky {
    transform: translateY(0);
    height: 65px;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 9000;
    background-color: #F4FEFF;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
}


nav {
    margin: auto;
    width: 85%;
    height: 56px;
    padding-top: 16px;
}

/*Logo Styling*/
#logo {
    position: relative;
    width: fit-content;
}

#logo h1 {
    font-family: var(--primary_font_family);
    font-weight: 500;
    font-size: 24px;
    text-align: center;
}

#logo h1 span {
    font-weight: 700;
}

#logo_img {
    position: absolute;
    width: 16px;
    height: 20px;
    top: -10px;
    right: -14px;
}


/*Navigation Styling*/
#navigation ul {
    gap: 47px;
    padding-left: 50px;
}

#navigation ul li {
    list-style: none;
}

#navigation ul li a {
    font-family: var(--primary_font_family);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    color: #C4C4C4;
    transition: all 0.3s ease;
    text-align: center;
}

#navigation ul li a.active_tab {
    color: #535151;
    text-decoration: none;
    pointer-events: none;
}


/*Sign-In/Sign-up buttons styling*/
#sign_in_up {
    gap: 30px;
}

#sign_in_up button {
    font-family: var(--primary_font_family);
    background: transparent;
    border: none;
    outline: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
}

#sign_in_up button:first-child {
    color: #097DA0;
    text-shadow: 0px 10px 15px rgba(1, 115, 153, 0.2);
}

#sign_in_up button:nth-child(2) {
    border-radius: 39px;
    padding: 15px 40px 15px 40px;
    color: white;
    background: linear-gradient(74deg, #56E0E0, #007299);
    box-shadow: 0px 10px 15px rgba(1, 115, 153, 0.2);
}

#hamburger {
    display: none;
}


/********************************/
/*         HERO SECTION         */
/********************************/
#hero {
    display: flex;
    justify-content: space-between;
    margin-top: 70px;
    margin-bottom: 70px;
    width: 92.5%;
    margin-left: auto;
}

#hero_left {
    max-width: 50%;
    padding-top: 30px;
}

#hero_left h1 {
    font-family: var(--primary_font_family);
    font-weight: 700;
    font-size: 59px;
    line-height: 150%;
    text-align: justify;
    color: #172048;
}

#hero_left h1:nth-child(2) {
    background: linear-gradient(88deg, #50D9DB 0%, #007299 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

#hero_left p {
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    margin-top: 15px;
    margin-bottom: 15px;
    text-align: justify;
    color: #C4C4C4;
    max-width: 495px;
}

#hero_buttons {
    gap: 22px;
    display: flex;
    align-items: center;
    justify-content: start;
    margin-top: 40px;
}

#hero_buttons button {
    padding: 20px 68px 20px 68px;
    border-radius: 39px;
    border: none;
    outline: none;
    background: linear-gradient(78deg, #56E0E0 0%, #007299 100%);
    font-weight: 600;
    font-size: 16px;
    color: white;
    font-family: var(--primary_font_family);
    box-shadow: 0px 10px 15px rgba(1, 115, 153, 0.2);
}

#hero_right {
    height: 619px;
    width: 560px;
    position: relative;
}

#hero_right img {
    width: 100%;
}

#hero_image {
    position: absolute;
    top: 60px;
    left: 38px;
    width: 465px !important;
    height: 600px;
}



/********************************/
/*       SERVICEs SECTION       */
/********************************/
#services {
    width: 100%;
    background-color: white;
    padding-top: 100px;
}

.heading h1 {
    text-align: center;
    color: var(--primary_color);
    font-size: 48px;
    font-weight: 700;
    /* line-height: 150%; */
    letter-spacing: 0%;
}

.heading h1 span {
    background: linear-gradient(88deg, var(--gradient_heading_one) 0%, var(--gradient_heading_two) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

#services_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 66px;
    margin: 70px auto 0;
    padding: 0 20px;
    max-width: 1200px;
    position: relative;
}

.service {
    flex: 1 1 300px;
    max-width: 300px;
    background-color: #F4FEFF;
    border-radius: 30px;
    padding: 100px 24px 20px;
    box-shadow:
        0px 4px 4px rgba(46, 173, 191, 0.25),
        0px 10px 15px rgba(151, 151, 151, 0.08);
    text-align: center;
    transition: background 0.3s, box-shadow 0.3s;
}

.service img {
    width: 162px;
    height: 162px;
}

.service h3 {
    margin-top: 20px;
    font-size: 24px;
    color: var(--primary_color);
    transition: color 0.3s;
}

.service p {
    margin: 20px 0;
    font-size: 14px;
    line-height: 185%;
    font-weight: 400;
    color: var(--primary_color);
    transition: color 0.3s;
    text-align: start;
}

.service:hover {
    background: linear-gradient(0deg, #04789D 0%, #4ED6DA 100%);
    box-shadow: 0px 10px 15px rgba(151, 151, 151, 0.08);
    cursor: pointer;
}

.service:hover h3,
.service:hover p {
    color: #fff;
}

#demo_booking_container {
    margin-left: auto;
    margin-right: 35px;
    width: 90%;
    margin-top: 200px;
    background-color: white;
    display: flex;
    justify-content: space-between;
}

#demo_left {
    max-width: 600px;
}

#demo_left h1:nth-child(1) {
    background: linear-gradient(88deg, var(--gradient_heading_one) 0%, var(--gradient_heading_two) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-size: 41px;
    line-height: 71px;
    margin-bottom: 40px;
}

#demo_left h1:nth-child(2) {
    font-weight: 500 !important;
    font-size: 39px;
    line-height: 140%;
    color: rgba(0, 0, 0, 0.2);
}

#demo_left h1:nth-child(3) {
    background: linear-gradient(89deg, var(--gradient_heading_one) 0%, var(--gradient_heading_two) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: 600;
    font-size: 41px;
    line-height: 71px;
    margin: 20px 0px;
}

#demo_left h1:nth-child(3) span {
    color: #313232 !important;
    -webkit-text-fill-color: #313232;
}

#demo_left button {
    font-weight: 600;
    font-size: 18px;
    color: white;
    font-family: var(--primary_font_family);
    padding: 20px 68px 20px 68px;
    border: none;
    border-radius: 40px;
    background: linear-gradient(79deg, #56E0E0 0%, #007299 100%);
    margin-top: 20px;
    box-shadow: 0px 10px 15px rgba(1, 115, 153, 0.2);
}

#demo_right {
    width: 43%;
    position: relative;
    padding-top: 15px;
}

.mic_icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--gradient_heading_one) 0%, var(--gradient_heading_two) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.dr_one {
    display: flex;
    align-items: center;
    gap: 20px;
}

.dr_one p {
    background: linear-gradient(89deg, var(--gradient_heading_one) 0%, var(--gradient_heading_two) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: 700;
    font-size: 16px;
    line-height: 160%;
    max-width: 250px;
}

#waveform {
    width: 30%;
    height: 106px;
    padding-left: 15px;
    scale: 2.5;
    position: absolute;
    left: 20%;
    top: 25%;
}

#demo_right span {
    padding: 10px;
    color: white;
    border-radius: 40px;
    background: linear-gradient(90deg, #45BDBF 0%, #005C7B 100%);
    font-weight: 500;
    font-size: 14px;
}

.line {
    width: 82px;
    border: 2px solid rgba(69, 189, 191, 1);
    transform: rotate(90deg);
    position: absolute;
    border-radius: 10px;
}

.line:nth-child(1) {
    top: 102px;
    left: -22px;
}

.line:nth-child(2) {
    top: 237px;
    right: 93px;
}

.line:nth-child(3) {
    top: 366px;
    left: 285px;
}

.dr_three {
    position: absolute;
    right: 0;
    top: 57.5%;
}

.dr_four {
    position: absolute;
    left: 9%;
    top: 71%;
}




/********************************/
/*        DOCTOR SECTION        */
/********************************/
#doctors {
    padding-top: 200px;
    background-color: white;
}

#doctor_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 85%;
    margin: auto;
    gap: 30px;
    margin-top: 100px;
}

#doctor_container img {
    width: 517px;
    height: 338px;
}

.container {
    display: flex;
    flex-direction: column;
    gap: 26px;
    max-width: 456px;
}

.list_tile {
    display: flex;
    gap: 10px;
}

.list_tile div {
    display: flex;
    padding-top: 7px;
    justify-content: center;
}

.list_tile i {
    background: linear-gradient(180deg, var(--gradient_heading_one) 0%, var(--gradient_heading_two) 100%);
    width: 30px;
    height: 30px;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.list_tile p {
    background: linear-gradient(90deg, var(--gradient_heading_one) 0%, var(--gradient_heading_two) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.list_tile span,
.list_tile p {
    font-size: 29px;
    font-weight: 500;
    font-family: var(--primary_font_family);
}

.list_tile p {
    font-weight: 600;
}

.list_tile p span {
    color: black !important;
}

#doctor_button {
    margin-top: 100px;
}

#doctor_button button {
    font-family: var(--primary_font_family);
    margin: auto;
    padding: 20px 68px 20px 68px;
    border: none;
    outline: none;
    border-radius: 40px;
    background: linear-gradient(80deg, var(--gradient_button_one) 0%, var(--gradient_button_two) 100%);
    color: white;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 10px 15px rgba(1, 115, 153, 0.2);
}

#doctor_button button span {
    display: flex;
    align-items: center;
    justify-content: center;
}

#doctor_button button i {
    margin-left: 20px;
    font-size: 24px;
}

#doctor_hero {
    width: 90%;
    margin: auto;
    height: 699px;
    border-radius: 40px;
    background: linear-gradient(180deg, var(--gradient_heading_one) 0%, var(--gradient_heading_two) 100%);
    margin-top: 100px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#doctor_hero h1 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 200px;
    letter-spacing: -2%;
    color: rgba(198, 222, 253, 1);
    top: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: absolute;
}

#doctor_hero>img {
    width: 417px;
    height: 633px;
    left: 50%;
    top: 25%;
    transform: translateX(-50%);
    filter:
        brightness(0.9) contrast(1.1) saturate(0.8);
    z-index: 10;
    position: absolute;
}

.upper {
    width: 85%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    top: 43%;
    position: absolute;
}

.upper img {
    width: 23px;
}

.upper>div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.upper div div {
    width: 47px;
    height: 47px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upper span {
    color: #C6DEFD;
    font-weight: 400;
    font-size: 25px;
    letter-spacing: -2%;
    font-family: 'Outfit', sans-serif;
}

.bottom {
    width: 95%;
    top: 80%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bottom_right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.bottom_left span {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 33px;
    color: white;
}

.bottom_right p {
    width: 243px;
    height: 70px;
    font-family: 'Outfit', sans-serif;
    color: rgba(0, 0, 0, 1);
    border-radius: 128px;
    background-color: rgba(231, 194, 212, 1);
    font-weight: 600;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottom_right button {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(231, 194, 212, 1);
    border: none;
}

.bottom_right button i {
    font-size: 19px;
}


/********************************/
/*        PATIENT SECTION       */
/********************************/
#patients {
    padding-top: 200px;
    background-color: white;
}

#patient_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
    margin: auto;
    gap: 20px;
}

#patient_container>img {
    width: 324px;
    height: 672px;

}

#patient_container .container {
    max-width: 100% !important;
    gap: 30px;
    align-items: start;
}


#patient_button {
    margin-top: 40px;
}

#patient_button button {
    font-family: var(--primary_font_family);
    margin: auto;
    padding: 20px 68px 20px 68px;
    border: none;
    outline: none;
    border-radius: 40px;
    background: linear-gradient(80deg, var(--gradient_button_one) 0%, var(--gradient_button_two) 100%);
    color: white;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 10px 15px rgba(1, 115, 153, 0.2);
}

#patient_button button i {
    margin-left: 20px;
    font-size: 24px;
}

#patient_hero {
    width: 85%;
    margin: auto;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25),
        0px 10px 15px rgba(151, 151, 151, 0.08);

    height: 400px;
    border-radius: 15px;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

#patient_hero h1 {
    font-size: 48px;
    color: rgba(23, 32, 72, 1);
    margin-top: 40px;
}

#patient_hero h1>span {
    background: linear-gradient(90deg, var(--gradient_heading_one) 0%, var(--gradient_heading_two) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

#patient_hero h1 span span {
    font-weight: 400;
}

#patient_hero p {
    font-weight: 500;
    line-height: 170%;
    margin: 15px 0px;
    font-size: 18px;
    color: rgba(196, 196, 196, 1);
    text-align: center;
    width: 80%;
}

#patient_hero button {
    padding: 20px 40px 20px 40px;
    border: none;
    background: linear-gradient(79deg, var(--gradient_button_one) 0%, var(--gradient_button_two) 100%);
    border-radius: 40px;
    font-weight: 600;
    font-size: 16px;
    color: white;
    font-family: var(--primary_font_family);
    margin-top: 20px;
    box-shadow: 0px 10px 15px rgba(1, 115, 153, 0.2);
}

#patient_hero>span {
    font-weight: 500;
    font-size: 14px;
    color: rgba(58, 58, 58, 1);
    margin: 10px 0;
}


/********************************/
/*         CONTACT FORM         */
/********************************/
#contact_form {
    padding-top: 170px;
    background-color: white;
}

#form {
    width: 80%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 50px;
}

#form_image {
    width: 484px;
    height: 500px;

    background: url("../assets/images/contact_form_image.webp") no-repeat;
    background-position: top center, 10%;
    background-size: cover;
    background-size: 195% auto;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
}

#form_container {
    width: 53%;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    gap: 40px;
}

#input_container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
}


input {
    width: 83%;
    height: 65px;
    border-radius: 18px;
    border: 1px solid rgba(209, 209, 209, 1);
    font-weight: 400;
    font-size: 20px;
    line-height: 40%;
    letter-spacing: 0px;
    font-family: var(--primary_font_family);
    padding: 0px 20px;
}

#form_container button {
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 0.5px;
    color: white;
    padding: 30px 40px;
    background: linear-gradient(90deg, var(--gradient_heading_one) 0%, var(--gradient_heading_two) 100%);
    width: 100%;
    border: none;
    border-radius: 30px;
    box-shadow: 4px 4px 30px #005C7B;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

#form_container button i {
    font-size: 29px;
    transform: rotate(45deg);
}

/********************************/
/*        FOOTER SECTION        */
/********************************/
footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: white;
    padding-top: 50px;
    padding-top: 250px;
}

#content {
    width: 85%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#footer_left h1 {
    font-size: 24px;
    letter-spacing: 3%;
    background: linear-gradient(90deg, var(--gradient_heading_one) 0%, var(--gradient_heading_two) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    width: fit-content;
}

#footer_left h1 span {
    color: black;
}

#footer_left p {
    font-weight: 400;
    font-size: 18px;
    margin: 15px 0;
    color: rgba(18, 18, 18, 1);
    max-width: 424px;
}

#footer_right * {
    font-family: 'Manrope', sans-serif;
}

#footer_right {
    display: flex;
    align-items: start;
    justify-content: space-between;
    width: 50%;
}

#footer_right h3 {
    font-size: 20px;
    line-height: 45px;
    color: rgba(18, 18, 18, 1);
}

#footer_right li {
    list-style: none;
}

#footer_right li a {
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 1.5%;
    color: rgba(18, 18, 18, 1);
    transition: all 0.3s ease;
}

.social_icons {
    display: flex;
    gap: 15px;
    margin-top: 7px;
}

.social_icons i {
    color: rgba(18, 18, 18, 1);
    font-size: 20px;
    font-family: "Font Awesome 6 Brands" !important;
    transition: all 0.3s ease;
    cursor: pointer;
}

.social_icons i:hover,
#footer_right li a:hover {
    opacity: 0.7;
}

.company_details {
    padding: 40px 0px 10px 0px;
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: rgba(135, 135, 136, 1);
    margin: auto;
    width: 85%;
    text-align: end;
}




/********************************/
/*        RESPONSIVENESS        */
/********************************/
@media (max-width: 1312px) {
    #navigation ul li a {
        font-size: 16px;
    }

    #sign_in_up button {
        font-size: 14px;
    }

    #hero {
        margin-bottom: 0;
    }

    #hero_left h1 {
        font-size: 54px;
    }

    #hero_left p {
        font-size: 16px;
        max-width: 460px;
    }

    #hero_buttons button {
        font-size: 14px;
    }

    #hero_right {
        width: 495px;
    }

    #hero_image {
        width: 400px !important;
        height: 525px;
    }

    .heading h1 {
        font-size: 44px;
    }

    #services_container {
        gap: 45px;
    }

    .service h3 {
        font-size: 22px;
    }

    .service p {
        font-size: 13px;
    }

    #demo_left {
        max-width: 500px;
    }

    #demo_left h1:nth-child(1) {
        font-size: 35px;
        margin-bottom: 20px;
    }

    #demo_left h1:nth-child(1) span {
        font-size: 39px !important;
    }

    #demo_left h1:nth-child(2) {
        font-size: 33px;
    }

    #demo_left h1:nth-child(3) {
        font-size: 35px;
        margin-top: 0px;
    }

    #waveform {
        width: 27%;
        height: 100px;
        left: 18%;
        top: 27%;
    }

    .line:nth-child(2) {
        top: 216px;
        right: 120px;
        width: 60px;
    }

    .line:nth-child(3) {
        top: 329px;
        left: 241px;
        width: 74px;
    }

    .list_tile p,
    .list_tile span {
        font-size: 26px;
    }

    #doctor_container>img {
        width: 490px;
        height: 330px;
    }

    #doctor_hero {
        height: 610px;
    }

    #doctor_hero>h1 {
        font-size: 180px;
    }

    #doctor_hero>img {
        width: 378px;
        height: 533px;
    }

    .upper {
        top: 41%;
    }

    .upper>div>div {
        width: 42px;
        height: 42px;
    }

    .upper>div>span {
        font-size: 23px;
    }

    .bottom_left span {
        font-size: 18px;
    }

    #patient_container>img {
        width: 293px;
        height: 577px;
    }

    #form_image {
        width: 431px;
        height: 409px;
        background-size: 175% auto;
    }

    #form_container button {
        padding: 24px 40px
    }

    input {
        font-size: 18px;
    }

    #footer_left p {
        font-size: 16px;
        max-width: 380px;
    }

    #footer_right {
        width: 55%;
    }
}


@media (max-width: 1150px) {
    #hero_left {
        padding-top: 0;
        /* padding-left: 50px; */
    }

    #hero_left h1 {
        font-size: 48px;
    }

    #hero_right {
        width: 400px;
        height: 500px;
    }

    #hero_image {
        position: absolute;
        top: 57px;
        left: 21px;
        width: 338px !important;
        height: 429px;
    }

    #doctor_container img {
        width: 470px;
        height: 300px;
    }

    .list_tile p,
    .list_tile span {
        font-size: 24px;
    }

    .container {
        max-width: 410px;
    }

    #doctor_hero h1 {
        font-size: 160px;
    }

    .upper div span {
        font-size: 20px;
    }

    .bottom_left span {
        font-size: 16px;
    }

    .bottom_right p {
        width: 220px;
        height: 60px;
    }

    .bottom_right button {
        width: 60px;
        height: 60px;
    }

    #demo_right {
        width: 40%;
    }

    #waveform {
        width: 29%;
        left: 19.2%;
    }

    .line:nth-child(2) {
        right: 68px;
    }

    .line:nth-child(3) {
        left: 142px;
    }

    #footer_left p {
        font-size: 14px;
        max-width: 330px;
    }

    #footer_right {
        width: 57%;
    }

    #footer_right h3 {
        font-size: 18px;
    }

    #footer_right li a {
        font-size: 12px;
    }
}

@media (max-width: 1024px) {
    #navigation ul {
        gap: 30px;
    }

    #navigation ul li a {
        font-size: 16px;

    }

    #sign_in_up button {
        font-size: 14px;
    }

    #sign_in_up button:nth-child(2) {
        padding: 10px 25px 10px 25px;
    }

    #hero_left {
        max-width: 400px;
    }

    #hero_left h1 {
        font-size: 44px;
    }

    #hero_left p {
        font-size: 14px;
    }

    #hero_buttons button {
        padding: 15px 40px 15px 40px;
        font-size: 15px;
        font-weight: 400;
    }

    #demo_left h1:nth-child(1) {
        font-size: 35px;
        margin-bottom: 20px;
        line-height: 60px;
    }

    #demo_left h1:nth-child(1) span {
        font-size: 39px !important;
    }

    #demo_left h1:nth-child(2) {
        font-size: 33px;
    }

    #demo_left h1:nth-child(3) {
        font-size: 35px;
        margin-top: 0px;
        margin-bottom: 0;
    }

    #demo_left {
        max-width: 490px;
    }

    .dr_one {
        gap: 10px;
    }

    .mic_icon {
        width: 36px;
        height: 36px;
    }

    .dr_one p {
        font-size: 14px;
        font-weight: 600;
    }

    #waveform {
        height: 70px;
    }

    #demo_right {
        width: 37%;
    }

    #demo_right span {
        padding: 5px 10px;
    }

    .line {
        border-width: 1px;
        width: 55px !important;
    }

    .line:nth-child(1) {
        top: 84px;
        left: -11px;
    }

    .line:nth-child(2) {
        right: 53px;
        top: 178px;
    }

    .line:nth-child(3) {
        left: 114px;
        top: 263px;
    }

    .dr_three {
        top: 55%;
    }

    .dr_four {
        margin-top: 0 !important;
        top: 77%;
    }

    .dr_three span,
    .dr_four span {
        font-size: 12px !important;
        font-weight: 400 !important;
    }

    #demo_left button {
        padding: 15px 40px 15px 40px;
        font-weight: 500;
        font-size: 14px;
    }

    #doctor_container img {
        width: 440px;
        height: 270px;
    }

    .list_tile p,
    .list_tile span {
        font-size: 20px;
    }

    .list_tile div {
        padding-top: 4px;
    }

    .container {
        max-width: 360px;
        gap: 30px;
    }

    .heading h1 {
        font-size: 36px;
    }

    #doctor_hero {
        height: 580px;
    }

    #doctor_hero h1 {
        font-size: 130px;
    }

    #doctor_hero>img {
        width: 330px;
    }

    .upper>div {
        gap: 10px !important;
    }

    .upper div span {
        font-size: 18px;
    }


    .bottom_left span {
        font-size: 14px;
    }

    .bottom_right p {
        width: 180px;
        height: 50px;
        font-size: 16px;
    }

    .bottom_right button {
        width: 50px;
        height: 50px;
    }

    #patient_button button {
        padding: 15px 45px 15px 45px;
    }

    #patients {
        padding-top: 150px;
    }

    #patient_hero {
        height: 360px;
    }

    #patient_hero h1 {
        font-size: 44px;
    }

    #patient_hero p {
        font-weight: 400;
        font-size: 16px;
    }

    #patient_hero button {
        padding: 17px 35px 17px 35px;
        font-weight: 400;
        font-size: 14px;
    }

    #patient_hero>span {
        font-size: 12px;
    }

    #form_image {
        width: 350px;
        height: 370px;
    }

    input {
        font-size: 15px;
        height: 55px;
    }

    #form_container {
        width: 60%;
    }

    #form_container button {
        padding: 20px 30px;
        font-size: 16px;
    }

    #contact_form {
        padding-top: 140px;
    }

    #doctor_button button,
    #patient_button button {
        padding: 17px 50px 17px 50px;
        font-size: 16px;
        font-weight: 500;
    }

    #demo_booking_container {
        margin-right: 20px;
        width: 95%;
    }

    #patient_container>img {
        width: 273px;
        height: 500px;
    }

    #doctor_container {
        width: 90%;
    }

    #content {
        width: 90%;
    }

    #footer_left p {
        font-size: 12px;
        max-width: 280px;
    }

    #footer_right {
        width: 60%;
    }

    #footer_right h3 {
        font-size: 16px;
        line-height: 38px;
    }

    #footer_right li a {
        font-size: 12px;
        line-height: 20px;
    }
}


@media (max-width: 860px) {
    #logo h1 {
        font-size: 21px;
    }

    #navigation ul {
        gap: 20px;
    }

    #navigation ul li a {
        font-size: 15px;
    }

    #hero_left {
        max-width: 350px;
    }

    #hero_left h1 {
        font-size: 38px;
        line-height: 50px;
    }

    #hero_left p {
        line-height: 20px;
        font-size: 13px;
    }

    #hero_right {
        width: 330px;
        height: 400px;
    }

    #hero_buttons {
        gap: 10px;
        margin-top: 20px;
    }

    #hero_buttons button {
        padding: 10px 25px 10px 25px;
        font-size: 13px;
    }

    #hero_image {
        top: 53px;
        left: 17px;
        width: 268px !important;
        height: 337px;
    }

    .heading h1 {
        font-size: 36px;
    }

    #demo_left {
        width: 100%;
        max-width: max-content;
    }

    #demo_right {
        display: none;
    }

    #doctor_container img {
        width: 370px;
        height: 240px;
    }

    .list_tile p,
    .list_tile span {
        font-size: 16px;
    }

    .list_tile div {
        padding-top: 3px;
    }

    .list_tile div i {
        width: 20px;
        height: 20px;
        font-size: 14px;
    }

    .container {
        max-width: 300px;
        gap: 20px;
    }

    .heading h1 {
        font-size: 32px;
    }

    #doctor_container {
        margin-top: 60px;
    }

    #doctors {
        padding-top: 150px;
    }

    #doctor_button button {
        padding: 15px 45px 15px 45px;
        font-size: 15px;
    }

    #doctor_hero {
        height: 450px;
    }

    #doctor_hero h1 {
        font-size: 100px;
    }

    #doctor_hero>img {
        width: 280px;
    }

    .upper {
        width: 90%;
    }

    .upper>div {
        gap: 5px !important;
    }

    .upper div span {
        font-size: 16px;
    }

    .upper div div {
        width: 30px;
        height: 30px;
    }

    .upper img {
        width: 16px;
    }

    .bottom_left span {
        font-size: 12px;
    }

    .bottom_right p {
        width: 140px;
        height: 40px;
        font-size: 13px;
    }

    .bottom_right button {
        width: 40px;
        height: 40px;
    }

    .bottom_right button i {
        font-size: 16px;
    }

    #patient_button button {
        padding: 12px 30px 12px 30px;
        font-size: 14px;
    }

    #patient_hero {
        height: 300px;
    }

    #patient_hero h1 {
        font-size: 38px;
    }

    #patient_hero p {
        font-weight: 400;
        font-size: 14px;
        width: 90%;
        margin: 15px 0px;
    }

    #patient_hero button {
        padding: 16px 30px 16px 30px;
        font-weight: 400;
        font-size: 13px;
    }

    #patient_hero>span {
        font-size: 11px;
    }

    #form {
        width: 90%;
    }

    #form_image {
        width: 350px;
        height: 300px;
    }

    input {
        font-size: 14px;
        height: 50px;
    }

    #form_container {
        width: 60%;
    }

    #form_container button {
        padding: 20px 30px;
        font-size: 16px;
    }

    #form_container button i {
        font-size: 20px;
    }

    #demo_booking_container {
        margin-right: auto;
        width: 90%;
    }

    #patient_button {
        margin-top: 20px;
    }

    #patient_container>img {
        width: 230px;
        height: 413px;
    }

    #doctor_hero>img {
        height: 380px;
        width: auto;
    }

    #content {
        width: 90%;
        flex-direction: column;
        gap: 50px;
    }

    #footer_left {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }


    #footer_left p {
        font-size: 14px;
        max-width: 80%;
    }

    #footer_right {
        width: 90%;
    }
}

@media (max-width: 768px) {
    #navigation {
        display: none;
    }

    #hamburger {
        display: block;
    }

    #hero {
        padding-bottom: 40px;
    }

    #hero_left {
        max-width: 90%;
        padding-left: 0;
    }

    #hero_left p {
        max-width: 100%;
    }

    #hero_right {
        display: none;
    }

    #services_container {
        overflow: hidden;
        width: 100%;
        max-width: 400px;
        margin: 40px auto;
    }

    .service {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        margin: 0;
        opacity: 0;
        transition: opacity 0.5s ease;
    }

    .service.active {
        position: relative;
        opacity: 1;
    }

    .carousel-indicators {
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }

    .carousel-indicators .dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: #ccc;
        margin: 0 5px;
        cursor: pointer;
        transition: background 0.3s;
    }

    .carousel-indicators .dot.active {
        background-color: #4ED6DA;
    }

    .heading h1 {
        font-size: 30px;
    }

    .service {
        padding: 40px 20px;
    }

    #demo_left h1:nth-child(1) {
        font-size: 30px;
    }

    #demo_left h1:nth-child(1) span {
        font-size: 35px !important;
    }

    #demo_left h1:nth-child(2) {
        font-size: 26px;
    }

    #demo_left h1:nth-child(3) {
        font-size: 28px;
        margin-top: 20px;
    }

    #demo_booking_container {
        margin-top: 100px;
    }

    #doctor_container img {
        width: 320px;
        height: 200px;
    }

    .list_tile p,
    .list_tile span {
        font-size: 14px;
    }

    .list_tile div {
        padding-top: 1px;
    }

    .list_tile div i {
        width: 20px;
        height: 20px;
        font-size: 14px;
    }

    .container {
        max-width: 250px;
        gap: 20px;
    }

    .heading h1 {
        font-size: 28px;
    }

    #doctor_container {
        margin-top: 60px;
    }

    #doctors {
        padding-top: 120px;
    }

    #doctor_hero {
        height: 380px;
    }

    #doctor_hero h1 {
        font-size: 80px;
    }

    #doctor_hero>img {
        width: 240px;
    }

    .upper {
        width: 90%;
    }

    .upper>div {
        gap: 5px !important;
    }

    .upper div span {
        font-size: 14px;
    }

    .upper div div {
        width: 30px;
        height: 30px;
    }

    .upper img {
        width: 16px;
    }

    .bottom_left span {
        font-size: 10px;
    }

    .bottom_right p {
        width: 120px;
        height: 30px;
        font-size: 12px;
    }

    .bottom_right button {
        width: 30px;
        height: 30px;
    }

    .bottom_right button i {
        font-size: 16px;
    }

    #patient_container {
        margin-top: 30px;
        width: 90%;
    }


    #patient_container .list_tile p,
    #patient_container .list_tile span {
        font-size: 16px;
    }

    #patient_button {
        margin-top: 20px;
    }

    #patient_button button {
        padding: 10px 20px 10px 20px;
        font-size: 12px;
    }

    #patient_button button i {
        font-size: 18px;
    }

    #patient_hero {
        height: 260px;
        width: 90%;
    }

    #patient_hero h1 {
        font-size: 34px;
    }

    #patient_hero p {
        font-weight: 400;
        font-size: 13px;
        width: 90%;
        margin: 15px 0px;
    }

    #patient_hero button {
        padding: 14px 20px 14px 20px;
        font-weight: 400;
        font-size: 12px;
    }

    #patient_hero>span {
        font-size: 11px;
    }

    #form {
        width: 90%;
    }

    #form_image {
        width: 280px;
        height: 250px;
        background-size: 195% auto;
    }

    input {
        font-size: 12px;
        height: 50px;
        width: 78%;
    }

    #input_container {
        gap: 20px;
    }

    #form_container {
        width: 80%;
        gap: 20px;
    }

    #form_container button {
        padding: 15px 30px;
        font-size: 16px;
    }
}

@media (max-width: 648px) {
    .loading svg {
        transform: scale(1);
    }

    #doctor_container img {
        display: none;
    }

    .container {
        max-width: 100%;
    }

    .list_tile p,
    .list_tile span {
        font-size: 18px;
    }

    .list_tile div {
        padding-top: 3px;
    }

    .list_tile div i {
        width: 22px;
        height: 22px;
        font-size: 14px;
    }

    .heading {
        width: 90%;
        margin: auto;
    }

    #doctor_button {
        margin-top: 50px;
    }

    #doctor_button button {
        padding: 12px 35px 12px 35px;
        font-size: 13px;
    }

    #doctor_button button i {
        font-size: 20px;
    }

    .upper {
        flex-direction: column;
        align-items: start;
        gap: 10px;
        top: 40%;
    }

    .bottom {
        justify-content: start;
        top: 70%;
        width: 90%;
    }

    .bottom_left {
        display: none;
    }

    #doctor_hero>img {
        left: 85%;
    }

    #doctor_hero>h1 {
        font-size: 70px;
    }

    #doctor_hero {
        height: 300px;
    }

    #patient_container {
        margin-top: 10px;
        width: 90%;
    }

    #patient_container>img {
        width: 189px;
        height: 319px;
    }

    #patient_container .container {
        gap: 20px;
    }


    #patient_container .list_tile p,
    #patient_container .list_tile span {
        font-size: 16px;
    }

    #patient_container .list_tile>div {
        padding-top: 0px;
    }

    #patient_button {
        margin-top: 0px;
    }

    #patient_button button {
        padding: 10px 20px 10px 20px;
        font-size: 12px;
    }

    #patient_button button i {
        font-size: 18px;
    }

    #patients {
        padding-top: 120px;
    }

    #patient_hero {
        height: fit-content;
        width: 90%;
        padding-top: 20px;
        padding-bottom: 10px;
    }

    #patient_hero h1 {
        font-size: 30px;
        margin-top: 20px;
    }

    #patient_hero p {
        font-weight: 400;
        font-size: 12px;
        width: 90%;
        margin: 15px 0px;
    }

    #patient_hero button {
        padding: 12px 14px 12px 14px;
        font-weight: 400;
        font-size: 11px;
        margin-top: 10px;
    }

    #patient_hero>span {
        font-size: 10px;
    }

    #form_image {
        display: none;
    }

    input {
        font-size: 12px;
        height: 50px;
        width: auto;
    }

    #input_container {
        gap: 20px;
    }

    #form_container {
        width: 100%;
    }

    #form_container button {
        padding: 15px 30px;
        font-size: 16px;
    }

    #contact_form {
        padding-top: 110px;
    }

    #content {
        gap: 40px;
    }

    #footer_left p {
        font-size: 12px;
        max-width: 90%;
    }

    #footer_right h3 {
        font-size: 14px;
        line-height: 38px;
    }

    #footer_right li a {
        font-size: 11px;
        line-height: 20px;
    }

    .social_icons i {
        font-size: 16px;
    }
}

@media (max-width: 550px) {
    #patient_container>img {
        display: none;
    }

    #patient_container {
        margin-top: 40px;
    }

    #patient_container .list_tile p,
    #patient_container .list_tile span {
        font-size: 18px;
    }

    #patient_button {
        margin-top: 20px;
    }

    #patient_container .list_tile>div {
        padding-top: 3px;
    }

    #footer_right {
        display: grid;
        gap: 30px;
        grid-template-columns: repeat(2, 2fr);
    }
}

@media (max-width: 458px) {
    nav {
        width: 90%;
    }

    #navbar.sticky {
        height: 50px;
    }

    #logo h1 {
        font-size: 19px;
    }

    #logo_img {
        width: 13px;
        height: 16px;
        top: -5px;
        right: -13px;
    }

    #hero {
        width: 90%;
        margin: auto;
        margin-top: 70px;
        display: block;
    }

    #hero_left {
        max-width: 100%;
    }

    #sign_in_up {
        gap: 10px;
    }

    #sign_in_up button {
        font-size: 12px;
    }

    #sign_in_up button:nth-child(2) {
        padding: 8px 15px 8px 15px;
    }

    #hero_left h1 {
        font-size: 30px;
    }

    #hero_buttons button {
        padding: 10px 20px;
    }

    #services_container {
        padding: 0;
        width: 90%;
    }

    #demo_left h1:nth-child(1) {
        font-size: 26px;
        line-height: 140%;
    }

    #demo_left h1:nth-child(1) span {
        font-size: 29px !important;
    }

    #demo_left h1:nth-child(2) {
        font-size: 20px;
    }

    #demo_left h1:nth-child(3) {
        font-size: 21px;
        margin-top: 10px;
    }

    #demo_left button {
        padding: 15px 25px 15px 25px;
        font-weight: 400;
        font-size: 13px;
    }

    .heading h1 {
        font-size: 24px;
    }

    #doctors {
        padding-top: 80px;
    }

    #doctor_hero h1 {
        top: 5%;
        font-size: 50px;
    }

    .upper div div {
        width: 25px;
        height: 25px;
    }

    .upper div span {
        font-size: 12px;
    }

    .bottom_right p {
        width: 100px;
        font-size: 10px;
    }

    #doctor_hero {
        height: 250px;
    }

    #patient_hero h1 {
        font-size: 26px;
        text-align: center;
    }

    #input_container {
        grid-template-columns: repeat(1, 1fr);
    }

    input {
        height: 40px;
    }

    #form_container button {
        padding: 15px 30px;
        font-size: 13px;
    }

    #form_container button i {
        font-size: 17px;
    }

    .company_details {
        font-size: 12px;
    }

    #content {
        width: 95%;
    }

    #footer_left p {
        max-width: 97%;
    }
}