/* Fonts */
:root {
  --default-font: "Figtree", sans-serif, "Roboto", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --nav-font: "Arial", sans-serif;
}

/* 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;
}

.container{
    max-width: 1300px;
}
.weekly-card-title {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.weekly-blog-link {
  text-decoration: none; /* Removes the underline */
  color: #333; /* Set the text color */
  font-size: 26px;
}

.location-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.location-card img {
  width: 100%;
  height: 200px; 
  object-fit: cover;
  border-radius: 30px;
  padding: 8px;
}

.location-details {
  padding: 15px;
  text-align: center;
  height: 200px;
}

.location-card h5 a {
  font-size: 1.2rem;
  font-weight: bold;
  color: black;
}

.location-card p {
  font-size: 14px;
  margin-bottom: 10px;
}

.location-grid {
  margin-top: 20px;
}

@media (max-width: 767px) {
  .location-card img {
      height: 180px;
  }
  .location-card {
      border: 1px solid #ddd;
      margin: 10px;
}
}
/*--------------------------------------------------------------
# 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;
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn-1 {
  width: 70px;
  height: 70px;
  background: radial-gradient(
    var(--accent-color) 50%,
    color-mix(in srgb, var(--accent-color), transparent 75%) 52%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

.pulsating-play-btn-1:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  animation: pulsate-play-btn-1 2s infinite ease-out;
  opacity: 1;
}

.pulsating-play-btn-1:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 18px solid white;
  z-index: 3;
  transform: translateX(2px);
}

.pulsating-play-btn-1:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

@keyframes pulsate-play-btn-1 {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Video thumbnail container */
.video-thumbnail {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  position: relative;
}


.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(
    var(--accent-color) 50%,
    color-mix(in srgb, var(--accent-color), transparent 75%) 52%
  );
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}


/* Main Appointment Section Styling */
#appointment.main-appointment {
  padding: 60px 20px;
  background-color: #ffffff;
}

#appointment.main-appointment .section-title {
  margin-bottom: 30px;
}

#appointment.main-appointment .section-title h2 {
  font-size: 28px;
  font-weight: bold;
  color: #E94E9F;
}

#appointment.main-appointment .section-title p {
  font-size: 20px;
  color: #666;
  font-weight: 700;
}

/* 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: 5px;
  border: 1px solid #ccc;
  font-size: 14px;
  padding: 10px;
  font-weight: 500;
  color: #090b2c;
}

#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;
}

@media (min-width: 1025px) {
  #appointment.main-appointment {
    display: block;
    visibility: visible;
    opacity: 1;
    height: auto;
  }
}

.service-container{
  display: flex;
  margin: 0px 40px;
}

.loc-sel {
  display: flex;
  flex-direction: column; /* Stack label and select vertically */
  justify-content: center;
  align-items: center;
  text-align: center; /* Ensures text is centered */
  margin-bottom: 50px;
}

.loc-sel label {
  font-size: 20px; /* Adjust font size for better visibility */
  margin-bottom: 10px; /* Adds spacing between label and select box */
  font-weight: 400;
}

#locationFilter {
  width: 275px;  /* Adjust width of the select box */
  padding: 10px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 5px;
  border: 1px solid #ccc;
  background-color: #f9f9f9;
  text-align: center;
  transition: 0.3s ease-in-out;
}

#locationFilter:focus {
  border-color: #4CAF50;
  background-color: #e9f7e9;
  outline: none;
}

.clinic-info {
  margin: 10px 20px;
}

.clinic-info h2 {
    font-weight: 600;
    text-align: center;
}

.clinic-info p {
  font-size: 18px;
  color: #000;
  line-height: 1.8;
  font-weight:500;
}
.appointment-section {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
}

.appointment-section h2 {
  font-size: 24px;
  color: #333;
  margin-bottom: 10px;
}

.appointment-section p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
}


.appointment-link {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.appointment-link:hover {
  text-decoration: underline;
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 1030;
  background-color: var(--background-color);
}

.topbar {
  background-color: #E94E9F;
  height: 40px;
  line-height: 40px;
  overflow: hidden;
  width: 100%;
  z-index: 9999;
  position: static; /* Default: not fixed on desktop */
}

.contact-info marquee {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  display: block;
}

.contact-info marquee a.highlight-link {
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  margin: 0 10px;
  display: inline-block;
  line-height: 40px;
}

.contact-info marquee a.highlight-link:hover {
  color: #ffe2f2 !important;
  text-decoration: underline;
}

.blink-text {
  color: #ffffff;              /* White text */
  font-weight: 600;
  text-decoration: none;
  animation: blink-color 1.5s linear infinite;
  /* Prevent underline by default */
}

.blink-text:hover {
  color: #ffe2f2;              /* Lighter pink on hover */
  text-decoration: none;
  animation: none;             /* Stop blinking on hover */
}

/* Keyframes for smooth blinking */
@keyframes blink-fade {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.phone-header {
  color: white;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.3s ease;
}

.phone-header:hover {
  color: #ffe2f2;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .topbar {
    position: fixed;
    top: 0;
    left: 0;
  }
}

/* Push down branding on mobile to make space for sticky topbar */
@media (max-width: 768px) {
  .header .branding {
    margin-top: 40px;
  }
}



.phone-header:hover {
  color: #ffffff !important; /* Change text color to white on hover */
  background-color: #E94E9F; /* Set background to pink on hover */
}

.header .topbar {
  background-color: #E94E9F;
  height: auto;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}

.header .topbar .contact-info i {
  font-style: normal;
  color: white;
}

.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: white;
  font-weight: 500;
  text-decoration: none;
}

@media (max-width: 720px) {
  .header .topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: #E94E9F;
  }

  .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 .contact-info i a:hover {
  color: var(--contrast-color);
  text-decoration: none;
}

.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 {
  height: 30px;
  width: 80px;
}


.header .cta-btn,
.header .cta-btn:focus {
  color: white;
  background: #E73D95;
  border: 1px solid rgb(0, 0, 0);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 10px;
  border-radius: 50px;
  transition: 0.3s;
  position: fixed;
  right: 40px;
  text-decoration: none;
}

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
  color: var(--contrast-color);
  background: #E94E9F;
  text-decoration: none;
}

@media (max-width: 999px) {
  .header .cta-btn {
    display: none !important;
  }
}
@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: #090b2c;
}

li{
  color: #090b2c;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Side CTA Button */
.side-cta {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  z-index: 999;
}

.cta-button {
  display: block;
  background-color: #E73D95;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  font-size: 20px;
}



/* For mobile screens */
@media only screen and (max-width: 768px) {
  .side-cta {
    top: auto;
    bottom: 0;
    right: 0;
    transform: none;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
  }

  .cta-button {
    margin: 0;
    width: 30%;
    font-size: 20px;
    text-align: center;
    opacity: 0.8;
    background-color: #E94E9F;
    color: #120f0f;
  }
}

@media (min-width: 791px) {
  .navmenu {
    padding: 0;
    position: fixed;
    right: 240px;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    position: static;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu > ul > li {
    white-space: nowrap;
        padding: 19px 15px;
        }

  .navmenu > ul > li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    text-decoration: none;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu > ul > li > a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover > a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .mobile-nav-toggle {
    display: none; /* Hide mobile toggle in desktop view */
  }
}

/* Mobile Navigation */
@media (max-width: 999px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    cursor: pointer;
    transition: color 0.3s;
    display: block; /* Ensure toggle button is visible in mobile view */
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none; /* Hide navigation by default */
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu > ul {
    display: block; /* Show menu when active */
  }
}

/* Navbar styling */
.navbar {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
}

.navbar li {
  position: relative;
  margin-right: 20px;
}

.navbar a {
  text-decoration: none;
  color: #333;
  padding: 10px 15px;
  display: inline-block;
  font-weight: bold;
}

.navbar a:hover {
  color: #E94E9F;
}

/* Dropdown Styling */
.dropdown {
  position: relative; /* Ensure relative positioning for alignment */
  
}

.dropdown ul {
  display: none;
  position: absolute;
  top: 60px;
  left: 0;
  background-color: #ffffff;
  border-left: 4px solid #007bff;
  border-bottom: 4px solid #007bff;
  border-radius: 2px;
  min-width: 150px;
  height: fit-content;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 8px;
  list-style: none;
  margin: 0;
  z-index: 1000;
}

/* Show dropdown when hovering over the dropdown container or the dropdown list */
.dropdown:hover ul {
  display: block; /* Show dropdown on hover */
}

.dropdown ul:hover {
  display: block; /* Ensure it stays visible when hovering over the dropdown */
  pointer-events: auto; /* Enable interaction with the dropdown */
}

.dropdown-menu li {
  padding: 11px 4px;
  line-height: 22px;
}

.dropdown-menu li a {
  color: #333;
  font-size: 14px;
  text-decoration: none;
  display: block;
  transition: color 0.3s ease;
}

.dropdown-menu li a:hover {
  color: #e91e63; /* Add hover effect for links */
}

/* Mobile Optimization */
@media (max-width: 768px) {
  /* Dropdown: Adjust to static positioning for mobile */
  .dropdown {
    position: relative;
  }

  .dropdown ul {
    position: static; /* Static to avoid overlapping content */
    width: 100%; /* Take full width */
    box-shadow: none; /* Remove shadow for cleaner look on mobile */
    border: none; /* No border for mobile dropdown */
    margin-top: 5px;
  }

  /* Show dropdown on click/tap */
  .dropdown.open .dropdown-menu {
    display: block;
  }
}

.custom-image {
    height: 20px;
}

/* Optional: Style for mobile dropdown toggle icon */

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer-last {
  padding: 10px;
}
.footer-last p {
  margin-bottom: 2px;
}
.footer-last a {
 color: #b82c75;
}
/* Carousel Styles */
.carousel-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.carousel-control-prev,
.carousel-control-next {
  z-index: 2; /* Ensure controls are on top */
}

.carousel-item p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  color: white;
}

.carousel-item a{
    color: white;
}
.carousel-item {
  padding: 15px; /* Adjust padding for better visibility */
}

/* Footer General Styling */
#footer {
  padding: 20px 5px;
  background-color: #ffffff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1)
}

/* Header Styles for Mobile */
.footer-links h4,
.footer-about h4 {
  margin-bottom: 20px;
  margin-top: 10px;
  font-size: 18px;
  text-align: center;
  color: #070707;
}

