.academics-section {
  background: #ffc8a3; /* theme green */
  padding: 80px 0;
}

.academics-header {
  max-width: 1100px;
  margin: auto;
  color: #fff;
  margin-bottom: 30px;
}

.program-label {
  font-size: 13px;
  letter-spacing: 2px;
  color: #ff5a8a;
  font-weight: 700;
}

.academics-header h2 {
  font-size: 42px;
  font-weight: 800;
}

.academics-header p {
  font-size: 18px;
}

/* ACCORDION */
.accordion {
  max-width: 1100px;
  margin: auto;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
}

.accordion-item {
  border-bottom: 1px solid #eee;
}

.accordion-header {
  padding: 18px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion-header .left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.accordion-header h4 {
  margin: 0;
  font-size: 18px;
}

.accordion-header .icon {
  font-size: 26px;
}

.toggle {
  font-size: 22px;
  font-weight: bold;
}

.accordion-body {
  padding: 20px 25px;
  display: none;
  color: #555;
  line-height: 1.7;
}

/* ACTIVE */
.accordion-item.active .accordion-body {
  display: block;
}

.accordion-item.active .toggle {
  color: #ff4f7a;
}

/* COLOR THEMES */
.bg-pink {
  background: #fff0f5;
}
.bg-yellow {
  background: #fff8e1;
}
.bg-green {
  background: #f1f8e9;
}
.bg-blue {
  background: #e3f2fd;
}
.bg-dark {
  background: #e0f2f1;
}
.bg-rose {
  background: #fdecef;
}

.stats-section {
  padding: 90px 0;
  background: #fff7f3;
}

.stats-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-card {
  display: flex;
  justify-content: center;
}

/* Circle */
.circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 3px dashed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  animation: rotate 12s linear infinite;
}

/* Stop text rotation */
.circle * {
  animation: counterRotate 12s linear infinite;
}

/* Icons */
.circle i {
  font-size: 34px;
  margin-bottom: 10px;
}

/* Text */
.circle h2 {
  font-size: 34px;
  margin: 5px 0;
}

.circle p {
  font-size: 15px;
  font-weight: 600;
}

/* THEME COLORS (NO GREEN) */
.c1 {
  border-color: #ff6f61;
  color: #ff6f61;
}
.c2 {
  border-color: #4a90e2;
  color: #4a90e2;
}
.c3 {
  border-color: #f5a623;
  color: #f5a623;
}
.c4 {
  border-color: #d94fd3;
  color: #d94fd3;
}

/* Rotation */
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes counterRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .stats-container {
    grid-template-columns: 1fr;
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .academics-header h2 {
    font-size: 30px;
  }
}
