/* ================================
   homepromise Styles
=================================== */

.homepromise-section {
  display: flex;
  justify-content: center;
  padding: 0 0 40px;
}

.homepromise-container {
  width: 90%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.homepromise-box {
  background: rgba(238, 232, 225, 0.6); /* slightly transparent */
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  opacity: 0;                /* GSAP will animate */
  transform: translateY(50px);
  text-align: center;
}

/* Titles */
.homepromise-title {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  margin-bottom: 15px;
	font-weight: 400;
}

/* Images */
.homepromise-img {
  width: 70%;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* Description */
.homepromise-desc {
  font-size: clamp(0.9rem, 1.6vw, 1rem);
  line-height: 1.4;
}

/* Responsive — stack on smaller screens */
@media(max-width: 1000px) {
  .homepromise-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 600px) {
  .homepromise-container {
    grid-template-columns: 1fr;
  }
	
	.homepromise-img {
  width: 40%;
}
}
