* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {     
    scroll-behavior: smooth;
}

body {
    background: #080808;
    color: #fff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    padding-top: 86px;
}
   
@media screen and (max-width: 380px) {  
    .navbar-toggler {
        font-size: 5px;
        padding: 2px 4px;
        border: none;
        margin-right: 30px;
    }

    .logo img {
        margin-left: 0px;
    }

}

@media screen and (max-width: 768px){
    .logo img{
        margin-left: 70%;
    }
}

/*--------------------------Header-------------------------*/
.navbar {
    background-color: rgb(11, 27, 100);
    border: 0.5px solid white;

}

.navbar .container {
    margin-top: 10px;
}

.navbar-toggler-icon {
    background-color: #fff;
}

.navbar-nav {
    margin-right: 0;
}

.navbar-nav li {
    margin: 0 10px;
    margin-bottom: 12px;
}

.navbar-nav a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s;
}

.navbar-nav a:hover {
    color: #f18930;
}

.navbar-toggler-icon {
    height: 1em;
}

.navbar-toggler {
    font-size: 5px;
    padding: 2px 4px;
    border: none;
}

@media (max-width: 420px) {
    .navbar-toggler {
        font-size: 14px;
        padding: 10px 15px;
    }
}

/*-----------------------------icon-bar--------------------------*/
.icon-bar {
    position: fixed;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 2;
}

.icon-bar a {
    display: block;
    text-align: center;
    padding: 12px;
    transition: all 0.3s ease;
    color: white;
    font-size: 18px;
    border-radius: 5px;
}

.icon-bar a:hover {
    background-color: #000;
}

.facebook {
    background: #3B5998;
    color: white;
}

.twitter {
    background: black;
    color: white;
}

.google {
    background: #ddd239;
    color: white;
}

.linkedin {
    background: #007bb5;
    color: white;
}

.instagram {
    background: #ff547f;
    color: white;
}

@media (max-width: 768px) {
    .icon-bar {
        z-index: 3;
        margin-top: 50px;
        margin-bottom: 5px;

    }

    .icon-bar a {
        font-size: 16px;
        /* Adjust font size for smaller screens */
        padding: 10px;
        /* Adjust padding for smaller screens */
    }
}

/*--------------------------Booking-button----------------------------*/

.btnn {
    background-color: goldenrod;
    border: 1px solid yellowgreen;
    border-radius: 25px;
    color: black;
    padding: 10px 20px;
    margin-bottom: 10px;
    font-weight: bold;
    cursor: pointer;
}

/*------------------------Up-arrow-----------------------*/
#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 10px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: rgb(145, 168, 243);
    color: white;
    cursor: pointer;
    padding: 10px;
    border-radius: 25px;
    font-size: 20px;
}

#myBtn:hover {
    background-color: #555;
}

@media (max-width: 768px) {
    #myBtn {
        display: none;
        position: fixed;
        bottom: 20px;
        right: 75px;
        z-index: 99;
        border: none;
        outline: none;
        background-color: rgb(145, 168, 243);
        color: white;
        cursor: pointer;
        padding: 10px;
        border-radius: 25px;
        font-size: 20px;
    }
}

/*-----------------------back-index--------------------------*/

.back-index::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.center {
    position: absolute;
    top: 52%;
    left: 40%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 0 20px;
    text-align: center;
    display: flex;
}

.center .left {
    margin-left: 280px;
}

.center .left h1 {
    color: #fff;
    font-size: 100px;
    font-weight: 600;
}

.center .left h2 {
    color: orange;
    font-size: 50px;
}

.center .right {
    height: 500px;
    width: 500px;
    margin-left: 140px;
    margin-top: 40px;
}

@keyframes glowing {
    0% {
        background-color: yellow;
        box-shadow: 0 0 5px yellow;
    }

    50% {
        background-color: yellow;
        box-shadow: 0 0 20px yellow;
    }

    100% {
        background-color: yellow;
        box-shadow: 0 0 5px yellow;
    }
}

.ct-btn {
    animation: glowing 1300ms infinite;
    border-radius: 10px;
    border: 0;
}

@media only screen and (max-width: 600px) {
    .center {
        margin-top: -20px;
    }

    .center .left {
        margin-left: 75px;
        justify-content: center;
        margin-top: -80px;

    }

    .center .right {
        margin-left: 150px;
        width: 80%;
        overflow: hidden;
    }
}


