@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* ====== COLORS ====== */
:root {
  --teal: #0A9291;
  --blue: #014B8C;
}


body {
  font-family: "Poppins", sans-serif;
}

/* ====== TOP BAR ====== */
.top-bar {
  background: linear-gradient(90deg, var(--teal), var(--blue));
  color: #fff;
  font-size: 14px;
  padding: 8px 0;
}

a {
  text-decoration: none;
}

.top-bar a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.top-bar a:hover {
  opacity: 0.8;
}

.top-bar i {
  margin-right: 6px;
}

/* ====== NAVBAR ====== */
.navbar {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.navbar-brand img {
  height: 60px;
}

.navbar-nav .nav-link {
  color: var(--blue);
  font-weight: 500;
  margin: 0 10px;
  position: relative;
  transition: 0.3s;
  display: inline-block;
}

.navbar-nav .nav-link:hover {
  color: var(--teal);
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;

  transition: 0.3s;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
  background: var(--teal);
}

.navbar-nav .nav-link.active {
  color: var(--teal);
}

.navbar-nav .nav-link.active::after {
  width: 100%;
  background: var(--teal);
}

/* ====== BUTTON ====== */
.btn-appointment {
  background: linear-gradient(90deg, var(--teal), var(--blue));
  color: #fff;
  border: none;
  padding: 10px 25px;
  font-weight: 500;
  border-radius: 4px;
  transition: 0.3s;
}

.btn-appointment:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}





/* ABOUT SECTION - LIGHT, FLOWING */
.about-section {
  background: linear-gradient(135deg, #f8fbfc 0%, #e6f0f8 100%);
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

/* ACCENT TEXT */
.text-accent {
  color: #0077b6;
  font-weight: 600;
  letter-spacing: 1px;
}

/* HEADINGS & TEXT */
.about-section h2 {
  color: #023e8a;
  font-weight: 700;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s forwards;
  animation-delay: 0.2s;
}

.about-section p {
  color: #555;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s forwards;
  animation-delay: 0.4s;
}

.about-section h6 {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s forwards;
  animation-delay: 0s;
}

/* BUTTON */
.btn-appointment {
  background: linear-gradient(135deg, #0077b6, #0096c7);
  color: #fff;
  padding: 14px 35px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.4s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s forwards;
  animation-delay: 0.6s;
}

.btn-appointment:hover {
  background: linear-gradient(135deg, #0096c7, #00b4d8);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* IMAGE */
.about-photo-wrap {
  position: relative;
  /* max-width: 300px; */
  /* margin: auto; */
  opacity: 0;
  transform: translateX(-50px);
  animation: fadeRight 1s forwards;
  animation-delay: 0.2s;
}

.about-photo-wrap {

  transition: transform 0.6s ease;
}

.about-photo-wrap:hover img {
  transform: scale(1.1);
}


/* .about-image {
  width: 100%;
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
} */

/* GLOW EFFECTS */
.glow-circle {
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(0, 184, 212, 0.3);
  border-radius: 50%;
  top: -20px;
  left: -20px;
  filter: blur(50px);
  z-index: 1;
  animation: floatGlow 6s ease-in-out infinite alternate;
}

.glow-ring {
  position: absolute;
  width: 250px;
  height: 250px;
  border: 3px solid rgba(0, 119, 182, 0.4);
  border-radius: 50%;
  top: -50px;
  left: -50px;
  filter: blur(30px);
  animation: rotate 20s linear infinite;
}

/* FLOATING BLURS */
.bg-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.4;
  z-index: 0;
}

.blur1 {
  width: 250px;
  height: 250px;
  background: #00a8ff;
  top: -50px;
  left: -50px;
  animation: floatGlow 8s ease-in-out infinite alternate;
}

.blur2 {
  width: 300px;
  height: 300px;
  background: #48cae4;
  bottom: -80px;
  right: -80px;
  animation: floatGlow 10s ease-in-out infinite alternate;
}

.blur3 {
  width: 200px;
  height: 200px;
  background: #90e0ef;
  top: 250px;
  right: 50px;
  animation: floatGlow 7s ease-in-out infinite alternate;
}

/* PARTICLES */
.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  animation: float 10s infinite alternate;
}

.particle1 {
  width: 15px;
  height: 15px;
  background: #00a8ff;
  top: 100px;
  left: 50px;
}

.particle2 {
  width: 20px;
  height: 20px;
  background: #48cae4;
  top: 200px;
  right: 120px;
}

.particle3 {
  width: 10px;
  height: 10px;
  background: #90e0ef;
  bottom: 150px;
  left: 150px;
}

/* KEYFRAMES */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes floatGlow {
  0% {
    transform: translateY(0px) translateX(0px);
  }

  100% {
    transform: translateY(-15px) translateX(10px);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(-20px);
  }
}

/* Doctor Image Styling */
/* .about-photo-wrap {
  position: relative;
  display: inline-block;
} */

.doctor-img {
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #ffffffcc;
  position: relative;
  z-index: 3;
  box-shadow: 0 0 50px rgba(255, 255, 255, 0.2);
  transition: 0.5s ease;
}

.doctor-img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 60px rgba(255, 255, 255, 0.4);
}

/* Glow Rings */
.light-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 80px rgba(10, 146, 145, 0.7), 0 0 120px rgba(1, 75, 140, 0.5);
  animation: rotateRing 10s linear infinite;
  z-index: 1;
}

.back-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 480px;
  height: 480px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
}



