    body {
      background-color: #f0f2f5;
      padding: 0px;
    }

    h2 {
      text-align: center;
      margin-bottom: 20px;
      color: #00455C;
    }

    .slider-container {
      position: relative;
    }

    .test-slider {
      display: flex;
      overflow-x: auto;
      scroll-behavior: smooth;
      scrollbar-width: none;
      padding: 10px 0;
    }

    .test-slider::-webkit-scrollbar {
      display: none;
    }

    .test-card {
      flex: 0 0 auto;
      width: 250px;
      background: #fff;
      border-radius: 0px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      margin: 0 10px;
      text-align: center;
      transition: transform 0.3s;
    }

    .test-card:hover {
      transform: translateY(-5px);
    }

    .test-card img {
      width: 100%;
      height: 150px;
      object-fit: cover;
      border-radius: 10px 10px 0 0;
    }

    .test-name {
      font-weight: bold;
      margin-top: 10px;
      color: #007bff;
    }

    .test-price {
      color: #00455C;
      margin-bottom: 10px;
    }

    .test-del-price {
      color: gray;
      margin-bottom: 10px;
    }

    .btn-book, .btn-cart {
      margin: 5px;
    }

    /* Arrows */
    .arrow-btn {
      position: absolute;
      top: 45%;
      /*background: rgba(0, 123, 255, 0.8);*/
      background: #00455C;
      color: #fff;
      border: none;
      padding: 10px 14px;
      border-radius: 50%;
      cursor: pointer;
      z-index: 2;
    }

    .arrow-left {
      left: -20px;
    }

    .arrow-right {
      right: -20px;
    }

    @media (max-width: 768px) {
      .test-card {
        width: 200px;
      }

      .arrow-btn {
        padding: 8px 10px;
      }
    }
  /* Common Style */
.float-icon {
  width: 50px;
  height: 50px;
  color: white;
  border-radius: 50%;
  font-size: 22px;
  text-align: center;
  line-height: 50px;
  text-decoration: none;
  position: fixed;
  z-index: 9999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s, background-color 0.3s;
}

/* WhatsApp - Bottom Left */
.float-icon.whatsapp {
  background-color: #25D366;
  bottom: 20px; 
  right: 20px;
}

.float-icon.whatsapp:hover {
  background-color: #128c7e;
  transform: scale(1.1);
}

/* Call - Bottom Right */
.float-icon.call {
  background-color: #007bff;
  bottom: 20px;
  left: 20px;
}

.float-icon.call:hover {
  background-color: #0056b3;
  transform: scale(1.1);
}


 /* --- BMI Tab Container --- */
.bmi-tab {
  position: fixed;
  top: 40%;
  right: 0;
  display: flex;
  align-items: center;
  width: auto;
  height: auto;
  z-index: 99999; /* footer वर ठेवण्यासाठी */
}

/* --- BMI Horizontal Label --- */
.bmi-label {
  background-color: #F89C2E;
  color: white;
  padding: 6px 16px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 8px 0 0 8px;
  box-shadow: -2px 2px 10px rgba(0,0,0,0.3);
  position: fixed;
  top: 35%;
  right: 0;
  z-index: 100000; /* label नेहमी वर */
}

/* --- BMI Calculator Box --- */
.bmi-box {
  width: 260px;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px 0 0 10px;
  box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.2);
  position: fixed;   /* relative → fixed */
  top: 35%;
  right: 0;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  z-index: 99999; /* footer वर राहील */
}

/* --- Slide Active --- */
.bmi-box.active {
  transform: translateX(0);
}

    .bmi-box h3 {
      margin-top: 0;
      text-align: center;
      font-size: 20px;
      color: #333;
      border-bottom: 1px solid #ddd;
      padding-bottom: 10px;
    }

    .bmi-box label {
      margin-top: 10px;
      display: block;
      color: #555;
      font-size: 14px;
    }

    .bmi-box input {
      width: 100%;
      padding: 8px;
      border-radius: 5px;
      border: 1px solid #ccc;
      margin-top: 5px;
    }

    .bmi-box button {
      width: 100%;
      margin-top: 15px;
      padding: 10px;
      background-color: #007bff;
      color: white;
      border: none;
      border-radius: 6px;
      font-weight: bold;
      cursor: pointer;
    }

    .bmi-box button:hover {
      background-color: #0056b3;
    }

    #result {
      margin-top: 15px;
      text-align: center;
      font-weight: bold;
      color: #444;
    }
     .package-card {
      border: 1px solid #ddd;
      border-radius: 10px;
      padding: 20px;
      margin-bottom: 30px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
      transition: 0.3s;
      display: flex;
      flex-direction: column;
      height: 100%;
      background-color: #fff;
    }

    .package-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .package-title {
      font-size: 1.4rem;
      font-weight: 600;
      color: #007bff;
      margin-bottom: 10px;
    }

    .package-price {
      font-size: 1.2rem;
      font-weight: bold;
      color: #28a745;
      margin-bottom: 15px;
    }

    .package-tests {
      list-style-type: none;
      padding-left: 0;
      flex-grow: 1;
    }

    .package-tests li {
      margin-bottom: 8px;
    }

    .package-tests li::before {
      content: "✔";
      margin-right: 10px;
      color: #28a745;
    }

  /*  .action-buttons {
      margin-top: auto;
    }

    .action-buttons .btn {
      width: 48%;
    }*/

    /*@media (max-width: 575.98px) {
      .action-buttons .btn {
        width: 100%;
        margin-bottom: 10px;
      }
    } */

        .login-card {
      max-width: 400px;
      margin: 60px auto;
      background: #fff;
      border-radius: 8px;
      padding: 30px 25px;
      box-shadow: 0 0 25px rgba(0,0,0,0.1);
    }
    .login-card h4 {
      font-weight: bold;
      margin-bottom: 25px;
    }
   
    #otpSection {
      display: none;
    }

      .otp-card {
      max-width: 400px;
      margin: 80px auto;
      padding: 30px;
      background: white;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      text-align: center;
    }

    .otp-input {
      width: 40px;
      height: 40px;
      font-size: 24px;
      text-align: center;
      margin: 0 5px;
      border: 1px solid #ccc;
      border-radius: 5px;
    }

    .otp-input:focus {
      border-color: #007bff;
      box-shadow: 0 0 5px rgba(0,123,255,0.5);
      outline: none;
    }


        .package-card {
        border-radius: 12px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        overflow: hidden;
        background: #fff;
    }
    .package-header {
        background: #ffe600;
        padding: 10px;
        font-weight: bold;
        text-align: center;
    }
    .package-list {
        padding: 5px;
        font-size: 0.9rem;
    }
    .package-list strong {
        display: block;
        margin-top: 10px;
        color: #444;
    }
    .price-box {
/*        background: #f8f9fa;*/
/*        padding: 10px;*/
        text-align: center;
        border-top: 3px solid #00455C;
    }
    .price-box del { color: #888; }
    .price-box .offer { font-size: 1.2rem; color: #d9534f; font-weight: bold; }

    .view-all-link {
    color: #00455C;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.view-all-link .arrow {
    display: inline-block;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.view-all-link:hover {
    color: #0056b3;
}

.view-all-link:hover .arrow {
    transform: translateX(5px);
}