* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body, html {
    font-family: '"Noto Sans"', sans-serif;
    scroll-behavior: smooth;
    /* border: 1px red solid; */
  }
  [id] {
  scroll-margin-top: 100px;
  }
  
  @media (max-width: 768px) {
    [id] {
      scroll-margin-top: 70px; /* adjust for smaller navbar */
    }
  }
  .top_language_bar {
    background-color: #4b1034;
    color: white;
    font-size: 0.85rem;
    padding: 6px 0;
  }
  .container_lang {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: flex-end; /* aligns languages to right */
    gap: 1rem;
  }
  .container_lang a {
    color: white;
    text-decoration: none;
  }
  .container_lang a:hover {
    text-decoration: underline;
  }
  
  /* Navbar */
  .main_navbar {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 3;
  }
  .navbar_container {
    /* max-width: 1200px; */
    margin: auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #4b1034;
  }
  .logo_img {
    height: 60px;
    width: auto;
    object-fit: contain;
  }
  .nav_links {
    display: flex;
    list-style: none;
    gap: 1rem;
    margin-bottom: 0;
  }
  .nav_links a {
    text-decoration: none;
    color: rgb(82, 25, 54);
    font-weight: 500;
  }
  .nav_links a:hover {
    color: rgb(146, 45, 97);
  }
  .has_dropdown {
    position: relative;
    
  }
  .has_dropdown ul{
  background-color: #fbe6da;
  }
  /* .has_dropdown:hover .dropdown_with_image {
    display: flex;
  } */

  .dropdown_with_image {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #fbe6da;
    border-top: 2px solid #5f0f29;
    z-index: 99;
    flex-direction: row;
    width: 600px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  .dropdown_menu2{
    list-style: none;
    margin: 0;
    padding: 10px 0;
    background-color: #fbe6da;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-top: 2px solid #5f0f29;
    display: none;
    position: absolute; 
    top: 100%; 
    left: 0;
    width: 200px; 
    z-index: 9999;
  }
  .dropdown_menu2 li {
    display: block;
}

  .has_dropdown:hover .dropdown_menu2 {
    display: block;
  }
  .dropdown_image {
    width: 50%;
    padding: 0;
  }
  
  .dropdown_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .dropdown_menu {
    list-style: none;
    margin: 0;
    padding: 20px;
    width: 50%;
  }
  
  .dropdown_menu li {
    margin-bottom: 10px;
  }
  
  .dropdown_menu a {
    text-decoration: none;
    color: #3a3a3a;
    display: block;
    transition: 0.3s;
  }
  
  .dropdown_menu a:hover {
    color: #5f0f29;
  } 
  .services_dropdown {
    max-height: 200px;
    overflow-y: auto;
  }
  .services_dropdown li a {
    padding: 10px;
    display: block;
    color: #333;
    text-decoration: none;
}

.services_dropdown li a:hover {
    background-color: #f4f4f4;
}

.has_dropdown a svg {
    margin-left: 0.5rem; /* Adds space between the text and arrow */
  }

  button.SwitchlanguagesBTN {
    background: none;
    color: white;
    border: none;
}

button.SwitchlanguagesBTN:hover {
    text-decoration: underline;
}
  
  /* Responsive navbar */
  @media (max-width: 768px) {
    .navbar_container {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .nav_links {
      flex-direction: column;
      width: 100%;
      padding-top: 0.5rem;
    }
  
    .nav_links a {
      padding: 0.5rem 0;
    }
    .explore{
      margin-top: 20px;
    }
  }
  @media (min-width: 1080px){
    .has_dropdown:hover .dropdown_with_image {
    display: flex;
  }
  }
  /* Add these media queries and mobile menu styles */

/* Mobile menu toggle button (hidden by default) */
.mobile_menu_toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #4b1034;
  cursor: pointer;
}

/* Mobile menu styles */
@media (max-width: 992px) {
  .mobile_menu_toggle {
    display: block;
    position: absolute;
    right: 1rem;
    top: 1.5rem;
  }
  
  .nav_links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: white;
    position: absolute;
    top: 80px;
    left: 0;
    padding: 1rem;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  }
  
  .nav_links.active {
    display: flex;
  }
  
  .has_dropdown .dropdown_with_image {
    position: static;
    width: 100%;
    flex-direction: column;
    display: none;
    box-shadow: none;
    background: #f8f8f8;
  }
  
  .has_dropdown.active .dropdown_with_image {
    display: flex;
  }
  
  .dropdown_image {
    display: none; /* Hide image in mobile */
  }
  
  .dropdown_menu {
    width: 100%;
    padding: 10px;
  }
  
  .dropdown_menu2 {
    position: static;
    width: 100%;
    max-height: none;
  }
  
  .logo_img {
    height: 50px;
  }
}
.whatsapp-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

