/* ===== School Header Section ===== */

/* Global font setup */
body {
    font-family: 'Poppins', 'SolaimanLipi', sans-serif;
    font-weight: 400;
    color: #222;
  }
  
  /* English text priority */
  .school-name-eng {
    font-family: 'Poppins', sans-serif;
  }
  
  /* Bangla text priority */
  .school-name-ban {
    font-family: 'SolaimanLipi', 'Poppins', sans-serif;
  }
  
  /* Optional: refine contact section */
  .school-contact {
    font-family: 'Poppins', sans-serif;
  }
  
.school-header {
    background-color: #2e7d78; /* green-teal tone */
    color: #fff;
    padding: 20px 30px;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  }
  
  .school-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    background: #fff;
    border-radius: 50%;
    padding: 6px;
    border: 2px solid #fff;
  }
  
  .school-name-eng {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
    line-height: 1.2;
  }
  
  .school-name-ban {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
    color: #f1f1f1;
  }
  
  .school-contact p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
    color: #e6e6e6;
  }
  
  /* responsive tweaks */
  @media (max-width: 768px) {
    .school-header {
      text-align: center;
    }
  
    .school-logo {
      margin-bottom: 10px;
      width: 80px;
      height: 80px;
    }
  
    .container-fluid {
      flex-direction: column;
      align-items: center;
    }
  
    .school-contact {
      text-align: center !important;
      margin-top: 10px;
    }
  }
  