/* =========================
   HERO SECTION
========================= */
.hero.medical-hero {
  position: relative;
  /* ✅ this keeps scroll chevron within hero */
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e8f4fc, #ffffff);
  text-align: center;
  padding: 0 1rem;
}


.hero.medical-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0078d7;
  margin-bottom: 1rem;
}

.scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.4rem;
  color: #0078d7;
  /* or #333 for dark */
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, -10px);
  }
}

.hero.medical-hero p {
  font-size: 1.2rem;
  color: #333;
}

/* =========================
   ABOUT SECTION
========================= */
.about {
  padding: 5rem 0;
  text-align: center;
  background: #f9f9f9;
}

.about h2 {
  font-size: 2rem;
  color: #0078d7;
  margin-bottom: 1rem;
}

.about p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

/* =========================
   SERVICES
========================= */
.services {
  padding: 5rem 0;
  background: #fff;
}

.services h2 {
  font-size: 2rem;
  color: #0078d7;
  text-align: center;
  margin-bottom: 2rem;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-cards .card {
  background: #f8faff;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-cards .card i {
  font-size: 2.5rem;
  color: #0078d7;
  margin-bottom: 1rem;
}

.service-cards .card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #222;
}

.service-cards .card p {
  color: #555;
  font-size: 1rem;
  line-height: 1.5;
}

.service-cards .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* =========================
   PRODUCTS
========================= */
.products {
  padding: 5rem 0;
  background: #f9f9f9;
  text-align: center;
}

.products h2 {
  font-size: 2rem;
  color: #0078d7;
  margin-bottom: 2rem;
}

.product-list {
  list-style: none;
  max-width: 600px;
  margin: 0 auto;
  padding: 0;
}

.product-list li {
  font-size: 1.1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid #ddd;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.product-list li i {
  color: #0078d7;
}

/* =========================
   CONTACT FORM
========================= */
.contact-form-section {
  padding: 5rem 0;
  background: #fff;
}

.contact-form-section h2 {
  font-size: 2rem;
  color: #0078d7;
  text-align: center;
  margin-bottom: 1rem;
}

.contact-form-section p {
  text-align: center;
  color: #555;
  margin-bottom: 2rem;
}

.contact-form-section form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form-section input,
.contact-form-section textarea {
  padding: 0.8rem 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  width: 100%;
  transition: border 0.3s ease;
}

.contact-form-section input:focus,
.contact-form-section textarea:focus {
  outline: none;
  border-color: #0078d7;
}

.contact-form-section button {
  padding: 0.8rem 1.5rem;
  background: #0078d7;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form-section button:hover {
  background: #005ea3;
}

/* =========================
   HEALTH TIPS
========================= */
.health-tips {
  padding: 5rem 0;
  background: #f9f9f9;
  text-align: center;
}

.health-tips h2 {
  font-size: 2rem;
  color: #0078d7;
  margin-bottom: 2rem;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.tips-grid .tip {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  text-align: center;
}

.tips-grid .tip i {
  font-size: 2rem;
  color: #0078d7;
  margin-bottom: 1rem;
}

.tips-grid .tip h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.tips-grid .tip p {
  font-size: 1rem;
  color: #555;
}

.tips-grid .tip:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* =========================
   FAQ
========================= */
.faq {
  padding: 5rem 0;
  background: #fff;
}

.faq h2 {
  font-size: 2rem;
  color: #0078d7;
  text-align: center;
  margin-bottom: 2rem;
}

.faq-item {
  max-width: 800px;
  margin: 1rem auto;
  padding: 1rem 1.5rem;
  border-left: 4px solid #0078d7;
  background: #f8faff;
  border-radius: 8px;
}

.faq-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.faq-item p {
  font-size: 1rem;
  color: #555;
}

.testimonials {
  padding: 4rem 0;
  background: #f9f9f9;
  text-align: center;
}

.testimonials h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #0078d7;
}

.testimonial-slider-wrapper {
  display: flex;
  overflow-x: auto;
  gap: 1.5rem;
  padding-bottom: 1rem;
}

.testimonial-cards {
  display: flex;
  gap: 1.5rem;
}

.testimonial-card {
  min-width: 250px;
  background: #fff;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.testimonial-card h4 {
  margin-top: 1rem;
  font-weight: 600;
  color: #333;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: #555;
}
/* Animated Background Shapes */
.bg-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  z-index: 1;
}

.shape1 {
  width: 220px;
  height: 220px;
  top: 10%;
  left: 15%;
  background: #90e0ef;
  animation: float 10s ease-in-out infinite;
}

.shape2 {
  width: 150px;
  height: 150px;
  bottom: 15%;
  right: 20%;
  background: #caf0f8;
  animation: float 12s ease-in-out infinite reverse;
}

.shape3 {
  width: 180px;
  height: 180px;
  bottom: 30%;
  left: 10%;
  background: #ade8f4;
  animation: float 14s ease-in-out infinite;
}

.shape4 {
  width: 100px;
  height: 100px;
  top: 20%;
  right: 25%;
  background: #00b4d8;
  animation: float 11s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-25px) rotate(15deg); }
}