html {
    font-size: 14px;
    
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
  width:100%
}

body {
    margin: 0;
    padding-bottom: 60px;
    max-width: 1400px;
    width: 100%;
    font-family: 'Quicksand', sans-serif;
    margin-left: auto;
    margin-right: auto;
    overflow-x: hidden;
    box-sizing: border-box;
}




.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

.bw-container {
    height: auto;
    width: 100%;
    padding: 100px 40px; 
    box-sizing: border-box;
}

.brightware-logo {
    width:260px;

}

.bw-nav {
    width: 100vw;
    min-width:100%;
    height: 100px;
    position: fixed; 
    top: 0;
    left: 0;
    z-index: 1030;
    backdrop-filter: blur(6px);
    overflow: hidden;
    
}

.nav-scrolled {
    background-color: white !important;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); 
    color:#000;

}

.nav-bg-scrolled {
    background-image: url('/css/images/nav-background-dark.png'); 
}

.nav-text {
    font-weight: 500;
    font-size: 18px;
    color: #fff;
}

@media (max-width: 600px) {
    .bw-container {
        padding: 60px 16px; 
    }
}

.mobile-drawer {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100vh;
    background-color: #000;
    transition: left 0.3s ease;
    z-index: 1050;
    padding-top: 60px;
    overflow-y: auto;
}

    .mobile-drawer.show {
        left: 0;
    }

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1040;
}

    .mobile-overlay.show {
        display: block;
    }

.nav-tabs::-webkit-scrollbar {
    display: none;
}

.nav-tabs {
    -ms-overflow-style: none; /* IE 10+ */
    scrollbar-width: none; /* Firefox */
}

.bw-label {
    padding: 15px;
    margin: 20px 0px 20px 15px;
}






