 
 :root{
     -heading-color: #222;
  --body-color: #636363;
  --accent-color: #2ea6f7;
  --blue-color: #002261;
  --gray-color: #e8edf0;
  --border-color: #dddddd;
 }
 
 /* ===== Facilities Page Styling ===== */


 .facility-hero {
     background: linear-gradient(135deg, #0d6efd, #0aa2c0);
     color: #fff;
     padding: 70px 0;
 }

 .facility-hero h1 {
     font-weight: 700;
 }

 .section-title {
     text-align: center;
     margin-bottom: 50px;
 }

 .section-title span {
     color: #0d6efd;
     font-weight: 600;
     letter-spacing: 1px;
 }

 .section-title h2 {
     font-weight: 700;
     margin-top: 10px;
 }

 .facility-card {
     background: #fff;
     border-radius: 16px;
     padding: 30px;
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
     transition: all 0.3s ease;
     height: 100%;
 }

 .facility-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
 }

 .facility-icon {
     width: 70px;
     height: 70px;
     border-radius: 50%;
     background: linear-gradient(135deg, #0d6efd, #0aa2c0);
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 20px;
     color: #fff;
     font-size: 28px;
 }

 .facility-card h5 {
     font-weight: 600;
     margin-bottom: 10px;
 }

 .facility-card ul {
     padding-left: 18px;
     font-size: 14px;
 }

 .facility-card ul li {
     margin-bottom: 6px;
 }

 .info-section {
     background: #f8f9fa;
     padding: 60px 0;
 }

 .info-box {
     background: #fff;
     border-left: 5px solid #002261;
     padding: 30px;
     border-radius: 12px;
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
 }

 .info-box h4 {
     font-weight: 700;
     margin-bottom: 15px;
 }
 
 /**/
 
 /* ===== Gallery Page ===== */
.gallery-hero {
  background: linear-gradient(135deg, #0d6efd, #0bbcd6);
  color: #fff;
  padding: 80px 0;
  margin-top: 60px;
}

.gallery-hero h1 {
  font-weight: 800;
}

.gallery-section {
  padding: 70px 0;
  margin-top: 80px;
}

.gallery-item {
  width: 100%;
  height: 250px;          /* set height as you want */
  overflow: hidden;
  border-radius: 10px;    /* optional */
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;     /* THIS is the key */
  display: block;
}





/**/

/* ===== Orthopedic Page (Brand Colors Only) ===== */
.service-card {
    background: #fff;
    padding: 30px 20px;
    text-align: center;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    height: 100%;
}

.service-card i {
    font-size: 42px;
    color: var(--blue-color);
    margin-bottom: 15px;
}

.service-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.service-card:hover {
    transform: translateY(-8px);
}

/* CTA */
.cta-section {
    background: linear-gradient(135deg, #0d6efd, #0b5ed7);
    padding: 70px 0;
}


.icon-circle i{
    font-size: 50px;
    color: var(--blue-color);
}


 .payment-card {
      border-radius: 15px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }
    .pay-btn {
      background: #0d6efd;
      border-radius: 30px;
      padding: 12px;
      font-size: 18px;
    }
    .secure-text {
      font-size: 14px;
      color: #6c757d;
    }