/* Footer About Section */
.footer-about .footer-logo {
  margin-bottom: 15px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.footer-about p {
  text-align: center;
  font-size: 14px;
  margin-top: 10px;
}

/* Footer Links */
.footer-links ul {
  padding: 0;
  margin: 0;
  text-align: center;
}

.footer-links ul li {
  margin-bottom: 10px;
  font-size: 15px;
}

.footer-links ul li a {
  color: #333;
  text-decoration: none;
}

.footer-links ul li a:hover {
  color: #007bff;
}

/* Social Links Styling */
.social-links {
  margin-top: 2px;
  text-align: center;
  margin-left: 70px;
}

.social-links a {
  font-size: 20px;
  color: #E94E9F;
  margin: 0 8px;
}

.social-links a i{
    color: white;
    font-size: 15px;
    position: relative;
    top: 1px;
    display: inline-block;
    height: 25px;
    width: 25px;
    line-height: 22px;
    border: 2px solid white;
    text-align: center;
    border-radius: 5px;
    transition: 0.3s;
}
.social-links a:hover {
  color: #007bff;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  #footer {
    padding: 20px 0;
  }

  .footer-links h4,
  .footer-about h4 {
    font-size: 16px;
    margin-top: 15px;
  }

  .footer-about .footer-logo {
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: 120px; /* Adjust logo size for mobile */
  }

  .footer-links ul li {
    font-size: 14px;
    margin-bottom: 8px;
  }

  /* Center social icons in the footer */
  .social-links {
    display: flex;
    justify-content: center; /* Center icons horizontally */
    align-items: center; /* Align icons vertically */
    padding: 0;
    margin-top: 10px;
    margin-left: -10px;
  }

  .social-links a {
    font-size: 18px; /* Social icon size */
    margin: 0 12px; /* Space between the icons */
  }
}

/* Extra Small Devices (Phones) */
@media (max-width: 480px) {
  .footer-links ul li {
    font-size: 12px;
    margin-bottom: 5px;
  }

  .social-links {
    display: flex;
    justify-content: center; /* Center icons horizontally */
    align-items: center; /* Align icons vertically */
    padding: 0;
    margin-top: 10px;
  }

  .social-links a {
    font-size: 16px; /* Smaller social icon size for mobile */
    margin: 0 8px; /* Adjust margin for mobile */
  }

  .footer-about p {
    font-size: 13px;
    margin-top: 8px;
  }
}

.thank-you-message {
  font-size: 26px;
  font-weight: bold;
  color: #E94E9F;
  margin-top: 20px;
  line-height: 1.5;
  text-align: center;
  font-family: "Roboto", sans-serif; /* Use a clean font */
  margin-bottom: 20px;
}

/* Optional: Add a background color for the "thank you" section */
.thank-you-section {
  background-color: #ffffff;
  padding: 5px;
  border-radius: 12px;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
  max-width: 700px;
  margin: 20px auto;
}

.thank-you-image {
  height: 300px;
  width: 100%;
}
/* Responsive Design */
@media (max-width: 768px) {
  .thank-you-message {
    font-size: 18px; /* Smaller text on mobile */
  }
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 55px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}


/* General Layout for Sections */
.new-section-container {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-top: 20px;
  margin-bottom: 2px;
  margin-left: 10px;
  margin-right: 10px;
}

.new-section-container .new-appointment-section {
  padding: 10px;
  padding-bottom:20px;
  border-radius: 10px;
  border: 1px solid #ccc; 
}

.new-why-section,
.new-appointment-section {
  flex: 1; /* Ensures equal width */
  display: flex;
  flex-direction: column; /* Maintains the original layout */
  justify-content: space-between; /* Aligns content vertically within each section */
  min-height: 100%; /* Ensures sections grow to the same height */
}

.new-appointment-section h3{
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: bold;
  text-align: center;
}
/* Styling for the Why Section */
.new-why-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  text-align: left;
  border-radius: 10px;
  border: 1px solid #ccc; 

}

.new-why-section h2 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: bold;
  text-align: center;
}

.new-why-section .why-choose-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.new-why-section .icon-text {
    margin-top: 8px;
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 400;
    color: #090b2c;
}

.new-why-section .icon-text::before {
    content: '\2192'; /* Unicode arrow → */
    color: #e73e96;
    margin-right: 16px; /* Adds gap between arrow and text */
    font-size: 14px; /* Adjust arrow size */
}

/* Mobile Styles */
@media (max-width: 768px) {
    .new-section-container {
        flex-direction: column; /* Stack sections vertically on small screens */
    }
    
    .new-appointment-section,
    .new-why-section {
        flex: none; /* Prevent flex-grow on small screens */
        width: 100%; /* Take full width */
    }

    .new-appointment-section h3 {
    font-size: 20px; /* Smaller heading size */
    text-align: center;

    }
    
    .new-why-section h2 {
    font-size: 22px; /* Smaller heading size */
    }

    .new-why-section .icon-text {
        font-size: 15px; /* Adjust text size for mobile */
    }

    .new-why-section .icon-text i {
        width: 14px; /* Smaller icons on mobile */
    }
}

@media (max-width: 480px) {
    .new-appointment-section h3 {
    font-size: 20px; /* Smaller heading size */
    text-align: center;
    }
    
    .new-why-section h2 {
    font-size: 20px; /* Smaller heading size */
    }

    .new-why-section .icon-text {
        font-size: 15px; /* Adjust text size for very small screens */
    }

    .new-why-section .icon-text i {
        width: 15px; /* Small icons on very small screens */
    }
}
/* Styling for the Appointment Section */
.new-appointment-form .form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Individual form groups */
.new-appointment-form .form-group {
  flex: 1;
  min-width: calc(50% - 10px);
  margin-bottom: 17px;
}

/* Styling input fields */
.new-appointment-form .form-control {
  width: 100%;
  padding: 8px;
  font-size: 14px;
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid #ccc;
  border-radius: 8px;
}

/* Styling the submit button */
.new-appointment-form .btn {
  width: 220px;
  padding: 5px;
  font-size: 18px;
  background-color: #E73D95;
  color: white;
  border: 1px solid #090b2c;
  cursor: pointer;
  border-radius: 25px;
  margin-top: 10px;
  margin-bottom: 2px;
  margin-left: 50%;
  transform: translateX(-50%);
}

/* Hover effect for the button */
.new-appointment-form .btn:hover {
  background-color: #E94E9F;
  color: #fff;
}


@media (max-width: 800px) {
  .new-section-container {
    flex-direction: column;
    gap: 30px;
  }

  .new-why-section,
  .new-appointment-section {
    width: 100%;
  }

  .new-appointment-section .new-form-group {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
  
  }
  
}

main {
  max-width: 100%;
  margin: 20px;
  padding: 20px;
  background-color: white;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.privacy-policy{
  width: 90%;
  margin: 20px;
}
.privacy {
  font-size: 32px;
  color: #2c2d3f;;
  text-align: center;
  margin-bottom: 10px;
}

.privacy-policy p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.privacy-policy ul {
  list-style-type: disc;
  font-size: 18px;
  color: #090b2c;

}


/*--------------------------------------------------------------
# Global Page Titles
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 30px 0;
  scroll-margin-top: 72px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 60px;
  }
}



/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 20px;
  position: relative;
}

.section-title h1 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  font-family: var(--heading-font);
  text-align: center;
}
@media (max-width: 768px) {
    .section-title h1 {
        font-size: 23px; /* Adjusted for smaller screens */
        margin-bottom: 15px;
        padding-bottom: 15px;
        text-align: left;

    }
}


.section-title h2 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 5px;
  padding-bottom: 20px;
  position: relative;
  font-family: var(--heading-font);
  text-align: center;
}


.section-title h2:before,
.section-title h1:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after,
.section-title h1:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

/* Appointment Form Container */
.appointment-form-container {
  position: absolute;
  top: 48px;
  right: 20px;
  width: calc(100% - 40px); /* Ensures it doesn't exceed the viewport width */
  max-width: 450px; /* Max width for larger screens */
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent background */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 20;
  border-radius: 8px; /* Rounded corners for the form */
  transition: all 0.3s ease-in-out;
  overflow: hidden; /* Prevents content from overflowing */
}


/* Flexbox layout for form rows */
.appointment-form .form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

/* Styling each form group to take up half the width */
.appointment-form .form-group {
  flex: 1;
  min-width: calc(50% - 7.5px); /* Adjusting width to create two columns */
  margin-bottom: 15px;
}

/* Ensuring form controls are full width within their columns */
.appointment-form .form-control {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  background-color: rgba(
    255,
    255,
    255,
    0.9
  ); /* Semi-transparent input fields */
  border: 1px solid #ccc; /* Light border for input fields */
  border-radius: 5px; /* Rounded corners for inputs */
  color: ;
}

/* Styling the submit button */
.appointment-form .btn {
  width: 200px;
  margin-left: 130px;
  margin-top: 15px;
  padding: 6px 15px;
  font-size: 16px;
  background-color: #E73D95;
  color: #fff;
  cursor: pointer;
  border-radius: 25px; /* Rounded corners for button */
}

.appointment-form .btn:hover {
  background-color: #E94E9F;
}

/* Hide appointment form on mobile */
@media (max-width: 1025px) {
  .appointment-form-container {
    display: none; /* Hide the form on mobile */
  }
}


/*--------------------------------------------------------------
# Hero Section


--------------------------------------------------------------*/
/* Default Banner Section */

.banner_section {
  height: 500px;
  background-image: url('../img/aval-clinic-banner-image.webp'); /* Desktop image */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  display: flex;
  align-items: center;
  padding-left: 50px; /* Spacing for left alignment */
}

.location_banner_section {
  height: 500px;
  background-image: url('../img/aval-clinic-chennai.webp'); /* Desktop image */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  display: flex;
  align-items: center;
  padding-left: 50px; /* Spacing for left alignment */
  border: 1px solid #E73D95;
}

/* Content Styling */
.banner_content {
  background-color: rgba(255, 255, 255, 0.6); /* White background with some transparency */
  padding: 35px; /* Add some padding inside the content area */
  border-radius: 30px; /* Optional: rounded corners for the background box */
  color: #1f1f1f;
  max-width: 560px;
}

.location_banner_content {
  padding: 50px; /* Add some padding inside the content area */

}

.banner_h {
  font-family: Arial, sans-serif;
  font-size: 38px;
  text-transform: capitalize;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: left;
}

.banner_s{
  font-weight: 700;
}

.banner_p {
  font-size: 18px;
  font-weight: 500;
  color: #090b2c;
  margin-bottom: 30px;
  text-align: left;
}

.banner_cta_button {
  display: inline-block;
  padding: 10px 30px;
  background-color: #E73D95;
  border: 1px solid rgb(0,0,0);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
}

.banner_cta_button:hover {
  background-color: #E73D95;
  color:rgb(255, 255, 255);
}


/* Responsive Design for Mobile */
@media (max-width: 768px) {
  .banner_section {
    height: 400px;
    background-color: #E94E9F; /* Light gray or any color */
    padding-left: 10px;
    padding-right: 10px;
    display: flex; /* Use flexbox for alignment */
    align-items: center; /* Vertically center the content */
    justify-content: center; /* Horizontally center the content */
    text-align: center; /* Center text within the content */
    background-image: url('../img/hp-banner.webp'); 
  }
  
    .location_banner_section {
    height: 400px;
    background-color: #E94E9F; /* Light gray or any color */
    padding-left: 10px;
    padding-right: 10px;
    display: flex; /* Use flexbox for alignment */
    align-items: center; /* Vertically center the content */
    justify-content: center; /* Horizontally center the content */
    text-align: center; /* Center text within the content */
    background-image: none;
  }
  

  .banner_content {
    background-color: rgba(255, 255, 255, 0.8); /* White background with some transparency */
    padding: 40px; /* Add some padding inside the content area */
    border-radius: 10px; /* Optional: rounded corners for the background box */
    height: auto;

  }
  
    .location_banner_content {
    background-color: rgba(255, 255, 255, 0.8); /* White background with some transparency */
    padding: 40px; /* Add some padding inside the content area */
    border-radius: 10px; /* Optional: rounded corners for the background box */
    height: auto;

  }


  .banner_h {
    font-size: 18px;
    letter-spacing: 1px;
    color: #1f1f1f; /* Ensure text is dark for readability */
    text-align: center;
    animation: none !important;
    box-shadow: none !important;

  }

  .banner_p {
    font-size: 16px;
    color: #727272; /* Slightly lighter text for better readability */
    margin-bottom: 12px;
    text-align: center;
  }
    .banner_cta_button {
    display: inline-block;
    padding: 10px 30px;
    background-color: #E73D95;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 15px; /* Add some space between text and button */
  }
}

