.units-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #eef2f7 100%);
}
.unit-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.unit-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(0, 123, 255, 0.05);
  transform: rotate(25deg);
  transition: 0.6s;
}
.unit-card:hover::before {
  left: 0;
  top: 0;
}
.unit-icon {
  font-size: 40px;
  color: #007bff;
  margin-bottom: 15px;
  transition: transform 0.4s ease;
}
.unit-card:hover .unit-icon {
  transform: scale(1.2) rotate(10deg);
}
.unit-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0;
}
.section-title {
    position: relative;
    font-size: 2.4rem;
    font-weight: 700;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3rem;
    padding-bottom: 12px;
}

.section-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(90deg, #007cb1, #00c6ff);
}
 .text_color{
    color: #154061;

  }