/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3rem;

  /*========== Colors ==========*/
  --hue: 174;
  --sat: 63%;
  --first-color: hsl(var(--hue), var(--sat), 40%);
  --first-color-alt: hsl(var(--hue), var(--sat), 36%);
  --title-color: hsl(var(--hue), 12%, 15%);
  --text-color: hsl(var(--hue), 8%, 35%);
  --body-color: hsl(var(--hue), 100%, 99%);
  --container-color: #FFF;
  --card-clr: #ffffff;
	--body-clr: #191d28;
	--primary-clr: #ffc011;
	--heading-clr: #090656;
	--text-clr: #000000;

  /*========== Font and typography ==========*/
  --body-font: 'Open Sans', sans-serif;
  --h1-font-size: 1.5rem;
  --normal-font-size: .938rem;
  --tiny-font-size: .625rem;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

@media screen and (min-width: 968px) {
  :root {
    --h1-font-size: 2.25rem;
    --normal-font-size: 1rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: var(--header-height) 0 0 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/*=============== LAYOUT ===============*/
.container {
  max-width: 968px;
  margin-left: 1rem;
  margin-right: 1rem;
}

/*=============== HEADER ===============*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--container-color);
  z-index: var(--z-fixed);
  transition: .4s;
}

/*=============== NAV ===============*/
.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__img {
  width: 32px;
  border-radius: 50%;
}



.nav__list, 
.nav__link {
  display: flex;
}

.nav__link {
  flex-direction: column;
  align-items: center;
  row-gap: 4px;
  color: var(--title-color);
  font-weight: 600;
}

.nav__list {
  justify-content: space-around;
}


.nav__icon {
  font-size: 1.5rem;
}

/*Active link*/
.active-link {
  position: relative;
  color: #e51691;
  transition: .3s;
}

.scroll-header {
  box-shadow: 0 1px 12px hsla(var(--hue), var(--sat), 15%, 0.15);
}



.contact-top{
    margin-top: 80px;
  }
  
  .background-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  
  .background-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  .contact-header {
    
    display: flex;
    height: 250px;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
  }
  
  .contact-header h1 {
    font-size: 36px;
    margin: 0;
  }
  



  /**/

  .acupuncture-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.acu-left-container {
    max-width: 1300px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.acu-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.acu-col-left {
    flex: 1;
    max-width: 700px;
    padding: 20px;
}

.acu-col-left h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.acu-col-left p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.acu-col-right {
    flex: 1;
    max-width: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.acu-col-right img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for a polished look */
}

@media (max-width: 768px) {
    .acu-row {
        flex-direction: column;
        gap: 20px;
        padding: 0;
    }
    .acupuncture-section{
        padding: 20px;
    }
    .acu-col-left, 
    .acu-col-right {
        max-width: 100%;
        padding: 0;
    }

    .acu-col-left h1 {
        font-size: 2rem;
    }

    .acu-col-left p {
        text-align: justify;
    }
}
  




/*why-choose-us*/
.acc-why-choose-section {
    padding: 40px 20px;
    border-radius: 8px;
    margin: 30px auto;
    max-width: 1300px;
  }
  
  .acc-why-choose-section h2 {
    color: black;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .acc-why-choose-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
  }
  
  .acc-why-choose-section ul {
    padding-left: 20px;
    margin-bottom: 20px;
  }
  
  .acc-why-choose-section ul li {
    font-size: 1rem;
    margin-bottom: 10px;
    position: relative;
  }
  
  .acc-why-choose-section ul li::before {
    content: "✔";
    color: #2d8ae0;
    font-size: 18px;
    margin-right: 10px;
    position: absolute;
    left: -20px;
    top: 2px;
  }
  
  .acc-why-choose-section ul li:last-child {
    margin-bottom: 0;
  }
  


/* Section Styling */
.acc-services-section {
    padding: 60px 0;
}

.acc-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.acc-text {
    flex: 1;
    margin-right: 40px;
}

.acc-text h2 {
    font-size: 32px;
    font-weight: bold;
    color: #2a2a2a;
    margin-bottom: 20px;
}

.acc-text p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.acc-text ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.acc-text ul li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.acc-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.acc-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .acc-content {
        flex-direction: column;
        text-align: center;
    }

    .acc-text {
        margin-right: 0;
        margin-bottom: 40px;
    }

    .acc-image img {
        max-width: 100%;
        margin-top: 20px;
    }
}




.logo-img{
    max-width: 250px;
  }
  
  @media screen and (max-width: 468px) {
    .logo-img {
      max-width: 180px;
      margin: 0 auto; /* Center horizontally */
    }
  }
  
  
  
  /* Footer styling */
  .main-footer {
    background-color: #2c2c2c; /* Dark background for contrast */
    color: #f5f5f5; /* Light text for readability */
    padding: 40px 20px; /* Padding around the footer content */
  }
  
  .main-footer .footer-container {
    max-width: 1250px; /* Limit the container's width */
    margin: auto; /* Center the container */
  }
  .footer-content {
    background-size: cover; /* Ensure it covers the entire div */
    background-repeat: no-repeat; /* No repeating */
    background-position: center; /* Center the image */
    padding: 10px 20px; /* Padding around the content */
  }
  
  /* Footer row with flex layout */
  .footer-content .row {
    display: flex; /* Use flexbox for alignment */
    justify-content: space-between; /* Distribute columns evenly */
    flex-wrap: wrap; /* Allow columns to wrap on smaller screens */
    gap: 20px; /* Space between columns */
  }
  
  /* Footer column styling */
  .footer-column {
    padding: 20px; /* Padding for each column */
    flex: 1; /* Allow each column to grow equally */
  }
  
  /* Styling for the logo widget */
  .logo-widget .logo-box {
    margin-bottom: 20px; /* Space below the logo */
  }
  
  .logo-widget .text {
    font-size: 1em; /* Standard font size */
    line-height: 1.5; /* Improve readability */
  }
  
  /* Social media icons */
  .footer-social {
    display: flex; /* Horizontal layout for icons */
    gap: 10px; /* Space between icons */
  }
  
  .footer-social a {
    color: #f5f5f5; /* Default color */
    font-size: 1.5em; /* Larger font size for visibility */
    transition: color 0.3s; /* Smooth hover effect */
  }
  
  .footer-social a:hover {
    color: #ff9d2d; /* Hover effect */
  }
  
  /* Service widget styling */
  .service-widget .footer-title {
    font-size: 1.2em; /* Title font size */
    margin-bottom: 15px; /* Space below the title */
  }
  
  .service-widget .list {
    list-style: none; /* No bullet points */
    padding: 0; /* No padding */
  }
  
  .service-widget .list li {
    margin-bottom: 10px; /* Space between list items */
  }
  
  .service-widget .list a {
    text-decoration: none; /* No underline */
    color: #f5f5f5; /* Default link color */
    transition: color 0.3s; /* Smooth hover effect */
  }
  
  .service-widget .list a:hover {
    color: #ff9d2d; /* Hover effect */
  }
  
  /* Contact widget styling */
  .contact-widget .footer-title {
    font-size: 1.2em; /* Title font size */
    margin-bottom: 15px; /* Space below the title */
  }
  
  .contact-widget .text {
    font-size: 1em; /* Standard font size */
    line-height: 1.5; /* Improve readability */
  }
  .footer-bottom {
    background-color: #1c1c1c; /* Slightly darker than the main footer */
    padding: 20px; /* Padding for the bottom section */
  }
  
  .footer-bottom .footer-container {
    max-width: 1250px; /* Center the container */
    margin: auto; /* Center horizontally */
  }
  
  .footer-bottom .row {
    display: flex; /* Use Flexbox for alignment */
    justify-content: center; /* Center the content horizontally */
    align-items: center; /* Center the content vertically */
  }
  
  /* Centered copyright text */
  .copyright {
    font-size: 1em; /* Standard font size */
    text-align: center; /* Center the text */
    color: #f5f5f5; /* Light text for visibility */
  }
  
  .copyright a {
    text-decoration: none; /* No underline */
    color: #f5f5f5; /* Default link color */
    transition: color 0.3s; /* Smooth hover effect */
  }
  
  .copyright a:hover {
    color: #ff9d2d; /* Hover color for links */
  }
  
  /* Media Queries for Footer */
  @media (max-width: 991px) {
    /* Stack columns vertically on medium and smaller screens */
    .footer-content .row {
      flex-direction: column; /* Stack columns vertically */
    }
    
    .footer-column {
      padding: 10px; /* Reduce padding for smaller screens */
      flex: 1 0 100%; /* Allow columns to take full width */
    }
  }
  
  @media (max-width: 767px) {
    .footer-column {
      padding: 10px; /* Ensure consistent padding */
    }
    
    .footer-content .row {
      flex-direction: column; /* Ensure vertical stacking */
    }
    
    .footer-widget {
      margin-bottom: 20px; /* Space between widgets */
    }
    body{
      margin-bottom:4rem ;
    }
  }
  
  
  
  .back-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: hsl(351, 83%, 61%); /* Change to your desired color */
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 1000;
  }
  
  /* Show the button when needed */
  .back-top-btn.show {
    opacity: 1;
    visibility: visible;
  }
  
  /* Hover effect */
  .back-top-btn:hover {
    background-color: hsl(351, 77%, 54%);
    box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.5); /* Change to your desired hover color */
  }
  
  /* Style for the icon */
  .back-top-btn ion-icon {
    font-size: 24px;
  }
  
  
  /* WhatsApp Chat Icon Styles */
  .whatsapp-chat {
    position: fixed;
    bottom: 2px;
    left: 20px;
    z-index: 1000; /* Ensure it's above other elements */
  }
  
  .whatsapp-chat img {
    width: 80px;
    height: auto;
    cursor: pointer;
  }
  
  .whatsapp-chat img:hover {
    opacity: 0.8;
  }
  
  @media screen and (max-width:768px)
  {
    .back-top-btn{
      bottom: 80px;
    }
    .whatsapp-chat{
      bottom:60px;
    }
  }
  /*=============== MEDIA QUERIES ===============*/
  /* For small devices */
  /* Remove if you choose, the minimalist design */
  @media screen and (max-width: 320px) {
    .nav__name {
      display: none;
    }
  }
  
  /* For medium devices */
  @media screen and (min-width: 576px) {
    .nav__list {
      justify-content: center;
      column-gap: 3rem;
    }
  }
  
  @media screen and (max-width: 767px) {
    .nav__menu {
      position: fixed;
      bottom: 0;
      left: 0;
      background-color: var(--container-color);
      box-shadow: 0 -1px 12px hsla(var(--hue), var(--sat), 15%, 0.15);
      width: 100%;
      height: 4rem;
      padding: 0 1rem;
      display: grid;
      align-content: center;
      border-radius: 1.25rem 1.25rem 0 0;
      transition: .4s;
    }
  }
  @media screen and (min-width: 767px) {
    body {
      margin: 0;
    }
    .section {
      padding: 7rem 0 2rem;
    }
    .nav {
      height: calc(var(--header-height) + 1.5rem); /* 4.5rem */
    }
    .nav__img {
      display: none;
    }
    .nav__icon {
      display: none;
    }
    .nav__name {
      font-size: var(--normal-font-size);
      /* display: block; */ /* Minimalist design, visible labels */
    }
    .nav__link:hover {
      color: #e51691;
    }
  
  
  
  }
  
  /* For large devices */
  @media screen and (min-width: 1024px) {
    .container {
      margin-left: auto;
      margin-right: auto;
    }
  }
  