/* Button */
.whatsapp-float {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  overflow: hidden;
}

.whatsapp-float img {
  height: 150%;
  object-fit: contain; /* keeps full WhatsApp logo visible */
}

/* Chatbox */
.whatsapp-chatbox {
  display: none;
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 250px;
  background-color: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.whatsapp-chatbox p {
  margin: 0 0 10px;
  font-size: 14px;
}

.whatsapp-chatbox a {
  display: inline-block;
  background-color: #25D366;
  color: white;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 5px;
  font-weight: bold;
}

/* Mobile & Tablet Responsiveness */
@media (max-width: 768px) {
  .whatsapp-container {
    bottom: 15px;
    right: 15px;
  }

  .whatsapp-chatbox {
    width: 220px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
  }

  .whatsapp-chatbox {
    bottom: 70px;
    width: 200px;
  }
}

  /* Footer CSS */
  .footer {
    padding-top: 30px !important;
  }
  .footer h4{
    font-size: 24px;
    font-weight: 700;
    color: #521936;
  }

  .contact-column a{
    text-decoration: none;
    color: black;
    line-height: 1.75;
  }

  .contact-column p{
    margin-bottom: 0;
  }

  .links-column ul{
    padding-left: 0;
  }

  .links-column li{
    list-style: none;
  }

  .links-column a{
    color: black;
    text-decoration: none;
    line-height: 2.25;
  }

  .branch-button{
    background-color: #521936;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 11px;
    text-decoration: none;
    margin: 20px 0;
    display: block;
    letter-spacing: 1px;
    text-align: center;
  }

.video-section {
  position: relative;
  width: 100%;
  /* height: 96vh; */
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.fullscreen-video {
  width: 100vw; 
  height: 100%;
  max-height: 90vh;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {

  .fullscreen-video {
    width: 99vw; 
    height: 100%;
  }
  
}

/* Adjust for mobile */
@media (max-width: 768px) {

  .main_navbar {
    /* position: relative; */
    z-index: 100;
  }
  
  /* Adjust content below video to prevent overlap */
  .content-below-video {
    margin-top: 0;
    position: relative;
    z-index: 10;
  }
}


  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.features-section {
  margin-top: 100px;
  text-align: center;
  background: linear-gradient(135deg, #fbe6da 0%, #ffffff 100%);
}

.features-container {
  padding-top: 50px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-top: 0px;
}

.feature-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-icon {
  width: 200px;
  height: 200px;
  margin-bottom: 25px;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-title {
  color: #5f0f29;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.feature-desc {
  color: #666;
  font-size: 16px;
  line-height: 1.7;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .features-container {
      flex-direction: column;
      gap: 50px;
  }
  
  .container {
      padding: 40px 20px;
  }
  
  .feature-item {
      max-width: 350px;
      margin: 0 auto;
  }
}

/* Clinic Intro Section */
.clinic-intro {
    padding: 50px 0;
    text-align: center;
   
}

.clinic-intro h1 {
    color: #5f0f29;
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 800;
}

.clinic-intro h2 {
    color: #333;
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 600;
}

.clinic-intro p {
    max-width: 800px;
    margin: 0 auto 40px;
    color: rgb(82, 25, 54);
    font-size: 16px;
    line-height: 24px;
}

.btn-consultation {
    display: inline-block;
    background: rgb(82, 25, 54);
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 22px;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-consultation:hover {
    background: #521930;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(95, 15, 41, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .features-container {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-column {
        max-width: 350px;
        margin-bottom: 30px;
    }
    
    .clinic-intro h1 {
        font-size: 28px;
    }
    
    .clinic-intro h2 {
        font-size: 20px;
    }
}
.awards-section {
  padding: 5px 0;
  background-color: rgb(255, 237, 228);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  color: #5f0f29;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  background-color: transparent;
}

.awards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;

}

.awards-column {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.awards-list {
  list-style-type: none;
 /* BG color for list */
  padding: 30px;
  border-radius: 10px;
}

.awards-list li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 23.8px;
  color: rgb(82, 25, 54);
  font-weight: 600;
}

.awards-list li:before {
  content: "\f091"; 
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: gold;
  font-size: 18px;
  position: absolute;
  left: 0;
  top: 2px;
}

.authorized-provider {
  text-align: start;
  margin-left: 20px;
  margin-top: -50px;
  font-size: 18px;
  font-weight: 700;
  color: #5f0f29;
  background-color: rgb(255, 237, 228);
  padding: 15px;
  border-radius: 5px;
  display: inline-block;
  width: 100%;
  max-width: 800px;
}

@media (max-width: 768px) {
  .section-header h2 {
      font-size: 28px;
  }
  
  .awards-column {
      min-width: 100%;
  }
  
  .awards-list {
      padding: 20px;
  }
  .awards-container{
    gap: 0;
  }
}

.expertise-section .section-header{
  padding-top: 50px;
  text-align: start;
  font-size: 35px;
  font-weight: 700;
}

.container-Our_Expertise{
  max-width: 1140px;
  margin: 0 auto;
  padding: 40px 15px;
  display: flex;
  flex-wrap: wrap;

  gap: 30px;
}
.expertise-p_Css{
  color: rgb(82, 25, 54);
  font-size: 18px;
  font-weight: 700;
}
.card-expertise {
  width: calc(50% - 15px);
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-expertise img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.card-expertise:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
  .card-expertise {
    width: 100%;
  }
  .card-expertise img {
    min-height: 200px;
  }
}
.content-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* YouTube Video Section */
.youtube-container {
  position: relative; 
  text-align: center; 
  margin-bottom: 50px;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.video-container_acne_scars{
  width: 100%;
  max-width: 700px;
  max-height: 800px;
  margin: 0 auto 50px;
  position: relative;
  padding-bottom: 55.25%;
  height: 0;
  overflow: hidden;
}
.video-container_acne_scars iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
/* Reviews Slideshow */
.reviews-section {
  margin-bottom: 60px;
}

.reviews-title {
  text-align: center;
  margin-bottom: 30px;
  color: #5f0f29;
  font-size: 24px;
}

.rating {
  text-align: center;
  margin-bottom: 20px;
  font-size: 24px;
  color: #ffc107;
}

.reviews-slider {
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.reviews-track {
  display: flex;
  transition: transform 0.5s ease;
}

.review-card {
  min-width: 100%;
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  text-align: center;
  min-height: 300px;
  max-height: 550px;
  overflow: auto;
}

.review-text {
  font-style: italic;
  margin-bottom: 15px;
  color: #555;
}

.review-author {
  font-weight: bold;
  color: #5f0f29;
}

.review-date {
  color: #999;
  font-size: 14px;
  margin-top: 5px;
}

.brands-title {
  text-align: center;
  margin-bottom: 30px;
  color: #5f0f29;
  font-size: 24px;
}

.brand-img {
  max-height: 200px;
  max-width: 250px;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.brand-img:hover {
  opacity: 1;
  filter: grayscale(0);
}

.swiper-wrapper{
  align-items: center;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .content-section {
      padding: 30px 15px;
  }
  
  .reviews-title, .brands-title {
      font-size: 20px;
  }
  
  .review-card {
      padding: 20px;
  }
  .reviews-slider {
    max-width: 4cm;

  }
  
  .reviews-track {
    display: flex;
    transition: transform 0.5s ease;
  }
  
  .review-card {
    min-width: 100%;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    min-height: 300px;
    max-height: 400px;
  }
  
  .brand-item {
      margin: 0 15px;
  }
}


.google-review-container {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
.clinic-info {
  width: 550px;
  text-align: center;
}

.clinic-info img {
  border-radius: 30%;
  width: 80px;
  height: 80px;
}

.stars {
  color: #f39c12;
  font-size: 20px;
}

.review-button {
  background-color: #1a73e8;
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  display: inline-block;
  /* margin-top: 10px; */
  text-decoration: none;
  font-weight: bold;
}

.reviews {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.review-card {
  min-width: 300px;
  max-width: 300px;
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  scroll-snap-align: start;
}

.reviewer {
  font-weight: bold;
}

.review-text {
  margin-top: 10px;
}

.google-icon {
  height: 15px;
  vertical-align: middle;
}

    @media (max-width: 768px) {
      .google-review-container {
        flex-direction: column;
        align-items: center;
        max-width: 500px;
      }
      .reviews{
        max-width: 100%;
      }
    }
    .card-container {
      background-color: #f7d6d6;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      overflow: hidden;
    }

    .form input,
    .form textarea,
    .form select,
    .form button {
      margin-bottom: 20px;
      padding: 12px;
      font-size: 16px;
      border-radius: 4px;
      width: 100%;
    }

    .form textarea {
      resize: vertical;
      height: 100px;
    }

    .form button {
      background-color: #4c0b2d;
      color: white;
      border: none;
      transition: background 0.3s ease;
    }

    .form button:hover {
      background-color: #350821;
    }

    .map iframe {
      width: 100%;
      height: 100%;
      border: 0;
      min-height: 400px;
    }

    @media (max-width: 767.98px) {
      .map iframe {
        min-height: 300px;
      }
    }
    @media (max-width: 480px) {

      .google-review-container {
        max-width: 400px;
        border-color: red 1px solid;
      }
      .clinic-info{
        max-width: 100%;
      }
      .awards-section {
        max-width: 430px;
      }
    }
/* About us Page */
/* About Clinic Section */
.about_clinic_info {
  /* background-color: #f9f5f2; */
  padding: 1rem 0;
  color: #333;
  line-height: 1.6;
}

.about_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 2rem;
}

.about_title {
  font-size: 40px;
  color: rgb(82, 25, 54);
  text-align: start;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.about_tagline {
  font-size:16px;
  text-align: start;
  color: rgb(82, 25, 54);
  font-weight: 700;
}

.about_content {
  max-width: 900px;
  /* margin: 0 auto 3rem; */
}

.about_paragraph {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  text-align: start;
  color: rgb(82, 25, 54);
}

.about_blog_link {
  text-align: start;
  font-size: 1.1rem;
  margin-top: 2rem;
  color: rgb(82, 25, 54);
}

.about_blog_link a {
  color: rgb(73, 73, 73);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgb(82, 25, 54);
  transition: all 0.3s ease;
}

.about_blog_link a:hover {
  color: rgb(82, 25, 54);
  border-bottom-color: #8a1a3a;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about_clinic_info {
    padding: 3rem 0;
  }
  
  .about_title {
    font-size: 2.5rem;
  }
  
  .about_tagline {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
  
  .about_paragraph {
    font-size: 1rem;
    text-align: left;
  }
}

.about_us_imageAds_section {
  width: 100vw; 
  margin: 0;
  padding: 0;
  overflow: hidden;
  max-width: 2030px;
}

.about_us_imageAds_section img {
  width: 100%;
  height: auto;
  display: block;
}

.doctor-profiles {
  padding: 2rem 2rem;
  background-color: #fff;
  color: #333;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}
.doctor-container {
  max-width: 1200px;
  margin: 0 auto;
}
.doctor-profiles .section-header {
  max-width: 1100px;
  margin: 0 auto 3rem;
  text-align: start;
}

.doctor-profiles .section-header h2 {
  font-size: 2.5rem;
  color: #4b1034;
  margin-bottom: 1rem;
}

.doctor-profiles .section-header p {
  font-size: 16px;
  line-height: 24px;
  max-width: 800px;
  color: rgb(82, 25, 54);
  font-weight: 400;
}



.doctor-profile {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.doctor-image {
  flex: 0 0 300px;
  margin-right: 3rem;
  text-align: center;
}

.doctor-image img {
  /* width: 100%; */
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1rem;
  max-height: 600px;
}


.doctor-basic-info p {
  font-size: 16px;
  color: rgb(82, 25, 54);
  line-height: 24px;
}

.doctor-details {
  flex: 1;
  min-width: 300px;
}

.doctor-details h4 {
  font-size: 16px;
  font-weight: 700;
  color: rgb(82, 25, 54);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
}

.doctor-description p {
  margin-bottom: 1.2rem;
  line-height:24px;
  color: rgb(82, 25, 54);
  font-weight: 400;
}

/* Responsive Design */
@media (max-width: 900px) {
  .doctor-profile {
    flex-direction: column;
  }
  
  .doctor-image {
    flex-direction: column;
  }
  
  .doctor-basic-info {
    order: 2; /* Moves credentials below image */
    margin-top: 1rem;
  }
  
  .doctor-image img {
    order: 1; /* Ensures image stays above */
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .doctor-basic-info p {
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.5;
  }
}

@media (max-width: 600px) {
  .doctor-image {
    flex-direction: column;
    text-align: center;
  }
  
  .doctor-image img {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .doctor-profiles {
    padding: 3rem 1rem;
  }
  .doctor-details {
  flex: 1;
  max-width: 370px !important;
  min-width: 200px;
  }
  .doctor-profile {
    margin-bottom: 1.5rem;
  }
  .doctor-image img {
  margin-left:25px;
  max-width: 300px;
  height: auto;
  max-height: 400px;
}
}


/* contact_us css section */
.connect-section {
  background-color: #fef8dd;
  border-radius: 50px;
  padding: 20px 20px;
  text-align: center;
  margin: 40px auto;
  max-width: 1200px;
}

.connect-section h2 {
  color: rgb(82, 25, 54);
  font-size: 35px;
  font-weight: 700;
  line-height: 42px;

}

.connect-section p {
  color: rgb(82, 25, 54);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
} 

.full-viewport-contact {
  width: 100%;
  background-color: rgb(82, 25, 54); /* Vibrant red */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px 30px;
  box-sizing: border-box;
}

.contact-content {
  max-width: 950px;
  color: white;
}

.contact-content h2 {
  font-size: 40px;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.contact-content p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-content h2 {
    font-size: 2.2rem;
  }
  
  .contact-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .full-viewport-contact {
    height: 20vh; /* Slightly shorter on mobile */
  }
  
  .contact-content h2 {
    font-size: 1.8rem;
  }
  .whatsapp-float{
    width: 65px;
    height: 65px;
    bottom: 5vw;
    right: 5vw;
}
}


.contact_us_clinic {
  text-align: center;
  padding: 40px 20px;
  background-color: #fff;
}

.contact_us_clinic h2 {
  font-size: 40px;
  color: rgb(82, 25, 54);
  font-weight: 700;
  margin-bottom: 0.2em;
}

.contact_us_clinic p {
  color: #4a1f33;
  margin-bottom: 10px;
  margin-top: 10px;
  font-weight: 700;
  font-size: 18px;
}

.contact_us_clinic .clinic-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.contact_us_clinic .clinic-card {
  background-color: #fcdede;
  border-radius: 20px;
  padding: 20px;
  width: 330px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact_us_clinic .clinic-card img {
  width: 100%;
  border-radius: 10px;
  height: auto;
  margin-bottom: 15px;
}

.contact_us_clinic .clinic-card h3 {
  margin: 10px 0;
  color: #4a1f33;
  font-weight: bold;
  font-size: 23px;
}

.about_us-clinic-info {
  background-color: rgb(219, 172, 152);
  padding: 15px;
  border-radius: 10px;
  text-align: left;
  color: #fff;

}
.about_us-clinic-info p{
  font-size: 16px ;
  font-weight: 400;
}
.about_us-clinic-info .icon {
  margin-right: 8px;
}
.contact_us_phoneIconCSS{
  padding-bottom: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact_us_clinic .clinic-cards {
    flex-direction: column;
    align-items: center;
  }
}
.face_N_skinSection{
  padding-top: 30px ;
}

.face_N_skinSection{
  border-bottom: 1px solid #eee;
}

.face_N_skinSection h2{
  font-size: 40px;
  color: rgb(82, 25, 54);;
  font-weight: 700;
}

.face_N_skinSection p{
  font-size: 16px;
  color: rgb(82, 25, 54);;
  font-weight: 400;
}

#treatment-section_acneNscars {
  padding: 60px 20px;
  background-color: #fff;

}
.container_treatment_page{
  border-bottom: 1px solid #eee;
  padding-bottom: 50px;
}
.treatment-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;

}

.text-content {
  flex: 1 1 500px;
}

.text-content h2 {
  color: #4a1f33;
  font-size: 35px;
  margin-bottom: 1rem;
  font-weight: 700;
}

.text-content p {
  margin-bottom: 1rem;
  line-height: 24px;
  color: rgb(82, 25, 54);
  font-size: 16px;
}

.treatment-options h3 {
  color: rgb(82, 25, 54);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 25px;
}

.treatment-options ul {
  list-style-type: disc;
  padding-left: 20px;
  color: #333;
}

.treatment-options li {
  margin-bottom: 0.5rem;
}

.button-group {
  margin-top: 1.5rem;
}

.Schedule_button .btn {
  display: inline-block;
  margin-right: 10px;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn.whatsapp {
  background-color: rgb(246, 212, 210);
  color: rgb(82, 25, 54);
}

.btn.whatsapp:hover {
  background-color: rgb(82, 25, 54);
}

.btn.explore {
  background-color: #f8d5d5;
  color: #4a1f33;
}

.btn.explore:hover {
  background-color: #f3c0c0;
}

.image-content {
  flex: 1 1 400px;
  text-align: center;
}

.image-content img {
  width: 100%;
  max-width: 600px;
  border-radius: 10px;
}
.options-grid {
  display: flex;
  gap: 40px;
}

.options-grid ul {
  list-style-type: disc;
  padding-left: 20px;
  color: #333;
}

.options-grid li {
  margin-bottom: 0.5rem;
}
#treatment-section_aging_n_sagging_skin{
  padding: 10px 20px;
  background-color: #fff;
}

#treatment-section_cellulites_stretch_marks{
  padding: 60px 20px;
  background-color: #fff;
}

#treatment-section_dull_skin_n_fine_lines{
  padding: 30px 20px;
  background-color: #fff;
}
#treatment-section_eczema_skin_infection{
  padding: 30px 20px;
  background-color: #fff;
}
#treatment-section_keloid_hypertrophic_scars{
  padding: 30px 20px;
  background-color: #fff;
}
#treatment-section_pigmentation{
  padding: 30px 20px;
  background-color: #fff;
}

.testimonial-section {
  background-color: #f9d7d7;
  padding: 50px 20px;
  text-align: center;
  color: #3c1b2e;
}

.testimonial-text {
  font-style: italic;
  font-size: 1.2rem;
  max-width: 1000px;
  margin: 0 auto 20px;
}

.testimonial-author {
  font-weight: bold;
}
.treatment-content li{
  color: #4a1f33;
  
}

#treatment-section_excessive_sweating{
  padding: 60px 20px;
  background-color: #fff;
}

#treatment-section_weight_management{
  padding: 20px 20px;
  background-color: #fff;
}
#treatment-section_hair_removal{
  padding: 50px 20px;
  background-color: #fff;
}
#treatment-section_hair_thinning_n_hair_loss{
  padding: 10px 20px;
  background-color: #fff;
}
#treatment-section_tattoo_removal{
  padding: 50px 20px;
  background-color: #fff;
}
#treatment-section_vagina_rejuvenation{
  padding: 10px 20px;
  background-color: #fff;
}

/* wellness page */

#treatment-section_anti_aging_blood_test{
    padding: 60px 20px;
  background-color: #fff;
}
#treatment-section_EECP_wellness{
  padding: 20px 20px;
  background-color: #fff;
}
#treatment-section_epigenetic_test{
  padding: 40px 20px;
  background-color: #fff;
}
#treatment-section_BHRT{
  padding: 30px 20px;
  background-color: #fff;
}
#treatment-section_MSc_stem_cell_n_exsomes{
  padding: 30px 20px;
  background-color: #fff;
}

