/* ---------------------------------------------
Table of contents
------------------------------------------------
01. font & reset css
02. reset
03. global styles
04. header
05. banner
06. features
07. testimonials
08. contact
09. footer

--------------------------------------------- */
:root {
  --primary-color: #4da6e7;
}

/* 
---------------------------------------------
font & reset css
--------------------------------------------- 
*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900");

/* 
---------------------------------------------
reset
--------------------------------------------- 
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
div pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
figure,
header,
nav,
section,
article,
aside,
footer,
figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.clearfix {
  display: inline-block;
}

html[xmlns] .clearfix {
  display: block;
}

* html .clearfix {
  height: 1%;
}

ul,
li {
  padding: 0;
  margin: 0;
  list-style: none;
}

header,
nav,
section,
article,
aside,
footer,
hgroup {
  display: block;
}

* {
  box-sizing: border-box;
}

html,
body {
  font-family: 'Poppins', sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #1e1e1e;
  margin-top: 0px;
  margin-bottom: 0px;
  font-weight: 700;
}

ul {
  margin-bottom: 0px;
}

p {
  font-size: 14px;
  line-height: 28px;
  color: #4a4a4a;
}

img {
  width: 100%;
  overflow: hidden;
}

/* 
---------------------------------------------
Global Styles
--------------------------------------------- 
*/
html,
body {
  font-family: 'Poppins', sans-serif;
}

::selection {
  background: #0071f8;
  color: #fff;
}

::-moz-selection {
  background: #0071f8;
  color: #fff;
}

.section {
  margin-top: 60px;
}

.section-heading {
  margin-bottom: 70px;
}

.section-heading h2 {
  font-size: 40px;
  font-weight: 700;
  text-transform: capitalize;
  margin-top: 20px;
  line-height: 56px;
}

.section-heading h2 em {
  font-style: normal;
  color: #0071f8;
}

.section-heading h6 {
  color: #ee626b;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 700;
}

.icon-button a {
  display: inline-block;
  background-color: #1e1e1e;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  height: 50px;
  line-height: 50px;
  padding: 0px 30px 0px 0px;
  border-radius: 25px;
  transition: all .3s;
}

.icon-button a i {
  background-color: var(--primary-color);
  height: 50px;
  width: 50px;
  text-align: center;
  border-radius: 50%;
  line-height: 50px;
  display: inline-block;
  margin-right: 15px;
  margin-left: -1px;
}

.icon-button a:hover {
  color: var(--primary-color);
}

.icon-button a:hover i {
  color: #fff;
}

.main-button a {
  display: inline-block;
  color: #1e1e1e;
  font-size: 14px;
  font-weight: 700;
  height: 40px;
  line-height: 40px;
  padding: 0px 20px;
  border-radius: 7px;
  border: 2px solid var(--primary-color);
  outline: none;
  transition: all 0.3s ease;
}


.main-button a:hover {
  background-color: var(--primary-color);
  color: #fff;
}

/* 
---------------------------------------------
Pre-loader Style
--------------------------------------------- 
*/

.js-preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.99);
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  z-index: 9999;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}

.js-preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@-webkit-keyframes dot {
  50% {
    -webkit-transform: translateX(96px);
    transform: translateX(96px);
  }
}

@keyframes dot {
  50% {
    -webkit-transform: translateX(96px);
    transform: translateX(96px);
  }
}

@-webkit-keyframes dots {
  50% {
    -webkit-transform: translateX(-31px);
    transform: translateX(-31px);
  }
}

@keyframes dots {
  50% {
    -webkit-transform: translateX(-31px);
    transform: translateX(-31px);
  }
}

.preloader-inner {
  position: relative;
  width: 142px;
  height: 40px;
  background: transparent;
}

.preloader-inner .dot {
  position: absolute;
  width: 16px;
  height: 16px;
  top: 12px;
  left: 15px;
  background: var(--primary-color);
  border-radius: 50%;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-animation: dot 2.8s infinite;
  animation: dot 2.8s infinite;
}

.preloader-inner .dots {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  margin-top: 12px;
  margin-left: 31px;
  -webkit-animation: dots 2.8s infinite;
  animation: dots 2.8s infinite;
}

.preloader-inner .dots span {
  display: block;
  float: left;
  width: 16px;
  height: 16px;
  margin-left: 16px;
  background: var(--primary-color);
  border-radius: 50%;
}



/* 
---------------------------------------------
Header Style
--------------------------------------------- 
*/

.sub-header {
  background-color: #292f63;
  padding: 10px 0px;
}

.sub-header ul li {
  display: inline-block;
}

.sub-header ul.social-links {
  text-align: right;
}

.sub-header ul.social-links li {
  margin-left: 8px;
}

.sub-header ul.social-links li a {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: #cdcdcd;
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  color: #030303;
  font-size: 14px;
  transition: all .3s;
}

.sub-header ul.social-links li a:hover {
  background-color: #003366;
  color: #fff;
}

.sub-header ul.info li {
  font-size: 14px;
  color: #eee;
  border-right: 1px solid #7a7a7a;
  margin-right: 25px;
  padding-right: 25px;
}

.sub-header ul.info li a {
  color: #eee;
}

.sub-header ul.info li:last-child {
  margin-right: 0px;
  padding-right: 0px;
  border-right: none;
}

.sub-header ul.info li i {
  font-size: 20px;
  color: #fff;
  margin-right: 8px;
}

.background-header {
  background-color: #fff;
  position: fixed !important;
  top: 0 !important;
  left: 0;
  right: 0;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15) !important;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
}

