/* ===== Academics Section ===== */
.academics-section {
  padding: 80px 20px;
  background: #f8f9fa;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.section-title {
  font-size: 36px;
  color: #800020;
  margin-bottom: 10px;
  font-weight: 700;
  position: relative;
}



.section-subtitle {
  font-size: 18px;
  color: #333;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Academics Grid ===== */
.academics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* ===== Academic Cards ===== */
.academic-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
}

.academic-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.academic-card h3 {
  font-size: 22px;
  color: #0d9488;
  margin: 15px 0 10px;
}

.academic-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.4s ease;
  padding: 0 20px;
  color: #333;
  font-size: 16px;
}

.academic-card.active .academic-content {
  max-height: 150px;
  padding: 15px 20px 20px;
}

/* Hover Effects */
.academic-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.academic-card:hover img {
  transform: scale(1.1);
}

/* ===== Coming Soon ===== */
.coming-soon {
  opacity: 0.7;
  pointer-events: none;
}

.coming-soon h1 {
  font-size: 28px;
  color: #ff5722;
  margin-bottom: 10px;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
  .academics-section {
    padding: 60px 15px;
  }
  .section-title {
    font-size: 28px;
  }
  .section-subtitle {
    font-size: 16px;
  }
  .academic-card img {
    height: 180px;
  }
}
