/* ==========================
   Root Variables
========================== */
:root {
  /* Primary Colors */
  --primary-color: #A7319F;
  --secondary-color: #049dbf;
  --light-color: #f9f9f9;
  --dark-color: #1a1a1a;
  --heading-color: #222222;
  --text-color: #555555;
  --border-color: #e0e0e0;
  --highlight-color: #00c1ff;
  --primary-color-second: #13A2B0;
  --primary-color-third: #a6329e;

  /* Font sizes */
  --font-size-base: 16px;
  /* Default body font */
  --font-size-sm: 14px;
  --font-size-md: 18px;
  --font-size-lg: 22px;
  --font-size-xl: 28px;
  --font-size-xxl: 36px;
}

/* ==========================
   Global Styles
========================== */
body {
  font-family: 'Roboto', sans-serif !important;
  font-size: var(--font-size-base);
  color: var(--text-color) !important;
  background-color: #F2F3F5 !important;
  line-height: 1.6;
}

a {
  text-decoration: none;
}

a:hover {
  color: var(--primary-color) !important;
}

a,
p,
small,
b {
  font-size: 1rem;
  color: var(--text-color) !important;
  letter-spacing: 0.6px;
}

/* ==========================
   Headings & Typography
========================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  letter-spacing: 0.8px;
}

.title {
  color: var(--primary-color-second);
  position: relative;
  padding-bottom: 14px !important;
  margin-bottom: 20px !important;
  font-weight: 700;
  font-size: 32px;
}

.title:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 3px;
}

.title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(30px);
  width: 10px;
  height: 3px;
  background-color: var(--secondary-color);
  border-radius: 3px;
}

.sub-title {
  color: var(--primary-color-second);
  font-size: 22px;
  font-weight: 700;
}

h1 {
  font-size: var(--font-size-xxl);
}

h2 {
  font-size: var(--font-size-xl);
}

h3 {
  font-size: var(--font-size-lg);
}

h4 {
  font-size: var(--font-size-md);
}

h5 {
  font-size: var(--font-size-base);
}

h6 {
  font-size: var(--font-size-sm);
}

.btn, button {
  letter-spacing: 1px;
}

/* ==========================
   Responsive Typography
========================== */
@media (max-width: 1200px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 22px;
  }
}

@media (max-width: 992px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  body {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 20px;
  }

  h3 {
    font-size: 18px;
  }

  body {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 20px;
  }

  h2 {
    font-size: 18px;
  }

  h3 {
    font-size: 16px;
  }

  body {
    font-size: 13px;
  }
}

/* If using custom nav elements (.hair-prev / .hair-next) */
/* COMMON SWIPER ARROW STYLE (APPLY TO ALL) */
/* ==========================================
   Swiper Navigation Buttons
========================================== */

.swiper-button-prev,
.swiper-button-next {
    position: static !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    background: #fff;
    color: var(--primary-color) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,.15);
    font-size: 16px;
    flex-shrink: 0;
}

/* Hide Swiper's default arrows */
.swiper-button-prev::after,
.swiper-button-next::after {
    display: none !important;
    content: "";
}

/* Hover */
.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: var(--primary-color);
    color: #fff !important;
}

/* Font Awesome icon */
.swiper-button-prev i,
.swiper-button-next i {
    font-size: 16px;
    line-height: 1;
}

/* Space for arrows below slider */
.swiper-wrapper {
    padding-bottom: 80px;
}

