@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
:root {
  --primary: #723421;
  --light: #eff5ff;
  --dark: #3d2b26;
}
.fw-medium {
  font-weight: 500 !important;
}
.fw-bold {
  font-weight: 700 !important;
}
.fw-black {
  font-weight: 900 !important;
}
.back-to-top {
  position: fixed;
  display: none;
  right: 20px;
  bottom: 20px;
  z-index: 99;
}
@media (max-width: 767px) {
  .back-to-top {
    bottom: 90px;
  }
}
.whatsapp-top {
  position: fixed;
  left: 20px;
  bottom: 85px;
  z-index: 99;
}
.call-top {
  position: fixed;
  left: 20px;
  bottom: 25px;
  z-index: 99;
}
#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;
}
.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: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Poppins", sans-serif;
  color: #555555;
}
.navbar {
  font-family: "Poppins", sans-serif;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}
.navbar.sticky-top {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.navbar .navbar-brand {
  padding-top: 15px;
  padding-bottom: 15px;
}
.navbar .navbar-brand img {
  max-width: 230px;
  height: auto;
  transition: transform 0.4s ease;
}
.navbar-brand:hover img {
  transform: scale(1.03);
}
.navbar .navbar-nav .nav-link {
  position: relative;
  padding: 35px 0;
  margin: 0 15px;
  color: var(--dark);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  outline: none;
  transition: all 0.3s ease;
}
.navbar .navbar-nav .nav-link::before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 30px;
  left: 0;
  background-color: var(--primary);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}
.navbar .navbar-nav .nav-link:hover::before,
.navbar .navbar-nav .nav-link.active::before {
  width: 100%;
}
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--primary) !important;
}
@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-link {
    margin-right: 0;
    padding: 12px 0;
    margin: 0;
  }
  .navbar .navbar-nav .nav-link::before {
    display: none;
  }
  .navbar .navbar-nav {
    border-top: 1px solid #eeeeee;
    padding: 20px;
  }
  .navbar .navbar-brand img {
    max-width: 180px;
  }
}
@media (max-width: 575.98px) {
  .navbar .navbar-brand img {
    max-width: 150px;
  }
}
.navbar .navbar-brand,
.navbar a.btn {
  height: 85px;
}
@media (max-width: 991.98px) {
  .navbar .navbar-brand,
  .navbar a.btn {
    height: 70px;
  }
}
.navbar a.btn-primary {
  background: linear-gradient(135deg, #723421 0%, #8b4530 100%) !important;
  border: none !important;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 45px !important;
  margin: 15px 25px 15px 10px;
  transition: all 0.4s ease !important;
  border-radius: 50px !important;
  height: 55px !important;
  align-self: center;
}
.navbar a.btn-primary:hover {
  background: linear-gradient(135deg, #3d2b26 0%, #723421 100%) !important;
  box-shadow: 0 10px 20px rgba(114, 52, 33, 0.2) !important;
  transform: translateY(-2px);
}
.navbar a.btn-primary i {
  transition: transform 0.3s ease;
}
.navbar a.btn-primary:hover i {
  transform: translateX(5px);
}
@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 120%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    padding: 15px 0;
    background: #ffffff;
  }
  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    opacity: 1;
  }
  .dropdown-item {
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 500;
    color: #444;
    transition: all 0.3s ease;
  }
  .dropdown-item:hover {
    background-color: rgba(114, 52, 33, 0.06);
    color: var(--primary);
    padding-left: 32px;
  }
}
.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-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);
}
.page-header {
  background: url(../img/header-page.jpg) top center no-repeat;
  background-size: cover;
  text-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}
