/* ✅ Responsive Container Layout */
.course-container {
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 0 20px;
}

/* ✅ Make boxes flexible on smaller screens */
.university-box {
  width: 100%;
  max-width: 300px;
  /* margin: 10px auto; */
}

/* ✅ Responsive Header Padding */
.course-header {
  margin: 20px 20px;
  font-size: 28px;
  padding: 10px;
}



/* ✅ Footer responsiveness */
.footer {
  text-align: center;
  padding: 20px 10px;
  font-size: 14px;
}

/* ✅ Media Queries for tablets and phones */
@media screen and (max-width: 768px) {
  .course-header {
    font-size: 24px;
  }

  .university-box {
    height: auto;
  }

  .university-box img {
    width: 100px;
    height: 100px;
  }

  .university-btn {
    padding: 0.5rem 1rem;
  }
}

@media screen and (max-width: 480px) {
  .navbar {
    font-size: 14px;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
  }

  .course-header {
    font-size: 20px;
  }
}



/* header, .inline-rect, .sidebar, .mobile-bottom-ad { margin: 20px auto; text-align:center; } */

/* Responsive hide/show */
@media (max-width: 767px) {
  .sidebar { display:none; }          
  header { display:none; }            
}

@media (min-width: 768px) {
  /* .mobile-bottom-ad { display:none; } only show mobile banner on phones */
}