/* End wellness page */

/* services page */
#treatment-section_biolyph_PRP{
  padding: 60px 20px;
  background-color: #fff;
}

#treatment-section_botulinum_toxin_A_injection{
  padding: 20px 20px;
  background-color: #fff;
}

#treatment-section_chemical_peels{
    padding: 20px 20px;
  background-color: #fff;
}

#treatment-section_cold_cryo_weight_loss{
  padding: 40px 20px;
  background-color: #fff;
}

#treatment-section_dermal_fillers{
  padding: 30px 20px;
  background-color: #fff;
}

#treatment-section_exilis_body{
  padding: 30px 20px;
  background-color: #fff;
}

#treatment-section_EECP_services{
  padding: 40px 20px;
  background-color: #fff;
}

#treatment-section_mesolipolysis{
  padding: 30px 20px;
  background-color: #fff;
}

#treatment-section_fractional_CO2_laser{
  padding: 30px 20px;
  background-color: #fff;  
}

#treatment-section_LaseMD{
  padding: 30px 20px;
  background-color: #fff;  
}

#treatment-section_picocare_laser{
  padding: 30px 20px;
  background-color: #fff; 
}

#treatment-section_skin_booster{
  padding: 30px 20px;
  background-color: #fff; 
}

#treatment-section_Sculptra{
  padding: 30px 20px;
  background-color: #fff;
}