/* Parent Section Styling */
.banner_section_new {
  position: relative;
  height: 300px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  justify-content: center; /* Centers content horizontally */
  align-items: center; /* Centers content vertically */
  opacity: 0.9;
}

/* Content Box Styling */
.banner_content_new {
  position: relative;
  background-color: rgba(255, 255, 255, 0.6); /* Semi-transparent white background */
  padding: 40px;
  border-radius: 10px; /* Rounded corners for better UI */
  text-align: center;
  max-width: 700px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional: Adds a subtle shadow */
}

/* Heading Styling */
.banner_h_new {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #1f1f1f; /* Dark text color */
}

.hdrbanner_content_new {
  position: relative;
  background-color: rgba(255, 255, 255, 0.6); /* Semi-transparent white background */
  padding: 18px;
  border-radius: 10px; /* Rounded corners for better UI */
  text-align: center;
  max-width: 700px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional: Adds a subtle shadow */
}

/* Heading Styling */
.hdrbanner_h_new {
  font-size: 32px;
  font-weight: bold;
  margin-bottom:0px;
  color: #1f1f1f; /* Dark text color */
}
.breadcrumb {
  list-style: none;
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center;    /* Center vertically if needed */
  padding: 0;
  margin: 0;
}

.breadcrumb-item {
  margin-right: 8px;
  font-weight: 500;
}

.breadcrumb-item a {
  color: #1f1f1f;
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #5e5050; /* Style for active breadcrumb item */
}

.gynae-service h2{
  font-size: 32px;
  text-align: center;
  margin-top: 25px;
  color: #1f1f1f;
}
.gynae-service ul{
  margin-bottom: 10px;
  line-height: 2;
}
/* Banner Section Styles */
.gynec-banner-section {
  height: 500px;
  background-image: url('../img/service-banner.png'); /* Ensure correct image path */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 50px;
}

.gynec-banner-content {
  background-color: rgba(255, 255, 255, 0.6); /* Transparent white background */
  padding: 30px;
  border-radius: 10px;
  color: #333;
  text-align: center;
  max-width: 700px;
}
.gynec-intro-content {
    padding-top: 30px;
}
}
.gynec-banner-heading {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
}

.breadcrumb {
  list-style: none;
  display: inline-flex;
  padding: 0;
  margin: 10px 0 0;
}

.breadcrumb-item {
  margin-right: 8px;
}

.breadcrumb-item a {
  color: #1f1f1f;
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #666;
}

.gynec-container {
  width: auto;
  margin: -20px 20px;
}

.gynec-intro-section {
  padding-top: 40px;
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 20px;
  margin: 1px;  
}

.gynec-title {
  font-size: 32px;
  color: #1f1f1f; /* Dark color for strong visibility */
  margin-bottom: 20px;
  font-weight: bold;
  text-align: center;
}

.gynec-description {
  font-size: 18px;
  line-height: 1.8;
  color: #000; /* Slightly lighter than the title for contrast */
  margin-bottom: 15px;
}
.gynec-description-list p{
  font-size: 18px;
  line-height: 1.8;
  color: #000; /* Slightly lighter than the title for contrast */
  margin-bottom: 15px;
}
.gynec-description-list span{
  font-size: 20px;
  line-height: 1.8;
  color: #5952de; /* Slightly lighter than the title for contrast */
  margin-bottom: 15px;
  font-weight: 700;
}
.gynec-description-list strong {
  color: #000000; /* Highlight key terms with a brand color */
  font-weight: 600;
}

/* Treatment Section */

.gynec-content-container{
  background-color: #ffffff;
}

.gynec-content-container h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
}

.gynec-intro-text {
  font-size: 16px;
  text-align: center;
  margin-bottom: 40px;
}

.gynec-treatment-list {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  width: auto;
}

.gynec-treatment-item {
  width: 30%;
  margin-bottom: 30px;
  text-align: center;
}

.gynec-treatment-item img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;

}

.gynec-treatment-title {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 600;
}

.gynec-treatment-description {
  font-size: 16px;
  line-height: 1.6;
}




/* Section Title Styling */
.gynec-section-title {
  font-size: 32px;
  color: #333;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
}

/* Content Flex Layout */
.gynec-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Left Image Container */
.gynec-left-image img {
  width: 500px;
  height: 350px;
  border-radius: 10px; /* Optional: rounded corners for the image */
  padding: 20px;
}

/* Right Content Container */
.gynec-right-content {
  width: 55%;
}

.gynec-why-list {
  list-style-type: none; /* Removes the bullet points */
  width: auto;
}

.gynec-why-list li {
  font-size: 16px;
  margin-bottom: 28px;
  line-height: 1.6;
  display: flex;

}

.gynec-why-list i {
  margin-right: 10px;
  color: #007bff; /* Icon color */
  font-size: 24px; /* Set consistent icon size */
  width: 30px; /* Fixed width for icons */
  text-align: center; /* Align icons to the center */
}


/* Call-to-Action Section */
.gynec-cta-section {
  text-align: center;
  margin-top: 20px;
  border: 1px solid black;
  background-color: #846efc;
  border-radius: 20px;
  margin-bottom: 30px;
  
}


.gynec-cta-heading {
  font-size: 24px;
  margin-top: 40px;
  font-weight: 600;
  color: #ffffff; /* Explicit hex for white is more standard */
}

.gynec-cta-text {
  font-size: 16px;
  margin-bottom: 30px;
  color: white;
}

.gynec-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.gynec-cta-button {
    background-color: #ffffff;
    color: #000000;
    text-decoration: none;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid black;
    transition: color 0.3s;
}


@media (max-width: 598px) {

  .hdrbanner_h_new{
    font-size: 18px;

  }
}
/* Mobile Responsiveness */
@media (max-width: 768px) {
  .banner_section_new {
    height: 350px; /* Adjust height for mobile */
    padding:20px;
    background-image: url('../img/mobile.png'); /* Mobile-specific background image */
    background-size: cover; /* Adjust background size for mobile */
  }
  
  .banner_h_new{
      font-size: 30px;
  }
  
  .breadcrumb {
  list-style: none;
  display: inline-flex;
  padding: 0;
  margin: 10px 0 0;
  width:280px;
}

  .gynec-treatment-item {
    width: 100%;
    margin-bottom: 30px;
  }

  .gynec-cta-button {
    padding: 10px 15px;
    font-size: 14px;
  }
  .gynec-content {
    flex-direction: column;
    align-items: center;
  }

  .gynec-left-image img {
    max-width: 100%; /* Ensure image takes full width on mobile */
    margin-bottom: 20px; /* Add space between image and text */
  }

  .gynec-right-content {
    width: 100%;
    text-align: left; /* Center-align text on mobile */
  }
}

.why-choose-us-service {
  background-color: #ffffff; /* Light background for the section */
}

.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 */
  margin-top: 40px;
}

.why-choose-us-service .service-choose-us-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
    display: flex
;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    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: #000;
  line-height: 1.6;
  margin-top: 10px;
  font-weight: 500;
}

/* 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 */
  }
}
/*--------------------------------------------------------------
# Hero Section Container
--------------------------------------------------------------*/

.hero-section {
    padding: 0;
    margin-top: 0;
    height: 300px;
    background: url(../img/bg-blur.webp) no-repeat center center;
    background-size: cover;
    position: relative;
}

/* Mobile-specific background image */
@media (max-width: 768px) {  /* Adjust max-width as needed */
    .hero-section {
        background: url(../img/bg-blur-mobile.webp) no-repeat center center;
        background-size: cover;
    }
}

.hero-section .container {
  width: 100%; /* Full width */
  padding: 0; /* No padding */
  margin: 0 auto; /* Center the container */
  height: 100%; /* Full height */
  display: flex;
}

.hero-content {
  position: absolute; /* Fix the content */
  top: 50%; /* Vertically center the content */
  left: 50%; /* Center horizontally on all screen sizes */
  transform: translate(-50%, -50%); /* True vertical and horizontal centering */
  color: white; /* White text */
  text-align: center; /* Center text */
}

.about-new {
  font-size: 52px; /* Font size for title */
}

.breadcrumb-nav {
  position: absolute; /* Fix breadcrumb navigation */
  left: 50%; /* Center breadcrumb navigation horizontally */
  transform: translateX(-50%); /* True horizontal centering */
  font-size: 20px;
  bottom: 20px; /* 10px from the bottom */
}

.breadcrumb-nav a {
  color: #242222;
}

/* Mobile Optimization (for screens up to 768px) */
@media (max-width: 768px) {
  /* Reduce the height for smaller screens */
  .hero-section {
    height: 180px; /* Smaller height on mobile */
  }

  /* Adjust title font size */
  .about-new {
    font-size: 30px; /* Adjust title font size on smaller screens */
  }

  /* Adjust breadcrumb font size */
  .breadcrumb-nav {
    font-size: 14px; /* Adjust breadcrumb font size on smaller screens */
    bottom: 20px; /* Move breadcrumb up slightly */
  }
}

/* Mobile Optimization for Extra Small Screens (for screens up to 480px) */
@media (max-width: 480px) {
  /* Further reduce height for very small screens */
  .hero-section {
    height: 250px; /* Adjust the height even more for smaller devices */
  }

  /* Further adjust the title font size */
  .about-new {
    font-size: 24px; /* Smaller font for extra small screens */
  }

  /* Adjust breadcrumb font size for extra small screens */
  .breadcrumb-nav {
    font-size: 12px; /* Smaller breadcrumb font size */
    bottom: 10px; /* Adjust breadcrumb to be closer to the bottom */
  }
}

/* Our Services
/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h2 {
  font-weight: bolder;
  text-align: center;
  margin-top: 10px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  display: flex;
  align-items: flex-start;
  margin-top: 40px;
}

.about .content ul i {
  flex-shrink: 0;
  font-size: 48px;
  color: var(--accent-color);
  margin-right: 20px;
}

.about .content ul h5 {
  font-size: 18px;
  font-weight: 700;
}

.about .content ul p {
  font-size: 15px;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content ul p {
  font-size: 15px;
}

.about #thumbnail {
  object-fit: cover; /* Ensures the image covers the full space */
  width: 100%;
  height: 500px; /* Makes the image fill the entire height */
  border-radius: 8px; /* Optional: rounded corners */
}
.about .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

