@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styling */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
  padding: 0;
  margin: 0;
}

hr {
  margin-top: 0rem !important;
  margin-bottom: 0rem !important;
  border: 0;
  border-top: 1px solid rgb(199 199 199);
}

/* Navbar STarted */
.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1020;
}

/* Navbar font and spacing */
.navbar {
  padding: 0;
  margin: 0;
}


.navbar-nav .nav-link {
  font-weight: 600;
  color: #362c7c;
  margin: 0 8px;
  /* spacing between items */
  font-size: 18px;
  line-height: 1.5;
  font-family: "Crimson Text", serif;
  transition: color 0.3s ease;
}

/* Active link */
.navbar-nav .nav-link.active {
  color: #a53623;
  /* Bootstrap primary */
  border-bottom: 2px solid #a53623;
}

/* Hover effect */
.navbar-nav .nav-link:hover {
  color: #a53623;
  text-decoration: none;
}

/* Dropdown styling (optional for clarity) */
.dropdown-item {
  display: block;
  width: 279px;
  padding: 0.25rem 1.25rem;
  clear: both;
  font-weight: 400;
  font-size: 16px;
  color: #362c7c;
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: #dee2e6;
  border: 0;

}

.dropdown-menu {
  transition: background-color 0.3s, color 0.3s;
  border-color: #00000000;
  border-radius: 0px;
  opacity: 0;
  visibility: hidden;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #f0f0f0;
  color: #a53623;
}

.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
}

/* Dropdown Css */
.contact-info {
  background-color: #f5efec;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0px 7px 9px #0000005e;
}

.contact-text h2 {
  margin-bottom: 20px;
  color: #362c7c;
  font-size: 33px;
  font-weight: 600;
  font-family: "Crimson Text", serif;
}

.contact-text p {
  font-size: 16px;
  color: #000;
  line-height: 1.5;
}

.contact-info h2,
.contact-form h2 {
  color: #362c7c;
  font-size: 20px;
  font-family: "Crimson Text", serif;
}

.contact-info i {
  color: #362c7c;
}

.contact-info a {
  color: #000;
  text-decoration: none;
}

/* Appointment Button */
.appointment-btn a {
  background-color: #0057b300;
  /* Darker blue on hover */
  color: #362c7c;
  border: 2px solid #362c7c;

  font-weight: 600;
  padding: 10px 22px;
  border-radius: 0px;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

/* Hover effect */
.appointment-btn a:hover {
  background-color: #574f97;
  /* Bootstrap primary color */
  color: #fff;
  border: 2px solid #362c7c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Appointment  Css  Ends */
/* Navbar Css Ends */


/* Hero Slider Css */
#heroSlider .item {
  height: 600px;
  /* Fixed height */
  position: relative;
}

#heroSlider .item img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.carousel-caption {
  bottom: 20%;
}

.carousel-caption {
  position: absolute;
  right: 35%;
  left: 11%;
  padding-top: 0.25rem;
  padding-bottom: 5.25rem;
  color: #fff;
  text-align: start;
}


.carousel-caption h1 {
  color: #362c7c;
  font-size: 60px;
  font-family: "Playfair Display", sans-serif;
  font-weight: 700;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
}

.carousel-caption p {
  font-weight: 500;
  font-size: 18px;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
}

.carousel-caption a.btn {
  font-weight: 600;
  padding: 10px 25px;
  font-size: 1.1rem;
  color: #4a2c79;
  background-color: #ebedf1;
  border: 2px solid #4a2c79;
  border-radius: 0px;
  font-family: "Crimson Text", sans-serif;
}

.carousel-caption a.btn:hover {
  color: #fff;
  background-color: #4a2c79;
  border: 2px solid #fff;
  border-radius: 0px;
}

/* Custom Prev/Next Buttons */


.carousel-hero .owl-prev,
.owl-next {
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.3);
  padding: 14px 20px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 5px;
}

.carousel-hero .owl-prev {
  position: absolute;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px !important;
  left: 0;
  padding: 14px 20px !important;
  color: #fff;
  text-align: center;
  background: 0 0;
  border: 0;
  opacity: .5;
  transition: opacity .15s ease;
  text-decoration: none;
  cursor: pointer;
}