/* Navigation container */
.swiper-arrows {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

/* Remove old class if present */
.swiper-navigation-icon {
    display: none;
}

@media screen and (max-width: 768px) {
  .swiper-wrapper {
    padding-bottom: 70px;
  }
}


/* ==========================
   Links & Buttons
========================== */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.btn-primary:hover {
  background-color: var(--highlight-color);
  border-color: var(--highlight-color);
}

/* === Take a Test Button (Navbar + Offcanvas) === */
.take-test-btn {
  display: inline-block;
  text-align: center;
  background-color: var(--primary-color);
  color: #fff !important;
  border: 2px solid var(--primary-color);
  border-radius: 5px;
  padding: 6px 18px;
  font-weight: 600;
  font-size: 0.9rem;
  /* transition: all 0.3s ease; */
  text-decoration: none !important;
  white-space: nowrap;
}

.take-test-btn:hover {
  /* background-color: var(--highlight-color);
  border-color: var(--highlight-color); */
  color: #fff !important;
}

/* ==========================
   Utility Classes
========================== */
.text-primary {
  color: var(--primary-color);
}

.text-secondary {
  color: var(--secondary-color);
}

.bg-primary {
  background-color: var(--primary-color);
  color: #fff;
}

.bg-secondary {
  background-color: var(--secondary-color);
  color: #fff;
}

.border-primary {
  border-color: var(--primary-color);
}

/* ==========================
   Card Styles
========================== */
.card {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background-color: #fff;
  padding: var(--spacing-md);
  /* Note: assuming --spacing-md is defined elsewhere or intended to be here */
  transition: 0.3s all ease;
}

.card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ==========================
   Spacing & Containers
========================== */
.section-spacing-top {
  padding-top: 70px;
}

.section-spacing-bottom {
  padding-bottom: 70px;
}

@media (max-width: 767.98px) {
  .section-spacing-top {
    padding-top: 40px !important;
  }

  .section-spacing-bottom {
    padding-bottom: 40px !important;
  }
}

.container-fluid {
  --bs-gutter-x: 3rem !important;
}

@media screen and (max-width: 768px) {
  .container-fluid {
    --bs-gutter-x: 2rem !important;
  }
}

.main-message-bubble.user {
  font-size: 1rem;
  color: #fff !important;
}

.main-message-bubble.bot {
  font-size: 1rem;
  color: #333333 !important;
  box-shadow: 1px 2px 2px rgba(182, 47, 173, 0.2);
  padding: 0.5rem;
  white-space: pre-wrap;
}


/* ==========================
   Header & Navigation
========================== */

/* Top Banner */
.top-banner {
  background-color: var(--primary-color);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  font-size: 15px;
}

/* Navbar */
.logo {
  max-width: 166px;
}

.nav-link {
  margin: 0 8px;
  transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: #2bb2b3 !important;
}

.badge.bg-pink {
  background-color: #ff4f81;
  font-size: 10px;
  padding: 3px 5px;
}

.social-icons a:hover {
  color: #2bb2b3 !important;
}

.navbar-toggler {
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    border-radius: 8px;
    background: #2bb2b3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-toggler-icon {
    width: 20px;
    height: 20px;
     background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    background-size: 20px 20px;
    background-position: center;
}

/* Shared responsive logo for navbar and offcanvas */
.responsive-logo {
  max-width: 166px;
  /* default desktop size */
  height: auto;
  transition: max-width 0.3s ease;
}

@media (max-width: 992px) {
  .responsive-logo {
    max-width: 140px;
    /* smaller for tablets */
  }
}

@media (max-width: 768px) {
  .responsive-logo {
    max-width: 120px;
    /* smaller for mobile */
  }
}

@media (max-width: 576px) {
  .responsive-logo {
    max-width: 100px;
    /* very small screens */
  }
}

/* Sidebar / Offcanvas custom look */
.offcanvas {
  background-color: #fff;
  width: 260px;
  border-right: 2px solid #2bb2b3;
}

.offcanvas .nav-link {
  font-size: 16px;
  margin-bottom: 10px;
}

.offcanvas .nav-link:hover {
  color: #2bb2b3 !important;
}

.offcanvas .offcanvas-header {
  border-bottom: 1px solid #eee;
}

.offcanvas .offcanvas-body {
  padding-top: 1rem;
}

.navbar-toggler:focus {
  box-shadow: none !important;
}

/* Offcanvas / Mobile Menu Logo */
.offcanvas-logo {
  max-width: 130px;
  /* default size for desktop */
  height: auto;
  transition: max-width 0.3s ease;
}

/* Full-width button inside offcanvas (mobile) */
.offcanvas .take-test-btn {
  display: block;
  width: 100%;
  padding: 10px 0;
  font-size: 1rem;
  border-radius: 30px;
}

@media (max-width: 768px) {
  .offcanvas-logo {
    max-width: 100px;
    /* smaller for tablets / small screens */
  }
}

@media (max-width: 576px) {
  .offcanvas-logo {
    max-width: 100px;
    /* even smaller for mobile */
  }
}

/* ==========================
   Hero Section - Slider
========================== */
.hero-slider .discount-section-slider {
  color: #fff;
  padding-top: 10%;
  /* padding-left: 20%; */
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.hero-slider .carousel-control-next,
.hero-slider .carousel-control-prev {
  top: 50%;
  bottom: 0;
  background-color: black !important;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.hero-slider .carousel-control-prev:hover,
.hero-slider .carousel-control-next:hover {
  background-color: var(--primary-color) !important;
  color: #fff;
}

/* .hero-slider .slide-image {
  max-width: 80%;
} */

.hero-slider .carousel-control-prev {
  left: 1%;
}

.hero-slider .carousel-control-next {
  right: 1%;
}

.hero-slider .discount-section-slider h1 {
  font-size: 52px;
  font-weight: 700;
}

.hero-slider .discount-section-slider h2 {
  font-size: 52px;
  font-weight: 700;
}

.hero-slider .discount-section-slider .discount-info {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.hero-slider .discount-section-slider .discount-info .info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.hero-slider .discount-section-slider .discount-info .info-item i {
  width: 50px;
  height: 50px;
  text-align: center;
  background: rgba(255, 255, 255, 0.2);
  padding: 18px;
  border-radius: 50%;
}

.hero-slider .discount-section-slider .discount-code {
  margin-top: 25px;
  font-size: 1.1rem;
}

.hero-slider .discount-section-slider .shop-btn {
  margin-top: 20px;
  background-color: #fff;
  color: #0099C4;
  border: none;
  padding: 10px 30px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}

.hero-slider .discount-section-slider .shop-btn:hover {
  background-color: #e0f2f1;
  color: #0080a3;
}

@media screen and (max-width: 992px) {
  .hero-slider .slide-image {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 768px) {
  .hero-slider .slide-image {
    margin-bottom: 30px;
  }

  /* .hero-slider .slide-image {
    min-width: 460px !important;
  } */

  .hero-slider .carousel-item {
    min-height: 60vh;
  }

  .hero-slider .discount-section-slider h1 {
    font-size: 32px !important;
    text-align: center;
  }

  .hero-slider .discount-section-slider h2 {
    font-size: 32px !important;
    text-align: center;
  }

  .hero-slider .discount-section-slider .discount-info {
    justify-content: center;
    gap: 20px;
    font-size: 14px;
  }

  .hero-slider .discount-section-slider {
    padding: 50px 20px 20px 20px;
  }

  .hero-slider .slide-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
  }

  .hero-slider .discount-section-slider .shop-btn {
    padding: 5px 15px;
    display: inline-block;
  }

  .hero-slider .carousel-control-next,
  .hero-slider .carousel-control-prev {
    display: none;
  }

  .hero-slider .discount-section-slider .discount-info .info-item i {
    width: 40px;
    height: 40px;
    padding: 12px;
  }
}

/* ==========================
   Hero Section - Categories
========================== */
.category-section {
  background-color: #fff;
}

.category-section .category-item {
  position: relative;
  display: flex;
  justify-content: space-evenly;
}

.category-section .category-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  background-color: #dee2e6;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
}

.category-section .icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
}

.category-section .bg-teal {
  background-color: #27c0c3;
}

.category-section .bg-pink {
  background-color: #ef4d82;
}

.category-section .bg-green {
  background-color: #7ac142;
}

.category-section .bg-blue {
  background-color: #52b4f5;
}

.category-section .bg-orange {
  background-color: #f6b235;
}

.category-section .mobile-category-divider {
  display: none;
}

@media (max-width: 768px) {
  .category-section .category-item {
    gap: 5px;
    justify-content: flex-start;
  }

  .category-section .category-item .icon-text {
    max-width: 70%;
  }

  .category-section .category-item .icon-text h6 {
    margin-bottom: 0 !important;
    font-size: 12px;
  }

  .category-section .category-item .icon-circle {
    width: 30px;
    height: 30px;
    font-size: 15px;
    margin: 0;
  }

  .category-section .mobile-category-divider {
    display: inline-block;
    margin-top: 10px;
    max-width: 90%;
  }
}

/* ==========================
   Services Section
========================== */
.section-services p,
.section-services a,
.section-services h1,
.section-services h2,
.section-services h4,
.section-services h5,
.section-services h6,
.section-services ul,
.section-services li {
  margin: 0;
  padding: 0;
}

.treatment {
  background-image: url('assets/img/bg/treatment.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.section-services {
  color: #202020;
}

.section-services .container {
  width: 90%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.section-services .header-section {
  margin-bottom: 20px;
}

.section-services .header-section .description {
  color: #282828;
}

.section-services .single-service {
  position: relative;
  margin-top: 30px;
  min-height: 410px;
  background-color: #fff;
  border-radius: 10px;
  padding: 40px 30px;
  overflow: hidden;
}

.section-services .single-service .content {
  position: relative;
  z-index: 20;
}

.section-services .single-service .circle-before {
  position: absolute;
  top: 0;
  right: 0px;
  transform: translate(40%, -40%);
  width: 150px;
  height: 150px;
  background-color: var(--primary-color);
  border: 6px solid var(--secondary-color);
  border-radius: 50%;
  opacity: 0.9;
  z-index: 10;
  transition: all .6s;
}

.section-services .single-service:hover .circle-before {
  width: 100%;
  height: 100%;
  transform: none;
  border: 0;
  border-radius: 0;
  opacity: 1;
}

.section-services .single-service .icon {
  display: inline-block;
  /* margin-top: 10px;
  margin-bottom: 26px; */
  /* width: 70px;
  height: 70px; */
  /* background-color: var(--primary-color); */
  border-radius: 5px;
  line-height: 70px;
  text-align: center;
  color: #fff;
  font-size: 30px;
  transition: all .3s;
}

.section-services .single-service:hover .icon {
  /* background-color: #fff; */
  color: var(--primary-color);
}

.single-service .service-image {
  height: 250px;
  overflow: hidden;
  margin-bottom: 30px;
}

.single-service .service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 5px;
}

.section-services .single-service .title {
  margin-bottom: 18px;
  font-weight: 700;
  font-size: 23px;
  transition: color .3s;
}

.section-services .single-service:hover .sub-title {
  color: #fff;
}

.section-services .single-service .description {
  /* margin-bottom: 20px; */
  font-size: 14px;
  transition: color .3s;
}

.section-services .single-service:hover .description {
  color: #fff !important;
}

.section-services .single-service a {
  position: relative;
  font-size: 16px;
  text-decoration: none;
  font-weight: 500;
}

.section-services .single-service:hover a {
  color: #fff !important;
}

.section-services .single-service a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--primary-color);
  transition: background-color .3s;
}

.section-services .single-service:hover a:after {
  background-color: #fff;
}

.section-services .single-service:hover .service-image img {
  position: relative;
  z-index: 11;
}

@media screen and (max-width: 768px) {
  .section-services .container {
    width: 100%;
  }

  .section-services .header-section {
    margin-bottom: auto !important;
  }

  .treatment {
    background-image: url('assets/img/bg/treatment_mobile.webp');
  }
}

/* ==========================
   Doctor Gallery
========================== */
.doctor-gallery {
  background: url('assets/img/doctor-says/doctor-say-bg.png') no-repeat center left;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  min-height: 700px;
  /* ensures full height */
  display: flex;
  align-items: center;
}

.doctor-gallery h2 {
  text-align: center;
}

.doctor-gallery .doctor-card {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: all 0.3s ease;
}

.doctor-gallery .doctor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.doctor-gallery .specialization-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #8bc34a;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  padding: 5px 10px;
  font-size: 0.8rem;
}

.doctor-gallery .view-profile-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.2rem;
  color: #bbb;
  cursor: pointer;
}

.doctor-gallery .view-profile-btn:hover {
  color: #009688;
}

.doctor-gallery img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  height: 280px;
}

.doctor-gallery .doctor-info {
  margin-top: 10px;
}

.doctor-gallery .doctor-info h5 {
  font-weight: 600;
  margin: 8px 0 2px;
  color: #333;
}

.doctor-gallery .doctor-info small {
  color: #777;
}

.doctor-gallery .experience {
  color: #e91e63;
  font-weight: 600;
  margin-top: 6px;
}

.doctor-gallery .book-appointment-btn {
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  font-size: 14px;
  padding: 7px 10px;
  border-radius: 2px;
  margin-top: 10px;
  transition: background 0.3s;
}

.doctor-gallery .book-appointment-btn:hover {
  background-color: var(--primary-color) !important;
}

.doctor-gallery .carousel-control-prev .carousel-control-prev-icon,
.doctor-gallery .carousel-control-next .carousel-control-next-icon {
  filter: invert(1) !important;
}

.doctor-gallery .carousel-control-prev:hover,
.doctor-gallery .carousel-control-next:hover {
  background-color: #00bcd4;
  color: #fff;
}

.doctor-gallery .owl-nav button {
  position: absolute;
  top: -10%;
  transform: translateY(-50%);
  background: #fff !important;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.doctor-gallery .owl-nav button.owl-prev {
  right: 50px;
}

.doctor-gallery .owl-nav button.owl-next {
  right: 0;
}

.doctor-gallery .owl-nav button i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.doctor-gallery .owl-nav button:hover {
  background: var(--primary-color) !important;
}

.doctor-gallery .owl-nav button:hover i {
  color: #fff;
}


@media (max-width: 768px) {
  .doctor-gallery .doctor-image {
    display: none;
  }

  .doctor-gallery img {
    height: 220px;
  }

  .doctor-gallery .book-appointment-btn {
    padding: 6px 14px;
    font-size: 14px;
  }

  .doctor-gallery .carousel-control-prev,
  .doctor-gallery .carousel-control-next {
    width: 35px !important;
    height: 35px !important;
  }

  .doctor-gallery h2 {
    padding-left: 0;
    margin-bottom: 25px;
  }
}

/* ==========================
   Customer Feedback / Testimonials
========================== */

