/* ── MODULES ACCORDION STYLES ── */
.module-section {
  margin-bottom: 15px;
  background-color: rgba(16, 24, 32, 0.6);
  border: 1px solid rgba(0, 210, 255, 0.2);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.module-section:hover {
  border-color: rgba(0, 210, 255, 0.5);
  box-shadow: 0 0 15px rgba(0, 210, 255, 0.1);
}

.module-section-header {
  width: 100%;
  padding: 18px 25px;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #fff;
  transition: background-color 0.3s ease;
}

.module-section-header:hover {
  background-color: rgba(0, 210, 255, 0.05);
}

.module-section-title {
  font-family: var(--font-rajdhani);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.module-section-icon {
  font-size: 0.9rem;
  color: #00d2ff;
  transition: transform 0.3s ease;
}

.module-section.open .module-section-icon {
  transform: rotate(180deg);
}

.module-section-content {
  padding: 0 25px 25px 25px;
  border-top: 1px solid rgba(0, 210, 255, 0.1);
}

.module-section-content .modules-grid {
  margin-top: 25px;
}