/* Admission Process Cards */
.process-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  border-top: 5px solid var(--primary-color);
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.process-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -35px;
  left: 30px;
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 5px solid white;
  z-index: 2;
  transition: all 0.3s ease;
}

.process-card:hover .process-icon {
  background: var(--secondary-color);
  transform: scale(1.1) rotate(10deg);
}

.process-content {
  padding: 50px 25px 25px;
  position: relative;
}

.step-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--secondary-color);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.85rem;
}

.process-content h4 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.process-details {
  list-style: none;
  padding: 0;
  margin-top: 15px;
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
  padding-top: 15px;
}

.process-details li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.process-details li i {
  color: var(--secondary-color);
  margin-right: 10px;
  font-size: 0.9rem;
}

/* Wing Cards */
.wing-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.wing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.wing-header {
  padding: 25px;
  text-align: center;
  position: relative;
}

.primary-wing .wing-header {
  background: linear-gradient(135deg, #2193b0, #6dd5ed);
}

.middle-wing .wing-header {
  background: linear-gradient(135deg, #ff9966, #ff5e62);
}

.senior-wing .wing-header {
  background: linear-gradient(135deg, #8e2de2, #4a00e0);
}

.wing-icon {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: var(--primary-color);
  font-size: 2.2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.wing-card:hover .wing-icon {
  transform: scale(1.1) rotate(10deg);
}

.primary-wing .wing-icon {
  color: #2193b0;
}

.middle-wing .wing-icon {
  color: #ff9966;
}

.senior-wing .wing-icon {
  color: #8e2de2;
}

.wing-header h3 {
  color: white;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1.8rem;
}

.wing-body {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.class-grid {
  display: grid;
  gap: 20px;
  flex: 1;
}

.class-item h5 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 600;
  padding-bottom: 5px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.class-item ul {
  list-style: none;
  padding: 0;
}

.class-item ul li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.class-item ul li i {
  color: var(--secondary-color);
  margin-right: 10px;
  font-size: 0.9rem;
}

.wing-features {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.wing-features span {
  background: rgba(0, 0, 0, 0.05);
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
}

.wing-features span i {
  color: var(--secondary-color);
  margin-right: 5px;
  font-size: 0.8rem;
}

/* Admission Open Banner */
.admission-open {
  background: linear-gradient(135deg, var(--primary-color), #1a365d);
}

.admission-banner {
  padding: 50px 20px;
  text-align: center;
}

.admission-banner .btn-light {
  border-radius: 30px;
  padding: 12px 30px;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.admission-banner .btn-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .wing-card,
  .process-card {
    margin-bottom: 50px;
  }

  .process-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    top: -30px;
  }

  .wing-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }

  .wing-header h3 {
    font-size: 1.5rem;
  }

  .class-grid {
    gap: 15px;
  }
}

@media (max-width: 576px) {
  .admission-banner h2 {
    font-size: 2rem;
  }

  .process-content {
    padding: 45px 15px 20px;
  }

  .wing-body,
  .wing-header {
    padding: 20px 15px;
  }
}