.customer-feedback {
  background-image: url('assets/img/bg/smile-face.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-bottom: 50px;
}

.customer-feedback img {
  max-width: 100%;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(36, 174, 177, 0.2);
}

.feedback-slider-item {
  padding: 60px;
  margin-top: -40px;
}

.customer-name {
  margin-top: 15px;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
}

.customer-rating {
  background-color: var(--light-color);
  border: 3px solid var(--border-color);
  color: var(--dark-color);
  font-weight: 700;
  border-radius: 50%;
  position: absolute;
  width: 47px;
  height: 47px;
  font-size: 15px;
  right: 0;
  top: 77px;
  box-shadow: 0 2px 6px rgba(0, 193, 255, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

/* Recommended addition for the Star Icon */
.customer-rating svg {
  width: 12px;
  height: 12px;
  color: var(--dark-color);
}

.slider-nav {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.slider-nav button {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: var(--primary-color);
  color: white;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
}


/* ======= GOOGLE REVIEWS (Continuous Carousel) ======= */
/* --- Unique custom class for this carousel --- */
.review-heading img {
  max-width: 250px;
}

.testimonial-container .item {
  padding: 5px;
}

.testimonial-container .card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  min-height: 275px;
  background: #f8f9fa;
}

.testimonial-container .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.15);
}

.testimonial-container .card-body {
  padding: 20px;
}

.testimonial-container .card-title {
  color: #222;
  font-weight: 600;
}

.testimonial-container p.card-text {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 0;
}

.testimonial-container .text-warning i {
  color: #f8b400;
}

.testimonial-container .owl-stage {
  display: flex;
  align-items: stretch;
}

.testimonial-container .owl-carousel .owl-item img {
  width: 100px !important;
  height: 100px !important;
}

/* ==========================
   Responsive Tweaks
========================== */
@media (max-width: 1200px) {
  .testimonial-container .continuous-carousel .slide {
    width: 300px;
  }
}

@media (max-width: 992px) {
  .testimonial-container .continuous-carousel {
    width: 92%;
    padding: 30px 0;
  }

  .testimonial-container .continuous-carousel .slide {
    width: 260px;
  }
}

@media (max-width: 768px) {
  .review-heading img {
    max-width: 200px;
  }
}

/* Dignosis Section   */
.diagnosis {
  box-sizing: border-box;
}

.diagnosis .content {
  background: var(--light-color);
  color: var(--text-color);
  line-height: 1.6em;
  padding: 85px 20px 20px;
  position: relative;
  max-width: 600px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-color);
  border-radius: 10px;
}

.diagnosis .my-header {
  font-size: 24px;
  min-height: 70px;
  background: var(--primary-color);
  color: #fff;
  padding: 20px 15px;
  text-align: center;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  position: absolute;
  top: 0;
  left: -20px;
  width: calc(100% + 40px);
  border-radius: 8px 8px 0 0;
}

.diagnosis .my-header:before,
.diagnosis .my-header:after {
  content: "";
  display: block;
  position: absolute;
  border: 10px solid var(--primary-color-third);
}

.diagnosis .my-header:before {
  border-left-color: transparent;
  border-bottom-color: transparent;
  left: 0;
  bottom: -20px;
}

.diagnosis .my-header:after {
  border-right-color: transparent;
  border-bottom-color: transparent;
  right: 0;
  bottom: -20px;
}

.diagnosis .icon-box {
  width: 70px;
  height: 70px;
  margin-top: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 26px;
  transition: all 0.3s ease;
}

.diagnosis .bg-teal {
  background-color: #27c0c3;
}

.diagnosis .bg-pink {
  background-color: #ef4d82;
}

.diagnosis .bg-green {
  background-color: #7ac142;
}

@media screen and (max-width: 768px) {
  .diagnosis .content {
    margin: 0 30px 20px 30px;
  }

  .diagnosis .col-md-6:last-child .content {
    margin: 0 30px 0 30px !important;
  }
}

/* Image Grid   */
.afterbefore.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 20px;
  padding: 30px 0 10px 0;
  margin: 70px 20px 70px 20px;
}

.afterbefore.image-card {
  background-color: var(--primary-color);
  padding: 7px;
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

@media screen and (max-width: 768px) {
  .afterbefore.image-grid {
    margin: 40px auto 40px auto;
    display: block;
  }
}

/* Video Grid   */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 20px;
  padding: 30px 0 0 0;
  margin: 0 20px 70px 20px;
}

.video-card {
  background-color: whitesmoke;
  padding: 15px;
  box-shadow: 0 0 15px rgba(0, 0, 0, .1);
  transition: transform 0.3s ease;
}

.video-card:hover {
  transform: translateY(-5px);
}

.video-title {
  border-bottom: 1px solid #ccc;
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 600;
  color: #222;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: 6px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-card p {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: #333;
}

@media screen and (max-width: 768px) {
  .video-grid {
    margin: auto auto 40px auto;
    display: block;
  }
}

/* Rainbow Button   */
.rainbow-btn {
  text-align: center;
  position: relative;
  color: var(--primary-color) !important;
  text-decoration: none;
  border-radius: 5px;
  box-sizing: border-box;
  display: block;
  z-index: 2;
  overflow: hidden;
  padding: 2px;
  min-width: 200px;
  font-size: 15px;
}

.rainbow-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background: linear-gradient(115deg,
      var(--primary-color) 0%,
      var(--primary-color-third) 25%,
      var(--highlight-color) 50%,
      var(--primary-color-second) 75%,
      var(--secondary-color) 100%);
  background-size: 50% 100%
}

.rainbow-btn span {
  position: relative;
  z-index: 2;
  padding: 5px 15px;
  text-decoration: none;
  align-items: center;
  background: #fff;
  border-radius: 3px;
  display: block;
  justify-content: center;
  box-sizing: border-box;
  height: 100%;
}

.rainbow-btn:focus:before,
.rainbow-btn:before {
  animation: rainbow-btn .75s linear infinite
}

@keyframes rainbow-btn {
  to {
    transform: translateX(-50%)
  }
}

@media screen and (max-width: 768px) {
  .rainbow-btn {
    min-width: 100px;
  }

  .rainbow-btn span {
    padding: 5px 8px;
  }
}

/* Book Appointement Button   */
.book-now-btn-wrapper {
  position: relative;
  width: 100%;
  text-decoration: none;
  font-size: 14px;
}

.book-now-btn {
  display: inline-block;
  color: #fff;
  background-color: var(--primary-color-second);
  border-radius: 5px;
  letter-spacing: 1px;
  padding: 5px 15px;
  border: 2px solid var(--primary-color-second);
  transition: all 0.3s ease;
}

.book-now-btn i {
  animation: arrow-animation 1.5s infinite;
}

.book-now-btn i:first-child {
  animation-delay: 0.2s;
  margin-left: 5px;
  opacity: 0.15;
}

.book-now-btn i+i {
  animation-delay: 0.4s;
  opacity: 0.5;
}

.book-now-btn i+i+i {
  animation-delay: 0.6s;
  opacity: 1;
}

.book-now-btn:hover i {
  animation-duration: 2s;
  animation-iteration-count: 1;
}

@keyframes arrow-animation {
  0% {
    opacity: 0.15;
  }

  50% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
  }
}



/* ==========================
   Footer
========================== */

/* ======= TOP CONTACT SECTION ======= */
.footer-top {
  padding: 40px 0;
  border-bottom: 1px solid #e4e4e4;
}

.footer-top .icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #e6f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: var(--primary-color);
  margin: 0 0 10px;
}

.footer-top h6 {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16px;
  color: #333;
}

.footer-top a {
  color: var(--primary-color) !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
}

.footer-top p {
  color: #6c757d;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .footer-top a {
    font-size: 20px;
  }

  .footer-top .icon-circle {
    width: 50px;
    height: 50px;
    font-size: 30px;
  }
}

/* ======= MAIN FOOTER SECTION ======= */
.footer-main {
  background-color: rgb(31 41 55);
  padding: 50px 0;
  border-bottom: 1px solid #e4e4e4;
}

.footer-main p {
  color: #6c757d;
  font-size: 14px;
  margin-top: 10px;
}

.footer-main .footer-logo .logo {
  margin-bottom: 20px;
}

.footer-main h6 {
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #fff;
}

.footer-main ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-main ul li {
  margin-bottom: 12px;
}

.footer-main ul li a {
  color: #6c757d;
  text-decoration: none;
  font-size: 14px;
}

.footer-main ul li a:hover {
  color: #27c0c3;
}

.socials {
  color: #e0e0e0;
  padding: 15px 0;
}

.socials h6 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 1.1em;
  font-weight: 600;
}

.social-link {
  display: flex;
  align-items: center;
  color: #e0e0e0;
  margin-bottom: 10px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #fff;
}

.social-link .social-icon {
  padding: 2px;
  color: #fff;
  border-radius: 10%;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  font-size: 12px;
}

/* Facebook */
.social-link[href*="facebook.com"] .social-icon {
  background-color: #366CDD;
}

/* Instagram */
.social-link[href*="instagram.com"] .social-icon {
  background-color: #ff00dd;
}

/* YouTube */
.social-link[href*="youtube.com"] .social-icon {
  background-color: #FF0016;
}

/* LinkedIn */
.social-link[href*="linkedin.com"] .social-icon {
  background-color: #009BFF;
}

/* Twitter */
.social-link[href*="twitter.com"] .social-icon {
  background-color: #226cff;
}

.social-link:hover .social-icon {
  opacity: 0.85;
}

@media (max-width: 768px) {
  .footer-main {
    padding: 40px 0;
  }

  .footer-main .no-border-mobile {
    border-right: 0 solid !important;
  }

  .footer-main .footer-logo {
    text-align: center !important;
  }

  .footer-main .footer-logo p {
    text-align: justify !important;
  }
}

/* ======= BOTTOM FOOTER ======= */
.footer-bottom {
  background-color: #f8f9fb;
  padding: 20px 0;
  text-align: center;
}

