  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
   font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f8f9fa;
    color: #333;
    line-height: 1.6;
  }


  header {
    background: linear-gradient(to right, #003366, #0066cc);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
  }

  header .logo {
    display: flex;
    align-items: center;
  }

  header .logo img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    border-radius: 5px;
  }

  header .nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
  }

  header .nav-links a {
    text-decoration: none;
    color: whitesmoke;
    padding: 8px 20px;
    border-radius: 30px;
    background: linear-gradient(135deg, #005eff, #00b2ff);
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 90, 255, 0.4);
    transition: 0.3s;
  }

  header .nav-links a:hover {
    color: #fca311;
  }

  .slider-section {
    padding: 40px 20px;
  }

  .slider-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #003366;
    margin-bottom: 20px;
  }

  .slider-container {
    position: relative;
    overflow: hidden;
  }

  .slider-track {
    display: flex;
    gap: 20px;
    animation: slideCards 5s linear infinite;
  }

  @keyframes slideCards {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-50%);
    }
  }

  .program-card {
    min-width: 250px;
     background: linear-gradient(to right, #7b7d80, #d4d6d8);
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-decoration: none;
    color: black;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .program-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
  }

  .program-card h3 {
    font-size: 1.1rem;
    color: #102a71;
    margin-bottom: 10px;
  }

  .program-card p {
    font-size: 0.95rem;
    line-height: 1.4;
    color: #222;
  }


  main.container {
    padding: 40px 20px;
  }

  .program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }

  .carousel {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 10px;
  }

  .carousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
  }

  .carousel img:first-child {
    opacity: 1;
  }

  .explore-hover {
    display: block;
    text-align: center;
    padding: 0.5rem 0;
    background: #102a71;
    color: white;
    border-radius: 0 0 10px 10px;
  }

  .program p {
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
  }


footer {
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  background: #0a4a8a;
  color: white;
}

  @media (max-width: 768px) {
    .slider-title {
      font-size: 22px;
    }

    .program-card {
      min-width: 240px;
      padding: 15px;
    }

    header {
      flex-direction: column;
      gap: 10px;
    }

    header .nav-links {
      flex-direction: column;
      gap: 10px;
    }
  }