
/********** Template CSS **********/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #03a260;
  --light: #eff5ff;
  --dark: #1b2c51;
  --dental-primary: #03a260;
  --dental-primary-dark: #028a54;
  --dental-secondary: #4a5568;
  --dental-light: #f8f9fa;
  --dental-dark: #2d3748;
  --dental-accent: #0354d5;
  --dental-step-bg: #ffffff;
}
body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  margin: 0;
  padding: 0;
  color: black;
  overflow-x: hidden;
  box-sizing: border-box;
}

.slider-container {
  position: relative;
  overflow: hidden;
}

.slider-inner {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slider-item {
  flex: 0 0 100%;
  position: relative;
  height: 80vh;
  background-size: cover;
  background-position: center;
}

.slider-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
  /* Adds a faded gradient overlay */
  z-index: 1;
}

.slider-caption {
  position: absolute;
  bottom: 30px;
  /* Align caption 30px from the bottom */
  width: 100%;
  text-align: center;
  /* Center-align all content */
  z-index: 2;
  /* Ensure text is above the overlay */
  color: #fff;
}

.slider-caption h3 {
  font-size: 2rem;
  font-weight: bold;
  color: white;
  margin-bottom: 20px;
  text-align: center;
  /* Center-align the heading */
}

.slider-caption p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  text-align: center;
  /* Center-align the paragraph */
}

.slider-caption .custom-btn {
  display: inline-block;
  margin: 0 10px;
  /* Spacing between buttons */
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 5px;
  text-decoration: none;
  color: #fff;
}

.btn-primary {
  background-color: #007bff;
  border: none;
}

.btn-success {
  background-color: #28a745;
  border: none;
}

.slider-control-prev,
.slider-control-next {
  position: absolute;
  top: 90%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  font-size: 2rem;
  z-index: 3;
  cursor: pointer;
  padding: 10px;
}

.slider-control-prev {
  left: 10px;
}

.slider-control-next {
  right: 10px;
}

@media (max-width: 768px) {
  .slider-caption h3 {
    font-size: 2rem;
  }

  .slider-caption p {
    font-size: 1rem;
  }

  .slider-caption .custom-btn {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
}

@media (max-width: 576px) {
  .slider-caption h3 {
    font-size: 1.5rem;
  }

  .slider-caption p {
    font-size: 0.9rem;
  }

  .slider-caption .custom-btn {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}

.homso-primary-bg {
  background: #03a260;
}

.homso-primary-color {
  color: #03a260;
}

.homso-secondary-bg {
  background: #004aad;
}

.homso-secondary-color {
  color: #004aad;
}

.cstm-border {
  border: 1px solid #03a260;
}

.cstm-border1 {
  border: 1px solid #004aad;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-bold {
  font-weight: 600 !important;
  color: #03a260;
}

.fw-black {
  font-weight: 900 !important;
}

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

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  font-weight: 500;
  transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
  color: #ffffff;
}

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

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

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

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 20px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

/*** Navbar ***/
.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
  margin-right: 30px;
  padding: 25px 0;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  outline: none;
}

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

@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }

  .navbar .navbar-nav {
    border-top: 1px solid #eeeeee;
  }
}

.navbar .navbar-brand,
.navbar a.btn {
  height: 75px;
}

.navbar .navbar-nav .nav-link {
  color: var(--dark);
  font-weight: 500;
}

.navbar.sticky-top {
  top: -100px;
  transition: 0.5s;
}

.appoint-btn {
  color: #fff;
  background-color: #004aad;
  border-color: #004aad;
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }

  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}

/*** Header ***/
.header-carousel {
  position: relative;
  width: 100%;
  max-height: 500px;
  /* Set maximum height for carousel */
  overflow: hidden;
}

.header-carousel .owl-carousel-text {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 3rem;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

/*** Header ***/
.header-carousel .owl-nav {
  position: absolute;
  width: 200px;
  height: 45px;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: transparent;
  border: 1px solid #ffffff;
  border-radius: 45px;
  font-size: 22px;
  transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.header-carousel .owl-dots {
  position: absolute;
  height: 45px;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  background: transparent;
  border: 1px solid #ffffff;
  border-radius: 15px;
  transition: 0.5s;
}

.header-carousel .owl-dot::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  top: 4px;
  left: 4px;
  background: #ffffff;
  border-radius: 5px;
}

.header-carousel .owl-dot.active {
  background: var(--primary);
  border-color: var(--primary);
}

.carousel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ensures the image fills the container without distortion */
  display: block;
}

.page-header {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6)),
    url(../img/homso-about-img-1.jpg);

  /* background-image: url(../img/homso-about-img-1.jpg); */
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 50vh;
  text-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.service-page-header {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6)),
    url(../img/homso-service-img-1.jpg);
  /* background-image: url(../img/homso-service-img-1.jpg); */
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 50vh;
  text-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.page-header h1 {
  color: white;
  font-size: 3.5vw;
  border-right: 2px solid white;
  width: 0;
  white-space: nowrap;
  overflow: hidden;
  animation: h1 8s steps(25, end) infinite forwards;
}

@keyframes h1 {
  0% {
    width: 0;
  }

  50% {
    width: 35%;
  }
}

.service-page-header h1 {
  color: white;
  font-size: 3.5vw;
  border-right: 2px solid white;
  width: 0;
  white-space: nowrap;
  overflow: hidden;
  animation: h1 8s steps(25, end) infinite forwards;
}

@keyframes h1 {
  0% {
    width: 0;
  }

  50% {
    width: 20%;
  }
}

@media screen and (max-width: 768px) {
  .page-header {
    height: 30vh;
  }

  .service-page-header {
    height: 30vh;
  }
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--light);
}

/*** Service ***/
.service-item {
  transition: 0.5s;
}

.service-item:hover {
  margin-top: -10px;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.08);
}

.service-item .btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  border-radius: 40px;
  white-space: nowrap;
  overflow: hidden;
  transition: 0.5s;
}

.service-item:hover .btn {
  width: 140px;
}

/*** Feature ***/
@media (min-width: 992px) {
  .container.feature {
    max-width: 100% !important;
  }

  .feature-text {
    padding-left: calc(((100% - 960px) / 2) + 0.75rem);
  }
}

@media (min-width: 1200px) {
  .feature-text {
    padding-left: calc(((100% - 1140px) / 2) + 0.75rem);
  }
}

@media (min-width: 1400px) {
  .feature-text {
    padding-left: calc(((100% - 1320px) / 2) + 0.75rem);
  }
}

/*** Team ***/
.team-item img {
  position: relative;
  top: 0;
  transition: 0.5s;
}

.custom-about-team-img {
  height: 21vw;
}

.custom-about-team-img-1 {
  width: 100%;
  height: 21vw;
}

.team-item:hover img {
  top: -30px;
}

.team-item .team-text {
  position: relative;
  height: 100px;
  transition: 0.5s;
}

.team-item:hover .team-text {
  margin-top: -60px;
  height: 160px;
}

