/********** Template CSS **********/
:root {
  --primary: #06A3DA;
  --secondary: #34AD54;
  --light: #EEF9FF;
  --dark: #091E3E;
}


/*** Spinner ***/
.spinner {
  width: 40px;
  height: 40px;
  background: var(--primary);
  margin: 100px auto;
  -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
  animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
  0% {
    -webkit-transform: perspective(120px)
  }

  50% {
    -webkit-transform: perspective(120px) rotateY(180deg)
  }

  100% {
    -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
  }
}

@keyframes sk-rotateplane {
  0% {
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
  }

  50% {
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
  }

  100% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}

#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;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
  font-weight: 800 !important;
}

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

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


/*** Button ***/
.btn {
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  transition: .5s;
}

.btn-primary,
.btn-secondary {
  color: #FFFFFF;
  box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
  box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
  box-shadow: inset 0 0 0 0 var(--secondary);
}

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

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

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

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


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
  font-family: 'Nunito', sans-serif;
  position: relative;
  margin-left: 25px;
  padding: 35px 0;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 600;
  outline: none;
  transition: .5s;
}

.navbar-nav {
  align-items: center;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
  padding: 20px 0;
  color: #ffffff;
}

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

.navbar-dark .navbar-brand h1 {
  color: #FFFFFF;
}


@media (max-width: 768px) {
  .navbar-responsive-header {
    padding-right: 2rem !important;
    padding-left: 1rem !important;
  }
}

.navbar-dark .navbar-toggler {
  color: var(--primary) !important;
  border-color: var(--primary) !important;
}

@media (max-width: 768px) {
  .navbar {
    background-color: #000 !important;
  }
}

@media (max-width: 991.98px) {
  .sticky-top.navbar-dark {
    position: relative;
    background: #FFFFFF;
  }

  .navbar-dark .navbar-nav .nav-link,
  .navbar-dark .navbar-nav .nav-link.show,
  .sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 10px 0;
    color: #ffffff;
  }

  .navbar-dark .navbar-brand h1 {
    color: var(--primary);
  }
}

@media (min-width: 992px) {
  .navbar-dark {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    border-bottom: 1px solid rgba(256, 256, 256, .1);
    z-index: 999;
  }

  .sticky-top.navbar-dark {
    position: fixed;
    background: #000000;
    height: 100px;
  }

  .navbar-dark .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    bottom: -1px;
    left: 50%;
    background: var(--primary);
    transition: .5s;
  }


  .navbar-dark .navbar-nav .nav-link:hover::before,
  .navbar-dark .navbar-nav .nav-link.active::before {
    width: 100%;
    left: 0;
  }

  .navbar-dark .navbar-nav .nav-link.nav-contact::before {
    display: none;
  }

  .sticky-top.navbar-dark .navbar-brand h1 {
    color: var(--primary);
  }
}


/*** Carousel ***/
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: rgba(9, 30, 62, .7); */
  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;
  }
}

.carousel-control-prev,
.carousel-control-next {
  width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
}


/*** Section Title ***/
.section-title::before {
  position: absolute;
  content: "";
  width: 150px;
  height: 5px;
  left: 0;
  bottom: 0;
  background: var(--primary);
  border-radius: 2px;
}

.section-title.text-center::before {
  left: 50%;
  margin-left: -75px;
}

.section-title.section-title-sm::before {
  width: 90px;
  height: 3px;
}

.section-title::after {
  position: absolute;
  content: "";
  width: 6px;
  height: 5px;
  bottom: 0px;
  background: #FFFFFF;
  -webkit-animation: section-title-run 5s infinite linear;
  animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
  width: 4px;
  height: 3px;
}

.section-title.text-center::after {
  -webkit-animation: section-title-run-center 5s infinite linear;
  animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
  -webkit-animation: section-title-run-sm 5s infinite linear;
  animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
  0% {
    left: 0;
  }

  50% {
    left: 145px;
  }

  100% {
    left: 0;
  }
}

@-webkit-keyframes section-title-run-center {
  0% {
    left: 50%;
    margin-left: -75px;
  }

  50% {
    left: 50%;
    margin-left: 45px;
  }

  100% {
    left: 50%;
    margin-left: -75px;
  }
}

@-webkit-keyframes section-title-run-sm {
  0% {
    left: 0;
  }

  50% {
    left: 85px;
  }

  100% {
    left: 0;
  }
}


/*** Service ***/
.service-item {
  position: relative;
  height: 320px;
  padding: 0 30px;
  transition: .5s;
}

.service-item .service-icon {
  margin-bottom: 30px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 2px;
  transform: rotate(-45deg);
}

.service-internal-icon {
  font-size: 30px;
}

.service-item .service-icon i {
  transform: rotate(45deg);
}

.service-item a.btn {
  position: absolute;
  width: 60px;
  bottom: -48px;
  left: 50%;
  margin-left: -30px;
  opacity: 0;
}

.service-item:hover a.btn {
  bottom: -24px;
  opacity: 1;
}


/*** Testimonial ***/

.testimonial-section {
  background-color: rgb(244, 244, 244) !important;
}

.testimonial-carousel .owl-dots {
  margin-top: 15px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  background: #DDDDDD;
  border-radius: 2px;
  transition: .5s;
}

.testimonial-carousel .owl-dot.active {
  width: 30px;
  background: var(--primary);
}

