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%;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    font-family: 'Myriad Pro', Arial, sans-serif;
    color: #324e63;
}

h1 {
    font-weight: 1000;
    -webkit-text-stroke: 0.5px currentColor;
    text-stroke: 0.5px currentColor;
}

h2, h3, h4, h5, h6 {
    font-weight: 500;
}

p {
    font-size: 20px;
    font-weight: 100;
}

.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;
}

.layout-header {
    width: 100%;
    min-height: 136px;
    height: 136px;
}

.layout-footer {
    min-height: 200px;
    background: #d47033;
    padding-top: 20px;
    margin-top: 0px;
}

.blueBannerTitle {
    font-size: 40px;
}

.img-link-hover {
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

    .img-link-hover:hover {
        transform: scale(1.08);
        z-index: 2;
    }


/* Responsive Design */
/* sm and up */
@media (min-width: 576px) {
    .blueBannerTitle {
        font-size: 30px;
    }
}


/* md and up */
@media (min-width: 768px) {
    blueBannerTitle {
        font-size: 45px;
    }
}

/* lg and up */
@media (min-width: 992px) {
    .blueBannerTitle {
        font-size: 60px;
    }
}

/* Ensure the collapsed navbar menu is visible and styled */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: #d47033 !important;
        position: absolute;
        width: 99.3%;
        top: 136px;
        right: 0;
        left: auto;
        z-index: 1050;
        margin-left: 0;
        margin-right: 0;
        text-align: right;
    }

    .navbar-nav .nav-link {
        color: #fff !important;
        text-align: center;
        font-weight: bold;
        padding: 1rem 0;
    }
}

@media (max-width: 767.98px) {
    .navbar-collapse {
        width: 99%;
    }
}

@media (max-width: 575.98px) {
    .navbar-collapse {
        width: 98.5%;
    }
}

.work-banner-img {
    width: 100vw;
    height: auto;
    aspect-ratio: 5/1;
    object-fit: cover;
}

@media (max-width: 576px) {
    .work-banner-img {
        width: 100vw;
        height: 40vw; /* Adjust as needed for mobile height */
        min-height: 180px;
        max-height: 300px;
        object-fit: cover;
        object-position: center;
    }
}