@media (max-width: 991px) {
  .navbar-brand {
    margin-right: auto;
    padding-left: 10px;
  }
  .side-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh !important;
    overflow-y: auto;
    background: #fff;
    padding: 20px;
    transition: 0.3s;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
  }
  .side-menu.show {
    left: 0;
    pointer-events: auto;
    opacity: 1;
  }

  .close-menu {
    position: absolute;
    top: 25px;
    right: 20px;
    font-size: 25px;
    cursor: pointer;
  }
}

@media (max-width: 576px) {
  .review-height {
    height: 210px;
  }
  .documents-tabs .nav-tabs {
    flex-direction: column;
  }
  .documents-tabs .nav-tabs .nav-link {
    width: 100%;
    text-align: center;
  }
  .logo {
    width: 115px;
  }

  .top {
    padding-top: 70px;
  }
}

@media (min-width: 576px) {
  .logo {
    width: 155px;
  }
}
@media (max-width: 768px) {
  .order-process {
    background-color:var(--uk-orange);
  }
  .section-bg {
    background-color: var(--uk-purple);
  }
}

@media (min-width: 768px) {
  .section-bg {
    position: relative;
    
    overflow: hidden;
  }

  .section-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(
            rgba(110, 5, 123, 0.4),   /* Purple overlay */
            rgba(237, 122, 69, 0.4)   /* Orange overlay */
        ),
        url("../images/hero-banner.svg") center/cover no-repeat;
    
    z-index: -1;
  }
 .order-process {
    background: linear-gradient(
        to bottom,
        rgba(110, 5, 123, 0.95) 0%,   /* Purple strong at top */
        rgba(237, 122, 69, 0.8) 50%, /* Orange in middle */
        rgba(0, 0, 0, 0.6) 100%      /* Black fade at bottom */
    ),
    url(../images/order-process-bg-img.svg);
    background-size: cover;
    background-position: center;
   
}

  .form-sticky {
    top: 80px;
  }
}

@media (min-width: 991px) {
  .nav-item.dropdown:hover > .dropdown-menu {
    display: block;
  }

  .nav-item.dropdown > .nav-link.dropdown-toggle {
    pointer-events: none;
  }

  .form-sticky {
    position: sticky;
    top: 70px;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .top {
    padding-top: 90px;
  }
  .documents-tabs .nav-tabs {
    flex-direction: column;
  }
  .documents-tabs .nav-tabs .nav-link {
    margin: auto;
    width: 90%;
    text-align: center;
  }
}
@media (min-width: 1200px) {
  .form-width {
    width: 480px !important;
  }
}
