.top-header {
  position: sticky;
  top: 0;
  z-index: 1020;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  background: #fff;
  border-bottom: 1px solid #eee;
  .logo {
    font-weight: 600;
    color: #2c3e50;
  }
  .nav-link {
    color: #333;
    font-weight: 500;
    margin: 0 10px;
    &.active {
      border-bottom: 2px solid #007bff;
      color: #007bff;
    }
    &:hover {
      color: #007bff;
    }
  }
  .btn {
    font-weight: 500;
    padding: 6px 18px;
    background: #6ACBD3;
  }
}

.hero-section {
  /*background: linear-gradient(to right, #6ACBD3 50%, #fff 50%);*/
  background:#6ACBD3;
  
  .hero-img {
    width: 100%;
    /* border-radius: 10px; */
  }
  h1 {
    color: #fff;
  }
  p {
    color: #f0f0f0;
    font-size: 1.1rem;
  }
  .btn {
    font-size: 1rem;
    font-weight: 500;
  }
}

.features-section {
  background-color: #f9f9f9;
  i {
    color: #6ACBD3 !important;
  }
  p {
    font-size: 1rem;
    margin-top: 0.5rem;
  }
}

.doctor-profile-section {
  background-color: #fff;
  h3 {
    color: #2c3e50;
  }
  p {
    font-size: 1rem;
    line-height: 1.6;
  }
  .btn {
    font-weight: 500;
  }
}

.services-section {
  background-color: #f8f9fa;
  .card-title {
    font-weight: 600;
    color: #2c3e50;
  }
  .card-text {
    font-size: 0.95rem;
    color: #555;
  }
  .service-card {
    transition: transform 0.3s ease;
    border: none;
    &:hover {
      transform: translateY(-5px);
    }
  }
  .btn-link {
    color: #007bff;
    font-weight: 500;
    &:hover {
      text-decoration: underline;
    }
  }
}

.testimonials-section {
  background-color: #0a4c5a;
  h3 {
    color: #fff;
  }
  .testimonial-card {
    background-color: #1e2d36;
    p {
      font-size: 0.95rem;
      color: #e0e0e0;
      line-height: 1.6;
    }
    h6 {
      font-size: 1rem;
    }
    small {
      font-size: 0.85rem;
    }
    i {
      font-size: 1rem;
      color: #67E8F9 !important;
    }
  }
}

.consultation-section {
  background: linear-gradient(135deg, #6ACBD3, #0a4c5a);
  h2 {
    font-size: 2rem;
  }
  p {
    font-size: 1.1rem;
    color: #e0e0e0;
  }
  .btn {
    font-weight: 600;
    font-size: 1.1rem;
  }
}

.site-footer {
  background-color: #0a4c5a;
  h5, h6 {
    color: #fff;
  }
  .footer-link {
    display: block;
    color: #d1d1d1;
    font-size: 0.95rem;
    margin-bottom: 6px;
    text-decoration: none;
    &:hover {
      color: #fff;
      text-decoration: underline;
    }
  }
  i {
    color: #67E8F9;
    font-size: 18px;
  }
  .fab {
    font-size: 1.1rem;
    &:hover {
      color: #fff;
    }
  }
}

.about-intro h2 {
  font-size: 2rem;
}
.about-bio p {
  font-size: 1rem;
  color: #444;
}
.list-inline-item {
  font-size: 0.95rem;
}

.education-section h4 {
  font-size: 1.6rem;
}
.timeline-item {
  border-left: 3px solid #0dcaf0;
  padding-left: 1rem;
  position: relative;
}
.timeline-item::before {
  content: "\f111";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: -0.95rem;
  top: 0.2rem;
  font-size: 0.6rem;
  color: #0dcaf0;
}

.philosophy-section h4 {
  font-size: 1.6rem;
}
.philosophy-section .card-body i {
  display: block;
  margin-bottom: 1rem;
}

.memberships-section h4 {
  font-size: 1.6rem;
}
.memberships-section .p-3 {
  font-size: 0.95rem;
}

.services-hero h2 {
  font-size: 2rem;
}
.card-body h6 {
  font-size: 1.05rem;
}
.card-body p {
  font-size: 0.95rem;
}

.contact-hero h2 {
  font-size: 2rem;
}
.contact-main form input, .contact-main form select, .contact-main form textarea {
  font-size: 0.95rem;
}
.insurance-section .badge {
  padding: 0.6em 1em;
  font-size: 0.95rem;
}

.faq-hero h2 {
  font-size: 2rem;
}
.faq-body .form-control {
  max-width: 500px;
}
.accordion-button {
  font-weight: 500;
}
.bg-light {
    color: #000;
}
.blog-hero h2 {
  font-size: 2rem;
}
.card-title {
  font-size: 1.1rem;
  font-weight: 600;
}
.card-text {
  font-size: 0.95rem;
}
.sidebar ul li {
  margin-bottom: 0.5rem;
}

.blog-post-hero h2 {
  font-size: 2rem;
}
.blog-post-content p {
  font-size: 1rem;
  line-height: 1.75;
}
.blog-post-content h5 {
  color: #075a74;
}
.blockquote {
  font-size: 1.1rem;
}

@media (max-width: 767.98px) {
  .top-header {
    .logo {
      flex-direction: column;
      align-items: flex-start;
    }

    .nav {
      flex-direction: column;
      padding-left: 0;
    }

    .nav-link {
      margin: 5px 0;
    }

    .btn {
      margin-top: 10px;
      width: 100%;
    }
  }

  .hero-section {
    text-align: center;
    background: #6ACBD3;
    .hero-img {
      max-height: 300px;
      margin-top: 20px;
    }
    h1, p {
      color: #fff;
    }
  }

  .features-section {
    .row > div {
      flex: 0 0 50%;
      max-width: 50%;
    }
  }

  .doctor-profile-section {
    text-align: center;
    .btn {
      width: 100%;
    }
  }

  .services-section {
    .carousel-inner {
      flex-direction: column;
    }
  }

  .consultation-section {
    h2 {
      font-size: 1.5rem;
    }

    .btn {
      width: 100%;
    }
  }

  .site-footer {
    text-align: center;
    .footer-link {
      display: inline-block;
      margin: 4px 8px;
    }
    .fab {
      margin: 0 10px;
    }
  }
}

.site-footer a {
    color: #fff;
    text-decoration: none;
}