/* Background glowing lights */
.bg-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  opacity: 0.3;
}

.blur1 {
  width: 400px;
  height: 400px;
  /* background: #0A9291; */
  top: -150px;
  left: -150px;
}

.blur2 {
  width: 300px;
  height: 300px;
  background: #ffffff;
  bottom: -100px;
  right: -80px;
  opacity: 0.2;
}

.blur3 {
  width: 200px;
  height: 200px;
  /* background: #014B8C; */
  top: 40%;
  left: 60%;
  opacity: 0.25;
}


/* Expert-section */

.expert {
  /* width: 340px; */
  /* height: 380px; */
  /* object-fit: cover; */
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(1, 75, 140, 0.15);
  transition: 0.4s ease;
}

.expert:hover {
  transform: translateY(-8px);
}

/* Decorative Accent Behind Image */
.image-accent-shape {
  position: absolute;
  width: 280px;
  height: 280px;
  background: linear-gradient(135deg, #014B8C, #0A9291);
  border-radius: 30px;
  top: -20px;
  left: -20px;
  z-index: -1;
  opacity: 0.1;
}


/* ======= SERVICES SECTION ======= */
/* SECTION BACKGROUND */
.services-section {
  background: linear-gradient(135deg, #f4f9fc 0%, #e8f4f8 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

/* Soft Glow Background */
.services-section::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: #0A9291;
  top: -100px;
  left: -100px;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.2;
}

.services-section::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: #014B8C;
  bottom: -150px;
  right: -100px;
  border-radius: 50%;
  filter: blur(160px);
  opacity: 0.15;
}

/* Headings */
.small-title {
  color: #0A9291;
  letter-spacing: 2px;
  font-weight: 600;
}

.main-heading {
  color: #014B8C;
  font-weight: 800;
  display: inline-block;
}

.main-heading span {
  color: #0A9291;
}

.main-heading::after {
  content: "";
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #014B8C, #0A9291);
  display: block;
  margin: 12px auto 0;
  border-radius: 10px;
}

.section-text {
  color: #555;
  max-width: 650px;
}

/* Service Card */
.service-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 10px;
  transition: 0.4s ease;
  box-shadow: 0 15px 35px rgba(1, 75, 140, 0.08);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #014B8C, #0A9291);
  transition: 0.5s;
}

.service-card:hover::before {
  left: 0;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(1, 75, 140, 0.15);
}

/* Image */
.service-img {
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
  transition: 0.4s ease;
}

.service-card:hover .service-img {
  transform: scale(1.05);
}

