
.VisaSection {
  padding-top: 80px;

  .visa-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;

    button {
      padding: 10px 20px;
      border-radius: 30px;
      border: none;
      background: #f1dfe3;
      font-size: 14px;
      cursor: pointer;
      transition: 0.3s;

      &.active {
        background: #d63357;
        color: #fff;
      }

      &:hover {
        background: #d63357;
        color: #fff;
      }
    }
  }

  .visa-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;

    @media (max-width: 992px) {
      grid-template-columns: repeat(2, 1fr);
    }

    @media (max-width: 576px) {
      grid-template-columns: 1fr;
    }
  }

  .visa-card {
    display: block;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s;

    &:hover {
      transform: translateY(-6px);
    }

    .image {
      aspect-ratio: 418/280;

      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
    }

    .content {
      padding: 35px;

      h3 {
        font-size: 20px;
        margin-bottom: 8px;
      }

      .price {
        color: var(--primary-color);
        margin-bottom: 15px;
        opacity: 1;
      }

      ul {
        margin-bottom: 20px;
        padding-left: 18px;

        li {
          font-size: 14px;
          color: #555;
          margin-bottom: 6px;
          list-style: disc;
        }
      }

      .apply-btn {
        display: block;
        text-align: center;
        padding: 12px;
        border-radius: 30px;
        background: #d63357;
        color: #fff;
        text-decoration: none;
        width: 100%;
        border: none;

        &:hover {
          background: #b82c4a;
        }
      }
    }
  }
}
.WhyChooseus {
  padding: 100px 0;
  @media (max-width: 992px) {
    padding: 70px 0;
  }
  @media (max-width: 768px) {
    padding: 50px 0;
  }
  @media (max-width: 574px) {
    padding: 40px 0;
  }
  .Title {
    text-align: center;
    margin-bottom: 55px;
    p {
      br {
        @media (max-width: 600px) {
          display: contents;
        }
      }
    }
  }
  .container {
    display: block;
  }
  .WhyChoose_wrapper {
    display: flex;
    gap: 25px;

    @media (max-width: 992px) {
      flex-wrap: wrap;
    }
  }

  .card {
    flex: 1;
    background: var(--white-color);
    padding: 33px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: 0.3s;

    &:hover {
      transform: translateY(-5px);
    }

    .icon {
      width: 50px;
      height: 50px;
      background: var(--primary-color);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;

      i {
        color: var(--white-color);
        font-size: 20px;
      }
    }

    h3 {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    p {
      line-height: 1.6;
      font-size: 16px;
    }
  }

  @media (max-width: 768px) {
    .WhyChoose_wrapper {
      flex-direction: column;
    }
  }
}