.testimonial-carousel .owl-item.center {
  position: relative;
  z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
  transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
  background: #FFFFFF !important;
  box-shadow: 0 0 30px #DDDDDD;
}


/*** Team ***/
.team-item {
  transition: .5s;
}

.team-social {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .5s;
}

.team-social a.btn {
  position: relative;
  margin: 0 3px;
  margin-top: 100px;
  opacity: 0;
}

.team-item:hover {
  box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
  background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
  opacity: 1;
  margin-top: 0;
  transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
  opacity: 1;
  margin-top: 0;
  transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
  opacity: 1;
  margin-top: 0;
  transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
  opacity: 1;
  margin-top: 0;
  transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img {
  transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
  transform: scale(1.15);
}

.gmail-topbar {
  margin-left: 15px;
}

/*** Miscellaneous ***/
@media (min-width: 991.98px) {
  .facts {
    position: relative;
    margin-top: -75px;
    z-index: 1;
  }
}

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

.bg-header {
  background: linear-gradient(rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.0)), url(../img/banner/breadcrumb.jpg) top center no-repeat;
  background-size: cover;
}

.link-animated a {
  transition: .5s;
}

.link-animated a:hover {
  padding-left: 10px;
}

@media (min-width: 767.98px) {
  .footer-about {
    margin-bottom: -75px;
  }
}

.header-logo {
  height: 85px;
  /* Logo ki height bada karne ke liye */
  width: auto;
  /* Width proportional rahe */
  display: block;
}

@media (max-width: 768px) {
  .header-logo {
    height: 50px !important;

  }
}

.counter-section {
  margin-top: 50px;
}

.counter-head {
  font-size: 50px;
  font-family: 'Cinzel', serif !important;
}

.counter-head-2 {
  font-size: 50px;
  color: #06a3da !important;
  font-family: 'Cinzel', serif !important;
}

.main-heading {
  font-family: 'Cinzel', serif !important;
  font-size: 45px !important;
}

.decode {
  font-size: 24px;
  font-weight: 600;
  color: #091E3E;

}

.intro-para {
  text-align: justify;
}

.welcome-section {
  /* background-image: url("../img/welcome-background.png"); */
  background-color: #ffffff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

}

.service-para {
  margin-top: 20px;
}


/* Advanced Diabetes section start */
.diabetes-care-section {

  background: url("../img/diabetes-background.webp") !important;
  background-size: cover !important;
  background-position: top !important;
  background-repeat: no-repeat !important;
  padding: 60px 20px;
  /* background-color: #ffffff; */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.diabetes-care-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.diabetes-image {
  flex: 1 1 45%;
  min-width: 300px;
}

.diabetes-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  /* box-shadow: 0 10px 25px rgba(0,0,0,0.1); */
  /* transition: transform 0.3s ease; */
  max-width: 450px;
  margin-top: 20px;
}

.diabetes-image img:hover {
  /* transform: scale(1.03); */
}

.diabetes-content {
  flex: 1 1 50%;
  min-width: 300px;
}

.diabetes-content h2 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 20px;
}

.diabetes-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #dedede;
  margin-bottom: 15px;
}

.diabetes-content h3 {
  font-size: 1.5rem;
  color: #ffffff;
  margin: 25px 0 15px;
  font-weight: 900 !important;
}

.conditions-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.conditions-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1 1 45%;
}

.conditions-grid ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 1rem;
  color: #e1e1e1;
}

.conditions-grid ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  /* circle ka size */
  height: 8px;
  /* circle ka size */
  border-radius: 50%;
  /* circle banane ke liye */
  background-color: #265ab2;
  /* circle ka color */
}

@media (max-width: 768px) {
  .diabetes-care-wrapper {
    flex-direction: column;
  }

  .diabetes-image,
  .diabetes-content {
    flex: 1 1 100%;
  }

  .conditions-grid {
    flex-direction: column;
  }

  .conditions-grid ul {
    flex: 1 1 100%;
  }
}

/* Advanced Diabetes section end */

/* Advanced Diabetes section card start */
.shb-feature-section {
  padding: 50px 20px;
  background-color: #ffffff;
}

.shb-feature-heading {
  text-align: center;
  margin-bottom: 40px;
  /* spacing between heading and cards */
}

.shb-feature-heading h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
}

.shb-feature-container {
  max-width: 1200px;
  margin: 0 auto;
}

.shb-feature-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* Card Styling */
.shb-feature-card {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 250px;

}