.carousel-hero .owl-next {
  position: absolute;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px !important;
  right: 0;
  padding: 14px 20px !important;
  color: #fff;
  text-align: center;
  background: 0 0;
  border: 0;
  opacity: .5;
  transition: opacity .15s ease;
  text-decoration: none;
  cursor: pointer;
}

.owl-theme .owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 14px 7px !important;
  background: #130c0c9d !important;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: #869791 !important;
  color: #FFF !important;
  text-decoration: none;
}

/* Hero Slider Css End */

/* About Css Strted */
.about-us-section {
  background-color: #f9f9f9;
}

.image-wrapper {
  position: relative;
}

.main-img {
  border-radius: 12px;
}

.overlay-img {
  position: absolute;
  bottom: -45px;
  right: 370px;
  width: 228px;
  height: auto;
  border: 5px solid #fff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.about-us-section ul li {
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #444;
}

.aboutcontent h2 {
  font-weight: 700 !important;
  color: #362c7c;
  font-size: 42px;
  font-family: 'Crimson Text';
  line-height: 1.5;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
}

.aboutcontent a {
  background-color: #0057b300;
  color: #362c7c;
  border: 2px solid #362c7c;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 0px;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  float: right;
}

.aboutcontent a:hover {
  background-color: #574f97;
  /* Bootstrap primary color */
  color: #fff;
  border: 2px solid #362c7c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* About Us Ends */

/* Service Css Started */
.services-section {
  padding: 50px 20px;
  background: #f8f8f8;
  text-align: center;
}

.services-section .upper-section {
  position: relative;
  padding: 105px 0px 155px;
}

.services-section .lower-section {
  position: relative;
  margin-top: -110px;
  z-index: 1;
}

.services-section .upper-section .title-column {
  position: relative;
}

.services-section .upper-section .title-column .inner-column {
  position: relative;
}

.slider-service {
  position: relative;
}

.slider-service .owl-prev,
.owl-next {
  width: 50px !important;
  height: 50px !important;
  background: rgb(0, 0, 0) !important;
  padding: 14px 20px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50% !important;
}

.slider-service .owl-prev {
  position: absolute;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px !important;
  left: -60px;
  padding: 14px 20px !important;
  color: #fff;
  text-align: center;
  background: 0 0;
  border: 0;
  border-radius: 50% !important;
  opacity: .5;
  transition: opacity .15s ease;
  text-decoration: none;
  cursor: pointer;
}

.slider-service .owl-next {
  position: absolute;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px !important;
  right: -60px;
  padding: 14px 20px !important;
  color: #fff;
  text-align: center;
  background: 0 0;
  border: 0;
  border-radius: 50% !important;
  opacity: .5;
  transition: opacity .15s ease;
  text-decoration: none;
  cursor: pointer;
}

.slider-service .owl-prev:hover,
.slider-service .owl-next:hover {
  background-color: #555;
}

.sec-title {
  position: relative;
  margin-bottom: 40px;
}

.sec-title.light .sec-title_title,
.sec-title.light .sec-title_text,
.sec-title.light .sec-title_heading {
  color: #fff;
}

.sec-title_title h2 {
  position: relative;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  font-size: 42px;
  line-height: 54px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: "Crimson Text", serif;
}

.sec-title_title {
  font-size: 20px;
  line-height: 1.5;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: "Crimson Text", serif;
}

.sec-title_heading {
  font-weight: 700;
  color: var(--color-two);
}

.services-section .upper-section .text-column {
  position: relative;
}

.services-section .upper-section .text-column .text {
  position: relative;
  color: #fff;
  font-size: 17px;
  line-height: 1.8em;
  font-weight: 300;
  padding-left: 50px;
  margin-top: 32px;
  border-left: 4px solid #a53623;
}

.services-section .upper-section:before {
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  background-color: rgba(0, 16, 36, 0.90);
}

.service-slide-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-slide-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: block;
  padding: 15px;
  margin-bottom: 13px;
}