#treatment-section_Radiesse{
  padding: 30px 20px;
  background-color: #fff;
}

#treatment-section_regenera_activa_hair_growth{
  padding: 30px 20px;
  background-color: #fff;
}

#treatment-section_RSpectra_XT_laser{
  padding: 30px 20px;
  background-color: #fff;
}

#treatment-section_RSpectra_XT_laser{
  padding: 30px 20px;
  background-color: #fff;
}
#treatment-section_BTL_X-wave{
  padding: 30px 20px;
  background-color: #fff;
}

#treatment-section_BTL_vanquish{
  padding: 30px 20px;
  background-color: #fff;
}
/* End services page */


/* skincare page */
  #skincare_section{
    text-align: center;
  }

  .skincare_product-grid{
    padding: 30px 20px;
  }
  .product-col_card{
    margin-bottom: 20px;
  }
  .product-info-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 40px;
    flex-wrap: wrap; /* Make it responsive on small screens */
  }

  .info-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    max-width: 600px;
  }

  .info-text ul {
    list-style-type: disc;
    color: rgb(82, 25, 54);
    font-size: 18px;
    line-height: 27px;
    letter-spacing: normal;
    padding-left: 20px;
    max-width: 500px;
    margin-top: 5px;
    font-weight: 400;
  }
  .skincare_product-card {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      background: #fff;
      border-radius: 8px;
      padding: 20px;
      margin-bottom: 30px;
      box-shadow: 0 0 10px rgba(0,0,0,0.05);
      text-align: center;
      height: 100%;
    }
  .skincare_product-card2 {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      background: #fff;
      border-radius: 8px;
      padding: 20px;
      margin-bottom: 30px;
      box-shadow: 0 0 10px rgba(0,0,0,0.05);
      text-align: center;
      height: 100%;
    }
    .skincare_product-card img {
      width: 100px;
      height: auto;
      margin-bottom: 10px;
      min-width: 300px;
      min-height: 318px;
    }
    .special_skincare_col6_css{
      width: 100px;
      height: auto;
      margin-bottom: 10px;
      min-width: 400px;
      min-height: 418px;
      margin-left: 70px;
    }
    .skincare_product-title {
      min-height: 80px;
      background: #fddede;
      display: inline-block;
      padding: 5px 10px;
      border-radius: 5px;
      font-weight: bold;
      color: rgb(82, 25, 54);
      margin-bottom: 5px;
    }

    .skincare_product-subtitle {
      font-size: 0.9em;
      color: #555;
      background: #fddede;
      color: rgb(82, 25, 54);
      font-weight: 400;
    }

    .skincare_product-features {
      text-align: left;
      font-size: 0.9em;
      margin-bottom: 20px;
    }

    .skincare_product-features li {
      margin-bottom: 8px;
      color: rgb(82, 25, 54);
    }

    .skincare_product-price {
      font-size: 1.2em;
      font-weight: bold;
      color: #900;
    }
  .skincare_product-bottom{
    margin-bottom: 0;
  }

    .buy-button {
      display: inline-block;
      background: #e60000;
      color: #fff;
      padding: 10px 20px;
      margin-top: 10px;
      text-decoration: none;
      border-radius: 5px;
      font-weight: bold;
    }

    .buy-button::after {
      content: " 🛒";
    }
    .product-info-image img{
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    max-width: 600px;
  }

    @media (max-width: 768px) {
      
    .special_skincare_col6_css{
      width: 100px;
      height: auto;
      margin-bottom: 10px;
      min-width: 400px;
      min-height: 418px;
      margin-left: -40px;
    }
      .skincare_product-card img {
      width: 100px;
      height: auto;
      margin-bottom: 10px;
      min-width: 300px;
      min-height: 318px;
    }
    .product-info-image img{
      max-width: 300px;
    }
}
    /* end skin care page */

    /* blog page */
    .blog-hero {
  text-align: center;
  /* background-color: #fce0d5; */
  padding: 60px 20px;
}