.shb-card-inner {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  padding: 40px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.5s ease;

  /* Gradient Border Trick */
  border: 2px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(to right, #00a3c0, #ffffff) border-box;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Front Side */
.shb-card-front .shb-icon {
  font-size: 40px;
  margin-bottom: 15px;
  color: #00b5d4;
  transition: all 0.5s ease;
}

.shb-card-front .shb-card-title {
  font-size: 17px;
  font-weight: 600;
  margin: 0;
  transition: all 0.5s ease;
}

/* Back Side */
.shb-card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  padding: 20px;
  /* Remove gradient */
  background: none;
  background-size: cover;
  background-position: bottom;
  color: #000000;
  /* change text color for contrast on image */
  opacity: 0;
  transition: all 0.5s ease;
  font-size: 17px;
  font-family: 'Inter', sans-serif;
}

/* Hover effect to show background image */
.shb-feature-card:hover .shb-card-back {
  opacity: 1;
  background-image: url('../img/plus-card.png');
  /* replace with your image URL */
}

/* Hover Effect */
.shb-card-inner:hover .shb-card-front {
  opacity: 0;
}

.shb-card-inner:hover .shb-card-back {
  opacity: 1;
}

/* Responsive */
@media screen and (max-width: 1024px) {
  .shb-feature-card {
    flex: 1 1 calc(50% - 20px);
  }
}

@media screen and (max-width: 768px) {
  .shb-feature-card {
    flex: 1 1 100%;
  }
}

/* Advanced Diabetes section card end */

/* Specialities section start */
.cosmic9-service-section {

  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  /* background-attachment: fixed; */
}

.main-heading-2 {
  color: #ffffff;
}

.cosmic9-right-cards {
  display: flex;
  flex-direction: column;
  align-items: flex-end !important;
}

/* Transparent Cards with Blur */
.cosmic9-card {
  background: rgba(255, 255, 255, 0.15);
  /* halki transparent */
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
  border-radius: 12px !important;

  /* Adjust top-bottom padding */
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  /* border-left: 1px solid rgb(21, 181, 255); */

}

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

/* Icon Background */
.cosmic9-card-icon-bg {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('');
  /* icon background */
  background-size: cover;
  background-position: center;
  border-radius: 50%;
}

/* Icon Image */
.icon-img {
  width: 55px;
  height: 55px;

}

/* Card Content */
.cosmic9-card-content h5 {
  /* margin-bottom: 0.5rem; */
  margin-top: 10px;
  color: #ffffff;
  font-weight: 500;

}

.cosmic9-card-content p {
  margin: 0;
  color: #f8f8f8;
  font-size: 0.95rem;
}

.right-content {
  justify-items: right;

}

.company-brand {
  color: #09bfff !important;
}

.company-brand:hover {
  color: yellow !important;
}

.footer-brand {
  border-radius: 10px;
  background-color: #022136 !important;
  border-radius: none !important;
}

/* Logo styling */
.footer-logo {
  height: 200px;
  max-width: 100%;
  object-fit: contain;
}

@media (max-width: 768px) {
  .footer-heading {
    margin-top: 20px;
  }

  .footer-heading-4 {
    margin-top: -40px;
  }
}

/* Divider line */
.footer-divider {
  width: 60%;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
}

.consult-clinic {
  color: #00c0ce;
}

/* Text styling */
.footer-info h6 {
  font-weight: 600;
}

.footer-info p {
  margin: 2px 0;
  font-size: 14px;
}

/* Top alignment fix already handled */
.footer-brand {
  justify-content: flex-start;
  padding-top: 25px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-logo {
    height: 150px;
  }

  .footer-divider {
    width: 80%;
  }
}

/* Specialities section end */


/* why choose section start */

.why-choose-section {
  background-image: url("../img/white-background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.center-icon {
  text-align: center;
  /* Text and icon center aligned */
}

.center-icon .icon-box {
  margin-left: auto;
  margin-right: auto;
  /* ensures icon is horizontally centered */

  /* border-radius: 50% !important; */
}

.why-icon {
  font-size: 30px;
}

.doctor-symbol-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.doctor-symbol-img {
  width: 310px;
  height: auto;
  object-fit: contain;
  animation: floatY 2.5s ease-in-out infinite;
}

/* Animation */
@keyframes floatY {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
    /* upar */
  }

  100% {
    transform: translateY(0px);
    /* niche wapas */
  }
}

/* why choose section end */

/* doctor section start */

.service-list-section {
  margin-top: 0px;
  margin-bottom: 0px;
  background-image: url("../img/doctor-background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.product-item {
  position: relative;
  background: #ffffff;
  padding: 8px 20px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.product-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 2px;
  /* border thickness */
  background: linear-gradient(90deg, #028c5f, #00f3ff);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {

  .product-item {
    /* padding: 25px 18px; */
    border-radius: 8px;
  }

  .product-item::before {
    border-radius: 8px;
    background: linear-gradient(90deg, #779dff, #00f3ff);
  }
}


.product-img {
  width: 100%;
  max-width: 340px;
  /* jitna chhota chahiye */
  border-radius: 14px;
  object-fit: cover;
}

.product-info h3 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .product-info h3 {
    margin-top: 20px;
  }
}

.product-info p {
  font-size: 15.5px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 18px;
}

.product-info ul {
  list-style: none;
  /* remove default bullets */
  padding: 0;
  margin: 0;
}

.product-info ul li {
  font-size: 15px;
  padding-left: 28px;
  /* extra space for bigger bullet */
  margin-bottom: 8px;
  position: relative;
  color: #000000;
}

.product-info ul li::before {
  content: "\2022";
  /* Unicode bullet • */
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #00718f;
  font-size: 35px;
  line-height: 1;
  margin-left: 6px;
}


/* Responsive */
@media (max-width: 991px) {
  .product-item {
    padding: 25px;
  }

  .product-info h3 {
    font-size: 22px;
  }
}

.what-different {
  font-weight: 600;
  font-size: 20px !important;
  color: #00718f !important;
}

.astrology-bg {
  display: block;
  width: 100%;
  background: linear-gradient(to right, #a1e7ff, #ffffff);
  padding: 12px 15px;
  border-radius: 5px;
}

.service-para {
  text-align: center;
  margin-bottom: 50px;
}

/* Doctor Name & Position */
.doctor-name {
  display: inline-block;
  text-align: left;
  /* ya center agar aap chahe */
}

.specialization {
  display: block;
  font-size: 0.9rem;
  /* chhota text */
  color: #555;
  /* subtle color */
}

.doctor-name h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 3px;
  color: #00718f;
}

.doctor-name p {
  font-size: 14px;
  font-weight: 400;
  color: #555;
  margin-bottom: 0;
}

.doctor-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  text-align: center;
  max-width: 250px;
  margin: 20px auto;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgb(202, 202, 202);
}

.doctor-card img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  display: block;
}

.doctor-info {
  padding: 15px 10px;
  background: #f9f9f9;
}

.doctor-info h5 {
  font-size: 18px;
  color: #00718f;
  margin-bottom: 5px;
  font-weight: 600;
}

.doctor-info p {
  font-size: 14px;
  color: #555;
  margin: 0;
}

/* Hover Effect */
/* .doctor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
} */

.special-focus {
  font-size: 20px;
  font-weight: 900;
  margin-left: 10px;
}

.para-down {
  margin-top: 20px;
}

/* doctor section end */

/* Counter Section */

.hr-counter-section {
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
    url("../img/counter-background.jpg");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  /* background-attachment: fixed; */
}

.hr-counter {
  position: relative;
  color: #fff;
  text-align: center;
  padding: 80px 0;
  background-color: rgba(0, 0, 0, 0.5);
  background-blend-mode: overlay;
}

.hr-counter .counter-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
}

