/* Fonts */
:root {
    --default-font: Roboto;
    --nav-font: Roboto;
  }
  
  /* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
  :root {
    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #e94e9f; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #2c4964; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #e94e9f; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  }
  
  /* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
  :root {
    --nav-color: #2c4964; /* The default color of the main navmenu links */
    --nav-hover-color: #1977cc; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #2c4964; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #1977cc; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
  }
  
  /* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */
  
  .light-background {
    --background-color: #f1f7fc;
    --surface-color: #ffffff;
  }
  
  .dark-background {
    --background-color: #060606;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --contrast-color: #ffffff;
  }
  
  /* Smooth scroll */
  :root {
    scroll-behavior: smooth;
  }
  
  /*--------------------------------------------------------------
    # General Styling & Shared Classes
    --------------------------------------------------------------*/
  body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
  }
  
  a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
  }
  

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: #2c2d3f;
    font-family: Arial, sans-serif;
    font-weight: 500;
  }
  

.sticky {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
  bottom: auto;
  display: block;
  transition: all 0.5s ease;
}

.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1020;
}

.sticky-bottom {
  position: sticky;
  bottom: 0;
  z-index: 1020;
}
.header_main {
  width: 100%;
  float: left;
  background-color: #ffffff;
  transition: all 0.5s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Soft shadow */
  z-index: 1000; /* Keeps it above other elements */
}

.btn_action .icon_phone {
  background-color: #E94E9F;
  color: #000000;
}
.brand {
  width: 140px;
  float: left;
  padding: 0 0;
}
.call_txt {
  float: left;
  font-size: 14px;
  color: #fff;
}
.d-none-mobile {
  display: block;
}
.btn_action {
  height: 42px;
  float: left;
  background-color: #E94E9F;
  border: 2px solid transparent;
  font-size: 14px;
  font-weight: 500;
  color: #000000;
  text-align: center;
  padding: 10px 20px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 20px;
  transition: all 0.5s ease;
  border: 1px solid black;
}
.location_select {
  width: 165px;
  height: 42px;
  float: left;
  font-size: 14px;
  color: #fff;
  background-color: transparent;
  background-image: url(../img/arrow_down_white.png);
  background-repeat: no-repeat;
  background-position: calc(100% - 10px);
  background-size: 20px auto;
  border: 2px solid #fff;
  border-radius: 4px;
  margin-left: 10px;
}
.float-right {
  float: right !important;
}
.mr-4, .mx-4 {
  margin-right: 1.5rem !important;
}
  .header {
    color: var(--default-color);
    transition: all 0.5s;
    z-index: 1030;
    background-color: var(--background-color);
  }
  

  
  .header .topbar {
    background-color: #e94e9f;
    height: 50px;
    padding: 0;
    font-size: 14px;
    transition: all 0.5s;
  }
  
  .header .topbar .contact-info i {
    font-style: normal;
    color: #000000;
    padding: 10px;
  }
  
  .header .topbar .contact-info i:hover {
    color: var(--contrast-color);
  }
  
  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    padding-left: 5px;
    color: #000000;
    font-weight: 500;
  }
  
  @media (max-width: 400px) {
    .header .topbar .contact-info i a,
    .header .topbar .contact-info i span {
      font-size: 12px;
    }
  }
  
  .header .topbar .contact-info i a {
    line-height: 0;
    transition: 0.3s;
  }
  
  
  .header .topbar .social-links a {
    color: color-mix(in srgb, var(--contrast-color), transparent 10%);
    line-height: 0;
    transition: 0.3s;
    margin-left: 20px;
    width: 20px;
    height: auto;
  }
  
  .header .branding {
    min-height: 60px;
    padding: 2px;
  }
  
  .header .logo {
    line-height: 1;
  }
  
  .header .logo img {
    border-radius: 8px;
    height: 45px; 
    width: 130px;
  }
  
  .header .cta-btn,
  .header .cta-btn:focus {
    color: #000000;
    background: #e73d95;
    border: 1px solid rgb(0, 0, 0);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 10px;
    margin: 0 0 0 30px;
    border-radius: 50px;
    transition: 0.3s;
    position: fixed;
    right: 40px;
  }
  
  .header .cta-btn:hover,
  .header .cta-btn:focus:hover {
    color: var(--contrast-color);
    background: #e94e9f;
  }
  
  @media (max-width: 999px) {
    .header .cta-btn {
      display: none !important;
    }

    .header .logo img {
        border-radius: 8px;
        height: 45px; 
        width: 130px;
      }
  }
  @media (max-width: 1200px) {
    .header .logo {
      order: 1;
    }
  
    .header .cta-btn {
      order: 2;
      margin: 0 15px 0 0;
      padding: 6px 15px;
    }
  
    .header .navmenu {
      order: 3;
    }
  }
  
  .scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
  }
  
  p {
    color: #000000;
  }
  
  li {
    color: #000000;
  }
  
  .hdr-text {
    border-radius: 30px;
    height: 200px;
  }
  
  
  /* Main Appointment Section Styling */
  #appointment.main-appointment {
    background-color: #ffffff;
  }
  
  #appointment.main-appointment .section-title {
    text-align: center;
  }
  
  #appointment.main-appointment .section-title h2 {
    font-size: 32px;
    font-weight: bold;
    color: #2c2d3f;
    margin-bottom: 25px;
    margin-top: 25px;
  }
  
  #appointment.main-appointment .section-title p {
    font-size: 16px;
    color: #666;
  }
  
  /* Form Styling */
  #appointment.main-appointment .form {
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #ffffff;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  #appointment.main-appointment .form .form-group {
    margin-bottom: 20px;
  }
  
  #appointment.main-appointment .form .form-label {
    font-size: 14px;
    font-weight: 600;
    color: #555;
  }
  
  #appointment.main-appointment .form-control {
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 14px;
    padding: 15px;
    font-weight: 500;
    color: #000000;
  }
  
  #appointment.main-appointment .form-control:focus {
    border-color: #e94e9f;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
  }
  
  #appointment.main-appointment textarea.form-control {
    resize: none;
  }
  
  #appointment.main-appointment button#submitButton {
    background-color: #e73d95;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  #appointment.main-appointment button#submitButton:hover {
    background-color: #e94e9f;
  }
  .why-choose-us {
    background-color: #ffffff; /* Light background for the section */
  }
  
  .why-choose-us .section-title {
    font-size: 32px;
    color: #2c2d3f;
    font-weight: 600;
  }
  
  /* Flexbox for equal-height and equal-width items */
  .why-choose-us .row {
    display: flex;
    flex-wrap: wrap; /* Ensures items wrap on smaller screens */
  }
  
  .why-choose-us .choose-us-item {
    background-color: #fff; /* White background for each item */
    padding: 30px;
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Ensures equal height */
    align-items: center;
    height: 100%; /* Makes sure the items have equal height */
    border: 1px solid black;
  }
  
  .why-choose-us .choose-us-item:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2); /* Increased shadow on hover */
  }
  
  .why-choose-us .choose-us-item i {
    color: #007bff; /* Icon color */
    margin-bottom: 10px;
  }
  
  .why-choose-us .choose-us-item h3 {
    font-size: 21px;
    color: #333;
    font-weight: 600;
    margin-top: 2px;
  }
  
  .why-choose-us .choose-us-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-top: 10px;
  }
  
  /* Make the section and items responsive */
  @media (max-width: 480px) {
    .why-choose-us .choose-us-item {
      padding: 10px;
    }
  
    .why-choose-us .choose-us-item h3 {
      font-size: 1.2rem; /* Smaller heading for mobile */
    }
  
    .why-choose-us .choose-us-item p {
      font-size: 0.9rem; /* Smaller paragraph text for mobile */
    }
  
    .why-choose-us .row {
      flex-direction: column; /* Stack items in one column for mobile view */
    }
  }
  
  .icon {
    text-align: center;
  }
  

  /*--------------------------------------------------------------
# Doctors Section
--------------------------------------------------------------*/
.doctors{
  background-color: #ffffff;
}

