/* Common styles */
:root {
    --primary-color: #FC6C87;
    --primary-hover: #FE8BAB;
    --text-gray: #666;
    --card-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    overflow-x: hidden;
}

/* Health section styles */
.health-title {
    color: #1da8ac;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.health-subtitle {
    color: var(--text-gray);
    font-size: 16px;
}

/* Carousel styles */
.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.carousel-track {
    display: flex;
    gap: 20px;
    padding: 10px 20px;
    transition: transform 0.5s ease-in-out;
    width: max-content;
}

/* Carousel Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background-color: #1da8ac;
    color: white;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
    background-color: #1da8ac;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

/* Health card styles */
.health-card {
    flex: 0 0 280px;
    border-radius: 10px;
    border: 1px solid #eee;
    overflow: hidden;
    transition: transform 0.5s ease, box-shadow 0.3s ease;
    background: white;
}

.health-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow);
}

.health-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.health-card-body {
    padding: 20px;
}

.health-card-body h5 {
    color: #333;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.price {
    color: #1da8ac;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.consult-button {
    color: #1da8ac;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

/* .consult-button:hover {
    color:#1da8ac;
    text-decoration: none;
} */

/* See All Symptoms button */
.see-all-btn {
    padding: 10px 20px;
    background-color: white;
    border: 2px solid#1da8ac;
    border-radius: 25px;
    color: #1da8ac;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.see-all-btn:hover {
    background-color: #1da8ac;
    color: white;
}

/* Responsive styles */
@media (max-width: 1400px) {
    .health-card {
        flex: 0 0 260px;
    }
}

@media (max-width: 1200px) {
    .health-card {
        flex: 0 0 240px;
    }
}

@media (max-width: 992px) {
    .health-card {
        flex: 0 0 220px;
    }

    .health-card-body {
        padding: 15px;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .health-card {
        flex: 0 0 200px;
    }

    .health-title {
        font-size: 20px;
    }

    .health-subtitle {
        font-size: 14px;
    }

    .health-card img {
        height: 180px;
    }

    .carousel-btn {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .d-flex {
        flex-direction: column;
        gap: 15px;
    }

    .see-all-btn {
        align-self: flex-start;
    }

    .health-card {
        flex: 0 0 180px;
    }

    .health-card img {
        height: 160px;
    }

    .health-card-body {
        padding: 12px;
    }

    .health-card-body h5 {
        font-size: 16px;
    }

    .price {
        font-size: 18px;
    }

    .carousel-btn {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}

/* video-section */
  .yt-section {
      padding: 35px 0;
      background: linear-gradient(135deg, #e8f9fb, #ffffff);
      position: relative;
      overflow: hidden;
    }
    .yt-section::before {
      content: "";
      position: absolute;
      width: 200px;
      height: 200px;
      background: rgba(29, 168, 172, 0.1);
      border-radius: 50%;
      top: -60px;
      left: -60px;
    }
    .yt-section::after {
      content: "";
      position: absolute;
      width: 300px;
      height: 300px;
      background: rgba(29, 168, 172, 0.08);
      border-radius: 50%;
      bottom: -100px;
      right: -100px;
    }
    .yt-title {
      color: #1da8ac;
      font-weight: 800;
      font-size: 2.4rem;
    }
    .yt-sub {
      font-size: 1.05rem;
      color: #555;
    }
    .yt-card {
      border:2px solid #00afc7;
      border-radius: 18px;
      overflow: hidden;
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(10px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.12);
      transition: all 0.4s ease;
      position: relative;
    }
    .yt-card:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 12px 30px rgba(29, 168, 172, 0.4);
    }
    .yt-card iframe {
      width: 100%;
      height: 220px;
      border: none;
      border-bottom: 3px solid #1da8ac;
    }
    .yt-info {
      padding: 18px;
    }
    .yt-info h5 {
      color: #1da8ac;
      font-weight: 700;
      margin-bottom: 8px;
    }
    .yt-info p {
      color: #666;
      font-size: 0.9rem;
    }
    .play-overlay {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 70px;
      height: 70px;
      /* background: rgba(29, 168, 172, 0.85); */
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .play-overlay i {
      font-size: 28px;
      color: #fff;
    }
    .yt-card:hover .play-overlay {
      opacity: 1;
    }

    @media (min-width: 768px) {
      .yt-card iframe {
        height: 260px;
      }
    }
    @media (min-width: 1200px) {
      .yt-card iframe {
        height: 300px;
      }
    }


/* buttons call and whatsapp */
    .contact-buttons {
    position: fixed;
    bottom: 103px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
  }

  .contact-buttons a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.2s;
  }

  .whatsapp-btn {
    background: #25D366;
  }

  .call-btn {
    background: #00afc7;
  }

  .contact-buttons a:hover {
    transform: scale(1.1);
  }


  /* footer */

   .rk-footer {
    background: linear-gradient(135deg, #008fa3, #00afc7);
  }
  .rk-footer .footer-links li {
    margin-bottom: 8px;
  }
  .rk-footer .footer-links a {
    color: #ffffffcc;
    text-decoration: none;
    transition: color 0.3s;
  }
  .rk-footer .footer-links a:hover {
    color: #fff;
  }
  .rk-footer .btn-icon {
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .newsletter-form input {
    border: none;
    padding: 10px 15px;
  }
  .newsletter-form button {
    background: #fff;
    color: #00afc7;
    font-weight: 600;
  }
  .newsletter-form button:hover {
    background: #f8f9fa;
  }