@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Inter:opsz,wght@14..32,100..900&family=Poppins&display=swap');

:root{
    --blue: #00b8b8;
    --black: #333;
    --white: #fff;
    --light-color: #666;
    --light-bg: #eee;
    --border: 2rem solid rgba(0 , 0 , 0 , .1);
    --box-shadow: 0.5rem 1rem rgba(0 ,0 ,0.1);

}

/* General Reset */
* {
    scrollbar-width: thin;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    
}

/* Body and Layout */
/* body{
    font-family: "Poppins" , sans-serif;
    
    overflow-x: hidden;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none !important;
    text-transform: capitalize;
} */
body {
    overflow-x: hidden;
}
a{
    text-decoration: none;
}
li {
    list-style: none;
}

/* Header section start  */
nav{
    width: 100%;
    height: 12vh;
    position: fixed;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2117647059);
    z-index: 2;
    background: #0e384c;
    opacity: 1;
    z-index: 100;
}
.nav-container{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 2px 4px 10px rgba(27, 27, 27, 0.212);
}
.logo{
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 0 0 10px #2f6aa8;
}
.logo span{
    color: #38A9E0;
    text-shadow: 0 0 10px #2f6aa8;
}
.hamburg,
.cancel{
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 10px;
    color: white;
    display: none;
    font-size:30px;
}
.nav-container .links{
    display: flex;
    color: #fff;
}
.nav-container .links a{
    position: relative;
    font-size: 1rem;
    color: #fff;
    margin: 0 20px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s linear;
}
.nav-container .links a::before{
    position: absolute;
    content: "";
    bottom: -3px;
    left: 0;
    width: 0%;
    height: 3px;
    background-color: #38A9E0;
    transition: 0.2s linear;
}
.nav-container .links a:hover::before{
    width: 100%;
}
.nav-container .links a:hover{
    color: #fff;
}
.dropdown{
    z-index: 100;
    position: absolute;
    top: -170px;
    transform: translateY(-400px);
    width: 100%;
    height: auto;
    backdrop-filter: blur(4px) brightness(40%);
    box-shadow:  0 0 20px black;
    transition: 0.2s linear;
    background: #0e384c;
    color: #fff;
}
.dropdown .links a{
    display: flex;
    color: #fff;
    text-decoration: none;
    justify-content: center;
    padding: 15px 0;
    align-items: center;
    transition: 0.2s linear;
}
.dropdown .links a:hover{
    background-color: #38A9E0;
}
.menu-right {
    color: #fff;
    display: flex;
    align-items: center;
}
.book-btn {
    font-size: 16px;
    font-weight: 600;
    color: white;
    background-color: #1e84b5;
    padding: 12px 25px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #1e84b5;
    transition: 0.3s all;
    margin-left: 15px;
    border-radius: 10px;
    text-decoration: none;
}
.book-btn:hover{
    background: transparent;
    border: 2px solid #1e84b5;
    box-shadow: 0 0 12px #1e84b5;
}
.menu-right a {
    color: white;
}
.dropdown-list {
    position: relative;
    color: #fff;
}
.dropdown-content {
    display: none;
    position: absolute;
    background: #1e84b5;
    min-width: 200px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    backdrop-filter: blur(10);
    border-radius: 20px;
    border: 1px solid #1e84b5;
    opacity: 1;
    color: #fff;
}
.dropdown-content a {
    color: white;
    padding: 15px;
    display: block;
    text-decoration: none;
    z-index: 1;
}
.dropdown-list:hover .dropdown-content {
    display: block;
    color: #fff;
}
.dropdown-links{
    color: #fff;
}

.dark-mode{
    background: var(--black-2);
    color: var(--white-f);
}

@media (max-width: 500px){
    .menu-right .book-btn {
        display: none;
    }
}
/* Header section end  */

/* breadcrumb section start  */
.rv-breadcrumb {
    background-color: rgb(245, 246, 250);
    text-align: center;
    background: url(images/breadcrumb-image.svg), #0e384c;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: auto;
    padding: 100px 0;
    color: #fff;
}

.pb-120 {
    padding-bottom: 120px;
}


.rv-breadcrumb__title {
    font-size: 54px;
    font-weight: 600;
    border-bottom: 1px solid #fff;
    display: inline-block;
    padding: 0 70px;
    padding-bottom: 10px;
    margin-bottom: 16px;
    padding-top: 70px;
}

.rv-breadcrumb__nav {
    font-weight: 500;
}

.justify-content-center {
    justify-content: center !important;
}

.d-flex {
    display: flex !important
}

a {
    transition: 0.4s ease;
    text-decoration: none;
    vertical-align: top;
    display: inline-block;
}

ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    text-decoration: none;
}


li {
    display: list-item;
    text-align: -webkit-match-parent;
    unicode-bidi: isolate;
}

.rv-breadcrumb__nav a i {
    vertical-align: text-top;
    padding-left: 5px;
}

.fa-solid, .fass {
    font-weight: 900;
}

.rv-breadcrumb__nav a {
    color: #fff;
    text-decoration: none;
}

