/* Programs Page Specific Styles */
:root {
    --tvet-primary: #0056b3;
    --tvet-secondary: #ff6b00;
    --tvet-accounting: #02c39a;
    --tvet-hardware: #2196f3;
    --tvet-marketing: #ff9800;
    --tvet-badge-bg: rgba(0, 86, 179, 0.1);
    --tvet-level-bg: rgba(0, 0, 0, 0.05);
  }
  
  /* Programs Header Section */
  .programs-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .programs-header h1 {
    color: var(--tvet-primary);
    margin-bottom: 1rem;
  }
  
  .programs-header p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
  }
.page-banner {
  position: relative;
  height: 300px;
  background-image: url("/image/hero.webp");
  background-size: cover;
  background-position: center;
  color: white;
  display: flex;
  align-items: center;
  margin-top: 80px;
}
  /* TVET Programs Section */
  .tvet-programs-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
  }
  
  .tvet-programs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  .tvet-programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
  }
  
  .tvet-program-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  
  .tvet-program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
  }
  
  .tvet-program-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    position: relative;
  }
  
  .tvet-program-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
  }
  
  .tvet-program-icon.accounting {
    background-color: var(--tvet-accounting);
  }
  
  .tvet-program-icon.hardware {
    background-color: var(--tvet-hardware);
  }
  
  .tvet-program-icon.marketing {
    background-color: var(--tvet-marketing);
  }
  
  .tvet-program-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    padding-right: 70px;
    color: var(--text-color);
  }
  
  .tvet-program-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  
  .tvet-program-levels {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
  }
  
  .tvet-level-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    background-color: var(--tvet-badge-bg);
    color: var(--tvet-primary);
  }
  
  .tvet-program-body {
    padding: 1.5rem;
    flex-grow: 1;
  }
  
  .tvet-program-description {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.6;
  }
  
  .tvet-program-features {
    margin-bottom: 1.5rem;
  }
  
  .tvet-program-features h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
  }
  
  .tvet-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .tvet-features-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
  }
  
  .tvet-features-list li i {
    color: var(--tvet-primary);
    font-size: 1.1rem;
    margin-top: 0.2rem;
  }
  
  .tvet-level-details {
    margin-top: 2rem;
  }
  
  .tvet-level-details h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
  }
  
  .tvet-level-accordion {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
  }
  
  .tvet-level-item {
    border-bottom: 1px solid var(--border-color);
  }
  
  .tvet-level-item:last-child {
    border-bottom: none;
  }
  
  .tvet-level-header {
    padding: 1rem 1.5rem;
    background-color: var(--tvet-level-bg);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
  }
  
  .tvet-level-header:hover {
    background-color: rgba(0, 0, 0, 0.08);
  }
  
  .tvet-level-header h5 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
  }
  
  .tvet-level-icon {
    transition: transform 0.3s ease;
  }
  
  .tvet-level-header.active .tvet-level-icon {
    transform: rotate(180deg);
  }
  
  .tvet-level-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .tvet-level-content.active {
    padding: 1.5rem;
    max-height: 500px;
  }
  
  .tvet-level-description {
    margin-bottom: 1rem;
  }
  
  .tvet-level-courses {
    margin-top: 1rem;
  }
  
  .tvet-level-courses h6 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }
  
  .tvet-courses-list {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .tvet-courses-list li {
    margin-bottom: 0.5rem;
  }
  
  .tvet-program-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.02);
  }
  
  .tvet-program-duration {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
  }
  
  .tvet-program-duration i {
    color: var(--tvet-primary);
  }
  
  .tvet-program-actions {
    display: flex;
    gap: 1rem;
  }
  
  /* TVET Program Details */
  .tvet-program-details {
    padding: 5rem 0;
  }
  
  .tvet-details-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  .tvet-details-header {
    margin-bottom: 3rem;
    text-align: center;
  }
  
  .tvet-details-header h2 {
    color: var(--tvet-primary);
    margin-bottom: 1rem;
  }
  
  .tvet-details-header p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
  }
  
  .tvet-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
  
  .tvet-details-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .tvet-details-image img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .tvet-details-content h3 {
    margin-bottom: 1.5rem;
    color: var(--text-color);
  }
  
  .tvet-details-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
  }
  
  .tvet-details-list li {
    padding: 0.75rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border-bottom: 1px solid var(--border-color);
  }
  
  .tvet-details-list li:last-child {
    border-bottom: none;
  }
  
  .tvet-details-list li i {
    color: var(--tvet-primary);
    font-size: 1.2rem;
    margin-top: 0.2rem;
  }
  
  /* TVET Levels Explanation */
  .tvet-levels-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
  }
  
  .tvet-levels-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  .tvet-levels-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .tvet-levels-header h2 {
    color: var(--tvet-primary);
    margin-bottom: 1rem;
  }
  
  .tvet-levels-header p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
  }
  
  .tvet-levels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  .tvet-level-card {
    background-color: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
  }
  
  .tvet-level-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
  }
  
  .tvet-level-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--tvet-primary);
  }
  
  .tvet-level-card p {
    color: var(--text-light);
    line-height: 1.6;
  }
  
  /* CTA Section */
  .tvet-cta-section {
    padding: 5rem 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
      url("./image/hero.webp");
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
  }
  .cta-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
      url("../image/hero.webp");
    background-size: cover;
    background-position: center;
    color: white;
    padding: 5rem 0;
    text-align: center;
  }
  
  .tvet-cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  .tvet-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
  }
  
  .tvet-cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
  }
  
  .tvet-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
  }
  
  /* Responsive Styles */
  @media (max-width: 992px) {
    .tvet-programs-grid {
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
  
    .tvet-details-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  
    .tvet-details-image {
      order: 1;
    }
  
    .tvet-details-content {
      order: 2;
    }
  }
  
  @media (max-width: 768px) {
    .tvet-program-header {
      text-align: center;
      padding-top: 2.5rem;
    }
  
    .tvet-program-icon {
      position: relative;
      top: auto;
      right: auto;
      margin: 0 auto 1.5rem;
    }
  
    .tvet-program-title {
      padding-right: 0;
    }
  
    .tvet-program-levels {
      justify-content: center;
    }
  
    .tvet-program-footer {
      flex-direction: column;
      gap: 1rem;
    }
  
    .tvet-cta-buttons {
      flex-direction: column;
      gap: 1rem;
    }
  }
  
  @media (max-width: 576px) {
    .tvet-programs-grid {
      grid-template-columns: 1fr;
    }
  }
  