.service-slide-card h5 {
  font-size: 25px;
  font-family: "Crimson Tewxt", serif;
  padding: 13px;
  margin-bottom: 0px;
  color: #362c7c;
  font-weight: 600;
  text-align: center;

}

.service-btn a {
  border: 2px solid #362c7c;
  text-decoration: none;
  padding: 4px 15px;
  background-color: #fff;
  color: #362c7c;
}

.service-btn a:hover {
  border: 2px solid #362c7c;
  text-decoration: none;
  padding: 4px 15px;
  background-color: #362c7c;
  color: #fff;
}

.service-slide-card p {
  padding: 0;
  margin-bottom: 20px;
  color: #333;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* Number of lines to show */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Service css Ends */

/* Gallery After / before image css Started */
#comparison {
  width: 100%;
  max-width: 800px;
  padding-bottom: 100%;
  overflow: hidden;
  position: relative;
}

.beforeimg {
  position: absolute;
  background-image: url(..//img/gallery/8.jpg);
  background-size: cover;
  font-size: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}

#divisor {
  background-image: url(..//img/gallery/7.jpg);
  background-size: cover;
  position: absolute;
  width: 100%;
  box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.3);
  bottom: 0;
  height: 100%;

  &::before,
  &::after {
    content: '';
    position: absolute;
    right: -2px;
    width: 4px;
    height: calc(50% - 25px);
    background: white;
    z-index: 3;
  }

  &::before {
    top: 0;
    box-shadow: 0 -3px 8px 1px rgba(0, 0, 0, .3);
  }

  &::after {
    bottom: 0;
    box-shadow: 0 3px 8px 1px rgba(0, 0, 0, .3);
  }
}

#handle {
  position: absolute;
  height: 50px;
  width: 50px;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 1;

  &::before,
  &::after {
    content: '';
    width: 0;
    height: 0;
    border: 6px inset transparent;
    position: absolute;
    top: 50%;
    margin-top: -6px;
  }

  &::before {
    border-right: 6px solid white;
    left: 50%;
    margin-left: -17px;
  }

  &::after {
    border-left: 6px solid white;
    right: 50%;
    margin-right: -17px;
  }
}

.beforeimg1 {
  position: absolute;
  background-image: url(..//img/gallery/10.jpg);
  background-size: cover;
  font-size: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}

#divisor1 {
  background-image: url(..//img/gallery/9.jpg);
  background-size: cover;
  position: absolute;
  width: 100%;
  box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.3);
  bottom: 0;
  height: 100%;

  &::before,
  &::after {
    content: '';
    position: absolute;
    right: -2px;
    width: 4px;
    height: calc(50% - 25px);
    background: white;
    z-index: 3;
  }

  &::before {
    top: 0;
    box-shadow: 0 -3px 8px 1px rgba(0, 0, 0, .3);
  }

  &::after {
    bottom: 0;
    box-shadow: 0 3px 8px 1px rgba(0, 0, 0, .3);
  }
}

#handle1 {
  position: absolute;
  height: 50px;
  width: 50px;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 1;

  &::before,
  &::after {
    content: '';
    width: 0;
    height: 0;
    border: 6px inset transparent;
    position: absolute;
    top: 50%;
    margin-top: -6px;
  }

  &::before {
    border-right: 6px solid white;
    left: 50%;
    margin-left: -17px;
  }

  &::after {
    border-left: 6px solid white;
    right: 50%;
    margin-right: -17px;
  }
}

.beforeimg2 {
  position: absolute;
  background-image: url(..//img/gallery/zza.jpg);
  background-size: cover;
  font-size: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}

#divisor2 {
  background-image: url(..//img/gallery/zz.jpg);
  background-size: cover;
  position: absolute;
  width: 100%;
  box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.3);
  bottom: 0;
  height: 100%;

  &::before,
  &::after {
    content: '';
    position: absolute;
    right: -2px;
    width: 4px;
    height: calc(50% - 25px);
    background: white;
    z-index: 3;
  }

  &::before {
    top: 0;
    box-shadow: 0 -3px 8px 1px rgba(0, 0, 0, .3);
  }

  &::after {
    bottom: 0;
    box-shadow: 0 3px 8px 1px rgba(0, 0, 0, .3);
  }
}

