.hero-section {
  background-image: url("/assets/design-images/490643282_1237798618358162_4488914719336265548_n.jpg");
}

/* ================================== */
/*  PROGRAMS  */
/* ================================== */
.program-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;

  .p-card-image {
    position: relative;
    height: 320px;
    overflow: hidden;
  }

  .p-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }

  .program-card:hover .p-card-img {
    transform: scale(1.05);
  }

  .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
      to bottom,
      transparent 0%,
      rgba(0, 0, 0, 0.1) 100%
    );
  }

  .p-card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.865rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);

    i {
      font-size: 1.5rem;
    }
  }

  .p-card-content {
    padding: 10px 30px;
    height: 110px;
    width: 100%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: absolute;
    bottom: 0;
    background: linear-gradient(to top, white, white, white, white, #ffffff00);
  }

  .p-card-title {
    font-family: "Poppins", sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 5px;
    line-height: 1.3;
  }

  .p-card-description {
    color: #718096;
    font-size: 0.865rem;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
  }
}
/* Color Variations for Different Cards */
.program-card:nth-child(2) .p-card-badge {
  background: linear-gradient(135deg, #4192d8 0%, #00f2fe 100%);
  box-shadow: 0 6px 20px rgba(79, 172, 254, 0.3);
}

.program-card:nth-child(3) .p-card-badge {
  background: linear-gradient(135deg, #258645 0%, #38f9d7 100%);
  box-shadow: 0 6px 20px rgba(67, 233, 123, 0.3);
}

.program-card:nth-child(4) .p-card-badge {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
  box-shadow: 0 6px 20px rgba(250, 112, 154, 0.3);
}

.program-card:nth-child(5) .p-card-badge {
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
  box-shadow: 0 6px 20px rgba(168, 237, 234, 0.3);
}

.program-card:nth-child(6) .p-card-badge {
  background: linear-gradient(135deg, #5ee7df 0%, #b490ca 100%);
  box-shadow: 0 6px 20px rgba(94, 231, 223, 0.3);
}

/* ================================== */
/*  SUBJECTS GRID - GET & FET PHASES  */
/* ================================== */

.subjects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  width: 100%;
}

@media (min-width: 768px) {
  .subjects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.phase-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.phase-icon {
  font-size: 2rem;
  margin-right: 0.75rem;
  color: #0d0d0d; /* primary color */
}

.phase-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary); /* primary color */
}

.subject-subtitle {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #111;
}

.subject-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.subject-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.5rem;
  color: #555;
  font-size: 0.865rem;
}

.check-icon {
  display: inline-block;
  width: 1rem;
  margin-right: 0.5rem;
  margin-top: 0.15rem;
  font-weight: 900;
  color: #0d0d0d; /* primary color */
}
