.about-banner {
  background-color: #20c997; /* Teal color */
  padding: 100px 0;
  background-image: url('assets/img/about-banner.jpg'); /* Optional - add your banner image */
  background-size: cover;
  background-position: center;
  position: relative;
}

.about-banner {
  background-color: #20c997;
  padding: 100px 0;
  background-image: url('assets/img/about-banner.jpg'); /* Optional */
  background-size: cover;
  background-position: center;
  position: relative;
}

/* button */

.btn-quote {
  background-color: #20C997;
  color: #ffffff;
  border: none;
}

.btn-quote:hover,
.btn-quote:focus {
  background-color: #2B2C2E;
  color: #fff;
  box-shadow: 0 0 0 0.2rem rgba(209, 26, 42, 0.25);
}

/*  */

.about-banner::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(32, 201, 151, 0.7); /* Teal overlay */
  z-index: 0;
}

.about-banner .container {
  position: relative;
  z-index: 1;
}

.why-card {
  border: 2px solid transparent;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  padding: 20px;
}

.why-card:hover {
  border-color: #20c997;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(32, 201, 151, 0.2);
}

.why-card .card-text {
  font-weight: 500;
  color: #333;
}

.work-card {
  border: 2px solid transparent;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.work-card:hover {
  border-color: #20c997;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(32, 201, 151, 0.2);
}

.work-card .card-title {
  color: #333;
  font-weight: 600;
}


.feature-card {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  height: 100%;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  background: #ffffff;
}
.feature-card h5 {
  font-weight: 600;
  color: #20c997;
}
.section-title {
  color: #20c997;
  font-weight: 700;
  margin-bottom: 20px;
}
  .feature-card {
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    background: #fff;
  }

  .feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }

  .feature-card h5 {
    color: #20c997;
    font-weight: 600;
  }

  .bg-light-blue {
    background: #f0f6ff;
  }