.rv-breadcrumb__nav .current-page {
    color: #fff;
}

.rv-breadcrumb__nav .current-page .dvdr {
    padding: 0 10px;
    color: #fff;
}

span {
    display: inline-block;
}

/* breadcrumb section end  */

/* about section start  */
.about-container{
    width: 80%;
    margin: 0 auto;
    padding: 20px 0;
}

.about-container h2{
    color: #00796b;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-content{
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.bio-img{
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid rgb(93, 98, 108);
}

.bio-text h3{
    color: gray;
    font-size: 2rem;
}

.bio-text p{
    font-size: 1.1rem;
    color: #555;
}
/* about section end */

/* Section Styling */
.section {
    padding: 4rem 0;
    background-color: white;
}

.about-container {
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

h1, h2 {
    color: #00796b;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

/* Our Doctors Section start */
.doctors {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    text-align: center;
}

.doctor-container h2{
    color: #00796b;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.doctor {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}
.doctor a{
    text-decoration: none;
}
.doctor-p{
    text-align: center;
    margin-bottom: 20px;
}
.doctor:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.doctor img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.doctor h3 {
    font-size: 1.6rem;
    color: #00796b;
}

.doctor p {
    color: #555;
}
/* Our Doctors Section end */

/* Testimonials Section start */
.testimonials {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.testimonial-container h2{
    color: #00796b;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.testimonial {
    background-color: #f4f4f4;
    padding: 2rem;
    border-radius: 10px;
    width: 30%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.testimonial p {
    font-style: italic;
    color: #555;
}

.testimonial span {
    font-weight: bold;
    color: #00796b;
}
/* Testimonials Section end */

/* our newsletter Section start */
.newsletter-container{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.newsletter{
    background-color: #f9f9f9;
    padding: 50px 0;
}

.newsletter h2{
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #00796b;
}

.newsletter p{
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #555;
}

.input-group{
    display: flex;
    flex-direction: column;
    align-items: center;
    outline: none;
    border: none;
}

.input-group input{
    padding: 15px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    max-width: 400px;
    font-size: 1rem;
    outline: none;
    border: none;
}

#submit-btn{
    background-color: #1e84b5;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 200px;
    margin-top: 20px;
}

#submit-btn:hover{
    background-color: #0056b3;
    transform: translateY(-3px);
}
/* our newsletter Section end */


/* <!-------------- footer section start -------------> */

/* Footer section start  */
.rv-29-footer-sec {
    position: relative;
    background-color: #0e384c;
}
.rv-29-footer {
    padding-top: 100px;
}
.rv-28-footer__logo {
    z-index: 5;
    position: relative;
}
.rv-29-footer .rv-28-footer__logo {
    z-index: 5;
    position: relative;
}
.rv-28-footer__logo a {
    color: #fff;
    font-size: 24px;
}
.rv-29-footer .rv-28-footer__logo a {
    color: #fff;
    text-decoration: none;
}
.rv-29-footer .rv-28-footer__logo .rv-26-logo-text {
    font-size: 18px;
    color: #fff;
    margin-bottom: 40px;
    margin-top: 25px;
}
.rv-28-footer__links, .rv-28-footer__courses, .rv-28-footer__newsletter {
    z-index: 5;
    position: relative;
}
.rv-29-footer .rv-28-footer__links, .rv-29-footer .rv-28-footer__courses, .rv-29-footer .rv-28-footer__newsletter {
    z-index: 5;
    position: relative;
}
.links_courses {
    color: white;
    font-size: 20px;
    font-weight: bold;
    position: relative;
    z-index: 5;
}
.rv-29-footer .links_courses {
    color: white;
    font-size: 20px;
    font-weight: bold;
    position: relative;
    z-index: 5;
}
.rv-28-footer__ul {
    margin-top: 28px;
    position: relative;
    z-index: 5;
}
.rv-29-footer .rv-28-footer__ul {
    margin-top: 28px;
    position: relative;
    z-index: 5;
}
.rv-28-footer__ul li {
    color: rgba(255, 255, 255, 0.6117647059);
    line-height: 2.5;
    font-size: 15px;
}
.rv-29-footer .rv-28-footer__ul li {
    color: rgba(255, 255, 255, 0.6117647059);
    line-height: 2.5;
}
.rv-28-footer__ul li a {
    color: rgba(255, 255, 255, 0.6117647059);
    font-size: 15px;
    text-decoration: none;
}
.rv-29-footer .rv-28-footer__ul li a {
    color: rgba(255, 255, 255, 0.6117647059);
    font-size: 15px;
    text-decoration: none;
}
.rv-28-footer__links, .rv-28-footer__courses, .rv-28-footer__newsletter {
    z-index: 5;
    position: relative;
}
.rv-29-footer .rv-28-footer__links, .rv-29-footer .rv-28-footer__courses, .rv-29-footer .rv-28-footer__newsletter {
    z-index: 5;
    position: relative;
}
.links_courses {
    color: white;
    font-size: 20px;
    font-weight: bold;
    position: relative;
    z-index: 5;
}
.rv-29-footer .links_courses {
    color: white;
    font-size: 20px;
    position: relative;
    z-index: 5;
}
.rv-28-footer__ul {
    margin-top: 28px;
    position: relative;
    z-index: 5;
}
.rv-29-footer .rv-28-footer__ul {
    margin-top: 28px;
    position: relative;
    z-index: 5;
}
.rv-28-footer__links, .rv-28-footer__courses, .rv-28-footer__newsletter {
    z-index: 5;
    position: relative;
}
.rv-29-footer .rv-28-footer__links, .rv-29-footer 
.rv-28-footer__courses, .rv-29-footer .rv-28-footer__newsletter {
    z-index: 5;
    position: relative;
}
.footer_newsletter {
    margin: 40px 0;
    position: relative;
    z-index: 5;
}
.rv-29-footer .footer_newsletter {
    margin: 40px 0;
    position: relative;
    z-index: 5;
}
.footer_newsletter input {
    background-color: #2e364e;
    border-color: rgba(255, 255, 255, 0.2117647059);
    color: white;
    padding-left: 10px;
    padding-right: 20px;
    font-size: 15px;
    outline: none;
    border: none;
}
.rv-29-footer .footer_newsletter input {
    background-color: #18385c;
    border-color: rgba(255, 255, 255, 0.2117647059);
    color: white;
    padding-left: 10px;
    padding-right: 20px;
    outline: none;
    border: none;
}
.rv-29-footer .footer_newsletter-btn {
    color: white;
    background-color: #38A9E0;
    height: 50px;
    width: 50px;
    margin-left: -10px;
    outline: none;
    border: none;
    outline: none;
    border: none;
}
.follow-us {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 35px;
    position: relative;
    z-index: 5;
}
.rv-29-footer .follow-us {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 35px;
    position: relative;
    z-index: 5;
}
.follow-us h6 {
    margin-bottom: 0;
}
.follow-us-ul {
    gap: 10px;
}
.rv-29-footer .follow-us-ul {
    gap: 10px;
}
.follow-us-ul a {
    height: 40px;
    width: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2117647059);
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: all 0.2s;
    color: white;
    text-decoration: none;
}
.rv-29-footer .follow-us-ul a {
    height: 40px;
    width: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2117647059);
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: all 0.2s;
    color: white;
}
.follow-us-ul a i {
    font-size: 14px;
}
.rv-28-small-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    padding: 30px 0;
    margin-top: 90px;
    position: relative;
    z-index: 5;
    font-size: 15px;
}
.rv-29-footer .rv-28-small-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    padding: 30px 0;
    margin-top: 90px;
    position: relative;
    z-index: 5;
}
.rv-28-small-footer .copyright {
    color: rgba(255, 255, 255, 0.6117647059);
    text-decoration: none;
}
.rv-29-footer .rv-28-small-footer .copyright {
    color: rgba(255, 255, 255, 0.6117647059);
}
.rv-28-small-footer a {
    color: rgba(255, 255, 255, 0.6117647059);
    text-decoration: none;
}
.rv-29-footer .rv-28-small-footer a {
    color: rgba(255, 255, 255, 0.6117647059);
}
.rv-28-small-footer .privacy-policy {
    color: rgba(255, 255, 255, 0.6117647059);
}
.rv-29-footer .rv-28-small-footer .privacy-policy {
    color: rgba(255, 255, 255, 0.6117647059);
}
.rv-28-small-footer a {
    color: rgba(255, 255, 255, 0.6117647059);
}
.rv-29-footer .rv-28-small-footer a {
    color: rgba(255, 255, 255, 0.6117647059);
}




/* Animated style */

/* Back to top button  */
#toggleBtn {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 10px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 26px;
    background: none;
}
.backToTop i {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;/* Pehle hidden hoga */
    background-color: #1e84b5;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    z-index: 100;
}

