body {
    background-image: url('../images/white-haulage-background.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #D5D4D4;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

#navbar, footer {
    background-color: #D5D4D4;
    padding: 20px 0;
}

#navbar-brand, #navbar-nav .nav-link, footer {
    font-size: 24px;
    color: #120707;
}

.navbar-nav .nav-link {
    transition: color 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover {
    color: #007bff;
}

#services-link, #contact-link {
    color: #120707;
}

.form-control:focus {
    border-color: transparent;
    box-shadow: none;
    outline: none;
}

.btn-submit {
    color: #000000; /* Text color */
    background-color: #f0f0f0; /* Background color */
    text-shadow: 1px 1px 1px #cccccc; /* Text shadow */
}

h1, h2, #welcome p, #contact p {
    text-align: center;
}

.bg-black {
    background-color: #000;
    color: #fff;
}

.section {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9), transparent);
    color: white;
    padding: 80px 0;
    margin-bottom: 20px;
}

#social-media {
    margin-bottom: 0;
}

#scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 20px;
    background-color: #D5D4D4; /* Button background color */
    color: #120707; /* Button text color */
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    cursor: pointer;
    display: none; /* Initially hidden */
}

#scroll-to-top:hover {
    background-color: #0056b3; /* Button background color on hover */
}

footer {
    text-align: center;
}