/********** Template CSS **********/
:root {
    --primary: #f37f27;
    --secondary:rgba(243,127,39,0.5);
    --light: #EEF9FF;
    --dark: #091E3E;
}

h1,
h2,
.font-weight-bold {
    font-weight: 700 !important;
}

h3,
h4,
.font-weight-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.font-weight-medium {
    font-weight: 500 !important;
}

.btn {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    background-color: #f37f27;
}

.btn-primary:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

.btn-secondary:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.top-shape::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 100%;
    top: 0;
    left: -17px;
    background: var(--primary);
    transform: skew(40deg);
}

.navbar-light .navbar-nav .nav-link {
    font-family: 'Jost', sans-serif;
    padding: 35px 15px;
    font-size: 18px;
    color: var(--dark);
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 15px;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(243, 127,39,0.3);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}



@media (min-width: 991.98px) {
    .banner {
        position: relative;
        margin-top: -90px;
        z-index: 1;
       
    }
}

.section-title h5::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 3px;
    right: -55px;
    bottom: 11px;
    background: var(--primary);
}

.section-title h5::after {
    position: absolute;
    content: "";
    width: 15px;
    height: 3px;
    right: -75px;
    bottom: 11px;
    background: var(--secondary);
}

.twentytwenty-wrapper {
    height: 100%;
}

.hero-header {
    background: linear-gradient(rgba(243, 127,39,0.5),rgba(243, 127,39,0.5)), url(../img2/aboutbg.jpg) center center no-repeat;
    background-size: cover;
}

.bg-appointment {
    background: linear-gradient(rgba(243, 127,39,0.5), rgba(243, 127,39,0.5)), url(../img2/aboutbg.jpg) center center no-repeat;
    background-size: cover;
}

.appointment-form {
    background: rgba(6, 163, 218, .7);
}


.bg-offer {
    background:url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.offer-text {
    background: rgba(6, 163, 218, .85);
}

.price-carousel .owl-nav {
    position: absolute;
    width: calc(100% + 45px);
    height: 45px;
    top: calc(50% - 22.5px);
    left: -22.5px;
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
}

.price-carousel:hover .owl-nav {
    opacity: 1;
}

.price-carousel .owl-nav .owl-prev,
.price-carousel .owl-nav .owl-next {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 2px;
    font-size: 22px;
    transition: .5s;
}

.price-carousel .owl-nav .owl-prev:hover,
.price-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
}

.bg-testimonial {
    background: url(../img/carousel-2.jpg) center center no-repeat;
    background-size: cover;
}

.testimonial-carousel {
    background: rgba(6, 163, 218, .85);
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: calc(100% + 46px);
    height: 46px;
    top: calc(50% - 23px);
    left: -23px;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 2px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
}

.testimonial-carousel .owl-item img {
    width: 120px;
    height: 120px;
}  
.icon-container {
    position: relative;
    width: 50px;
    height: 50px;
    margin: 0 auto; /* Center horizontally */
    display: flex;
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
  }

  .icon-container img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }

  @media (max-width: 600px) {
    .icon-container {
      width: 70px; /* Increase size in mobile view */
      height: 70px; /* Increase size in mobile view */
      margin: 0 auto; /* Center horizontally */
      display: flex;
      align-items: center; /* Center vertically */
      justify-content: center; /* Center horizontally */
    }

    .icon-container img {
      width: 100%;
      height: 100%;
      position: relative;
      top: 0;
      left: 0;
    }
  }
  
  @media (max-width: 767px) {
    .carousel-caption h3 {
        display: none;
    }
  
  }
  .dropdown-menu {
    background-color: #343a40; /* Dark background for dropdown menu */
}

.dropdown-item {
    color: #ffffff; /* White text for dropdown items */
}

.dropdown-item:hover {
    background-color: #495057; /* Slightly lighter dark background on hover */
    color: #ffffff;
}
.service-card {
    margin-bottom: 30px;
}
.service-card .img-container {
    width: 100%;
    height: 250px; /* Set a fixed height for all images */
    overflow: hidden;
}
.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the image covers the entire container */
}
@media (max-width: 767.98px) {
    .service-card .img-container {
        height: auto; 
        
    }
}

.service-card:hover .img-container {
    transform: scale(1.1); /* Zoom effect on hover */
}

.service-card img,
.service-card .bg-light,
.service-card .bg-light h5,
.team-item .team-text {
    transition: .5s;
}

.service-card img {
    transform: scale(1.15);
}

.team-item .team-text::after,
.service-card .bg-light::after {
    position: absolute;
    content: "";
    top: 50%;
    bottom: 0;
    left: 15px;
    right: 15px;
    border-radius:100px / 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, .7);
    opacity: 0;
    transition: .5s;
    z-index: -1;
}

.team-item:hover .team-text::after,
.service-card:hover .bg-light::after {
    opacity: 1;
}

.service-item img,
.service-item .bg-light,
.service-item .bg-light h5,
.team-item .team-text {
    transition: .5s;
}

.service-item:hover img {
    transform: scale(1.15);
}

