* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background: #f4f7fb;
    font-family: Arial, sans-serif;
    color: #222;
  }
  
  .top-header {
    background: #0d47a1;
    color: white;
    padding: 18px;
  }
  
  .brand {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  
  .logo {
    width: 55px;
    height: 55px;
    background: white;
    color: #0d47a1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
  }
  
  .brand h1 {
    font-size: 22px;
  }
  
  .brand p {
    font-size: 14px;
    opacity: 0.9;
  }
  
  .navbar {
    background: #1565c0;
    display: flex;
    gap: 8px;
    padding: 10px;
    overflow-x: auto;
  }
  
  .navbar a {
    color: white;
    text-decoration: none;
    background: rgba(255,255,255,0.16);
    padding: 9px 13px;
    border-radius: 8px;
    white-space: nowrap;
    font-size: 14px;
  }
  
  .navbar a:hover {
    background: white;
    color: #1565c0;
  }
  
  .page {
    width: 94%;
    max-width: 1200px;
    margin: auto;
    padding: 20px 0;
  }
  
  .hero {
    background: linear-gradient(135deg, #1565c0, #0d47a1);
    color: white;
    padding: 45px 20px;
    border-radius: 18px;
    text-align: center;
    margin-bottom: 22px;
  }
  
  .hero h2 {
    font-size: 32px;
    margin-bottom: 10px;
  }
  
  .hero p {
    font-size: 18px;
  }
  
  .section {
    margin: 28px 0;
  }
  
  .section h2 {
    color: #0d47a1;
    margin-bottom: 14px;
  }
  
  .stats-grid,
  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
  }
  
  .card {
    background: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  }
  
  .card h3 {
    color: #0d47a1;
    margin-bottom: 8px;
  }
  
  .contact p {
    background: white;
    padding: 14px;
    margin-bottom: 8px;
    border-radius: 10px;
  }
  
  .footer {
    background: #0d47a1;
    color: white;
    text-align: center;
    padding: 16px;
    margin-top: 30px;
  }
  /* =====================================
   HEADER COLLEGE LOGO
===================================== */
.college-logo-header {
  width: 70px;
  height: 70px;
  object-fit: contain;

  background: white;
  border-radius: 14px;

  padding: 5px;

  box-shadow: 0 4px 14px rgba(0,0,0,0.15);

  flex-shrink: 0;
}