* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: poppins, sans-serif;
  background-color:#f8f9fa ;
}
/*MAIN HEADING*/

:root {
  --primary-color: #2a9d8f;
  --accent-color: #ffb703;
  --dark-text: #212529;
  --light-text: #f8f9fa;
  --mild-dark-text: #264653;
}

header {
  background: #134942;
  max-width: 100%;
  z-index: 1000;
}
header ul li a {
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  color: #f9f9f9;
}
.contact-banner {
  display: flex;
  justify-content: space-around;
  padding: 30px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #f9f9f9;
  list-style-type: none;
}

/*NEW NAVBAR GOES HERE*/
.nav-bar {
  position: sticky;
  top: -1px;
  z-index: 1000;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f8f9fa;
  color: var(--light-text-color);
  padding: 15px 20px;
  position: relative;
}

.logo {
  font-size: 1.5rem;
  line-height: 1.1;
  font-weight: bold;
}
.logo a {
  text-decoration: none;
  color: #212529;
  cursor: pointer;
}
.brand {
  color: #ffb703;
  /* background-color: #c1121f; */
  border-radius: 6px;
}
.city {
  font-size: 1.3rem;
  letter-spacing: 0.3rem;
}
.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav-links li {
  position: relative;
}

.nav-links li a {
  color: #212529;
  font-weight: 600;
  text-decoration: none;
  padding: 10px;
  display: block;
}

.nav-links li a.active,
.nav-links li a[href*="#"]:not([href="#"]):visited {
  border-bottom: 2px solid #9e2a2b;
}

.nav-links li a.active,
.nav-links ul li a.active,
.nav-links li.has-submenu > a.active,
.nav-links li a:hover,
.nav-links ul li a:hover {
  border-bottom: 1px solid #9e2a2b;
}

.nav-links li:hover > ul {
  display: block;
  transition: all 0.8s ease-in;
}

.nav-links ul {
  display: none;
  position: absolute;
  background-color: #f8f9fa;
  top: 100%;
  left: 0;
  list-style: none;
  min-width: 180px;
  z-index: 999;
  transition: all 0.8s ease-in;
}

