
.facility-section{

  font-family:Arial,sans-serif;
}

.facility-card{
  background:#ffffff;
  border-radius:22px;
  padding:50px;
  box-shadow:0 12px 35px rgba(0,0,0,0.08);
  border-top:6px solid var(--accent-red);
  position:relative;
  overflow:hidden;
}

.facility-card::before{
  content:"";
  position:absolute;
  top:-90px;
  right:-90px;
  width:240px;
  height:240px;
  background:rgba(38,52,137,0.04);
  border-radius:50%;
}

.facility-content{
  position:relative;
  z-index:2;
}

.facility-content h1{
  color:var(--primary-blue);
  font-size:38px;
  font-weight:700;
  margin-bottom:35px;
  position:relative;
  padding-left:20px;
}

.facility-content h1::before{
  content:"";
  position:absolute;
  left:0;
  top:5px;
  width:6px;
  height:85%;
  background:var(--accent-red);
  border-radius:20px;
}

.facility-content p{
  color:var(--text-black);
  font-size:16px;
  line-height:1.9;
  margin-bottom:28px;
  text-align:justify;
}

.facility-highlight{
  background:#fff;
  border-left:5px solid var(--accent-red);
  border-radius:16px;
  padding:24px 28px;
  margin:35px 0;
  box-shadow:0 6px 18px rgba(0,0,0,0.06);
}

.facility-highlight p{
  margin:0;
}

.pdf-section{
  margin-top:45px;
}

.pdf-card{
  background:#ffffff;
  border-radius:20px;
  overflow:hidden;
  margin-bottom:35px;
  box-shadow:0 10px 28px rgba(0,0,0,0.08);
  border:1px solid rgba(38,52,137,0.08);
}

.pdf-header{
  background:linear-gradient(135deg,var(--primary-blue),#3145b3);
  color:#fff;
  padding:18px 24px;
  font-size:20px;
  font-weight:600;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:15px;
}

.pdf-btn{
  background:#fff;
  color:var(--primary-blue) !important;
  text-decoration:none;
  padding:10px 22px;
  border-radius:50px;
  font-size:14px;
  font-weight:700;
  transition:0.3s ease;
}

.pdf-btn:hover{
  background:var(--accent-red);
  color:#fff !important;
}

.pdf-card iframe{
  width:100%;
  height:800px;
  border:none;
}

@media(max-width:991px){

  .facility-card{
    padding:30px 20px;
  }

  .facility-content h1{
    font-size:30px;
  }

  .facility-content p{
    font-size:15px;
  }

  .pdf-header{
    font-size:17px;
  }

  .pdf-card iframe{
    height:500px;
  }
}