/* Theme Colors */
.theme-primary {
  color: #fcb32f;
}
.theme-secondary {
  color: #006666;
}
.bg-theme-primary {
  background: #fcb32f;
}
.bg-theme-secondary {
  background: #006666;
}

.gradient-primary {
  background: linear-gradient(135deg, #fcb32f 0%, #ff9a3d 100%);
}
.gradient-secondary {
  background: linear-gradient(135deg, #006666 0%, #008080 100%);
}

/* Common Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}
.fade-in-down {
  opacity: 0;
  transform: translateY(-30px);
  transition: all 0.6s ease-out;
}
.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease-out;
}
.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s ease-out;
}

.fade-in-up.visible,
.fade-in-down.visible,
.fade-in-left.visible,
.fade-in-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* Program Cards */
/* Equal Height Cards */
.equal-height-row {
  display: flex;
  flex-wrap: wrap;
}

.equal-height-row .col-md-3,
.equal-height-row .col-md-4,
.equal-height-row .col-sm-6 {
  display: flex;
}

.program-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #fcb32f;
  transition: all 0.3s ease;
  height: 420px; /* Fixed exact height */
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.program-card .icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fcb32f;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.program-card .icon-circle i {
  font-size: 2rem;
  color: white;
}

.program-card h3 {
  color: #006666;
  margin-bottom: 20px;
  font-size: 1.3rem;
  text-align: center;
  height: 60px; /* Fixed height for title */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 100%;
  line-height: 1.3;
}

.program-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: center;
  flex: 1;
  display: flex;
  align-items: center;
  width: 100%;
}

.progress-container {
  width: 100%;
  flex-shrink: 0;
  margin-bottom: 15px;
}

.program-card .program-features {
  flex-shrink: 0;
  text-align: center;
  width: 100%;
  margin-top: auto;
}

.program-card:hover {
  border-left-color: #006666;
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.program-card:hover .icon-circle {
  background: #006666;
  transform: rotate(360deg);
}

.badge {
  background: #fcb32f;
  color: white;
  padding: 6px 14px;
  border-radius: 15px;
  font-size: 12px;
  margin: 3px;
  display: inline-block;
}

.bg-theme-secondary {
  background: #006666;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .program-card {
    height: 400px;
  }
}

@media (max-width: 576px) {
  .program-card {
    height: 380px;
  }
}

.stat-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid #fcb32f;
}

.stat-card:hover {
  transform: scale(1.05);
  border-top-color: #006666;
}

.counter-number {
  font-size: 3rem;
  font-weight: bold;
  color: #fcb32f;
  display: block;
  margin-bottom: 10px;
}

.icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fcb32f;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.icon-circle i {
  font-size: 2rem;
  color: white;
}

.program-card:hover .icon-circle {
  background: #006666;
  transform: rotate(360deg);
}

.badge {
  background: #fcb32f;
  color: white;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 12px;
  margin: 2px;
  display: inline-block;
}

.bg-theme-secondary {
  background: #006666;
}