.hr-counter .counter-card:hover {
  transform: translateY(-5px);
}

.hr-counter .counter-card i {
  color: #3dd2ff;
  margin-bottom: 10px;
  font-size: 35px;
}

.hr-counter .counter-card h2.counter {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}

.hr-counter .counter-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #f0f0f0;
}

/* Responsive */
@media(max-width: 991px) {
  .hr-counter .counter-card {
    margin-bottom: 30px;
  }

  .hr-counter .counter-card h2.counter {
    font-size: 28px;
  }
}

/* specialities section start */

/* Icon container */
.ecard-icon-circle-unique {
  perspective: 1000px;
  transition: 0.3s ease;
}

/* Icon image */
.ecard-icon-circle-unique img {
  width: 70%;
  height: 70%;
  object-fit: cover;
  transform-style: preserve-3d;
}

/* Hover effect (card) */
.ecard-unique:hover .ecard-icon-circle-unique {
  box-shadow: 0 0 15px rgba(51, 175, 214, 0.6);
  transform: scale(1.05);
}

/* Animation */
.ecard-unique:hover .ecard-icon-circle-unique img {
  animation: premiumFlip 0.8s ease-in-out;
}

/* Keyframes */
@keyframes premiumFlip {
  0% {
    transform: rotateY(0deg) scale(1);
  }

  40% {
    transform: rotateY(90deg) scale(1.1);
  }

  60% {
    transform: rotateY(-20deg) scale(1.1);
    /* slight bounce back */
  }

  100% {
    transform: rotateY(0deg) scale(1);
  }
}

.ecards-section-unique {
  padding: 60px 20px;
  background: #f5f8fb;
  font-family: 'Poppins', sans-serif;
}

.ecards-container-unique {
  max-width: 1200px;
  margin: 0 auto;
}

.ecards-row-unique {
  display: flex;
  justify-content: flex-start;
  /* important change */
  gap: 30px;
  flex-wrap: wrap;
}

/* Card */
.ecard-unique {
  background: #fff;
  width: calc(33.333% - 20px);
  /* fixed width instead of flex */
  padding: 22px 20px 20px 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #33afd6;
  margin-top: 50px;
}

/* Hover */
.ecard-unique:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.ecard-icon-circle-unique {
  width: 80px;
  height: 80px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  border: 2px solid #33afd6;
}

.ecard-icon-circle-unique img {
  width: 70%;
  height: 70%;
  object-fit: cover;
}

.ecard-unique h3 {
  margin-top: 50px;
  font-size: 20px;
  font-weight: 600;
  color: #111827;

}

.ecard-unique p {
  margin-top: 15px;
  font-size: 16px;
  color: #6b7280;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .ecard-unique {
    width: calc(50% - 15px);
    /* 2 cards */
  }
}

/* Mobile */
@media (max-width: 576px) {
  .ecard-unique {
    width: 100%;
    /* 1 card */
  }

  .ecard-icon-circle-unique {
    width: 70px;
    height: 70px;
    top: -35px;
  }

  .ecard-unique h3 {
    font-size: 20px;
  }

  .ecard-unique p {
    font-size: 15px;
  }
}

/* Image Box */
.ecard-image-box {
  width: calc(33.333% - 20px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}

/* Image Style */
.ecard-image-box img {
  width: 100%;
  max-width: 224px;
  border-radius: 16px;
  object-fit: cover;
  animation: zoomInOut 4s ease-in-out infinite;
  transform-origin: center center;
  transition: transform 0.3s ease;
}

/* Keyframes for smooth zoom in & out */
@keyframes zoomInOut {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
    /* zoom in */
  }
}

/* Hover effect for extra pop */
.ecard-image-box img:hover {
  transform: scale(1.15);
}

@media (max-width: 992px) {
  .ecard-image-box {
    width: calc(50% - 15px);
    /* tablet me 2 column */
  }
}

@media (max-width: 576px) {
  .ecard-image-box {
    width: 100%;
    /* mobile full width */
  }
}

/* specialities section end */



/* about page start */

.who-we-are-section {
  margin-top: -100px !important;
}

