header {
  width: 100%;
  display: flex;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* LEFT LOGO SECTION */

.logo-area {
  width: 10%;
  display: flex;
  align-items: center;
  padding: 5px 5px;
}

/* .logo-area img {
  width: 70px;
  margin-right: 15px;
} */

.logo-area h2 {
  color: #0088cc;
}

/* RIGHT SECTION */

.right-area {
  width: 90%;
}

/* TOP HEADER */

.top-header {
  height: 45px;
  background: linear-gradient(90deg, #445de8, #17388e);
  color: white;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 25px;
  padding: 0 40px;
  font-size: 14px;
  font-family: Nunito Sans;
}

.social i {
  margin-left: 10px;
}

/* MENU HEADER */

.menu-header {
  height: 75px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 35px;
  padding: 0 40px;
}

.menu-header ul {
  display: flex;
  gap: 25px;
  list-style: none;
}

.menu-header ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-family: Nunito Sans;
}

.menu-header ul li a:hover {
  color: #0088cc;
}

.btn {
  background: #3e58dd;
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-family: Nunito Sans;
}

.btn:hover {
  background-color: #1a99f2;
  color: #fff;
}

/* MOBILE MENU BUTTON */

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 28px;
  color: #17388e;
  cursor: pointer;
}

/* MOBILE RESPONSIVE */

@media (max-width: 991px) {
  header {
    display: flex;
    flex-direction: column;
  }

  /* LOGO */

  .logo-area {
    width: 100%;
    justify-content: center;
    padding: 15px;
  }

  .logo-area img {
    width: 120px;
  }

  .right-area {
    width: 100%;
  }

  /* TOP BAR */

  .top-header {
    padding: 12px 15px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  /* MENU AREA */

  .menu-header {
    height: 70px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;

    position: relative;
  }

  /* SHOW ICON */

  .menu-toggle {
    display: block;
  }

  /* NAV MENU */

  .menu-header ul {
    display: none;

    position: absolute;

    top: 70px;

    left: 0;

    width: 73%;

    background: #e5ecff;

    flex-direction: column;

    /* align-items: center; */

    padding: 20px 0 20px 20px;

    margin: 0;

    z-index: 9999;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  }

  .menu-header ul.active {
    display: flex;
  }

  .menu-header ul li {
    margin: 10px 0;
  }

  .menu-header ul li a {
    font-size: 16px;
  }

  /* BUTTON RIGHT */

  .btn {
    padding: 10px 18px;

    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .logo-area img {
    width: 100px;
  }

  .btn {
    padding: 8px 12px;

    font-size: 12px;
  }
}

/* WhatsApp Floating Button */

.whatsapp-float {
  position: fixed;

  bottom: 25px;

  right: 25px;

  background: #25d366;

  color: #fff;

  display: flex;

  align-items: center;

  gap: 10px;

  padding: 12px 22px;

  border-radius: 50px;

  font-family: Nunito Sans;

  font-size: 15px;

  font-weight: 600;

  text-decoration: none;

  z-index: 9999;

  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);

  transition: 0.3s;
}

.whatsapp-float i {
  font-size: 25px;
}

.whatsapp-float:hover {
  background: #128c7e;

  color: #fff;

  transform: translateY(-5px);
}

/* Mobile */

@media (max-width: 576px) {
  .whatsapp-float {
    bottom: 20px;

    right: 15px;

    padding: 12px 15px;
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float i {
    font-size: 28px;
  }
}

.physio-section {
  padding: 80px 20px;
  background: #f5f9ff;
  font-family: Nunito Sans;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.section-title {
  /* text-align: center; */
  margin-bottom: 50px;
}

.section-title span {
  color: #0a67d8;
  font-weight: 700;
  letter-spacing: 1px;
}

.section-title h2 {
  font-size: 40px;
  margin: 15px 0;
  color: #1b1b1b;
}

.section-title p {
  max-width: 800px;
  margin: auto;
  color: #666;
  line-height: 1.8;
}

.section-title-1 {
  text-align: center;
  margin-bottom: 50px;
}

.section-title-1 span {
  color: #0a67d8;
  font-weight: 700;
  letter-spacing: 1px;
}

.section-title-1 h2 {
  font-size: 40px;
  margin: 15px 0;
  color: #1b1b1b;
}

.section-title-1 p {
  max-width: 800px;
  margin: auto;
  color: #666;
  line-height: 1.8;
}

.physio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-card h3 {
  padding: 20px 20px 10px;
  color: #0056b3;
  font-size: 22px;
}

.service-card p {
  padding: 0 20px 25px;
  line-height: 1.7;
  color: #666;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 70px;
}

.benefit {
  background: white;
  padding: 25px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  font-size: 35px;
}

.benefit h4 {
  margin-top: 10px;
  font-size: 18px;
  color: #0b4db5;
}

.cta-box {
  margin-top: 80px;
  background: #0056b3;
  padding: 60px;
  border-radius: 20px;
  text-align: center;
  color: white;
}

.cta-box h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.cta-box p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  padding: 15px 40px;
  background: #e2e2e2;
  color: #000000;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: 0.3s;
}

.btn:hover {
  background: #0d6efd;
  color: #fff;
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 30px;
  }

  .benefits {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-box {
    padding: 40px 20px;
  }

  .cta-box h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .benefits {
    grid-template-columns: 1fr;
  }
}