.footer-bottom img {
  height: 25px;
  margin: 0 8px;
}

.footer-bottom p {
  margin-bottom: 10px;
  color: #6c757d;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .footer-bottom img {
    height: 15px;
  }
}

/* What Doctor Says */
.what-doctor-says {
  background: url('assets/img/doctor-says/doctor-say-bg.webp') no-repeat center left;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

/* CARD */
.what-doctor-says .doctor-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(4, 157, 191, 0.15);
  border-top: 10px solid var(--secondary-color);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  padding-bottom: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
  z-index: 1;
}

/* Accent borders on both sides */
.what-doctor-says .doctor-card::before,
.what-doctor-says .doctor-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 100%;
  width: 4px;
  border-radius: 6px;
  background: linear-gradient(180deg, #049dbf, #a6329e);
  opacity: 0.7;
}

.what-doctor-says .doctor-card::before {
  left: 0;
}

.what-doctor-says .doctor-card::after {
  right: 0;
}

/* Speech bubble */
.what-doctor-says .speech-bubble {
  position: relative;
  display: inline-block;
  width: 95%;
  max-width: 95%;
}

.what-doctor-says .speech-bubble .bubble-frame {
  margin-top: 20px;
  width: 100%;
  height: auto;
}

.what-doctor-says .speech-bubble .bubble-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.3;
  width: 85%;
}

/* QUESTION IMAGE */
.what-doctor-says .question-img {
  object-fit: contain;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  position: absolute;
  left: 40;
  top: 95;
  background: #fff;
  border: 2px solid rgba(4, 157, 191, 0.4);
  box-shadow: 0 6px 18px rgba(4, 157, 191, 0.2);
  transition: all 0.4s ease;
}

@media (max-width: 768px) {

  .what-doctor-says .question-img {
    height: 50px;
    width: 50px;
    left: 40px;
    top: 100px;
  }
}

.what-doctor-says .question-img:hover {
  box-shadow: 0 8px 22px rgba(166, 50, 158, 0.28);
  transform: scale(1.07);
}

/* BUTTON */
.what-doctor-says .read-btn {
  background-color: var(--secondary-color);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 10;
  padding: 8px 20px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.4s ease;
  overflow: hidden;
}

.what-doctor-says .read-btn:hover {
  background-color: var(--secondary-color);
  ;
  box-shadow: 0 4px 15px rgba(4, 157, 191, 0.4);
}

.what-doctor-says .read-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-25deg);
  transition: 0.4s;
}

.what-doctor-says .read-btn:hover::after {
  left: 100%;
}

/* FLIP CARD */
.flip-card {
  background-color: transparent !important;
  width: 100%;
  height: 100%;
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.4s;
  transform-style: preserve-3d;
  border-radius: 12px;
  border: 1px solid rgba(4, 157, 191, 0.2);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Flip on button hover */
.flip-btn:hover+.flip-card .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-btn:hover+.flip-card {
  position: absolute;
  z-index: 2;
}

/* FRONT & BACK */
.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-card-front {
  background-color: #fff;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.06);
}

.flip-card-back {
  background: linear-gradient(135deg, #049dbf, #a6329e);
  color: white;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px;
}

/* --- Appointment Button --- */
.what-doctor-says .book-appointment-btn:hover {
  background-color: var(--primary-color) !important;
}

/* Medium-Large Modal Width */
.modal-custom {
  max-width: 750px;
  max-height: 500px;
}

/* Modal Design */
.lead-form-container {
  border-radius: 15px;
  border: none;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.2);
}

/* Close button (hidden by default) */
.close-btn-delayed {
  position: absolute;
  top: 10px;
  right: 10px;
  display: none;
  z-index: 10;
}

/* Custom Gradient Submit Button */
.modal-content {
  border-radius: 20px;
}

.modal-content .submit-btn {
  background: linear-gradient(90deg, #00aaff, #7b3ff7);
  color: white;
  font-weight: 600;
  padding: 10px 30px;
  border: none;
  border-radius: 8px;
  margin-top: 15px;
  width: 100%;
  transition: all 0.3s ease;
}

.modal-content .submit-btn:hover {
  background: linear-gradient(90deg, #7b3ff7, #00aaff);
  transform: scale(1.03);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.modal-content .treatment-options .row {
  display: flex;
  flex-wrap: wrap;
}

.modal-content .treatment-options .col-md-6 {
  display: flex;
  align-items: center;
  gap: 8px;
}


/* Responsive tweak */
@media (max-width: 768px) {
  .modal-custom {
    max-width: 95%;
  }
}



/* ==========================
    About Banner Section (FINAL REVISION: Full Width, Shorter Height)
========================== */
.about-section {
  min-height: 150px;
  position: relative;
  overflow: hidden;
  /* Removed display: flex; from here as the image/h1 are now siblings */
}

/* Ensure the container truly has no padding if you want it to stretch edge-to-edge */
.about-section .container-fluid {
  padding-right: 0 !important;
  padding-left: 0 !important;
  position: relative;
  height: 100%;
}

/* New CSS for the image to force it to 100% width and cover the space */
.about-section img.about-banner-img {
  width: 100%;
  /* <<-- This is the key fix for full width */
  height: 250px;
  /* Reduced height from previous step */
  object-fit: cover;
  display: block;
  filter: brightness(0.7);
}

/* Style for the About Us title (positioning remains the same) */
.about-section h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--light-color);
  font-size: 80px;
  font-weight: 700;
  z-index: 2;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
  margin-bottom: 0;
}

/* --- Responsive Adjustments (Heights retained from previous step) --- */

@media (max-width: 1200px) {
  .about-section img.about-banner-img {
    height: 220px;
  }

  .about-section h1 {
    font-size: 64px;
  }
}

@media (max-width: 992px) {
  .about-section img.about-banner-img {
    height: 180px;
  }

  .about-section h1 {
    font-size: 52px;
  }
}

@media (max-width: 768px) {
  .about-section img.about-banner-img {
    height: 150px;
  }

  .about-section h1 {
    font-size: 40px;
  }
}

@media (max-width: 576px) {
  .about-section img.about-banner-img {
    height: 120px;
  }

  .about-section h1 {
    font-size: 32px;
  }
}

/* ==========================
    Our Story / Our Services Section
========================== */
.our-story-section {
  background-color: #fff;
}

/* Responsive padding adjustment inherited from index.html (40px top/bottom on mobile) */
@media (max-width: 768px) {
  .our-story-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

/* --- Image Styling --- */
.our-story-section .about-img img {
  /* Use border-radius and box-shadow similar to other cards/elements */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.our-story-section .about-img img:hover {
  transform: scale(1.01);
  /* Subtle lift on hover */
}

/* --- Typography --- */
.our-story-section h2 {
  /* Use a vibrant color for the main title, similar to your primary-second */
  color: var(--primary-color-second);
  font-weight: 700;
  margin-bottom: 15px;
}

.our-story-section h3 {
  /* Use the main primary color for the sub-title */
  color: var(--primary-color);
  margin-top: 25px;
  font-weight: 600;
  /* Space above Our Services title */
  margin-bottom: 15px;
}

.our-story-section p {
  color: var(--text-color) !important;
}

/* --- Services List Styling --- */
.our-story-section ul {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  row-gap: 5px;
}

.our-story-section ul li {
  position: relative;
  padding-left: 25px;
  padding: 0 20px;
  margin-bottom: 15px;
  width: 50%;
  font-size: 15px;
  font-weight: 500;
}

.our-story-section ul li::before {
  content: "\f058";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
  font-size: 14px;
  line-height: 1.4;
}

/* Responsive List Adjustment */
@media (max-width: 768px) {
  .our-story-section ul li {
    width: 100%;
    padding: 0;
  }
}

/* ==========================
    Mission, Vision, Values Section
========================== */
.mission-section {
  background-color: var(--light-color);
}

.mission-section p,
.mission-section b {
  font-size: 14px;
}

/* --- Card Styling --- */
.mission-section .card {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background-color: #fff;
  padding: 30px;
  transition: 0.3s all ease;
  text-align: center;
}

.mission-section .card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  /* More pronounced shadow on hover */
  border-color: var(--primary-color);
  /* Highlight border on hover */
}

/* .mission-section .card h5 {
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 15px;
} */

/* --- Icon Styling --- */
.mission-section .icon-circle {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px auto;
  border-radius: 50%;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  color: #fff;
  transition: background-color 0.3s ease;
}

.mission-section .card:hover .icon-circle {
  /* Use the secondary color on hover for visual interest */
  background-color: var(--secondary-color);
}

/* Founder Section */
.founder-section {
  position: relative;
  max-width: 1100px;
  background-color: var(--primary-color-second);
  display: flex;
  margin-top: 70px;
  flex-wrap: wrap;
  align-items: stretch;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.founder-section .founder-image {
  flex: 1;
  background: url("assets/img/doctors/drsawant.png") center/cover no-repeat;
  position: relative;
  min-height: 500px;
}

.founder-section .founder-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 157, 191, 0.15), rgba(0, 0, 0, 0.4));
}

.founder-section .founder-content {
  flex: 1;
  background: #fff;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 6px solid var(--primary-color);
}

.founder-section .founder-content h5 {
  color: var(--secondary-color);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.founder-section .founder-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
  position: relative;
}

.founder-section .founder-content h2::after {
  content: "";
  width: 70px;
  height: 3px;
  background: var(--primary-color);
  position: absolute;
  bottom: -10px;
  left: 0;
  border-radius: 2px;
}

.founder-section .founder-stats {
  margin-top: 25px;
  display: grid;
  gap: 10px;
}

.founder-section .founder-stats .block {
  display: flex;
  align-items: center;
  gap: 8px;
}

.founder-section .founder-stats .block svg {
  color: var(--primary-color);
  font-size: 18px;
  width: 22px;
  text-align: center;
}

.founder-section .founder-stats .num {
  font-weight: 600;
  color: var(--primary-color);
  width: 140px;
}

.founder-section .founder-stats .text {
  color: #555;
}

.founder-section .founder-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin-top: 20px;
}