#handle2 {
  position: absolute;
  height: 50px;
  width: 50px;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 1;

  &::before,
  &::after {
    content: '';
    width: 0;
    height: 0;
    border: 6px inset transparent;
    position: absolute;
    top: 50%;
    margin-top: -6px;
  }

  &::before {
    border-right: 6px solid white;
    left: 50%;
    margin-left: -17px;
  }

  &::after {
    border-left: 6px solid white;
    right: 50%;
    margin-right: -17px;
  }
}

input[type=range] {
  -webkit-appearance: none;
  -moz-appearance: none;
  position: absolute;
  top: 50%;
  left: -25px;
  transform: translateY(-50%);
  background-color: transparent;
  width: calc(100% + 50px);
  z-index: 2;

  &:focus,
  &:active {
    border: none;
    outline: none;
  }
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: none;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background: transparent;
  border: 4px solid white;
  box-shadow: 0 0 8px 1px rgba(0, 0, 0, .3);
}

input[type=range]::-moz-range-track {
  -moz-appearance: none;
  height: 15px;
  width: 100%;
  background-color: transparent;
  position: relative;
  outline: none;
}

/* After Before Image Ends */

.scroll-to-top {
  position: fixed;
  bottom: 15px;
  right: 33px;
  width: 40px;
  height: 40px;
  color: #362c7c;
  font-size: 16px;
  text-transform: uppercase;
  line-height: 38px;
  text-align: center;
  z-index: 100;
  cursor: pointer;
  background: #fff;
  display: none;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
}

.scroll-to-top:hover {
       color: #fff;
       background-color:#852817;
}

.bg-gallery {
  background-color: #fbf4f4;
}

.title-heading h2 {
  font-weight: 700 !important;
  color: #362c7c;
  font-size: 52px;
  font-family: "Crimson Text", serif;
  line-height: 1.5;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
}

.title-heading p {
  color: #333;
  font-size: 18px;
  font-family: "Crimson Text", serif;
  line-height: 1.5;
  text-shadow: 2px 2px 2px rgb(0 0 0 / 14%);

}

/* Testimonial css Started */
.testimonials {
  background: #f9f9f9;
}

.testimonial-text {
  font-style: italic;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  font-family: "Crimson Text", serif;
}

.testimonial-card h5 {
  color: #000;
  font-family: "Crimson Text", serif;
  font-size: 20px;
}

.testimonial-card {
    background-color: #f7f7f7;
    margin-bottom: 14px;
    margin-top: 10px;
    box-shadow: 2px 3px 2px #dc354557 !important;
}

.testimonial-card img {
  width: 100px !important;
  height: 100px;
  object-fit: cover;
  justify-content: center !important;
  margin: 0 auto;
}

.testimonial-section .owl-prev,
.owl-next {
  width: 30px !important;
  height: 50px !important;
  background: rgb(0, 0, 0) !important;
  padding: 9px !important;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 5px !important;
}

.testimonial-section .owl-prev {
  position: absolute;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  left: -60px;
  padding: 0;
  color: #fff;
  text-align: center;
  border: 0;
  text-decoration: none;
  cursor: pointer;
}

.testimonial-section .owl-next {
  position: absolute;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  right: -60px;
  padding: 0;
  color: #fff;
  text-align: center;
  border: 0;
  text-decoration: none;
  cursor: pointer;
}

/* Testimonial Css ENds */

/* FAQ Css Started */
.faq-section {
  background-color: #f8f9fa;
}

.faq-section h2 {
  font-weight: bold;
}

.accordion-button {
  background-color: #fff;
  font-weight: 500;
}

.accordion-button:not(.collapsed) {
  background-color: #e3f2fd;
  color: #362c7c;
  font-size: 20px;
  font-family: "Crimson Text", serif;
  font-weight: 500
}