/* Text */
.service-card h5 {
  color: #014B8C;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.service-card p {
  color: #555;
  font-size: 0.92rem;
  margin-bottom: 0;
}

/* Custom Dots */
.custom-indicators {
  position: static;
  margin-top: 30px;
}

.custom-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #cfd8dc;
  border: none;
  margin: 0 6px;
  transition: 0.4s ease;
}

.custom-indicators .active {
  background: linear-gradient(135deg, #014B8C, #0A9291);
  width: 35px;
  border-radius: 20px;
}

/* =======  ABOUT DOCTOR SECTION ======= */
/* SECTION BACKGROUND */
.doctor-section {
  background: linear-gradient(135deg, #f4f9fc 0%, #eaf4f8 100%);
  padding: 120px 0;
  position: relative;
}

/* Soft Medical Background Glow */
.doctor-section::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: #0A9291;
  top: -100px;
  left: -100px;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.15;
}



/* Doctor Image */
.doctor-image-wrapper {
  display: inline-block;
  position: relative;
}

.doctor-img {
  width: 340px;
  height: 380px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(1, 75, 140, 0.15);
  transition: 0.4s ease;
}

.doctor-img:hover {
  transform: translateY(-8px);
}

/* Decorative Accent Behind Image */
.image-accent-shape {
  position: absolute;
  width: 280px;
  height: 280px;
  background: linear-gradient(135deg, #014B8C, #0A9291);
  border-radius: 30px;
  top: -20px;
  left: -20px;
  z-index: -1;
  opacity: 0.1;
}

/* choose-us section */

/* === BACKGROUND === */
.choose-us {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 20% 20%, rgba(10, 146, 145, 0.05), transparent 60%),
    linear-gradient(160deg, #e0f7fa 60%, #c0f0f5 90%);
}

.choose-us::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at bottom right, rgba(10, 146, 145, 0.08), transparent 70%);
  filter: blur(60px);
  z-index: 0;
}

.choose-us::after {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: repeating-linear-gradient(120deg,
      transparent 0%,
      rgba(10, 146, 145, 0.02) 15%,
      transparent 30%);
  animation: move-bg 25s linear infinite;
  opacity: 0.4;
  z-index: 0;
}

@keyframes move-bg {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(20%, 20%);
  }
}

/* === HEADING === */
.glow-title span {
  color: #0A9291;
  text-shadow: 0 0 12px rgba(10, 146, 145, 0.3);
  background: linear-gradient(90deg, #0A9291, #0ACFD1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glow-text 4s ease-in-out infinite alternate;
}

@keyframes glow-text {
  0% {
    text-shadow: 0 0 6px rgba(10, 146, 145, 0.2);
  }

  100% {
    text-shadow: 0 0 18px rgba(10, 146, 145, 0.5);
  }
}

/* === FEATURE CARDS === */
.feature-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(10, 146, 145, 0.2);
  border-radius: 15px;
  padding: 25px 15px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: #0ACFD1;
  box-shadow: 0 0 25px rgba(10, 146, 145, 0.25);
}

.feature-card .icon {
  width: 55px;
  height: 55px;
  margin: 0 auto 10px;
  background: linear-gradient(135deg, #0A9291, #0ACFD1);
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 18px rgba(10, 146, 145, 0.3);
  transition: transform 0.4s ease;
}

.feature-card:hover .icon {
  transform: rotateY(360deg);
}

.feature-card h5 {
  font-weight: 600;
  color: #0A9291;
  margin-bottom: 5px;
}

.feature-card p {
  font-size: 0.9rem;
  color: #014B8C;
}

/* === IMAGE AREA === */
/* .therapy-image-area {
  position: relative;
  display: inline-block;
} */

/* Wrapper */
.therapy-image-area {
  position: relative;
  display: inline-block;
  border-radius: 20px;
  overflow: hidden;
  /* ensures image matches */
}

/* Vertical Part of L */
.therapy-image-area::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 10px;
  /* thickness of the line */
  height: 100%;
  /* full vertical height */
  background-color: #0A9291;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  z-index: 2;
}

