.text-accent {
    color: #002247 !important;
}

.facility-tabs .nav-link {
    border: none;
    font-weight: 600;
    color: #002247;
    transition: all 0.3s ease;
}

.facility-tabs .nav-link.active {
    color: #fff;
    background: #002247;
    border-radius: 50px;
    box-shadow: 0 3px 10px rgba(0, 34, 71, 0.25);
}

.facility-section {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    padding: 40px;
}

.divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, #002247, transparent);
    border-radius: 5px;
}

.carousel-inner img {
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.35s ease;
}

.carousel-inner img:hover {
    transform: scale(1.03);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    z-index: 9999;
}

.doctor-card {
    background: #fff;
}

@media (max-width: 992px) {
    .facility-section {
        text-align: center;
        padding: 20px;
    }

    .carousel-inner img {
        height: 260px;
    }
}
.text-decoration-none {
    text-decoration: none !important;
}
a {
    text-decoration: none !important;
}

  /* Tab Buttons */
  .nav-pills .nav-link {
    border: 2px solid #002349;
    color: #002349;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
  }

  .nav-pills .nav-link.active,
  .nav-pills .nav-link:hover {
    background-color: #002349;
    color: #fff;
  }

  /* Tab Content Animation */
  .tab-content {
    animation: fadeSlide 0.6s ease;
  }

  @keyframes fadeSlide {
    from { opacity: 0; transform: translateY(15px);}
    to { opacity: 1; transform: translateY(0);}
  }

  /* Custom List Icon */
  ul.custom-bullets {
    list-style: none;
    padding-left: 1rem;
  }

  ul.custom-bullets li::before {
    content: "\2022";
    color: #002349;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
  }

 .custom-table {
    color: #002349;
    border: 1px solid #002349;
    transition: transform 0.2s, box-shadow 0.2s;
}
.custom-table thead {
    background-color: #002349;
    color: #fff;
    font-weight: 600;
}
.custom-table tbody tr:nth-child(even) {
    background-color: #f0f4f8;
}
.custom-table tbody tr:hover {
    background-color: #d9e4f5;
    transform: scale(1.01);
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
}
.custom-table th, .custom-table td {
    text-align: center;
    vertical-align: middle;
    padding: 0.75rem;
    font-size: 0.95rem;
}
@media (max-width: 768px) {
    .custom-table th, .custom-table td {
        font-size: 0.85rem;
        padding: 0.5rem;
    }
}

 .table-header th {
        background-color: #002349; /* Dark blue background */
        color: white;              /* White text */
        text-align: center;          /* Optional: align text to left */
        padding: 10px;  
    }

  /* Paragraphs */
  p {
    font-size: 1rem;
    line-height: 1.7;
  }
  /* Image hover zoom effect */
  .image-hover-effect {
    cursor: pointer;
    transition: transform 0.3s ease;
    position: relative;
  }

  .image-hover-effect img {
    transition: transform 0.5s ease;
    width: 100%;
    display: block;
  }

  .image-hover-effect:hover img {
    transform: scale(1.1);
  }

  /* Overlay design */
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 35, 73, 0.75);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .image-hover-effect:hover .overlay {
    opacity: 1;
  }

  .overlay p {
    font-size: 18px;
    font-weight: 600;
    margin: 0.2rem 0;
    line-height: 1.4;
  }

  /* Optional: smooth transition for overlay text */
  .overlay p {
    transform: translateY(20px);
    transition: transform 0.3s ease;
  }

  .image-hover-effect:hover .overlay p {
    transform: translateY(0);
  }