.accordion-body {
  font-size: 1rem;
  color: #444;
}

.accordion-button:focus {
  outline: none;
  box-shadow: none;
}

/* FAQ Section Ends */
/* Appointment Css Started */
.appointment-title h2 {
  font-size: 50px;
  font-family: "Crimson Text", serif;
  font-weight: 600;
  line-height: 1.7;
  color: #362c7c;
  text-shadow: 2px 2px 2px rgb(0 0 0 / 18%);
}

.appointment-text p {
  color: #333 !important;
  font-size: 18px;
  font-weight: 400;
}

/* Appointment css Ends */

.contact-header {
  text-align: center;
  padding: 50px 20px 20px;
}

.contact-header h1 {
  font-size: 56px;
  color: #3c2560;
  font-family: "Crimson Text", serif;
  font-weight: 600;
}

.contact-boxes {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 20px auto;
  max-width: 1200px;
  animation: slideIn 1s ease-in-out forwards;
}

.contact-card {
  flex: 1 1 30%;
  background: white;
  margin: 15px;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
  border-bottom: 5px solid #3c2560;
}

.contact-card:hover {
  transform: translateY(-10px);
}

.contact-card h3 {
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #362c7c;
  font-family: "Crimson Text", serif;
}

.contact-card p {
  font-size: 16px;
  color: #555;
}

.contact-lower {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 40px auto;
  max-width: 1200px;
  padding: 0 20px;
  gap: 20px;
}

form {
  flex: 1 1 45%;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

form input,
form textarea,
form select {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
}

form button {
  background: #362c7c;
  color: white;
  padding: 12px 20px;
  border: none;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

form button:hover {
  background: #084298;
}

.map-container {
  flex: 1 1 45%;
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);

}

/* Contact Us Section Ends */

/* Treatment Page Started */

.treatment-text h2 {
  font-size: 32px;
  color: #362c7c;
  font-weight: 600;
  margin-bottom: 10px;
  font-family: "Crimson Text", serif;
}

.treatment-text h2 span {
  background: #3c2560;
  color: #fff;
  padding: 2px 12px;
  border-radius: 5px;
  font-family: "Crimson Text", serif;
}

.treatment-text p {
  font-size: 16px;
  margin-bottom: 30px;
  color: #444;
}

.step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.step-number {
  width: 40px;
  height: 40px;
  display: inline-block;
  background: #f1f1f1;
  text-align: center;
  line-height: 40px;
  font-weight: bold;
  color: #362c7c;
  margin-right: 20px;
  font-size: 18px;
  border-radius: 50%;
  box-shadow: 0 3px 6px 0 rgb(210 210 210 / .55);
  flex-shrink: 0;
  /* Prevents shrinking in flex container */
}

.step-content h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #362c7c;
  font-family: "Crimson Text", serif;
}

.step-content p {
  font-size: 15px;
  color: #555;
}

.treatment-image {
  flex: 1 1 40%;
}