.in-cta-box{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

.in-cta-box .in-cta-button{
  background-color: #E94E9F;
  border: 1px solid rgb(0, 0, 0);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 25px;
  display: inline-block;
  text-align: center;
  white-space: nowrap;
}

.doctors .team-member {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  border-radius: 50px;
  transition: 0.5s;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border: 1px solid black;
}


@media (max-width: 468px) {
  .doctors .team-member {
    flex-direction: column;
    justify-content: center !important;
    align-items: center !important;
  }
}

.doctors .team-member .pic {
  overflow: hidden;
  width: 150px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-bottom: 15px; /* Add spacing between the image and content */
  transition: 0.1s;

}




.doctors .cta-btn {
  color: white;
  background: #E73D95;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 50px;
  transition: 0.3s;
  margin-top: 15px;
  text-align: center;
  display: inline-block;
  border: 1px solid #000000;
}

.doctors .cta-btn:hover {
  background-color: #E94E9F;
  color: whitesmoke;
}

.doctors .team-member:hover {
  transform: translateY(-10px);
}

.doctors .team-member .member-info {
  padding-left: 48px;
}

.doctors .team-member-loc .member-info {
  text-align:center;
}

@media (max-width: 468px) {
  .doctors .team-member .member-info {
    padding: 30px 0 0 0;
    text-align: center;
  }
  .doctors .team-member .member-info .cta-btn{
      margin-left: 5px;
      color: #fff;
  }
    .doctors .team-member-loc .member-info {
    padding: 30px 0 0 0;
    text-align: center;
  }
  .doctors .team-member-loc .member-info .cta-btn{
      margin-left: 5px;
      color: #fff;
  }
}

.doctors .team-member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 24px;
}