.nav-links ul li a {
  padding: 10px;
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  background: #212529;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
/*******************************CONTACT FLOATING BUTTON**********************************/
.contact-wrapper {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 999;
}
.fa-whatsapp {
  color: #25d366;
  font-size: 2rem;
}
.fa-calendar-check {
  font-size: 1.8rem;
}

.contact-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  /* background-color: #2a9d8f; */
  background-color: #df7373;
  color: white;
  border: none;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.contact-btn:hover {
  /* background-color: #21867c; */
  background-color: #da5552;
}

.phone-btn,
.whatsapp-btn,
.appointment-btn {
  text-decoration: none;
  opacity: 0;
  transform: scale(0);
  pointer-events: none;
}

.contact-wrapper.active .phone-btn,
.contact-wrapper.active .whatsapp-btn,
.contact-wrapper.active .appointment-btn {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

/*HERO SECTION */
.hero {
  background-image: url("/assets/main-hero-pic_compressed.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 5%;
  color: var(--light-text);
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.hero-content {
  position: relative;
  max-width: 600px;
  z-index: 1;
}

.hero h1 {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #eaeaea;
}

.hero-btn {
  display: inline-block;
  padding: 17px 55px;
  background-color: #10244d;
  color: var(--light-text);
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  transition: background 0.3s ease;
}

.hero-btn:hover {
  background-color: #00a97a;
}

/*BENEFITS SECTION*/
.benefits-section {
  background-color: #134942;
  padding: 3rem 1.5rem;
  display: flex;
  justify-content: center;
  max-width: 85%;
  margin: 60px auto;
  border-radius: 10px;
  height: auto;
}

.benefits-container {
  max-width: 1200px;
  width: 100%;
  text-align: center;
  color: var(--light-text);
}

.benefits-header .subtitle {
  color: var(--text-color-secondary);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.benefits-header .title {
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--light-text);
  margin-bottom: 1rem;
}

.benefits-header .desc {
  font-size: 1.1rem;
  color: var(--light-text);
  margin-bottom: 2rem;
}

.benefits-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1rem;
}

.benefit-item {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  background: transparent;
  text-align: center;
}

.benefit-item img {
  width: 65px;
  margin-bottom: 1rem;
}

.benefit-item h3 {
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: var(--text-color-secondary);
  margin-bottom: 0.5rem;
}

.benefit-item p {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-color-secondary);
  text-align: left;
  padding-left: 25px;
}

/*ABOUT US SECTION*/
.about-section {
  background: #f9f5ff;
  padding: 4rem 1rem;
  display: flex;
  justify-content: space-around;
  max-width: 100%;
  margin: auto;
}

.about-container {
  max-width: 1300px;
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.about-image {
  max-width: 500px;
  margin: auto;
  overflow: hidden;
}

.about-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-content {
  flex: 1;
  min-width: 300px;
}

.about-subtitle {
  color: var(--dark-text);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.about-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 1rem;
  line-height: 1.4;
}
.about-title span {
  color: #ffc60a;
  font-style: italic;
}

.about-description {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--dark-text);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.about-services {
  display: flex;
  gap: 2.3rem;
  margin-bottom: 2rem;
}
.about-services span {
  display: inline-block;
  width: 20px; /* Adjust as needed */
  height: 20px; /* Adjust as needed */
  border-radius: 50%;
  background-color: #134942; /* Or any color you prefer */
  color: white;
  text-align: center;
  font-weight: 500;
  line-height: 20px; /* Vertically center the tick */
}

.about-services ul {
  list-style: none;
  padding: 0;
}

.about-services li {
  font-size: 1.1rem;
  font-weight: 500;
  color: #7f7f7f;
  margin-bottom: 0.5rem;
}

.about-button {
  display: inline-block;
  padding: 0.8rem 2.4rem;
  background-color: #10244d;
  color: var(--light-text);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.about-button:hover {
  background-color: #6d9773;
}

/*CLINIC SECTION*/
.clinic-section {
  display: flex;
  max-width: 1200px;
  width: 100%;
  margin: 4rem auto;
  /* border-radius: 20px; */
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.clinic-text {
  background: linear-gradient(to right, #6e5d3b, #2a9d8f);

  color: var(--light-text);
  padding: 40px;
  border-top-right-radius: 20px;
  flex: 1;
}

.subheading {
  color: var(--light-text);
  font-weight: 600;
  margin-bottom: 10px;
}

h2 {
  font-size: 2.3rem;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.4;
}

.description {
  color: #f1f1f1;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 30px;
  line-height: 1.5;
}

.clinic-stats {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--light-text);
  padding-bottom: 5px;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}
.clinic-image {
  max-width: 500px;
}

.clinic-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex: 1;
  /* margin-left: 1px; */
  border-bottom-left-radius: 20px;
}

/*SERVICES*/
.services {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  margin-bottom: 50px;
}

.services-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  gap: 20px;
}

.section-tag-services {
  font-weight: 600;
  color: var(--dark-text);
  position: relative;
  margin-bottom: 5px;
}

.main-heading {
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}
.main-heading span {
  color: #a020f0;
}
.services-center {
  flex: 1;
  max-width: 450px;
}

.services-description {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark-text);
}

.services-button {
  background-color: #10244d;
  color: var(--light-text);
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.services-button:hover {
  background-color: var(--primary-color);
}

.services-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.service-card {
  background: var(--optional);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  flex: 1;
  min-width: 280px;
  max-width: 32%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.icon-box img {
  width: 43px;
  height: 43px;
  background-color: #d1d4c9;
  padding: 8px;
  border-radius: 4px;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

.service-card p {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark-text);
  margin: 0;
}

.read-more {
  font-weight: 600;
  color: var(--accent-color);
  text-decoration: none;
  margin-top: auto;
  transition: transform 0.3s ease;
}

.read-more:hover {
  transform: translateX(5px);
}

/*APPOINTMENT SECTION*/
.appointment-section {
  background: #cbf3f0;
  padding: 60px 20px;
}

.appointment-container {
  max-width: 970px;
  margin: 0 auto;
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.form-box {
  flex: 1;
  background: var(--optional);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 300px;
}

.form-box form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-box input,
.form-box textarea {
  padding: 12px;
  font-size: 1rem;
  color: var(--dark-text);
  border-radius: 5px;
  border: 1px solid #ccc;
  resize: none;
}
label {
  color: green;
  font-weight: 500;
}

.form-box button {
  background-color: #333533;
  color: var(--light-text);
  font-weight: 600;
  border: none;
  padding: 10px 25px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form-box button:hover {
  background-color: #6d9773;
}

.info-box {
  flex: 1;
  color: var(--dark-text);
  min-width: 300px;
}

.section-tag-appointment {
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 5px;
  position: relative;
}

.info-box h2 {
  font-size: 2.3rem;
  font-weight: 700;
  margin: 10px 0;
}

.phone {
  font-weight: 700;
  color: var(--dark-text);
}

.info-text {
  max-width: 400px;
  margin: 15px 0 30px;
  line-height: 1.5;
}

.timings {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.timing-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--dark-text);
  padding-bottom: 5px;
  font-weight: 500;
}
/*INCREASED THE ICON SIZE OF CALENDER AND TIME INPUT*/
#appointment-date::-webkit-calendar-picker-indicator{
font-size: 1.4rem;
}
#timeInput::-webkit-calendar-picker-indicator{
  font-size: 1.4rem;
}

/*TESTIMONIAL SECTION*/
.testimonial-section {
  padding: 60px 20px;
}

.testimonial-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.testimonial-image img {
  max-width: 400px;
  width: 100%;
  border-radius: 12px;
}

.testimonial-content {
  flex: 1;
  min-width: 300px;
}

.section-tag-testimonial {
  font-weight: 600;
  margin-bottom: 5px;
  position: relative;
  color: var(--dark-text);
}

.testimonial-content h2 {
  font-size: 2.3rem;
  font-weight: 700;
  margin: 10px 0;
}

.stars {
  color: #ffd700;
  font-size: 1.5rem;
  margin: 10px 0;
}

.testimonial-text {
  max-width: 500px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: var(--dark-text);
}

.user-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.user-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.user-details {
  flex-grow: 1;
}

.user-name {
  font-weight: 600;
  color: #00a8a8;
  margin: 0;
}

.user-role {
  font-size: 0.85rem;
  color: #888;
  margin: 0;
}

.comment-icon {
  font-size: 3rem;
  color: var(--accent-color);
}
/*HOW IT WORKS SECTION*/

.how-it-works {
  text-align: center;
  padding: 60px 20px;
  background: #134942;
}

.subheading {
  color: var(--light-text);
  font-size: 1rem;
  margin-bottom: 10px;
}

.heading {
  font-size: 2.3rem;
  font-weight: bold;
  color: var(--light-text);
  margin-bottom: 15px;
}

.description {
  max-width: 900px;
  margin: 0 auto 55px;
  color: var(--light-text);
  font-size: 1.1rem;
  text-align: justify;
}

.steps-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.step-box {
  background-color: #fff;
  color: #000;
  border-radius: 10px;
  padding: 30px 20px;
  width: 300px;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 20px;
  background-color: var(--dark-text);
  color: #fff;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 18px;
}

.step-icon {
  font-size: 36px;
  color: #00c08b;
  margin: 20px 0 10px;
}

.step-title {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0;
}

.step-text {
  font-size: 14px;
  color: var(--dark-text);
  line-height: 1.6;
  text-align: left;
  padding-left: 22px;
}

/* BLOG SECTION */
.blog-container .section-description {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--dark-text);
  text-align: left;
}
.blog-section {
  padding: 60px 20px;
  text-align: center;
}

.blog-container {
  max-width: 1200px;
  margin: auto;
}

.section-tag-blog {
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark-text);
  position: relative;
  display: inline-block;
}

.section-title {
  font-size: 2.3rem;
  font-weight: 700;
  margin: 10px 0;
}
.section-title span {
  color: #a52a2a;
}

.section-description {
  font-size: 1.1rem;
  color: var(--dark-text);
  max-width: 600px;
  margin: 0 auto 40px;
  text-align: center;
}

.blog-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.blog-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  width: 300px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
  text-align: left;
}