/* Horizontal Part of L */
.therapy-image-area::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  /* full horizontal width */
  height: 10px;
  /* thickness of the line */
  background-color: #0A9291;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  z-index: 2;
}

/* .floating-therapy {
  position: relative;
  animation: float 4s ease-in-out infinite alternate;
  filter: drop-shadow(0 10px 25px rgba(10, 146, 145, 0.15));
  z-index: 2;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(-0.2deg);
  }

  100% {
    transform: translateY(-10px) rotate(0.2deg);
  }
} */

.bg-glow {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 350px;
  height: 120px;
  background: radial-gradient(circle, rgba(10, 146, 145, 0.2), transparent 70%);
  filter: blur(50px);
  z-index: 1;
}

.reflection {
  position: absolute;
  bottom: -20px;
  left: 50%;
  width: 70%;
  height: 35px;
  transform: translateX(-50%) scaleY(-1);
  background: linear-gradient(to bottom, rgba(10, 146, 145, 0.15), transparent);
  filter: blur(8px);
  border-radius: 50%;
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
  .floating-therapy {
    width: 90%;
  }

  .bg-glow {
    width: 250px;
  }
}


/* Content */
.doctor-content {
  padding-left: 20px;
}

.section-subtitle {
  color: #0A9291;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.doctor-name {
  font-size: 2.4rem;
  font-weight: 800;
  color: #014B8C;
}

.doctor-degree {
  font-size: 1.1rem;
  color: #0A9291;
  font-weight: 600;
}

.doctor-description {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Button */
.doctor-btn {
  background: linear-gradient(90deg, #014B8C, #0A9291);
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 500;
  border: none;
  transition: 0.4s ease;
  box-shadow: 0 10px 25px rgba(1, 75, 140, 0.2);
}

.doctor-btn:hover {
  background: linear-gradient(90deg, #0A9291, #014B8C);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(1, 75, 140, 0.3);
}

/* Responsive */
@media (max-width: 992px) {
  .doctor-content {
    padding-left: 0;
    text-align: center;
  }

}

/* gallery */
.gallery-section {
  background: linear-gradient(135deg, #f0f7fa 0%, #e2f0f7 100%);
  padding: 80px 0;
  position: relative;
  color: #014B8C;
}

/* Floating soft glows */
.gallery-section::before,
.gallery-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  opacity: 0.2;
}

.gallery-section::before {
  width: 300px;
  height: 300px;
  background: #0A9291;
  top: -80px;
  left: -80px;
}

.gallery_img {
  margin-bottom: 1rem;
}

/* .gallery-section::after {
  width: 350px;
  height: 350px;
  background: #014B8C;
  bottom: -120px;
  right: -100px;
} */

/* Section Titles */
.span-title {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #0A9291;
  display: block;
}

.heading-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #014B8C;
  margin-top: 10px;
}

.heading-title .span-heading {
  color: #0A9291;
}

/* Gallery items */
.gallery-item {
  padding: 10px;
  z-index: 1;
}

.zoom {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(1, 75, 140, 0.1);
  transition: all 0.4s ease;
  cursor: pointer;
}

.zoom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.8s ease, filter 0.4s ease;
  filter: brightness(95%);
}

.zoom:hover img {
  transform: scale(1.15);
  filter: brightness(105%);
}

.zoom:hover {
  box-shadow: 0 20px 40px rgba(1, 75, 140, 0.15);
}

/* Lightbox */
/* .lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
} */

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
}

.close {
  position: absolute;
  top: 25px;
  right: 30px;
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: #0A9291;
}

/* Responsive */
@media (max-width: 768px) {
  .heading-title {
    font-size: 2rem;
  }
}

