@import url('https://fonts.googleapis.com/css2?family=Righteous&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');
.features-section {
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
  background-color: #fff;

}

.explore-section {
  margin-top: 40px;
}

.contact-section-container { 
  margin-top: 20px;
}

.features-title {
  font-size: 2rem;
  font-weight: 400;
  font-family: 'Righteous';
  margin-bottom: 30px;
}

.features-subtitle {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1rem;
  color: #666;
  font-family: 'Roboto', sans-serif;
}

.features-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.grid-section {
  margin-bottom: 40px;
}

.feature-card-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  cursor: pointer;
}

.feature-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 0 1px #eee;
  padding: 60px 20px !important;
  text-align: center;
  position: relative;
  z-index: 2;
}

.feature-card img {
  width: 40px;
  margin-bottom: 15px;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 400;
  font-family: 'Righteous';
}

.feature-card p {
  font-size: 0.95rem;
  color: #555;
  font-family: 'DM Sans';
}

/* Decorative Square */
.decor-square {
  position: absolute;
  width: 80px;
  height: 80px;
  background-color: #fcefeb;
  border-radius: 5px;
  z-index: 1;
}

.top-left {
    top: -30px;
    left: -30px;
}

.top-right {
    top: -30px;
    right: -30px;
}


@media (max-width: 768px) {
  .features-grid {
    flex-direction: column;
    align-items: center;
  }

  .feature-card-wrapper {
    max-width: 90%;
  }

  .top-right {
    display: none
  }

  .third-grid-section {
    display: none;
  }

  .contact-section-container {
    margin-top: 0 !important;
  }
}

@media (max-width: 576px) {
.feature-card-wrapper {
width: 80%;
}
.feature-card {
padding: 30px 20px !important;
}

}