.blog-content h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.blog-content p {
  font-size: 0.8rem;
  color: var(--dark-text);
  margin-bottom: 15px;
}

.read-more-btn {
  display: inline-block;
  padding: 8px 16px;
  background-color: var(--primary-color);
  color: var(--light-text);
  border-radius: 5px;
  font-size: 0.8rem;
  text-decoration: none;
  font-weight: 600;
}

.read-more-btn:hover {
  background-color: #6d9773;
}

/*SUBSCRIBE NEWSLETTER*/
.newsletter-section {
  background: #f9f5ff;
  padding: 50px 20px;
}

.newsletter-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.newsletter-text {
  color: var(--text-color-secondary);
  max-width: 500px;
  line-height: 1.2;
}
.newsletter-text span {
  font-size: 2rem;
  color: #f4a261;
}

.newsletter-text h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.newsletter-text p {
  font-size: 1rem;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 280px;
}

.newsletter-form input {
  padding: 10px 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 0.9rem;
}

.newsletter-form button {
  background-color: #3c3c3c;
  color: white;
  border: none;
  padding: 10px 15px;
  font-size: 0.9rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #686060;
}

/*FOOTER SECTION*/
.footer {
  background-color: #333533;
  color: var(--light-text);
  padding: 40px 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-box {
  flex: 1;
  min-width: 250px;
  margin: 20px;
}
/*   Social media    */
.footer-box h4 {
  padding-left: 30px;
  margin-top: 15px;
}
.social-media .fa-brands {
  font-size: 1.2rem;
}
.social-media {
  max-width: 80px;
  display: flex;
  justify-content: space-between;
  margin: 7px 30px 0;
}
.footer-box h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-box p,
.footer-box ul,
.footer-box li,
.footer-box a {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--light-text);
  text-decoration: none;
}
.footer-box p {
  padding-left: 30px;
}

.footer-box ul {
  list-style: none;
  padding-left: 32px;
}

.footer-box ul li {
  margin-bottom: 8px;
}

.footer-box a:hover {
  color: #fff;
  text-decoration: underline;
}

.copyright {
  margin-top: 20px;
  text-align: center;
  color: var(--text-color-secondary);
  font-size: 0.9rem;
}
.copyright a {
  color: var(--text-color-secondary);
  font-size: 0.9rem;
}