.treatment-img img {
  width: 100%;
  border-radius: 10px;
  height: 600px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Treatment Page Ends */
/* Footer Started  */

/*** Footer ***/
.footer {
  background: linear-gradient(#3c2560, #110b1c), url(../img/bg/pettern-3.png) center center no-repeat;
  background-size: cover;
}

.footer-text p {
  color: #fff;
  line-height: 20px;
}

.footer-bottom {
  background-color: #4a2c79;
}

@media (min-width: 992px) {
  .footer::after {
    position: absolute;
    content: "";
    width: 0px;
    height: 100%;
    top: 0;
    left: 56%;
    border-left: 1px dashed rgba(255, 255, 255, .2);
  }
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: rgb(255 251 252);
  font-weight: normal;
  text-transform: capitalize;
  transition: .3s;
  text-decoration: none;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: rgba(255, 255, 255, .5);
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: white;
  letter-spacing: 1px;
  box-shadow: none;
}

.copyright {
  border-top: 1px dashed rgba(255, 255, 255, .2);
}

.copyright a {
  color: #fff;
  text-decoration: none;
}

.copyright a:hover {
  color: var(--bs-primary);
}

.custom-btn {
  width: 150px;
  height: 40px;
  color: #fff;
  border-radius: 5px;
  padding: 10px 25px;
  font-family: 'Lato', sans-serif;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5),
    7px 7px 20px 0px rgba(0, 0, 0, .1),
    4px 4px 5px 0px rgba(0, 0, 0, .1);
  outline: none;
}

.text-black {
  color: #000 !important;
}

/* Footer Ends */

/* Floating Button Container */
.floating-buttons {
  position: fixed;
  bottom: 80px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  z-index: 9999;
}

/* Button Styling */
.floating-buttons a {
  width: 55px;
  height: 55px;
  background-color: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px #4a2c798f;
  animation: pulse 2s infinite;
  transition: transform 0.3s ease;
}

.floating-buttons a:hover {
  transform: scale(1.1);
}

/* Icons */
.floating-buttons img {
  width: 32px;
  height: 32px;
}

/* Pulse Animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 #852817;
  }

  70% {
    box-shadow: 0 0 0 12px rgba(0, 128, 0, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 128, 0, 0);
  }
}

/* Floating Buttons Css Ends */

/* Carousel Slider Button */

.btn-style-four {
  position: relative;
  font-weight: 700;
  overflow: hidden;
  text-align: center;
  border-radius: 0px;
  padding: 11px 25px;
  letter-spacing: 1px;
  display: inline-block;
  color: #4a2c79;
  font-size: 14px;
  text-transform: uppercase;
  border: 1px solid #4a2c79;
}

.btn-style-four:before {
  -webkit-transition-duration: 800ms;
  transition-duration: 800ms;
  position: absolute;
  width: 200%;
  height: 200%;
  content: "";
  top: -200%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: 1;
  background: #362c7c;
}

.btn-style-four:hover:before {
  top: 0%;
}

.btn-style-four .btn-wrap {
  position: relative;
  z-index: 1;
  float: left;
  overflow: hidden;
}

.btn-style-four .btn-wrap .text-one {
  position: relative;
  display: block;
  color: #362c7c;
  transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.btn-style-four:hover .btn-wrap .text-one:first-child {
  -webkit-transform: translateY(-150%);
  -ms-transform: translateY(-150%);
  transform: translateY(-150%);
}

.btn-style-four .btn-wrap .text-two {
  position: absolute;
  top: 100%;
  display: block;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn-style-four:hover .btn-wrap .text-two {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.btn-style-four:hover .btn-wrap .text-two {
  color: #fff;
}

.btn-style-four:hover:before {
  top: -40%;
}

.about-font h1 {
  font-size: 60px;
  color: #362c7c !important;
  font-family: "Crimson Text", serif;
  font-weight: 600;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
}

.appoitmentboxright p a {
  font-size: 17px;
  font-family: "Source Sans 3", sans-serif;
  color: #0a3d63;
  font-weight: 500;
  text-decoration: none;
}

.pt5 {
  padding-top: 3rem;
}

.appoitmentboxright1 {
  display: flex;
  gap: 10px;
}

.aboutusright h2 {
  font-size: 40px;
  color: #362c7c;
  line-height: 1.5;
  font-family: "Crimson Text", serif;
  font-weight: 600;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
}

.aboutusright h4 {
  font-size: 30px;
  color: #362c7c;
  line-height: 1.5;
  font-family: "Crimson Text", serif;
  font-weight: 600;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
}

.WhattoExpect {
  margin: 0px;
  padding: 30px;
  width: 100%;
  display: block;
  background-color: #cacfcf;
  box-shadow: 6px 6px 6px rgba(82, 82, 82, 0.486);
}

.list-group-item i {
  color: #852817;
}

.WhattoExpect h2 {
  font-family: "Merriweather", sans-serif;
  font-size: 25px;
  line-height: 1.5;
  color: #362c7c;
  font-weight: 600;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
  font-size: 18px;
  color: #362c7c;
}

/* Carousel SLider Button Ends */

/* Gallery Section Started */
/* Gallery Styles */
.gallery {
  padding: 20px;
  text-align: center;
}

.gallery-grid {
  padding: 0;
  margin: 0;
  position: relative;
  gap: 15px;
  justify-items: center;
}

.gallery-item img {
  width: 100%;
  height: 270px;
  border-radius: 11px;
  cursor: pointer;
  object-fit: cover;
  transition: transform 0.3s ease;
  box-shadow: 2px 2px 10px #00000094;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.lightbox.open {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 80%;
  text-align: center;
}

#lightbox-img {
  width: 100%;
  height: 350px;
  border-radius: 8px;
  object-fit: cover;
}

#lightbox-caption {
  color: white;
  margin-top: 10px;
  font-size: 1.2rem;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2.5rem;
  color: white;
  cursor: pointer;
  z-index: 100;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 20px;
}

.prev,
.next {
  font-size: 2.5rem;
  color: white;
  cursor: pointer;
  user-select: none;
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Gallery Section Ends */
.aboutus-img img{
  width: 100%;
  height: 376px;
  object-fit: cover;
}



.counter-box p{
  font-size: 22px;
    font-weight: 600;
    font-family: "Crimson Text", serif;
}
.counter-box h3{
  font-family: "Crimson Text", serif;
} 
.counter-value::after {
  content: "+";
  font-size: 0.9em;
  margin-left: 2px;
  font-family: cursive;
}
.body-cont3 {
  padding: 45px 0;
  background-image: url(../images/home-img-8.png), url(../images/home-img7.png);
  background-repeat: no-repeat, no-repeat;
  background-position: left top, 112% bottom
}

section.body-cont3 h2 {
  color: #000000;
  font-size: 36px;
  font-weight: 500;
  margin: 0
}

section.body-cont3 h2 span {
  color: #362c7c;
  font-weight: 800;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
}

section.body-cont3 h6 {
  max-width: 588px;
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  margin: 20px 0 55px
}

section.body-cont3 .wrap {
  display: flex
}

section.body-cont3 .wrap .img-wrap {
  width: 60px;
  margin-right: 15px
}

section.body-cont3 .wrap h3 {
  color: #333333;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 5px
}

section.body-cont3 .wrap p {
  max-width: 383px;
  color: #333333;
  font-size: 14px;
  font-weight: 400;
  line-height: 30px;
  margin: 0px 0 50px
}


/* Responsive 992px Css Started */

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
    padding: 0;
  }
  .navbar .dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 0;
  }

  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
  }
}

