.fullworkcard {
    height: 560px;
  }
  @media only screen and (max-width: 1450px) {
    .blueket-card-noise{
  height: 354px;
    }
  }
  .blueket-card-noise{
  height: 560px;
    }
  .inline-btn:hover {
    color: #ff5722;
  }

/* Custom smaller button styles for hero section */
.hero-buttons .sw-btn {
  font-size: 16px;
  padding: 0px 24px;
  line-height: 48px;
  border-radius: 6px;
}

.hero-buttons .sw-btn i {
  font-size: 14px;
}

.button-group {
  display: flex;
  flex-direction: row; /* Default to horizontal */
  gap: 1rem;           /* Horizontal gap by default */
}

/* For small screens, stack vertically and adjust gap direction */
@media (max-width: 600px) {
  .button-group {
    flex-direction: column;
    gap: 1rem;         /* Now the gap is vertical between stacked buttons */
  }
}