.doctors .team-member .name{
  display: block;
  font-size: 19px;
  margin-top:0;
  font-weight: 500;
  color: #090b2c;
}

.doctors .team-member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.doctors .team-member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
  bottom: 0;
  left: 0;
}

@media (max-width: 468px) {
  .doctors .team-member span::after {
    left: calc(50% - 25px);
  }
    .doctors .team-member .member-info .cta-btn {
        /* margin-left: 5px; */
        color: #fff;
    }
}

.doctors .team-member p {
  margin: 10px 0 0 0;
  font-size: 18px;
  color: #2c2d3f;
}

.doctors .team-member-loc span{
  color: #2c2d3f;
}
.doctors .team-member-loc p {
  margin: 10px 0 0 0;
  font-size: 14px;
  color: #2c2d3f;
}

/* Doctor's Page */

/* Doctor Page Styles */
.doctor-page {
  margin-bottom: 50px; /* Add space below the doctor page section */
}
.doctor-page .team-member {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  border-radius: 5px;
  padding: 30px;
  height: 100%;
  text-align: center;
  transition: 0.5s;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.doctor-page .team-member:hover {
  transform: translateY(-10px);
}

/* Doctor Image Styles */
.doctor-page .team-member .pic {
  width: 180px;
  height: 180px;
  margin-bottom: 20px;
  object-fit: cover;
  border-radius: 50%;
}

.doctor-heading h2 {
  font-size: 2em;
  margin: 15px;
  font-weight: 500;
  font-family: var(--heading-font);
}

.doctor-page .team-member h4 {
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 5px;
}

.doctor-page .team-member p {
  font-size: 14px; /* Slightly larger for readability */
  margin: 10px 0 0;
}

.doctor-page .team-member span {
  display: block;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  padding-bottom: 15px;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .doctor-page .team-member .pic {
    width: 160px;
    height: 160px;
  }

  .doctor-page .team-member h4 {
    font-size: 18px;
  }

  .doctor-page .team-member span::after {
    left: calc(50% - 30px); /* Adjust line position */
  }
}

@media (max-width: 768px) {
  .doctor-page .row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Adds space between columns */
  }

  .doctor-page .col-lg-3,
  .doctor-page .col-md-6 {
    flex: 1 0 48%; /* Adjusted to 2 columns */
  }

  .doctor-heading h2 {
    font-size: 2em;
    font-family: var(--heading-font);
  }
}

.why-choose-us-service {
  background-color: #ffffff; /* Light background for the section */
  border: 1px solid #ddd;
  border-radius: 20px;
  margin: 20px 0px;}

.why-choose-us-service .section-title {
  font-size: 32px;
  color: #2c2d3f;
  font-weight: 600;
  margin-bottom: 10px; /* Adjust the spacing below the title */
}

/* Flexbox for equal-height and equal-width items */
.why-choose-us-service .row {
  display: flex;
  flex-wrap: wrap; /* Ensures items wrap on smaller screens */
}

.why-choose-us-service .service-choose-us-item {
  background-color: #fff; /* White background for each item */
  padding: 30px;
  border-radius: 8px; /* Rounded corners */
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Ensures equal height */
  height: 100%; /* Makes sure the items have equal height */
  border: 1px solid black;
}

.why-choose-us-service .service-choose-us-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2); /* Increased shadow on hover */
}

.why-choose-us-service .service-choose-us-item i {
  color: #007bff; /* Icon color */
  margin-bottom: 10px;
}

.why-choose-us-service .service-choose-us-item h3 {
  font-size: 1.4rem;
  color: #333;
  font-weight: 600;
  margin-top: 2px;
}

.why-choose-us-service .service-choose-us-item p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-top: 10px;
}

/* Make the section and items responsive */
@media (max-width: 480px) {
  .why-choose-us-service .service-choose-us-item {
    padding: 10px;
  }

  .why-choose-us-service .service-choose-us-item h3 {
    font-size: 1.2rem; /* Smaller heading for mobile */
  }

  .why-choose-us-service .service-choose-us-item p {
    font-size: 0.9rem; /* Smaller paragraph text for mobile */
  }

  .why-choose-us-service .row {
    flex-direction: column; /* Stack items in one column for mobile view */
  }
}
.section-title {
  text-align: center;
  padding: 20px;
  margin: 20px;
}
  .container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
padding-right: 15px;
padding-left: 15px;
}
.container {
max-width: 1300px;
}
  .clients-testimonials {
background-color: #fff;
padding: 20px 0 50px;
}