@media only screen and (max-width: 380px){
    .back-index{
        width: 145%;
    }   
    .center{
        margin-left: 60px;
    }
    .card-list .card-1{
        width: 145%;
      } 
    .card-list .card-2{
        width: 145%;
       
    }
    .card-list .card-3{
        width: 145%; 
    }
    .content{
        width: 145%;
    }
    .content:before{
        width: 130%;
    }
    .treatment{
        width: 145%;
    }
}

/*-----------------------Timing-cards-------------------------------*/

.card-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    text-align: center;
}

.card-list p {
    line-height: .1;
}

.card-list h4 {
    color: rgb(11, 27, 100);
}

.card-list .card-1 {
    background-color: rgb(255, 238, 0);
}

.card-list .card-2 {
    background-color: rgb(255, 208, 0);
}

.card-list .card-3 {
    background-color: rgb(231, 192, 15);
}

/*------------------------------Intro-part--------------------------------------*/
.content {
    padding-left: 50px;
    padding-right: 50px;
    background-image: url(../images/medical-banner-with-stethoscope\ \(1\).jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
}

.content::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background: rgba(247, 246, 246, 0.2);
}

.content-img img {
    margin-left: 30px;
}

.intro {
    margin-left: 190px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.6);
    color: black;
}

.intro h3 {
    color: rgb(11, 27, 100);
    text-align: center;
}

.intro-spec {
    margin-top: 80px;

}

.intro-detail {
    margin-top: 40px;
    margin-left: 50px;

}

@media only screen and (max-width: 600px) {
    .content {
        flex-direction: column;
        align-items: center;
    }
	
	.content::before{
        background: none;   
    }

    .intro {
        margin-left: 0;
    }

    .intro-detail {
        margin-left: 0;
        text-align: center;
        margin-top: 30px;
    }

    .content-img img {
        margin-left: -2%;
        height: 100%;
        width: 100%;
    }

}


/*----------------------Our Treatment Section-----------------------------*/

.treatment {
    margin-top: 30px;
    color: rgb(11, 27, 100);

}

.treatment h2 {
    text-align: center;
    font-size: 40px;
    font-weight: bold;
}

.wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin-top: 30px;
    background: whitesmoke;
    padding: 40px;
    margin-left: 15px;
    margin-right: 15px;
}

.boxR {
    width: calc(48% - 10px);
    height: 200px;
    background: #f5f0a9;
    border-radius: 25px;
    margin-bottom: 20px;
    /* Adjust spacing between rows */
    box-sizing: border-box;
    padding-left:15px;
    /* Include padding and border in the box's total width and height */
}

.box-content h3 {
    font-size: 25px;
}

.box-content {
    display: flex;
    align-items: center;
    justify-content:space-between;
    margin:6px;	
}
.image-container {
    flex: 1;
}

.title-container {
    flex: 1; 
	text-align:justify;
}

.box-content img {
    height: 150px;
    width: 250px;
    margin-top: 20px;
	border-radius: 10px;
	margin-right:10px;
}

.box-content h3 {
    font-size: 22px;
    text-align: center;
}

@media screen and (max-width: 600px) {
    .wrapper {
        padding:20px;
    }
    
    .boxR {
        width: calc(100% - 10px);
        height:400px;
        /* Adjust width for smaller screens */
        margin-right: 0;
    }

    .box-content {
        display: flex;
        flex-direction:column;
        justify-content:space-evenly;
        margin-top: 10px;
        
    }

    .box-content img {
        
        height: 250px;
        width: 300px;
        border-radius: 20px;
        margin-right:20px;
    }
    .box-content h3 {
        margin-top:10%;
        text-align: center;
    }
}

/*------------------------Whats New news--------------------------*/

.news-heading {
    margin-top: 30px;
    text-align: center;
    color: rgb(11, 27, 100);
}

.news-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.news-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.news-image {
    width: 98%;
    height: 500px;
    object-fit: cover;
}

.news-content {
    padding: 20px;
}

h2 {
    margin-top: 0;
    font-size: 1.5rem;
    color: #333;
}

p {
    color: #555;
}

.news-card:nth-child(1) {
    grid-column: span 2;
}

@media screen and (max-width: 600px) {

    /* Adjustments for smaller screens */
    .news-image {
        max-height: 500px;
    }

    .news-card:nth-child(2),
    .news-card:nth-child(4) {
        grid-column: span 2;
    }
}