.breadcrumb-item + .breadcrumb-item::before {
  color: var(--light);
}
.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: 140px;
  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;
}
@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-item img {
  position: relative;
  top: 0;
  width: 100%;
  transition: 0.5s;
}
.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);
}
.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-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);
}
.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);
}
.faq {
  padding: 120px 0 90px;
  background: #f7fbff;
  min-height: auto;
}
.faq .section-title {
  margin-bottom: 54px;
}
.faq .section-title h2 {
  margin-bottom: 22px;
}
.faq .accordion .card {
  border: none;
  margin-bottom: 30px;
}
.faq .accordion .card:not(:first-of-type) .card-header:first-child {
  border-radius: 10px;
}
.faq .accordion .card .card-header {
  border: none;
  border-radius: 10px;
  padding: 0;
}
.faq .accordion .card .card-header h5 {
  padding: 0;
}
.faq .accordion .card .card-header h5 button {
  color: #1e3056;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  padding: 0 30px 0 70px;
  height: 80px;
  display: block;
  width: 100%;
  color: rgba(30, 48, 86, 0.8);
  text-align: left;
  background: #fff;
  -webkit-box-shadow: 0px -50px 140px 0px rgba(69, 81, 100, 0.1);
  box-shadow: 0px -50px 140px 0px rgba(69, 81, 100, 0.1);
  border-radius: 10px 10px 0 0;
  position: relative;
}
.faq .accordion .card .card-header h5 button:after {
  position: absolute;
  left: 30px;
  top: 50%;
  margin-top: -10px;
  width: 20px;
  height: 20px;
  background-color: transparent;
  color: #ff5f74;
  text-align: center;
  border: 1px solid #ff5f74;
  border-radius: 50%;
  line-height: 100%;
  content: "\f067";
  font-size: 10px;
  line-height: 18px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.faq .accordion .card .card-header h5 button.collapsed {
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid rgba(97, 125, 255, 0.2);
}
.faq .accordion .card .card-header h5 button[aria-expanded="true"]:after {
  content: "\f068";
  color: #fff;
  background-image: -webkit-linear-gradient(
    -180deg,
    #5e7eff 0%,
    #ff5f74 30%,
    #a85fff 100%
  );
}

.faq .accordion .card .card-header h4 button {
  color: #1e3056;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  padding: 0 30px 0 70px;
  height: 80px;
  display: block;
  width: 100%;
  color: rgba(30, 48, 86, 0.8);
  text-align: left;
  background: #fff;
  -webkit-box-shadow: 0px -50px 140px 0px rgba(69, 81, 100, 0.1);
  box-shadow: 0px -50px 140px 0px rgba(69, 81, 100, 0.1);
  border-radius: 10px 10px 0 0;
  position: relative;
}
.faq .accordion .card .card-header h4 button:after {
  position: absolute;
  left: 30px;
  top: 50%;
  margin-top: -10px;
  width: 20px;
  height: 20px;
  background-color: transparent;
  color: #ff5f74;
  text-align: center;
  border: 1px solid #ff5f74;
  border-radius: 50%;
  line-height: 100%;
  content: "\f067";
  font-size: 10px;
  line-height: 18px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.faq .accordion .card .card-header h4 button.collapsed {
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid rgba(97, 125, 255, 0.2);
}
.faq .accordion .card .card-header h4 button[aria-expanded="true"]:after {
  content: "\f068";
  color: #fff;
  background-image: -webkit-linear-gradient(
    -180deg,
    #5e7eff 0%,
    #ff5f74 30%,
    #a85fff 100%
  );
}

.faq .accordion .card .card-body {
  -webkit-box-shadow: 0px 15px 140px 0px rgba(69, 81, 100, 0.1);
  box-shadow: 0px 15px 140px 0px rgba(69, 81, 100, 0.1);
  border-radius: 0 0 10px 10px;
  padding-top: 0;
  margin-top: -6px;
  padding-left: 72px;
  padding-right: 15px;
  padding-bottom: 23px;
  color: rgba(30, 48, 86, 0.8);
  line-height: 30px;
}
#morefaq {
  display: none;
}
#morecontent {
  display: none;
}
.countt {
  font-size: 35px;
  font-weight: 600;
}
.checked {
  color: orange;
}
.location {
  box-shadow: 0px 0px 5px 5px lightblue;
}
.mapheading {
  padding: 10px;
}
.filterDiv {
  display: none;
}
.show {
  display: block;
}
.blackanchor {
  font-weight: 700;
}
.footer-text {
  color: white !important;
}
.icongreen {
  color: orange;
}
.goog-logo-link {
  display: none !important;
}
.goog-te-gadget {
  color: transparent !important;
}
#google_translate_element img {
  display: none !important;
}
.VIpgJd-ZVi9od-l4eHX-hSRGPd,
.VIpgJd-ZVi9od-l4eHX-hSRGPd:link,
.VIpgJd-ZVi9od-l4eHX-hSRGPd:visited,
.VIpgJd-ZVi9od-l4eHX-hSRGPd:hover,
.VIpgJd-ZVi9od-l4eHX-hSRGPd:active {
  color: transparent !important;
}
.goog-te-gadget {
  font-size: 0px;
}
.navv {
  float: left;
  position: fixed;
  top: 50%;
  left: 0;
  background: transparent;
  z-index: 1000;
}
.navv ul {
  padding: 12px;
  list-style-type: none;
}
.navv ul li {
  position: relative;
  width: 50px;
  cursor: pointer;
  background: crimson;
  text-transform: uppercase;
  transition: all 0.4s ease-out;
  color: white;
}
.navv ul li:after {
  position: absolute;
  background: white;
  color: crimson;
  top: 0;
  left: 70px;
  width: 250px;
  height: auto;
  opacity: 0.5;
  transform: perspective(400px) rotateY(90deg);
  transform-origin: 0 100%;
  transition: all 0.4s ease-out;
}
.navv ul li:nth-child(1):after {
  content: "Laxmi Nagar - 91-9899298991 Faridabad - 91-9873911911 Noida,UP - 91-9873911911 Rohini - 91-9289911911";
  line-height: 50px;
}
.navv ul li:hover {
  transform: translateX(-70px);
}
.navv ul li:hover:after {
  opacity: 1;
  transform: perspective(400px) rotateY(0deg) scale(1);
}
.navv ul li > div {
  display: inline-block;
  padding: 25px 0;
  background: transparent;
}
.navv ul li div {
  position: relative;
}
.home-icon {
  text-orientation: upright;
  writing-mode: vertical-lr;
  display: inline-block;
  width: 200px;
  margin: 2px;
}
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background: #723421;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: BROWN;
}
.site-heading-with-border {
  position: relative;
}
.site-heading-with-border:after {
  border-bottom: 1px solid #cfcfcf;
  content: "";
  display: block;
}
.site-heading-with-border > span {
  display: inline-block;
}
.site-heading-with-border > span:after {
  border-bottom: 3px solid #003a70;
  content: "";
  display: block;
  margin-bottom: -1px;
}
.site-heading-with-border.no-light-border:after {
  display: none;
}
@media (min-width: 768px) {
  .btn-with-icon-sm {
    max-width: 200px !important;
  }
}
.main-container {
  padding: 15px 20px;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .main-container {
    padding: 36px 20px;
  }
}
.main-container-sm {
  padding: 15px;
}
@media (min-width: 768px) {
  .main-container-sm {
    padding-bottom: 22px;
    padding-top: 22px;
  }
}
.main-container:after {
  border-radius: 0 0 15px 15px;
  content: "";
  height: 192px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
@media (min-width: 768px) {
  .main-container:after {
    height: 137px;
  }
}
@media (max-width: 991.98px) {
  .main-container.large-blue-bar-on-mob:after {
    height: 324px;
  }
  .main-container.larger-blue-bar-on-mob:after {
    height: 364px;
  }
}
@media (max-width: 1199.98px) {
  .main-container.no-bg-on-sm:after {
    display: none;
  }
}
.main-container-rounded:after {
  border-radius: 10px;
}
@media only screen and (max-width: 600px) {
  .ssss {
    margin-top: 120px;
  }
}
.filterDivDoc.laxminagar {
  display: block;
}
.btn.active {
  background-color: #007bff;
  color: white;
  border-color: #007bff;
}
.filterDivDoc {
  display: none;
}
.d-none {
  display: none;
}
.filterDoc {
  display: none;
}
.filterDoc.active {
  display: block;
}
.mobile-only {
  display: block;
}
@media screen and (min-width: 768px) {
  .mobile-only {
    display: none;
  }
}
.project-item,
.project-item .project-img {
  position: relative;
}
.project-item .project-img a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  opacity: 0;
  transition: 0.5s;
}
.project-item:hover .project-img a {
  opacity: 1;
}
.project-item .project-title {
  position: absolute;
  top: 3rem;
  right: 0;
  bottom: 0;
  left: 3rem;
  border: 1px solid var(--light);
  border-radius: 8px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  z-index: -1;
  transition: 0.5s;
}
.project-item:hover .project-title {
  background: var(--primary);
  border-color: var(--primary);
}
.project-item .project-title h4 {
  transition: 0.5s;
}
.project-item:hover .project-title h4 {
  color: #ffffff;
}
.project-carousel .owl-nav {
  margin-top: 25px;
  display: flex;
  justify-content: center;
}
.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
  margin: 0 12px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: var(--light);
  border-radius: 45px;
  font-size: 22px;
  transition: 0.5s;
}
.project-carousel .owl-nav .owl-prev:hover,
.project-carousel .owl-nav .owl-next:hover {
  background: var(--primary);
  color: var(--light);
}
input::placeholder {
  color: #723421 !important;
}
.float-right {
  float: right;
}
.mobile {
  display: none;
}
.desktop {
  display: block;
}
@media (max-width: 768px) {
  .desktop {
    display: none;
  }
  .mobile {
    display: block;
  }
}
.keyword span {
  float: left !important;
  padding: 0px 8px;
  border-right: solid 1px #ddd;
  margin-bottom: 5px;
  cursor: pointer;
  color: #ffffff;
}
.iti {
  width: 100%;
}
.overview-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #fff 0%, #fcf9f8 100%);
}
.overview-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(114, 52, 33, 0.08);
  border: 1px solid rgba(114, 52, 33, 0.05);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  margin-bottom: 30px;
}
.overview-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 70px rgba(114, 52, 33, 0.12);
}
.overview-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
}
.overview-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(114, 52, 33, 0.1);
  color: var(--primary);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.overview-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.overview-content p {
  color: #666;
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 15px;
}
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.why-us-card {
  background: #fff;
  padding: 35px;
  border-radius: 20px;
  border: 1px solid rgba(114, 52, 33, 0.06);
  transition: all 0.3s ease;
  height: 100%;
}
.why-us-card:hover {
  background: var(--primary);
  transform: translateY(-8px);
}
.why-us-card:hover * {
  color: #fff !important;
}
.why-us-icon {
  width: 60px;
  height: 60px;
  background: rgba(114, 52, 33, 0.08);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 25px;
  transition: all 0.3s ease;
}
.why-us-card:hover .why-us-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.why-us-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark);
}
.why-us-card p {
  font-size: 15px;
  color: #777;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 768px) {
  .overview-card {
    padding: 30px 20px;
  }
  .overview-title {
    font-size: 24px;
  }
}
.sub-nav-wrapper {
  background: #723421;
  position: sticky;
  top: 85px;
  z-index: 999;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  margin-top: 10px;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.sub-nav-container {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: auto;
  white-space: nowrap;
  padding: 2px 10px;
  scrollbar-width: none;
}
.sub-nav-container::-webkit-scrollbar {
  display: none;
}
.sub-nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  text-decoration: none;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  border-radius: 30px;
}
.sub-nav-link i {
  font-size: 14px;
  opacity: 0.7;
  transition: transform 0.3s ease;
}
.sub-nav-link:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.1);
}
.sub-nav-link:hover i {
  transform: translateY(2px);
  opacity: 1;
}
@media (max-width: 768px) {
  .sub-nav-wrapper {
    border-radius: 0;
    margin-top: 0;
    top: 60px;
  }
  .sub-nav-link {
    padding: 10px 15px;
    font-size: 14px;
  }
}
.mobile {
  display: none !important;
}
@media (max-width: 991px) {
  .desktop {
    display: none !important;
  }
  .mobile {
    display: block !important;
  }
}
.review-platforms {
  padding: 90px 20px;
  background: #fff;
}

