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%;
}

body {
  margin-bottom: 60px;
}

.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;
}


/*HOME PAGE*/
.hero-banner {
    background: url('/img/hero_optimized.jpg') no-repeat center center/cover;
    height: 350px;
    width: 100vw; /* ensures full viewport width */
    margin-left: calc(-50vw + 50%); /* centers the full-width section */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
    background-color: aqua;
    margin-top: -15px;
}

.hero-content {
    max-width: 800px;
    padding: 0px;
}

.company-overview, .why-choose, .services {
    max-width: 1116px;
    margin: 0 auto;
    padding: 40px 0;
}

.feature-box, .service-box {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    padding: 20px;
    margin-bottom: 20px;
}

    .service-box img {
        max-width: 80px;
        margin-bottom: 15px;
    }

.why-choose img {
    max-width: 100%;
    border-radius: 10px;
}