/*------------------------------Youtube Video---------------------------------*/
.blog-intro {
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
    /* Adjust the max-width as needed */
}

.blog-video {
    position: relative;
    overflow: hidden;
    width: 100%;
    /* Ensure the video takes up the full width of its container */
    padding-top: 56.25%;
    /* 16:9 aspect ratio for responsive design */
    margin-top: 20px;
    /* Adjust the top margin as needed */
}

.blog-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*---------------------Center Line---------------------------*/
.border-line {
    display: flex;
    margin-top: 50px;
}

.centerline {
    border-top: 80px solid rgb(11, 27, 100);
    width: 100%;
}

.rating {
    width: 100%;
    height: 80px;
    background-color: rgb(11, 27, 100);
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 0 20px;
    margin-top: 30px;
}

.rating-content {
    display: flex;
    flex-direction: column;
}

.count {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
    color: azure;
}

.label {
    font-size: 12px;
    color: whitesmoke;
}

/*---------------------Feedback Card---------------------------*/

.carousel {
    margin: 0 auto;
    padding-bottom: 50px;
    max-width: 100%;
    position: relative;
}

.carousel .carousel-item {
    color: #181717;
    font-size: 20px;
    text-align: center;
    overflow: hidden;
    min-height: 340px;
}

.carousel .carousel-item a {
    color: #eb7245;
}

.carousel .img-box {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    border-radius: 50%;
}

.carousel .img-box img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
}

.carousel .testimonial {
    padding: 15px;
    font-size: 16px;
}

.carousel .overview {
    text-align: center;
    padding-bottom: 5px;
}

.carousel .overview b {
    color: #333;
    font-size: 14px;
    text-transform: uppercase;
    display: block;
    padding-bottom: 5px;
}

.carousel .star-rating i {
    font-size: 16px;
    color: orangered;
}

.carousel .carousel-control-prev,
.carousel .carousel-control-next {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #999;
    text-shadow: none;
    top: auto;
    bottom: 20px;
    position: absolute;
}

.carousel .carousel-control-prev {
    left: 30%;
}

.carousel .carousel-control-next {
    right: 27%;
}

.carousel .carousel-control-prev i,
.carousel .carousel-control-next i {
    font-size: 18px;
    margin-right: 2px;
}

.carousel-indicators {
    bottom: 15px;
}

.carousel-indicators li,
.carousel-indicators li.active {
    width: 20px;
    height: 8px;
    margin: 1px 5px;
    border-radius: 50%;
}

.carousel-indicators li {
    background: #e2e2e2;
    border: none;
    list-style-type: none;
}

.carousel-indicators li.active {
    background: #888;
}

