.features-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  padding: 60px 40px;
  background-color: #fff;
  font-family: 'Poppins', sans-serif;
}

.feature-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.feature-box img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.feature-box h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #2a2a2a;
}

.feature-box p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #555;
}

.feature-box a {
  color: #0077cc;
  text-decoration: none;
}

.features-section i {
    width: 70px;
    height: 50px;
    color: #00c194;
    margin-bottom: 10px;
}


/* Forex Pulse Services Section */
#services-forexpulse {
  background: #f6fcfc;
  padding: 80px 20px;
  text-align: center;
}

.forexpulse-heading {
  font-size: 2.8rem;
  color: #003c3c;
  margin-bottom: 10px;
}

.forexpulse-subtitle {
  color: #555;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 40px;
}

.forexpulse-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.forexpulse-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 0.8s forwards;
  animation-delay: calc(var(--i) * 0.2s);
}

.forexpulse-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.forexpulse-card img {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
}

.forexpulse-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #0c3c3c;
}

.forexpulse-card p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 20px;
}

.forexpulse-buy-btn {
  background: #00c194;
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}

.forexpulse-buy-btn:hover {
  background: #009e7c;
}

/* Animation */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#forexpulse-services-detailed {
    padding: 50px 20px;
    background-color: #f8f9fa;
  }

  .services-heading {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #083358;
  }

  .service-row {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
    flex-wrap: wrap;
  }

  .service-image {
    flex: 150px 150px 150px;
    max-width: 50%;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
  }

  .service-content {
    flex: 1 1 400px;
  }

  .service-content h3 {
    font-size: 1.8rem;
    color: #000080;
    margin-bottom: 15px;
  }

  .service-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
  }

  .purchase-button {
    padding: 12px 25px;
    background-color: #00c194;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .purchase-button:hover {
    background-color: #029e7c;
  }

  @media (max-width: 768px) {
    .service-row {
      flex-direction: column;
      text-align: center;
    }
    .service-content {
      padding-top: 20px;
    }
  }