.header-area {
  position: relative;
  background-color: #41cce4;
  z-index: 100;
  padding-top: 8px;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  width: 100%;
  height: 100px;
  /* Default height for small screens */
}

.header-area .main-nav {
  background: transparent;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20;
}

.header-area .main-nav ul.nav {
  margin-top: 30px;
  justify-content: center;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  z-index: 999;
}

.mobile-view {
  display: none;
}

.sub-header-2 {
  padding: 0px 0;
  text-align: center;
  border-bottom: 1px solid #ffffff;
  background-color: #ffffff;
}

.sub-header-2 .logo-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sub-header-2 .logo {
  max-width: 125px;
  /* Adjust logo size */
  height: auto;
}

.sub-header-2 .logo-certificate {
  max-width: 100px;
  padding: 3px;
}

.logo-container .logo-title h2 {
  font-size: 35x;
  color: #000000;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 0px;
}


.header-area .main-nav .nav .nav-links:last-child {
  padding-right: 0px;
}

.header-area .main-nav .nav .nav-links {
  height: 100px;
  line-height: 100px;
  width: auto;
}

.carousel-btn {
  z-index: 10;
  position: absolute;
  right: 0;
  /* bottom: 0; */
  transition: all ease-in-out .5s;
  margin-top: 50px;
  transform: rotate(-90deg);
  transform-origin: right bottom;
}

.carousel-btn a {
  display: block;
  /* padding-left: 10px; */
  padding-right: 15px;
  background-color: #ececec;
  font-weight: 600;
  font-size: 15px;
  height: 40px;
  line-height: 40px;
  border-radius: 17px;
  text-transform: capitalize;
  color: #242424;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  border: transparent;
  letter-spacing: .25px;
  transition: all ease-in-out .5s;
}

/* .carousel-btn{
  display: block;
} */

.carousel-btn a i {
  background-color: var(--primary-color);
  display: inline-block;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  margin-right: 10px;
  border-radius: 50%;
  margin-left: -1px;
  transition: all ease-in-out .5s;
}

.carousel-btn:hover a {
  color: #ffffff;
  background-color: var(--primary-color);
}

.carousel-btn:hover a i {
  color: #fff;
  background-color: #252525;
}

/* ----------------- */

.background-header .main-nav .nav .nav-links a.active {
  color: var(--primary-color);
}


.header-area .main-nav .nav .nav-links a {
  display: block;
  padding-left: 10px;
  padding-right: 10px;
  font-weight: 600;
  font-size: 15px;
  height: 40px;
  line-height: 40px;
  text-transform: capitalize;
  color: #1e1e1e;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  border: transparent;
  letter-spacing: .25px;
}

.header-area .main-nav .nav .nav-links:last-child a {
  background-color: #1e1e1e;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
  border-radius: 20px;
  padding-left: 0px;
}

.header-area .main-nav .nav .nav-links:last-child a i {
  background-color: var(--primary-color);
  display: inline-block;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  margin-right: 10px;
  border-radius: 50%;
  margin-left: -1px;
}

.header-area .main-nav .nav .nav-links:last-child:hover a {
  background-color: #1e1e1e;
}

.header-area .main-nav .nav li:last-child:hover a i {
  color: #fff;
}

.header-area .main-nav .nav .nav-links:hover a {
  color: var(--primary-color);
}

.header-area .main-nav .nav .nav-links a.active {
  color: #fff;
}


.background-header .main-nav .nav .nav-links a.active {
  color: var(--primary-color);
}

.header-area .main-nav .menu-trigger {
  cursor: pointer;
  position: absolute;
  top: 25px;
  width: 32px;
  height: 40px;
  text-indent: -9999em;
  z-index: 99;
  right: 20px;
  display: none;
}

/* Dropdown container */
.specialities-dropdown {
  position: relative;
  /* Ensure positioning is relative to parent */
}

.specialities-dropdown .dropdown-toggle {
  cursor: pointer;
}

.specialities-dropdown .dropdown-menu {
  display: none;
  /* Hide by default */
  position: absolute;
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 0px 0px 5px 5px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  padding: 0;
  /* Remove padding around the dropdown */
  margin: 0;
  /* Remove margin around the dropdown */
  min-width: 275px;
  z-index: 999;
  top: 60%;
  /* Position below the parent menu item */
  left: 0;
  /* Align with the parent menu item */
}

.specialities-dropdown .dropdown-menu li {
  list-style: none;
  margin: 0;
  /* Remove margin between list items */
  padding: 0;
  /* Remove padding from list items */
}

.specialities-dropdown .dropdown-menu li a {
  display: block;
  color: #333;
  text-decoration: none;
  padding: 10px 20px;
  font-size: 14px;
}

.specialities-dropdown .dropdown-menu li a:hover {
  background-color: #f4f4f4;
  color: #007bff;
}

.mobile-view-logo {
  display: none;
}

/* Show dropdown on hover */
.specialities-dropdown:hover .dropdown-menu {
  display: block;
}

.specialities-dropdown .dropdown-menu {
  max-height: 350px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 10px 0;
  border: 1px solid #ddd;
  background-color: #fff;
  /* Ensure background color matches your theme */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.specialities-dropdown .dropdown-menu::-webkit-scrollbar {
  width: 8px;
}

.specialities-dropdown .dropdown-menu::-webkit-scrollbar-thumb {
  background-color: #007bff;
  border-radius: 4px;
}

.specialities-dropdown .dropdown-menu::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}


.background-header .main-nav .menu-trigger {
  top: 22px;
}

.background-header .main-nav ul.nav {
  margin-top: 20px;
}

.header-area .main-nav .menu-trigger span,
.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #1e1e1e;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #1e1e1e;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
  width: 75%;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  content: "";
}