.doctor-name {
  font-weight: 900;
  color: #06A3DA;
  font-size: 18px;
}

.arrow-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #33afd6;
  color: #fff;
  margin-right: 10px;
  font-size: 14px;
  transition: all 0.3s ease;
  margin-top: -20px !important;
  position: relative;
  top: -13px;

}

/* Hover effect (optional premium) */
.arrow-circle:hover {
  background: #1e90b8;
  transform: scale(1.1);
}

/* who we are section start */
.endo-team-section {
  padding: 70px 20px;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  /* background-attachment: fixed; */
  font-family: 'Poppins', sans-serif;
  /* background-attachment: fixed; */
}

.endo-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

/* Heading */
.endo-heading h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
}

.endo-heading p {
  color: #6b7280;
  margin-bottom: 50px;
}

/* Row */
.endo-team-row {
  display: flex;
  justify-content: left;
  gap: 40px;
  flex-wrap: wrap;
}

/* Card */
.endo-team-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  width: 300px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

/* Hover */
.endo-team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Image Box (Rectangular) */
.endo-img-box {
  width: 100%;
  height: 315px;
  overflow: hidden;

}

.endo-img-box img {
  width: 100%;
  height: 125%;
  object-fit: cover;
  transition: 0.4s ease;


}

/* Image Hover Zoom */
.endo-team-card:hover .endo-img-box img {
  /* transform: scale(1.08); */

}

/* Content */
.endo-content {
  padding: 20px;
}

.endo-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 5px;
}

.endo-content span {
  font-size: 1rem;
  color: #33afd6;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
  .endo-team-card {
    width: 100%;
    max-width: 320px;
  }
}

/* who we are section end */


.rajat-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 2px solid !important;
  /* width of the border */
  border-image: linear-gradient(90deg, #009e54, #00eeff) 1 !important;
  /* gradient colors */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 3rem 5rem;
}

@media (max-width: 768px) {
  .rajat-card {
    padding: 2rem 1rem !important;
    /* left-right kam kar diya */
  }
}


.rajat-subheading {
  text-align: left !important;
  font-size: 25px !important;
}

.rajat-card:hover {
  /* transform: translateY(-8px); */
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.rajat-card-text {
  text-align: justify;
  color: #5c5c5c !important;
}

@media (max-width: 768px) {
  .rajat-card-text {
    text-align: center;
    color: #5c5c5c !important;
  }
}

.rajat-subheading-arrow {
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, #06a3da, #06a3da);
  color: #fff;
  padding: 10px 30px 10px 20px;
  font-weight: 600;
  border-radius: 4px 0 0 4px;
  margin-left: 0;
  /* ensure left alignment */
}

.new-icon {
  margin-top: -3px;
  font-size: 20px !important;
}

.rajat-specialties .col-12,
.rajat-specialties .col-md-6 {
  justify-content: flex-start;
  /* icon + text left aligned */
  text-align: left;
  /* text left aligned */
}

/* Right Arrow */
.rajat-subheading-arrow::after {
  content: "";
  position: absolute;
  top: 0;
  right: -25px;
  width: 0;
  height: 0;
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
  border-left: 25px solid #06a3da;
}

.rajat-subtitle {
  letter-spacing: 1px;
}

.rajat-main-title {
  font-size: 2.8rem;
  line-height: 1.2;
}

.rajat-card-title {
  font-size: 1.8rem;
}

.rajat-specialties i {
  min-width: 30px;
  text-align: center;
}

@media (max-width: 991px) {
  .rajat-main-title {
    font-size: 2.2rem;
  }

  .rajat-card-title {
    font-size: 1.5rem;
  }

  .rajat-specialties {
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .rajat-main-title {
    font-size: 1.8rem;
  }

  .rajat-card-title {
    font-size: 1.3rem;
  }
}

/* mission vision section start */

.mission-vision-section {
  background: #ffffff;
}

.mission-vision-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* icon top center + text center */
}

.mission-vision-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}



.mission-vision-icon i {
  font-size: 28px;
}

.mission-vision-text h5 {
  margin-bottom: 0.5rem;
}

.mission-vision-text p {
  margin: 0;
}

/* mission vision section end */

/* faq section start */

