.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

/* Background */
.about-bg {
  background: url(../../assets/images/parallax-bg6.jpg) center/cover no-repeat;
  position: absolute;
  inset: 0;
  opacity: 0.15;
}

/* Card */
.about-card {
  background: rgb(12 100 169 / 25%);
  backdrop-filter: blur(6px);
  border-radius: 20px;
  padding: 60px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
}

/* Doctor Image */
.doctor-image {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}

.doctor-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.doctor-image:hover img {
  transform: scale(1.06);
}

/* Experience Badge */
.experience-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #0d6efd;
  color: #fff;
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 600;
  line-height: 1.2;
}

/* Content */
.section-tag {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 13px;
  color: #0d6efd;
  font-weight: 600;
}

.doctor-name {
  font-size: 40px;
  font-weight: 800;
  margin: 10px 0;
}

.doctor-name span {
  color: #0d6efd;
}

.doctor-speciality {
  color: #666;
  font-weight: 500;
  margin-bottom: 20px;
}

/* Accent */
.accent-line {
  width: 60px;
  height: 4px;
  background: #0d6efd;
  border-radius: 10px;
  margin-bottom: 20px;
}

.about-content p {
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 991px) {
  .about-card {
    padding: 30px;
  }

  .doctor-image img {
    height: auto;
  }

  .doctor-name {
    font-size: 32px;
  }
}

/* About More Button */
.btn-about {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 14px 36px;
  border-radius: 50px;

  background: linear-gradient(135deg, #0d6efd, #6ea8fe);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.4px;

  border: none;
  outline: none;
  cursor: pointer;

  box-shadow: 0 15px 40px rgba(13, 110, 253, 0.35);
  transition: all 0.35s ease;
}

/* Hover */
.btn-about:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 55px rgba(13, 110, 253, 0.45);
}

/* Active */
.btn-about:active {
  transform: translateY(0);
  box-shadow: 0 12px 30px rgba(13, 110, 253, 0.35);
}

/* Focus (accessibility) */
.btn-about:focus-visible {
  box-shadow:
    0 0 0 3px rgba(13, 110, 253, 0.35),
    0 18px 45px rgba(13, 110, 253, 0.45);
}

/* Optional arrow animation */
.btn-about::after {
  content: "→";
  font-size: 16px;
  transition: transform 0.3s ease;
}

.btn-about:hover::after {
  transform: translateX(4px);
}

/* Services Section */
/* Section */
.services-section {
  background: linear-gradient(180deg, #a8beff91, #a0d5e191);
}

/* Card */
.service-card {
  position: relative;
  height: 380px;
  border-radius: 22px;
  overflow: hidden;
  background: #000;
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}

/* Card */
.service-card {
  position: relative;
  height: 380px;
  border-radius: 22px;
  overflow: hidden;

  /* NEW */
  background: #cccaca; /* Light background */
  border: 1px solid #dee2f3; /* Soft border */

  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease,
    border-color 0.45s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);

  /* Slight accent on hover */
  border-color: #061acf;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
}

/* Image */
.service-bg {
  position: absolute;
  inset: 0;
}

.service-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.service-card:hover .service-bg img {
  transform: scale(1.12);
}

/* Dark overlay */
.service-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.15));
}

/* Floating tag */
.service-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  letter-spacing: 0.5px;
}

/* Content */
.service-content {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 26px 24px;
  color: #fff;
  z-index: 2;
}

.service-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-content a {
  color: #fff;
  text-decoration: none;
}

/* Button */
.service-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.85;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.service-card:hover .service-btn {
  opacity: 1;
  transform: translateX(4px);
}

/* Icon */
.service-btn i {
  font-size: 16px;
}

/* Responsive */
@media (max-width: 767px) {
  .service-card {
    height: 320px;
  }
}