.header-area .main-nav .menu-trigger span {
  top: 16px;
}

.header-area .main-nav .menu-trigger span:before {
  -moz-transform-origin: 33% 100%;
  -ms-transform-origin: 33% 100%;
  -webkit-transform-origin: 33% 100%;
  transform-origin: 33% 100%;
  top: -10px;
  z-index: 10;
}

.header-area .main-nav .menu-trigger span:after {
  -moz-transform-origin: 33% 0;
  -ms-transform-origin: 33% 0;
  -webkit-transform-origin: 33% 0;
  transform-origin: 33% 0;
  top: 10px;
}

.header-area .main-nav .menu-trigger.active span,
.header-area .main-nav .menu-trigger.active span:before,
.header-area .main-nav .menu-trigger.active span:after {
  background-color: transparent;
  width: 100%;
}

.header-area .main-nav .menu-trigger.active span:before {
  -moz-transform: translateY(6px) translateX(1px) rotate(45deg);
  -ms-transform: translateY(6px) translateX(1px) rotate(45deg);
  -webkit-transform: translateY(6px) translateX(1px) rotate(45deg);
  transform: translateY(6px) translateX(1px) rotate(45deg);
  background-color: #1e1e1e;
}

.background-header .main-nav .menu-trigger.active span:before {
  background-color: #1e1e1e;
}

.header-area .main-nav .menu-trigger.active span:after {
  -moz-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -ms-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -webkit-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  transform: translateY(-6px) translateX(1px) rotate(-45deg);
  background-color: #1e1e1e;
}

.background-header .main-nav .menu-trigger.active span:after {
  background-color: #1e1e1e;
}

.visible {
  display: inline !important;
}

@media (max-width: 1200px) {
  .header-area .main-nav .nav li {
    padding-left: 5px;
    padding-right: 5px;
  }

}

@media (max-width: 767px) {
  .background-header .main-nav {
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
    border-radius: 0px 0px 25px 25px;
    width: 100%;
  }

  .background-header .main-nav .nav,
  .header-area .main-nav .nav {
    background-color: #fff;
  }

  .background-header .main-nav .nav li a,
  .header-area .main-nav .nav li a {
    line-height: 50px;
    height: 50px;
    font-weight: 400;
    color: #1e1e1e;
    background-color: #fff;
    border-radius: 0px 0px 25px 25px;
  }

  .background-header .main-nav .nav li,
  .header-area .main-nav .nav li {
    border-top: 1px solid #ddd;
    background-color: #f1f0fe;
    height: 50px;
    border-radius: 0px 0px 25px 25px;
  }

  .header-area .main-nav .nav {
    height: auto;
    flex-basis: 100%;
  }

  .header-area .main-nav .logo {
    position: absolute;
    left: 30px;
    top: 0px;
  }

  .background-header .main-nav .logo {
    top: 0px;
  }

  .background-header .main-nav .border-button {
    top: 0px !important;
  }

  .header-area .main-nav .border-button {
    position: absolute;
    top: 15px;
    right: 70px;
  }

  .header-area.header-sticky .nav li a:hover,
  .header-area.header-sticky .nav li a.active {
    color: #ee626b !important;
    opacity: 1;
  }

  .header-area.header-sticky .nav li.search-icon a {
    width: 100%;
  }

  .header-area .nav li:last-child a {
    background-color: transparent !important;
    font-weight: 300 !important;
    text-transform: capitalize !important;
  }

  /* .header-area {
    padding: 0px 15px;
    height: 80px;
    box-shadow: none;
    text-align: center;
  } */
  .header-area .container {
    padding: 0px;
  }

  .header-area .logo {
    margin-left: 0px;
  }

  .header-area .menu-trigger {
    display: inline-block !important;
  }

  .mobile-view-logo {
    display: inline-block;
  }

  .header-area .main-nav {
    box-shadow: none;
    overflow: hidden;
  }

  .header-area .main-nav .nav {
    float: none;
    width: 100%;
    display: none;
    -webkit-transition: all 0s ease 0s;
    -moz-transition: all 0s ease 0s;
    -o-transition: all 0s ease 0s;
    transition: all 0s ease 0s;
    margin-left: 0px;
  }

  .header-area .main-nav .nav li:first-child {
    border-top: 1px solid #eee;
  }

  .header-area.header-sticky .nav {
    margin-top: 80px !important;
  }

  .background-header.header-sticky .nav {
    margin-top: 80px !important;
  }

  .header-area .main-nav .nav li {
    width: 100%;
    background: #fff;
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

}

/* 
---------------------------------------------
Banner Style
--------------------------------------------- 
*/

.main-banner .item {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 220px 20% 320px 15%;
  margin-top: 0px;
}

.main-banner .item-1,
.main-banner .item-2,
.main-banner .item-3 {
  position: relative;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.main-banner .item-1::before,
.main-banner .item-2::before,
.main-banner .item-3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(14, 14, 14, 0.5);
  /* Adjust opacity as needed */
}

.main-banner .header-text {
  position: relative;
  z-index: 2;
}

.main-banner .item-1 {
  background-image: url(../images/doctors-team.jpg);
}

.main-banner .item-2 {
  background-image: url(../images/doctors-team.jpg);
}

/* background-image: url(../images/blur-hospital-1.jpg); */

.main-banner .item-3 {
  background-image: url(../images/doctors-team.jpg);
}

.main-banner .item span.category {
  background-color: #fff;
  color: #1e1e1e;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  padding: 6px 15px;
  display: inline-block;
  margin-bottom: 30px;
}

blue {
  /* color: #ffffff; */
  color: #f2f2f2;
  text-shadow: 2px 2px 10px #0097c1(0, 0, 0, 0.3);
}

.fs-sm {
  font-size: 25px;
}

.main-banner .item span.category em {
  font-style: normal;
  color: var(--primary-color);
}

.main-banner .item h2 {
  font-size: 62px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  line-height: 72px;
  /* width: 50%; */
  margin-bottom: 10px;
}

.main-banner .owl-dots {
  position: absolute;
  bottom: 60px;
  left: 20%;
}

.main-banner .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 50%;
  margin-right: 10px;
  transition: all .5s;
}