.backToTop:hover {
    background-color: #1e84b5;
    box-shadow: 0 0 25px #1e84b5;
}

/* Animated Cursor  */
.custom-cursor {
    width: 40px;
    height: 40px;
    background-color: #000;
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(1);
    transition: transform 0.15s ease-out, background-color 0.15s ease-out;
    z-index: 9999;
    opacity: 0.6;
}
.cursor-grow {
    transform: translateY(-50%, -50%) scale(2);
    background-color: rgba(0, 123, 255, 0.8);
}
.text-zoom {
    transition: transform 0.2s ease-in-out;
}
.text-zoom:hover {
    transform: scale(1.2);
}

.top-header {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: 60px;
    background: #333;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: top 0.5s ease-in-out;
    z-index: 2;
}

/* Content Styling */
.content {
    padding: 20px;
    text-align: center;
    font-size: 20px;
}



.dark-mode{
    background: var(--black-2);
    color: var(--white-f);
}



/* footer Section end */


/* Back to top button  */
#toggleBtn {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 10px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 26px;
    background: none;
}
#backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none; /* Pehle hidden hoga */
    background-color: #1e84b5;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    z-index: 100;
}

#backToTop:hover {
    background-color: #1e84b5;
    box-shadow: 0 0 25px #1e84b5;
}

.error-message {
    color: red;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}