.review-platforms .container {
  max-width: 1400px;
  margin: auto;
}

.section-heading {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 0px;
}

.divider {
  width: 70px;
  height: 5px;
  background: #0056d6;
  display: inline-block;
  border-radius: 50px;
}

.platform-card {
  text-align: center;
  padding: 20px 10px;
  height: 100%;
}

.platform-card img {
  max-width: 170px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 20px;
}

.rating {
  font-size: 55px;
  font-weight: 800;
  color: #ff5a00;
  line-height: 1;
  margin-bottom: 10px;
}

.verified {
  color: #28a745;
  font-size: 32px;
}

.label {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.reviews {
  font-size: 16px;
  color: #666;
}
.video-section {
  background: #fff;
}

.section-badge {
  display: inline-block;
  background: rgba(114, 52, 33, 0.1);
  color: #723421;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 15px;
}

.section-subtitle {
  max-width: 700px;
  margin: auto;
  color: #666;
}

.video-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  height: 100%;
}

.video-card:hover {
  transform: translateY(-8px);
}

.video-card iframe {
  width: 100%;
  height: 100%;
}

.video-content {
  padding: 25px;
}

.video-content h4 {
  color: #723421;
  font-weight: 700;
  margin-bottom: 10px;
}

.video-content p {
  color: #666;
  margin: 0;
}

.btn-video {
  display: inline-block;
  background: #723421;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-video:hover {
  background: #5b2918;
  color: #fff;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }
}
.blog-section {
  background: #fff;
}

.blog-badge {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(114, 52, 33, 0.1);
  color: #723421;
  border-radius: 30px;
  font-weight: 600;
  margin-bottom: 15px;
}

.blog-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
}

.blog-subtitle {
  max-width: 700px;
  margin: auto;
  color: #666;
}

.blog-card {
  display: block;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.35s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.blog-image {
  overflow: hidden;
  height: 240px;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.blog-card:hover .blog-image img {
  transform: scale(1.08);
}

.blog-content {
  padding: 25px;
}

.blog-category {
  display: inline-block;
  color: #723421;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.blog-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: #111;
  line-height: 1.4;
  margin-bottom: 12px;
}

.blog-content p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 18px;
}

.read-more {
  color: #723421;
  font-weight: 700;
}

@media (max-width: 768px) {
  .blog-title {
    font-size: 28px;
  }

  .blog-image {
    height: 220px;
  }

  .blog-content h3 {
    font-size: 20px;
  }
}
.video-heading {
  font-size: 21px !important;
  font-weight: 700;
  color: black !important;
  margin-bottom: 9px;
}
.medical-review-box {
  background: #fff;
  border: 1px solid #ebdcb9;
  border-top: 4px solid #a12c2c;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(161, 44, 44, 0.05);
}

.medical-review-header {
  padding: 18px 30px;
  border-bottom: 1px solid #ebdcb9;
}

.review-status {
  color: #2e7d32;
  font-size: 19px;
  font-weight: 700;
}

.review-date {
  color: #757575;
  font-size: 13px;
  font-weight: 500;
}

.review-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #757575;
}

.doctor-photo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid #a12c2c;
  object-fit: cover;
}

.doctor-name {
  font-size: 22px;
  font-weight: 700;
  color: #723421;
  line-height: 1.3;
}

.doctor-designation {
  font-size: 14px;
  color: #333;
  margin-top: 4px;
}

.stat-badge {
  background: #fdfbf7;
  border: 1px solid #ebdcb9;
  color: #5d4037;
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
}

.doctor-btn {
  display: inline-block;
  background: #723421;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.doctor-btn:hover {
  background: #8d2323;
  color: #fff;
  text-decoration: none;
}

.doctor-btn:focus {
  color: #fff;
  text-decoration: none;
}
.team-name {
  font-size: 18px;
  font-weight: 700;
  color: #723421;
}