.main-banner .owl-dots .active {
  background-color: var(--primary-color);
}

.main-banner .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50px);
}

.main-banner .owl-nav .owl-prev i,
.main-banner .owl-nav .owl-next i {
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 24px;
  display: inline-block;
  color: var(--primary-color);
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  opacity: 1;
  transition: all .3s;
}

.main-banner .owl-nav .owl-prev i {
  position: absolute;
  left: 45px;
}

.main-banner .owl-nav .owl-next i {
  position: absolute;
  right: 45px;
}

.main-banner .owl-nav .owl-prev i:hover,
.main-banner .owl-nav .owl-next i:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.5);
}

/* 
---------------------------------------------
doctors Style
--------------------------------------------- 
*/

.doctors {
  padding-top: 10px;
}

.doctors .item {
  background-color: #fafafa;
  border-radius: 10px;
  padding: 0px;
  margin-bottom: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all .5s ease-in-out;
  cursor: pointer;
}



/* .doctors:hover .item:not(:hover) {
  opacity: 0.5;
} */

.doctors .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-image {
  width: 100%;
  /* Make the card container responsive */
  height: 200px;
  /* Set the fixed height for the container (adjust as needed) */
  overflow: hidden;
  /* Hide any overflow */
  position: relative;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ensures the image covers the container while maintaining aspect ratio */
  object-position: top;
  /* Centers the image */
}


.doctors .item span.category,
.News-events .item span.category {
  background-color: #fbd9cf;
  font-weight: 500;
  border-radius: 5px;
  font-size: 14px;
  color: #1e1e1e;
  padding: 5px 12px;
  display: inline-block;
  margin-top: 25px;
}

.doctors .item h4,
.News-events .item h4 {
  font-size: 19px;
  margin: 15px 0px;
}

.doctors .item h4 a,
.News-events .item h4 a {
  color: #1e1e1e;
}

.doctors .item ul li,
.News-events .item ul li {
  display: inline-block;
  font-size: 15px;
  color: #4a4a4a;
  margin-right: 20px;
}

.doctors .item ul li span,
.News-events .item ul li span {
  font-weight: 600;
  color: #1e1e1e;
}

.doctors .item ul,
.News-events .item ul {
  border-bottom: 1px solid #eaeaea;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.doctors .item h6 {
  font-size: 20px;
  color: var(--primary-color);
  margin-top: 6px;
  display: inline-block;
  float: right;
  margin-top: 12px;
}

.doctors .item .main-button {
  text-align: center;
}

.doctors .item .card-details,
.News-events .item .card-details {
  padding: 5px 0px 30px 30px;
}

.news-events-card {
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  transition: box-shadow 0.3s ease-in-out;
  cursor: pointer;
  margin-bottom: 20px;
}

.news-events-card:hover {
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
}

.News-events .item .card-details {
  padding-top: 25px;
}

.News-events .item .card-details li {
  font-size: 16px;
  text-align: justify;
  text-indent: 20px;
}

.doctors .item:first-child {
  /* padding: 0px 30px 30px 30px; */
  height: 370px;
}

.lactation .card-image img{
  object-position: center;
}

/* 
---------------------------------------------
Contact Style
--------------------------------------------- 
*/

.contact {
  background-image: url(../images/blur-hospital-1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 100px 0px 250px 0px;
  position: relative;
}

.contact .section-heading h2 {
  color: #fff;
}

.contact-content {
  margin-top: -240px;
  position: relative;
  z-index: 1;
}

.contact-content #map {
  border-radius: 10px;
  margin-bottom: 60px;
}

.contact-content .item {
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  padding: 25px 30px;
  background-color: #fff;
}

.contact-content .phone {
  margin-right: 15px;
}

.contact-content .email {
  margin-left: 5px;
  padding-bottom: 50px;
}

.contact-content .item img {
  float: left;
  margin-right: 7px;
  vertical-align: middle;
}

.contact-content .item h6 {
  font-size: 20px;
  font-weight: 600;
  vertical-align: middle;
}


.contact-content .item h6 span {
  font-size: 15px;
  color: #aaaaaa;
  font-weight: 400;
}

.contact-content #contact-form {
  margin-left: 30px;
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  padding: 35px 30px;
  background-color: #fff;
}

.contact-content #contact-form label {
  font-size: 15px;
  color: #3a3a3a;
  margin-bottom: 15px;
}

.contact-content #contact-form input {
  width: 100%;
  height: 44px;
  border-radius: 22px;
  background-color: #f6f6f6;
  border: none;
  margin-bottom: 30px;
  font-size: 14px;
  padding: 0px 15px;
}

.contact-content #contact-form textarea {
  width: 100%;
  height: 150px;
  max-height: 180px;
  border-radius: 22px;
  background-color: #f6f6f6;
  border: none;
  margin-bottom: 40px;
  font-size: 14px;
  padding: 15px 15px;
}

.contact-content #contact-form button {
  background-color: #1e1e1e;
  height: 44px;
  border-radius: 22px;
  padding: 0px 20px;
  color: #fff;
  border: none;
  font-size: 15px;
  font-weight: 500;
  transition: all .5s;
}