.team-item .team-text .team-social {
  opacity: 0;
  transition: 0.5s;
}

.team-item:hover .team-text .team-social {
  opacity: 1;
}

.team-item .team-social .btn {
  display: inline-flex;
  color: var(--primary);
  background: #ffffff;
  border-radius: 40px;
}

.team-item .team-social .btn:hover {
  color: #ffffff;
  background: var(--primary);
}

@media screen and (max-width: 768px) {
  .custom-about-team-img {
    height: 45vw;
  }

  .custom-about-team-img-1 {
    height: 45vw;
  }
}

@media screen and (max-width: 576px) {
  .custom-about-team-img {
    height: 88vw;
  }

  .custom-about-team-img-1 {
    height: 88vw;
  }
}

/*** Appointment ***/
.bootstrap-datetimepicker-widget.bottom {
  top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
  border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
  font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
  padding: 10px;
  border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
  background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
  border-bottom-color: var(--primary);
}

/*** Testimonial ***/
.testimonial-carousel::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
}

.testimonial-carousel::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
}

@media (min-width: 768px) {
  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 200px;
  }
}

@media (min-width: 992px) {
  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 300px;
  }
}

.testimonial-carousel .owl-item .testimonial-text {
  background: var(--light);
  transform: scale(0.8);
  transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
  background: var(--primary);
  transform: scale(1);
}

.testimonial-carousel .owl-item .testimonial-text *,
.testimonial-carousel .owl-item .testimonial-item img {
  transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
  color: var(--light) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item img {
  background: var(--primary) !important;
}

.testimonial-carousel .owl-nav {
  position: absolute;
  width: 350px;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  opacity: 0;
  transition: 0.5s;
  z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
  width: 300px;
  opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  position: relative;
  color: var(--primary);
  font-size: 45px;
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  color: var(--dark);
}

.Address h5 {
  font-size: 2vw;
}

@media screen and (max-width: 576px) {
  .Address h5 {
    font-size: 5vw;
  }

  h5,
  .h5 {
    font-size: 0.8rem;
  }
}

/*** Footer ***/
.footer .btn.btn-social {
  margin-right: 5px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  border: 1px solid #ffffff;
  transition: 0.3s;
}

.footer .btn.btn-social:hover {
  color: var(--primary);
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #ffffff;
  font-size: 15px;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: var(--primary);
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: var(--light);
}

.footer .copyright a:hover {
  color: var(--primary);
}

#services {
  padding: 20px 0;
  text-align: center;
  background-color: #f3f7fc;
}

#services h1 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 30px;
  font-weight: 600;
}

@media screen and (max-width: 576px) {
  #services h1 {
    font-size: 1.5rem;
  }
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.service-box {
  background: #ffffff;
  padding: 20px;
  width: calc(33.33% - 20px);
  /* 3 boxes per row for 6 services */
  box-sizing: border-box;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #2c3e50;
}

.service-box h2 {
  color: #03a260;
  font-size: 1.6rem;
  margin-top: 0;
  font-weight: 600;
}

.service-box p {
  font-size: 1rem;
  line-height: 1.6;
}

.service-box ul {
  padding-left: 20px;
}

.service-box ul li {
  font-size: 1rem;
}

.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* Responsive Design for smaller screens */
@media (max-width: 1200px) {
  .service-box {
    width: calc(50% - 20px);
    /* 2 boxes per row for smaller screens */
  }
}

@media (max-width: 768px) {
  .service-box {
    width: 90%;
    /* 1 box per row on mobile */
  }
}

.nav-tabs .nav-link.active {
  background-color: #03a260;
  color: #fff;
}

.pricing-card {
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
}

.pricing-card:hover {
  transform: scale(1.05);
}

.pricing-header {
  color: #fff;
  padding: 20px 10px;
  text-align: center;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.pricing-card .card-body {
  padding: 30px;
  text-align: center;
}

#tawkchat-container {
  bottom: 150px !important;
}

/* services */

.services-hero {
  background-color:  #03a260;
  color: white;
  padding: 0 150px;
}
@media (max-width: 900px) {
  .services-hero {
    padding: 0 30px;
  }
}
.highlight-btn {
  background-color: white;
  color: black;
  font-weight: bold;
  border: none;
}
.highlight-btn:hover {
  background-color: white;
  color: black;
}
.services_hero_stars {
  color: gold;
}
.review-number {
  color: white;
}
.icon-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fa-money-bill-wave {
  color: #b7de3f;
}
.fa-phone {
  color: #b7de3f;
}

/* comprehensive care */
.section-badge {
  display: inline-block;
  background-color: rgba(3, 162, 96, 0.1);
  color: var(--dental-primary);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.dental-services {
  background-color: #fff;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background-image: url("home_bg_image-34737496.png");
  background-size: cover;
  background-position: center;
}

.dental-section-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--dental-primary);
  margin-bottom: 12px;
}

.dental-section-subtitle {
  font-size: 1rem;
  color: var(--dental-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.dental-service-card {
  background: #fff;
  border-radius: 10px;
  padding: 30px 25px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.dental-service-card::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 200px;
  background: url("/img/shape_circle.svg") no-repeat bottom center;
  background-size: cover;
  z-index: 0;
  pointer-events: none;
}

/* Bring card content above image */
.dental-service-icon,
.dental-service-card h3,
.dental-service-card p,
.dental-service-link {
  position: relative;
  z-index: 1;
}

.dental-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(3, 84, 213, 0.1);
  border-color: rgba(3, 84, 213, 0.2);
}

.dental-service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(3, 162, 96, 0.1);
  border-radius: 50%;
  color: var(--dental-primary);
  font-size: 1.75rem;
  transition: all 0.3s ease;
}

.dental-service-card:hover .dental-service-icon {
  background: var(--dental-primary);
  color: white;
  transform: scale(1.1);
}

.dental-service-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dental-dark);
  margin-bottom: 12px;
}

.dental-service-card p {
  color: var(--dental-secondary);
  margin-bottom: 15px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.dental-service-link {
  color: var(--dental-accent);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
}

.dental-service-link:hover {
  color: var(--dental-primary);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .dental-section-title {
    font-size: 1.75rem;
  }

  .dental-section-subtitle {
    font-size: 0.95rem;
  }

  .dental-service-card {
    padding: 25px 20px;
  }
}

@media (max-width: 767px) {
  .dental-services {
    padding: 60px 0;
  }

  .dental-section-title {
    font-size: 1.5rem;
  }
}

/* simple process */
.simple-section-badge {
  margin: auto;
  color: #00a260;
  border-radius: 20px;
  max-width: 180px;
  padding: 5px 5px;
  margin-bottom: 10px;
  background-color: #e3f1ed;
}
.dental-how-it-works {
  padding: 80px 0;
  background-color: #f8fafc;
}

.dental-process-header {
  text-align: center;
  margin-bottom: 50px;
}

.dental-process-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--dental-primary);
  margin-bottom: 12px;
}