.review-carousel {
    width: 100%;
    padding: 30px 10px;
    background: #00bf8f;
    background: -webkit-linear-gradient(to right, #001510, #00bf8f);
    background: linear-gradient(to right, #bcf3e6, #e68fd7);
    text-align: center;
}


/*---------------------Footer-----------------*/
footer {
    background: #f7f7f7;
    padding-top: 50px;
    border: 1px solid gray;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.footer-content {
    box-sizing: border-box;
    text-align: center;
}

h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.footer-content p {
    width: 100%;
    margin: auto;
    padding: 7px;
}

.footer-content ul {
    text-align: center;
    padding: 0;
}

.list {
    padding: 0;
    list-style-type: none;
}

.list li {
    width: auto;
    text-align: start;
    padding: 7px;
    position: relative;
}

.list li::before {
    content: '';
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 100%;
    width: 0;
    height: 2px;
    background: #f18930;
    transition-duration: .5s;
}

.list li a {
    text-decoration: none;
    text-align: start;
}

.social-icons {
    text-align: center;
    padding: 0;
}

.social-icons li {
    display: inline-block;
    text-align: center;
    padding: 5px;
}

.social-icons i {
    color: white;
    font-size: 25px;
    transition: transform 0.5s ease-in-out;
}

a {
    text-decoration: none;
}

a:hover {
    color: #f18930;
}

.social-icons a:hover i {
    transform: scale(1.2);
}

.bottom-bar {
    background: #f1b430;
    text-align: center;
    padding: 10px 0;
}

.bottom-bar p {
    color: #343434;
    margin: 0;
    font-size: 16px;
    padding: 7px;
}




/*-----------------------CSS Code for About page----------------------*/

/*-------------------Code for Back-about--------------------*/


.back-about {
    background: url("../images/isha.jpg") no-repeat;
    width: 100%;
    height: 90vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.about-doc {
    display: flex;
    justify-content: space-around;
    background-color: rgba(172, 177, 179, 0.205);

}

.about-doc::before {
    content: '';
    position: absolute;
    height: 850px;
    width: 100%;
    background: rgba(241, 238, 238, 0.8);
}

.detail {
    z-index: 1;
}

.about-doc .intro-doc {
    position: absolute;
    top: 82%;
    left: 25%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.about-doc .para {
    position: absolute;
    top: 80%;
    left: 70%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.para h2 {
    font-size: 35px;
    font-family: 'Poppins', sans-serif;
}

.para p {
    font-family: 'Times New Roman', Times, serif;
    font-size: 16px;
    text-indent: 60px;
    text-align: justify;
}

.intro-doc img {
    margin-left: 150px;
    margin-top: 20px;
}

.intro-doc h2 {
    color: rgb(48, 48, 252);
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
    font-size: 40px;
    text-align: center;
    margin-top: 15px;
}

.intro-doc p {
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
    text-align: center;
    margin-left: 100px;

}

@media only screen and (max-width: 767px) {
    .intro-doc img {
        margin-left: 190px;
        margin-top: -1050px;
        height: 250px;
        width: 200px;
    }

    .intro-doc h2 {
        margin-top: -390px;
        margin-left: 200px;
        font-size: 20px;
    }

    .intro-doc p {
        margin-left: 160px;
        font-size: 15px;
        line-height: 0.9;
    }

    .para p {
        font-size: 10px;
        margin-top: 0px;
        text-align: justify;
        margin-left: -170px;
    }

    .para h2 {
        font-size: 15px;
        margin-top: -115px;
        margin-left: -140px;
        text-align: center;
    }

    .about-doc::before {
        height: 720px;
    }

    .back-about {
        height: 110vh;
    }
}

@media only screen and (max-width: 380px) {
    .para h2 {
        margin-top: 40%;
    }

    .intro-doc p {
        line-height: 1;
        font-size: 13px;
    }

    .about-doc::before {
        height: 830px;
    }

}

/*-----------------------code for cards-------------------*/
.card-container {
    margin: 180px;
    margin-top: 390px;
    display: flex;
    justify-content: space-evenly;
}

.card-v {
    flex: 0 0 calc(40.33% - 70px);
    margin: 40px;
    padding: 15px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
    transition: transform 0.3s ease-in-out;
    align-items: center;
}

.card-v p {
    text-align: justify;
}

.card-v:hover {
    transform: scale(1.05);
}

.card-v img {
    width: 100px;
    height: 100px;
    border-radius: 50px;
    margin-top: -80px;
    border: 2px solid black;
    display: block;
    margin-left: auto;
    margin-right: auto;

}

.card-v h2 {
    text-align: center;
}

@media (max-width: 768px) {
    .card-container {
        flex-direction: column;
        align-items: center;
        margin: 0;
        margin-top: 30px;
    }

    .card-v {
        margin: 50px 0;
        width: 85%;
    }

}

@media only screen and (max-width: 380px) {
    .card-container {
        margin-top: 50%;
    }
}

/*----------------code for specialty-----------------------*/

.specialty-section{
    display: flex;
}

.speciality-img img{
    height: 700px;
    width: 700px;
    margin-left: 40px;
    margin-top: -300px;
}

/*
.specialty h1 {
    color: rgba(52, 102, 211, 0.2);
    font-size: 140px;
    margin-left: 10px;
    font-weight: bold;
    z-index: 1;
}

.specialty h2 {
    margin-top: 70px;
    z-index: 2;
    font-weight: bold;
    font-size: 42px;
    transform: translateX(80%);

}*/

@media only screen and (max-width: 767px) {
    /*
    .specialty {
        margin-top: -100px;
        margin-left: -80px;
    }

    .specialty h1 {
        margin-top: 70px;
        font-size: 60px;
        margin-left: -125px;
    }

    .specialty h2 {
        margin-top: 90px;
        font-size: 30px;
        margin-left: -30px;
    }*/
    .specialty-section{
        display: block;
        margin-top: 50px;
     }

    .speciality-img img{
        height: 350px;
        width: 330px;
        margin-left: 40px;
        margin-top: -80px;
    }
}

/*--------------------------Accordion--------------------------------*/
.accordion {
    width: 50%;
    margin-top: -60px;
    margin-left: 60px;
}

.accordion-item {
    border: 1px solid #ccc;
    margin-bottom: 10px;
}

.accordion-header {
    background-color: #615eeb;
    color: white;
    padding: 19px;
    cursor: pointer;
    font-weight: bold;
}

.accordion-content {
    display: none;
    padding: 10px;
}

.accordion-item.active .accordion-content {
    display: block;
}

@media only screen and (max-width: 767px) {
    .accordion {
        width: 80%;
        margin-left: 30px;
    }
}



/*------------------------CSS Code for disease.html-----------------------------*/

/*-------------------back-disease-----------------------*/

.back-disease {
    background: url("../images/53848.jpg")no-repeat;
    width: 100%;
    height: 80vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.back-disease::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background: rgba(247, 246, 246, 0.2);
}

.gray-box {
    position: absolute;
    z-index: 3;
    /*gray box will be above both green and black box*/
    background: rgba(247, 246, 246, 0.8);
    height: 466px;
    width: 52%;
    left: 0px;
    top: 95px;

}

.gray-box h1 {
    font-size: 95px;
    margin-top: 15%;
    margin-left: 25%;
    font-family: 'Poppins', sans-serif;
}

.heading-box {
    position: absolute;
    z-index: 3;
    height: 515px;
    width: 45%;
    left: 550px;
    top: 95px;
}

.heading-box h1 {
    font-size: 160px;
    margin-top: 15%;
    margin-left: -25%;
    font-family: 'Poppins', sans-serif;
    /* Adjust the font size as needed */
    color: transparent;
    /* Text color inside the outline */
    -webkit-text-stroke: 2px rgb(146, 140, 140);
}

/*----------------Media Queries back gray box ----------------*/
@media only screen and (max-width: 600px) {
    .back-disease {
        height: 90vh;
    }


    .gray-box h1 {
        font-size: 43px;
        margin-top: 90px;
        margin-left: 10%;
    }

    .heading-box {
        left: 42%;

    }

    .heading-box h1 {
        font-size: 55px;
        margin-top: 75%;
    }
}

@media only screen and (max-width: 767px) {
    .gray-box {
        height: 0;
        width: 0;
        left: 20%;
        margin-top: 20%;
    }

    .gray-box h1 {
        font-size: 48px;
        margin-top: 140px;
        margin-left: 12%;
    }

    .heading-box {
        left: 5%;
        margin-top: 30%;

    }

    .heading-box h1 {
        font-size: 55px;
        margin-top: 100%;
        margin-left: 20%;
    }
}

@media only screen and (max-width: 350px) {
    .gray-box {
        height: 385px;
        width: 55%;
        margin-top: 20%;
    }

    .gray-box h1 {
        font-size: 38px;
        margin-top: 120px;
        margin-left: 10%;
    }

    .heading-box {
        left: 60%;

    }

    .heading-box h1 {
        font-size: 55px;
        margin-top: 70%;
    }
}

/*---------------------------Stetho Care-----------------------------------*/

.container-disease {
    position: relative;
    background: url(../images/young-handsome-physician-medical-robe-with-stethoscope.jpg);
    background-size: cover;
    background-position: center;
    font-family: "Open Sans";
    width: 100%;
    height: 100vh;
}

.mySwiper {
    max-width: 1100px;
    height: 100vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    margin: auto;
}

.card-disease {
    /*text-align: center;
    background-color: rgba(97, 133, 179, 0.534);
    padding: 40px 60px;
    border-radius: 20px;
    box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
    width: 500px;
    height: 300px;
    */
    margin-top: 25%;
    width: 300px;
    height: 480px;
    padding: 10px;
    background-color: rgba(97, 133, 179, 0.534);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(29, 29, 29, 0.8);
    transition: transform 0.3s ease-in-out;
    color: black;
    display: flex;
    flex-direction: column;
    /* Ensures that child elements stack vertically */
    justify-content: space-between;
}

.card-disease h2 {
    text-align: center;
    border-radius: 10px;
    margin: 0;
    padding: 0;

    height: 200px;
    /* Fixed height for h2 elements */
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;

}

.card-disease ul {
    flex-grow: 1;
    /* Allows the ul element to take up remaining space */
    /*   padding: 0;
    Remove default padding */
    /* margin: 0;
     Remove default margin */
}

.card-disease ul li {
    margin-top: 20px;
    font-weight: bold;
    list-style-type: circle;
    font-size: 15px;
    color: black;
    text-align: start;
}

.card-disease:hover {
    transform: scale(1.05);
}

.swiper-slide {
    display: flex;
    align-items: center;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    color: #0096FF;
    padding: 30px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 32px;
}

.review i {
    color: orange;
}



@media (max-width: 768px) {
    .container-disease {
        background-size: cover;
        height: auto;
    }

    .card-disease {
        margin-top: 10%;
        /* Adjust the margin-top value as needed */
        width: 80%;
        height: auto;
		margin-left: 10%;
    }

    .mySwiper {
        height: auto;
    }

    .swiper-slide {
        flex-direction: column;
        /*  align-items: center;*/
        text-align: center;
    }
}

@media (max-width: 380px) {
    .card-disease {
        width: 80%;
        margin: 20px auto;
    }
}

/*-----------------------Road Map------------------------*/
/* Reset default margin and padding for the image */
.roadmap img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
}

/* Apply margin for the entire container */
.roadmap {
    margin-top: 50px;
    margin-bottom: 50px;
    text-align: center;
    /* Center the image within the container */
    max-width: 100%;
    /* Add this to prevent overflow */
    width: 100%;
    background-color: lightslategray;
}

/* Media query for larger screens */
@media (min-width: 768px) {
    .roadmap {
        margin-top: 100px;
        margin-bottom: 100px;
        max-width: 70%;
        /* Adjust the maximum width as needed */
        margin-left: auto;
        margin-right: auto;
    }
}




/*------------------------CSS Code For Booking.html----------------------*/

/*-------------------code for back-booking------------------*/

.back-booking {
    background: url("../images/53848.jpg") no-repeat;
    width: 100%;
    height: 80vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
}

.back-booking::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background: rgba(247, 246, 246, 0.2);
}

.left-book {
    color: black;
    /* Color for h1 */
    margin-top: 100px;
    margin-left: 120px;
}

.left-book h1 {
    font-size: 70px;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
}

.book-btn {
    margin-left: 120px;
    border: 2px solid black;
    border-radius: 2px;
    cursor: pointer;
}

.text-warning {
    color: goldenrod;
    /* Color for h2 */
    font-size: 70px;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
}

/*---------------------media query------------------------*/
@media only screen and (max-width: 767px) {
    .back-booking {
        height: 70vh;
    }

    .left-book {
        color: black;
        /* Color for h1 */
        margin-top: 100px;
        margin-left: 60px;
    }

    .left-book h1 {
        font-size: 45px;
        font-weight: bold;
        font-family: 'Poppins', sans-serif;
    }

    .book-btn {
        margin-left: 40px;
    }

    .text-warning {
        color: goldenrod;
        /* Color for h2 */
        font-size: 45px;
        font-weight: bold;
        font-family: 'Poppins', sans-serif;
    }
}

/*-------------------------------Code for Booking-------------------------------------*/
.plus {
    display: flex;
}

.plus img {
    height: 600px;
    width: 1100px;
    align-items: center;
    margin: 70px 0px 30px 90px;
}

/*---------

.form-box {
    background-color: rgba(12, 187, 240, 0.5);
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 0 10px #000;
    position: absolute;
    margin-top: 560px;
    margin-left: 440px;  
    top: 0;
    bottom: 0;
    left: 70px;
    right: 0;
    width: 550px;
    height: 650px;

}


.form-box:before {
    width: 100%;
    height: 100%;
    background-size: cover;
    content: "";
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    display: block;
    filter: blur(2px);
}

.form-box .header-text {
    font-size: 32px;
    font-weight: 600;
    padding-bottom: 30px;
    text-align: center;
    color: black;
    font-family: 'Poppins', sans-serif;
}

.form-box input {
    margin: 10px 0px;
    border: none;
    padding: 10px;
    border-radius: 10px;
    width: 100%;
    font-size: 18px;

}

.form-box input[type=checkbox] {
    display: none;
}

.form-box label {
    position: relative;
    margin-left: 5px;
    margin-right: 10px;
    top: 5px;
    display: inline-block;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.form-box label:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 5px;
    position: absolute;
    left: 0;
    bottom: 1px;
    background-color: #ddd;
}

.form-box input[type=checkbox]:checked+label:before {
    content: "\2713";
    font-size: 20px;
    color: #000;
    text-align: center;
    line-height: 20px;
}

.form-box select {
    padding: 10px;
    width: 100%;
    border-radius: 10px;
}

.form-box span {
    font-size: 14px;
}

.form-box button {
    background-color: white;
    color: black;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    width: 200px;
    font-size: 18px;
    padding: 10px;
    margin: 20px 140px;
    font-weight: bold;
}

span a {
    color: #BBB;
}
-----*/


.form-box {
    background-color: rgba(12, 187, 240, 0.5);
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 0 10px #000;
    position: absolute;
    margin-top: 515px;
    margin-left: 450px;
    top: 0;
    bottom: 0;
    left: 120px;
    right: 0;
    width: 550px;
    height: 742px;
}

.form-box:before {
    width: 100%;
    height: 100%;
    background-size: cover;
    content: "";
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    display: block;
    filter: blur(2px);
}

.form-box .header-text {
    font-size: 32px;
    font-weight: 600;
    padding-bottom: 30px;
    text-align: center;
    color: black;
    font-family: 'Poppins', sans-serif;
}

.form-box .form-group {
    margin-bottom: 15px;
}

.form-box label {
    display: block;
    margin-bottom: 5px;
    font-size: 15px;
    font-weight: bold;
}

.form-box input,
.form-box select {
    width: 100%;
    padding: 8px;
    border: none;
    border-radius: 10px;
    font-size: 18px;
}

.form-box .date-time-container {
    display: flex;
    justify-content: space-between;
}
.dob-services-container{
    display: flex;
    justify-content: space-between;
}
.dob-services-container select{
   width: 200px;
}

.form-box button {
    background-color: white;
    color: black;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    width: 200px;
    font-size: 18px;
    padding: 10px;
    margin: 10px auto;
    font-weight: bold;
    justify-content: center;
    display: block;
    align-items: center;
}

.form-box textarea {
    width: 100%;
    padding: 8px;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    resize: vertical;
    height: 90px;
}

@media only screen and (max-width: 767px) {
    .plus img {
        height: 600px;
        width: 100%;
        margin: 0px 0 10px 0px;
    }

    .form-box {
        margin-top: 110%;
        margin-left: -22%;
        width: 80%;
        padding: 20px;
    }

    .form-box button {
        margin-left: 25px;
    }
    .dob-services-container select,
    .dob-services-container input{
        width: 120px;   
    }
    .date-time-container input,
    .date-time-container input{
        width: 120px;
    }
}




/*---------------------Codes for Gallery section gallery.html--------------------------------*/

.gallery-container {
    padding: 50px;
}

.col-md-4 img {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .6s ease-in-out;
    transition: .6s ease-in-out;
}

.col-md-4:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.gallery-container h2 {
    text-align: center;
    margin-top: 30px;
    color: rgb(11, 27, 100);
    font-size: 50px;
    font-weight: bold;
}

.gallery-container .row {
    margin-top: 50px;
}

.gallery-container p {
    text-align: center;
    margin-top: 30px;
}
.container-testimonial{
    background: lightgrey;
}


.mySwiper {
    max-width: 1100px;
    height: 100vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    margin: auto;
}

.img-box img {
    height: 100px;
    width: 100px;
    margin-left: 30%;
    border-radius: 50%;
    margin-top: 10%;

}

.card-testimonial {
    margin-top: 15%;
    width: 300px;
    height: 400px;
    padding: 5px;
    background-color: rgba(208, 236, 142, 0.534);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(29, 29, 29, 0.8);
    transition: transform 0.6s;
    color: black;
    display: flex;
    flex-direction: column;

}

.card-testimonial:hover {
    transform: scale(1.05);
}

.card-testimonial p {
    text-align: center;
}

.card-testimonial .star-rating {
    text-align: center;
    color: orangered;
}

@media (max-width: 768px) {

    .card-testimonial {
        margin-top: 10%;
        /* Adjust the margin-top value as needed */
        width: 80%;
        height: auto;
		margin-left: 10%;
    }
    .img-box img {
        margin-left:10%;
        margin-bottom:5px;
    }

    .mySwiper {
        height: auto;
    }

    .swiper-slide {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 380px) {
    .card-testimonial {
        width: 80%;
        margin: 20px auto;
    }

    .img-box img {
        margin-right: 30%;
    }
}
