.image-container-1 {
  overflow: hidden;
  border-radius: 8px;
}

.image-container-1 img {
  width: 100%;
  height: 170px;
  transition: transform 0.4s ease;
  display: block;
}

.image-container-1:hover img {
  transform: scale(1.05);
}

.image-title {
  font-weight: 700;
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.1rem;
  color: #102E50;
}

.image-grid-section {
  padding: 40px 0;
  background-color: #f9f9f9;
}

.image-grid-section .item-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
}

.image-grid-section h5 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.image-grid-section p {
  font-size: 14px;
  color: #555;
  margin: 0;
}

