
/* Section */
.departments-section {
 margin: 10px auto 40px;
}

/* Title */
.department-title {
  color: var(--text-black);
  font-size: 38px;
  font-weight: 700;
  margin-bottom:20px !important;
}



/* Grid */
.dept-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-content: center; 
}

/* Card */
.dept-card {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  background: #fff;
  color: var(--primary-blue);
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s;
  min-height: 100px;
  border: 1px solid #e5e7eb;
}

/* Alternate color */
.dept-card:nth-child(even) {
  background: var(--column-bg);
}

/* Hover */
.dept-card:hover {
  background: var(--primary-blue);
  color: #fff;
  transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 768px) {
  .department-title {
    font-size: 24px;
  }

  .dept-card {
    font-size: 14px;
    padding: 15px;
  }
}