/* Program Page Specific Styles */

/* Program Header */
.program-header {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../images/Connectivity_02.jpg")
    center / cover no-repeat;
  color: var(--white);
  text-align: center;
  padding: 150px 0 100px;
  margin-top: 90px;
}

.program-header h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.program-header p {
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto;
}

/* Program Overview */
.program-overview {
  background-color: var(--white);
}

.program-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  align-items: center;
}

.program-image {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.program-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.program-text p {
  margin-bottom: 20px;
}

.program-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  text-align: center;
}

.stat h3 {
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 5px;
}

/* Program Features */
.program-features {
  background-color: var(--light-bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background-color: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.feature-icon i {
  font-size: 36px;
  color: var(--primary-color);
}

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

/* Program Structure */
.program-structure {
  background-color: var(--white);
}

.structure-content {
  max-width: 800px;
  margin: 0 auto;
}

.timeline {
  position: relative;
  padding: 30px 0;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  width: 3px;
  background-color: var(--primary-color);
}

.timeline-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: 40px;
}

.timeline-marker {
  position: absolute;
  left: 0;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
}

.timeline-content {
  background-color: var(--light-bg);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.timeline-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.duration {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  margin-top: 10px;
}

.structure-note {
  text-align: center;
  margin-top: 40px;
  font-style: italic;
}

/* Success Stories */
.success-stories {
  background-color: var(--light-bg);
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.story-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.story-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.story-image {
  height: 200px;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.story-card:hover .story-image img {
  transform: scale(1.1);
}

.story-content {
  padding: 25px;
}

.story-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.story-name {
  display: block;
  font-weight: bold;
  margin-top: 15px;
  font-style: italic;
}

/* Call to Action */
.program-cta {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url("../images/IMG_9403.JPG") center / cover
    fixed;
  color: var(--white);
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.cta-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.cta-content p {
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .program-content {
    grid-template-columns: 1fr;
  }

  .program-image {
    margin-bottom: 30px;
    height: 300px;
  }

  .program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .program-header {
    padding: 120px 0 80px;
  }

  .program-header h1 {
    font-size: 32px;
  }

  .program-header p {
    font-size: 16px;
  }

  .program-stats {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .stat {
    text-align: center;
    width: 100%;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .cta-content h2 {
    font-size: 28px;
  }

  .stories-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .program-header h1 {
    font-size: 28px;
  }

  .program-header p {
    font-size: 14px;
  }

  .timeline-item {
    padding-left: 50px;
  }

  .timeline-marker {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  .timeline-content h3 {
    font-size: 18px;
  }

  .feature-card {
    padding: 20px;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
  }

  .feature-icon i {
    font-size: 28px;
  }

  .cta-content h2 {
    font-size: 24px;
  }
}

