/* assets/css/index-styles.css */

.responsive-container {
  display: flex;
  flex-wrap: wrap;
  gap: 110px;
}

.responsive-item {
  text-align: center;
}

.responsive-item img {
  /* Default size */
  height: 225px;
  width: 375px;
  /* Add performance optimizations */
  object-fit: cover;
  transition: transform 0.3s ease;
}

.responsive-item img:hover {
  transform: scale(1.05);
}

.blinking {
  animation: blink 1s steps(2, start) infinite;
  color: red;
}

@keyframes blink {
  to {
    visibility: hidden;
  }
}

/* Desktop Software Section - yellow background added */
.desktop-software-section {
  background-color: yellow !important;
  padding: 40px 20px !important;
  margin: 40px 0 !important;
  width: 100% !important;
}