/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    scroll-behavior: smooth;
    min-height: 100%;
  }
  
  body {
    font-family: "Montserrat", sans-serif;
    background: url('Artboard 1.png') no-repeat center center fixed;
    background-size: cover;
    color: #293241;
    position: relative;
  }
  
  /* ===== NAVIGATION STYLES ===== */
  nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem;
    margin-top: 4rem;
    width: 70%;
    margin-inline: auto;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    z-index: 10;
    color: #fff;
  }
  
  .menu-toggle {
    display: none;
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 2001;
  }
  
  .menu-toggle img {
    width: 26px;
    height: 26px;
    cursor: pointer;
  }
  
  #hamburger-icon,
  #close-icon {
    width: 26px;
    height: 26px;
    cursor: pointer;
  }
  
  #close-icon {
    display: none;
  }
  
  .menu-transition {
    transition: top 0.4s ease-in-out;
    position: fixed;
  }
  
  .mainMenu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2%;
    list-style: none;
    margin: 0;
    padding: 3rem;
    color: #FFFFFF;
  }
  
  .mainMenu a {
    text-decoration: none;
    color: inherit;
    padding: 0.6rem;
    display: block;
    text-align: center;
  }
  
  .mainMenu a:hover {
    opacity: 0.8;
    transition: opacity 0.3s ease-in-out;
  }
  
  /* ===== HEADER ===== */
  .te-welcome {
    text-align: center;
    font-size: 50px;
    color: #ffffff;
    padding: 2rem;
    width: 80%;
    margin: 5rem auto 0 auto;
    font-weight: 1000;
  }
  
  .te-header {
    font-size: 18px;
    padding: 1.5rem;
    width: 85%;
    margin: 2rem auto;
    text-align: center;
    color: #293241;
  }
  
  /* ===== CARDS AND CONTENT ===== */
  main {
    padding-bottom: 6rem;
  }
  
  .program-wrapper {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 2rem;
    margin: 4rem auto 4rem auto;
    width: 70%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .doc-card {
    border-left: 8px solid #ffffff;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    background-color: transparent;
    transition: transform 0.3s ease;
  }
  
  .doc-card:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }
  
  .doc-card h3 {
    font-size: 28px;
    font-weight: 800;
    color: #293241;
    margin-bottom: 1rem;
    text-align: center;
  }
  
  .doc-subtitle {
    font-size: 16px;
    color: #293241;
    text-align: center;
    margin-bottom: 1rem;
  }
  
  /* ===== IMAGE SLIDER ===== */
  .scrollable-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    border-radius: 10px;
    padding: 1rem;
    overflow: hidden;
    margin: 0 auto;
    max-width: 100%;
  }
  
  .image-slider {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    width: 100%;
  }
  
  .image-slider img {
    width: 45%;
    border-radius: 10px;
    flex-shrink: 0;
  }
  
  .scroll-btn {
    background-color: transparent;
    color: #000;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 0.5rem;
  }
  
  .scroll-btn.left {
    left: 0.5rem;
  }
  
  .scroll-btn.right {
    right: 0.5rem;
  }
  
  /* ===== META ICONS ===== */
  .doc-meta {
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 1rem;
    font-size: 0.9rem;
    align-items: center;
    gap: 1rem;
  }
  
  .doc-meta img {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
  }
  
  .doc-meta img:hover {
    transform: scale(1.25);
  }
  
  /* ===== FOOTER ===== */
  footer {
    text-align: center;
    color: #ffffff;
    padding: 2rem;
    font-size: 14px;
    background-color: transparent;
    position: relative;
    clear: both;
  }
  
  /* ===== ANIMATIONS ===== */
  .hidden {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s ease-out;
  }
  
  .show {
    opacity: 1;
    transform: scale(1);
  }
  
  @keyframes bounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }
  
  /* ===== MOBILE STYLES ===== */
  @media (max-width: 800px) {
    nav {
      flex-direction: column;
    }
  
    .menu-toggle {
      display: block;
    }
  
    .mainMenu {
      flex-direction: column;
      color: #293241;
      position: fixed;
      top: -100%;
      left: 50%;
      transform: translateX(-50%);
      width: 85%;
      padding: 2rem;
      z-index: 1500;
      text-align: center;
      font-size: 14px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
      border-bottom-left-radius: 2rem;
      border-bottom-right-radius: 2rem;
      transition: top 0.4s ease-in-out;
    }
  
    .mainMenu.menu-visible {
      top: 0;
    }
  
    .program-wrapper {
      width: 95%;
      padding: 1rem;
    }
  
    .image-slider img {
      width: 80%;
    }
  
    .scroll-btn {
      font-size: 1.5rem;
    }
  
    .doc-card h3 {
      font-size: 16px;
    }
  
    .doc-subtitle {
      font-size: 12px;
    }
  
    .te-welcome {
      font-size: 20px;
      margin-top: 3rem;
    }
  
    .te-header {
      font-size: 14px;
      width: 90%;
    }
  
    footer {
      font-size: 12px;
      padding: 2rem;
    }
  }