.founder-section .founder-content p strong {
  color: var(--secondary-color);
  font-weight: 600;
}

.founder-section .highlight-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 500;
  margin-top: 25px;
  box-shadow: 0 5px 15px rgba(4, 157, 191, 0.3);
}

.founder-section .highlight-badge i {
  margin-right: 10px;
  font-size: 18px;
}

@media (max-width: 992px) {
  .founder-section {
    flex-direction: column;
    border-radius: 0;
  }

  .founder-section .founder-content {
    border-left: none;
    border-top: 6px solid var(--primary-color);
    padding: 40px 25px;
  }

  @media (max-width: 768px) {
    .founder-section {
      margin-top: 40px;
    }
  }
}

/* Why Chose US */

.choose-us-section .curved-image-frame {
  position: relative;
  background: #fff;
  border: 4px solid var(--primary-color-third);
  width: 420px;
  padding: 10px;
  border-top-left-radius: 60px;
  border-bottom-right-radius: 60px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.choose-us-section .curved-image-frame img {
  width: 100%;
  border-radius: 50px 0 50px 0;
  display: block;
}

.choose-us-section .choose-us-section {
  padding: 60px 0;
}

.choose-us-section .choose-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 15px;
  padding: 10px;
  margin-bottom: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.choose-us-section .icon-box {
  font-size: 22px;
  padding: 15px;
  border-radius: 12px;
  flex-shrink: 0;
}

.choose-us-section .icon-blue {
  background-color: #e3f5ff;
  color: #007bff;
}

.choose-us-section .icon-pink {
  background-color: #fde6ff;
  color: #ff3c8b;
}

.choose-us-section .icon-orange {
  background-color: #ffece0;
  color: #ff7a00;
}

.choose-us-section .icon-green {
  background-color: #e3ffe7;
  color: #00b67a;
}

.choose-us-section .icon-purple {
  background-color: #f0e8ff;
  color: #7b2cff;
}

.choose-us-section .icon-yellow {
  background-color: #fff9da;
  color: #e6b800;
}

.choose-us-section .icon-teal {
  background-color: #e0fffa;
  color: #00bfae;
}

.choose-us-section .choose-card h5 {
  font-weight: 600;
  font-size: 16px;
  color: #003366;
  margin-bottom: 5px;
}

.choose-us-section .choose-card p {
  margin-bottom: 0;
  font-size: 15px;
}

/* --- Section Header Styling --- */
/* Your HTML used h2.fw-bold, we need to adapt the provided title styles */
.why-choose .text-center h2 {
  /* Using your provided section-title look but keeping h2 tag */
  font-size: 32px;
  /* Adjusted size */
  font-weight: 800;
  color: var(--heading-color);
  /* Used heading-color for professionalism */
  text-transform: uppercase;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.why-choose .text-center p.text-muted {
  font-size: 1.1rem;
  color: var(--text-color);
  margin-bottom: 0;
  /* Let the divider handle the spacing */
}

.why-choose .divider {
  width: 80px;
  height: 3px;
  background: var(--primary-color);
  margin: 15px auto 30px;
  /* Added spacing after the divider */
  border-radius: 3px;
}

/* --- Why Card Styling (From Your Shared CSS) --- */
.why-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 5px solid transparent;
}

.why-card:hover {
  transform: translateY(-6px);
  border-top-color: var(--primary-color);
  box-shadow: 0 12px 28px rgba(0, 153, 196, 0.25);
}

.why-card h5 {
  color: var(--heading-color);
}

.why-card p {
  color: var(--text-color);
  font-size: 15px;
  line-height: 1.6;
}

/* --- Icon Styling (From Your Shared CSS) --- */
.icon-wrap {
  width: 70px;
  height: 70px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 15px;
  /* Added margin-bottom */
  transition: 0.3s ease;
}

.icon-wrap.pink {
  /* Assuming var(--highlight-color) is your secondary brand color */
  background: var(--highlight-color);
  color: #fff;
}

.why-card:hover .icon-wrap {
  transform: rotate(10deg) scale(1.1);
}

/* ==========================
    FAQ Section (Integrated with Your Shared Styles)
========================== */
.faq-section {
  background: #fff;
  text-align: center;
}

.faq-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: #fff;
  border-radius: 25px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.faq-content {
  flex: 1;
  text-align: left;
  padding: 50px 60px 0 0;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  padding: 15px 0;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
  overflow: hidden;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  font-size: 22px;
  color: var(--highlight-color);
}

.faq-item.active .faq-question::after {
  content: '-';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  margin-bottom: 10px;
}

.faq-answer p {
  line-height: 1.6;
  margin-top: 5px;
}

.faq-image {
  flex: 1;
  background: var(--primary-color-third);
  padding: 10px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-image img {
  border: 2px solid var(--primary-color-second);
}

/* --- Responsive Adjustments (From Your Shared CSS) --- */
@media (max-width: 992px) {
  .faq-content {
    padding: 30px 25px;
  }
}

/* ==========================
    Contact Form Section
========================== */
.section-contact {
  /* Using your utility classes for spacing/padding */
  background-color: #fff;
  /* Ensures the form stands out */
}

/* Ensure the two columns have equal height and vertical centering */
.section-contact .row {
  align-items: center;
}

/* --- Map / Image Container Styling --- */
.section-contact .map-container {
  padding: 10px;
}

.section-contact .right-section img {
  border: 2px solid #fff;
}

.section-contact .right-section {
  background-color: var(--primary-color-third);
  border-radius: 5px;
}

.section-contact .form-select,
.section-contact .form-select option {
  outline: none !important;
  box-shadow: none !important;
}

/* --- Contact Form Styling --- */
.contact-form-section {
  padding: 30px;
  background-color: var(--light-bg-color);
  border-top: 10px solid var(--primary-color-second);
  border-bottom: 10px solid var(--primary-color-second);
  border-right: 3px solid var(--primary-color-second);
  border-left: 3px solid var(--primary-color-second);
  border-radius: 5px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.contact-form-section h2 {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--primary-color-second);
}

.contact-form-section p {
  color: var(--text-color);
  line-height: 1.6;
}

/* Form Input Styling */
.section-contact .form-label {
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 5px;
}

.section-contact .form-control,
.section-contact .form-select {
  border-radius: 6px;
  border: 1px solid #ddd;
  padding: 10px 15px;
  font-size: 1rem;
  color: var(--text-color);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.section-contact .form-control:focus,
.section-contact .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(0, 153, 196, 0.15);
}

/* --- Treatment Options (Dynamic Checkboxes) --- */
.treatment-options {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px dashed #ccc;
  border-radius: 6px;
}

.treatment-options .form-label {
  font-weight: 700;
  color: var(--primary-color);
  display: block;
  margin-bottom: 10px;
}

/* Styling the Checkbox Labels to be clickable/nice looking */
.treatment-options label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
  color: var(--heading-color);
  user-select: none;
}

.treatment-options input[type="checkbox"] {
  opacity: 0;
  position: absolute;
}

.treatment-options input[type="checkbox"]+label::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  border: 2px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  transition: background-color 0.2s, border-color 0.2s;
}

.treatment-options input[type="checkbox"]:checked+label::before {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 10px;
  color: #fff;
  text-align: center;
  line-height: 14px;
  padding: 1px;
}

/* --- Submit Button Styling --- */
.submit-btn {
  width: 100%;
  padding: 12px;
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-transform: uppercase;
}

/* .submit-btn:hover {
  background-color: var(--primary-color-second);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 153, 196, 0.6);
} */

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
  .section-contact .map-container {
    /* On mobile, move the map container above the form */
    order: -1;
    margin-bottom: 30px;
  }

  .section-contact .contact-form-section {
    padding: 25px;
  }
}

/* Privacy Policy */
/* --- Core Privacy Policy Styles --- */
#privacy-policy-section {
  padding: 60px 0;
  background-color: #ffffff;
  /* Clean white background */
  font-family: Arial, sans-serif;
  /* Highly readable font */
}

/* Container for max width and centering */
#privacy-policy-section .container {
  max-width: 90%;
  margin: 0 auto;
  padding: 0 25px;
}

/* Main Heading */
#privacy-policy-section h1 {
  font-size: 2.2em;
  color: #333;
  margin-bottom: 10px;
  border-bottom: 3px solid #3d3c3c;
  /* A distinct underline color */
  padding-bottom: 10px;
}

/* Section Headings (2. Information Collected, 3. Use of Information, etc.) */
#privacy-policy-section h2 {
  font-size: 1.6em;
  color: #3d3c3c;
  /* Use a brand/primary color for clarity */
  margin-top: 40px;
  margin-bottom: 15px;
  font-weight: 700;
}