.clients-testimonials .section-title h2{
color: black;
font-weight: 600;
margin-bottom: 25px;
}

.testimonial-item{
background-color: #fff;
border: 1px solid #f7a582;
padding:40px;
min-height: 450px;
}

.testimonial-header{
display: flex;
margin-bottom: 20px;
}

.testimonial-image{
margin-right: 20px;
}

.testimonial-image img{
width: 60px;
height: 60px;
object-fit: cover;
border-radius: 100px;
}

.author-content{
width: calc(100% - 80px);
}

.author-content .author-title h3{
font-size: 22px;
text-transform: capitalize;
color: black;
margin-bottom: 5px;
font-weight: 600;
}

.testimonial-rating-list{
margin-bottom: 15px;
}

.testimonial-rating-list ul{
list-style: none;
padding: 0;
margin: 0;
display: flex;
}

.testimonial-rating-list ul li{
margin-right: 3px;
line-height: 0.9;
}

.testimonial-rating-list ul li:last-child{
margin-right: 0;
}

.testimonial-rating-list ul li i{
color: #f0ad4e;
font-size: 14px;
}

.testimonial-content p,
.author-content .testimonial-title p{
font-size: 15px;
color: black;
}

.testimonial-slider .swiper-pagination{
position: relative;
text-align: center;
bottom: 0px;
margin-top: 150px;
}

.testimonial-slider .swiper-pagination .swiper-pagination-bullet{
height: 12px;
width: 12px;
background-color: black;
opacity: 1;
margin: 0px 6px;
}

.testimonial-slider .swiper-pagination .swiper-pagination-bullet-active{
background-color: var(--accent-color);
opacity: 1;
}

/* Home Page styles*/
.home_banner {
  width: 100%;
  float: left;
  background-color: #dedddc;
  padding: 60px 0;
  margin-top: 36px; /* Adjust according to your header height */
  margin-bottom: 36px;
  height: 470px;
}

.home_banner .banner_in {
  width: 100%;
  float: left;
  position: relative;
}

.home_banner .banner_info {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* float: left; */
  position: relative;
  z-index: 10;
}

.home_banner .banner_info h1 {
  font-size: 40px;
  font-weight: 500;
  color: #a42c53;
  line-height: 1.2;
  padding: 0;
  margin: 0;
}

.home_banner .banner_info h3 {
  font-size: 20px;
  font-weight: 400;
  color: #010000;
  margin-bottom: 80px;
}

.home_banner .banner_info p {
  font-size: 15px;
  color: #000;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 0;
}

.home_banner .price_info {
  width: fit-content;
  font-size: 24px;
  color: #fff;
  background-color: #21aaa3;
  border-radius: 6px;
  font-weight: 600;
  padding: 2px 10px 0 10px;
  margin-bottom: 48px;
}

.box_free_out {
  width: 100%;
  float: left;
}

.box_free {
  width: 100%;
  float: none;
  display: inline-block;
  font-size: 17px;
  border: 1px solid #a42c53;
  border-radius: 14px;
  text-align: center;
  color: #000;
  font-weight: 500;
  padding: 5px 10px 7px 0;
}

