.swiper {
    width: 100%;
    height: 100vh;
  }

  .slide-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 20px;
    padding: 40px;
  }

  .text-section {
    flex: 1;
    background: #3c79ec;
    color: white;
    padding: 80px;
    border-radius: 12px;
  }

  .text-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .text-section p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .text-section a {
    color: white;
    font-weight: bold;
    text-decoration: none;
    border: 1px solid white;
    padding: 10px 15px;
    border-radius: 6px;
    transition: 0.3s;
  }

  .text-section a:hover {
    background: white;
    color: black;
  }

  .image-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .image-section img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
  }
  
   /* Responsive */
 @media (max-width: 768px) {
    .slide-content {
      flex-direction: column;
    }
    .text-section {
      text-align: center;
    }
  }

 