/* 1 General */
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@100;200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100;200;300;400;500;600;700;900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Background Color */
    --primary-color: #004caa;
    --secondary-color: #fc5185;
    --bg-light-blue: #3672bc;
    --bg-dark: #666;
    --bg-white: #fff;

    /* Text Style */
    --primary-font: 'Roboto Slab', serif;
    --secondary-font: 'Josefin Sans', sans-serif;
    --primary-text: #004caa;
    --secondary-text: #fc5185;
    --text-white: #fff;
    --text-black: #222;
    --text-gray: #666;
    --text-light: #ddd;
}

body {
    font-family: var(--primary-font);
    background-color: var(--bg-white);

}



.logo {
    width: 250px;
}

a {
    text-decoration: none;
}

::-webkit-scrollbar {
    width: .375rem;
}

::-webkit-scrollbar-track {
    background: var(--bg-light-blue);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
}

.wrapper {
    padding: 6.25rem 0;
}

.main-btn {
    display: inline-block;
    border: .0625rem solid var(--bg-white);
    color: var(--text-white);
    text-align: center;
    padding: .75rem 1.375rem;
    font-size: 1rem;
    background: transparent;
    text-transform: capitalize;
    border-radius: .1875rem;
    transition: all 0.3s ease-in-out;
}

.main-btn:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--text-white);
}

.fill-btn {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--text-white);
}

.fill-btn:hover {
    background-color: var(--bg-white);
    border-color: var(--bg-white);
    color: var(--text-black)
}

h1 {
    font-size: 3.875rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    font-family: var(--secondary-font);
}

h2 {
    font-size: 2.875rem;
    font-weight: 600;
    color: var(--text-white);
    font-family: var(--secondary-font);
}

h3 {
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--text-white);
    font-family: var(--secondary-font);
}

h4 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 2.25rem;
    color: var(--text-black);
    font-family: var(--secondary-font);
}

h5 {
    font-size: 1.5rem;
    line-height: 1.2;
    font-weight: 500;
    color: var(--primary-text);
    margin-bottom: .9375rem;
    font-family: var(--secondary-font);
}

h6 {
    font-size: .875rem;
    font-weight: 300;
    color: var(--text-black);
    margin-bottom: .9375rem;
    text-transform: uppercase;
    font-family: var(--secondary-font);
}

p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.625rem;
}

.card {
    border-radius: .625rem;
    background-color: var(--bg-white);
    box-shadow: .5084rem 1.1419rem 2.5rem 0 rgb(0 0 0 / 8%);
    padding: 3.75rem 3.125rem 4.6875rem;
    -webkit-transition: all .4s;
    transition: all .4s;
    border: 2px solid var(--primary-color);
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
}

