.nice-select .list{
  max-height: 250px;
  overflow-y: auto;
}

.nice-select.open .list{
  z-index: 9999;
}
.footer-brochure a{
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, .08);
  border-left: 4px solid #0076EB;
  border-radius: 12px;
  padding: 12px 18px;
  transition: all .3s ease;
}

.footer-brochure a:hover{
  background: linear-gradient(90deg, #0076EB 0%, #5ED312 100%);
  border-left-color: #FFC600;
}

.footer-brochure a i{
  font-size: 30px;
  color: #5ED312;
  flex-shrink: 0;
  transition: all .3s ease;
}

.footer-brochure a:hover i{
  color: var(--color-white);
}

.footer-brochure a span{
  color: var(--color-white);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.4;
}

.footer-payment{
  background: rgba(255, 255, 255, .08);
  border-left: 4px solid #FFC600;
  border-radius: 12px;
  padding: 16px 18px;
}

.footer-payment .payment-icons{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-payment .payment-icons img{
  height: 28px;
  width: auto;
  background: var(--color-white);
  border-radius: 6px;
  padding: 4px 8px;
  object-fit: contain;
}

.footer-payment .pay-now-btn{
  display: block;
  width: 100%;
  text-align: center;
  background: linear-gradient(90deg, #0076EB 0%, #5ED312 60%, #FFC600 100%);
  background-size: 200% 100%;
  background-position: left;
  color: var(--color-white);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 20px;
  border-radius: 50px;
  box-shadow: 0 6px 15px rgba(0, 118, 235, .35);
  transition: all .4s ease;
}

.footer-payment .pay-now-btn:hover{
  background-position: right;
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 118, 235, .45);
}
/* ===================================
   Medical Equipment Grid Section
   =================================== */
.equipment-area .site-text{
  max-width: 700px;
  margin: 15px auto 0;
  text-align: center;
  color: var(--body-text-color);
}

.equipment-item{
  background: #fff;
  border-radius: 15px;
  box-shadow: var(--box-shadow);
  padding: 12px 8px;
  text-align: center;
  transition: .4s;
  height: 100%;
}

.equipment-item:hover{
  transform: translateY(-8px);
  box-shadow: 0 10px 40px rgb(0 0 0 / 8%);
}

.equipment-img{
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.equipment-img img{
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.equipment-title{
  font-size: 13px;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 10px;
  min-height: auto;
}

.equipment-btns{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-wrap: nowrap;
}

.btn-rent,
.btn-call{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-size: 10px;
  font-weight: 600;
  padding: 5px 6px;
  border-radius: 50px;
  color: #fff;
  white-space: nowrap;
  flex: 1 1 0;
  min-width: 0;
  transition: .3s;
}

.btn-rent i,
.btn-call i{
  font-size: 10px;
}

.btn-rent{
  background: #25D366; /* WhatsApp green */
}
.btn-rent:hover{
  background: var(--color-dark);
  color: #fff;
}

.btn-call{
  background: #F7941D; /* orange */
}
.btn-call:hover{
  background: var(--color-dark);
  color: #fff;
}

@media (max-width: 575px){
  .equipment-item{ padding: 10px 6px; }
  .equipment-img{ height: 70px; margin-bottom: 8px; }
  .equipment-title{ font-size: 11px; margin-bottom: 8px; }
  .equipment-btns{ gap: 2px; }
  .btn-rent, .btn-call{
    font-size: 9px;
    padding: 4px 4px;
    gap: 2px;
  }
  .btn-rent i, .btn-call i{ font-size: 9px; }
}

 
/* ===================================
   Pay Now Page
   =================================== */
.pay-now-box{
  max-width: 900px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .08);
}

.pay-now-content h3{
  margin-bottom: 12px;
  font-weight: 700;
}

.pay-now-content p{
  color: var(--body-text-color);
  margin-bottom: 20px;
}

.pay-now-qr-wrap{
  background: var(--color-white);
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 12px;
  max-width: 300px;
  margin: 0 auto;
}

.pay-now-qr-wrap img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
/* ===================================
   Leadership Team - Read More/Less
   =================================== */
.team-content .team-desc{
  font-size: 14px;
  line-height: 1.6;
  margin-top: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.team-content .team-desc.expanded{
  -webkit-line-clamp: unset;
  overflow: visible;
}

.team-content .read-more-btn{
  display: inline-block;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #0076EB;
  cursor: pointer;
}

.team-content .read-more-btn:hover{
  text-decoration: underline;
}
.attendant-staff-row{
  margin-bottom: 40px;
}
@media (max-width: 767px) {
    .header-top {
        display: none;
    }
}