.team-description {
  color: #616161;
  font-size: 14px;
  line-height: 1.8;
}

.verification-tag {
  color: #2e7d32;
  font-size: 13px;
  font-weight: 700;
}

/* Desktop Divider */
@media (min-width: 992px) {
  .border-end-lg {
    border-right: 1px solid #ebdcb9;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .medical-review-header {
    gap: 10px;
    padding: 15px 20px;
  }

  .doctor-name {
    font-size: 20px;
  }

  .doctor-btn {
    width: 100%;
  }

  .team-name,
  .doctor-name {
    text-align: center;
  }

  .doctor-designation,
  .team-description {
    text-align: center;
  }
}

.why-section {
  padding: 80px 0;
}

.feature-card {
  background: #834936;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 25px;
  height: 100%;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: 0.35s;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: #d8a14b;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.feature-icon {
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 50%;
  background: #d79a3f;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
}

.feature-content h4 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-content p {
  color: #f5e7df;
  margin: 0;
  line-height: 1.8;
  font-size: 16px;
}

@media (max-width: 991px) {
  .feature-content h4 {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .feature-card {
    padding: 20px;
  }

  .feature-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    font-size: 20px;
  }

  .feature-content h4 {
    font-size: 18px;
  }

  .feature-content p {
    font-size: 15px;
  }
}
/*==============================
   GA WHY CHOOSE SECTION
==============================*/

.ga-why-section {
  background: #723421;
  position: relative;
  overflow: hidden;
}

.ga-why-section::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  top: -220px;
  left: -180px;
}

.ga-why-section::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(255, 255, 255, 0.025);
  border-radius: 50%;
  bottom: -150px;
  right: -120px;
}

.ga-why-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px;
  height: 100%;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  transition: 0.35s ease;
}

.ga-why-card:hover {
  transform: translateY(-8px);
  background: #81412d;
  border-color: #d59b45;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

.ga-why-icon {
  width: 70px;
  min-width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #d59b45, #f3c97b);
  color: #fff;
  font-size: 28px;
  box-shadow: 0 10px 25px rgba(213, 155, 69, 0.35);
}

.ga-why-card:hover .ga-why-icon {
  transform: rotate(10deg) scale(1.08);
  transition: 0.35s;
}

.ga-why-content h4 {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.ga-why-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
  font-size: 15px;
}

/* Hover Text */

.ga-why-card:hover h4 {
  color: #ffd98a;
}

.ga-why-card:hover p {
  color: #fff;
}

/* Tablet */

@media (max-width: 991px) {
  .ga-why-card {
    padding: 24px;
  }

  .ga-why-content h4 {
    font-size: 20px;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .ga-why-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 30px 22px;
  }

  .ga-why-icon {
    width: 75px;
    height: 75px;
    font-size: 30px;
    margin-bottom: 5px;
  }

  .ga-why-content h4 {
    font-size: 20px;
  }

  .ga-why-content p {
    font-size: 14px;
  }
}
/* ===========================
   GA MEDIA SECTION
=========================== */

.ga-media-section {
  background: #fff;
}

.ga-media-tag {
  display: inline-block;
  padding: 8px 18px;
  background: #f8f3f1;
  color: #723421;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 18px;
}

.ga-media-title {
  font-size: 40px;
  font-weight: 800;
  color: #111;
}

.ga-media-title span {
  color: #723421;
}

.ga-media-slider {
  position: relative;
}

.ga-media-card {
  background: #fff;

  border: 1px solid #e8e8e8;

  border-radius: 15px;

  text-align: center;

  padding: 25px 15px;

  transition: 0.4s;

  margin: 10px;

  height: 210px;

  display: flex;

  flex-direction: column;

  justify-content: space-between;
}

.ga-media-card:hover {
  transform: translateY(-8px);

  border-color: #723421;

  box-shadow: 0 15px 35px rgba(114, 52, 33, 0.15);
}

.ga-media-logo {
  height: 85px;

  display: flex;

  justify-content: center;

  align-items: center;
}

.ga-media-logo img {
  max-width: 120px;

  max-height: 70px;

  transition: 0.4s;
}

.ga-media-card:hover img {
  transform: scale(1.08);
}

.ga-media-btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 8px;

  padding: 10px 15px;

  border-radius: 30px;

  border: 1px solid #ddd;

  text-decoration: none;

  color: #333;

  font-weight: 600;

  transition: 0.3s;

  font-size: 14px;
}

.ga-media-btn:hover {
  background: #723421;

  color: #fff;

  border-color: #723421;
}

.ga-media-slider .owl-nav {
  margin-top: 25px;

  text-align: center;
}

.ga-media-slider .owl-nav button {
  width: 48px;

  height: 48px;

  border-radius: 50% !important;

  background: #723421 !important;

  color: #fff !important;

  font-size: 22px !important;

  margin: 0 8px;

  transition: 0.3s;
}

.ga-media-slider .owl-nav button:hover {
  background: #8b472d !important;
}

.ga-media-slider .owl-dots {
  margin-top: 20px;
}

.ga-media-slider .owl-dot span {
  width: 12px;

  height: 12px;
}

.ga-media-slider .owl-dot.active span {
  background: #723421 !important;
}

@media (max-width: 767px) {
  .ga-media-title {
    font-size: 28px;
  }

  .ga-media-card {
    height: 180px;

    padding: 18px;
  }

  .ga-media-logo {
    height: 65px;
  }
}
.drig__page * {
  box-sizing: border-box;
}
.drig__page {
  font-family: "Inter", sans-serif;
  color: var(--drig-text);
  background: var(--drig-bg);
  line-height: 1.7;
}
.drig__display {
  font-family: "Playfair Display", serif;
}

/* ---- Breadcrumb ---- */
.drig__breadcrumb {
  background: var(--drig-cream);
  padding: 12px 0;
  font-size: 13px;
  color: var(--drig-text-muted);
  border-bottom: 1px solid var(--drig-border);
}
.drig__breadcrumb a {
  color: var(--drig-primary);
  text-decoration: none;
}
.drig__breadcrumb a:hover {
  text-decoration: underline;
}
.drig__breadcrumb .drig__sep {
  margin: 0 8px;
  color: #bbb;
}

