.about-card-section {
  min-height: 100vh;
  width: 100%;
  padding: 2rem;
  display: flex;
  gap: 2rem;
  position: relative;
  align-items: center;
}

/* LEFT IMAGE */
.about-card-left {
  width: 45%;
  position: relative;
  z-index: 1;
}

.about-card-left img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

/* RIGHT GRID (Overlay) */
.about-card-right {
  position: absolute;
  right: 0;
  width: 70%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 2rem;
  gap: 2rem;
  z-index: 2;
}

/* CARD DESIGN */
.card-right {
  width: 100%;
  background-color: #02afb8;
  border-radius: 30px;
  padding: 30px;
  color: #fff;
  transition: 0.3s ease;
  border: 10px solid #fff;
}

/* TEXT */
.card-right h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.card-right p {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 1px;
}

@media (max-width: 1024px) {
  .about-card-section {
    flex-direction: column;
  }

  .about-card-left {
    width: 100%;
  }

  .about-card-right {
    position: static;
    width: 100%;
    gap: 1rem;
  }

  .card-right {
    border: none;
  }
}

@media (max-width: 767px) {
  .about-card-section {
    padding: 1rem;
    gap: 1rem;
  }

  .about-card-right {
    grid-template-columns: 1fr;
    padding: 0;
    gap: 1rem;
  }

  .card-right {
    padding: 20px;
  }

  .card-right h3 {
    font-size: 20px;
  }

  .card-right p {
    font-size: 15px;
  }
}