.contact-content #contact-form button:hover {
  background-color: var(--primary-color);
}


/* 
---------------------------------------------
Footer Style
--------------------------------------------- 
*/

footer.footer-no-gap {
  margin-top: 0px;
}

footer {
  margin-top: 60px;
  background-color: #1e1e1e;
  min-height: 100px;
  padding: 50px;
}

footer h3{
  color: #fff;
}

.footer-contact { 
  padding: 15px;
  border-radius: 8px;
  max-width: 400px;
  margin: auto;
}

.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 16px;
}

.footer-contact i {
  margin-right: 10px;
  font-size: 18px;
  color: #007bff;  
}

.footer-contact a {
  text-decoration: none;
  color: #ecf4ff;
  font-weight: 500;
  transition: color 0.3s ease-in-out;
}

.footer-contact a:hover {
  color: #007bff;  
}

footer .footer-about p{
  text-align: justify;
  margin-left: 20px;
  margin-top: 10px;
}

.footer-social-links {
  list-style: none;
  display: flex; 
  align-items: center;
  gap: 15px;  
  padding: 0;
  margin: 0;
}

.footer-social-links li {
  display: inline-block;
}

.footer-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: #ffffff;  
  color: white;
  border-radius: 50%;  
  text-decoration: none; 
  font-size: 18px;
  transition: background-color 0.3s, transform 0.2s;
}

.footer-social-links a:hover {
  background-color: #010101;  
  transform: translateY(-3px);  
}

.footer-social-links a i {
  line-height: 35px;
  margin-left: 10px; 
}
 
.link-footer{
  /* padding-left: 40px; */
  align-items: center;
}

.footer-nav-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display:flex;
  align-items:center;
  flex-direction: column;
  justify-content: center;  
  gap: 5px;  
  margin-top: 10px;
  margin-left: 20px;
}

.link-footer .footer-header{
  text-align: center;
}

.footer-nav-links li {
  display: inline-block;
}

.footer-nav-links a {
  text-decoration: none;
  color: #e3f7fd;  
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease-in-out;
}

.footer-nav-links a:hover {
  color: #007bff;  
  text-decoration: underline;
}


footer p {
  text-align: center;
  /* line-height: 100px; */
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}

footer p a {
  color: #fff;
  transition: all .3s;
  position: relative;
  z-index: 3;
}

footer p a:hover {
  opacity: 0.75;
}


/* 
---------------------------------------------
Page Header Style
--------------------------------------------- 
*/

.page-heading {
  background-image: url(../images/blur-hospital-3.jpg);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 110px 0px;
  height: 250px;
  text-align: center;
}

.page-heading span {
  background-color: #fff;
  color: #1e1e1e;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 10px 25px;
  display: inline-block;
  margin-bottom: 30px;
}

.page-heading span a {
  color: #1e1e1e;
}

.page-heading h3 {
  font-size: 48px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
}


/* 
---------------------------------------------
doctors Style
--------------------------------------------- 
*/

.doctors ul.doctors-filter {
  list-style: none;
  text-align: center;
  margin-bottom: 70px;
}

.doctors ul.doctors-filter li {
  display: inline-block;
  margin: 5px 8px;
}

.doctors ul.doctors-filter li a {
  display: inline-block;
  text-align: center;
  font-size: 15px;
  text-transform: capitalize;
  font-weight: 500;
  color: #fff;
  background-color: #1e1e1e;
  padding: 12px 25px;
  border-radius: 5px;
  transition: all .3s;
}

.doctors ul.doctors-filter li a.is_active {
  background-color: var(--primary-color);
  color: #fff;
}

.doctors ul.doctors-filter li a.is_active:hover {
  color: #fff;
}

.doctors ul.doctors-filter li a:hover {
  color: var(--primary-color);
}

.doctors ul.pagination {
  margin-top: 50px;
  text-align: center;
  width: 100%;
  display: inline-block;
}

.doctors ul.pagination li {
  display: inline-block;
  margin: 0px 5px;
}

.doctors ul.pagination li a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #1e1e1e;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 50%;
  transition: all .3s;
}

.doctors ul.pagination li a:hover,
.doctors ul.pagination li a.is_active {
  background-color: var(--primary-color);
  color: #fff;
}


/* 
---------------------------------------------
Contact Page Style
--------------------------------------------- 
*/

.contact-page #map {
  margin-top: 100px;
}

.contact-page .section-heading {
  margin-bottom: 40px;
  margin-right: 280px;
}

.contact-page p {
  margin-bottom: 50px;
}

.contact-page .item {
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  padding: 35px 30px;
  background-color: #fff;
  /* display: inline-block; */
  min-width: 360px;
}

.contact-page .phone {
  margin-bottom: 30px;
}

.contact-page .item img {
  float: left;
  margin-right: 25px;
  vertical-align: middle;
}

.contact-page .item h6 {
  font-size: 20px;
  font-weight: 600;
  vertical-align: middle;
}

.contact-page .item h6 span {
  font-size: 15px;
  color: #aaaaaa;
  font-weight: 400;
}

.contact-page #contact-form {
  margin-left: 30px;
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  padding: 35px 30px;
  background-color: #fff;
}

.contact-page #contact-form label {
  font-size: 15px;
  color: #3a3a3a;
  margin-bottom: 15px;
}

.contact-page #contact-form input {
  width: 100%;
  height: 44px;
  border-radius: 22px;
  background-color: #f6f6f6;
  border: none;
  margin-bottom: 30px;
  font-size: 14px;
  padding: 0px 15px;
}

