/* --- RESPONSIVENESS --- */
@media (max-width: 600px) {
.side-menu-container {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    max-width: 900px;
    display: flex;
    transform: translateX(-100%);
    transition: transform 0.4s ease-out;
    z-index: 1000;
    background: linear-gradient(135deg, #293484c7, #293484c7);
}
  .primary-nav {
    width: 35%;
    padding: 70px 20px 20px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}


@media (max-width: 768px) {
  .utility-bar-tabs {
    justify-content: space-between;
    gap: 10px;
    padding-top: 10px;
    flex-wrap: wrap;
  }
  .utility-bar-wrapper {
    margin-top: -50px;
    padding-bottom: 20px;
  }
  .utility-bar-container {
    width: 95%;
    padding: 0 15px 15px 15px;
  }
  .tab-item {
    font-size: 1em;
    padding: 10px 0;
  }

  .tracking-form {
    display: block;
    padding-top: 20px;
  }

  .tracking-input-group {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .track-button {
    width: 100%;
  }
  .top-nav .logo img {
    height: 61px;
    width: auto;
    position: absolute;
    left: 55%;
    transform: translateX(-50%);
    bottom: 4px;
    padding-right: 30px;
  }
  nav.top-nav .nav-links {
    display: none;
  }
  .hero-content h1 {
    font-size: 38px;
    width: 86%;
    padding-left: 90px;
  }
  section.solutions-section {
    padding: 20px 0px;
  }
}

/* --- Mobile Responsive (Unchanged) --- */
@media (max-width: 1024px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  #interactive-section {
    padding: 50px 40px;
  }
}
@media (max-width: 600px) {
  .solutions-grid {
    grid-template-columns: 1fr;
  }
  #interactive-section {
    padding: 30px 20px;
  }
}
section.solutions-section {
  padding: 100px 130px;
}
@media (max-width: 768px) {
  section.solutions-section {
    padding: 20px 0px;
  }
}

@media (max-width: 900px) {
  .sl-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sl-col-2 {
    grid-column: span 2;
  }
}

/* --- Responsive Adjustments --- */
@media (max-width: 900px) {
  .sl-glry-container {
    flex-direction: column;
    /* Stacks cards vertically on smaller screens */
  }

  .sl-glry-card-large {
    max-height: 350px;
    min-height: 350px;
  }

  .sl-glry-card-small:first-child {
    min-height: 150px;
  }

  /* Make the two half-cards display side-by-side below 900px */
  .sl-glry-side-column {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .sl-glry-card-small {
    flex: 1 1 45%;
    /* Allows two cards per row with a gap */
    min-height: 150px;
  }

  /* Revert the first small card back to full width */
  .sl-glry-card-small:first-child {
    flex-basis: 100%;
  }
}

@media (max-width: 600px) {
  /* Stack all cards vertically on very small screens */
  .sl-glry-side-column {
    flex-direction: column;
  }

  .sl-glry-card-small {
    flex-basis: 100%;
    min-height: 120px;
  }
}