.box_free .txt_free {
  width: 90%;
  float: left;
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  text-transform: uppercase;
  background-image: url("../img/bg-free-rippon-bar.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 90% 70px;
  padding: 0 5px;
  margin: -38px 5% 5px 5%;
}

.box_free span {
  color: #a42c53;
}

.home_banner .banner_info .btn_action {
  width: auto;
  height: 40px;
  float: none;
  background-color: #3f9dbc;
  color: #fff;
  border-color: #3f9dbc;
  border-radius: 7px;
  padding: 8px 20px;
}

.home_banner .banner_info .btn_action:hover,
.home_banner .banner_info .btn_action:focus,
.home_banner .banner_info .btn_action:active,
.home_banner .banner_info .btn_action:visited {
  background-color: #3f9dbc;
  color: #fff;
}

.home_banner img {
  max-width: 310px;
}

.home_banner .form_book_appointment_home {
  width: 100%;
  max-width: 350px;
  float: none;
  display: inline-block;
  text-align: left;
  background-color: #ffffff;
  border: 2px solid #fff;
  border-radius: 9px;
  box-shadow: #c1c1c1 0 2px 5px;
  padding: 35px 25px;
}

.home_banner .form_book_appointment_home h4 {
  font-size: 18px;
  color: #a42c53;
  text-transform: uppercase;
}

.policy_text {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 12px !important;
  color: #999;
  font-weight: 400 !important;
  margin-top: 15px;
}

.policy_text .custom_checkbox {
  width: 17px;
  height: 17px;
  float: none;
  display: inline-block;
  background-color: #a42c53;
  border: 1px solid #a42c53;
  margin-right: 7px;
  position: relative;
}

.policy_text .custom_checkbox:after {
  left: 5px;
  top: 0;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  content: "";
  position: absolute;
}

.policy_text a {
  color: #999;
  margin-left: 5px;
}

.policy_text a:hover {
  color: #a42c53;
}

/* .home_banner .form_book_appointment_home .form-control {
  height: 40px;
  font-size: 14px;
  color: #6a6a6a;
  border: 1px solid #c1c1c1;
  border-radius: 6px;
  padding: 8px 10px;
} */

@media (min-width: 1240px) {
  .home_banner .owl-dots {
    bottom: 45px;
  }
}

@media (min-width: 991px) and (max-width: 1024px) {
  .home_banner .banner_info h1 {
    font-size: 36px;
  }

  .home_banner .banner_info h3 {
    font-size: 18px;
    margin-bottom: 80px;
  }

  .home_banner .banner_info p {
    font-size: 14px;
  }

  .home_banner .price_info {
    font-size: 22px;
  }

  .box_free {
    font-size: 12px;
    padding: 5px 10px 5px 0;
  }

  .box_free .txt_free {
    padding: 6px 7px;
    margin-right: 2px;
  }

  .home_banner img {
    max-width: 290px;
  }

  .home_banner .form_book_appointment_home h4 {
    font-size: 17px;
  }
}

@media (min-width: 768px) and (max-width: 990px) {
  .home_banner {
    padding: 20px 0 0 0;
  }

  .home_banner img {
    max-width: 230px;
  }

  .home_banner .banner_info h1 {
    font-size: 23px;
  }

  .home_banner .col-md-8 {
    width: 100%;
    max-width: 660px;
    margin: 0 auto;
  }

  .home_banner .col-md-6 {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    margin-top: 0 !important;
  }

  .home_banner .price_info {
    float: none;
    display: inline-block;
  }

  .home_banner .banner_info h3 {
    font-size: 17px;
    margin-bottom: 15px;
  }

  .home_banner .banner_info p {
    font-size: 14px;
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 0;
  }

  .box_free_out {
    text-align: center;
  }

  .box_free {
    font-size: 12px;
    float: none;
    display: inline-block;
  }
}

@media (max-width: 767px) {
  .home_banner {
    padding: 20px 0 0 0;
  }

  .home_banner img {
    max-width: 230px;
  }

  .home_banner .banner_info h1 {
    font-size: 23px;
  }

  .home_banner .col-md-8 {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }

  .home_banner .col-md-6.mt-5 {
    margin-top: 0 !important;
  }

  .home_banner .price_info {
    float: none;
    display: inline-block;
  }

  .home_banner .banner_info h3 {
    font-size: 17px;
    margin-bottom: 15px;
  }

  .home_banner .banner_info p {
    font-size: 15px;
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 0;
  }

  .box_free_out {
    text-align: center;
    margin-top: 30px;
  }

  .box_free {
    font-size: 16px;
    float: none;
    display: inline-block;
  }
}
#locations { text-align: center; padding: 40px 0; }
.section-title { font-size: 28px; font-weight: bold; margin-bottom: 20px; }
.location-carousel { padding: 0px 50px; }

.location-box-doc {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  padding: 10px;
  transition: background 0.3s ease-in-out;
  position: relative;
}

.location-img-container {
  width: 200px;
  height: 200px;
  overflow: hidden;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #e0f7fa;
  transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
  position: relative;
  border: 3px solid black;
}

.location-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.3s ease-in-out;
}

/* Shrinking effect on hover */
.location-box-doc:hover .location-img-container {
  transform: scale(0.9);
  background: #91c6ea;
}

.location-name-doc {
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
  color: #333;
  transition: color 0.3s ease-in-out;
}

@media (max-width: 768px) {
  .header_main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    overflow-x: hidden;
  }

  .float-right {
    display: flex;
    align-items: center;
  }

  .btn_action {
    display: flex !important;
    align-items: center;
    padding: 6px 10px;
    font-size: 14px;
    white-space: nowrap;
  }

  .call_banner,  /* Hide the 'Book Now' button */
  .d-none-mobile:not(:first-child) {
    display: none !important;
  }

  .brand img {
    max-width: 120px;
    height: auto;
  }

  html, body {
    overflow-x: hidden;
  }
}


     @media (min-width: 1100px) {
    .col-xxl-4 {
        flex: 0 0 auto;
        width: 33.33333%;
    }
}
   .row > * {

    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x)* .5);
    padding-left: calc(var(--bs-gutter-x)* .5);
    margin-top: var(--bs-gutter-y);
}