.faq-section .accordion-button {
  background: linear-gradient(135deg, #0d6efd, #4da3ff);
  color: #fff;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.faq-section .accordion-button:hover {
  background: linear-gradient(135deg, #4da3ff, #0dc3fd);
}

.faq-section .accordion-button.collapsed {
  color: #fff;
  background: linear-gradient(135deg, #039ccc, #c1dfff);
}

.faq-section .accordion-body {
  background: #f8f9fa;
  color: #333;
  font-size: 0.95rem;
}

.faq-icon {
  display: inline-block;
  width: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed) .faq-icon {
  transform: rotate(45deg);
}

/* service page start */

.service-list .list-group-item {
  cursor: pointer;
  padding: 15px;
  margin-bottom: 8px;
  border-radius: 10px;
  background: #e8f4ff;
  border: none;
  border-left: 2px solid #00b3fa;
}

.right-card-heading {
  font-size: 26px;
  color: #0096d1;
  margin-top: 10px;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .right-card-heading {
    font-size: 20px;
    color: #0096d1;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}

.img-border {
  border: 2px solid #fd790d;
  /* color change kar sakte ho */
  padding: 1px;
  /* optional spacing */
  border-radius: 10px;
  /* smooth rounded border */
  width: 110px !important;
  /* size badhane ke liye change karo */
  height: 110px !important;
  border-radius: 10px !important;
}

@media (max-width: 768px) {
  .img-border {
    border: 2px solid #fd790d;
    /* color change kar sakte ho */
    padding: 1px;
    /* optional spacing */
    border-radius: 10px;
    /* smooth rounded border */
    width: 70px !important;
    /* size badhane ke liye change karo */
    height: 70px !important;
  }
}

.service-list .active {
  background: #00b3fa;
  color: #fff;
}

.harmony-services {
  margin-top: -50px;
}

/* CARD */
.service-detail-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  border: 2px solid rgb(0, 183, 255);
}

.service-card img {
  width: 90px;
  height: 90px;
  object-fit: cover;

}

.service-card {
  border-bottom: 1px solid rgb(224, 224, 224) !important;
  padding-bottom: 15px !important;
}

/* ACCORDION */
.accordion-button {
  background: #f8f9fa;
}

.accordion-button:not(.collapsed) {
  background: #0d6efd;
  color: #fff;
}

/* ANIMATION */
.service-content {
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* contact page start */

/* contact page start */
.call-left-section {
  margin-bottom: 40px !important;
}

.address-para {
  font-size: 18px;
  color: rgb(0, 150, 187) !important;
}

.email-para {
  font-size: 20px;
  color: rgb(0, 150, 187) !important;
}

.contact-para {
  color: rgb(0, 150, 187) !important;
  font-size: 18px;
}

.call-left-section {
  display: flex;
  align-items: center;
  gap: 15px;
  /* space between icon and text */
}

/* Icon sizing */
.call-left-section .bg-primary {
  width: 60px;
  height: 60px;
  font-size: 24px;
  flex-shrink: 0;
  /* prevent icon from shrinking too much */
  background: linear-gradient(135deg, #32afd6, #007a99) !important;
}

/* Text wrapping */
.call-left-section h4,
.call-left-section h5 {
  margin: 0;
  word-break: break-word;
}

/* Small screens adjustments */
@media (max-width: 576px) {
  .call-left-section {
    flex-direction: column;
    align-items: flex-start;
    /* icon above text */
    gap: 5px;
  }

  .call-left-section .bg-primary {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .call-left-section h4 {
    font-size: 14px;
    /* smaller text for mobile */
  }

  .call-left-section h5 {
    font-size: 18px;
  }

  /* Wrap email nicely */
  .email-para {
    white-space: normal;
  }
}

.contact-section {
  margin-top: -100px !important;
  margin-bottom: -100px !important;
}

.enquiry-section {
  margin-top: -100px !important;
  margin-bottom: -100px !important;
}

.send-message {
  background: linear-gradient(135deg, #972106, #ff4318) !important;
}

/* contact page end */

/* enquiry page start */

.enquiry-form {
  border: 2px solid #32afd6;
  padding: 30px;
  border-radius: 10px;
  background-color: rgb(248, 248, 248);
}

.enquiry-image img {
  max-width: 90%;
}

.captcha-img {
  border-radius: 8px;
  border: 1px solid #ddd;
}

/* 📱 Mobile Responsive */
@media (max-width: 991px) {
  .enquiry-image {
    margin-top: 30px;
  }
}

.specialist-footer {
  font-size: 16PX;
}

.gw-all-products-btn {
  display: inline-block;
  padding: 8px 30px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  /* yellow text */
  background: #000;
  /* black background */
  border-radius: 50px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgb(23, 216, 250);
  /* box-shadow: 0 0 15px rgba(255,255,255,0.4), 0 0 10px rgba(255,215,0,3); */
}

/* Shining overlay – left to right only */
.gw-all-products-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.1));
  transform: skewX(-60deg);
  animation: shineLTR 1.5s linear infinite;
  pointer-events: none;
}

/* Keyframes – only left to right */
@keyframes shineLTR {
  0% {
    left: -100%;
    opacity: 0;
  }

  10% {
    opacity: 0.8;
  }

  90% {
    opacity: 0.8;
  }

  100% {
    left: 100%;
    opacity: 0;
  }
}

/* Hover effect */
.gw-all-products-btn:hover {
  color: #ffffff;
  background: #1a3e72;
  /* box-shadow: 0 0 5px rgba(255,255,255,1), 0 0 20px rgba(255,215,0,0.9); */
  transform: translateY(-3px);
}

/* client logo slide section end */

.footer-back {

  background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)),
    url("../img/footer-background.webp") !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  /* background-attachment: fixed; */
}









/* doctor intro section start  */
.rajat-new-section {

  background: url("../img/doctor-background.jpg") !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

/* Image */
.rajat-img {
  border-radius: 15px;
  border: 2px solid #38b2da;
  max-width: 80%;
}

/* About text */
.rajat-about {
  letter-spacing: 2px;
  color: #38b2da;
  font-weight: 600;
}

/* Name */
.rajat-name {
  font-size: 55px;
  font-weight: 1200;
  margin: 10px 0;
  font-family: 'Cormorant Garamond', serif;
  margin-top: -10px;
}

.rajat-name-2 {
  font-size: 45px;
  font-weight: 1200;
  margin: 10px 0;
  font-family: 'Cormorant Garamond', serif;
  margin-top: -10px;
}

@media (max-width: 768px) {
  .rajat-name-2 {
    font-size: 25px;
    font-weight: 1200;
    margin: 10px 0;
    font-family: 'Cormorant Garamond', serif;
    margin-top: -10px;
  }
}

/* Designation */
.rajat-designation {
  font-weight: 600;
  color: #555;
  line-height: 1.6;
}

/* Description */
.rajat-desc {
  color: #313131;
  font-size: 16px;
  line-height: 1.8;
  text-align: justify;
}

/* List */
.rajat-list {
  margin-top: 10px;
  padding-left: 18px;
}

.rajat-list li {
  margin-bottom: 6px;
  color: #444;
}

/* Responsive */
@media (max-width: 768px) {
  .rajat-name {
    font-size: 35px;
  }

  .rajat-designation {
    font-size: 16px;
  }

  .rajat-desc {
    font-size: 14px;
  }
}

.rajat-new-section .row {
  justify-content: center;
}

.rajat-new-section .col-lg-7 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

/* Buttons container */
.rajat-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

/* Primary button */
.btn-rajat {
  background-color: #00b0ea;
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
}

.btn-rajat:hover {
  background-color: #0789b5;
  color: #fff;
}

/* Outline button */
.btn-outline-rajat {
  border: 2px solid #00b0ea;
  color: #00b0ea;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
}

.btn-outline-rajat:hover {
  background-color: #38b2da;
  color: #fff;
}

/* Mobile responsive */
@media (max-width: 576px) {
  .rajat-btns {
    display: flex;
    justify-content: center;
    /* center align */
    gap: 10px;
  }

  .rajat-btns .btn {
    width: auto;
    /* full width hata diya */
    padding: 10px 20px;
    /* width control */
  }
}

/* doctor intro section end  */

.custom-img-small {
  width: 100%;
  /* size chota kar diya */
  height: 100%;
  object-fit: contain;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* center me laane ke liye */
}




.faq-section {
  background: #ffffff;
}

/* LEFT IMAGE BOX */
.faq-image-box {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.faq-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  /* background: linear-gradient(to top, rgba(120, 50, 20, 0.8), transparent); */
  color: #fff;
}

.faq-overlay h3 {
  font-size: 28px;
  font-weight: bold;
}

/* RIGHT SIDE TEXT */
.faq-small-title {
  color: #a0522d;
  font-weight: 600;
  letter-spacing: 1px;
}

.faq-main-title {
  font-size: 40px;
  font-weight: bold;
}

/* ACCORDION STYLE */
.accordion-item {
  border: 1px solid #d9b8a5;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.accordion-button {
  font-weight: 600;
  background: #fff;
}

.accordion-button:not(.collapsed) {
  color: #a0522d;
  background-color: #fff;
  box-shadow: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .faq-main-title {
    font-size: 28px;
  }

  .faq-overlay h3 {
    font-size: 20px;
  }
}


.doctor-of-harmony {
  background: linear-gradient(135deg, #f5f9ff, #e9f2ff);
  font-family: 'Cormorant Garamond', serif;
  /* padding: 30px; */
}

/* Card */
.doctor-of-harmony-card {
  border-radius: 18px;
  padding: 15px;
  max-width: 300px;
  margin: auto;

  /* Gradient Border Trick */
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(90deg, rgb(0, 183, 255), #ffffff) border-box;
  border: 2px solid transparent;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}


.doctor-of-harmony-card:hover {
  transform: translateY(-8px);
}

/* Image */
/* Image fix (NO CUT) */
.doctor-img {
  border-radius: 12px;
  height: 354px;
  width: 100%;
  object-fit: contain;
  /* IMPORTANT change */
  background: #f5f5f5;
  /* empty space clean lage */
  padding: 5px;
}

/* Info under image */
.doctor-info {
  margin-top: 15px;
}

/* Name spacing thoda compact */
.doctor-name {
  font-size: 20px;
}

.doctor-position {
  font-size: 14px;
}

/* Description */
.doctor-desc {
  font-size: 16px;
  color: #646464;
  line-height: 1.8;
  /* font-weight: 900; */
  font-family: 'Inter', sans-serif;
  margin-top: 20px;
}

/* Heading */
.doctor-heading {
  font-size: 25px;
  font-weight: 700;
  color: #00a6e0;
  margin-top: 25px;
  position: relative;
  padding-bottom: 10px;
  display: block;
}

/* Full width underline */
.doctor-heading::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #00a6e0, transparent);
}

/* Arrow at end */
/* .doctor-heading::after {
  content: "➜";
  position: absolute;
  right: 0;
  bottom: -5px;
  color: #007bff;
} */

/* List */
.doctor-list {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
  font-style: none;
  font-family: 'Inter', sans-serif;
}

.doctor-list li {
  font-size: 16px;
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
  color: #444444 !important;
}

/* Image icon */
.doctor-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  background: url('../img/icons/next.png') no-repeat center;
  background-size: contain;

}

.doctor-position-2 {
  font-family: 'Inter', sans-serif;
}

/* Quote */
.doctor-quote {
  font-style: italic;
  margin-top: 20px;
  color: #0d2c54;
  font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
  .doctor-img {
    height: 354px;
  }
}

.stethoscope-icon {
  font-size: 30px;
  color: #00a6e0;
}



/* Card */
.doctor-list-card {
  background: #fff;
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  gap: 15px;
}

.doctor-list-card:hover {
  transform: translateY(-5px);
}

/* Icon */
.icon-box {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.icon-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Text */
.list-text {
  font-size: 16px;
  color: #333;
  font-weight: 500;
}

.highlight {
  color: #444444 !important;
  font-weight: 1200 !important;
}

.list-right {
  padding-left: 35px;
}

@media (max-width: 768px) {
  .list-right {
    padding-left: 6px !important;
  }
}


/* specialities list in about page start */
.doctor-md-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 5px 15px;
  border-radius: 12px;
  background: #004a67;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  height: 100%;
  margin-top: 20px;
  border: 1px solid rgb(185, 185, 185);

}


@media (max-width: 768px) {
  .doctor-md-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-radius: 12px;
    background: #004a67;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
    height: 100%;
    margin-top: 20px;
  }
}

.doctor-md-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.doctor-md-card img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 10px;
  padding: 2px;
  border: 2px solid #ffffff;
}

.doctor-md-card h5 {
  font-size: 16px;
  margin: 0;
  font-weight: 600;
  color: #ffffff;
}

/* ✅ Responsive (Mobile View) */
@media (max-width: 767px) {
  .doctor-md-card {
    flex-direction: column;
    text-align: center;
  }

  .doctor-md-card img {
    margin-bottom: 10px;
  }
}

.mission-vision-icon {
  width: 70px;
  height: 70px;
  /* background: rgb(0, 183, 255); */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin: auto; */
}

.mission-vision-icon img {
  width: 65px;
  height: 65px;
  object-fit: contain;
}

/* clinic timing section start */

.monday-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;

  background: #fff;
  padding: 20px;
  border-radius: 14px;
  border: 1px solid #24c1ff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* LEFT & RIGHT BOX */
.monday-box {
  display: flex;
  align-items: flex-start;
  /* 🔥 KEY FIX: start alignment (NOT center) */
  gap: 15px;
}

/* ICON */
.monday-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0d6efd, #00c6ff);
  border-radius: 10px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
}

/* TEXT */
.monday-text h6 {
  margin: 0;
  font-weight: 600;
}

.monday-text h5 {
  margin: 0;
  color: #0d6efd;
}

.monday-text p {
  margin: 2px 0;
}

.monday-time {
  font-weight: 600;
  color: #0d6efd;
}

.monday-off {
  color: red;
}

/* HOVER */
.monday-wrapper:hover {
  transform: translateY(-3px);
  transition: 0.3s ease;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .monday-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.contact-num {
  font-size: 18px;
  margin-top: 10px !important;
  /* margin-bottom: 10px !important; */
}




/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background: #222;
  top: 100%;
  left: 0;
  min-width: 180px;
}

.dropdown-menu a {
  display: block;
  padding: 10px;
  color: #fff;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background: #333;
}

/* Show dropdown on hover (desktop) */
.dropdown:hover .dropdown-menu {
  display: block;
}



/* 🔥 Mobile Responsive */
@media (max-width: 768px) {


  /* Mobile Dropdown */
  .dropdown-menu {
    position: static;
    display: none;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .mobile-hide {
    display: none;
  }

  .foot-hide {
    display: none;
  }

  .web-s {
    margin-bottom: 70px;
  }
}







/* Book apointment css */
.consultation-card {
  width: 100%;
  max-width: 1100px;
  background: linear-gradient(135deg, #0b4c75, #0e6ba8);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.consultation-card::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  top: -100px;
  right: -80px;
}

.consultation-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  bottom: -80px;
  left: -60px;
}

.consultation-content {
  position: relative;
  z-index: 2;
  padding: 70px 60px;
  color: #fff;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffd166;
  color: #0b4c75;
  text-decoration: none;
  padding: 16px 34px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 600;
  transition: 0.3s ease;
}

.cta-btn:hover {
  background: #fff;
  transform: translateY(-3px);
}

@media(max-width:768px) {

  .consultation-content {
    padding: 45px 25px;
  }

  .consultation-content h1 {
    font-size: 34px;
  }

  .consultation-content p {
    font-size: 16px;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
  }

  .img-fluid-dr {
      max-width: 100%;
    height: auto !important;
}
}




/* our doctors page css */
/* container */
.card-wrapper {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

/* card */
.card-box-s {
  width: 330px;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: 0.3s;
  border: 2px solid #06a3da;
}

.card-box-s:hover {
  transform: translateY(-5px);
}

/* circular image */
.card-box-s img {
  width: 130px;
  height: 130px;
  border-radius: 20%;
  /* object-fit:cover; */
  border: 5px solid #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: absolute;
  top: -55px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
}

/* spacing for content */
.card-content-s {
  margin-top: 70px;
}

.card-box-s h3 {
  margin: 10px 0;
  font-size: 24px;
  font-family: 'Cormorant Garamond', serif;
}

.card-box-s p {
  font-size: 17px;
  color: #06a3da;
  line-height: 1.5;
}

/* buttons */
.btn-group {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.btn-box {
  padding: 8px 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  transition: 0.3s;
}

.btn-primary-box {
  background: #000000;
  color: #fff;
}

.btn-primary-box a {
  background: #000000;
  color: #fff;
}

.btn-primary-box:hover {
  background: #06a3da;
}

.btn-primary-box a:hover {
  background: #06a3da;
}

.btn-secondary-box {
  background: #000000;
  color: #fff;
}

.btn-secondary-box a {
  background: #000000;
  color: #fff;
}

.btn-secondary-box:hover {
  background: #06a3da;
}

.btn-secondary-box a:hover {
  background: #06a3da;
}

.img-fluid-dr {
      max-width: 100%;
    height: 500px;
}