 /* profile section */

  .school-profile-section{
    padding:80px 20px;
  }

  .school-profile-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    gap:28px;
    align-items:flex-start;
  }

  /* ======================
      SIDEBAR
  ====================== */

  .school-profile-sidebar{
    width:260px;
    background:#fff;
    border-radius:18px;
    padding:18px;
    box-shadow:0 4px 20px rgba(0,0,0,0.05);
    border:1px solid #eef2f7;
  }

  .school-profile-menu{
    width:100%;
    border:none;
    background:transparent;
    padding:15px 18px;
    margin-bottom:12px;
    border-radius:12px;
    text-align:left;
    cursor:pointer;
    font-size:15px;
    color:#374151;
    transition:0.3s ease;
  }

  .school-profile-menu:hover{
    background:#eef4ff;
    color:#2563eb;
  }

  .school-profile-menu.active{
    background:#2563eb;
    color:#fff;
    font-weight:600;
  }

  /* ======================
      CONTENT
  ====================== */

  .school-profile-content-wrapper{
    flex:1;
    background:#fff;
    border-radius:18px;
    padding:28px;
    box-shadow:0 4px 20px rgba(0,0,0,0.05);
    border:1px solid #eef2f7;
    min-height:500px;
    width:100%;
  }

  .school-profile-tab{
    display:none;
    animation:schoolFade 0.4s ease;
  }

  .school-profile-tab.active{
    display:block;
  }

  @keyframes schoolFade{

    from{
      opacity:0;
      transform:translateY(10px);
    }

    to{
      opacity:1;
      transform:translateY(0);
    }
  }

  .school-profile-image{
    width:100%;
    border-radius:14px;
    margin-bottom:24px;
    object-fit:cover;
  }

  .school-profile-tab h2{
    font-size:30px;
    margin-bottom:18px;
    color:#111827;
  }

  .school-profile-tab p{
    color:#6b7280;
    line-height:1.9;
    margin-bottom:16px;
    font-size:15px;
  }

  /* List */
  .school-profile-list{
    padding-left:20px;
  }

  .school-profile-list li{
    margin-bottom:12px;
    color:#6b7280;
    line-height:1.8;
  }

  /* Achievement */
  .school-profile-achievement{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(220px,1fr));
    gap:20px;
    margin-top:25px;
  }

  .achievement-card{
    background:#f8fbff;
    border:1px solid #e6eefb;
    padding:22px;
    border-radius:14px;
  }

  .achievement-card h3{
    color:#1d4ed8;
    margin-bottom:10px;
    font-size:18px;
  }

  .achievement-card p{
    margin:0;
  }

  /* ======================
      RESPONSIVE
  ====================== */

  @media(max-width:992px){

    .school-profile-container{
      flex-direction:column;
    }

    .school-profile-sidebar{
      width:100%;
      display:flex;
      gap:10px;
      overflow-x:auto;
    }

    .school-profile-menu{
      min-width:max-content;
      margin-bottom:0;
      white-space:nowrap;
    }
  }

  @media(max-width:768px){

    .school-profile-section{
      padding:60px 16px;
    }

    .school-profile-content-wrapper{
      padding:22px;
    }

    .school-profile-tab h2{
      font-size:24px;
    }
  }

  .facility-card{

    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    height:100%;

}


.facility-image{

    height:220px;
    overflow:hidden;

}


.facility-image img{

    width:100%;
    height:100%;
    object-fit:cover;
    transition:.4s;

}


.facility-card:hover img{

    transform:scale(1.08);

}



.facility-content{

    padding:20px;

}


.facility-content h4{

    font-size:20px;
    font-weight:700;
    margin-bottom:10px;

}


.facility-content p{

    color:#666;
    line-height:1.7;

}



.facility-header{

    margin-bottom:30px;

}


.facility-header h2{

    font-size:32px;
    font-weight:700;

}

.facility-image{
    height:220px;
}