/* Reset default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* Set a background color for the whole page */
body {
    background-color: #f4f4f4;
    font-family: Arial, sans-serif;
}


/* Style Logo Banner */
.logo-bar img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 10rem;
    height: auto;
}


/* Style the navigation bar */
.navbar {
    background-color: #000000;
    justify-content: center;
    font-weight: bold;
}

.navbar-nav li {
    display: inline;
    margin: 0 0.625rem;
}

.logo-button {
    text-decoration: none;
    color: white;
}


/* Socials button style */
.socials {
    display: inline;
    color: #ffffff;
    align-items: center;
    align-content: center;
    text-align: center;
}

.socials svg {
    color: #ffffff;
    padding-bottom: 0.188rem;
    width: 1.25rem;
    height: 1.25rem;
    text-align: center;
}


/* Style the footer */
footer {
    color: #fff;
    text-align: center;
    font-size: 0.875rem;
}


/* Socials button bottom style */
.socials-btm {
    align-self: center;
    color: #ffffff;
    align-items: center;
    align-content: center;
    text-align: center;
}

.socials-btm .btn {
    color: #ffffff;
    padding: 0 3rem;
}


/* Copyright style */
.copyright {
    text-align: center;
}


/* Style the hero section */
.hero {
    background-size: fill;
    background-position: center;
    background-color: #ffffff;
    text-align: center;
    color: #000000;
    padding: 6.25rem 0;
}

.hero h1 {
    font-size: 3rem;
   
}

.hero p {
    font-size: 1.25rem;
}

.hero .row {
    align-self: center;
    margin: 0 8rem;
}

.hero-img {
    max-width: 100%;
    overflow: hidden;
}


/* Style the alt hero section */
.alt-hero {
    background-color: #ffffff;
    text-align: center;
    color: #000000;
    padding: 6.25rem 0;
}

.alt-hero h1 {
    color: #000000;
    font-size: 3rem;
}

.alt-hero p {
    font-size: 1.125rem;
}


/* Style the Categories section */
.sec-title {
    font-size: 2.25rem;
    font-weight: bold;
    text-align: center;
}

.sec {
    background-color: #79797962;
    color: #000000;
    padding: 5rem 0;
    text-align: center;
    font-weight: bold;
}

.sec .card {
    width: 25rem;
    height: 10rem;
    border-radius: 1.25rem;
    border-width: 0.188rem;
    border-color: #ffffff;
}

.card .sec-card-img {
    min-width: 100%;
    min-height: 100%;
    overflow: hidden;
}

.card-img-overlay {
    margin-top: 3rem;
}

.card-overlay-text {
    color: #ffffff;
    text-shadow: 0.188rem 0.188rem #020202;
}


/* Style the services section */
.separator {
    background-color: #adb5bd;
    text-align: center;
    padding: 10px 0;
}

.sec-title {
    color: white;
}

.services {
    color: #000000;
    padding: 3.125rem 0;
    text-align: center;
}

.services h3 {
    margin-bottom: 1.875rem;
}

.services .row {
    padding: 0.938rem;
}

.services .card {
    width: 25rem;
    padding: 0.125rem;
    border: #ffffff;
    background-color: #f4f4f4;
    border-radius: 1.25rem;
}

.services .card-img {
    width: 95%;
    align-self: center;
    padding: 2% 0;
    border-radius: 1.25rem;
}

.services .card-title {
    align-self: center;
    padding: 2% 0;
}

.services .card-text {
    align-self: center;
    padding: 1% 0;
}


/* Style the quote section */
.quote-form {
    background-color: #000000ae;
    background-repeat: no-repeat;
    background-size: 100% auto;
    text-align: center;
    padding: 1.25rem;
    margin: 1.25rem;
    border-radius: 6.25rem;
}

.quote-form h1 {
    padding-top: 0.625rem;
    color: #ffffff;
    font-size: 1.875rem;
}

.quote-form p {
    font-size: 1.125rem;
    color: #ffffff;
    margin-bottom: 1.875rem;
}

.quote-form form {
    max-width: 37.5rem;
    margin: 0 auto;
    text-align: left;
}

.quote-form label {
    display: block;
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 0.625rem;
    color: #ffffff;
}

.quote-form input[type="text"],
.quote-form input[type="email"],
.quote-form input[type="tel"],
.quote-form textarea {
    width: 100%;
    font-size: 1rem;
    margin-bottom: 1.25rem;
    border: 0.063rem solid #ccc;
    border-radius: 0.313rem;
}

.quote-form button {
    background-color: #008DD5;
    color: #ffffff;
    padding: 0.625rem 1.25rem;
    text-decoration: none;
    font-weight: bold;
    border-width: 0.188rem;
    border-radius: 1.875rem;
    border-color: #008DD5;
    transition: background-color 0.3s;
}

.quote-form button:hover {
    background-color: #0E34A0;
    color: #ffffff;
    border-color: #0E34A0;
}