.dental-process-subtitle {
  font-size: 1rem;
  color: var(--dental-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.dental-steps-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  position: relative;
  margin: 0 auto;
}

.dental-step {
  flex: 1;
  min-width: 0;
  background: var(--dental-step-bg);
  border-radius: 12px;
  padding: 30px 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  position: relative;
  margin: 0 12px;
  transition: all 0.3s ease;
}

.dental-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.dental-step-arrow {
  width: 40px;
  height: 40px;
  background-color: var(--dental-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  position: absolute;
  right: -30px;
  /* Pushes arrow outside the step box */
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  box-shadow: 0 3px 10px rgba(3, 84, 213, 0.3);
}

.dental-step-icon {
  font-size: 2rem;
  color: var(--dental-primary);
  margin-bottom: 15px;
}

.dental-step-number {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Different colors for step numbers */
.dental-step:nth-child(1) .dental-step-number {
  color: #03a260;
}

.dental-step:nth-child(2) .dental-step-number {
  color: #0354d5;
}

.dental-step:nth-child(3) .dental-step-number {
  color: #f59e0b;
}
.dental-step:nth-child(4) .dental-step-number {
  color: #d333a8;
}

.dental-step-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dental-dark);
  margin-bottom: 12px;
}

.dental-step-description {
  font-size: 0.95rem;
  color: var(--dental-secondary);
  line-height: 1.6;
}

@media (max-width: 1199px) {
  .dental-hero-title {
    font-size: 2.25rem;
  }

  .dental-step {
    margin: 0 10px;
    padding: 25px 20px;
  }

  .dental-step-arrow {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
    right: -18px;
  }
}

@media (max-width: 992px) {
  .dental-hero {
    padding: 70px 0;
  }

  .dental-hero-title {
    font-size: 2rem;
  }

  .dental-hero-subtitle {
    font-size: 0.95rem;
  }

  .dental-hero-buttons {
    flex-direction: column;
  }

  .dental-secondary-btn {
    margin-left: 0;
    margin-top: 12px;
  }

  .dental-how-it-works {
    padding: 70px 0;
  }

  .dental-process-title {
    font-size: 1.75rem;
  }

  .dental-process-subtitle {
    font-size: 0.95rem;
  }

  .dental-steps-container {
    flex-wrap: wrap;
    gap: 30px;
    padding: 0 15px;
  }

  .dental-step {
    flex: 0 0 calc(50% - 30px);
    max-width: calc(50% - 30px);
    margin: 0;
  }

  .dental-step-arrow {
    display: none;
  }
}

@media (max-width: 767px) {
  .dental-hero-title {
    font-size: 1.75rem;
    text-align: center;
  }

  .dental-hero-subtitle {
    font-size: 0.9rem;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .dental-hero-bg {
    filter: blur(4px) brightness(1.15);
    opacity: 0.2;
  }

  .dental-rating-container {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .dental-process-title {
    font-size: 1.5rem;
  }

  .dental-step-title {
    font-size: 1.1rem;
  }

  .dental-step-description {
    font-size: 0.85rem;
  }

  .dental-hero-image-container {
    display: none;
  }

  .dental-hero-buttons {
    justify-content: center;
  }

  .dental-reviewers {
    justify-content: center;
  }

  .dental-rating-header,
  .dental-rating-content {
    text-align: center;
    justify-content: center;
  }

  .dental-step {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 25px;
  }

  .dental-step:last-child {
    margin-bottom: 0;
  }
}

/* get started today */

.service-hero-section {
  text-align: center;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
  font-family: Arial, sans-serif;
  background-color: #fff;
}
.service-hero-section h1 {
  font-weight: 700;
  font-size: 2.8rem;
}
.service-hero-section h1 span {
  color: #007bff;
}
.service-hero-section p {
  color: #555;
  max-width: 650px;
  margin: 15px auto 30px;
  font-size: 1.1rem;
}
.btn-outline-primary {
  border-width: 2px;
  padding: 10px 20px;
  font-weight: 500;
}
.btn-light {
  font-size: 0.9rem;
  padding: 6px 16px;
  border-radius: 20px;
  background-color: #f8f9fa;
  border: 1px solid #ddd;
}

/* patient reviews */
.swiper{
  width: 100%;
  height: 100%;
}

  /* Common styles for both buttons */
.swiper-button-prev,
.swiper-button-next {
  width: 35px;
  height: 35px;
  background-color: #00c853;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 15px;
  font-weight: bold;
  color: #fff;
}

.swiper-button-prev::after {
  content: '←';
}

.swiper-button-next::after {
  content: '→';
}

@media(max-width: 500px) {
  .swiper-button-prev,
  .swiper-button-next {
   display: none;
  }
}

.testimonials-section {
  background-color: var(--dental-light);
  }

.testimonial-badge {
  display: inline-block;
  background-color: rgba(3, 162, 96, 0.1);
  color: var(--dental-primary);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.testimonial-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stars {
  color: #f59e0b;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--dental-secondary);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-author img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(3, 162, 96, 0.1);
}

.testimonial-author-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-author h5 {
  font-size: 1rem;
  color: var(--dental-dark);
  margin: 0 0 3px 0;
  font-weight: 600;
  line-height: 1.3;
}

.testimonial-author p {
  font-size: 0.8rem;
  color: var(--dental-secondary);
  margin: 0 0 6px 0;
  line-height: 1.4;
}

.review-link {
  display: inline-flex;
  align-items: center;
  color: var(--dental-primary);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.2s ease;
  margin-top: 4px;
}

.review-link i {
  font-size: 0.9rem;
  margin-right: 6px;
  color: inherit;
}

.review-link:hover {
  color: var(--dental-accent);
  transform: translateX(3px);
}

.review-link:hover {
  color: var(--dental-primary);
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .carousel-inner {
    padding: 0 15px;
  }

  .testimonial-card {
    padding: 20px;
    margin: 0 5px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .carousel-inner {
    padding: 0 30px;
  }

  .testimonial-card {
    padding: 20px;
  }
}

/* latest */

.latest-section-title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
  color: #03a260;
}

.card img {
  border-radius: 10px;
}
.card-title {
  font-weight: bold;
  font-size: 1.1rem;
  color: white !important;  
}
.read-more {
  font-weight: bold;
  color: #0354d5;
  text-decoration: none;
}
.read-more:hover {
  text-decoration: underline;
}

/* frequent */

/* FAQ Section Styles*/
.faq-section {
  background-color: white;
}

.faq-badge {
  display: inline-block;
  background-color: rgba(3, 162, 96, 0.1);
  color: var(--dental-primary);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.accordion-button {
  background-color: #f8fafc;
  color: var(--dental-dark);
  font-weight: 500;
  padding: 1.25rem 1.5rem;
  box-shadow: none;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
  background-color: #f8fafc;
  color: var(--dental-primary);
  box-shadow: none;
}

.accordion-button:hover {
  background-color: #f0f4f8;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2303a260'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  padding: 1.5rem;
  color: var(--dental-secondary);
  line-height: 1.6;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  background-color: white;
}

.btn-outline-primary {
  color: var(--dental-primary);
  border-color: var(--dental-primary);
}

.btn-outline-primary:hover {
  background-color: var(--dental-primary);
  color: white;
  border-color: var(--dental-primary);
}

@media (max-width: 767px) {
  .accordion-button {
    padding: 1rem;
    font-size: 0.95rem;
  }

  .accordion-body {
    padding: 1rem;
  }
}

/* services footer */
.service-footer {
  background:  #03a260;
  color: white;
  font-family: Arial, sans-serif;
  text-align: center;
  padding: 50px 20px;
}
.service-footer-heading {
  font-size: 2.5rem;
  font-weight: bold;
}

.service-subtitle {
  font-size: 1rem;
  margin-top: 10px;
  margin-bottom: 30px;
  color: #d8d8d8;
}
.btn.btn-custom {
  background-color: #ffffff !important;
  color: #03a260 !important;
  font-weight: bold;
  padding: 10px 25px;
  border-radius: 50px;
  border: 2px solid #03a260;
  font-size: 1rem;
  transition: all 0.3s ease;
}




.note {
  font-size: 0.85rem;
  margin-top: 15px;
  color: #cfcfcf;
}
.stars {
  top: 20%;
  left: 5%;
  font-size: 1.5rem;
  color: #b4ff46;
}
.stars-right {
  top: 25%;
  right: 5%;
  font-size: 1.5rem;
  color: #b4ff46;
}

/* about page */

.about-hero-section {
  background-color: #03a260;
  padding: 80px 0;
  text-align: center;
  position: relative;
}
.about-hero-section h1 {
  font-weight: 700;
  color: white;
}
.about-hero-section p {
  color: white;
}
.breadcrumb-custom {
  background: transparent;
  font-size: 0.9rem;
  justify-content: center;
  margin-bottom: 15px;
}
.circle {
  position: absolute;
  border-radius: 50%;
  background: white;
  opacity: 0.7;
}
.circle.large {
  width: 40px;
  height: 40px;
}
.circle.left {
  left: 20px;
  bottom: 20px;
}
.circle.right {
  right: 20px;
  bottom: 20px;
}
.homeLink {
  color: white;
  text-decoration: none;
}

/* AI Technology Section */
.content-box {
  background-color: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Tabs container */
.tab-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Tab buttons */
.tab-btn {
  flex: 1 1 calc(25% - 10px);
  background-color: #fff;
  border: 1px solid #dce3ee;
  border-radius: 8px;
  padding: 10px 18px;
  font-weight: 500;
  color: #4b5563;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tab-btn:hover {
  background-color: #dadada;
}
.tab-btn svg {
  background-color: #f5f8fc;
  border: 1px solid #03a260;
  color: #03a260;
  border-radius: 5px;
  padding: 5px;
  width: 28px;
  height: 28px;
}
.tab-btn.active {
  background-color: #03a260;
  color: white;
  border-color: #03a260;
}
.tab-btn.active:hover {
  background-color: #028a54;
}

@media (max-width: 768px) {
  .tab-btn {
    flex: 1 1 calc(50% - 10px);
  }
}
@media (max-width: 480px) {
  .tab-btn {
    flex: 1 1 100%;
  }
}

/* Features list */
.feature-list {
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 12px;
  margin-top: 20px;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #374151;
  font-size: 0.95rem;
}
.feature-list li::before {
  font-family: Arial, Helvetica, sans-serif;
  content: "\2714";
  padding: 1px 5px;
  border-radius: 50%;
  border: 2px solid #0354d5;
  color: #0354d5;
  font-size: 10px;
  font-weight: bold;
}
.ai-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 12px;
}
.aiSection {
  background-color: #f5f8fc;
}
.aiBtn {
  background-color: #f5f8fc;
}

/* Ribbon */

.ribbon-section {
  background-color: #f3f7f6;
  padding: 100px 0;
}

.ribbon {
  display: flex;
  white-space: nowrap;
  font-weight: bold;
  font-size: 1.5rem;
  padding: 10px 0;
  overflow: hidden;
}

.ribbon span {
  padding: 0 20px;
}

/* Top ribbon */
.ribbon-top {
  background-color:  #03a260;
  transform: rotate(-2deg);
  color: white;
}

/* Bottom ribbon */
.ribbon-bottom {
  background-color: white;
  transform: rotate(2deg);
  color: #03a260;
  border: 1px solid #03a260;
}

.ribbon-container {
  position: relative;
  width: 105%;
  left: -5%;
  margin-top: 50px;
}
@media (max-width: 768px) {
  .ribbon-container {
    margin-top: 70px;
  }
}

/* Analytics section */

.dental-reviewers {
  display: flex;
  align-items: center;
}

.dental-reviewer-img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -8px;
  object-fit: cover;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.dental-reviewer-img:first-child {
  margin-left: 0;
}

.analytics-section {
  background: white;
  padding: 60px 0;
  border-radius: 12px;
}
.analytics-section h2 {
  font-weight: 700;
  color: #03a260;
}
.analytics-section p {
  color: #6c757d;
}

.review-box {
  display: flex;
  align-items: center;
  gap: 15px;
  background: white;
  border-radius: 50px;
  padding: 10px 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  width: fit-content;
}
.review-box img {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  object-fit: cover;
  border: 2px solid white;
}
.stat-number {
  font-size: 2rem;
  font-weight: 700;
}
.stat-number.blue {
  color: #246bfc;
}
.stat-number.purple {
  color: #a14efc;
}
.stat-number.teal {
  color: #00bfa6;
}
.stat-number.orange {
  color: #ff6b35;
}
.border-col {
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 30px 15px;
}
.border-col:last-child {
  border-right: none;
}
@media (max-width: 767px) {
  .border-col {
    border-right: none !important;
    border-bottom: 1px solid #ddd;
  }
  .border-col:last-child {
    border-bottom: none;
  }
}

/* our teams */

.about-team-card {
  width: 250px;
  height: 360px;
  border: none;
  text-align: center;
  overflow: hidden;
}
.about-team-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.about-team-card h5 {
  margin-top: 12px;
  font-weight: bold;
}
.about-team-card p {
  color: #777;
  margin: 0;
  font-size: 14px;
  padding-bottom: 10px;
}
.social-icons {
  border-radius: 4px;
  background-color: #03a260;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.about-team-card:hover .social-icons {
  opacity: 1;
}
.social-icons a {
  background: #03a260;
  color: #fff;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  font-size: 14px;
}
.image-wrapper {
  position: relative;
}

/* dental section */

.about-dental-section-title {
  font-weight: 700;
  font-size: 2rem;
  color: #03a260;
}
.highlight-box {
  border: 2px solid #0354d5;
  border-radius: 10px;
  padding: 20px;
  background: #fff;
  display: flex;
  gap: 15px;
  align-items: center;
}
.highlight-box img {
  width: 120px;
  border-radius: 8px;
}
.nav-pills .nav-link {
  background-color: #03a260;
  color: white;
  border-radius: 8px;
  padding: 15px;
  text-align: left;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}
.nav-pills .nav-link:hover {
  background-color: #03a260;
  color: white;
}
.nav-pills .nav-link.active {
  background-color: #03a260 !important;
  color: white !important;
}
/* Image overlay fix */
.image-wrapper {
  position: relative;
  display: inline-block;
}
.dreview-box {
  position: absolute;
  top: 40%;
  right: 10px;
  background: white;
  border-radius: 50px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.dental_img {
  border-radius: 10px;
  max-width: 100%;
}
.dental-reviewer-img {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  object-fit: cover;
}

/* patient says */


.stars {
  color: #f59e0b;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

/* contact section */

.about-contact-section {
  background-color: #03a260;
  color: white;
  padding: 80px 10px;
  position: relative;
}
.contact-text h1 {
  font-weight: bold;
  font-size: 2.5rem;
}
.highlight-circle {
  width: 150px;
  height: 150px;
  background-color: #75bb9e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}
.highlight-circle::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: white;
  border-radius: 50%;
}
@media(max-width: 800px) {
  .highlight-circle {
    display: none;
  }
}

/* contact page */

.hero_icons {
  margin-top: 150px;
}
.contact-title {
  font-size: 5.375rem;
}
.hero-contact-highlight {
  position: relative;
}
.hero-contact-highlight img {
  position: absolute;
  bottom: -95px;
  left: 0;
  z-index: 10;
  width: 200px;
}
.hero-contact-section {
  padding: 60px 20px;
  text-align: center;
  min-height: 100vh;
}
.contact-card i {
  font-size: 1.5rem;
  background: #e3f1ed;
  border-radius: 50%;
  margin-bottom: 15px;
}
.contact-card h5 {
  font-size: 1.5rem;
  margin-bottom: 5px;
}
.contact-card p {
  margin: 0;
  font-size: 1.2rem;
  color: #6c757d;
}
.contact-card a {
  color: #00a260;
  text-decoration: none;
}
.contact-card a:hover {
  text-decoration: underline;
}

/* form */

.contact_form {
  background-color: #e3f1ed;
}
.form-control {
  background-color: white;
  border: none;
  color: white;
}
.form-control:focus {
  background-color: rgb(246, 246, 246);
  color: grey;
  box-shadow: none;
}
.btn-custom {
  background-color: #00a260;
  color: white;
  font-weight: bold;
  padding: 12px;
  border: none;
  border-radius: 5px;
}
.btn-custom:hover {
  background-color: #007a49;
}
iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
@media (max-width: 990px) {
  .map-container {
    min-height: 50vh;
  }
}
.contact-container {
  padding-left: 0 !important;
  padding-right: 0 !important;
}



/* home page */


.container {
      max-width: 100%;
      padding-left: 20px;
      padding-right: 20px;
    }


    @media (min-width: 1400px) {
      .container {
        max-width: 1320px;
      }
    }

    .dental-hero {
      background: linear-gradient(135deg,
          rgba(3, 162, 96, 0.1) 0%,
          rgba(3, 84, 213, 0.1) 100%);
      padding-top: 80px;
      position: relative;
      overflow: hidden;
    }

    /* Enhanced blurred background */
    .dental-hero-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url("https://images.unsplash.com/photo-1588776814546-1ffcf47267a5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2000&q=80");
      background-size: cover;
      background-position: center;
      filter: blur(5px) brightness(1.1);
      z-index: 0;
      opacity: -0.7;
    }

    .dental-hero-container {
      position: relative;
      z-index: 2;
    }

    .dental-hero-title {
      font-size: 2.5rem;
      font-weight: 600;
      color: var(--dental-primary);
      margin-bottom: 15px;
      line-height: 1.3;
    }

    .dental-hero-subtitle {
      font-size: 1rem;
      color: var(--dental-secondary);
      margin-bottom: 25px;
      max-width: 600px;
      line-height: 1.6;
      font-weight: 400;
    }

    /* Badge styles */
    .section-badge {
      display: inline-block;
      background-color: rgba(3, 162, 96, 0.1);
      color: var(--dental-primary);
      padding: 6px 15px;
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 15px;
    }

    /* New Classy Rating Section */
    .dental-rating-container {
      background-color: white;
      border-radius: 12px;
      padding: 18px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
      max-width: 380px;
      margin-bottom: 25px;
    }

    .dental-rating-header {
      font-size: 0.9rem;
      color: var(--dental-secondary);
      margin-bottom: 8px;
      font-weight: 500;
    }

    .dental-rating-stars {
      color: #f59e0b;
      font-size: 1.1rem;
      letter-spacing: 2px;
      margin-right: 8px;
    }

    .dental-rating-value {
      font-weight: 600;
      color: var(--dental-dark);
      font-size: 0.95rem;
    }

    .dental-rating-count {
      color: var(--dental-secondary);
      font-size: 0.85rem;
      margin-left: 8px;
      position: relative;
      padding-left: 8px;
    }

    .dental-rating-count:before {
      content: "";
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      height: 14px;
      width: 1px;
      background-color: #d1d5db;
    }

    .dental-rating-improvement {
      color: var(--dental-primary);
      font-weight: 500;
      font-size: 0.8rem;
      margin-left: 8px;
    }

    .dental-reviewers {
      display: flex;
      align-items: center;
      margin-top: 12px;
    }

    .dental-reviewer-img {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      border: 2px solid white;
      margin-left: -8px;
      object-fit: cover;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .dental-reviewer-img:first-child {
      margin-left: 0;
    }

    .dental-primary-btn {
      background-color: var(--dental-accent);
      color: white;
      padding: 10px 24px;
      border-radius: 50px;
      font-weight: 500;
      border: none;
      transition: all 0.3s ease;
      font-size: 0.95rem;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .dental-primary-btn:hover {
      background-color: #0248b8;
      transform: translateY(-2px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }

    .dental-secondary-btn {
      background-color: transparent;
      color: var(--dental-accent);
      padding: 10px 24px;
      border-radius: 50px;
      font-weight: 500;
      border: 2px solid var(--dental-accent);
      transition: all 0.3s ease;
      margin-left: 12px;
      font-size: 0.95rem;
    }

    .dental-secondary-btn:hover {
      background-color: rgba(3, 84, 213, 0.05);
    }

    .dental-hero-image-container {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      text-align: center;
    }

    .dental-hero-image {
      width: 70%;
      height: auto;
      border-radius: 16px;
    }

    .dental-hero-pattern {
      position: absolute;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle,
          rgba(3, 84, 213, 0.1) 0%,
          rgba(3, 84, 213, 0) 70%);
      border-radius: 50%;
      z-index: 1;
    }

    .dental-pattern-1 {
      top: -100px;
      right: -100px;
      width: 350px;
      height: 350px;
    }

    .dental-pattern-2 {
      bottom: -50px;
      left: -50px;
      width: 250px;
      height: 250px;
    }

    /* How It Works Section - Improved Design */
    .dental-how-it-works {
      padding: 80px 0;
      background-color: #f8fafc;
    }

    .dental-process-header {
      text-align: center;
      margin-bottom: 50px;
    }

    .dental-process-title {
      font-size: 2rem;
      font-weight: 600;
      color: var(--dental-primary);
      margin-bottom: 12px;
    }

    .dental-process-subtitle {
      font-size: 1rem;
      color: var(--dental-secondary);
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.6;
    }

    .dental-steps-container {
      display: flex;
      justify-content: center;
      align-items: stretch;
      position: relative;
      margin: 0 auto;
    }

    .dental-step {
      flex: 1;
      min-width: 0;
      background: var(--dental-step-bg);
      border-radius: 12px;
      padding: 30px 25px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      text-align: center;
      position: relative;
      margin: 0 12px;
      transition: all 0.3s ease;
    }

    .dental-step:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .dental-step-arrow {
      width: 40px;
      height: 40px;
      background-color: var(--dental-accent);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.2rem;
      position: absolute;
      right: -30px;
      /* Pushes arrow outside the step box */
      top: 50%;
      transform: translateY(-50%);
      z-index: 3;
      box-shadow: 0 3px 10px rgba(3, 84, 213, 0.3);
    }

    .dental-step-icon {
      font-size: 2rem;
      color: var(--dental-primary);
      margin-bottom: 15px;
    }

    .dental-step-number {
      font-size: 0.9rem;
      font-weight: 600;
      margin-bottom: 12px;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    /* Different colors for step numbers */
    .dental-step:nth-child(1) .dental-step-number {
      color: #03a260;
    }

    .dental-step:nth-child(2) .dental-step-number {
      color: #0354d5;
    }

    .dental-step:nth-child(3) .dental-step-number {
      color: #f59e0b;
    }

    .dental-step-title {
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--dental-dark);
      margin-bottom: 12px;
    }

    .dental-step-description {
      font-size: 0.95rem;
      color: var(--dental-secondary);
      line-height: 1.6;
    }

    @media (max-width: 1199px) {
      .dental-hero-title {
        font-size: 2.25rem;
      }

      .dental-step {
        margin: 0 10px;
        padding: 25px 20px;
      }

      .dental-step-arrow {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
        right: -18px;
      }
    }

    @media (max-width: 992px) {
      .dental-hero {
        padding: 70px 0;
      }

      .dental-hero-title {
        font-size: 2rem;
      }

      .dental-hero-subtitle {
        font-size: 0.95rem;
      }

      .dental-hero-buttons {
        flex-direction: column;
      }

      .dental-secondary-btn {
        margin-left: 0;
        margin-top: 12px;
      }

      .dental-how-it-works {
        padding: 70px 0;
      }

      .dental-process-title {
        font-size: 1.75rem;
      }

      .dental-process-subtitle {
        font-size: 0.95rem;
      }

      .dental-steps-container {
        flex-wrap: wrap;
        gap: 30px;
        padding: 0 15px;
      }

      .dental-step {
        flex: 0 0 calc(50% - 30px);
        max-width: calc(50% - 30px);
        margin: 0;
      }

      .dental-step-arrow {
        display: none;
      }
    }

    @media (max-width: 767px) {
      .dental-hero-title {
        font-size: 1.75rem;
        text-align: center;
      }

      .dental-hero-subtitle {
        font-size: 0.9rem;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
      }

      .dental-hero-bg {
        filter: blur(4px) brightness(1.15);
        opacity: 0.2;
      }

      .dental-rating-container {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
      }

      .dental-process-title {
        font-size: 1.5rem;
      }

      .dental-step-title {
        font-size: 1.1rem;
      }

      .dental-step-description {
        font-size: 0.85rem;
      }

      .dental-hero-image-container {
        display: none;
      }

      .dental-hero-buttons {
        justify-content: center;
      }

      .dental-reviewers {
        justify-content: center;
      }

      .dental-rating-header,
      .dental-rating-content {
        text-align: center;
        justify-content: center;
      }

      .dental-step {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 25px;
      }

      .dental-step:last-child {
        margin-bottom: 0;
      }
    }

    /* Services Section Styles */

    .dental-services {
      background-color: #fff;
      position: relative;
      overflow: hidden;
      padding: 80px 0;
      background-image: url("home_bg_image-34737496.png");
      background-size: cover;
      background-position: center");

    }

    .dental-section-title {
      font-size: 2rem;
      font-weight: 600;
      color: var(--dental-primary);
      margin-bottom: 12px;
    }

    .dental-section-subtitle {
      font-size: 1rem;
      color: var(--dental-secondary);
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.6;
    }

    .dental-service-card {
      background: #fff;
      border-radius: 10px;
      padding: 30px 25px;
      height: 100%;
      transition: all 0.3s ease;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      border: 1px solid rgba(0, 0, 0, 0.05);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .dental-service-card::before {
      content: "";
      position: absolute;
      top: -40px;
      left: 0;
      width: 100%;
      height: 200px;
      background: url("/img/shape_circle.svg") no-repeat bottom center;
      background-size: cover;
      z-index: 0;
      pointer-events: none;
    }

    /* Bring card content above image */
    .dental-service-icon,
    .dental-service-card h3,
    .dental-service-card p,
    .dental-service-link {
      position: relative;
      z-index: 1;
    }

    .dental-service-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(3, 84, 213, 0.1);
      border-color: rgba(3, 84, 213, 0.2);
    }

    .dental-service-icon {
      width: 70px;
      height: 70px;
      margin: 0 auto 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(3, 162, 96, 0.1);
      border-radius: 50%;
      color: var(--dental-primary);
      font-size: 1.75rem;
      transition: all 0.3s ease;
    }

    .dental-service-card:hover .dental-service-icon {
      background: var(--dental-primary);
      color: white;
      transform: scale(1.1);
    }

    .dental-service-card h3 {
      font-size: 1.3rem;
      font-weight: 600;
      color: var(--dental-dark);
      margin-bottom: 12px;
    }

    .dental-service-card p {
      color: var(--dental-secondary);
      margin-bottom: 15px;
      font-size: 0.95rem;
      line-height: 1.6;
    }

    .dental-service-link {
      color: var(--dental-accent);
      font-weight: 500;
      text-decoration: none;
      transition: all 0.2s ease;
      display: inline-flex;
      align-items: center;
      font-size: 0.9rem;
    }

    .dental-service-link:hover {
      color: var(--dental-primary);
    }

    .dental-services-cta {
      background: linear-gradient(135deg,
          rgba(3, 162, 96, 0.05) 0%,
          rgba(3, 84, 213, 0.05) 100%);
      border-radius: 10px;
      padding: 30px;
      margin-top: 40px;
    }

    .dental-services-cta h3 {
      font-size: 1.5rem;
      color: var(--dental-primary);
      margin-bottom: 8px;
    }

    .dental-services-cta p {
      color: var(--dental-secondary);
      font-size: 1rem;
    }

    /* Responsive adjustments */
    @media (max-width: 992px) {
      .dental-section-title {
        font-size: 1.75rem;
      }

      .dental-section-subtitle {
        font-size: 0.95rem;
      }

      .dental-service-card {
        padding: 25px 20px;
      }

      .dental-services-cta {
        padding: 25px;
      }

      .dental-services-cta h3 {
        font-size: 1.3rem;
      }
    }

    @media (max-width: 767px) {
      .dental-services {
        padding: 60px 0;
      }

      .dental-section-title {
        font-size: 1.5rem;
      }

      .dental-services-cta .row>div {
        text-align: center !important;
      }

      .dental-services-cta .dental-primary-btn {
        margin-top: 15px;
      }
    }

    /* Integration Section Styles */
    .integration-badge {
      display: inline-block;
      background-color: rgba(3, 84, 213, 0.1);
      color: var(--dental-accent);
      padding: 6px 15px;
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .integration-card-new {
      background: #fff;
      border-radius: 10px;
      padding: 25px;
      height: 100%;
      transition: all 0.3s ease;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
      border: 1px solid rgba(0, 0, 0, 0.03);
      position: relative;
      overflow: hidden;
    }

    .integration-card-new::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg,
          var(--dental-primary),
          var(--dental-accent));
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .integration-card-new:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(3, 84, 213, 0.1);
    }

    .integration-card-new:hover::before {
      opacity: 1;
    }

    .integration-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 15px;
    }

    .integration-icon-new {
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 10px;
      font-size: 1.3rem;
    }

    .integration-arrow {
      color: var(--dental-secondary);
      opacity: 0.5;
      transition: all 0.3s ease;
      font-size: 0.9rem;
    }

    .integration-card-new:hover .integration-arrow {
      transform: translateX(5px);
      color: var(--dental-accent);
      opacity: 1;
    }

    .integration-card-new h3 {
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--dental-dark);
      margin-bottom: 12px;
    }

    .integration-card-new p {
      color: var(--dental-secondary);
      margin-bottom: 15px;
      font-size: 0.95rem;
      line-height: 1.6;
    }

    .integration-partners {
      display: flex;
      gap: 12px;
      margin-top: 20px;
    }

    .integration-partners img {
      filter: grayscale(100%);
      opacity: 0.7;
      transition: all 0.3s ease;
      height: 25px;
      width: auto;
    }

    .integration-card-new:hover .integration-partners img {
      filter: grayscale(0%);
      opacity: 1;
    }

    /* Responsive adjustments */
    @media (max-width: 992px) {
      .integration-card-new {
        padding: 20px;
      }

      .integration-icon-new {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
      }
    }

    @media (max-width: 767px) {
      .integration-card-new h3 {
        font-size: 1.1rem;
      }

      .integration-card-new p {
        font-size: 0.9rem;
      }
    }

    /* Team Section Styles */
    .team-section {
      background-color: #f9fbfd;
      padding: 80px 0;
    }

    .team-badge {
      display: inline-block;
      background-color: rgba(3, 162, 96, 0.1);
      color: var(--dental-primary);
      padding: 6px 15px;
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .dental-section-title {
      font-size: 2rem;
      font-weight: 600;
      color: var(--dental-primary);
      margin-bottom: 12px;
    }

    .dental-section-subtitle {
      font-size: 1rem;
      color: var(--dental-secondary);
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.6;
    }

    .team-card {
      border-radius: 12px;
      overflow: hidden;
      transition: all 0.3s ease;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      height: 100%;
      position: relative;
    }

    .team-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

    .team-img-container {
      height: 400px;
      position: relative;
    }

    .team-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }

    .team-card:hover .team-img {
      transform: scale(1.05);
    }

    .team-content {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top,
          rgba(0, 0, 0, 0.8) 0%,
          rgba(0, 0, 0, 0.5) 50%,
          transparent 100%);
      padding: 30px 20px 20px;
      color: white;
    }

    .team-content h3 {
      font-size: 1.5rem;
      font-weight: 600;
      margin-bottom: 10px;
      color: white;
    }

    .team-specialty {
      color: rgba(255, 255, 255, 0.9);
      font-size: 0.95rem;
      line-height: 1.6;
      margin-bottom: 0;
    }

    .dental-primary-btn {
      background: var(--dental-primary);
      color: white;
      border: none;
      padding: 12px 25px;
      border-radius: 30px;
      font-weight: 500;
      transition: all 0.3s ease;
    }

    .dental-primary-btn:hover {
      background: #028a4e;
      transform: translateY(-2px);
    }

    /* Responsive adjustments */
    @media (max-width: 992px) {
      .team-img-container {
        height: 350px;
      }
    }

    @media (max-width: 767px) {
      .team-img-container {
        height: 400px;
      }

      .team-content h3 {
        font-size: 1.3rem;
      }

      .team-specialty {
        font-size: 0.9rem;
      }
    }

    /* Pricing Section Styles */
    .pricing-section {
      background-color: #f8fafc;
      padding: 80px 0;
      position: relative;
    }

    .sdg-card {
      background-color: white;
      border-radius: 20px;
      overflow: hidden;
      position: relative;
      transition: all 0.4s ease-in-out;
      cursor: pointer;
      height: 200px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .sdg-card:hover {
      height: 320px;
    }

    .sdg-icon {
      max-width: 100px;
      transition: transform 0.4s ease;
      z-index: 1;
    }

    .sdg-card:hover .sdg-icon {
      transform: translateY(-20px);
    }

    .sdg-description {
      opacity: 0;
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      text-align: center;
      transition: all 0.4s ease;
      font-size: 14px;
      z-index: 0;
    }

    .sdg-card:hover .sdg-description {
      opacity: 1;
      max-height: 100px;
      margin-top: 10px;
    }

    .sdg-description h6 {
      font-weight: bold;
      margin-bottom: 5px;
    }

    .sdg-description p {
      margin: 0;
      font-size: 13px;
    }

    .pricing-badge {
      display: inline-block;
      background-color: rgba(3, 162, 96, 0.1);
      color: var(--dental-primary);
      padding: 6px 15px;
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    /* Toggle Switch Styles */
    .plan-toggle-container {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 15px;
    }

    .toggle-label {
      font-weight: 500;
      color: var(--dental-dark);
    }

    .plan-toggle-switch {
      position: relative;
      display: inline-block;
      width: 60px;
      height: 30px;
    }

    .plan-toggle-switch input {
      opacity: 0;
      width: 0;
      height: 0;
    }

    .slider {
      position: absolute;
      cursor: pointer;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: #ccc;
      transition: 0.4s;
    }

    .slider:before {
      position: absolute;
      content: "";
      height: 22px;
      width: 22px;
      left: 4px;
      bottom: 4px;
      background-color: white;
      transition: 0.4s;
    }

    input:checked+.slider {
      background-color: var(--dental-primary);
    }

    input:focus+.slider {
      box-shadow: 0 0 1px var(--dental-primary);
    }

    input:checked+.slider:before {
      transform: translateX(30px);
    }

    .slider.round {
      border-radius: 34px;
    }

    .slider.round:before {
      border-radius: 50%;
    }

    /* Server Location Selector */
    .server-location-selector {
      margin-bottom: 20px;
    }

    .server-location-selector .form-select {
      width: 100%;
      padding: 8px 15px;
      border-radius: 6px;
      border: 1px solid #ddd;
      font-size: 0.9rem;
      color: var(--dental-secondary);
      background-color: #f9f9f9;
    }

    .server-location-selector .form-select:focus {
      border-color: var(--dental-primary);
      outline: none;
      box-shadow: 0 0 0 0.2rem rgba(3, 162, 96, 0.25);
    }

    /* Pricing Card Styles */
    .pricing-card {
      background: white;
      border-radius: 12px;
      overflow: hidden;
      transition: all 0.3s ease;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
      border: 1px solid rgba(0, 0, 0, 0.05);
      height: 100%;
      position: relative;
    }

    .pricing-card.featured {
      border: 2px solid var(--dental-primary);
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(3, 162, 96, 0.1);
    }

    .popular-badge {
      position: absolute;
      top: 15px;
      right: 15px;
      background-color: var(--dental-primary);
      color: white;
      padding: 5px 15px;
      border-radius: 20px;
      font-size: 0.75rem;
      font-weight: 600;
      z-index: 2;
    }

    .pricing-header {
      padding: 25px;
      text-align: center;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .pricing-header h3 {
      font-size: 1.4rem;
      font-weight: 600;
      color: var(--dental-dark);
      margin-bottom: 15px;
    }

    .price {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 5px;
    }

    .amount {
      font-size: 2.2rem;
      font-weight: 700;
      color: var(--dental-primary);
      line-height: 1;
    }

    .period {
      font-size: 1rem;
      color: var(--dental-secondary);
      margin-left: 5px;
    }

    .original-price {
      color: #999;
      font-size: 0.9rem;
      text-decoration: line-through;
      margin-bottom: 0;
    }

    .pricing-features {
      padding: 25px;
    }

    .pricing-features h4 {
      font-size: 1.1rem;
      color: var(--dental-dark);
      margin-bottom: 15px;
      font-weight: 600;
    }

    .pricing-features ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .pricing-features li {
      margin-bottom: 12px;
      color: var(--dental-secondary);
      font-size: 0.9rem;
      display: flex;
      align-items: center;
    }

    .pricing-features i {
      color: var(--dental-primary);
      margin-right: 8px;
      font-size: 0.9rem;
    }

    .pricing-footer {
      padding: 0 25px 25px;
    }

    .pricing-btn {
      background: white;
      color: var(--dental-primary);
      border: 1px solid var(--dental-primary);
      padding: 10px 20px;
      border-radius: 30px;
      font-size: 0.95rem;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.3s ease;
      width: 100%;
    }

    .pricing-btn.primary {
      background: var(--dental-primary);
      color: white;
    }

    .pricing-btn:hover {
      background: var(--dental-primary);
      color: white;
      transform: translateY(-2px);
    }

    /* Pricing Note Section */
    .pricing-note {
      background-color: rgba(3, 162, 96, 0.1);
      color: var(--dental-primary);
      padding: 10px 20px;
      border-radius: 50px;
      font-size: 0.9rem;
      display: inline-flex;
      align-items: center;
    }

    .pricing-link {
      color: var(--dental-accent);
      font-weight: 500;
      text-decoration: none;
      transition: all 0.2s ease;
      display: inline-block;
      font-size: 0.9rem;
    }

    .pricing-link:hover {
      color: var(--dental-primary);
    }

    .pricing-link i {
      transition: transform 0.2s ease;
    }

    .pricing-link:hover i {
      transform: translateX(3px);
    }

    /* Responsive adjustments */
    @media (max-width: 992px) {
      .pricing-section {
        padding: 70px 0;
      }

      .pricing-header {
        padding: 20px;
      }

      .pricing-features {
        padding: 20px;
      }

      .amount {
        font-size: 2rem;
      }
    }

    @media (max-width: 767px) {
      .pricing-card {
        margin-bottom: 25px;
      }

      .pricing-card.featured {
        transform: none;
      }

      .amount {
        font-size: 1.8rem;
      }

      .plan-toggle-container {
        flex-direction: column;
        gap: 10px;
      }
    }

    /* Testimonials Section Styles */
    .testimonials-section {
      background-color: var(--dental-light);
    }

    .testimonial-badge {
      display: inline-block;
      background-color: rgba(3, 162, 96, 0.1);
      color: var(--dental-primary);
      padding: 6px 15px;
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .testimonial-card {
      background: white;
      border-radius: 12px;
      padding: 25px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
      height: 100%;
    }

    .testimonial-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .stars {
      color: #f59e0b;
      font-size: 1.1rem;
      margin-bottom: 15px;
    }

    .testimonial-text {
      font-size: 1rem;
      line-height: 1.6;
      color: var(--dental-secondary);
      margin-bottom: 20px;
      font-style: italic;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-top: 20px;
      padding-top: 15px;
      border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .testimonial-author img {
      width: 56px;
      height: 56px;
      object-fit: cover;
      border-radius: 50%;
      border: 2px solid rgba(3, 162, 96, 0.1);
    }

    .testimonial-author-info {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .testimonial-author h5 {
      font-size: 1rem;
      color: var(--dental-dark);
      margin: 0 0 3px 0;
      font-weight: 600;
      line-height: 1.3;
    }

    .testimonial-author p {
      font-size: 0.8rem;
      color: var(--dental-secondary);
      margin: 0 0 6px 0;
      line-height: 1.4;
    }

    .review-link {
      display: inline-flex;
      align-items: center;
      color: var(--dental-primary);
      text-decoration: none;
      font-size: 0.8rem;
      font-weight: 500;
      transition: all 0.2s ease;
      margin-top: 4px;
    }

    .review-link i {
      font-size: 0.9rem;
      margin-right: 6px;
      color: inherit;
    }

    .review-link:hover {
      color: var(--dental-accent);
      transform: translateX(3px);
    }

    .review-link:hover {
      color: var(--dental-primary);
    }

    .carousel-control-prev,
    .carousel-control-next {
      width: 40px;
      height: 40px;
      background-color: white;
      border-radius: 50%;
      top: 50%;
      transform: translateY(-50%);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      opacity: 1;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      background-size: 70%;
      border-radius: 50%;
      background-color: var(--dental-primary);
      mask-image: none;
      -webkit-mask-image: none;
      width: 25px;
      height: 25px;
    }

    /* Responsive adjustments */
    @media (max-width: 767px) {
      .carousel-inner {
        padding: 0 15px;
      }

      .testimonial-card {
        padding: 20px;
        margin: 0 5px;
      }

      .carousel-control-prev,
      .carousel-control-next {
        display: none !important;
      }
    }

    @media (min-width: 768px) and (max-width: 991px) {
      .carousel-inner {
        padding: 0 30px;
      }

      .testimonial-card {
        padding: 20px;
      }
    }

    