/* Section Background */
.impact-modern {
  background: linear-gradient(135deg, #014B8C, #0A9291);
  color: #fff;
  padding: 80px 0;
  position: relative;
}

/* Yellow/Teal Theme Text */
.theme-teal {
  color: #0AFFFF;
  /* bright teal accent */
}

/* Card Style */
.impact-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 35px 20px;
  transition: 0.5s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.impact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 35px rgba(10, 146, 145, 0.3);
  border: 1px solid #0AFFFF;
}

/* Numbers */
.impact-card h1 {
  font-size: 48px;
  font-weight: 700;
  color: #0AFFFF;
  margin-bottom: 10px;
}

.impact-card p {
  font-size: 16px;
  color: #e0f7fa;
  font-weight: 500;
}

/* Responsive tweaks */
@media (max-width: 992px) {
  .impact-card h1 {
    font-size: 40px;
  }

  .impact-card p {
    font-size: 14px;
  }
}

/* reviews */

.testmonial {
  background: #E0F7FA;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.testmonial::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(10, 146, 145, 0.05), transparent 70%),
    radial-gradient(circle at 80% 70%, rgba(10, 146, 145, 0.03), transparent 80%);
  filter: blur(60px);
  z-index: 0;
}

.span-title.text-teal {
  color: #0A9291 !important;
}

.heading-title span {
  background: linear-gradient(90deg, #0A9291, #0ACFD1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glowText 4s ease-in-out infinite alternate;
}

@keyframes glowText {
  0% {
    text-shadow: 0 0 6px rgba(10, 146, 145, 0.2);
  }

  100% {
    text-shadow: 0 0 15px rgba(10, 146, 145, 0.4);
  }
}

.google_review {
  background: rgba(10, 146, 145, 0.05);
  border-radius: 30px;
  border: 2px solid #0A9291;
  box-shadow: 0 0 15px rgba(10, 146, 145, 0.2);
  transition: all 0.4s ease;
  backdrop-filter: blur(8px);
  color: #014B8C;
  position: relative;
  padding: 30px 25px;
}

.white-circle1 {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #0A9291, #0ACFD1);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 0 12px rgba(10, 146, 145, 0.3);
}

.review-text {
  color: #014B8C;
  font-size: 1rem;
  margin-bottom: 12px;
  line-height: 1.6;
}

.review-name {
  color: #0A9291;
  font-weight: 600;
  margin-top: 10px;
  font-size: 1.05rem;
}

.stars i {
  color: #0ACFD1;
  text-shadow: 0 0 6px rgba(10, 146, 145, 0.3);
}

@media (max-width: 768px) {
  .google_review {
    padding: 25px 18px;
  }

  .white-circle1 {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .review-text {
    font-size: 0.95rem;
  }
}



/* form */



/* ===== Booking Section ===== */
.booking-section {
  min-height: 100vh;
  overflow: hidden;

  position: relative;
}

/* ===== Left Image ===== */
.booking-image {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 20px;
}

.booking-section .row.align-items-stretch {
  align-items: stretch;
}

.welcome-text {
  position: relative;
  z-index: 2;
}

/* Form box settings */
.form-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  /* heading stays at top */
}

.booking-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(224, 247, 250, 0.4);
}


/* Animated Glow */
.animate-glow {
  text-shadow: 0 0 10px rgba(10, 146, 145, 0.8), 0 0 25px rgba(10, 146, 145, 0.5);
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {

  0%,
  100% {
    text-shadow: 0 0 10px rgba(10, 146, 145, 0.7), 0 0 25px rgba(10, 146, 145, 0.3);
  }

  50% {
    text-shadow: 0 0 25px rgba(10, 146, 145, 1), 0 0 40px rgba(10, 146, 145, 0.6);
  }
}

/* Particle Light Dots */
.particles {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(10, 146, 145, 0.15) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.08;
  animation: moveParticles 20s linear infinite;
}

@keyframes moveParticles {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 400px 400px;
  }
}

/* ===== Right Form ===== */
.form-side {
  display: flex;
  align-items: stretch;

}


.glass-card {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(10, 146, 145, 0.3);
  box-shadow: 0 0 35px rgba(10, 146, 145, 0.2);
  max-width: 500px;
  width: 100%;
  color: #014B8C;
  position: relative;
}