/* ---- Hero Section ---- */
.drig__hero {
  background: linear-gradient(
    135deg,
    var(--drig-cream) 0%,
    #fbeee6 50%,
    #f5dfd3 100%
  );
  padding: 60px 0 0;
  position: relative;
  overflow: hidden;
}
.drig__hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    160deg,
    rgba(114, 52, 33, 0.06) 0%,
    rgba(114, 52, 33, 0.12) 100%
  );
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.drig__hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--drig-primary);
  margin-bottom: 12px;
}
.drig__hero-name {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--drig-text);
  margin-bottom: 8px;
  margin-top: 15px;
}
.drig__hero-title {
  font-size: 1.1rem;
  color: var(--drig-primary);
  font-weight: 500;
  margin-bottom: 20px;
}
.drig__hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.drig__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1px solid var(--drig-border);
  border-radius: 30px;
  padding: 6px 14px;
  font-size: 10px;
  font-weight: 500;
  color: var(--drig-text);
  box-shadow: 0 2px 8px rgba(114, 52, 33, 0.06);
}
.drig__badge i {
  color: var(--drig-accent);
  font-size: 10px;
}
.drig__hero-bio {
  font-size: 15px;
  color: var(--drig-text-muted);
  max-width: 560px;
  margin-bottom: 28px;
}
.drig__btn-primary {
  background: var(--drig-primary);
  color: #fff;
  border: 2px solid var(--drig-primary);
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
  cursor: pointer;
}
.drig__btn-primary:hover {
  background: var(--drig-primary-dark);
  border-color: var(--drig-primary-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(114, 52, 33, 0.28);
}
.drig__btn-outline {
  background: transparent;
  color: var(--drig-primary);
  border: 2px solid var(--drig-primary);
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
  cursor: pointer;
}
.drig__btn-outline:hover {
  background: var(--drig-primary);
  color: #fff;
  transform: translateY(-1px);
}
.drig__btn-wa {
  background: #25d366;
  color: #fff;
  border: 2px solid #25d366;
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
  cursor: pointer;
}
.drig__btn-wa:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
  color: #fff;
  transform: translateY(-1px);
}

.drig__hero-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.drig__hero-img {
  width: 100%;
  max-width: 420px;
  border-radius: 16px 16px 0 0;
  object-fit: cover;
  display: block;
}
.drig__hero-exp-badge {
  position: absolute;
  top: 24px;
  right: 0;
  background: var(--drig-primary);
  color: #fff;
  text-align: center;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(114, 52, 33, 0.3);
  border: 3px solid var(--drig-accent-light);
}
.drig__hero-exp-badge strong {
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}
.drig__hero-exp-badge span {
  font-size: 7px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---- Stats Bar ---- */
.drig__stats-bar {
  background: var(--drig-primary);
  padding: 28px 0;
}
.drig__stats-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}
.drig__stat-item {
  text-align: center;
  color: #fff;
}
.drig__stat-num {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--drig-accent-light);
  line-height: 1;
}
.drig__stat-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
  opacity: 0.85;
}
.drig__stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
  align-self: stretch;
}

/* ---- Section Scaffold ---- */
.drig__section {
  padding: var(--drig-section-gap) 0;
}
.drig__section-alt {
  background: var(--drig-cream);
}
.drig__section-dark {
  background: var(--drig-primary);
  color: #fff;
}

.drig__section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--drig-accent);
  margin-bottom: 8px;
}
.drig__section-heading {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--drig-text);
  margin-bottom: 6px;
}
.drig__section-heading.drig__light {
  color: #fff;
}
.drig__underline {
  width: 52px;
  height: 3px;
  background: linear-gradient(90deg, var(--drig-primary), var(--drig-accent));
  border-radius: 2px;
  margin-bottom: 28px;
}
.drig__underline.drig__center {
  margin-left: auto;
  margin-right: auto;
}

/* ---- About Section ---- */
.drig__about-quote {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--drig-primary);
  border-left: 4px solid var(--drig-accent);
  padding-left: 20px;
  margin: 24px 0;
}
.drig__signature {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  color: var(--drig-primary);
  font-style: italic;
  margin-top: 12px;
}
.drig__signature-sub {
  font-size: 12px;
  color: var(--drig-text-muted);
  font-style: normal;
  font-family: "Inter", sans-serif;
}

/* ---- Qualifications ---- */
.drig__qual-card {
  background: #fff;
  border: 1px solid var(--drig-border);
  border-radius: var(--drig-radius);
  padding: 24px;
  height: 100%;
  transition: box-shadow 0.2s;
}
.drig__qual-card:hover {
  box-shadow: 0 6px 24px rgba(114, 52, 33, 0.1);
}
.drig__qual-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--drig-primary), var(--drig-accent));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 20px;
  color: #fff;
}
.drig__qual-title {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 10px;
}
.drig__qual-list {
  padding: 0;
  margin: 0;
}
.drig__qual-list li {
  font-size: 14px;
  color: var(--drig-text-muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--drig-border);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.drig__qual-list li:last-child {
  border-bottom: none;
}
.drig__qual-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--drig-green);
  font-size: 12px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ---- Conditions Treated ---- */
.drig__condition-card {
  background: #fff;
  border: 1px solid var(--drig-border);
  border-radius: var(--drig-radius);
  padding: 28px 20px;
  text-align: center;
  height: 100%;
  transition: all 0.25s ease;
  cursor: default;
}
.drig__condition-card:hover {
  background: var(--drig-primary);
  border-color: var(--drig-primary);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(114, 52, 33, 0.2);
}
.drig__condition-card:hover .drig__condition-icon {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.drig__condition-card:hover .drig__condition-name {
  color: #fff;
}
.drig__condition-card:hover .drig__condition-desc {
  color: rgba(255, 255, 255, 0.8);
}
.drig__condition-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--drig-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 26px;
  color: var(--drig-primary);
  transition: all 0.25s;
}
.drig__condition-name {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
  transition: color 0.25s;
}
.drig__condition-desc {
  font-size: 13px;
  color: var(--drig-text-muted);
  transition: color 0.25s;
}

/* ---- Why Trust ---- */
.drig__trust-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: var(--drig-radius);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  height: 100%;
  transition: background 0.2s;
}
.drig__trust-item:hover {
  background: rgba(255, 255, 255, 0.14);
}
.drig__trust-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--drig-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  flex-shrink: 0;
}
.drig__trust-item h5 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}
.drig__trust-item p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  margin: 0;
}

/* ---- Testimonials ---- */
.drig__testimonial-card {
  background: #fff;
  border: 1px solid var(--drig-border);
  border-radius: var(--drig-radius-lg);
  padding: 28px;
  position: relative;
  height: 100%;
}
.drig__testimonial-card::before {
  content: "\201C";
  font-family: "Playfair Display", serif;
  font-size: 80px;
  color: var(--drig-primary);
  opacity: 0.12;
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}
.drig__stars {
  color: #f5a623;
  font-size: 16px;
  margin-bottom: 12px;
}
.drig__testimonial-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--drig-text-muted);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.drig__testimonial-author {
  font-weight: 700;
  font-size: 14px;
}
.drig__testimonial-loc {
  font-size: 12px;
  color: var(--drig-text-muted);
}
.drig__google-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.drig__google-badge .drig__g-logo {
  width: 22px;
  font-weight: 800;
  font-size: 16px;
  color: #4285f4;
  font-family: serif;
}
.drig__google-badge span {
  font-size: 12px;
  color: var(--drig-text-muted);
  font-weight: 500;
}

