.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    background: white;
  }
  
  /* Brand Colors */
  
  .social-icon.linkedin {
    color: #0a66c2;
  }
  
  .social-icon.instagram {
    color: #e4405f;
  }
  
  .social-icon.facebook {
    color: #1877f2;
  }
  
  .social-icon.twitter {
    color: #1da1f2;
  }
  
  /* Hover Effect */
  
  .social-icon:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }

.capability-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  height: 100%;
  text-align: center;
  transition: all 0.35s ease;
  border: 1px solid #eee;
}

.capability-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-color: #c1ff72;
}

.icon-box {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(18, 21, 24, 0.849);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.icon-box i {
  font-size: 28px;
  color: #c1ff72;
  transition: 0.3s;
}

.capability-card:hover .icon-box {
  background: #c1ff72;
}

.capability-card:hover .icon-box i {
  color: rgba(18, 21, 24, 0.849);
}

.capability-card h5 {
  font-weight: 600;
  margin-bottom: 12px;
}

.capability-card p {
  color: #6c757d;
  font-size: 15px;
}