/* Shimmer effect */
.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(10, 146, 145, 0.15), transparent);
  animation: shimmer 4s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

/* Inputs */
.form-control {
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(10, 146, 145, 0.3);
  color: #014B8C;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.form-control::placeholder {
  color: #066168;
}

.form-control:focus {
  border-color: #0ACFD1;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 10px rgba(10, 146, 145, 0.4);
}

/* Button */
.btn {
  background: linear-gradient(135deg, #0A9291, #0ACFD1);
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  padding: 12px;
  border: none;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transition: 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(10, 146, 145, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
  .booking-section {
    flex-direction: column;
  }

  .booking-image {
    min-height: 300px;
  }

  .welcome-text {
    margin: 20px auto;
  }

  .glass-card {
    margin: 30px auto;
  }
}



/* ================================
   FUTURISTIC FOOTER WIDGET AREA
   ================================ */


.footer-widgets {
  position: relative;
  padding: 100px 0 0px;
  background: linear-gradient(135deg, #014B8C, #0A9291);
  overflow: hidden;
  z-index: 1;
  color: #ffffff;
}

.footer-widgets ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ================= WIDGET COLUMN ================= */

.widget-col {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transform-style: preserve-3d;
  position: relative;
}


/* ================= HEADINGS ================= */

.widget-col h4 {
  color: #00FFF0;
  font-size: 20px;
  margin-bottom: 20px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
}



/* ================= LINKS ================= */

.widget-col ul li {
  margin-bottom: 12px;
}

.widget-col ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.4s ease;
  position: relative;
}

.widget-col ul li a::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  width: 0;
  height: 2px;
  background: #00FFF0;
  transition: 0.4s;
}

.widget-col ul li a:hover {
  color: #00FFF0;

}

.widget-col a.text-white:hover {
  color: #00FFF0 !important;
}

.widget-col p:hover {
  color: #00FFF0;
  cursor: pointer;
  transition: color 0.3s;
}

.widget-col.quick-links h4 {
  display: inline-block;

}

.widget-col.quick-links {
  text-align: center;
}

.widget-col.quick-links h4::after {
  margin: 6px 0 0;

}

/* ================= SOCIAL ICONS ================= */

.social-links {
  display: flex;
  gap: 18px;
  margin-top: 20px !important;
}

.social-links li a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 22px;
  background: linear-gradient(45deg, #0A9291, #014B8C);
  transition: 0.5s ease;
  position: relative;
  overflow: hidden;
}

.social-links li a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.4), transparent 70%);
  opacity: 0;
  transition: 0.4s;
}

.social-links li a:hover::before {
  opacity: 1;
}

.social-links li a:hover {

  box-shadow:
    0 0 25px #00FFF0,
    0 0 60px #00FFF0;
}

/* ================= MOUSE FOLLOW GLOW ================= */

.footer-widgets::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0, 255, 240, 0.12), transparent 60%);
  pointer-events: none;
  z-index: -2;
  /* VERY IMPORTANT */
}


/* Responsive */
@media(max-width:768px) {
  .widget-col:hover {
    transform: none;
  }

  .widget-col.quick-links {
    text-align: start;
  }
}


.widget-col p a {
  color: #ffffff !important;
  text-decoration: none;
  transition: 0.3s ease;
}

.widget-col p a:hover {
  color: #00FFF0 !important;
}

.widget-col h4 {
  color: #00FFF0;
  font-size: 20px;
  margin-bottom: 20px;
  position: relative;
}

.widget-col h4::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #00FFF0;
  display: block;
  margin-top: 6px;
  border-radius: 3px;
}

/* ================= BOTTOM ================= */

.footer-bottom {
  text-align: center;
  padding: 25px 0;
  backdrop-filter: blur(6px);
  font-size: 14px;
  letter-spacing: 1px;
}

.footer-logo {
  display: block;
  margin-bottom: 20px;
}


