/* Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
  /* Styles for phones */
  .top-bar {
    height: 100%;
    padding: 10px 0;
  }
}

/* Small devices (less than 768px) */
@media (max-width: 767.98px) {
  /* Styles for small tablets */
  .main-header {
    display: none;
  }
  .top-bar {
    display: none;
  }
  .top-bar-small {
    display: flex;
    background-color: #fff;
    padding: 15px 0px;
  }
  .small-menu-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background-color: #000;
  }
  .hero-section{
    height: 400px;
    background-color: red;
  }
}

/* Medium devices (less than 992px) */
@media (max-width: 991.98px) {
  /* Styles for tablets */
}

/* Large devices (less than 1200px) */
@media (max-width: 1199.98px) {
  /* Styles for desktops */
}

/* Extra large devices (less than 1400px) */
@media (max-width: 1399.98px) {
  /* Styles for large desktops */
}

/* XXL devices (very large screens, custom upper bound) */
@media (max-width: 1599.98px) {
  /* Optional: for huge screens */
}