#privacy-policy-section h2:first-of-type {
  font-size: 2.2em;
  color: #333;
  margin-bottom: 10px;
  border-bottom: 3px solid #3d3c3c;
  padding-bottom: 10px;
}

/* Sub-Headings (A. Scope of Application, B. Information You Provide, etc.) */
#privacy-policy-section h3.sub-heading-pp {
  font-size: 1.2em;
  color: #333;
  margin-top: 25px;
  margin-bottom: 10px;
  font-weight: 700;
}

/* Paragraph Text */
#privacy-policy-section p {
  font-size: 1em;
  line-height: 1.7;
  color: #444;
  margin-bottom: 20px;
  text-align: justify;
  /* Justify text for a formal, clean look */
}

/* Lists */
#privacy-policy-section ul {
  list-style-type: disc;
  margin: 15px 0 20px 20px;
  padding-left: 20px;
}

#privacy-policy-section li {
  font-size: 1em;
  line-height: 1.7;
  color: #444;
  margin-bottom: 10px;
}

/* Last Updated Tag */
.last-updated {
  font-size: 0.9em;
  color: #777;
  margin-bottom: 30px;
  font-style: italic;
  text-align: left;
}

/* Address/Grievance Officer Info */
#privacy-policy-section address {
  font-style: normal;
  line-height: 1.8;
  background-color: #f0f8ff;
  /* Light blue background to highlight this section */
  padding: 15px;
  border-left: 5px solid #3d3c3c;
  margin-top: 20px;
  margin-bottom: 40px;
  color: #333;
}

/* Terms and Condition */
#terms-of-service-section {
  padding: 60px 0;
  background-color: #ffffff;
  /* Clean white background */
  font-family: Arial, sans-serif;
  /* Highly readable font */
}

/* Container for max width and centering */
#terms-of-service-section .container {
  max-width: 90%;
  margin: 0 auto;
  padding: 0 25px;
}

/* Main Heading */
#terms-of-service-section h1 {
  font-size: 2.2em;
  color: #333;
  margin-bottom: 10px;
  border-bottom: 3px solid #3d3c3c;
  /* A distinct underline color */
  padding-bottom: 10px;
}

/* Section Headings (2. Medical Disclaimer, 3. Purchase, etc.) */
#terms-of-service-section h2 {
  font-size: 1.6em;
  color: #3d3c3c;
  /* Use your brand/primary color */
  margin-top: 40px;
  margin-bottom: 15px;
  font-weight: 700;
}

#terms-of-service-section h2:first-of-type {
  font-size: 2.2em;
  color: #333;
  margin-bottom: 10px;
  border-bottom: 3px solid #3d3c3c;
  padding-bottom: 10px;
}

/* Sub-Headings (A. Professional Consultation, B. Suitability, etc.) */
#terms-of-service-section h3.sub-heading-toc {
  font-size: 1.2em;
  color: #333;
  margin-top: 25px;
  margin-bottom: 10px;
  font-weight: 700;
}

/* Paragraph Text */
#terms-of-service-section p {
  font-size: 1em;
  line-height: 1.7;
  color: #444;
  margin-bottom: 20px;
  text-align: justify;
  /* Justify text for a formal, clean look */
}

/* Lists (Used heavily for terms) */
#terms-of-service-section ul {
  list-style-type: disc;
  margin: 15px 0 20px 20px;
  padding-left: 20px;
}

#terms-of-service-section li {
  font-size: 1em;
  line-height: 1.7;
  color: #444;
  margin-bottom: 10px;
}

/* Last Updated Tag */
.last-updated {
  font-size: 0.9em;
  color: #777;
  margin-bottom: 30px;
  font-style: italic;
  text-align: left;
}

/* Address/Contact Info */
#terms-of-service-section address {
  font-style: normal;
  line-height: 1.8;
  background-color: #f0f8ff;
  padding: 15px;
  border-left: 5px solid #3d3c3c;
  margin-top: 20px;
  margin-bottom: 40px;
  color: #333;
}

/* --- Refund Policy Styles --- */
#refund-policy-section {
  padding: 60px 0;
  background-color: #ffffff;
  font-family: Arial, sans-serif;
}

#refund-policy-section .container {
  max-width: 90%;
  margin: 0 auto;
  padding: 0 25px;
}

#refund-policy-section h2 {
  font-size: 1.6em;
  color: #3d3c3c;
  margin-top: 40px;
  margin-bottom: 15px;
  font-weight: 700;
}

#refund-policy-section h2:first-of-type {
  font-size: 2.2em;
  color: #333;
  margin-bottom: 10px;
  border-bottom: 3px solid #3d3c3c;
  padding-bottom: 10px;
}

#refund-policy-section h3.sub-heading-toc {
  font-size: 1.2em;
  color: #333;
  margin-top: 25px;
  margin-bottom: 10px;
  font-weight: 700;
}

#refund-policy-section p {
  font-size: 1em;
  line-height: 1.7;
  color: #444;
  margin-bottom: 20px;
  text-align: justify;
}

#refund-policy-section ul {
  list-style-type: disc;
  margin: 15px 0 20px 20px;
  padding-left: 20px;
}

#refund-policy-section li {
  font-size: 1em;
  line-height: 1.7;
  color: #444;
  margin-bottom: 10px;
}

#refund-policy-section address {
  font-style: normal;
  line-height: 1.8;
  background-color: #f0f8ff;
  padding: 15px;
  border-left: 5px solid #3d3c3c;
  margin-top: 20px;
  margin-bottom: 40px;
  color: #333;
}

/* --- Shipping Policy Styles --- */
#shipping-policy-section {
  padding: 60px 0;
  background-color: #ffffff;
  font-family: Arial, sans-serif;
}

#shipping-policy-section .container {
  max-width: 90%;
  margin: 0 auto;
  padding: 0 25px;
}

#shipping-policy-section h2 {
  font-size: 1.6em;
  color: #3d3c3c;
  margin-top: 40px;
  margin-bottom: 15px;
  font-weight: 700;
}

#shipping-policy-section h2:first-of-type {
  font-size: 2.2em;
  color: #333;
  margin-bottom: 10px;
  border-bottom: 3px solid #3d3c3c;
  padding-bottom: 10px;
}

#shipping-policy-section h3.sub-heading-toc {
  font-size: 1.2em;
  color: #333;
  margin-top: 25px;
  margin-bottom: 10px;
  font-weight: 700;
}

#shipping-policy-section p {
  font-size: 1em;
  line-height: 1.7;
  color: #444;
  margin-bottom: 20px;
  text-align: justify;
}

#shipping-policy-section ul {
  list-style-type: disc;
  margin: 15px 0 20px 20px;
  padding-left: 20px;
}

#shipping-policy-section li {
  font-size: 1em;
  line-height: 1.7;
  color: #444;
  margin-bottom: 10px;
}

#shipping-policy-section address {
  font-style: normal;
  line-height: 1.8;
  background-color: #f0f8ff;
  padding: 15px;
  border-left: 5px solid #3d3c3c;
  margin-top: 20px;
  margin-bottom: 40px;
  color: #333;
}

/* Common Classes used across pages */
.last-updated {
  font-size: 0.9em;
  color: #777;
  margin-bottom: 30px;
  font-style: italic;
  text-align: left;
}


/* --- bfore-after --- */
.before-after-section .image-card {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 2px solid #fff;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.before-after-section .image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.before-after-section .image-card:hover img {
  transform: scale(1.05);
  filter: brightness(85%);
}

.before-after-section .ribbon {
  position: absolute;
  top: 15px;
  left: -40px;
  transform: rotate(-45deg);
  width: 160px;
  text-align: center;
  background: var(--secondary-color);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  padding: 5px 0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  letter-spacing: 1px;
  z-index: 2;
  transition: 0.3s ease;
}

.before-after-section .ribbon.after {
  left: auto;
  right: -40px;
  transform: rotate(45deg);
  background: var(--primary-color);
}

.before-after-section .image-card:hover .ribbon {
  filter: brightness(1.1);
  transform: rotate(-45deg) scale(1.05);
}

.before-after-section .image-card:hover .ribbon.after {
  transform: rotate(45deg) scale(1.05);
}

.before-after-section .col-md-6 {
  padding: 12px;
  border-radius: 5px;
  background-color: var(--primary-color-third);
}

