/* school-profile Styling */
.school-profile {
    max-width: 1300px;
    margin: auto;
    padding: 40px 20px;
    background: #f9fafb;  /* Slightly softer background */
    font-family: 'Roboto', sans-serif;
  }
  
  /* Sidebar Styling */
  .profile-sidebar {
    background: #ffffff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-top: 20px;
  }
  
  .profile-card {
    margin-bottom: 25px;
    font-size: 18px;
  }
  
  .profile-image {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 4px solid #b3e1f7;
    transition: transform 0.3s ease;
  }
  
  .profile-image:hover {
    transform: scale(1.1);
  }
  
  .profile-nav ul {
    list-style: none;
    padding: 0;
    margin-top: 30px;
  }
  
  .profile-nav ul li {
    padding: 14px 20px;
    border-bottom: 1px solid #eee;
    font-size: 16px;
    text-align: left;
    transition: 0.3s;
    position: relative;
  }
  
  .profile-nav ul li a {
    text-decoration: none;
    color: #333;
    display: flex;
    align-items: center;
  }
  
  .profile-nav ul li a i {
    margin-right: 10px;
  }
  
  .profile-nav ul li:hover, .profile-nav ul li.active {
    background: #0fa0de;
    color: white;
  }
  
  .profile-nav ul li:hover a, .profile-nav ul li.active a {
    color: white;
  }
  
  /* Main Content */
  .profile-content {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.1);
  }
  
  /* Welcome Section */
  .welcome-card {
    background: #75a539;
    color: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 30px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  }
  
  /* Features Section */
  .features-section {
    margin-bottom: 40px;
  }
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }
  .feature-item {
    background: #ffffff;;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
  }
  
  .feature-item i {
    font-size: 35px;
    color: #c1e1f1;
    margin-bottom: 15px;
  }
  
  .feature-item:hover {
    background: #0fa0de;
    color: white;
    transform: translateY(-5px);
  }
  
  .feature-item:hover i {
    color: white;
  }
  
  /* Clickable Sections */
  .school-sections {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  
  .section-card {
    background: #ffffff73;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 900px;
    width: 100%;
  }
  
  .section-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.2);
  }
  
  .grid-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
  }
  
  .grid-item {
    background: linear-gradient(135deg, #00e5ff, #75a539);
    color: white;
    padding: 25px;
    border-radius: 12px;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  .grid-item:hover {
    background: linear-gradient(135deg,  #eeff00, #75a539);
    transform: scale(1.05);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .grid-sections {
      grid-template-columns: 1fr;
    }
  
    .grid-item {
      font-size: 18px;
      padding: 20px;
    }
  }