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 {
    padding-top: 30px;
    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;
}

/* hero background image */
/*.bgimage {*/
    /* reduce height so hero doesn't fill entire viewport */
    /*min-height: 50vh;
    height: auto;*/
    /* leave room for fixed navbar; adjust value to match your navbar height */
    /*padding-top: 32px;*/
    /* background image settings */
    /*background-image: url("/images/BI_3.jpg");
    background-color: black;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;*/
    /* use flexbox for centering (avoids absolute positioning issues) */
    /*display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}*/

.bgimage {
    position: relative;
    background-color: #051a4b;
    overflow: hidden;
}
/**/
    /* subtle data-style diagonal pattern */
    .bgimage::after {
        content: "";
        position: absolute;
        inset: 0;
        background-image: linear-gradient( 135deg, rgba(255, 255, 255, 0.06) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.06) 50%, rgba(255, 255, 255, 0.06) 75%, transparent 75%, transparent );
        background-size: 40px 40px;
        opacity: 0.15;
        z-index: 1;
        pointer-events: none;
    }

/* ensure hero content stays above */
.hero-text {
    position: relative;
    z-index: 2;
}


/* responsive font sizes so the hero area stays compact */
.hero_title {
    font-size: 1.8rem;
}

.hero_desc {
    font-size: 1.05rem;
}

@media (min-width: 768px) {
    .hero_title {
        font-size: 2.5rem;
    }

    .hero_desc {
        font-size: 1.4rem;
    }
}

/* about section image css */
.imageAboutPage {
    width: 100%;
}


/* services section css */
.servicesText.card {
    height: 280px;
    cursor: pointer;
}

.servicesIcon {
    font-size: 36px;
    text-align: center;
    width: 100%;
}

.card-title {
    text-align: center;
}

.card:hover .servicesIcon {
    color: #008000;
}

.servicesText:hover {
    border: 1px solid #008000;
}

/* display background color black on navbar scroll */
.navbarScroll.navbarDark {
    background-color: black;
}

/* social media icons styling */
.social-icons {
    font-size: 36px;
    cursor: pointer;
}

.fa-facebook:hover, .fa-instagram:hover, .fa-twitter:hover, .fa-linkedin:hover, .fa-twitch:hover {
    color: #008000;
}

.fab {
    color: #000000;
}
/* footer styling */
#footer {
    background-color: #808080;
    text-align: center;
}

/* spacing on all sections */
#about, #services, #portfolio, #contact {
    margin-top: 4rem;
    padding-top: 4rem;
}

#contact {
    padding-bottom: 4rem;
}


.navbarScroll .nav-link {
    color: white !important;
}

.navbarScroll .navbar-brand {
    color: white !important;
}

/*.navbar.fixed-top {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
}*/