/* Gallery Section */
/*    Gallery Section */
.unique-gallery {
  background: linear-gradient(180deg, #f8f9fc, #ffffff);
  position: relative;
  overflow: hidden;
}

/*    Section Title */
.unique-gallery .sec-title {
  position: relative;
  z-index: 5;
}

.unique-gallery .sec-title h2 {
  font-size: 42px;
  font-weight: 800;
  color: #111;
  line-height: 1.2;
  position: relative;
}

.unique-gallery .sec-title h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  margin: 20px auto 0;
  background: linear-gradient(90deg, #0d6efd, #6ea8fe);
  border-radius: 50px;
}

/*    Gallery Card */
.gallery-frame {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}

.gallery-frame:hover {
  transform: translateY(-10px);
  box-shadow: 0 45px 90px rgba(0, 0, 0, 0.2);
}

/* Image */
.gallery-frame img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery-frame:hover img {
  transform: scale(1.12);
}

/* Overlay */
.gallery-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-frame:hover::after {
  opacity: 1;
}

/* Caption */
.gallery-frame figcaption {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 2;
}

/* View Button */
.gallery-frame figcaption a {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 50px;
  text-decoration: none;
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.4s ease;
}

.gallery-frame:hover figcaption a {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
  .gallery-frame img {
    height: 240px;
  }
}

@media (max-width: 575px) {
  .unique-gallery .sec-title h2 {
    font-size: 30px;
  }
}

/* Blog Section */
.blog-spotlight {
  background: url("https://t4.ftcdn.net/jpg/02/20/86/77/360_F_220867739_DS2blAD6QsIYE5BNHKZqnXbfXiDN0Kg3.jpg")
    center / cover no-repeat;
  padding-top: 30px;
  padding-bottom: 30px;
}

.blog-intro-card {
  height: 100%;
  padding: 40px 34px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #f7fafc);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-tag {
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 700;
  color: #0d6efd;
}

.blog-intro-card h2 {
  font-size: 34px;
  font-weight: 800;
  margin: 14px 0;
}

.blog-intro-card p {
  color: #555;
  line-height: 1.7;
}

.blog-cta {
  font-weight: 600;
  color: #0d6efd;
  text-decoration: none;
  margin-top: 20px;
  display: inline-block;
}

.blog-card {
  display: flex;
  gap: 24px;
  padding: 22px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.07);
  transition: transform 0.35s ease;
}

.blog-card:hover {
  transform: translateX(8px);
}

.blog-thumb img {
  width: 500px;
  height: 150px;
  object-fit: cover;
  border-radius: 14px;
}

.blog-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.blog-content a {
  text-decoration: none;
  color: #1e293b;
}

.read-more {
  font-size: 14px;
  font-weight: 600;
  color: #0d6efd;
}

@media (max-width: 991px) {
  .blog-card {
    flex-direction: column;
  }

  .blog-thumb img {
    width: 100%;
    height: 200px;
  }
}

/* Additional Section */
/* =========================
   Special Section
========================= */
.special-wrap {
  padding: 50px 0;
  /* background: ; */
}

/* Card */
.special-box.v3 {
  padding: 50px 30px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  transition: all 0.45s ease;
  overflow: hidden;
}

/* Hover */
.special-box.v3:hover {
  transform: translateY(-10px);
  box-shadow: 0 45px 90px rgba(0, 0, 0, 0.15);
}

/* Icon */
.special-box.v3 i {
  font-size: 54px;
  color: #0d6efd;
  margin-bottom: 22px;
  position: relative;
}

/* Icon glow */
.special-box.v3 i::after {
  content: "";
  position: absolute;
  inset: -14px;
  background: rgba(13, 110, 253, 0.15);
  filter: blur(22px);
  z-index: -1;
}

/* Content */
.special-box-inner h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111;
}

.special-box-inner p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  max-width: 280px;
  margin: 0 auto;
}

/* Accent border on hover */
.special-box.v3::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  border: 2px solid transparent;
  background: linear-gradient(135deg, #0d6efd, #6ea8fe) border-box;
  -webkit-mask:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.special-box.v3:hover::before {
  opacity: 1;
}

/* Responsive */
@media (max-width: 991px) {
  .special-box.v3 {
    padding: 40px 24px;
  }
}

/* Map embed */
.map-wrap {
  border-radius: 0; /* edge-to-edge */
  width: 100%;
  /* margin-top: 50px; */
}

.map-embed {
  margin: 0;
  width: 100%;
  border-radius: 0;
}

@media (max-width: 767px) {
  .map-wrap iframe {
    height: 300px;
  }
}

/* Why-Choose-Us */
/* THEME VARIABLES */
:root {
  --primary: #42817a;
  --secondary: #0b3c6d;
  --dark: #0f172a;
  --muted: #4b5056;
  --bg-light: #f8fafc;
  --card-radius: 22px;
}

/* BASE LAYOUT */
.doctor-expertise {
  padding: 10px 10px;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* LEFT VISUAL */
.visual {
  position: relative;
}

.card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--secondary), #0ea5e9);
  border-radius: var(--card-radius);
}

