
  .swiper.project {
    width: 100%;
    position: relative;
  }

  .swiper.project.swiper-slide {
    display: flex;
    justify-content: center;
    padding: 0; /* Loại bỏ padding không cần thiết */
  }

  .swiper.project .card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    width: 100%; /* Đảm bảo card chiếm hết chiều rộng */
    margin-right: 20px !important; /* Đảm bảo không có margin xung quanh các card */
    cursor: pointer;
  }

  .swiper.project .card:hover {
    transform: translateY(-5px);
  }

  .swiper.project .card img {
    width: 100%;
    height: 250px;
    padding: 10px;
    object-fit: contain;
  }

  .swiper.project .card h3 {
    margin: 12px 0 12px;
    font-size: 20px;
    font-weight: bold;
  }

  .swiper.project .card p {
    margin: 0 0 20px;
    color: #333;
    font-weight: 400;
    font-size: 14px;
  }

  /* Nút điều hướng đẹp */
  .swiper.project .swiper-button-next,
  .swiper.project .swiper-button-prev {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    color: #333;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }

  .swiper.project .swiper-button-next:hover,
  .swiper.project .swiper-button-prev:hover {
    background-color: #333;
    color: #fff;
    transform: scale(1.1);
  }

  .swiper.project .swiper-button-next::after,
  .swiper.project .swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
  }
  .swiper.project .swiper-pagination{
    display: none !important;
  }
  .container.project{
    margin-bottom: 40px;
  }
  .container.project h2{
    font-size: 22px;
    font-weight: 500;
    color: #2962ff;
    text-align: center;
    margin-bottom: 30px;
    margin-top: 30px;
  }
  .container.project  .swiper-slide a{
    display: block;
    text-decoration: none;
    font-weight: 500;
    color: #2962ff;
  }

  