/* Mobile Responsive - Center the 'About Us' heading */
@media (max-width: 480px) {
  .about .content h3 {
    text-align: center; /* Centers the heading on mobile */
    font-size: 1.8rem; /* Optional: reduce font size for mobile */
  }
}



.why {
  font-weight: bolder;
}

/* About US Section */
.about-section {
  background-color: #ffffff; /* Light background for the section */
  padding: 60px 0; /* Add padding for spacing */
}

.about-section h2 {
  font-size: 32px;
  color: #333;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
  font-family: var(--heading-font);
}

.about-section p {
  font-size: 18px;
  color: #090b2c;
  line-height: 1.6;
}

.about-section .col-lg-6 {
  padding: 20px;
}

.about-section img {
  max-width: 100%; /* Make sure the image is responsive */
  height: auto;
}

.history-section {
  background-color: #ffffff; /* Light background for the section */
 
}

.history-section .section-heading {
  text-align: center;
}

.history-section h2 {
  font-size: 2em;
  color: #333; /* Heading text color */
  font-weight: 600;
  text-transform: uppercase; /* Optional: make the heading uppercase */
  margin-bottom: 40px; /* Adjust the spacing below the heading */
  margin-top: 0px; /* Reduced margin-top to 10px */
  font-family: var(--heading-font);
}

.history-section li {
  font-size: 20px;
  color: #333; /* Heading text color */
  font-weight: 600; /* Optional: make the heading bold */
  margin-bottom: 10px;
}

.history-section .container {
  max-width: 1200px;
  margin: 0 auto; /* Ensure the container is centered */
}

/* Mobile Responsive Styles */
@media (max-width: 480px) {
  /* About Section */
  .about-section h2 {
    font-size: 1.8rem; /* Smaller font size on mobile */
    text-align: center;
    font-family: var(--heading-font);
  }

  .about-section p {
    font-size: 1rem; /* Adjust paragraph text size */
  }

  .about-section .col-lg-6 {
    padding: 10px; /* Reduce padding on mobile */
  }

  /* History Section */
  .history-section h2 {
    font-size: 1.8rem; /* Smaller font size for heading */
    font-family: var(--heading-font);
  }

  .history-section li {
    font-size: 18px; /* Adjust font size for mobile */
  }

  .history-section .container {
    padding: 0 15px; /* Add some padding for mobile view */
  }

  /* Stack image and text for smaller screens */
  .history-section .row {
    flex-direction: column-reverse; /* Stacking text and image on mobile */
  }

  .history-section .col-lg-6 {
    width: 100%; /* Ensure columns take full width on mobile */
    padding: 10px;
  }

  .history-section img {
    max-width: 100%; /* Ensure the image is responsive */
    margin-bottom: 20px; /* Add some space below the image */
  }
}

/* CTA Section */
.cta-section {
  background-color: #ffffff; /* Light background color */
  padding: 30px 0; /* Add padding for spacing */
}

.history-section .cta-btn {
  display: inline-block;
  padding: 10px 30px; /* Add padding to the button */
  font-size: 1.2rem; /* Font size for the button text */
  color: #fff; /* White text color */
  background-color: #E73D95; /* Button background color */
  text-decoration: none; /* Remove underline */
  border-radius: 30px; /* Rounded corners for the button */
  transition: background-color 0.3s ease; /* Smooth background color transition */
  margin-top: 30px;
  font-size: 14px;
}

/* Hover effect for button */
.cta-btn:hover {
  background-color: #E94E9F; /* Change background color on hover */
  color: white;
}

/* Make the button responsive */
@media (max-width: 480px) {
  .cta-btn {
    font-size: 1rem; /* Reduce font size on mobile */
    padding: 12px 24px; /* Adjust padding for mobile */
  }
}

/* Why Choose Us Section - Only this section */
.why-choose-us {
  background-color: #ffffff; /* Light background for the section */
  padding: 20px 0; /* Add padding for spacing */
}

.why-choose-us .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 .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 4px 12px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  transition: box-shadow 0.3s ease-in-out; /* Smooth transition for hover effect */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Ensures equal height */
  height: 100%; /* Makes sure the items have equal height */
}

.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: 1.4rem;
  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 */
  }
}
/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats i {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  width: 54px;
  height: 54px;
  font-size: 24px;
  border-radius: 50px;
  border: 2px solid var(--background-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.stats .stats-item {
  background-color: var(--surface-color);
  margin-top: -27px;
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  z-index: 0;
}

.stats .stats-item span {
  font-size: 32px;
  display: block;
  margin: 10px 0;
  font-weight: 700;
  color: var(--heading-color);
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
    background-color: var(--surface-color);
    text-align: center;
    border: 1px solid #000000;
    padding: 45px 20px;
    /* margin: 0px 12px; */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease-in-out;
    height: 100%;
    border-radius: 20px;
}

.services .service-item .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: var(--accent-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
  transform-style: preserve-3d;
}

.services .service-item .icon i {
  color: var(--contrast-color);
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .service-item .icon::before {
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.services .service-item p {
  line-height: 24px;
  font-size: 16px;
  margin-bottom: 0;
}

.services .service-item:hover {
  background: #E94E9F;
  border-color: var(--accent-color);
}

.services .service-item:hover .icon {
  background: var(--surface-color);
}

.services .service-item:hover .icon i {
  color: #E94E9F;
}

.services .service-item:hover .icon::before {
  background: color-mix(in srgb, var(--background-color), transparent 70%);
}

.services .service-item:hover h3,
.services .service-item:hover p {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Appointment Section
--------------------------------------------------------------*/
.appointment .form {
  width: 100%;
}

.appointment .form .form-group {
  padding-bottom: 8px;
}

.appointment .form .row {
  display: flex;
  flex-wrap: wrap;
}

.appointment .form .col-md-4 {
  flex: 1 1 33.33%; /* Ensure the columns take equal width */
}

.appointment .form input,
.appointment .form textarea,
.appointment .form select {
  color: #090b2c;
  background-color: transparent;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  padding: 10px !important;
}

.appointment .form input:focus,
.appointment .form textarea:focus,
.appointment .form select:focus {
  border-color: var(--accent-color);
}

.appointment .form input::placeholder,
.appointment .form textarea::placeholder,
.appointment .form select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.appointment .form input,
.appointment .form select {
  height: 44px;
}

.appointment .form textarea {
  padding: 10px 12px;
}

.appointment .form button[type="submit"] {
  background: #E73D95;
  padding: 10px 35px;
  color: #fff;
  border-radius: 50px;
  border: none;
  outline: none;
}

.appointment .form button[type="submit"]:hover {
  background: #E94E9F;
  border: none;
  outline: none;
}

/* Mobile Responsive Design */
@media (max-width: 480px) {
  .appointment .form .row {
    flex-direction: column; /* Stack form fields vertically */
  }

  .appointment .form .col-md-4 {
    flex: 1 1 100%; /* Ensure each column takes full width on mobile */
    margin-bottom: 15px; /* Add space between form fields */
  }

  .appointment .form input,
  .appointment .form textarea,
  .appointment .form select {
    font-size: 16px; /* Increase font size for readability on mobile */
    padding: 12px; /* Increase padding for ease of use on small screens */
  }

  .appointment .form button[type="submit"] {
    width: 100%; /* Make the submit button full width */
    padding: 12px 0; /* Adjust button padding */
  }
}

@media (max-width: 480px) {
  /* For even smaller screens like small smartphones */
  .appointment .form input,
  .appointment .form textarea,
  .appointment .form select {
    font-size: 18px; /* Increase font size further */
    padding: 14px; /* More padding for touch devices */
  }

  .appointment .form button[type="submit"] {
    padding: 14px 0; /* Increase button padding for better touch targets */
  }
}
/*--------------------------------------------------------------
# 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: -10px 12px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  border-radius: 50px;
  border: 2.5px solid;
  transition: 0.5s;
  padding: 30px;
  height: 100%;
}

.doctors .team-member-loc {
  background-color: var(--surface-color);
  border: 2.5px solid;
  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: column;
  justify-content: center;
  align-items: center;
}

@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 .team-member-loc .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 .team-member .pic:hover {
  transform: scale(1.1);
}

.doctors .team-member-loc .pic:hover {
  transform: scale(1.1);
}

.doctors .cta-btn {
  color: white;
  background: #E73D95;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 50px;
  transition: 0.3s;
  margin-top: 15px;
  text-align: center;
  display: inline-block;
  border: 1px solid #000000;
  text-decoration: none;
}

.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: 0px;
      color: #fff;
  }
    .doctors .team-member-loc .member-info {
    padding: 30px 0 0 0;
    text-align: center;
  }

}

.doctors .team-member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
}

.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: 14px;
  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: column;
  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);
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
  border-radius: 5px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.faq .faq-container .faq-active h3,
.faq .faq-container .faq-active h3:hover {
  color: var(--contrast-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}


/*--------------------------------------------------------------
/* General Styling */
#gallery {
  text-align: center;
  padding: 20px;
}

h2 {
  font-size: 2em;
  margin-bottom: 20px;
  font-weight: 500;
  font-family: var(--heading-font);
}

.location-selector {
  margin-bottom: 20px;
}

.location-selector button {
  padding: 10px 20px;
  margin: 5px;
  font-size: 16px;
  cursor: pointer;
  background-color: #00bcd4;
  border: none;
  color: white;
  border-radius: 5px;
  font-weight: 500;
  border:1px solid rgb(0, 0, 0);
}

.location-selector button.active {
  background-color: #E73D95;
}
.location-selector button:hover {
  color: var(--contrast-color);
  background: #E94E9F;
  }

section {
  margin: 0;
}

#imageSlider {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  scroll-behavior: smooth;
  cursor: grab;
}

#imageSlider::-webkit-scrollbar {
  display: none; /* Hide the scrollbar */
}

#imageSlider img {
  width: auto;
  height: 100%;
  padding: 5px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 480px) {
  #imageSlider {
    display: flex;
    overflow-x: auto; /* Enable horizontal scrolling */
    scroll-behavior: smooth;
    gap: 10px; /* Space between images */
  }

  #imageSlider::-webkit-scrollbar {
    display: none; /* Hide the scrollbar */
  }

  #imageSlider img {
    flex: 0 0 auto; /* Ensure images don't shrink or grow */
    width: calc(
      50% - 10px
    ); /* Make two images per row with some space between them */
    height: auto; /* Maintain aspect ratio */
    object-fit: cover; /* Ensure the image covers the area */
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
}