.contact-page #contact-form textarea {
  width: 100%;
  height: 150px;
  max-height: 180px;
  border-radius: 22px;
  background-color: #f6f6f6;
  border: none;
  margin-bottom: 40px;
  font-size: 14px;
  padding: 15px 15px;
}

.contact-page #contact-form button {
  background-color: #1e1e1e;
  height: 44px;
  border-radius: 22px;
  padding: 0px 20px;
  color: #fff;
  border: none;
  font-size: 15px;
  font-weight: 500;
  transition: all .5s;
}

.contact-page #contact-form button:hover {
  background-color: var(--primary-color);
}


/* 
---------------------------------------------
Responsive Style
--------------------------------------------- 
*/

body {
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .carousel-btn {
    transform: rotate(-90deg) scale(0.8);
    margin-top: 100px;
  }
}

@media (max-width: 480px) {
  .carousel-btn {
    transform: rotate(-90deg) scale(0.7);
    margin-bottom: 180px;
  }
}

@media (max-width: 767px) {
  .header-area .main-nav .logo h1 {
    line-height: 80px !important;
    height: 100px;
  }

  .best-deal .tabs-content .nav-link {
    font-size: 14px;
    padding: 0px 15px;
    height: 44px;
    line-height: 44px;
  }

  .best-deal .tabs-content ul.nav-tabs li {
    margin: 0px 5px;
  }

  .doctors ul.doctors-filter li a {
    font-size: 14px;
    padding: 10px 15px;
  }

  .doctors ul.doctors-filter li {
    margin: 5px;
  }

  .header-area .main-nav .nav li:last-child {
    display: none;
  }
}

@media (max-width: 992px) {
  .sub-header {
    display: none;
  }

  .sub-header-2 .logo-container .logo-certificate,
  .sub-header-2 .logo-container .logo-img {
    display: none;
  }

  .sub-header-2 .logo-container .logo-title {
    margin: auto;
    padding: 20px 0px 20px 0px;
  }

  .header-area .main-nav .logo h1 {
    line-height: 100px;
  }

  .background-header .main-nav .logo h1 {
    line-height: 80px;
  }

  .header-area .main-nav .nav li a {
    padding-left: 3px;
    padding-right: 3px;
  }

  .header-area .main-nav .nav li:last-child a {
    padding-right: 15px;
  }

  .main-banner .item h2 {
    width: 100%;
  }

  .featured .section-heading {
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 100px;
  }

  .featured .accordion {
    margin-left: 0px;
    margin-right: 0px;
  }

  .featured .info-table {
    margin-top: 45px;
  }

  .fun-facts .counter {
    margin-bottom: 45px;
  }

  .best-deal .section-heading {
    text-align: center;
  }

  .best-deal .tabs-content ul.nav-tabs {
    margin-top: 0px;
    justify-content: center;
  }

  .best-deal .info-table {
    margin-bottom: 45px;
  }

  .best-deal .tab-content img {
    padding: 0px;
  }

  .best-deal .tabs-content h4 {
    margin-top: 45px;
  }

  .doctors .item h6 {
    text-align: center;
    margin-bottom: 15px;
  }

  .doctors .item .main-button {
    text-align: center;
  }

  .doctors .item ul li {
    margin-right: 10px;
    font-size: 13px;
  }

  .contact-content .phone {
    margin-right: 0px;
    margin-bottom: 20px;
  }

  .contact-content .email {
    margin-left: 0px;
    margin-bottom: 45px;
  }

  .contact-content #contact-form {
    margin-left: 0px;
  }

  .single-property .info-table {
    margin-left: 0px;
    margin-top: 45px;
  }

  .contact-page .section-heading {
    margin-right: 0px !important;
  }

  .contact-page #contact-form {
    margin-left: 0px;
    margin-top: 60px;
  }

  .best-deal .info-table ul li span {
    float: right !important;
    width: auto !important;
  }
}

@media (max-width: 1200px) {
  .best-deal .info-table ul li span {
    float: none;
    width: 100%;
  }

  .contact-page .section-heading {
    margin-right: 100px;
  }
}

@media (max-width: 767px) {
  .header-area {
    height: 100px;
  }
}

@media (min-width: 768px) and (max-width: 1200px) {
  .header-area {
    height: 200px;
  }
}

@media (min-width: 1201px) {
  .header-area {
    height: 100px;
  }

  .header-area .main-nav {
    gap: 10px;
  }
}

/* Page Heading Section */
.page-heading {
  background-color: #003366;
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.page-heading .breadcrumb {
  font-size: 14px;
  color: #414141;
}

.page-heading .breadcrumb a {
  color: #ff6600;
  text-decoration: none;
}

.page-heading .breadcrumb a:hover {
  text-decoration: underline;
}

.page-heading h3 {
  font-size: 36px;
  font-weight: bold;
  margin-top: 20px;
}

/* Careers Page Section */
.careers-page {
  padding: 20px 0;
  background-color: #ffffff;
}

.careers-page .section-heading {
  text-align: left;
  margin-bottom: 10px;
}

.careers-page .section-heading h6 {
  font-size: 18px;
  color: #ff6600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.careers-page .section-heading h2 {
  font-size: 32px;
  font-weight: bold;
  color: #003366;
}

.careers-page p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  text-align: justify;
  margin-bottom: 20px;
}

/* Career Benefits Section */
.career-benefits {
  list-style-type: none;
  padding-left: 0;
}

.career-benefits li {
  font-size: 16px;
  color: #555;
  margin-bottom: 10px;
}

.career-benefits li strong {
  color: #003366;
}

