body {
      font-family: 'Poppins', sans-serif;
      background-color: #f6f6f6; /* light gray background */
      color: #333;
    }

    /* Header */
    .header-section {
      padding: 1.5rem 0;
    }

    .navbar-brand img {
      height: 90px;
      width: 90px;
      object-fit: cover;
     /* border-radius: 50%;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);*/
    }

    /* Splash Section */
    .splash-section {
     /* padding: 4rem 2rem;*/
    }

    .splash-section h1 {
      font-weight: 700;
      font-size: 2.2rem;
      margin-bottom: 1rem;
      line-height: 1.3;
    }

    .splash-section p {
      font-size: 1rem;
      line-height: 1.8;
      max-width: 720px;
      margin-bottom: 1.5rem;
    }

    .coming-soon {
      font-size: 2rem;
      font-weight: 600;
      color: #222;
      margin-top: 2rem;
    }

    /* Campus Image */
    .image-rounded {
      border-top-left-radius: 40%;
      border-bottom-right-radius: 40%;
      width: 100%;
      height: 480px; /* increased height for better balance */
      object-fit: cover;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    }

    /* Cards Section */
    .card-custom {
      border-radius: 20px;
      overflow: hidden;
      background: white;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    }

    .card-custom:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
    }

    .card-custom img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .card-title {
      text-align: center;
      font-weight: 600;
      padding: 1rem;
      color: #333;
    }
     /* Footer */
    footer {
      background-color: #274f93;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    color: #ddd;
    }