/* Hero Section for Team Page */
.team-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(rgba(12, 74, 154, 0.85), rgba(8, 51, 102, 0.9)),
    url("../Images/uss.jpeg");

  background-size: cover;
  background-position: center 25%;
  color: var(--white);
  overflow: hidden;
  padding-top: 80px;
}

/* Additional styles for programs page */
.programs-hero {
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--blue-dark) 100%
  );
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.programs-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23E19A61" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
  background-size: cover;
  opacity: 0.3;
}

.programs-hero .container {
  position: relative;
  z-index: 2;
}

.free-badge {
  background: var(--accent-copper);
  color: var(--white);
  padding: 12px 32px;
  border-radius: 50px;
  font-size: 1.25rem;
  font-weight: 700;
  display: inline-block;
  margin-top: 20px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Program Navigation */
.programs-nav {
  width: 100%;
  background: var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 80px;
  z-index: 100;
  padding: 15px 0;
}

.programs-nav-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.programs-nav-list a {
  padding: 10px 20px;
  border: 2px solid var(--gray-light);
  border-radius: 25px;
  color: var(--gray-dark);
  font-weight: 600;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.programs-nav-list a:hover,
.programs-nav-list a.active {
  background: var(--accent-copper);
  border-color: var(--accent-copper);
  color: var(--white);
}

/* Program Section */
.program-section {
  padding: 100px 0;
  scroll-margin-top: 160px;
}

.program-section:nth-child(even) {
  background: var(--gray-pale);
}

.program-section:nth-child(odd) {
  background: var(--white);
}

.program-header {
  margin-bottom: 48px;
}

.program-icon-large {
  width: 100px;
  height: 100px;
  background: var(--blue-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.program-section:nth-child(even) .program-icon-large {
  background: var(--copper-pale);
}

.program-icon-large i {
  font-size: 3rem;
  color: var(--primary-blue);
}

.program-section:nth-child(even) .program-icon-large i {
  color: var(--accent-copper);
}

.program-badge-free {
  background: var(--accent-copper);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 16px;
}

.program-title {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 16px;
}

.program-description {
  font-size: 1.125rem;
  color: var(--gray-dark);
  line-height: 1.8;
  margin-bottom: 32px;
}

.program-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  height: 400px;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

/* Program Details */
.program-details {
  margin-top: 40px;
}

.detail-box {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
  border-left: 4px solid var(--accent-copper);
}

.program-section:nth-child(even) .detail-box {
  background: var(--white);
}

.detail-box h4 {
  color: var(--primary-blue);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.detail-box h4 i {
  color: var(--accent-copper);
}

.learning-list {
  list-style: none;
  padding: 0;
}

.learning-list li {
  padding: 12px 0;
  display: flex;
  align-items: start;
  gap: 12px;
  border-bottom: 1px solid var(--gray-light);
}

.learning-list li:last-child {
  border-bottom: none;
}

.learning-list i {
  color: var(--accent-copper);
  margin-top: 4px;
  flex-shrink: 0;
}

/* Info Cards */
.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.info-card {
  background: var(--blue-pale);
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

.program-section:nth-child(even) .info-card {
  background: var(--copper-pale);
}

.info-card-icon {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 12px;
}

.program-section:nth-child(even) .info-card-icon {
  color: var(--accent-copper);
}

.info-card-label {
  font-size: 0.875rem;
  color: var(--gray-medium);
  margin-bottom: 8px;
  font-weight: 600;
  text-transform: uppercase;
}

.info-card-value {
  font-size: 1.25rem;
  color: var(--gray-dark);
  font-weight: 700;
}

/* Program Stats */
.program-stats {
  background: var(--primary-blue);
  color: var(--white);
  border-radius: 12px;
  padding: 32px;
  margin-top: 32px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 24px;
  margin-top: 20px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-copper);
  margin-bottom: 8px;
}

.stat-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

/* Gallery */
.program-gallery {
  margin-top: 40px;
}

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

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  height: 200px;
  background: var(--gray-light);
  cursor: pointer;
  transition: var(--transition);
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Testimonial */
.program-testimonial {
  background: var(--copper-pale);
  border-left: 4px solid var(--accent-copper);
  border-radius: 8px;
  padding: 32px;
  margin-top: 40px;
}

.testimonial-quote {
  font-size: 1.125rem;
  font-style: italic;
  color: var(--gray-dark);
  line-height: 1.8;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid var(--accent-copper);
}

.testimonial-info h5 {
  color: var(--primary-blue);
  margin-bottom: 4px;
}

.testimonial-info p {
  color: var(--gray-medium);
  margin: 0;
  font-size: 0.875rem;
}

/* CTA Buttons */
.program-cta {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .program-cta {
    flex-direction: column;
  }

  .program-cta .btn {
    width: 100%;
  }
}

/* Application Process */
.application-process {
  background: var(--white);
  padding: 80px 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step::after {
  content: "";
  position: absolute;
  top: 40px;
  right: -16px;
  width: 32px;
  height: 2px;
  background: var(--accent-copper);
}

.process-step:last-child::after {
  display: none;
}

@media (max-width: 768px) {
  .process-step::after {
    display: none;
  }
}

.process-number {
  width: 80px;
  height: 80px;
  background: var(--accent-copper);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.process-step h4 {
  color: var(--primary-blue);
  margin-bottom: 12px;
}

.process-step p {
  color: var(--gray-medium);
}

/* FAQ for Programs */
.program-faq {
  background: var(--gray-pale);
  padding: 80px 0;
}

/* Comparison Table */
.program-comparison {
  background: var(--white);
  padding: 80px 0;
}

.comparison-table {
  width: 100%;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.comparison-table thead {
  background: var(--primary-blue);
  color: var(--white);
}

.comparison-table th,
.comparison-table td {
  padding: 20px;
  text-align: left;
  border-bottom: 1px solid var(--gray-light);
}

.comparison-table tbody tr:hover {
  background: var(--blue-pale);
}

.comparison-table i.fa-check {
  color: #198754;
  font-size: 1.25rem;
}

@media (max-width: 768px) {
  .comparison-table {
    display: block;
    overflow-x: auto;
  }
}