.team-item .team-text::after,
.service-item .bg-light::after {
    position: absolute;
    content: "";
    top: 50%;
    bottom: 0;
    left: 15px;
    right: 15px;
    border-radius:100px / 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, .7);
    opacity: 0;
    transition: .5s;
    z-index: -1;
}

.team-item:hover .team-text::after,
.service-item:hover .bg-light::after {
    opacity: 1;
}
.bg-primary{
    background-color: #f37f27 !important;
}
@media(max-width:768px){
    #contactBtn{
        display:none;
    }
}
.doctor-container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 1200px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.doctor-info, .additional-info {
    padding: 20px;
}
.doctor-name {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: bold;
}
.doctor-info ul {
    list-style: none;
    padding: 0;
}
.doctor-info ul li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
}
.doctor-info ul li strong {
    color: #2980b9;
}
.additional-info h4 {
    color: #34495e;
    font-size: 22px;
    margin-bottom: 10px;
}
.additional-info p {
    color: darkslategray;
    font-weight: 500;
    font-size: large;
    line-height: 1.7;
    margin-bottom: 10px;
}
.img-fluid2{
    width: 100%;
    height: auto;
    display: block;
}


@media (min-width: 768px) {
    .doctor-container {
        flex-direction: row;
    }
    .doctor-info, .additional-info {
        flex: 1;
    }
}
/*whatsappbutton*/
.whatsapp-button {
	position: fixed;
	bottom: 20px;
	left: 20px;
	z-index: 1000;
}

.whatsapp-button a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
	background-color: #25d366;
	border-radius: 50%;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
	text-decoration: none;
}

.whatsapp-button a:hover {
	transform: scale(1.2);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
	background-color: #20c25d;
}

.whatsapp-button img {
	width: 35px;
	height: 35px;
	transition: transform 0.3s ease;
}

.whatsapp-button a:hover img {
	transform: rotate(360deg);
}
  /* Scroll to Top Arrow Styles */
  .scroll-to-top {
	display: none; /* Hide by default */
	position: fixed;
	bottom: 20px;
	right: 20px;
	background-color: rgba(122,41,143,236); /* Example background color */
	color: #fff; /* Example text color */
	width: 40px; /* Adjust size as needed */
	height: 40px;
	text-align: center;
	line-height: 40px;
	font-size: 20px;
	border-radius: 50%; /* Makes it round */
	cursor: pointer;
	z-index: 1000; /* Ensures it's above other content */
  }
  
  .scroll-to-top:hover {
	background-color: rgba(122,41,143,236); /* Example hover background color */
  }
  .custom-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.service-list {
    list-style-type: none;
    padding: 0;
}
.service-list li {
    margin-bottom: 10px;
}
.service-list li a {
    display: block;
    padding: 10px;
    border-radius: 5px;
    background-color: #f0f0f0;
    color: #333;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}
.service-list li a:hover {
    background-color: #e0e0e0;
}
.image-button {
    display: block;
    overflow: hidden;
    position: relative;
    width: 100%;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    height: 200px; /* Set a fixed height for the button */
    transition: transform 0.3s ease-out;
}

.image-button:hover {
    transform: translateY(-5px);
}

.image-button img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.image-button:hover img {
    transform: scale(1.1);
}

.button-text {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    transform: translateY(-50%);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
    background-color: rgba(0, 123, 255, 0.8);
    padding: 10px;
    border-radius: 0 0 8px 8px;
    transition: background-color 0.3s;
}

.button-text:hover {
    background-color: rgba(0, 123, 255, 1);
}

@media (max-width: 768px) {
    .image-button {
        margin-bottom: 10px;
        height: auto; 
    }

    .image-button img {
        position: relative;
        height: auto; 
    }

    .button-text {
        font-size: 14px;
    }
}

  .service-details {
	background-color: #fff;
	padding: 20px;
	border: 2px solid #ddd;
	border-radius: 10px;
	height: 150%; /* Ensure both sides are equal height */
}
.service-details p {
	margin-bottom: 10px;
}
.service-details ul {
	padding-left: 20px;
	margin-bottom: 20px;
}
.service-details ul li {
	list-style-type: disc;
	margin-bottom: 5px;
}
.service-details h3 {
	color: #007bff;
    margin-top: 50px;
}
.img-fluid {
	max-width: 100%;
	height: 57%;
	margin-bottom: 10px;
	border-radius: 15px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
	/* Adjust heading sizes */
	
	h3 {
		font-size: 1.2em;
		margin-bottom: 15px;
		margin-top: 20px; 
	}
	
	p {
		font-size: 0.9em;
		line-height: 1.5;
			margin-bottom: 10px;
	}
  
	/* Adjust paragraph sizes */
	
  
	/* Adjust padding and margins as needed */
	.service-details {
	  padding: 17px; /* Add padding to containers */
	}
  
	.custom-symptoms-list li {
	  margin-bottom: 10px; /* Adjust margin between list items */
	}
  }
  
.tex{
	font-size: larger;
	font-weight: bold;
    color: #3a3a3a;
}
.hed{
	font-size: x-large;
	font-weight: bolder;
	color: #020523;
}