/* Responsive 992 Ends */

/* Responsive Css Starte */
@media (max-width: 678px) {
  #heroSlider .item img{
    width: 100%;
    height:auto;
  }
  #heroSlider .item {
    height: auto;  
    position: relative;
}
  
  .carousel-item {
    position: relative;
    width: 100%;
    height: auto; /* key for auto height */
  }
  .carousel-caption {
    bottom: 25%;
    padding: 0.75rem;
  }

  .carousel-caption h1 {
    font-size: 1.5rem;
  }

  .carousel-caption p {
    display:none;
  }

  .slider-two_buttons {
    padding-right: 80px;
    padding-left: 80px;
    text-align: center;
    align-items: center;
}

  .slider-buttons a {
    width: 100%;
    text-align: center;
  }
  .dropdown-menu.show {
    position: relative;
    opacity: 1;
    visibility: visible;
    height: 180px;
    overflow: scroll;
  }

  .carousel-caption {
    position: absolute;
    right: 4%;
    left: 0%;
    top: 1.25rem;
    bottom: 0.25rem;
    color: #fff;
    text-align: center;
}

  .services-section .upper-section .text-column .text {
    position: relative;
    color: #fff;
    font-size: 17px;
    line-height: 1.8em;
    font-weight: 300;
    padding-left: 0px;
    margin-top: 0px;
    border-left: none;
  }

  .sec-title_title h2 {
    font-weight: 600;
    letter-spacing: 1px;
    color: #fff;
    font-size: 31px;
    text-transform: capitalize;
    margin-bottom: 0px;
    font-family: "Crimson Text", serif;
  }

  .title-heading h2 {
    font-weight: 700 !important;
    color: #362c7c;
    font-size: 27px;
    text-align: center;
    font-family: "Crimson Text", serif;
    line-height: 1.0;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
  }

  .services-section .upper-section {
    position: relative;
    padding: 37px 0px 155px;
  }

  .aboutusright h2 {
    font-size: 29px;
    text-align: center;
  }

  .list-group-item i {
    color: #852817;
  }

  .appointment-title h2 {
    font-size: 30px;
    font-family: 'Crimson Text';
    font-weight: 600;
    line-height: 1.7;
    color: #362c7c;
    text-align: center;
    text-shadow: 2px 2px 2px rgb(0 0 0 / 18%);
  }

  .contact-header {
    text-align: center;
    padding: 25px 20px 20px;
  }

  .aboutcontent h2 {
    margin-top: 20px;
    color: #362c7c;
    font-size: 31px;
    font-family: "Crimson Text", serif;
    line-height: 1.5;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
  }

  .overlay-img {
    position: relative;
    bottom: -20px;
    right: 0;
    width: 80%;
    margin: 0px auto;
    height: auto;
    border: 5px solid #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  }

  .carousel-caption h1 {
    font-size: 20px !important;
}
 
.carousel-caption h1 span {
  display: none;
}

  .carousel-control-prev,
  .carousel-control-next {
    padding: 8px 15px;
  }

  .dropdown-item {
    width: 100%;
  }

  .floating-buttons {
    right: 29px;
    bottom: 68px;
  }

  .floating-buttons a {
    width: 50px;
    height: 50px;
  }

  .floating-buttons img {
    width: 24px;
    height: 24px;
  }

  .offset-1 {
    margin-left: 0 !important;
  }

  .slider-service .owl-prev {
    display:none !important;
  }

  .slider-service .owl-next {
    display:none !important;
  }

  .slider-service .owl-prev {
    left: 0px !important
  }

  .slider-service .owl-next {
    right: 0px !important;
  }

  .testimonial-section .owl-prev {
    left: -14px !important;
  }

  .testimonial-section .owl-next {
    right: -14px !important;
  }

  .contact-header h1 {
    font-size: 26px;
    font-family: "Crimson Text", serif;
    font-weight: 500;
  }

  .btn-style-four {
    position: relative;
    font-weight: 700;
    overflow: hidden;
    border-radius: 0px;
    padding: 6px 15px;
    letter-spacing: 1px;
    display: inline-block;
    color: #fff;
    font-size: 10px;
    text-transform: uppercase;
    border: 1px solid #fff; 
    justify-content: center;
    align-items: center;
}

  section.body-cont3 h2 {
    color: #000000;
    font-size: 29px;
    text-align: center;
    font-weight: 500;
    margin: 0;
  }

  .contact-lower {
    flex-direction: column;
  }

  .contact-card {
    flex: 1 1 90%;
  }

  .treatment-img img {
    width: 100%;
    border-radius: 10px;
    height: 300px;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
  }

  .treatment-text h2 {
    font-size: 49px;
    color: #362c7c;
    font-weight: 600;
    text-align: center;
    margin-bottom: 17px;
    font-family: "Crimson Text", serif;
  }

  .treatment-text h2 span {
    background: #3c2560;
    color: #fff;
    padding: 2px 12px;
    font-size: 30px;
    border-radius: 5px;
    font-family: "Crimson Text", serif;
  }
  .counter-box p{
    font-size: 14px;
    font-weight: 600;
    font-family: "Crimson Text",serif;
  }

 .counter-box h3{
     font-family: "Crimson Text", serif;
 } 
  .btn-style-four:before {
    -webkit-transition-duration: 800ms;
    transition-duration: 800ms;
    position: absolute;
    width: 200%;
    height: 200%;
    content: "";
    top: -200%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border-radius: 50%;
    z-index: 1;
    background: #fff;
  }

  .btn-style-four .btn-wrap .text-one {
    position: relative;
    display: block;
    color: #fff;
    transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
  }


}