    .top-header {
      background: #f5b754; /* you can change */
      color: #000;
      font-size: 14px;
    }
    .top-header a {
      color: #000;
      text-decoration: none;
      margin-left: 10px;
    }
    .top-header a:hover {
      text-decoration: underline;
    }

    .navbar {
      background: blue; /* golden theme */
    }
    .navbar-brand {
      font-weight: bold;
      font-size: 5px;
    }
    .nav-link {
      color: white !important;
      font-weight: 500;
      padding: 8px 15px;
    }
    .nav-link:hover {
      color: #fff !important;
      background: #000;
      border-radius: 5px;
    }
    .logo{
        width: 80px;
        background-color: white;
        padding: 3px;
        border: 1px solid rgb(197, 36, 36);
        border-radius:5%;
    }


     .carousel-item {
      height: 90vh; /* full screen height */
      min-height: 400px;
      background-size: cover;
      background-position: center;
      position: relative;
    }
    .carousel-caption {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      text-align: left;
    }
    .carousel-caption h1 {
      font-size: 3rem;
      font-weight: bold;
    }
    .carousel-caption p {
      font-size: 1.2rem;
      margin-bottom: 20px;
    }
    .btn-custom {
      background: #f5b754;
      color: #000;
      font-weight: bold;
      padding: 10px 25px;
      border-radius: 30px;
    }
    .btn-custom:hover {
      background: #000;
      color: #fff;
    }


    .doctor-card {
      border: none;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }
    .doctor-card:hover {
      transform: translateY(-8px);
    }
     .doctor-img {
      width: 100%;
      height: 100%;
      object-fit: cover; /* makes image fully cover card */
    }
    .doctor-img-wrapper {
      height: 350px; /* set card image height */
      overflow: hidden;
    }
    .doctor-body {
      padding: 20px;
      text-align: center;
    }
    .doctor-body h5 {
      font-weight: bold;
      margin-top: 10px;
    }
    .doctor-body p {
      font-size: 14px;
      color: #666;
    }
    .social-icons a {
      color: #f5b754;
      margin: 0 8px;
      font-size: 18px;
      transition: color 0.3s;
    }
    .social-icons a:hover {
      color: #000;
    }

      .video-section {
      background: #0073e6; /* Blue background */
      padding: 50px 20px;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap; /* Responsive: stack on small screens */
    }

    .video-container {
      flex: 1 1 45%;
      max-width: 600px;
      aspect-ratio: 16 / 9;
      background: #000;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    }

    .video-container iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    @media (max-width: 768px) {
      .video-container {
        flex: 1 1 100%;
      }
    }

     .awards-section {
  text-align: center;
  padding: 50px 20px;
  background: #f9f9f9;
}

.awards-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #333;
}

.slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  max-width: 1200px;
  margin: auto;
}

.slider-track {
  display: flex;
  gap: 20px;
  animation: scroll 30s linear infinite;
}

.slider-track img {
  width: calc(100% / 7 - 20px); /* 7 images in one row */
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}

.slider-track img:hover {
  transform: scale(1.1);
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.testimonials {
  background: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.testimonials h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #333;
}

.testimonial-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

.testimonial-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: transform 0.3s;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-8px);
}

.testimonial-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
  font-style: italic;
}

.testimonial-card h4 {
  font-size: 16px;
  font-weight: bold;
  color: #f5b754; /* your theme color */
}

.testimonial-card a {
  text-decoration: none;
  color: #007bff;
  font-size: 14px;
  position: absolute;
  bottom: 15px;
  right: 20px;
  transition: color 0.3s;
}

.testimonial-card a:hover {
  color: #0056b3;
}
  .footer {
  background: #222;
  color: #eee;
  padding: 60px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-col h3 {
  color: #f5b754; /* Theme color */
  font-size: 20px;
  margin-bottom: 20px;
  border-bottom: 2px solid #444;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #eee;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #f5b754;
}

.footer-col p,
.footer-col small {
  color: #ccc;
  margin-bottom: 10px;
  font-size: 14px;
}

.blog-item {
  margin-bottom: 20px;
}

.blog-item h4 a {
  color: #eee;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}

.blog-item h4 a:hover {
  color: #f5b754;
}

.socials a {
  display: inline-block;
  margin-top: 10px;
  color: #eee;
  text-decoration: none;
  transition: color 0.3s;
}

.socials a:hover {
  color: #f5b754;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #444;
  padding-top: 15px;
}

.footer-bottom p {
  font-size: 14px;
  color: #aaa;
}


.about-section {
    background-color: #f8fbfd;
    padding: 40px 20px;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    margin-bottom: 40px;
}

.about-image img {
    max-width: 250px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.about-content {
    flex: 1;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.about-content h2 {
    color: #0073aa;
    margin-top: 0;
}

.about-content p {
    line-height: 1.6;
    color: #444;
}

.values-section {
    text-align: center;
}

.values-section h2 {
    color: #0073aa;
    margin-bottom: 20px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 120px;
}

.value-card {
    background: white;
    padding: 15px;
    
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card strong {
    display: block;
    color: #0073aa;
    font-size: 1.5em;
    margin-bottom: 8px;
}

.value-card p {
    margin: 0;
    color: #555;
    font-size: 0.95em;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }
    .about-image img {
        margin-bottom: 20px;
    }
}





.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #25D366;
    color: white;
    font-size: 28px;
    padding: 12px 15px;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: background 0.3s ease;
}
.whatsapp-btn:hover {
    background-color: #1ebe5d;
    color: white;
}