/* ---- Awards ---- */
.drig__award-card {
  background: #fff;
  border: 1px solid var(--drig-border);
  border-radius: var(--drig-radius);
  padding: 20px;
  text-align: center;
  height: 100%;
  transition: box-shadow 0.2s;
}
.drig__award-card:hover {
  box-shadow: 0 6px 24px rgba(114, 52, 33, 0.12);
}
.drig__award-icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f8e8c0, #f0c97a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 auto 14px;
}
.drig__award-year {
  font-size: 11px;
  color: var(--drig-text-muted);
  margin-top: 6px;
}
.drig__award-card h6 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
}

/* ---- Media ---- */
.drig__media-logo {
  background: #fff;
  border: 1px solid var(--drig-border);
  border-radius: var(--drig-radius);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  transition: all 0.2s;
}
.drig__media-logo:hover {
  border-color: var(--drig-primary);
  box-shadow: 0 4px 16px rgba(114, 52, 33, 0.1);
}
.drig__media-logo span {
  font-weight: 800;
  font-size: 14px;
  color: var(--drig-text-muted);
  letter-spacing: 1px;
}

/* ---- Expert Videos ---- */
.drig__video-thumb {
  position: relative;
  border-radius: var(--drig-radius);
  overflow: hidden;
  background: #111;
  aspect-ratio: 16/9;
  cursor: pointer;
}
.drig__video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.drig__video-thumb:hover img {
  opacity: 0.7;
}
.drig__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--drig-primary);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s;
}
.drig__video-thumb:hover .drig__play-btn {
  transform: translate(-50%, -50%) scale(1.1);
}
.drig__video-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 4px;
}
.drig__video-card-title {
  font-size: 14px;
  font-weight: 600;
  margin-top: 12px;
}

/* ---- FAQ ---- */
.drig__faq-item {
  border: 1px solid var(--drig-border);
  border-radius: var(--drig-radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: #fff;
}
.drig__faq-q {
  padding: 18px 22px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: background 0.2s;
  user-select: none;
}
.drig__faq-q:hover {
  background: var(--drig-cream);
}
.drig__faq-q.drig__active {
  background: var(--drig-primary);
  color: #fff;
}
.drig__faq-q.drig__active .drig__faq-icon {
  transform: rotate(45deg);
}
.drig__faq-icon {
  width: 28px;
  height: 28px;
  background: var(--drig-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.drig__faq-q.drig__active .drig__faq-icon {
  background: rgba(255, 255, 255, 0.25);
}
.drig__faq-a {
  display: none;
  padding: 16px 22px 20px;
  font-size: 14px;
  color: var(--drig-text-muted);
  border-top: 1px solid var(--drig-border);
  line-height: 1.7;
}
.drig__faq-a.drig__open {
  display: block;
}

/* ---- Related Articles ---- */
.drig__article-card {
  background: #fff;
  border: 1px solid var(--drig-border);
  border-radius: var(--drig-radius);
  overflow: hidden;
  height: 100%;
  transition: box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.drig__article-card:hover {
  box-shadow: 0 8px 28px rgba(114, 52, 33, 0.12);
  text-decoration: none;
  color: inherit;
}
.drig__article-card:hover .drig__article-title {
  color: var(--drig-primary);
}
.drig__article-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  background: var(--drig-cream);
}
.drig__article-body {
  padding: 16px;
}
.drig__article-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--drig-primary);
  margin-bottom: 8px;
}
.drig__article-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.4;
  transition: color 0.2s;
}
.drig__article-excerpt {
  font-size: 12px;
  color: var(--drig-text-muted);
}