.image-stack {
  position: relative;
  padding: 40px;
}

.img-back {
  width: 100%;
  border-radius: 18px;
  opacity: 0.25;
}

.paper-frame {
  position: absolute;
  inset: 60px;
  background: #fff;
  padding: 12px;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.img-front {
  width: 100%;
  border-radius: 10px;
}

.badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
  color: var(--dark);
}

/* CONTENT */
.content .eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: #0f7bb7;
  font-weight: 600;
  padding-top: 21px;
}

.title {
  font-size: 52px;
  line-height: 1.1;
  margin-bottom: 24px;
}

.title span {
  display: block;
}

.title span:nth-child(2) {
  color: #0d7ab6;
}

.description {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 36px;
  max-width: 520px;
}

.features {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
}

.features li {
  display: flex;
  gap: 16px;
  padding: 22px 0;
  border-top: 1px solid #e5e7eb;
}

.features h4 {
  margin: 0 0 6px;
}

.features p {
  margin: 0;
  color: var(--muted);
}

.icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(24, 169, 153, 0.15);
  display: grid;
  place-items: center;
  font-size: 20px;
  color: #0d6efd;
}

/* CTA BUTTON */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0d6efd;
  color: #fff;
  padding: 14px 28px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(24, 169, 153, 0.35);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .title {
    font-size: 42px;
  }
}

/* Contact Services */
/* Make select look like input */
.custom-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  color: #757587;
  background-color: #fff;
  padding-left: 18px;
  height: 55px;
  /* match your inputs */
  cursor: pointer;
}

/* Fix option text color */
.custom-select option {
  color: #000;
}

/* special section */
.special-box.v3:hover .special-box-inner h4,
.special-box.v3:hover .special-box-inner p {
  color: #fff;
}

.special-box-inner:hover i#round,
.special-box.v3:hover i#round {
  color: #fff;
}

/* footer responsive  */
/* Default (Desktop – already handled by inline style) */

/* Tablet */
@media (max-width: 991px) {
  .bottom-bar.v3 {
    padding-left: 40px !important;
    padding-right: 40px;
    text-align: center;
  }

  .bottom-bar-inner {
    justify-content: center !important;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .bottom-bar.v3 {
    padding-left: 15px !important;
    padding-right: 15px;
    padding-top: 18px;
    padding-bottom: 18px;
    text-align: center;
  }

  .bottom-bar-inner p {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* FAQ Section */
.faq-wrap {
  width: 100%;
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 15px;
  padding: 18px 20px;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.faq-question {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  position: relative;
  padding-right: 30px;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 22px;
  transition: 0.3s;
}

.faq-item.active .faq-question::after {
  content: "-";
}

.faq-answer {
  display: none;
  margin-top: 10px;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-answer p {
  margin-bottom: 0;
  color: #555;
  line-height: 1.7;
}

/* additional  */
/* Reduce overall section spacing */
section {
  padding: 0;
  margin: 0;
}

/* Remove Bootstrap row gutters */
.special-wrap .row {
  --bs-gutter-x: 10px;
  /* horizontal gap */
  --bs-gutter-y: 10px;
  /* vertical gap */
}

.special-box.v3 {
  padding: 15px !important;
  min-height: auto;
}

.special-box-inner {
  padding: 10px 8px;
}

.special-box i {
  font-size: 36px;
  /* reduce icon size */
  margin-bottom: 10px;
}

.special-box h4 {
  margin-bottom: 6px;
  font-size: 18px;
}

.special-box p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.4;
}

#round {
  width: 60px;
  height: 60px;
  line-height: 60px;
}

/* blog */
.blog-intro-card.clean {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  max-width: 360px;
}

/* IMAGE */
.clean-image {
  position: relative;
  height: 200px;
}

.clean-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.clean-tag {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: #111;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
}

/* CONTENT */
.clean-content h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111;
}

.clean-content p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 18px;
}

/* CTA */
.clean-cta {
  font-size: 14.5px;
  font-weight: 600;
  color: #0d6efd;
  text-decoration: none;
}

/* blog Card */
.news-box-inner {
  height: 100%;
  padding: 15px;
  background-color: #76cffb;
  cursor: pointer;
}

.blog-img {
  height: 200px;
  object-fit: cover;
}
