.res-section {
  position: relative;
  min-height: 643px;
  padding: 80px 20px;
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  overflow: hidden;
}

/* IMAGE BACKGROUND WITH MULTIPLY */
.res-section::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: url("/assets/img/bg-texture.png") center / cover no-repeat;
  mix-blend-mode:multiply; */
  /* opacity: 0.9; */
  z-index: 0;


  background: linear-gradient(135deg, #ff6ec4, #7873f5, #4ade80, #facc15);
  background-size: 400% 400%;
  animation: gradientMove 15s ease infinite;
}

/* Animations */
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}


/* SOFT OVERLAY (optional but helps readability) */
/* .res-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  z-index: 1;
} */

/* CONTENT */
.res-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.res-title {
  font-size: 40px;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.res-subtitle {
  max-width: 620px;
  margin: 0 auto 50px;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  color: #1e1e1e;
}

/* CARDS */
.res-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.res-card {
  background: #FFFFFF4D;
  font-family: 'Roobert';
  backdrop-filter: blur(16px);
  border-radius: 18px;
  padding: 26px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.res-card h3 {
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 10px;
  font-weight: 500;
}

.res-card p {
  font-size: 14px;
  line-height: 20px;
  color: black;
  max-width: 80%;
}

/* ICON */
.res-icon {
  width: 75px;
  height: 75px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.res-icon img {
  width: 36px;
  height: auto;
}

.res-icon-title {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .res-section {
    padding: 0;
  }

  .res-container {
    max-width: 100%;
    padding: 0;
  }

  .res-cards {
    padding: 0;
    display: flex;
    gap: 0;
    overflow-x: scroll;
  }

  .res-card {
    min-width: 260px;
    max-height: 355px;
    margin-left: 16px;
    padding: 30px 40px !important;
    gap: 0;
  }

  .res-card:last-child {
    margin-right: 16px;
  }

  .res-title {
    font-size: 32px;
  }

  .res-subtitle {
    font-size: 16px;
    line-height: 20px;
  }

  .res-icon-title {
    flex-direction: column;
    align-items: flex-start;
  }

  .res-icon-title h3 {
    margin-top: 15%;
    order: 2;

  }

  .res-card p {
    max-width: 100%;
  }

}