.services-cards .container h2 {
    color: rgb(8, 34, 82);
    font-size: 55px;
    font-weight: 600;
    margin: 4rem auto;
    text-align: center;
}

.link-hover {
    color: rgb(0, 0, 0);
}
.ul-container {
    width: 50%;
}
.nav-container {
    width: 93vw;
    margin: 0 auto;
}
.nav-buttons {
    margin: 0;
    padding: 0;
    width: fit-content;
}
.nav-container {
    justify-content: space-between;
    align-items: center;
    padding-right: 20px;
}

.services-section {
    padding: 60px 20%;
    text-align: center;
}

.services-section h2 {
    color: rgb(8, 34, 82);
    font-size: 45px;
    font-weight: 600;
    margin: 4rem auto;
    text-align: center;
}

/* 👇 Grid ko update kiya hai */
.services-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Laptop pe 2 cards per row */
    gap: 25px;
}

@media (max-width: 768px) {
    .services-container {
        grid-template-columns: 1fr; /* Mobile/Tablet pe 1 card per row */
    }
    .services-section {
      padding: 60px 6%;
      text-align: center;
    }
}

.service-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 20px;
    text-align: left;
}

.service-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #007bff;
}

.service-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}


.gallery-section {
  padding: 50px 20px;
  background: #f9f9f9;
  text-align: center;
}

.gallery-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #333;
}

.gallery-subtitle {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #666;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* First image full width */
.gallery-item.large {
  grid-column: span 3;
}

/* Responsive */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item.large {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item.large {
    grid-column: span 1;
  }
}



a{
  line-height: 1.4;
}



.doctor-message-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f6fbff, #ffffff);
}

.doctor-card {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 60px;
  align-items: center;
  background: #ffffff;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Doctor Image */
.doctor-image {
  position: relative;
  flex: 1;
  text-align: center;
}

.doctor-image img {
  width: 100%;
  height: 500px;
  border-radius: 18px;
  object-fit: cover;
}

.experience-badge {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: #031c41;
  color: #fff;
  padding: 8px 18px;
  font-size: 14px;
  border-radius: 30px;
}

/* Content */
.doctor-content {
  flex: 1.2;
}

.small-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #031c41;
  font-weight: 600;
}

.doctor-content h2 {
  font-size: 34px;
  margin: 12px 0 18px;
  color: #1c1c1c;
}

.doctor-content p {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
}

.doctor-name strong {
  display: block;
  font-size: 18px;
  color: #000;
}

.doctor-name span {
  font-size: 14px;
  color: #777;
}

/* Responsive */
@media (max-width: 900px) {
  .doctor-card {
    flex-direction: column;
    text-align: center;
  }

  .doctor-content h2 {
    font-size: 28px;
  }
  .doctor-image img {
  width: 100%;
  height: auto;
}
}




.hospital-hero {
  background: linear-gradient(135deg, #c1e6ff, #ffffff);
  padding: 90px 20px;
  overflow: hidden;
  padding-top: 150px;
}

.hero-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* LEFT CONTENT */
.hero-content {
  flex: 1;
}

.hero-pill {
  display: inline-block;
  background: rgba(13,110,253,0.1);
  color: #031c41;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
}

.hero-content h1 {
  font-size: 46px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #1b1b1b;
}

.hero-content p {
  font-size: 17px;
  color: #555;
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

.btn-primary {
  background: #031c41;
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

.btn-outline {
  border: 2px solid #031c41;
  color: #031c41;
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

/* RIGHT IMAGE GRID */
.hero-images {
  flex: 1;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.image-grid img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
  transition: transform 0.3s ease;
}

.image-grid img:hover {
  transform: translateY(-6px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .image-grid img {
    height: 150px;
  }
}