/* Job Openings Section */
/* General Styles */
.job-openings {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* Two columns on larger screens */
  gap: 20px;
  padding: 0;
  margin: 0;
}

.job-openings li {
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  border-radius: 5px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-openings li:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.job-openings a {
  display: block;
  text-decoration: none;
  color: #333;
}

.job-openings i {
  font-size: 40px;
  color: #ff6600;
  margin-bottom: 10px;
  display: block;
}

.job-openings span {
  display: block;
  font-size: 16px;
  font-weight: bold;
  color: #003366;
  margin-top: 10px;
}

/* Apply Now Section */
.apply-now {
  background-color: #ffffff;
  padding: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-top: 40px;
  text-align: center;
}

.apply-now h4 {
  font-size: 24px;
  font-weight: bold;
  color: #003366;
}

.apply-now p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

.apply-now .btn-apply {
  background-color: #ff6600;
  color: #fff;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.apply-now .btn-apply:hover {
  background-color: #e65c00;
}

/* Job Listings Section */
.job-listing {
  margin-top: 60px;
}

.job-item {
  background-color: #fff;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
}

.job-item h5 {
  font-size: 20px;
  color: #003366;
  font-weight: bold;
}

.job-item p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* How to Apply Section */
.how-to-apply {
  margin-top: 60px;
}

.how-to-apply ul {
  list-style-type: none;
  padding-left: 0;
}

.how-to-apply ul li {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 10px;
}

.how-to-apply ul li a {
  color: #ff6600;
  text-decoration: none;
}

.how-to-apply ul li a:hover {
  color: #003366;
  text-decoration: underline;
}

/* Media Queries for Responsiveness */
@media (max-width: 1199px) {
  .page-heading h3 {
    font-size: 28px;
  }

  .careers-page .section-heading h2 {
    font-size: 28px;
  }

  .apply-now .btn-apply {
    padding: 10px 20px;
    font-size: 14px;
  }
}

@media (max-width: 992px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .careers-page .career-benefits li,
  .careers-page .job-openings li {
    font-size: 14px;
  }

  .careers-page .section-heading h2 {
    font-size: 24px;
  }

  .job-item {
    padding: 15px;
  }

  .apply-now .btn-apply {
    padding: 10px 20px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .page-heading {
    padding: 40px 0;
  }

  .careers-page .section-heading h2 {
    font-size: 22px;
  }

  .careers-page p {
    font-size: 15px;
  }

  .apply-now {
    padding: 20px;
  }

  .apply-now .btn-apply {
    font-size: 13px;
    padding: 8px 16px;
  }

  .job-openings {
    grid-template-columns: repeat(1, 1fr);
    /* 1 column on smaller screens */
  }

  .job-openings i {
    font-size: 30px;
    /* Slightly smaller icon size on mobile */
  }

  .job-openings span {
    font-size: 14px;
    /* Smaller text on mobile */
  }

  .job-item {
    padding: 12px;
  }
}

@media (max-width: 576px) {
  .page-heading h3 {
    font-size: 24px;
  }

  .careers-page .section-heading h2 {
    font-size: 20px;
  }

  .careers-page p {
    font-size: 14px;
  }

  .apply-now {
    padding: 15px;
  }

  .apply-now .btn-apply {
    font-size: 12px;
    padding: 8px 16px;
  }

  .job-item {
    padding: 10px;
  }
}


.appointment-newsletter {
  background-color: #f9f9f9;
  padding: 40px 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin: 10px auto;
}

.appointment-newsletter .content h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #1e1e1e;
}

.appointment-newsletter .content p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

.appointment-newsletter .btn-appointment {
  display: inline-block;
  padding: 12px 25px;
  background-color: var(--primary-color);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  border-radius: 25px;
  transition: background-color 0.3s;
}

.appointment-newsletter .btn-appointment:hover {
  background-color: #333;
}

@media (max-width: 768px) {
  .appointment-newsletter .content h3 {
    font-size: 20px;
  }

  .appointment-newsletter .content p {
    font-size: 14px;
  }

  .appointment-newsletter .btn-appointment {
    font-size: 14px;
    padding: 10px 20px;
  }
}


/* Services Section Styling */
.services-section {
  background: linear-gradient(to right, #f8f9fa, #e9ecef);
  padding: 80px 20px;
  text-align: center;
}

.services-section .section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.services-section .section-description {
  font-size: 18px;
  margin-bottom: 50px;
  color: #555;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background: linear-gradient(135deg, #ffffff, #f7f7f7);
  border-radius: 15px;
  padding: 25px 20px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #007bff, #00d4ff);
  opacity: 0;
  z-index: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover:before {
  opacity: 0.1;
}

.service-card i {
  font-size: 50px;
  color: #007bff;
  margin-bottom: 20px;
  z-index: 1;
  position: relative;
}

.service-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  z-index: 1;
  position: relative;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.service-card:hover i {
  color: #0056b3;
}

.service-card:hover h4 {
  color: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }

  .service-card {
    padding: 30px 15px;
  }

  .service-card i {
    font-size: 40px;
  }

  .service-card h4 {
    font-size: 18px;
  }
}

.about-heading {
  position: relative;
  background-image: url(../images/about-us-background.jpg);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 110px 0px;
  text-align: center;
}

.about-heading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.about-heading span {
  background-color: #fff;
  color: #1e1e1e;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 10px 25px;
  display: inline-block;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.about-heading h3 {
  font-size: 48px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  z-index: 2;
}


.about-heading span {
  background-color: #fff;
  color: #1e1e1e;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 10px 25px;
  display: inline-block;
  margin-bottom: 30px;
}

.about-heading span a {
  color: #1e1e1e;
}

.about-page .founder-section {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}

.about-page .founder-image {
  margin-right: 30px;
}

.about-page .founder-image img {
  max-width: 250px;
  object-fit: cover;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

.about-page .founder-details {
  /* text-align: left; */
  width: 100%;
}

.about-page .founder-details h6 {
  font-size: 18px;
  color: #f58a42;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.about-page .founder-details h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #333;
}

.about-page .founder-details p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 950px;
  text-align: justify;
}

.about-page .mission-section .section-heading {
  margin-bottom: 30px;
}

.about-page .mission-section .section-heading h6 {
  font-size: 18px;
  color: #f58a42;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.about-page .mission-section h2 {
  font-size: 30px;
  font-weight: 700;
  margin: 20px 0px;
  color: #333;
}

.about-page .mission-section p {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
  text-align: justify;
}

.mission-section ul li span {
  color: #003366;
  font-weight: 600;
}

.mission-section li{
  margin-bottom: 9px;
}

.mission-section p:nth-child(odd) {
  text-indent: 80px;
  /* Adjust the space for the first line */
}

.about-doctor p:nth-child(odd) {
  text-indent: 60px;
  /* Adjust the space for the first line */
}

.about-doctor h2{
  text-transform: uppercase;
}

.about-doctor .doctor-tagline{
  font-size: 15px;
}


@media (max-width: 768px) {
  .about-page .founder-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .header-area .main-nav {}

  .about-page .founder-image img {
    max-width: 180px;
  }

  .about-page .founder-details h2 {
    font-size: 24px;
  }

  .about-page .founder-details p {
    font-size: 14px;
    text-align: justify;
  }

  .about-page .mission-section h2 {
    font-size: 24px;
  }

  .about-page .mission-section p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .about-heading h3 {
    font-size: 36px;
  }

  .about-page .founder-image img {
    max-width: 150px;
  }

  .about-page .founder-details h2 {
    font-size: 22px;
  }

  .about-page .founder-details p {
    font-size: 13px;
  }

  .about-page .mission-section h2 {
    font-size: 22px;
  }

  .about-page .mission-section p {
    font-size: 13px;
  }
  .footer-row{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}


.know-more-button {
  display: inline-block;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  height: 40px;
  line-height: 40px;
  padding: 0px 20px;
  border-radius: 7px;
  border: 2px solid var(--primary-color);
  outline: none;
  transition: all 0.3s ease;
}


.know-more-button:hover {
  background-color: var(--primary-color);
  color: #fff;
}


/* Mobile view styles */
@media screen and (max-width: 767px) {
  .mobile-view {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    /* background-color: #fff; */
    /* display: none;   */
  }

  /* Logo section */
  .info {
    display: flex;
    list-style: none;
    padding: 0;
    margin-top: 25px;
  }

  .info li {
    margin-right: 15px;
    display: flex;
    align-items: center;
  }

  .info li i {
    font-size: 20px;
    margin-right: 5px;
  }

  .info li a {
    font-size: 14px;
    color: #333;
  }

  /* Logo image */
  .logo-img {
    display: flex;
    justify-content: center;
  }

  .logo-img .logo {
    width: 125px;
    height: auto;
  }

  .main-banner .item h2 {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    line-height: 52px;
  }

  .main-banner .item h2:first-child {
    font-size: 26px;
  }

  .header-area .main-nav .nav .nav-links {
    height: 45px;
    text-align: center;
    width: auto;
  }
  .footer-row{
    display: flex;
    align-items: center;
    flex-direction: column;
  }
}


/* Scroll to Top Button */
#scrollToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #4da6e7;
  color: white;
  border: none;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
}

#scrollToTop i {
  color: #fff;
}

#scrollToTop.show {
  opacity: 1;
  visibility: visible;
}

#scrollToTop:hover {
  transform: scale(1.1);
  background-color: #3593d6;
}