@media (min-width: 992px) {
    .order-lg-1 {
        order: 1 !important;
    }
}
@media (min-width: 992px) {
    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66667%;
    }
}
.single-inner-service h2{
    color: #2c2d3f;
    font-family: Arial, sans-serif;
    font-weight: 700;
    font-size: 28px;
    padding-bottom: 10px;
    text-transform: uppercase;
    text-align: center;
}
.dz-media img, .dz-post-media img {
    max-width: 100%;
    height: auto;
    width: 100%;
}
.object-fit-cover {
    object-fit: cover !important;
}
.service-single .content-item {
    margin-bottom: 35px;
}
.service-single .content-item h1{
    color: #2c2d3f;
    font-family: Arial, sans-serif;
    font-weight: 700;
    font-size: 32px;
    padding-bottom: 10px;
    text-transform: uppercase;

}

.service-single .single-inner h2, .service-single .single-inner .h2 {
    color: #2c2d3f;
    font-family: Arial, sans-serif;
    font-weight: 700;
    font-size: 28px;
    text-transform: uppercase;
    border-left: 4px solid black;
    padding-left: 5px;
    padding-bottom: 0px;

}
.single-inner-service h2{
    color: #2c2d3f;
    font-family: Arial, sans-serif;
    font-weight: 700;
    font-size: 28px;
    padding-bottom: 10px;
    text-transform: uppercase;
    text-align: center;
}

.service-single .single-inner p {
    font-size: 16px;
    font-weight: 400;
}
.service-single .single-inner h3, .service-single .single-inner .h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
    margin-top: 20px;
    text-transform: uppercase;
}

.service-single .single-inner h4, .service-single .single-inner .h4 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
    padding-left: 4px;
    text-transform: uppercase;
    color:#007bff;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.m-b30 {
    margin-bottom: 30px;
}