.slider-container {
  width: 100%;
  height: 75%;
  overflow: hidden; /* Hide images that go outside of the slider */
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider {
  display: flex;
  transition: transform 0.2s ease-in-out;
}

.slider img {
  min-width: 25%; /* 4 images visible */
  height: 100px;
  padding: 5px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .slider img {
    min-width: 50%; /* 2 images visible on smaller screens */
  }
}

.locations {
  text-align: center;
  margin-top: 10px;
}
.location-selector {
  margin-bottom: 20px;
}
.location-selector button {
  margin: 0 10px;
  padding: 10px 20px;
  background-color: #E73D95;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  border: 1px solid rgb(0, 0, 0);
}
.location-selector button:hover {
  background-color: #E94E9F;
}

@media (max-width: 768px) {
  .location-selector {
    display: flex; /* Enables Flexbox */
    flex-wrap: wrap; /* Allow buttons to wrap */
    justify-content: space-between; /* Space buttons evenly */
    gap: 10px; /* Consistent spacing between buttons */
  }

  .location-selector button {
    flex: 0 0 calc(50% - 10px); /* Force buttons to take up 50% width minus the gap */
    margin: 0; /* Remove any default margin */
    box-sizing: border-box; /* Ensure padding/border don't affect width */
  }
}

#map-container {
  margin-top: 30px;
}
#location-map {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.info-box {
    background-color: #f9f9f9;
    transition: all 0.3s ease;
    min-height: 150px;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06); /* smooth shadow */
  border-radius: 16px; /* optional: adds soft corners */
  border:1px solid;
  }
  
  .info-box:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}


.info-box h5{
    text-align: left;
    padding-left: 10px;
    font-weight: 800;
}
  .info-box:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
  }

  .info-box .icon {
    flex-shrink: 0;
  }

#location-address a {
color:black;
}
.info-box p {
font-size: 16px;
text-align: left;
color:black;
    font-weight: 500;
  }


  @media (max-width: 575px) {
    .info-box {
      flex-direction: column;
      text-align: center;
      align-items: center;
    }

    .info-box .icon {
      margin-bottom: 10px;
    }
  }
  
.info-item div h3{
  text-align: left; /* Aligns text to the left */
  font-size: 18px;
  margin-left: 10px;
  font-weight: bolder;
}

.info-item div p{
  text-align: left; /* Aligns text to the left */
  font-size: medium;
  margin-bottom: 20px;
  margin-left: 10px;
}

.phone-call {
  color: #E73D95; /* Default text color */
  text-decoration: none; /* Remove underline */
  font-weight: 500; /* Bold text */
  font-size: 16px; /* Adjust font size */
  transition: color 0.3s ease, background-color 0.3s ease; /* Smooth transition */
}

.phone-call:hover {
  color: #E94E9F; /* White text on hover */
  background-color: rgb(244, 83, 110); /* Pink background on hover */
}



/* Adjust the padding to ensure visibility of phone number */
.carousel-item {
  padding: 15px;
}

.phone-number {
  color: #555; /* Set the phone number color to pink */
  text-decoration: none; /* Remove underline */
  padding: 0; /* No padding by default */
  border: none; /* No border by default */
  transition: all 0.2s ease; /* Smooth transition */
  display: inline-block; /* Ensure it behaves like a button */
}

.phone-number:hover {
  color: white !important; /* Change text color to white on hover */
  background-color: rgb(244, 83, 110); /* Set background to pink on hover */
  padding: 3px 15px; /* Add padding to make it look like a button */
  border-radius: 20px; /* Rounded corners */
  text-decoration: none; /* Remove underline on hover */
}


@media (max-width: 480px){
.blog-section .card {
    height: auto;
}
}

/* Blog Slider Container */
.blog-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 20px;
  padding-bottom: 15px;
}
.card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: auto; /* Ensure consistent height for all cards */
}

.card-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 175px;
}

.blog-card {
  flex: 0 0 300px; /* Adjust width as needed */
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  max-height: 420px;
}
.blog-card img {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #ddd;
}
.blog-content {
  width: 100%; /* Ensures it fits within the parent container */
  word-wrap: break-word; /* Forces long words or URLs to wrap */
  overflow-wrap: break-word; /* Ensures text wraps nicely */
  overflow: hidden; /* Hides content if it overflows */
  padding: 16px; /* Adds some space inside the container */
  box-sizing: border-box; /* Includes padding in the width calculation */
  background-color: white;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}

.blog-container {
  width: 100%;
  max-width: 800px; /* Adjust based on your layout */
  height: 500px; /* Maintain consistent height */
  overflow: hidden; /* Prevent content overflow */
  position: relative;
  margin: 20px auto; /* Center the container */
}

.blog-post-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image scales properly without stretching */
  border-radius: 5px; /* Optional for rounded edges */
}

.blog-date {
    font-size: 15px;
    font-weight: 700;
    color: #0d6efd;
    margin-bottom: 1px;
    text-align: left;
    font-family: math;
}
.blog-section .card {
  margin-bottom: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-section .card img{
    height: auto;
    width: 100%;
}

.read-more {
  position: relative;
  margin-top: auto;
  color: #E94E9F;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  text-align: left;
}

.read-more:hover {
  text-decoration: underline;
}

/* Slider Styling */
.blog-slider::-webkit-scrollbar {
  height: 8px;
}

.blog-slider::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 4px;
}

.blog-slider::-webkit-scrollbar-thumb:hover {
  background: #ccc;
}
.card-title {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 600;
  flex-grow: 1;
  margin-top: 10px;
  min-height: 40px;
  text-align: left;
}
.blog-link {
  text-decoration: none; /* Removes the underline */
  color: #333; /* Set the text color */
  font-size: 18px;
}

.blog-link:hover {
  color: #007bff; /* Change the color on hover (blue, for example) */
}
.blog-section .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.footer {
  font-size: 0.9rem;
  color: #666;
}

.blog-post-container {
  padding-top: 0px; /* Adds spacing above the content */
  padding-bottom: 10px; /* Adds spacing below the content */
}

.blog-post-container .container{
  max-width: 1250px;
}
/* Blog Post Content */
.blog-post .blog-post-image img {
  width: 570px; /* Makes the image responsive */
  height: 300px; /* Maintains the aspect ratio */
  border-radius: 1px;
  margin-bottom: 20px;
}

.blog-post .blog-post-image-1 img {
  width: 570px; /* Makes the image responsive */
  height: 1235px; /* Maintains the aspect ratio */
  border-radius: 15px;
  margin-bottom: 20px;
}


.blog-post .blog-post-middle-image img {
  width: 570px; /* Makes the image responsive */
  height: 250px; /* Maintains the aspect ratio */
  border-radius: 15px;
  margin-bottom: 20px;
}



.blog-title {
  font-size: 32px;
  margin-top: 20px;
}

.blog-text {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.6;
}

.blog-text h2{
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 600;
    font-family: var(--heading-font);
    border-left: 4px solid #E73D95;
    padding-left: 6px;
        font-family: math;
}


.blog-text h3{
  margin-top: 20px;
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
  color: #2c2d3f;
  border-left: 4px solid #E73D95;
  text-decoration: underline;
  padding-left: 6px;
  margin-bottom: 20px;
      font-family: math;
}

.blog-text h4{
  margin-top: 20px;
  font-size: 20px;
  font-weight: 600;
  font-family: var(--heading-font);
  color: #2c2d3f;
      font-family: math;
}

.blog-text li {
  color: #000000;
  margin-top: 10px;
  font-size: 18px;
      font-family: math;
}

.blog-text a {
    color: #1d00fd;
    font-weight: 600;
      font-family: math;
      
}

.blog-text p {
  color:#000000;
  font-size: 18px;
  font-family: math;
}
.location ul, 
.recent-posts ul,
.related-searches ul {
  list-style: none; /* Remove default bullet points */
  padding: 0;
  margin: 0;
  align-items: center; /* Vertically align items */

}

.location li {
  display: flex; /* Use flexbox for alignment */
  align-items: center; /* Vertically align items */
  margin-bottom: 10px; /* Space between list items */
}

.location li a {
  text-decoration: none; /* Remove underline from links */
  color: #333; /* Text color */
  font-size: 16px; /* Adjust text size */
}

.location li a:hover {
  color: #007bff; /* Change color on hover */
}

.location li a i {
  margin-right: 8px; /* Space between icon and text */
  font-size: 18px; /* Adjust icon size */
  color: #007bff; /* Icon color */
}
/* Sidebar Styles */
.sidebar {
  position: sticky;
  top: 20px; /* Keeps the sidebar floating */
}

.sidebar > div {
  margin-bottom: 20px;
}

.cta-call-appointment {
  background-color: #f8f9fa;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 102px; /* Sticks 80px below the top of the viewport */
  height: max-content; /* Ensures it doesn't stretch vertically */
}

.cta-call-appointment h3 {
  font-size: 17px;
  margin-bottom: 5px;
  text-align: center;
}

.cta-call-appointment p {
  margin-bottom: 15px;
  font-size: 12px;
  color: #666;
  text-align: center;
}

.cta-call-appointment .btn {
  display: block;
  width: 100%;
  margin-bottom:6px;
  text-align: center;
  font-size: 13px;
}

.location,
.recent-posts,
.related-searches {
  background-color: #f8f9fa;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 282px; /**/
  height: max-content; /* Ensures it doesn't stretch vertically */
}

.location h3,
.recent-posts h3,
.related-searches h3 {
  font-size: 19px;
  margin-bottom: 6px;
  text-align: center;
}


.related-searches li a i {
  margin-right: 12px; /* Space between icon and text */
  font-size: 18px; /* Adjust icon size */
  color: #333; /* Icon color */
}

.location li {
  margin-bottom: 10px;
  text-align: center;
}

.location a,
.recent-posts a {
  text-decoration: none;
  color: inherit; /* Inherit color from the list item */
  display: flex; /* Align icon and text in a single line */
  align-items: center; /* Align icon and text vertically */
}

.location a:hover,
.recent-posts a:hover {
  text-decoration: none;
  color: #E94E9F;
}

.recent-posts ul {
  list-style: none;
  padding: 0;
}

.location li a i {
  margin-right: 18px;
  font-size: 18px; /* Adjust icon size */
}

.recent-posts li {
  display: flex;
  align-items: flex-start; /* Align items at the top */
  margin-bottom: -15px;
}

.recent-posts a:hover {
  color: #E94E9F; /* Highlight the title on hover */
  text-decoration: none;
}

.post-thumbnail {
  width: 50px; /* Thumbnail size */
  height: 50px;
  border-radius: 4px;
  margin-right: 10px; /* Spacing between image and text */
  object-fit: cover; /* Ensures the image is cropped properly */
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1); /* Optional: subtle shadow */
}

.post-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 10px;
}

.post-title {
  font-size: 12px;
  font-weight: bold;
  margin: 0; /* No extra spacing */
}

.post-date {
  font-size: 12px;
  color: #666; /* Muted color for date */
  margin-top: 5px; /* Spacing below the title */
}

.related-searches li {
  margin-bottom: 10px;
  display: flex; /* Align icon and text in one line */
  align-items: center; /* Align vertically */
  text-align: left; /* Align text to the left */
  color: #333; /* Default text color */
  padding: 5px 0; /* Optional: Adds spacing between items */
}

/* Adjust icon size and spacing */
.related-searches .icon {
  margin-right: 10px; /* Adds space between the icon and the text */
}

.related-searches .icon i {
  font-size: 18px; /* Icon size */
  color: #333; /* Icon color */
}

/* Style the text */
.related-searches .text {
  margin: 0; /* Remove margin from text */
  font-size: 16px; /* Adjust font size */
}

