.container {
  justify-content: center;
  align-items: center;
  gap: 4rem;
}

.card {
  width: 500px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
  cursor: pointer;
}

.card img {
  width: 100%;
  height: auto;
  display: block;
}



.card-title {
  color: var(--Black-Text, #000);
font-family: Arial;
font-size: 18px;
font-style: normal;
font-weight: 700;
line-height: 22.4px; /* 124.444% */
}

.card-desc {
  color: #767676;
font-family: "Arial";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 22.4px; /* 140% */
}



/* Hover Effect */
.card:hover {
  transform: scale(1.05);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
}

.p-disc {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
}

.disc {
  color: #767676;
  font-size: 16px;
  font-weight: 400;
}

.bg-black {
  background-color: black;
}

.card-img {
  width: 30px!important;
  height: 22px!important;
}

@media (max-width: 1700px) {
  .card {
    width: 400px;
  }
}

@media (max-width: 750px) {
  .card {
    /* width: 100%; */
  }

  .container {
    gap: 1rem;
  }
}