/* Central icons area styling */
.central-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  gap: 10px;
  flex-wrap: wrap;
  /* Allows items to wrap to the next line */
}

/* Styling for each icon link within the central icons area */
.icon-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: white;
  margin: 5px;
  /* Ensures adequate spacing around each icon link */
}

/* Styling for images inside each icon link */
.icon-link img {
  width: 50px;
  height: 50px;
  transition: transform 0.3s ease;
  /* Smooth transition for hover effects */
}

/* Styling for the text label below each icon */
.icon-link span {
  margin-top: 5px;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 600px) {
  .icon-link img {
    width: 40px;
    /* Smaller icons for narrower screens */
    height: 40px;
  }
}

@media (max-width: 400px) {
  .icon-link img {
    width: 30px;
    /* Even smaller icons for very small screens */
    height: 30px;
  }

  .icon-link span {
    font-size: 12px;
    /* Smaller font size for the text labels */
  }
}

/* Hover effects for icon links to improve interactivity */
.icon-link:hover img {
  transform: scale(1.1);
  /* Slightly enlarges the icon on hover */
}

/* Styling for the blue background on /* Styling for the blue background on text labels within icon links */
.icon-link.blue-background span {
  background-color: #3760f6;
  color: white;
  /* Change text color to white for better visibility */
}