/* ================= RESPONSIVE ================= */

@media(max-width:768px) {
  .footer-title {
    font-size: 26px;
    text-align: center;
  }

  .social-links {
    /* justify-content: center; */
    list-style: none;
  }
}

/* contact us */

.contact_content {
  color: #000000;
  font-size: 16px;
  margin-bottom: 20px;

}

.contact_content a:hover {
  color: #014B8C !important;
}

.contact_content i {
  color: #014B8C;

}

h1 {
  color: #014B8C;
}

.contact_span {
  color: #0A9291;
  font-weight: 600;
  letter-spacing: 1px;
}

/* doctor-details */

/* ==============================
   DOCTOR PROFILE PAGE STYLING
   ============================== */

.doctor-profile-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f4f9fc 0%, #eaf4f8 100%);
  position: relative;
}

/* Soft Background Glow */
.doctor-profile-section::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: var(--teal);
  top: -120px;
  left: -120px;
  border-radius: 50%;
  filter: blur(160px);
  opacity: 0.12;
}

.doctor-profile-section::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: var(--blue);
  bottom: -120px;
  right: -120px;
  border-radius: 50%;
  filter: blur(160px);
  opacity: 0.12;
}

/* ===== Doctor Image ===== */
.doctor-image-box {
  text-align: center;
  position: relative;
}

.doctor-image-box img {
  width: 100%;
  max-width: 340px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(1, 75, 140, 0.15);
  transition: 0.4s ease;
}

.doctor-image-box img:hover {
  transform: translateY(-8px);
}

/* ===== Doctor Title Card ===== */
.doctor-title {
  background: #ffffff;
  padding: 25px;
  margin-top: -40px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(1, 75, 140, 0.08);
  text-align: center;
}

.doctor-title h2 {
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 8px;
}

.doctor-title h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.doctor-title p {
  font-size: 15px;
  font-weight: 500;
  color: #555;
  margin: 0;
}

.expert-img {
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(1, 75, 140, 0.15);
  transition: 0.4s ease;
}

/* ===== Doctor Content ===== */
.doctor-details h1 {
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 20px;
}

.doctor-details p {
  color: #555;
  line-height: 1.8;
  font-size: 1rem;
}

/* ===== Expertise Section ===== */
.doctor-expertise {
  color: var(--teal);
  margin-top: 30px;
  font-weight: 600;
}



/* Expertise List */
.doctor-details ul {
  list-style: none;
  padding-left: 0;
  columns: 2;
  margin-top: 15px;
}

@media (max-width: 768px) {
  .doctor-details ul {
    columns: 1;
  }
}

.doctor-details ul li {
  margin-bottom: 10px;
  font-size: 15px;
  transition: 0.3s ease;
}

.doctor-details ul li:hover {
  transform: translateX(6px);
}

.doctor-details ul li i {
  color: var(--teal);
  margin-right: 8px;
}

/* whatsapp-icon */

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: #fff;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  z-index: 999;
}

.img-zoom {
  overflow: hidden;
  border-radius: 10px;
  /* optional */
}

.img-zoom img {
  width: 100%;
  transition: transform 0.6s ease;
}

.img-zoom:hover img {
  transform: scale(1.1);
}

.designer-link {
  color: #00FFF0;
  /* Highlight color */
  font-weight: 700;
  /* Bold */
  text-decoration: none;
  margin-left: 5px;
  transition: all 0.3s ease;
}

.designer-link:hover {
  color: #0A9291;
  /* Darker on hover */
  text-decoration: underline;
}


/* whatsapp icon */


.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.whatsapp-float:hover {
  color: #fff;
}

/* news and media page */

.news-section {
  background: linear-gradient(135deg, #f0f7fa 0%, #e2f0f7 100%);
  padding: 80px 0;
  position: relative;

}

/* news and media page */

.news-box {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(10, 146, 145, 0.15);
  border: 2px solid #0A9291;
}

.news-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(10, 146, 145, 0.35);
  /* stronger teal glow */
}