@keyframes movebounce {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    50% {
        -webkit-transform: translateY(1.25rem);
        transform: translateY(1.25rem);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

/* 2 Navbar */
.header_wrapper .navbar {
    /* padding: .9375rem 0; */
    background-color: transparent;
    transition: 0.3s ease-in-out;
}

.header_wrapper .navbar-toggler,
.header_wrapper .navbar-toggler:focus {
    border: 0;
    box-shadow: none;
    color: var(--text-black);
    line-height: 2;
}

.header_wrapper .nav-item {
    margin: 0 .625rem;
}

.header_wrapper .nav-item .nav-link {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--primary-text);
    display: inline-block;
    font-family: var(--secondary-font);
}

.header_wrapper .nav-item .nav-link:hover,
.header_wrapper .nav-item .nav-link:focus,
.header_wrapper .nav-item .nav-link.active {
    color: var(--secondary-text);
}

.navbar.header-scrolled {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: var(--bg-white);
    box-shadow: .5084rem 1.1419rem 2.5rem 0 rgb(0 0 0 / 8%);
    transition: 0.3s ease-in-out;
}

/* 3 Banner */
.banner_wrapper {
    background-image: url('\clinic 2\1.0\pages\img\Top-banner.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.banner_wrapper p {
    max-width: 80%;
    color: var(--text-white);
}

.banner_wrapper .top-right-sec {
    position: relative;
    background-image: url('img/top-right-bg.png');
    height: 85vh;
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.banner_wrapper .animate-img {
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 22;
}

.banner_wrapper .animate-img .aimg1 {
    left: -5.6875rem;
    position: absolute;
    -webkit-animation-name: movebounce;
    animation-name: movebounce;
    -webkit-animation-delay: 100ms;
    animation-delay: 100ms;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}

.banner_wrapper .animate-img .aimg2 {
    margin-left: 5.5rem;
    -webkit-animation-name: movebounce;
    animation-name: movebounce;
    -webkit-animation-delay: 200ms;
    animation-delay: 200ms;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-duration: 2.5s;
    animation-duration: 2.5s;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}

.home .card:hover {
    -webkit-transform: translateY(-0.625rem);
    transform: translateY(-0.625rem);
}

.home .icon-box {
    text-align: center;
    margin: 0 auto 2.5rem;
}

/* 4 About */
.about_wrapper h2 {
    color: var(--text-black);
}

.about_wrapper .card {
    width: 80%;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

.about_wrapper .about-clinic {
    flex: 0 0 auto;
    width: 50%;
}

.about_wrapper .about-clinic:nth-child(1),
.about_wrapper .about-clinic:nth-child(2) {
    margin-bottom: 2.8125rem;
}

.about_wrapper .about-clinic:nth-child(2),
.about_wrapper .about-clinic:nth-child(4) {
    padding-left: 3.75rem;
}

.about_wrapper .line-1,
.about_wrapper .line-2 {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: .0313rem;
    height: 100%;
    background: var(--bg-dark);
}

.about_wrapper .line-2 {
    width: 100%;
    height: .0625rem;
}

.about_wrapper .about-animate {
    position: absolute;
    left: -2.5rem;
    bottom: 0;
    -webkit-animation: movebounce 3s linear infinite;
    animation: movebounce 3s linear infinite;
}

.about_wrapper img {
    border-radius: 12px;
    border-radius: 12px;
    border: 2px solid var(--primary-color);
    padding: 5px;
    background: #fff;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.15);
    transition: 0.3s ease-in-out;
}

.about_wrapper img:hover {
    transform: scale(1.03);
}


/* 5 Services */
.services_wrapper {
    background-color: var(--primary-color);
}

.services_wrapper .card {
    background-color: transparent;
    border: .0625rem solid var(--bg-light-blue);
    box-shadow: none;

    padding: 2.5rem;
}

.services_wrapper .card:hover {
    background: var(--bg-light-blue);
    cursor: cell;
    border-color: transparent;
    -webkit-transition: all .4s;
    transition: all .4s;
}

.services_wrapper .card h4,
.services_wrapper .card p {
    color: var(--text-white);
}

.services_wrapper .icon-box {
    margin-bottom: 1.875rem;
}

/*7 Team Section */
.team_wrapper .card {
    padding: 1.25rem;
}

.team_wrapper .card:hover {
    -webkit-transform: translateY(-0.625rem);
    transform: translateY(-0.625rem);
}

.team_wrapper .team-img {
    margin: 0 auto;

}

.team_wrapper img {
    margin: 0 auto;
    width: 250px;
}


.team_wrapper .team-info .social-network {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding: .625rem 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team_wrapper .team-info .social-network li a {
    width: 1.5625rem;
    height: 1.5625rem;
    line-height: 1.5625rem;
    display: block;
    border-radius: .3125rem;
    margin: 0 .3125rem;
    font-size: .75rem;
    background-color: var(--bg-dark);
    color: var(--text-white);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.team_wrapper .team-info .social-network li a:hover {
    background-color: var(--secondary-color);
}

/*8 Gallery Section */
.gallery_wrapper {
    background-image: url('../images/gallery/gallery-background.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.gallery_wrapper img {
    border-radius: .9375rem;
}

/*9 Testimonial */
.testimonial_wrapper .card {
    background-color: rgba(252, 81, 133, .05);
}

/* appointment */
.appointment_wrapper {
    background-image: url('../images/appointmnet-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}



/* 11 footer */
.footer_wrapper {
    background-color: var(--primary-color);
    padding-bottom: 0;
}

.footer_wrapper h5 {
    color: var(--text-white);
}

.footer_wrapper .contact-info ul a {
    padding: 0;
}

.footer_wrapper ul li {
    margin-bottom: .5rem;
    list-style: none;
    font-size: .875rem;
}

.footer_wrapper ul li a {
    color: var(--text-white);
}

.footer_wrapper .link-widget li a,
.footer_wrapper p {
    color: var(--text-white);
    font-size: .875rem;
    /* padding-left: 1.5rem; */
    position: relative;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.footer_wrapper .link-widget li a::before {
    content: '\f105';
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    position: absolute;
    left: 0.3rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.footer_wrapper .link-widget li a:hover {
    margin-left: .625rem;
    color: var(--secondary-text);
}

.footer_wrapper .social-network a {
    width: 2.1875rem;
    height: 2.1875rem;
    margin: .5rem;
    line-height: 2rem;
    font-size: .875rem;
    display: inline-block;
    border: .125rem solid var(--bg-light-blue);
    color: var(--text-light);
    text-align: center;
    border-radius: 100%;
    -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.footer_wrapper .social-network a:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--text-white);
    transform: translateY(-0.1875rem);
}

.footer_wrapper ::placeholder {
    color: var(--text-light);
}

.footer_wrapper .form-control {
    color: var(--text-light);
}

.footer_wrapper .form-control:focus {
    outline: none;
    box-shadow: none;
    border-color: var(--bg-white);
}

.footer_wrapper .copyright-section {
    background-color: var(--bg-light-blue);
    padding: 2rem 0 1rem;
    text-align: center;
}

.footer_wrapper .copyright-section a {
    color: var(--text-white);
    font-weight: 600;
}

/* !--Responsive design--> */
@media (max-width: 1199.5px) {

    /* custom css */
    .card {
        padding: 2.5rem 1.875rem;
    }

    /* header */
    .header_wrapper .navbar-nav .nav-link {
        font-size: 1rem;
    }

    /* top banner */
    .banner_wrapper .animate-img .aimg1 {
        left: -3.125rem;
    }

    /* about */
    .about_wrapper .card {
        width: 100%;
    }

    .about_wrapper .about-animate {
        left: .9375rem;
    }

    /* service */
    .services_wrapper .card {
        padding: 1.875rem 1.25rem;
    }

}

@media (max-width:991px) {

    /* custom css */
    .wrapper {
        padding: 3.125rem 0;
    }

    .main-btn {
        font-size: .875rem;
    }

    h1 {
        font-size: 2.8125rem;
        margin-bottom: .625rem;
    }

    h2 {
        font-size: 1.875rem;
    }

    h3 {
        font-size: 1.5625rem;
    }

    h4 {
        font-size: 1.25rem;
    }

    h5 {
        font-size: 1.125rem;
    }

    p {
        font-size: .875rem;
        line-height: 1.35rem;
    }

    .card {
        padding: 1.875rem 1rem;
    }

    /* 2 Navbar */
    .header-scrolled {
        height: auto;
    }

    .header_wrapper .menu-navbar-nav {
        text-align: center;
    }

    .header_wrapper .nav-item .nav-link {
        margin-top: .9375rem;
    }

    /* banner */
    .banner_wrapper p {
        max-width: 100%;
    }


    /* about */
    .about_wrapper .about-clinic:nth-child(1),
    .about_wrapper .about-clinic:nth-child(2) {
        margin-bottom: 1.5625rem;
    }

    .about_wrapper .about-clinic:nth-child(2),
    .about_wrapper .about-clinic:nth-child(4) {
        padding-left: 2.375rem;
    }

    /* services */
    .services_wrapper .card {
        padding: 1.875rem .875rem;
    }

    /* blog */
    .blog_wrapper .card .blog-content {
        padding: 1.875rem .625rem;
    }

}

@media (max-width: 767px) {

    /* custom css */
    .main-btn {
        font-size: .875rem;
    }

    h1 {
        font-size: 2.5rem;
        margin-bottom: 2.5rem;
    }

    h5 {
        font-size: 1.25rem;
    }

    /* service */
    .services_wrapper .card {
        text-align: center;
    }

    /* blog */
    .blog_wrapper .card .blog-content {
        margin: 0;
    }

    /* footer */
    .footer_wrapper {
        padding-bottom: 0;
    }

    .footer_wrapper>div {
        padding: 0 1.875rem;
    }
}

@media (max-width: 360px) {

    /* Services */
    .services_wrapper .icon-box {
        margin-bottom: .9375rem;
    }

    /* about */
    .about_wrapper .about-animate {
        width: 6.875rem;
    }

    .about_wrapper .card {
        padding: 1.25rem .3125rem;
    }

    .about_wrapper .about-clinic:nth-child(2),
    .about_wrapper .about-clinic:nth-child(4) {
        padding-left: .625rem;
    }

}

.topbar i {
    color: #007bff;
}

.topbar a {
    transition: color 0.3s;
}

.topbar a:hover {
    color: #007bff;
}




.footer-logo p {
    text-align: justify;

}

/* new */
.breadcrumb-wrapper {
    background: linear-gradient(90deg, #0e6ab629, #1866a7ed, #1866a700), url("../img/breadcrumb.jpg") center/cover no-repeat;
    padding: 50px 0;
    color: #fff;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.breadcrumb a {
    color: #0d6efd;
}

.breadcrumb-item.active {
    color: #6c757d;
}



/* ===============================
   Doctor About Section – Advanced
================================ */

.rts-doctors-details-area {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

/* Doctor Image */
.large-team-details-thumbnail img {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.large-team-details-thumbnail img:hover {
    transform: scale(1.04);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

/* Left Card */
.bottom-doctor-details {
    border-left: 4px solid #0d6efd;
    background: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bottom-doctor-details:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(13, 110, 253, 0.15);
}

/* Clinic Details Title */
.bottom-doctor-details .title {
    letter-spacing: 0.5px;
}

/* Schedule Items */
.single-shedule {
    padding-bottom: 10px;
    border-bottom: 1px dashed #dee2e6;
}

.single-shedule:last-child {
    border-bottom: none;
}

/* About Doctor Section */
.doctor-all-details-area {
    padding-left: 15px;
}

/* About Pre-title */
.doctor-all-details-area .pre-title {
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    position: relative;
    padding-left: 40px;
}

.doctor-all-details-area .pre-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 2px;
    background: #0d6efd;
    transform: translateY(-50%);
}

/* Doctor Name */
.doctor-all-details-area .name {
    font-size: 2.2rem;
    color: #0a2540;
}

/* Paragraph Styling */
.doctor-all-details-area p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.75;
}

/* Info Cards */
.single-details-content-info {
    background: #ffffff;
    padding: 18px 20px;
    border-radius: 12px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Accent Line */
.single-details-content-info::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: #0d6efd;
}

/* Hover Effect */
.single-details-content-info:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(13, 110, 253, 0.18);
}

/* Titles */
.single-details-content-info .title {
    font-size: 1.05rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: #0a2540;
}

/* List Text */
.single-details-content-info p {
    font-size: 0.9rem;
    margin-bottom: 4px;
    color: #6c757d;
}

/* Responsive Tweaks */
@media (max-width: 991px) {
    .doctor-all-details-area {
        padding-left: 0;
    }

    .doctor-all-details-area .name {
        font-size: 1.9rem;
    }
}

@media (max-width: 575px) {
    .bottom-doctor-details {
        margin-bottom: 20px;
    }

    .single-details-content-info {
        padding: 16px;
    }
}



/* yash */

/* service page right side */
.services {
    align-items: center;
    text-align: center;
    margin-bottom: 12px;
    box-sizing: border-box;
    border-radius: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.dropdown-item {
    text-align: left;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    color: #004caa;
}

.dropdown-item.active {
    background-color: var(--primary-color);
    color: #fff;
}

/* service video */
.service-vid {
    border-radius: 12px;
    border: 2px solid var(--primary-color);
    padding: 3px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    height: auto;
}


/* Glow Animation For Images On Hover */
.blue-glow {
    box-shadow: 0 14px 40px rgba(13, 110, 253, 0.25),
        0 0 20px rgba(13, 110, 253, 0.20);
}

.blue-glow:hover {
    box-shadow:
        0 14px 40px rgba(13, 110, 253, 0.55),
        0 0 20px rgba(13, 110, 253, 0.45);
    transform: scale(1.02);
}


/* call & whatsapp icon */

.book-app {
    position: fixed;
    display: flex;
    bottom: 20px;
    left: 20px;
    flex-direction: column;
    gap: 12px;
    z-index: 2147483647;
}

.float-btn {
    padding: 12px 12px;
    border-radius: 70%;
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.float-btn.call {
    background-color: var(--primary-color);
}

.float-btn.whatsapp {
    background-color: green;
}

/* Banner Text overlay */
.hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.048);
}

.hero-content p{
    text-shadow: 0 0 3px #8ebfff;
}

/* banner responsive */

@media (max-width: 768px) {
    .hero-banner img {
        min-height: 50vh;
        background-position: top center;
    }
}

/* banner text responsive */

@media (max-width: 768px) {

    .logo {
        width: 175px;
    }

    .hero-content p {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .hero-content h1 {
        font-size: 25px;
    }

    .hero-content h3 {
        margin-top: 20px;
        font-size: 18px;
    }

    .hero-content.container {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .hero-content .col-md-6 {
        text-align: left !important;
    }

    .hero-content h1,
    .hero-content h3,
    .hero-content p {
        max-width: 350px;
        margin-left: 0;
        padding-left: 12px;
        text-align: left;

    }

    /* mobile respponsive banner button  */
    .hero-content .d-flex {
        align-items: flex-start;
    }

    .hero-content .btn {
        width: auto;
        padding: 4px 10px;
        font-size: 13px;
        margin-left: 12px;

    }
}


.topbar {
    font-size: 12px;
}
