* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    width: 100%;
    overflow-x: hidden;
  }

  .navbar.sticky-top {
  position: sticky !important;
  top: 0;
  z-index: 1050; /* Same as Bootstrap modal */
}
  

.multi-connect-banner {
    width: 100%;
    height: 270px; /* small height you want */
    overflow: hidden;
    position: relative;
  }
  
  .banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* crop smartly */
  }
  




#model-details {
  border-top: 1px solid #ddd;
  padding-top: 20px;
}

.modal-content {
  background-color: white;
  border-radius: 10px;
}

.btn-close {
  border: none;
  background: transparent;
  font-size: 1.5rem;
}

.modal-content {
  background-color: #fff;
  border-radius: 10px;
  max-width: 500px;
  margin: auto;
}

.btn-close {
  font-size: 1.3rem;
  background: none;
  border: none;
}


#service-modal {
  display: none; /* Hidden initially */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5);
}


.modal-content-custom {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  width: 90%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.2);
}

.close-btn {
  float: right;
  font-size: 24px;
  cursor: pointer;
}