.blog-hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}
.recent-blog {
  padding: 10px 10px;
  max-width: 900px;
  margin: auto;
}

.recent-blog h2 {
  font-size: 40px;
  color: rgb(82, 25, 54);
  margin-bottom: 10px;
  font-weight: 700;
}

.recent-blog p {
  font-size: 16px;
  color: rgb(82, 25, 54);
}

.blog-post {
  margin: 30px 0;
}

.blog-post h3 {
  font-size: 32px;
  color:rgb(82, 25, 54);
  font-weight: 700;
  line-height: 41.6px;
}

.blog-post .author {
  font-style: italic;
  color: #888;
  margin-bottom: 10px;
}

.blog-post .excerpt {
  margin-bottom: 10px;
}

.read-more {
  color: rgb(82, 25, 54);
  font-weight: bold;
  text-decoration: none;
}

.read-all-wrapper {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

.read-all-btn {
  background-color: rgb(255, 192, 203);
  color: rgb(82, 25, 54);
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.read-all-btn:hover {
  background-color:  rgb(82, 25, 54);
  color: white;
}

.All_blog_Section{
  padding-top: 40px;
  text-align: center;
  
}

.All_blog_Section h2 {
  font-size: 40px;
  color: rgb(82, 25, 54);;
  font-weight: 700;
}
.All_blog_Section p {
  color: rgb(82, 25, 54);;
  font-weight: 400;
}

#load-more{
  background: rgb(82, 25, 54);
  color: white;
  padding: 10px 50px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
.load-more-container {
  text-align: center;
  padding: 1rem;
}
.blog-content{
  text-align: start;
}

.blog-content h1{
  font-weight: 700;
  color:  rgb(82, 25, 54);
  padding-bottom: 20px;
}
.blog-content h2{
  font-weight: 700;
  color:  rgb(82, 25, 54);
  padding-bottom: 10px;
}
.blog-content h3{
  font-weight: 700;
  color:  rgb(82, 25, 54);
  padding-bottom: 10px;
}

.blog-content h4{
  font-weight: 700;
  font-size: 22px;
  color:  rgb(82, 25, 54);
  padding-bottom: 10px;
}
.blog-content p{
  font-weight: 400;
  line-height: 24px;
  color:  rgb(82, 25, 54);
  padding-bottom: 10px;
}

.blog-content li{
  font-weight: 400;
  line-height: 24px;
  color:  rgb(82, 25, 54);
 padding-bottom: 10px;
}

.blog-content li strong{

  color:  rgb(82, 25, 54);

}
.image-caption-blog {
    font-size: 0.9rem;
    font-style: italic;
    color: #666 !important;
    margin-top: -0.5rem;
    margin-bottom: 2rem;
  }
@media (max-width: 767px) {

}
@media (max-width: 480px){
  .blog-content img{
    max-width: 320px;
  }
}
/* Base layout */
.clinic-branch-section {
  display: flex;
  flex-direction: row;
  background-color: rgb(82, 25, 54);
  color: white;
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  gap: 3rem;
  align-items: center;
  margin-top: 30px;
}

/* Image or Map */
.clinic-location-image {
  flex: 1;
}
.clinic-location-image img {
  width: 100%;
  border-radius: 12px;
  display: block;
  max-height: 800px;
}

/* Info panel */
.clinic-location-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 850px;
}

/* Contact Icons */
.contact-icons {
  margin: 1rem 0;
}
.contact-icons a {
  display: inline-block;
  background: white;
  color: rgb(82, 25, 54);
  padding: 0.6rem;
  border-radius: 30%;
  margin-right: 0.5rem;
  text-decoration: none;
}

/* Opening hours */
.opening-hours {
  margin-top: 1.5rem;
}
.opening-hours h4 {
  margin: 0 0 1rem 0;
}
.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.95rem;
  max-width: 500px;
}
.hours-list div {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid white;
  padding-bottom: 0.3rem;
}

/* ✅ Responsive: stack vertically on small screens */
@media (max-width: 767px) {
  .clinic-branch-section {
    flex-direction: column;
    padding: 1rem;
  }

  .clinic-location-image,
  .clinic-location-info {
    width: 100%;
  }

  .clinic-location-info {
    padding-top: 1rem;
  }
}