/* ---- Clinic Locations ---- */
.drig__clinic-card {
  background: #fff;
  border: 1px solid var(--drig-border);
  border-radius: var(--drig-radius);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.2s;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.drig__clinic-card:hover {
  border-color: var(--drig-primary);
  box-shadow: 0 4px 16px rgba(114, 52, 33, 0.12);
  color: inherit;
  text-decoration: none;
}
.drig__clinic-icon {
  width: 46px;
  height: 46px;
  background: var(--drig-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--drig-primary);
  font-size: 18px;
  flex-shrink: 0;
}
.drig__clinic-name {
  font-weight: 700;
  font-size: 15px;
}
.drig__clinic-sub {
  font-size: 12px;
  color: var(--drig-text-muted);
}

/* ---- Internal Links ---- */
.drig__link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.drig__city-link {
  padding: 8px 16px;
  border: 1.5px solid var(--drig-border);
  border-radius: 30px;
  font-size: 13px;
  color: var(--drig-primary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s;
  background: #fff;
}
.drig__city-link:hover {
  background: var(--drig-primary);
  color: #fff;
  border-color: var(--drig-primary);
  text-decoration: none;
}

/* ---- CTA Banner ---- */
.drig__cta-banner {
  background: linear-gradient(
    135deg,
    var(--drig-primary) 0%,
    var(--drig-primary-dark) 100%
  );
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.drig__cta-banner::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  top: -80px;
  right: -80px;
}
.drig__cta-banner::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  bottom: -60px;
  left: 10%;
}
.drig__cta-heading {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #fff;
  font-weight: 700;
  margin-bottom: 12px;
}
.drig__cta-sub {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  margin-bottom: 28px;
}

/* ---- Booking Form ---- */
.drig__form-wrap {
  background: #fff;
  border-radius: var(--drig-radius-lg);
  padding: 36px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}
.drig__form-title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--drig-text);
}
.drig__form-sub {
  font-size: 13px;
  color: var(--drig-text-muted);
  margin-bottom: 24px;
}
.drig__input {
  width: 100%;
  border: 1.5px solid var(--drig-border);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  outline: none;
  transition: border-color 0.2s;
  margin-bottom: 14px;
  color: var(--drig-text);
  background: #fff;
}
.drig__input:focus {
  border-color: var(--drig-primary);
}
.drig__input::placeholder {
  color: #bbb;
}
.drig__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.drig__form-submit {
  width: 100%;
  background: var(--drig-primary);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.drig__form-submit:hover {
  background: var(--drig-primary-dark);
}

/* ---- Section Divider ---- */
.drig__divider {
  border: none;
  height: 1px;
  background: var(--drig-border);
  margin: 0;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .drig__hero {
    padding: 0px 0 0;
  }
  .drig__hero-img {
    max-width: 320px;
  }
  .drig__stat-divider {
    display: none;
  }
  .drig__section {
    padding: 50px 0;
  }
  var(--drig-section-gap): 50px;
}
@media (max-width: 767px) {
  .drig__hero-img-wrap {
    margin-top: 32px;
  }
  .drig__hero-img {
    max-width: 404px;
  }
  .drig__hero-exp-badge {
    width: 80px;
    height: 80px;
  }
  .drig__hero-exp-badge strong {
    font-size: 20px;
  }
  .drig__form-wrap {
    padding: 24px;
  }
}

@media (max-width: 767px) {
  .drig__hero-bio {
    display: none;
  }
  .drig__hero-eyebrow {
    display: none;
  }
}

/* ---- Scroll Reveal ---- */
.drig__reveal {
  transform: translateY(20px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.drig__reveal.drig__visible {
  opacity: 1;
  transform: translateY(0);
}
.mobile-view {
  display: none;
}
.mobile-hide {
  display: block;
}
@media (max-width: 767px) {
  .mobile-view {
    display: block;
  }
  .mobile-hide {
    display: none;
  }
}

:root {
  --drig-primary: #723421;
  --drig-primary-dark: #5a2818;
  --drig-primary-light: #9b4a30;
  --drig-accent: #c4873d;
  --drig-accent-light: #f0c97a;
  --drig-gold: #d4a843;
  --drig-cream: #fdf6f0;
  --drig-bg: #ffffff;
  --drig-text: #1a1a1a;
  --drig-text-muted: #666666;
  --drig-border: #e8d5c8;
  --drig-green: #2a6b3c;
  --drig-section-gap: 80px;
  --drig-radius: 12px;
  --drig-radius-lg: 20px;
}
.h4-treatment {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.bookappointment-text {
  font-size: 27px;
  font-weight: 700;
}
.contact-form-cta {
  font-size: 20px;
  font-weight: 600;
}
.doctor-feature {
  background: #fff;
  padding: 14px 18px;
  border-radius: 12px;
  border-left: 4px solid #723421;
  box-shadow: 0 3px 12px rgba(114, 52, 33, 0.08);
  font-weight: 500;
  transition: 0.3s;
}

.doctor-feature:hover {
  transform: translateY(-3px);
}

.doctor-feature i {
  color: #723421;
  font-size: 18px;
}

.about-doctor-section {
  background: #f8f4f1;
}

.about-doctor-section h2,
.about-doctor-section h3 {
  color: #723421;
}

.about-badge {
  background: #723421;
  color: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
}

.location-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(114, 52, 33, 0.08);
  height: 100%;
}

.location-card i {
  color: #723421;
}

.consultation-card {
  background: linear-gradient(135deg, #723421, #8a4a34);
  color: #fff;
  border-radius: 18px;
  padding: 30px;
  height: 100%;
}

.consultation-card i {
  color: #c89b3c;
}

.btn-ayurveda {
  background: #723421;
  border: 2px solid #723421;
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-ayurveda:hover {
  background: #5d2818;
  border-color: #5d2818;
  color: #fff;
}

.section-title {
  color: #723421;
  font-weight: 700;
}

.highlight-text {
  color: #723421;
  font-weight: 600;
}
.consultation-card {
  background: linear-gradient(135deg, #723421, #8a4a34);
  color: #fff;
  border-radius: 18px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 5px 20px rgba(114, 52, 33, 0.15);
}
.ga-ayur-wrapper-n8bh6 {
  font-family: "Roboto", sans-serif;
  max-width: 1500px;
  margin: 40px auto;
  padding: 20px 40px;
  background: #fcfcfc;
}

.ga-ayur-main-headline-n8bh6 {
  color: black;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
  margin-top: 0;
  position: relative;
  z-index: 10;
  line-height: 1.2;
  background: none;
  background-color: transparent;
}

.ga-ayur-hospital-card-n8bh6 {
  background: #ffffff;
  border-radius: 16px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  margin-bottom: 30px;
  min-height: 420px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
}

.ga-ayur-hospital-card-n8bh6:hover {
  transform: translateY(-12px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
  border-color: rgba(114, 52, 33, 0.15);
}

/* Slide Effect for Content */
.ga-ayur-content-side-n8bh6 > * {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.ga-ayur-hospital-card-n8bh6:hover .ga-ayur-content-side-n8bh6 > * {
  transform: translateY(-8px);
}

.ga-ayur-image-side-n8bh6 {
  width: auto;
  flex-shrink: 0;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ga-ayur-image-mask-n8bh6 {
  width: 480px;
  height: 320px;
  overflow: hidden;
  border-top-right-radius: 130px;
  border-bottom-left-radius: 130px;
  border-top-left-radius: 12px;
  border-bottom-right-radius: 12px;
  position: relative;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  border: 5px solid #ffffff;
}

.ga-ayur-image-mask-n8bh6 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.ga-ayur-hospital-card-n8bh6:hover .ga-ayur-image-mask-n8bh6 img {
  transform: scale(1.1);
}

.ga-ayur-content-side-n8bh6 {
  flex-grow: 1;
  padding: 35px 50px 35px 30px;
  display: flex;
  flex-direction: column;
}

.ga-ayur-hospital-name-n8bh6 {
  color: black;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
}

.ga-ayur-rating-row-n8bh6 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.ga-ayur-google-logo-n8bh6 {
  width: 22px;
  height: 22px;
}

.ga-ayur-stars-n8bh6 {
  color: #ffc107;
  display: flex;
  gap: 2px;
}

.ga-ayur-reviews-link-n8bh6 {
  color: #723421;
  font-size: 14px;
  text-decoration: underline;
  font-weight: 500;
}

.ga-ayur-address-row-n8bh6 {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.ga-ayur-address-text-n8bh6 {
  color: #333;
  font-size: 15px;
  line-height: 1.5;
}

.ga-ayur-address-label-n8bh6 {
  font-weight: 700;
  color: #723421;
}

.ga-ayur-badge-row-n8bh6 {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.ga-ayur-badge-n8bh6 {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  background: #f5f5f5;
}

.ga-ayur-badge-nabh-n8bh6 {
  background: #eef2ff;
  color: #1e40af;
}

.ga-ayur-badge-open-n8bh6 {
  background: #f0fdf4;
  color: #166534;
}

.ga-ayur-badge-emergency-n8bh6 {
  background: #f5f5f5;
  color: #666;
}

.ga-ayur-description-n8bh6 {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.ga-ayur-read-more-n8bh6 {
  color: #723421;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}

.ga-ayur-specialties-section-n8bh6 {
  margin-top: 10px;
}

.ga-ayur-specialties-label-n8bh6 {
  color: #723421;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.ga-ayur-tags-row-n8bh6 {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  max-height: 34px;
  /* One row height */
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.ga-ayur-tags-row-n8bh6:not(.ga-ayur-expanded-n8bh6) {
  padding-right: 85px;
  /* Reserve space for View More */
}

.ga-ayur-tags-row-n8bh6.ga-ayur-expanded-n8bh6 {
  max-height: 1000px;
}

.ga-ayur-view-more-tags-n8bh6 {
  color: #723421;
  font-weight: 700;
  font-size: 13px;
  text-decoration: underline;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  transition: opacity 0.3s ease;
}

/* Force button to top right when collapsed */
.ga-ayur-tags-row-n8bh6:not(.ga-ayur-expanded-n8bh6)
  .ga-ayur-view-more-tags-n8bh6 {
  position: absolute;
  right: 0;
  top: 0;
  height: 32px;
  background: white;
  padding-left: 8px;
  box-shadow: -10px 0 10px white;
  /* Subtle fade effect */
}

/* Normal placement when ga-ayur-expanded-n8bh6 */
.ga-ayur-tags-row-n8bh6.ga-ayur-expanded-n8bh6 .ga-ayur-view-more-tags-n8bh6 {
  margin-top: 10px;
  width: 100%;
}

.ga-ayur-tag-n8bh6 {
  border: 1.5px solid #723421;
  color: #723421;
  padding: 4px 15px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.2s;
  display: inline-block;
  white-space: nowrap;
}

.ga-ayur-tag-n8bh6:hover {
  background: #723421;
  color: #fff;
}

.ga-ayur-button-row-n8bh6 {
  display: flex;
  gap: 15px;
}

.ga-ayur-btn-directions-n8bh6 {
  flex: 1;
  border: 1.5px solid #723421;
  color: #723421;
  padding: 12px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.ga-ayur-btn-call-n8bh6 {
  flex: 1;
  background: linear-gradient(135deg, #723421 0%, #5a291a 100%);
  color: #ffffff;
  padding: 12px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(114, 52, 33, 0.2);
}

.ga-ayur-btn-call-n8bh6:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 15px rgba(114, 52, 33, 0.3);
}

.ga-ayur-btn-directions-n8bh6:hover {
  background: #fdf5f2;
  transform: translateY(-1px);
}

.ga-ayur-btn-call-n8bh6:active,
.ga-ayur-btn-directions-n8bh6:active {
  transform: translateY(0);
}

/* Swiper custom pagination */
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  transition: 0.3s;
  background: #888;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  width: 40px;
  border-radius: 5px;
  background: #723421;
  opacity: 1;
}

.swiper-pagination {
  bottom: 0px;
}

@media (max-width: 1024px) {
  .ga-ayur-wrapper-n8bh6 {
    padding: 0 20px;
    margin: 20px auto;
  }

  .ga-ayur-hospital-card-n8bh6 {
    flex-direction: column;
    height: auto;
    min-height: auto;
  }

  .ga-ayur-image-side-n8bh6 {
    width: 100%;
    padding: 15px;
  }

  .ga-ayur-image-mask-n8bh6 {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    border-top-right-radius: 80px;
    border-bottom-left-radius: 80px;
    border-top-left-radius: 12px;
    border-bottom-right-radius: 12px;
  }

  .ga-ayur-content-side-n8bh6 {
    width: 100%;
    padding: 20px;
  }

  .ga-ayur-hospital-name-n8bh6 {
    font-size: 22px;
  }
}

@media (max-width: 640px) {
  .ga-ayur-wrapper-n8bh6 {
    padding: 0 15px;
  }

  .ga-ayur-main-headline-n8bh6 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .ga-ayur-button-row-n8bh6 {
    flex-direction: column;
    gap: 12px;
  }

  .ga-ayur-btn-directions-n8bh6,
  .ga-ayur-btn-call-n8bh6 {
    width: 100%;
    padding: 14px;
    font-size: 15px;
  }

  .ga-ayur-badge-row-n8bh6 {
    gap: 8px;
  }

  .ga-ayur-badge-n8bh6 {
    padding: 4px 10px;
    font-size: 12px;
  }

  .ga-ayur-tag-n8bh6 {
    padding: 4px 12px;
    font-size: 12px;
  }
}

.ga-ayur-mySwiper-n8bh6 {
  padding-bottom: 48px;
}

.ga-ayur-icon-sm {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.ga-ayur-icon-sm-nofill {
  width: 16px;
  height: 16px;
}

.ga-ayur-icon-md {
  width: 20px;
  height: 20px;
}

.ga-ayur-icon-md-mt {
  width: 20px;
  height: 20px;
  margin-top: 4px;
}

/* Lite YouTube Facade */
.lite-youtube {
  background-color: #000;
  position: relative;
  display: block;
  contain: content;
  background-position: center;
  background-size: cover;
  cursor: pointer;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.lite-youtube::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAADGCAYAAAAT+OqFAAAAdklEQVQoz42QQQ7AIAgEF/T/D+kVQAsAtU7BY9MOn4z2BaRdQUIPwcvqgSIYCtAs94Od667h99v76uO7655F5p1uVf3uS78697uM15q/j9f6vYpS899nL368/5eYV/+Z00/XvV990iur4L/3j9e9H83b9+jB84878a99282v7z874x74O2sAAAtJREFUeNpjYMAH7L8Bf/O/9v8HAAAAAElFTkSuQmCC");
  background-position: top;
  background-repeat: repeat-x;
  height: 60px;
  padding-bottom: 50px;
  width: 100%;
  transition: all 0.2s cubic-bezier(0, 0, 0.2, 1);
  z-index: 1;
}
.lite-youtube::after {
  content: "";
  display: block;
  width: 68px;
  height: 48px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 68 48"><path d="M66.52 7.74c-.78-2.93-2.49-5.41-5.42-6.19C55.79.13 34 0 34 0S12.21.13 6.9 1.55c-2.93.78-4.64 3.26-5.42 6.19C.06 13.05 0 24 0 24s.06 10.95 1.48 16.26c.78 2.93 2.49 5.41 5.42 6.19C12.21 47.87 34 48 34 48s21.79-.13 27.1-1.55c2.93-.78 4.64-3.26 5.42-6.19C67.94 34.95 68 24 68 24s-.06-10.95-1.48-16.26z" fill="red"/><path d="M45 24L27 14v20" fill="white"/></svg>');
  filter: grayscale(100%);
  transition: filter 0.1s cubic-bezier(0, 0, 0.2, 1);
  z-index: 2;
}
.lite-youtube:hover::after {
  filter: none;
}
.normal-h2 {
  font-size: 1.5rem;
  font-weight: 700;
}