/* .doctor-info{
  max-height: 400px;
} */

.doctor-info li {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow-y: scroll;
  overflow-x: hidden;
  max-height: 6em;
  text-overflow: ellipsis;
  word-wrap: break-word;
  padding-right: 5px;
}


.doctor-info li::-webkit-scrollbar {
  width: 4px;
}

.doctor-info li::-webkit-scrollbar-thumb {
  background-color: #0056b3;
  border-radius: 5px;
}

.doctor-info li::-webkit-scrollbar-track {
  background-color: transparent;
}


/* Scroll to Top Button */
#scrollToTop,
#whatsappBtn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  transform: translateY(10px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

#scrollToTop.show,
#whatsappBtn.show {
  opacity: 1;
  transform: translateY(0);
}

/* WhatsApp Button */
#whatsappBtn {
  background-color: #25D366;
  bottom: 80px;
}

#whatsappBtn i{
  font-size: 28px;
}

#whatsappBtn:hover::after {
  content: "Chat With Us";
  position: absolute;
  right: 60px;
  background: #25D366;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  white-space: nowrap;
  font-size: 14px;
}

@media (max-width: 768px) {
  .footer-row {
    flex-direction: column;
    text-align: center; 
  }

  .footer-header{
    margin-top: 30px;
  }
  
  .footer-contact ul,
  .footer-nav-links ul,
  .footer-social-links {
    padding: 0;
    list-style: none;
  }

  .footer-social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .footer-social-links li a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #444;
    color: white;
    border-radius: 5px;
    font-size: 16px;
  }

  .footer-nav-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .footer-nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
  }

  .footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .footer-contact ul li i {
    color: #007bff;
  }

  .footer-about p {
    font-size: 14px;
    color: #ffffff;
  }
}