/* Breadcrum */
.breadcrum-section {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 200px;
  margin-bottom: 0 !important;
  background-image: url('assets/img/breadcrum/clinic.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.breadcrum-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgb(4 157 191 / 30%);
  z-index: 1;
  mix-blend-mode: multiply;
}

.breadcrum-section ul.breadcrumb {
  margin-left: 50px;
  margin-bottom: 0 !important;
  position: relative;
  z-index: 2;
  display: inline-block;
  list-style: none;
}

.breadcrum-section ul.breadcrumb li {
  float: right;
  padding: 5px !important;
  background-color: #fff;
  border-radius: 50px;
  position: relative;
  margin-left: -50px;
  transition: all 0.2s;
}

.breadcrum-section ul.breadcrumb li a {
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  height: 50px !important;
  color: #ffffff;
  background-color: #65BA99;
  text-align: center;
  min-width: 50px;
  display: block;
  line-height: 50px !important;
  padding-left: 52px;
  padding-right: 33px;
  overflow: hidden;
  position: relative;
}

.breadcrum-section ul.breadcrumb li a .icon {
  font-size: 18px;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
}

.breadcrum-section ul.breadcrumb li a .text {
  display: none;
  opacity: 0;
  font-weight: 600;
  color: #fff;
}

.breadcrum-section ul.breadcrumb li a {
  background-color: #13A2B0;
}

.breadcrum-section ul.breadcrumb li a .text {
  display: inline-block;
  letter-spacing: 0.5px;
  font-size: 16px;
  text-transform: uppercase;
  opacity: 1;
  margin-left: 20px;
  transition: opacity 0.3s ease;
}

.breadcrum-section ul.breadcrumb li:last-child a {
  padding: 0;
}

.breadcrum-section ul.breadcrumb li:last-child {
  padding: 3px;
  margin-top: 0;
}

.breadcrum-section ul.breadcrumb li:last-child a {
  width: 50px;
  height: 50px !important;
  line-height: 50px !important;
}

@media screen and (max-width: 768px) {
  .breadcrum-section ul.breadcrumb li a {
    min-width: 40px;
    line-height: 40px !important;
    height: 40px !important;
  }

  .breadcrum-section ul.breadcrumb li:last-child a {
    width: 40px;
    height: 40px !important;
    line-height: 40px !important;
  }

  .breadcrum-section {
    height: 150px;
  }

  .breadcrum-section ul.breadcrumb li a .icon {
    left: 10px;
    font-size: 16px;
  }

  .breadcrum-section ul.breadcrumb li a .text {
    font-size: 14px;
  }
}

/* Product .card */
.product-card .card {
  width: 100%;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  margin: 20px auto;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.product-card .badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #00b67a;
  /* background: linear-gradient(to right,
      rgba(169, 3, 41, 1) 0%,
      rgba(196, 72, 72, 1) 44%,
      rgba(170, 34, 56, 1) 100%); */
  color: #fff;
  padding: 7px;
  font-size: 15px;
  text-transform: uppercase;
  border-radius: 50%;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  z-index: 0;
}

.product-card .tilt {
  overflow: hidden;
}

.product-card .img {
  height: 370px;
  background: #EDEDED;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.product-card .img img {
  width: auto;
  max-width: 100%;
  height: 100%;
  transition: transform 0.5s;
  padding: 0px 40px 0px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* .product-card .card:hover .img img {
  transform: scale(1.05);
} */

.product-card .info {
  padding: 15px;
}

.product-card .p-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px;
  letter-spacing: -0.5px;
}

.product-card .desc {
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 12px;
}

.product-card .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.product-card .price {
  display: flex;
  align-items: center;
  gap: 20px;
}

.product-card .old {
  font-size: 13px;
  text-decoration: line-through;
  color: #a1a1aa;
  margin-bottom: 2px;
}

.product-card .new {
  font-size: 20px;
  font-weight: 700;
}

.product-card .btn {
  background-color: var(--primary-color-third);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 8px 15px;
  min-width: 125px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: 0.3s;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.product-card .btn.buy {
  background-color: var(--primary-color-second);
}

.product-card .btn:hover {
  background-color: var(--primary-color-third);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.product-card .btn.buy:hover {
  background-color: var(--primary-color-second);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.product-card .icon {
  transition: transform 0.3s;
}

.product-card .btn:hover .icon {
  transform: rotate(-10deg) scale(1.1);
}

.product-card .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #f4f4f5;
  padding-top: 12px;
}

.product-card .rating {
  display: flex;
  align-items: center;
  gap: 2px;
}

.product-card .rating i {
  color: #FFD700;
}

.product-card .rcount {
  margin-left: 6px;
  font-size: 11px;
  color: #71717a;
}

.product-card .stock {
  font-size: 11px;
  font-weight: 600;
  color: #22c55e;
}

@media (max-width: 768px) {
  .product-card .card {
    width: 90%;
  }

  .product-card .title {
    font-size: 16px;
  }

  .product-card .img {
    height: 180px;
  }

  .product-card .bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .product-card .price {
    margin-bottom: 5px;
  }

  .product-card .btn {
    width: 100%;
    justify-content: center;
    gap: 50px;
  }
}

/* Product Detail Page */

.product-detail .pd-wrap {
  padding: 40px 0;
  font-family: 'Poppins', sans-serif;
}

.product-dtl {
  padding: 60px 30px;
}

@media screen and (max-width: 992px) {
  .product-dtl {
    padding: 60px 0;
  }
}

.product-detail .img-fluid {
  max-width: 100% !important;
  height: auto !important;
  max-height: 500px !important;
  width: auto !important;
}

@media screen and (max-width: 768px) {
  .product-detail .img-fluid {
    max-width: 100% !important;
    height: auto !important;
    max-height: 300px !important;
    width: auto !important;
  }
}

/* --- Swiper/Slider Styles --- */
.product-slider-wrapper {
  position: relative;
  padding-bottom: 20px;
  /* Space for the navigation buttons to not overlap content below */
}

/* Custom Navigation for Main Slider */
.product-slider-wrapper .swiper-button-prev,
.product-slider-wrapper .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(33, 37, 41, 0.7);
  /* Same as the old button background */
  color: #fff;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  /* Make them round */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.product-slider-wrapper .swiper-button-prev:hover,
.product-slider-wrapper .swiper-button-next:hover {
  background: rgb(33, 37, 41);
}

.product-slider-wrapper .swiper-button-prev {
  left: 10px;
}

.product-slider-wrapper .swiper-button-next {
  right: 10px;
}

/* Swiper automatically adds a disabled state, but we can customize it */
.swiper-button-disabled {
  opacity: 0.3;
  cursor: default;
}

.product-slider-wrapper .swiper-button-prev svg,
.product-slider-wrapper .swiper-button-next svg {
  font-size: 1rem;
}

.product-thumb {
  margin-top: 50px;
}

.product-thumb .swiper-slide {
  width: auto !important;
  opacity: 0.5;
  transition: opacity 0.3s, border 0.3s;
  cursor: pointer;
  border: 2px solid transparent;
}

.product-thumb .swiper-slide-thumb-active {
  opacity: 1;
  border-color: var(--primary-color-third);
  /* Highlight the active thumbnail */
}

.product-detail .product-thumb .item img {
  height: 100px;
  width: 100%;
  /* Ensure images fill the thumbnail area */
  object-fit: cover;
}

/* --- Product Detail Container & Info --- */
.product-detail .product-name {
  margin-bottom: 10px;
  font-size: 42px;
  font-weight: 600;
  color: var(--primary-color);
}

.product-detail .product-price-discount {
  font-size: 26px;
  font-weight: 700;
  padding: 10px 0;
  color: #000;
}

.product-detail .product-price-discount span.line-through {
  text-decoration: line-through;
  margin-left: 10px;
  font-size: 16px;
  font-weight: 400;
  vertical-align: middle;
  color: #a5a5a5;
}

.product-detail .reviews-counter {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.product-detail .reviews-counter span {
  font-size: 14px;
  color: #777;
}

/* --- Star Rating (Simplified for React Icons) --- */
.product-detail .rate {
  display: flex;
  gap: 2px;
  font-size: 18px;
}

/* --- Quantity Count Styles --- */
.product-detail .product-count {
  margin-top: 20px;
}

.product-detail .product-count label {
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.product-detail .product-count .qtyminus,
.product-detail .product-count .qtyplus {
  width: 45px;
  height: 45px;
  background: #212529;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.product-detail .product-count .qtyminus:hover,
.product-detail .product-count .qtyplus:hover {
  background: #000;
}

.product-detail .product-count .qtyminus {
  border-radius: 5px 0 0 5px;
}

.product-detail .product-count .qtyplus {
  border-radius: 0 5px 5px 0;
}

.product-detail .product-count .qty {
  width: 60px;
  text-align: center;
  border: 1px solid #ccc;
  border-left: none;
  border-right: none;
  height: 45px;
  font-weight: 600;
}

/* --- Action Buttons --- */
.btn-outline-primary {
  background-color: var(--secondary-color) !important;
  color: #fff !important;
}

.btn-outline-primary:hover {
  background-color: var(--primary-color) !important;
  color: #fff !important;
}

.product-detail .button {
  margin: 30px 0;
}

.product-detail .btn {
  border: none;
  border-radius: 5px;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.product-detail .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* --- Swiper & Thumbnails --- */
.product-detail .product-slider {
  margin-bottom: 15px;
  border-radius: 8px;
}

.product-detail .product-thumb .swiper-slide {
  opacity: 0.5;
  cursor: pointer;
}

.product-detail .product-thumb .swiper-slide-thumb-active {
  opacity: 1;
  border: 2px solid var(--primary-color);
  border-radius: 4px;
}

/* --- Modern Custom Scrollbar for Thumbs --- */
.product-detail .product-thumb::-webkit-scrollbar {
  height: 6px;
}

.product-detail .product-thumb::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.product-detail .product-thumb::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

/* --- OTP Modal Styles --- */
.otp-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.otp-modal-container {
  max-width: 400px;
  width: 100%;
  border-radius: 15px;
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* --- Mobile Responsiveness --- */
@media screen and (max-width: 768px) {
  .product-detail .product-name {
    font-size: 28px;
  }

  .product-detail .button {
    flex-direction: column;
  }

  .product-detail .btn {
    width: 100% !important;
  }
}

/* ---------------- Cart Page ---------------- */
.cart-page .cart-item {
  background: #fff;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.08);
  margin-bottom: 18px;
  transition: all 0.3s ease;
}

.cart-page .cart-image {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
}

.cart-page .product-title {
  font-size: 20px;
  font-weight: 600;
  color: #222;
}

.cart-page .price {
  font-size: 18px;
  color: var(--primary-color);
  font-weight: 600;
}

.cart-page .stock-badge {
  font-size: 13px;
  background: var(--primary-color);
  padding: 4px 10px;
  border-radius: 30px;
  display: inline-block;
  margin-top: 5px;
}

.cart-page .summary-box {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 25px;
}

.cart-page .summary-title {
  font-size: 20px;
  font-weight: 600;
  border-left: 4px solid var(--primary-color);
  padding-left: 10px;
  margin-bottom: 20px;
}

.cart-page .checkout-btn {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  border: none;
  padding: 12px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  width: 100%;
  color: #fff;
  transition: all 0.3s ease;
}

.cart-page .checkout-btn:hover {
  opacity: 0.9;
}

.cart-page .qtyminus,
.cart-page .qtyplus {
  background: var(--primary-color);
  color: #fff;
  padding: 6px 14px;
  font-size: 18px;
  border-radius: 6px;
  cursor: pointer;
  user-select: none;
}

.cart-page .qty {
  width: 60px;
  text-align: center;
  font-weight: bold;
  border: 2px solid var(--primary-color);
  border-radius: 6px;
  margin: 0 8px;
  padding: 5px 0;
}

@media (max-width: 768px) {
  .cart-page .cart-image {
    width: 120px;
    height: 120px;
  }
}

/* Checkout Page */
.checkout-page .checkout-box {
  background: #fff;
  border-left: 5px solid var(--primary-color);
}

.checkout-page .delivery-option:hover {
  border-color: var(--primary-color);
  background: rgba(4, 157, 191, 0.05);
  cursor: pointer;
}

.checkout-page span,
.checkout-page .small {
  color: #fff !important;
}

.checkout-page .payment-icon {
  height: 26px;
  filter: grayscale(100%);
  opacity: 0.7;
}

.checkout-page .order-summary-box {
  background: var(--primary-color);
  color: #fff;
}

.checkout-page .summary-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
}

.checkout-page .btn-primary {
  background: var(--primary-color) !important;
  border: none;
}

.loader .spinner {
  margin: 0 auto;
  width: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.loader .spinner>div {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  animation: modernBounce 1.2s infinite ease-in-out both;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.loader .spinner .bounce1 {
  animation-delay: -0.32s;
}

.loader .spinner .bounce2 {
  animation-delay: -0.16s;
}

@keyframes modernBounce {

  0%,
  80%,
  100% {
    transform: scale(0.4);
    opacity: 0.4;
  }

  40% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Ecommerce Breadcrum */
.breadcrumb-wrapper .description {
  padding-left: 15px;
  border-left: 2px solid var(--primary-color);
}

.breadcrumb-wrapper .description h3 {
  font-weight: 300;
  font-size: 20px;
  margin: 0;
  color: var(--primary-color);
  text-transform: uppercase;
}

.breadcrumb-wrapper .description p {
  margin-top: 10px;
  font-weight: 300;
}

.breadcrumb-wrapper .wrapper {
  margin: 30px;
}

.breadcrumb-wrapper ul.breadcrumbs {
  /* margin: 25px 0 0; */
  padding: 0;
  font-size: 0;
  display: inline-block;
  height: 20px;
}

.breadcrumb-wrapper ul.breadcrumbs li {
  position: relative;
  list-style: none;
  display: inline-block;
  border-left: 1px solid var(--primary-color-second);
  transition: 0.3s ease;
}

.breadcrumb-wrapper ul.breadcrumbs li:before {
  content: "";
  position: absolute;
  right: -9px;
  top: -1px;
  z-index: 20;
  border-left: 10px solid #fff;
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
  transition: 0.3s ease;
}

.breadcrumb-wrapper ul.breadcrumbs li:after {
  content: "";
  position: absolute;
  right: -10px;
  top: -1px;
  z-index: 10;
  border-left: 10px solid var(--primary-color-second);
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
}

.breadcrumb-wrapper ul.breadcrumbs li.active a {
  color: #fff !important;
  background: var(--primary-color-third);
}

.breadcrumb-wrapper ul.breadcrumbs li.first {
  border-left: none;
}

.breadcrumb-wrapper ul.breadcrumbs li.first a {
  font-size: 18px;
  padding-left: 20px;
  border-radius: 5px 0 0 5px;
}

.breadcrumb-wrapper ul.breadcrumbs li.last:before,
.breadcrumb-wrapper ul.breadcrumbs li.last:after {
  display: none;
}

.breadcrumb-wrapper ul.breadcrumbs li.last a {
  padding-right: 20px;
  border-radius: 0 40px 40px 0;
}

.breadcrumb-wrapper ul.breadcrumbs li a {
  display: block;
  font-size: 12px;
  line-height: 40px;
  padding: 0 15px 0 25px;
  text-decoration: none;
  background: #fff;
  overflow: hidden;
  transition: 0.3s ease;
}

@media screen and (max-width: 768px) {
  .breadcrumb-wrapper .wrapper {
    margin: 20px;
  }
}

/* Bottom Menu */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 5px 0 4px;
    z-index: 999;
}

.bottom-nav .nav-item {
    flex: 1;
    text-align: center;
    text-decoration: none;
    color: #474444 !important;
    font-size: 9px;
    font-weight: 500;
    position: relative;
}

.bottom-nav .nav-icon {
    font-size: 20px;   /* was 27px */
    width: 24px;
    height: 24px;
    display: block;
    margin: 0 auto 2px;
    color: inherit !important;
}

.bottom-nav .nav-item span {
    display: block;
    line-height: 1;
}

.bottom-nav .nav-item.active {
    color: #2bb2b3 !important;
}

.notification-dot {
  width: 8px;
  height: 8px;
  background: #ff4d4f;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  right: 30%;
}

.cart-badge {
  position: absolute;
  top: 0px;
  right: 28%;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  background: #ff4d4f;
  color: #ffffff;
  font-size: 10px;
  font-weight: 600;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

@media (max-width: 576px) {
  .btn.btn-primary.rounded-circle.shadow-lg.position-fixed.bottom-0.end-0.m-4.p-0.transition.z-3.main-chat-button {
    display: none !important;
  }

  .footer-bottom {
    margin-bottom: 50px;
  }
}

/* Video-Grid */
.hero-vid-main-bg {
  display: flex;
  align-items: center;
  justify-content: center;
  /* background:
    linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
    url('/assets/img/hero-slider/hero-vid-bg.jpg'); */

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.hero-vid-main-bg .video-card {
  overflow: hidden;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.08);
  transition: 0.3s ease;
}

.hero-vid-main-bg .video-card {
  transform: translate(0);
}

.hero-vid-main-bg .video-wrapper {
  position: relative;
  padding-top: 0%;
}

.hero-vid-main-bg video {
  width: 100%;
}

.hero-vid-main-bg .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: 85px;
  height: 85px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
  opacity: 0.8;
}

/* Hover effect */
.hero-vid-main-bg .play-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%) scale(1.1);
}

/* SVG */
.hero-vid-main-bg .play-btn svg {
  width: 42px;
  fill: white;
}

/* Show clearly on hover */
.hero-vid-main-bg .video-wrapper:hover .play-btn {
  opacity: 1;
}

/* When playing → hide by default */
.hero-vid-main-bg .video-wrapper.playing .play-btn {
  opacity: 0;
}

/* 🔥 KEY FIX: Show again on hover while playing */
.hero-vid-main-bg .video-wrapper.playing:hover .play-btn {
  opacity: 1;
}

@media (max-width: 576px) {
  .hero-vid-main-bg .video-card {
    padding: 0;
  }

  .hero-vid-main-bg video {
    border-radius: 0 !important;
    display: block;
  }

  .hero-vid-main-bg .video-wrapper.playing .play-btn {
    opacity: 0 !important;
    display: none !important;
  }

  .hero-vid-main-bg .play-btn {
    display: none;
  }

  .hero-vid-main-bg .play-btn svg {
    width: 30px;
  }
}


/* About Homepage */
.consultation__form.consultation__details__desc {
  margin-bottom: 0 !important;
}

.consultation__details__desc,
.consultation__details__desc__more {
  margin: 50px 0;
}

@media screen and (max-width: 768px){
  .consultation .consultation-remove-mt {
    margin-top: 0;
  }
}

.consultation__form .section-title {
    margin-bottom: 30px;
}

.section-title span {
    font-size: 15px;
    color: #888888;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-title h2 {
    color: var(--primary-color);
    font-weight: 700;
    margin-top: 8px;
}

.consultation__form {
  width: 100%;
  border-radius: .25em;
  padding: 40px;
  -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  /* margin-top: -60px; */
  background: #ffffff;
}

.consultation__form form input,
.consultation__form form textarea,
.consultation__form form select {
  font-size: 15px;
  color: #666666;
  box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 45px;
  padding-left: 20px;
  border: 1px solid #f2f2f2;
  border-radius: 5px;
}

.fld {
  position: relative;
}

/* .fld:before {
  color: red;
  content: "*";
  position: absolute;
  top: 5px;
  right: calc(1% - 17px);
} */

.site-btn {
    font-size: 14px;
    color: #ffffff;
    background: var(--primary-color);
    font-weight: 600;
    letter-spacing: 1px;
    border: none;
    border-radius: 5px;
    display: inline-block;
    text-transform: uppercase;
    padding: 10px 25px 10px;
}