/* Hover effect for links in Related Searches */
.related-searches li:hover {
  color: #E94E9F; /* Hover color */
}



@media (max-width: 1200px) {
  /* Blog Container */
  .blog-container {
    max-width: 100%;
    height: auto;
    margin: 10px;
  }

  /* Blog Post Image */
  .blog-post-image {
    width: 100%;
    height: auto;
  }

  /* Blog Post Content */
  .blog-post .blog-post-image img {
    width: 100%; /* Make the image responsive */
    height: auto; /* Adjust height to maintain aspect ratio */
  }
  
    .blog-post .blog-post-image-1 img {
    width: 100%; /* Make the image responsive */
    height: auto; /* Adjust height to maintain aspect ratio */
  }

  /* Blog Title */
  .blog-title {
    font-size: 23px; /* Adjust font size for mobile */
    margin-top: 4px;
  }

  /* Blog Text */
  .blog-text {
    font-size: 14px; /* Reduce font size for better readability */
    line-height: 1.5;
    margin-top: 20px;
  }
  .sidebar {
    padding-left: 15px; /* Reduce padding in the sidebar */
  }
  /* Sidebar */


  .sidebar > div {
    margin-bottom: 15px; /* Reduce margin between sidebar items */
  }

  /* Call to Action Section (CTA) */
  .cta-call-appointment {
    padding: 15px; /* Reduce padding */
    margin-top: 10px;
  }

  .cta-call-appointment h3 {
    font-size: 20px; /* Adjust heading size */
  }

  .cta-call-appointment p {
    font-size: 14px; /* Adjust text size */
  }

  .call-center {
    margin-top: 10px;
    margin-left: -4px;
  }
  /* Styling the call center button */
  .call-center .btn-call-now {
    display: inline-flex;
    align-items: center;
    background-color: #E73D95; /* Button background color */
    color: #fff; /* Icon and text color */
    padding: 6px 10px; /* Button padding */
    font-size: 16px;
    font-weight: 500;
    border-radius: 30px; /* Rounded corners */
    text-decoration: none; /* Remove underline */
    transition: background-color 0.3s ease;
    box-sizing: border-box; /* Ensure padding does not affect the width */
  }

  /* Hover effect */
  .call-center .btn-call-now:hover {
    background-color: #E94E9F; /* Darker shade on hover */
  }

  /* Location, Recent Posts, Related Searches */
  .location,
  .recent-posts,
  .related-searches {
    padding: 10px; /* Reduce padding for smaller screens */
  }

  .location h3,
  .recent-posts h3,
  .related-searches h3 {
    font-size: 20px; /* Adjust heading size */
    text-align: center;
  }

  .location ul,
  .recent-posts ul,
  .related-searches ul {
    display: flex;
    flex-direction: column; /* Stack items vertically on small screens */
    align-items: center; /* Align items to the left */
  }

  .location li,
  .recent-posts li,
  .related-searches li {
    margin-bottom: 10px; /* Reduce space between list items */
    text-align: left; /* Ensure left alignment */
  }

  /* Post Thumbnail */
  .post-thumbnail {
    width: 40px; /* Smaller thumbnail size */
    height: 40px;
    margin-right: 10px; /* Spacing between image and text */
  }

  /* Post Title */
  .post-title {
    font-size: 12px; /* Adjust title size */
  }

  /* Post Date */
  .post-date {
    font-size: 12px; /* Smaller date font size */
    color: #666;
    margin-top: 5px; /* Add spacing below the title */
  }

  /* Related Searches */
  .related-searches .icon i {
    font-size: 16px; /* Adjust icon size */
  }

  .related-searches .text {
    font-size: 14px; /* Adjust text size */
  }

  /* Footer */
  .footer {
    font-size: 0.8rem; /* Reduce font size in footer */
  }
}

.location-container {
  width: 80%;
  margin: 0 auto;
  padding: 20px 0;
}

/* Banner Styles */
.location-banner {
  background-image: url("default-banner.webp"); /* Default banner image */
  height: 400px;
  background-size: cover;
  background-position: center;
  text-align: center;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
}

.location-banner-title {
  font-size: 36px;
}

/* Section Styles */
.location-section-title {
  font-size: 24px;
  margin-top: 30px;
}

.location-section-content {
  font-size: 16px;
  margin-bottom: 30px;
}

.location-list {
  list-style-type: none;
  padding: 0;
}

.location-list li {
  margin-bottom: 10px;
}

.appointment-form-container-location {
  position: absolute;
  top: 28px;
  right: -40px;
  width: 100%;
  max-width: 500px; /* Max width for larger screens */
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent background */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 20;
  border-radius: 8px; /* Rounded corners for the form */
  transition: all 0.3s ease-in-out;
}

.specialties {
  text-align: center;
  padding: 40px 20px;
  background-color: #ffffff; /* Light background */
}

.specialties h2 {
  font-size: 2em;
  color: #e91e63; /* Pink color for the title */
  margin-bottom: 20px;
  font-weight: 500;
  font-family: var(--heading-font);
}

.specialties-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.specialty {
  margin-top: 20px;
  text-align: center;
  width: 200px;
}

.specialty img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
  border: 2px solid #e91e63; /* Pink border */
}

.specialty p {
  font-size: 18px;
  color: #333;
  font-weight: bold;
}

/* General Styling */
.map-container {
  margin-top: 20px;
}

.map-address {
  font-size: 20px;
  color: #e91e63;
  margin: 0;
  font-weight: bold;
}

.contact-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* Ensure responsiveness for smaller screens */
  color: #fff;
}

.address {
  flex: 1; /* Ensure address stays on the left */
  font-size: 1.1em;
}

.contact-num {
  flex: 1;
  text-align: center; /* Center-align the phone and button */
}

.phone-num a {
  font-size: 20px; /* Make the phone number larger */
  color: #e91e63;
  text-decoration: none;
  font-weight: bold;
  position: absolute;
  right: 160px;
  margin-top: -17px;
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .contact-info {
    flex-direction: column; /* Stack elements vertically on smaller screens */
    text-align: center; /* Align everything in the center */
  }

  .address {
    text-align: center;
    margin-bottom: 15px; /* Add spacing below address */
  }
}


@media (max-width: 768px) {
  .address {
    flex: unset; /* Remove flex behavior */
    text-align: center; /* Center-align the address */
    margin-bottom: 10px; /* Add space below the address */
  }

  .contact-num {
    flex: unset; /* Remove flex behavior */
    text-align: center; /* Center-align the contact number */
  }

  .phone-num a {
    position: static; /* Remove absolute positioning */
    margin-top: 0; /* Reset margin */
  }
}
/* Show the hero section only on mobile devices (max-width: 767px) */
@media (max-width: 767px) {
  .location-page {
    display: block !important; /* Show the section on mobile */
  }
  .hero-section .hero-content span {
    font-size: 18px; /* Font size for mobile */
  }
}

/* Hide the hero section on desktops and larger screens (min-width: 768px) */
@media (min-width: 768px) {
  .location-page {
    display: none !important; /* Hide the section on desktop */
  }
}

/* Desktop form: visible on larger screens */
@media (min-width: 992px) {
  #appointment {
    display: none; /* Hide the mobile-specific appointment section */
  }
}

/* Mobile form: visible on smaller screens */
@media (max-width: 991px) {
  .d-lg-block {
    display: none !important; /* Hide desktop form on mobile */
  }
}
@media (max-width: 797px) {
  .call-center {
    display: none; /* Hide the button on medium-sized screens */
  }
}

.cta-box {
  background-color: #ffffff;
  border: 2px solid #28a745;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  margin: 40px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cta-box p {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
  font-weight: 600;
}

.cta-box .in-cta-button {
  background-color: #0d6efd;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  padding: 8px 16px; /* Adjusted padding to auto-size based on text */
  border-radius: 25px;
  display: inline-block; /* Ensures the button resizes based on the content */
  text-align: center; /* Centers the text inside the button */
  white-space: nowrap; /* Prevents text from wrapping to a new line */
}

.cta-box .in-cta-button:hover {
  background-color: #095bd4;
}

/* Mobile-Specific Styles */
@media (max-width: 768px) {
  .cta-box {
    margin: 20px auto; /* Reduce top and bottom margins on mobile */
    padding: 15px; /* Slightly smaller padding for mobile */
    max-width: 90%; /* Restrict width for smaller screens */
  }

  .cta-box p {
    font-size: 16px; /* Adjust font size for readability on mobile */
    font-weight: 600;
  }

  .cta-box .in-cta-button {
    width: 100%; /* Full-width button on mobile */
    max-width: 300px; /* Limit width to avoid overly large buttons */
    padding: 12px 20px; /* Comfortable button size on mobile */
    box-sizing: border-box;
    color:#fff;
  }
}



/* Table of Contents Styling */
.toc {
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  width:auto;
  position: sticky;
  top: 105px; /* Sticks 80px below the top of the viewport */
  height: max-content; /* Ensures it doesn't stretch vertically */
}
.toc h3 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 22px;
  color: #333;
  text-align: center;
}

.toc ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.toc ul li {
  margin-bottom: 2px;
  line-height: 1.5;
  margin-top: 10px;
}

.toc ul li a {
  text-decoration: none;
  font-size: 12px;
  color: #007bff;
  transition: color 0.3s ease;
      font-family: math;
}

.toc ul li a:hover {
  color: #0056b3;
  text-decoration: underline;
}

.toc ul li a:before {
  content: "\2022"; /* Bullet symbol */
  color: #007bff;
  font-weight: bold;
  margin-right: 8px;
}

.toc ul li ul {
  margin-left: 20px;
  border-left: 2px solid #ddd;
  padding-left: 10px;
  margin-top: 10px;
}

.toc ul li ul li {
  margin-bottom: 4px;
}

.toc ul li ul li a:before {
  content: "\25E6"; /* Open circle symbol */
  margin-right: 6px;
  color: #007bff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .toc {
    padding: 15px;
    text-align: left; /* Centers the text inside the TOC */
    margin: 10px auto; /* Ensures the TOC itself is centered */
  }
  .toc h3 {
      font-size: 16px;
  }
  .toc ul li a {
      font-size: 14px;
  }
}

.footer-optional-area {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}

.footer-optional-area::before {
  position: absolute;
  content: "";
  background-color: black;
  height: 100%;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  opacity: 0.95;
  z-index: -1;
}

.footer-optional-area.gap-wrap {
  margin: 0 30px;
}

.footer-optional-widget {
  margin-bottom: 25px;
  margin-top: 25px ;
}


.footer-optional-widget h2 {
  font-size: 35px;
  margin-bottom: 25px;
}

.footer-optional-widget h2 a {
  color: white;
}

.footer-optional-widget h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 25px;
  color: white;
  margin-top: 25px;
}

.footer-optional-widget .info-list {
  padding: 0;
  margin-bottom: 0;
}

.footer-optional-widget .info-list li {
  list-style-type: none;
  margin-bottom: 18px;
  color: white;
}

.footer-optional-widget .info-list li:last-child {
  margin-bottom: 0;
}

.footer-optional-widget .info-list li span {
  color: #ff6600;
}