.dz-team.style-1 {
    border-radius: 25px;
}
.dz-team {
    -webkit-transition: all 0.2s;
    -ms-transition: all 0.2s;
    transition: all 0.2s;
    position: relative;
}
.dz-team.style-1.active .dz-media, .dz-team.style-1:hover .dz-media {
    background-color: var(--bs-secondary);
}
.dz-team.style-1 .dz-media {
    border: 4px solid transparent;
    border-radius: 25px;
    background-color: var(--bs-light);
    overflow: hidden;
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.dz-team .dz-media img {
    width: 100%;
}

.dz-media img, .dz-post-media img {
    max-width: 100%;
    height: auto;
    width: 100%;
}
.dz-team.style-1.active .dz-media .btn, .dz-team.style-1:hover .dz-media .btn {
    bottom: 10px;
    color: #05053a;
    background-color: #ffffff;
    border-radius: 65px;
    font-weight: 800;   
}
.dz-team.style-1 .dz-media .btn {
    position: absolute;
    bottom: -60px;
    left: 10px;
    right: 10px;
}

.dz-team.style-1.active .dz-content, .dz-team.style-1:hover .dz-content {
    background-color: #c23c7f;
    border: 1px solid black;
}
.dz-team.style-1 .dz-content {
    background-color: #007bff;
    display: flex
;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 35px 20px 15px 20px;
    margin-top: -20px;
    border-radius: 0 0 25px 25px;
    position: relative;
    z-index: 1;
}
.dz-team .dz-content {
    -webkit-transition: all 0.2s;
    -ms-transition: all 0.2s;
    transition: all 0.2s;
    position: relative;
}
.dz-team.style-1 .dz-name {
    font-size: 13px;
    margin-bottom: 6px;
    margin-top: 0px;

}
.dz-team.style-1.active .dz-name a, .dz-team.style-1:hover .dz-name a {
    color: #fff;
}

.dz-team .dz-name a {
    -webkit-transition: all 0.2s;
    -ms-transition: all 0.2s;
    transition: all 0.2s;
    color:#fff;
}
.dz-team.style-1 .dz-position {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

.dz-team .dz-position {
    display: block;
}
.dz-team.style-1.active .btn-square, .dz-team.style-1:hover .btn-square {
    background-color: #fff;
    color: var(--bs-secondary);
    border-color: #fff;
}
.dz-team.style-1 .btn-square {
    height: 40px;
    width: 40px;
    min-width: 40px;
    border-radius: 10px;
    font-size: 20px;
    background-color: black;
}
.btn-square {
    height: 48px;
    width: 48px;
    min-width: 48px;
    padding: 0;
    display: inline-flex
;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
}
.dz-team.style-1.active .btn-square i, .dz-team.style-1:hover .btn-square i {
    -webkit-animation: toRightFromLeft 0.3s forwards;
    -moz-animation: toRightFromLeft 0.3s forwards;
    animation: toRightFromLeft 0.3s forwards;
}   
.dz-team.style-1 .dz-social {
    display: flex
;
    gap: 20px;
    justify-content: center;
    padding: 12px 15px;
    border-radius: 0 0 25px 25px;
    transform: translateY(-50px);
    background-color: var(--bs-light);
    position: relative;
    z-index: 0;
}

.dz-accordion.style-1 .accordion-item:not(:last-child) {
    margin-bottom: 12px;
}
.dz-accordion.style-1 .accordion-item {
    background-color: transparent;
    border: 0;
}.accordion-item:first-of-type {
    border-top-left-radius: var(--bs-accordion-border-radius);
    border-top-right-radius: var(--bs-accordion-border-radius);
}
.accordion-item {
    color: var(--bs-accordion-color);
    background-color: var(--bs-accordion-bg);
    border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
}
.service_menu_nav {
    background: #fff;
    padding: 20px 10px;
    border-radius: 10px;
}
.service_menu_nav[class*="bg-"] .title {
    color: #fff;
}
.widget-title .title {
    margin-bottom: 0;
    font-weight: 800;
}
.side-bar h4, .side-bar .h4 {
    font-size: 28px;
}

@media only screen and (min-width: 1199px) {
    .service-single .side-bar.left {
        padding-right: 1px;
    }
}.side-bar.left {
    padding-left: 0;
    padding-right: 20px;
}
.side-bar {
    padding-left: 20px;
    padding-bottom: 1px;
}
.sticky-top-service {
    position: sticky;
    top: 100px;
    z-index: 1020;
}
.bg-secondary {
    background-color:#E94E9F !important;
}
.service_menu_nav .widget-title {
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 20px;
}

.widget-title {
    position: relative;
    margin-bottom: 25px;
    font-weight: 700;
}
.service_menu_nav ul li {
    padding: 0;
}
ul {
    padding: 0;
    margin: 0;
}
.service_menu_nav ul li a {
    background-color: #fff;
    display: block;
    border-radius: var(--radius-sm);
    padding: 12px 20px;
    font-weight: 500;
    margin-bottom: 5px;
    border-radius: 20px;
    color: var(--bs-secondary);
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.service_menu_nav ul li:hover a:before, .service_menu_nav ul li.current-menu-item a:before, .service_menu_nav ul li.active a:before {
    color: #ffffff;
    background-color: #00bde0;
}
.service_menu_nav[class*="bg-"] ul li:not(:hover):not(.current-menu-item):not(.active) a {
    background-color: transparent;
    color: #fff;
}
.service_menu_nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service_menu_nav ul li {
    position: relative;
    padding: 8px 20px;
    border-bottom: 1px solid #ddd; /* Optional: Adds a subtle separator */
}

.service_menu_nav ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Ensures text and icon are spaced */
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    transition: color 0.3s ease-in-out;
}

.service_menu_nav ul li a:hover {
    color: #007bff; /* Change color on hover */
}

.service_menu_nav ul li.active a {
    color: #007bff; /* Highlight active item */
    font-weight: bold;
}

.service_menu_nav ul li a i {
    width: 20px;
    height: 20px;
    stroke-width: 2;
    color: #333; /* Adjust color */
}


@media only screen and (min-width: 1199px) {
    .service-single .side-bar.left {
        padding-right: 1px;
    }
}
.ul.list-check li:before {
    content: "\f109";
    font-family: flaticon;
    color: var(--bs-primary);
}
.list-circle li, .list-angle-double li, .list-square li, .list-square-check li, .list-check-circle li, .list-check-circle-small li, .list-check li, .list-plus-circle li, .list-arrow-left-circle li, .list-arrow-right-circle li, .list-check-try li {
    position: relative;
    padding: 1px 0px 1px 1px;
    font-family: var(--font-family-base);
    font-size: 16px;
    font-weight: 500;
}
.list-check i{
    font-family: "flaticon";
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    display: inline-block;
    margin-right: 10px;
    color: var(--bs-primary, #3498db);
    font-size: 18px;
}

.fa-classic, .fa-regular, .fa-solid, .far, .fas {
    font-family: "Font Awesome 6 Free";
}
        .faq-section-service {
    background: #fff;
    border-radius: 8px;
    padding-bottom: 30px;
  }
  .faq-item-service {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
  }
  .faq-question-service {
    width: 100%;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    transition: background 0.3s;
    text-align: left;
  }
  .faq-question-service:hover {
    background: #f1f1f1;
  }
  .faq-answer-service {
    max-height: 0;
    overflow: hidden;
    padding: 0 10px;
    transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
  }
  .faq-item-service.active .faq-answer-service {
    max-height: 100px;
    padding: 10px;
    color:black;
  }
  .faq-icon {
    font-weight: bold;
    transition: transform 0.3s;
  }
  .faq-item-service.active .faq-icon {
    transform: rotate(45deg);
  }
/* Parent Container */
.video-testimonial-section {
    max-width: 1300px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
  }

  .section-title-tes {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: bold;
  }

  .video-container {
  width: 100%;
  max-width: 1000px; /* Slightly reduced for better fit on laptop */
  aspect-ratio: 16 / 9; /* Maintains proper video proportions */
  margin: 0 auto;
  position: relative;
}
.video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
}


/* Mobile Optimization */
@media (max-width: 480px) {
    .video-container iframe {
    width: 100%;
    height: 250px;
    border-radius: 10px;
    width: 360px;
}
}

/* Responsive Design */
@media (max-width: 768px) {
    .video-testimonial-section {
        flex-direction: column;
        align-items: center;
    }
}

.new-hdr-breadcrumb {
    background-color: #d382b7;
    padding: 5px;
}
.hdr-breadcrumb {
    padding: 0px;
    margin-bottom: 0rem;
    background-color: #62206005 ;
}
.hdr-breadcrumb {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: .75rem 1rem;
    margin-bottom: 1rem;
    list-style: none;
    background-color: #e9ecef;
    border-radius: .25rem;
}
.hdr-breadcrumb-item {
    color: #ffffff;
    font-size: 11px;
}
.hdr-breadcrumb a {
    font-size: 12px;
}
.hdr-breadcrumb a, .fa-angle-double-right {
    color: #fff;
}

.fa {
    display: inline-block;
    font: normal normal normal 14px / 1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
/* Section Title */

.testimonials-header-section{
    margin-top: 30px;
}

.testimonials-header-section h2{
  font-size: 38px;
  font-weight: 600;
  margin-bottom: -8px;
  padding-bottom: 20px;
  position: relative;
  font-family: var(--heading-font);
}

.testimonials-header-section p{
  font-size: 16px;
  margin-top: 25px;
  font-family: var(--heading-font);
}

#testimonials h3 {
  font-size: 22px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
  text-align: center;
}

.testimonials-section {
  margin-bottom: 5px;
  margin-top: -47px;
}

/* Section Description */
#testimonials p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 40px;
  text-align: center;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Testimonial Item Styling */
.testimonial-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-bottom: 10px;
  transition: transform 0.3s ease-in-out;
}

.testimonial-item:hover {
  transform: translateY(-5px);
}


/* Testimonial Text */
.testimonial-item p {
  font-size: 1rem;
  color: #444;
  margin-top: 10px;
  line-height: 1.8;
  font-family: Arial;
}

/* Stars Rating */
.stars {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.stars i {
  color: #ffb600;
  font-size: 14px;
  margin: 0 3px;
}

/* Rating Text */
.rating-text {
  font-size: 1rem;
  color: #444;
  font-weight: 500;
  text-align: center;
  margin-top: 5px;
}

/* Swiper Styles */
.swiper-container {
  max-width: 100%;
}

.swiper-slide {
  display: flex;
  justify-content: center;
}

.swiper-pagination-bullet {
  background-color: #ffb600;
}

.swiper-pagination-bullet-active {
  background-color: #ff8a00;
}

/* Accessibility - Ensure focus visibility */
.testimonial-item:focus {
  outline: 3px solid #ffb600;
}



    .events-container {
      max-width: 1200px;
      margin: auto;
    }

    .events-heading {
      font-size: 2.5rem;
      font-weight: 700;
      color: #111;
      margin-bottom: 15px;
      text-align: center;
      text-transform: uppercase;
    }

    .events-description {
      font-size: 18px;
      color: #555;
      text-align: center;
      margin-bottom: 15px;
    }

    .events-swiper {
      padding: 10px;
    }

    .events-slide {
      background: #fff;
      overflow: hidden;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
    }

    .events-slide:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    }

    .events-img {
      height: 220px;
      object-fit: cover;
      border-radius: 10px 10px 0 0;
    }

    .events-card-body {
      padding: 25px;
      border-radius: 1rem;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Soft shadow */
      transition: box-shadow 0.3s ease;
      background-color: #fff;
    }


    .events-card-body:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); /* Slightly deeper on hover */
}
    
    
    .events-title {
      font-size: 18px;
      font-weight: 600;
      color: #222;
      margin-bottom: 20px;
    }

.events-meta {
    display: flex;
    color: #000;
    font-size: 15px;
    margin-top: 10px;
    gap: 14px;
}

    .events-btn {
      border-color: #007bff;
      color: #007bff;
      border-radius: 30px;
      padding: 8px 24px;
      font-weight: 500;
      margin-top: 15px;
      transition: 0.3s ease;
    }

    .events-btn:hover {
      background-color: #007bff;
      color: #fff;
    }

    @media (max-width: 768px) {
      .events-card-body {
        padding: 20px;
      }
    }
    @media (max-width: 768px) {
      .swiper-slide {
        width: 100%; /* Make the swiper slide full width for smaller screens */
      }

