.downheader {
  padding: 40px;
}

.downheader .sldier-head p {
  font-size: 24px;
  font-weight: bold;
  margin: 0;
  color: #333;
  line-height: 1.5;
}

.downheader .slider-images-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.downheader .slider-images-area .img1 {
  width: 100px;
  height: 100px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.downheader .slider-images-area .img1:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.downheader .slider-images-area .img1 img {
  max-width: 100%;
  max-height: 80%;
  object-fit: contain;
  display: block;
}
@media (max-width: 768px) {
  .downheader {
    padding: 20px;
    /* margin-top: 60px; */
  }

  /* Hide the left text */
  .downheader .sldier-head {
    display: none;
  }

  /* Make image section full width */
  .downheader .col-lg-10 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  .downheader .slider-images-area {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .downheader .slider-images-area .img1 {
    width: 80px;
    height: 80px;
    margin: 5px;
  }
}