.footer-optional-widget .info-list li a {
  color: white;
}

.footer-optional-widget .info-list li a:hover {
  letter-spacing: 1px;
}

.share-link {
  padding: 0;
  margin-top: 10px;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.footer-optional-widget .share-link {
  padding: 0;
  margin-top: 20px;
  margin-bottom: 0;
}

.footer-optional-widget .share-link li {
  display: inline-block;
  margin-right: 10px;
}

.footer-optional-widget .share-link li:last-child {
  margin-right: 0;
}

.footer-optional-widget .share-link li span {
  font-size: 20px;
  color: white;
  font-weight: 500;
}

.footer-optional-widget .share-link li a i {
  color: white;
  font-size: 15px;
  position: relative;
  top: 1px;
  display: inline-block;
  height: 25px;
  width: 25px;
  line-height: 22px;
  border: 2px solid white;
  text-align: center;
  border-radius: 5px;
  transition: 0.3s;
}

.footer-optional-widget .share-link li a i:hover {
  color: #E94E9F;
  border: 2px solid #E94E9F;
  transform: translateY(-2px);
}

.footer-optional-widget .quick-links {
  padding: 0;
  margin-bottom: 0;
}

.footer-optional-widget .quick-links li {
  list-style-type: none;
  margin-bottom: 15px;
  position: relative;
  padding-left: 22px;
}

.footer-optional-widget .quick-links li:last-child {
  margin-bottom: 0;
}

.footer-optional-widget .quick-links li a {
  color: white;
  text-decoration:none;
}

.footer-optional-widget .quick-links li a:hover {
  letter-spacing: 1px;
}

.footer-optional-widget .quick-links li i {
  color: #E94E9F;
  position: absolute;
  left: 0;
  top: 4.5px;
}

.footer-optional-widget .newsletter-form p {
  color: white;
  margin-bottom: 0;
}

.footer-optional-widget .newsletter-form .form-group {
  margin-top: 30px;
  position: relative;
}

.footer-optional-widget .newsletter-form .form-group .input-newsletter {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  outline: 0;
  color: rgba(255, 255, 255, 0.8);
  padding: 0 0 20px;
  width: 100%;
  font-size: 15px;
  transition: 0.3s;
}

.footer-optional-widget .newsletter-form .form-group .input-newsletter::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.footer-optional-widget .newsletter-form .form-group .input-newsletter:focus {
  border-bottom: 1px solid #ff6600;
}

.footer-optional-widget .newsletter-form .form-group button {
  padding: 0;
  border: none;
  background-color: transparent;
  font-size: 20px;
  color: #ff6600;
  position: absolute;
  right: 0;
  bottom: 15px;
}

.footer-optional-widget .newsletter-form .validation-danger {
  color: red;
  font-size: 14px;
  margin-top: 15px;
}

.optional-copyright-area {
  margin-top: 75px;
}

.optional-copyright-area .copyright-area-content {
  text-align: center;
  border-top: 1px solid #2D4A65;
  padding-top: 30px;
  padding-bottom: 2px;
}

.optional-copyright-area .copyright-area-content p {
  color: white;
  font-size: 15px;
}

.optional-copyright-area .copyright-area-content p a {
  display: inline-block;
  font-weight: 600;
  color: #E94E9F;
}

.optional-copyright-area .copyright-area-content p a:hover {
  color: white;
}

.footer-optional-widget p {
  color: white;
}

.footer-heading {
  color: white;
  text-align: center;
  margin-bottom: 15px;
}

.carousel-control-prev {
  left: -23px;
  top: -50px;
}

.carousel-control-next {
  right: -17px;
  top: -50px;
}

.faq-section {
    padding: 10px;
    background: #fff;
    border-radius: 8px;
  }
  
.faq-section h2{
    padding: 10px;
    background: #fff;
    border-radius: 8px;
    text-align:center;
    font-weight:600;
  }
  
  .faq-item {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
  }
  .faq-question {
    width: 100%;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    transition: background 0.3s;
    text-align: left;
    font-family: math;
  }
  .faq-question:hover {
    background: #f1f1f1;
  }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 10px;
    transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
  }
  .faq-item.active .faq-answer {
    max-height: 100%;
    padding: 10px;
    color:black;
    text-align:left;
  }
  .faq-icon {
    font-weight: bold;
    transition: transform 0.3s;
  }
  .faq-item.active .faq-icon {
    transform: rotate(45deg);
  }
.popup-form {
            position: fixed;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.4);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
        }
        .popup-content {
            width: 100%;
            max-width: 1000px;
            height: auto;
            background: url('https://avalclinics.com/assets/img/womens-day-offer.webp') no-repeat center center;
            background-size: contain;
            aspect-ratio: 16 / 9;
        }
        .close-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            background: white;
            border: none;
            font-size: 20px;
            cursor: pointer;
            z-index: 2;
        }

        /* Mobile Image */
        @media screen and (max-width: 768px) {
            .popup-content {
                background: url('https://avalclinics.com/assets/img/womens-day-offer-mobile.webp') no-repeat center center;
                background-size: contain;
                height: 430px;
            }
        }
        
        
.fixedbtnbar{
	bottom:10px; 
	width:500px; 
	left: 50%;
    transform: translate(-50%, 0);
	z-index:9999;
}
.container-fluid {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}
.btnbarlr{
	width:50%; 
	font-size: 0.8rem !important; 
	line-height: 2.8rem !important; 
	color: #007395 !important;
	}
.btnbarleft{
	float: left; 
	font-size: 1.5rem !important; 
	color: #622060; 
	background-color: #ffffff; 
	border-radius: 50%; 
	padding: 10px 12px;
}
.btnbarright{
	float: right; 
	font-size: 1.5rem !important; 
	color: #622060; 
	background-color: #ffffff; 
	border-radius: 50%; 
	padding: 10px 12px;
}
.btnbararrow{ font-size: 16px !important; color: #622060;}

.cityform{
	 padding: 0 5px;
    font-size: 0.8rem;
    height: 22px;
    background-color: #622060;
    border-color: #60245f;
    color: #fff;
    line-height: 1;
    border-radius: 12px;
}

.btnbarlr span {
        font-size: 16px; /* Adjust as needed */
        font-weight: bold; /* Optional: Make it bold */
    }

.btn-circle,
    #to-top {
        border-radius: 50%;

        padding: 9px 12px;
        font-size: 14px;


        text-align: center;
        font-weight: 600;
        text-transform: uppercase;
    }

    .c2a-btn {
        margin: 48px auto 0;
        margin: 4.8rem auto 0;
    }

    .btn-cradle {
        color: #fff !important;
        background-color: #622060;
        border-color: #7f277d;
        transition: all 1s ease;
        white-space: nowrap;
    }

    .btn-cradle:hover {
        background: #7f277d;
    }

    .btn-group-lg>.btn,
    .btn-lg {
        font-size: 18px;
        line-height: 1.3333333;
        border-radius: 50px;
    }

    .btn-group .btn-or {
        top: 50%;
        left: 50%;
        position: absolute;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        z-index: 99;
        box-shadow: 0;

    }

    #button {
        display: inline-block;
        background-color: #68285a;
        width: 25px;
        height: 25px;
        text-align: center;

        position: static;
        bottom: 30px;
        right: 30px;
        transition: background-color .3s,
            opacity .5s, visibility .5s;
        opacity: 0;
        visibility: hidden;
        z-index: 1000;
        border-radius: 50%;
    }

    #button::after {
        content: "\f077";
        font-family: FontAwesome;
        font-weight: normal;
        font-size: 1em;

        color: #fff;
    }

    #button:hover {
        cursor: pointer;
        background-color: #007395;
        border-radius: 50%;
        color: #fff;
    }

    #button:active {
        background-color: #68285a;
        border-radius: 50%;
    }

    #button.show {
        opacity: 1;
        visibility: visible;
    }

    
    @media (max-width: 1000px) {
    .fixed-row {
		position: sticky;
		width: 100% !important;
		z-index: 99;
		bottom: 0;
	}
    .fixed-row p {
        font-size: 12px;
        color: #fff;
        margin: auto;
    }

    .image-txt-container {
        display: flex;
        align-items: center;
        flex-direction: column;
        padding-top: 4px;
        padding-bottom: 4px;
        border: 1px solid;
    }



    }
	@media all and (min-width:768px) and (max-device-width: 1024px) {
		.mobile-banner .col-12 {
			position: absolute;
			top: 40%;
			right: 1%;
		}
	}

  @media (max-width: 768px) {
    #ht-ctc-chat {
        display: none !important;
    }
}


    @media screen and (min-width: 992px) {
    header#header nav:nth-child(3), .fixed-row {
        display: none;
    }
}

@media (max-width: 1200px) {
    .image-txt-container {
        display: flex;
        background-color: #E73D95;
        align-items: center;
        flex-direction: column;
        padding-top: 4px;
        padding-bottom: 4px;
        box-shadow: 5px 12px 14px 0px rgb(0 0 0 / 90%);
    }
}

@media (max-width: 985px) {
    .btnbarleft,
    .btnbarright,
    .fixedbtnbar {
        display: none !important;
    }
}

