
  

  .carousel-wrapper {
    
    position: relative;
    width: 100%;
    max-width: 1200px;
    overflow: hidden;
    margin: 40px auto;
  }
  
  .carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  
  .card {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
    box-sizing: border-box;
    padding: 20px;
    margin: 0 8px;
    background: #fff;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  .card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
  }
  
  .btn {
    margin-top: 10px;
    padding: 8px 16px;
    background-color:  #213555;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
  }
  
  .nav {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background-color: orange;
    border: none;
    color: white;
    font-size: 24px;
    padding: 8px;
    cursor: pointer;
    z-index: 1;
    border-radius: 50%;
  }
  
  .prev {
    display:none;
  }
  
  .next {
    display:none;
  }

  .course-description {
    padding: 20px 30px;
    font-size: 1rem;
    line-height: 1.6;
    color: #2c3e50;
    margin: 60px;
  }

  
  
  @media (max-width: 1024px) {
    .card {
      min-width: 300px;
    }
  }
  
  .info-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    background: #f9f5f0;
    animation: fadeInUp 1s ease-in-out both;
  }
  
  .info-card {
    max-width: 900px;
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    font-family: 'Segoe UI', sans-serif;
    font-size: 1.1rem;
    color: #2c3e50;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  
  .info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  }
  
  .info-card p {
    margin-bottom: 1em;
    line-height: 1.7;
    text-align: justify;
  }
  
  .info-card strong {
    color: #7a5fff;
  }
  
  /* Fade In Animation */
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(30px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

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

  