.gallery-card {
  border: 1px solid #e3e3e3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  background: #fff;
  width: 100%;
  
}
.gallery-card:hover {
  transform: translateY(-5px);
}
.gallery-img {
  height: 200px;
  object-fit: cover;
  width: 100%;
}
.gallery-body {
  padding: 1rem;
}
.gallery-title {
  font-size: 15px;
  margin-bottom: 30px !important;
  font-weight: 600;
  color: #1c4d41;
}
.gallery-desc {
  font-size: 0.9rem;
  color: #6c757d;
}
.backarrow{
  background: #d84050;
}