.video-thumbnail {
    border-radius: 12px; /* Lightly rounded corners */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-thumbnail:hover {
    transform: scale(1.05); /* Subtle hover effect */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.chooseList p img{height:90px; border-radius:50%;}
.whyChooseWrap{margin-top:-85px;position:relative;z-index:1;}

.whyChoose{display:flex;flex-wrap:wrap;background: linear-gradient(180deg, #cacccf, #f2f0f6);padding:45px;border-radius:15px;overflow:hidden;}
.chooseList{width:20%;position:relative;}
.chooseList:after {content: "";width: 1px;height: 80%;background: rgba(0,0,0,.1);position: absolute;right: 0px;top: 10%;}
.chooseList:last-child:after{display:none;}
.whyChoose{background:transparent;justify-content:space-between;max-width:100%;}
.chooseList:after{display:none;}
.chooseList .smallHeading{color: #000; font-size: 24px; font-weight: 700;  transition: color 0.3s ease-in-out;}
.chooseList{width:32%;background:#fff;border:2px solid;box-shadow:0px 0px 20px rgba(0,0,0,.1);border-radius:15px;padding:10px 17px;max-width:100%;     transition: transform 0.3sease, box-shadow 0.3sease;}

.whyChoose-home {padding:40px 20px;}
.whyChoose-home .subHeading{font-size:40px;font-weight:600;color:#000;}
.whyChoose-home .chooseList{width:auto;text-align:left;}
.whyChoose-home .chooseList:after{right: -35%;}
.whyChoose-home .chooseList a{font-size:22px;font-weight:600;color:#7C3996;text-decoration:underline;}
.why-choose-us-new-home{padding-bottom:50px;}
.home-new-choose-section .chooseList{text-align:center;}


.whyChoose-home {padding:40px 20px;}
.whyChoose-home .subHeading{font-size:40px;font-weight:600;color:#000;}
.whyChoose-home .chooseList{width:auto;text-align:left;}
.whyChoose-home .chooseList:after{right: -35%;}
.whyChoose-home .chooseList a{font-size:22px;font-weight:600;color:#7C3996;text-decoration:underline;}
.why-choose-us-new-home{padding-bottom:50px;}
.home-new-choose-section .chooseList{text-align:center;}
@media(max-width:767px){
	.whyChoose{display:block!important;}
	.chooseList{width:100%;padding:15px;margin-bottom:15px;}
	.bnrCont h1{font-size:25px;}
	.chooseList > p{margin:0px;}
	
	.downloadItem {padding:15px 10px;}
	.d-item-icon{height:38px;}
	.d-item-heading{font-size:12px;}
	.d-item-txt{font-size:10px;}
	.large-heading{font-size:22px;}
	
	/*why choose inner page design*/
	.whyChooseWrap-subPages{margin-top:0px;}
	.whyChoose-subPages .chooseList{display:flex;padding:0px;flex-direction: row;align-items: center;gap:45px;}
	.whyChoose-subPages .chooseList .bnrListIcon {width: 60px;box-shadow: 0px 0px 10px rgba(0,0,0,.07);border-radius: 10px;background: #fff;}
	.whyChoose-subPages .chooseList .bnrListIcon svg{max-width:60%;height:55px;}
	.whyChoose-subPages .chooseList .smallHeading {margin: 5px 0px;width: calc(100% - 70px);text-align: left; font-size:18px;}
}

.chooseList:hover {
    transform: scale(1.05);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}
	.chooseList:hover .smallHeading {
    color: #E73D95;
}


.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    padding-right: 15px;
    padding-left: 15px;
}
.row.no-gutters > * {
    padding-right: 0px;
    padding-left: 0px;
}
.row.no-gutters {
    padding-right: 0px;
    padding-left: 0px;

}

.row.qual {
    padding-right: 25px;
    padding-left: 25px;
}
.team-doc-member-img {
    text-align: right;
}
.image-anime {
    position: relative;
    overflow: hidden;
}
.image-anime:hover:after {
    height: 250%;
    transition: all 600mslinear;
    background-color: transparent;
}
figure {
    display: block;
    margin: 0;
    width: 100%;
}
.image-anime:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}
.team-doc-member-img img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
.member-details .col-md-8 .doc-member-info {
    display: flex
;
    flex-wrap: wrap;
    align-content: center;
}
.doc-member-info {
    background: #eee6ea;
    height:100%;
    padding: 60px 40px;
    margin-bottom: 10px;
}
.doc-member-info .doc-member-social-icon ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex
;
}
.doc-member-info .doc-member-social-icon ul li {
    margin-right: 30px;
}
.doc-member-info .section-title-doc {
    margin-bottom: 25px;
}
.section-title-doc {
    text-align: left;
    margin-bottom: 20px;
}
.doc-member-info .section-title-doc h3 {
    color: #322073;
    font-weight: 700;}
.doc-member-info .section-title-doc h2 {
    color: #007bff;
}
.doc-member-info p {
    color: #ffffff;
}
.section-title-doc h1, .section-title-doc h2 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.1em;
    color: #07332f;
    letter-spacing: -0.02em;
    margin: 0;
}
.doc-member-info .member-about-data {
    margin-bottom: 20px;
}
.doc-member-info .member-about-data p {
    color: #000000;
    font-size: 18px;
}
.doc-member-info .doc-member-social-icon ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex
;
}


.banner_cta_button-doc{
    border-radius: 30px;
}
.about-member {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 2px solid #f7a582;
}
.section-title-doc h3 {
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-color);
    margin-bottom: 15px;
}
.about-member .about-member-content {
    margin-bottom: 20px;
}
.about-member .about-member-content p {
    color: black;
    margin-bottom: 15px;
}
.about-member .about-member-content p:last-child {
    margin-bottom: 0px;
}
.member-service {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 2px solid #f7a582;
}
.member-service .about-service-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
;
    flex-wrap: wrap;
}
.member-service .about-service-content ul li {
    font-size: 18px;
    color: black;
    position: relative;
    padding-left: 30px;
    margin: 0 20px 20px 0;
    text-transform: capitalize;
}
@media (max-width: 768px) {
    .member-service .about-service-content ul li {
    font-size: 17px;
    color: black;
    position: relative;
    padding-left: 0px;
    margin: 0px;
    text-transform: capitalize;
}
}
.member-education {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 2px solid #f7a582;
}
.member-education-list .education-item {
    display: flex
;
    margin-bottom: 25px;
}
.winning-awards {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 2px solid #f7a582;
}
.team-sidebar{
	position: sticky;
	top: 120px;
	margin-left: 50px;
}

.opening-hour-box{
	background: #f7a582;
	padding: 60px 50px;
}

.opening-hour-box .icon-box{
	margin-bottom: 50px;
}

.opening-hour-title{
	margin-bottom: 40px;
}

.opening-hour-title h3{
	font-size: 32px;
	color: var(--secondry-color);
	text-transform: capitalize;
}

.opening-hour-content ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.opening-hour-content ul li{
	font-size: 18px;
	color: var(--secondry-color);
	display: flex;
	margin-bottom: 30px;
}

.opening-hour-content ul li:last-child{
	margin-bottom: 0;
}

.opening-hour-content ul span{
	width: 50%;
}
/* Appointment Section Styling */
.new-appointment-section-doc {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.new-appointment-section-doc h3 {
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    margin: 33px 32px;
    color: #333;
}
.new-appointment-form-doc .form-row {
    display: flex
;
    flex-wrap: wrap;
    gap: 12px;
}
.new-appointment-form-doc .form-group {
    margin-bottom: 15px;
}

.new-appointment-form-doc input,
.new-appointment-form-doc textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.new-appointment-form-doc input:focus,
.new-appointment-form-doc textarea:focus {
    border-color: #007bff;
    outline: none;
}

.new-appointment-form-doc button {
    width: 100%;
    background: #007bff;
    color: #fff;
    padding: 12px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.new-appointment-form-doc button:hover {
    background: #0056b3;
}

/* Error Message Styling */
#error-message {
    color: red;
    font-size: 14px;
    display: none;
    margin-top: 5px;
}
.new-appointment-form-doc .form-group {
    margin-bottom: 15px;
}

.new-appointment-form-doc input,
.new-appointment-form-doc textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.new-appointment-form-doc button {
    width: 100%;
    background: #007bff;
    color: #fff;
    padding: 12px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.new-appointment-form-doc button:hover {
    background: #0056b3;
}

/* Ensure Two-Column Layout Only on Large Screens */
@media (max-width: 991px) { /* Bootstrap lg breakpoint */
    .new-appointment-form-doc .col-lg-6 {
        flex: 1 1 100%; /* Full width on smaller screens */
    }
}
@media (max-width: 768px) { 
    .team-sidebar {

    margin-left: 0px;
}
}
.text-primary {
    color: #393d72 !important;
    padding: 10px;
}
.text-map {
    color: rgb(13 110 253);
    padding: 10px;
}

.team-doc-member-img img {
    width: 100%;
}

.section-title-doc h3 {
    font-size: 20px;
    font-weight:600;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title-doc h2 {
    font-size: 30px;
    font-weight: 750;
    color: #007bff;
}

.text-anime-style-3 {
    text-transform: capitalize;
}

.fadeInUp {
    opacity: 0;
    animation: fadeInUp 1s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.doc-member-info, .doc-member-information {
    padding: 20px;
}

.doc-member-social-icon {
    margin-top: 0px;
}

.doc-member-social-icon .btn {
    display: inline-block;
    background: #E73D95;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    border-radius: 30px;
}

.doc-member-social-icon .btn:hover {
    background: #E73D95;
}

.about-service-content ul {
    list-style: none;
    padding: 0;
}

.about-service-content ul li {
    font-size: 16px;
    margin-bottom: 10px;
}

.about-service-content ul li i {
    margin-right: 10px;
    color: #007bff;
}

.new-appointment-section-doc {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

.new-appointment-section-doc h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.new-appointment-form-doc .form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.new-appointment-form-doc button {
    background: #E73D95;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.new-appointment-form-doc button:hover {
    background: #0056b3;
}
figure {
    margin: 0 !important;
}

.popup {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

/* Popup Content Box */
.popup-content {
    background: #fff;
    max-width: 500px;
    margin: 10% auto;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
}

/* Close Button */
.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

/* Popup Title */
.popup-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}

/* Form Layout */
.popup-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popup-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.popup-col {
    width: 48%;
}

.popup-form-group {
    width: 100%;
}

/* Input Fields */
.popup-input,
.popup-textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.popup-textarea {
    height: 80px;
    resize: none;
}

/* Submit Button */
.popup-btn {
    background-color: #007bff;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
}

.popup-btn:hover {
    background-color: #0056b3;
}

/* Overlay */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

/* Responsive Design */
@media (max-width: 600px) {
    .popup-content {
        width: 90%;
    }

    .popup-col {
        width: 100%;
    }
}

.new-hdr-breadcrumb {
    background-color: #d382b7;
    padding: 5px;
}
.hdr-breadcrumb {
    padding: 0px !important;
    margin-bottom: 0rem !important;
    /* background-color: #F9F9F9 !important; */
    background-color: #62206005 !important;
}
.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 !important;
}
.hdr-breadcrumb a {
    font-size: 12px !important;
}
.hdr-breadcrumb a, .fa-angle-double-right {
    color: #fff;
    text-decoration: none;
}

.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;
}

 #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;
}

/* Plus icon */
.plus-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    font-weight: bold;
    color: white;
    background: rgba(0, 0, 0, 0.7);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

/* Show icon on hover */
.location-box-doc:hover .plus-icon {
    opacity: 1;
}

/* Location Name */
.location-name-doc {
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px;
    color: #333;
    transition: color 0.3s ease-in-out;
}

.location-box-doc:hover .location-name-doc {
    color: #0056b3;
}
.optimized-img {
  max-width: 100%;
  height: auto;
  object-fit: cover; /* Ensures the image scales well */
}



.container {
  max-width: 1200px;
  margin: auto;
}

.section-title {
  font-size: 36px;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 18px;
  color: #000;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 500;
  margin-top: 20px;
}

.comp-services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.comp-service-item {
  display: flex;
  align-items: center;
  width: 45%;
}

.icon-wrapper {
  border-radius: 50%;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
}

.icon-wrapper img {
  width: 50px;
  height: 50px;
}

.comp-service-title {
  font-size: 22px;
  color: #1c1c1c;
}

.section-footer {
  font-size: 18px;
  color: #333;
  margin-top: 40px;
}

.section-note{
  font-size: 18px;
  color: #000;
  margin-top: 35px;
  text-align: center;
  font-weight: 500;
  margin-bottom: 0px;
}
/* Mobile Responsive */
@media screen and (max-width: 768px) {
  .comp-service-item {
    width: 100%;
    justify-content: flex-start;
  }

  .icon-wrapper {
    width: 60px;
    height: 60px;
  }

  .icon-wrapper img {
    width: 35px;
    height: 35px;
  }

  .section-title {
    font-size: 26px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .comp-service-title {
    font-size: 16px;
  }
}

.gallery-section h1{
    text-align:center;
    font-weight:600;
}
}