.other-hero{
  background-color: rgba(0, 0, 0, 0.5);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 40vh;
   background-image: url(../images/about-img.jpg);
  background-size: cover;
}
.other-hero::before{
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
  background-image: url(../images/image\ copy\ 21.png);
  background-size: cover;
  z-index: -1;
}


.contact-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.icon-circle {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  margin: 0 auto;
}

.contact-card h4 {
  margin-top: 15px;
  font-size: 18px;
}

.contact-card p {
  font-size: 14px;
  color: #555;
}
