/* Features Cards Section */
.features {
  background: #f9f9f9;
  padding: 20px 80px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.feature-card img {
  width: 50px;       /* icon size */
  height: 50px;
  flex-shrink: 0;    /* prevent shrinking */
}

.feature-text h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 4px;
  color: #000;
}

.feature-text p {
  font-size: 10px;
  color: #555;
  margin: 0;
}


/* Who We Are Section*/
.about-badge {
  background: #1f8afc;
}

.badge-number {
  color: #ffffff;
}

.about-badge p {
  color: #ffffff;
}

.about-right .highlight {
  color: #007bff;
}

.feature-box img {
  width: 100px;
  height: 100px;
  margin-left: -25px;
  margin-bottom: -15px;
}