/* Basic reset and styles */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: Arial, sans-serif;
    color: #333;
}
/* Header styling */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #1a1a1a;
}
header .logo img {
    width: 65px; /* Adjust width as needed */
    height: auto;
}
header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}
header nav ul li {
    display: inline;
}
header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s;
}
header nav ul li a:hover {
    color: #f7b733;
}
header .cta-button {
    background-color: #f7b733;
    color: #1a1a1a;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}
header .cta-button:hover {
    background-color: #e6a823;
}
/* Base styles for header */
.header {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    background-color: #1a1a1a;
}

/* Button styling */
.button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 15px;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
}
.button:hover {
    background-color: #45a049;
}
/* Media query for smaller screens */
@media (max-width: 600px) {
    .header {
        flex-direction: column; /* Stack the buttons vertically */
        align-items: center;
    }
    .button {
        width: 100%; /* Make buttons full-width on mobile */
        max-width: 300px; /* Limit the width to keep it manageable */
        font-size: 18px; /* Increase font size for touch screens */
        padding: 12px 20px;
    }
}
/* Hero Section styling */
.hero {
    background-image: url('../pictures/Road.Landscape.jpeg'); /* Add your image path here */
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 100px 20px;
    text-align: center;
}
.hero h1 {
    font-size: 3em;
    margin-bottom: 0.5em;
}
.hero p {
    font-size: 1.2em;
    margin-bottom: 1em;
}
.hero .hero-button {
    background-color: #f7b733;
    color: #1a1a1a;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}
.hero .hero-button:hover {
    background-color: #e6a823;
}
/* About Us Section Styling */
.about {
    background-color: #f4f4f9;
    padding: 60px 20px;
    text-align: center;
}
.about-container {
    max-width: 800px;
    margin: 0 auto;
}
.about h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
}
.about p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}
/* Services Section Styling */
.services {
    background-color: #ffffff;
    padding: 60px 20px;
    text-align: center;
}
.services-container {
    max-width: 900px;
    margin: 0 auto;
}
.services h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 30px;
}
.service {
    margin-bottom: 30px;
}
.service h3 {
    font-size: 1.8em;
    color: #f7b733;
    margin-bottom: 10px;
}
.service p {
    font-size: 1.1em;
    color: #666;
    line-height: 1.6;
}
/* Careers Section Styling */
.careers {
    background-color: #f4f4f9;
    padding: 60px 20px;
    text-align: center;
}
.careers-container {
    max-width: 800px;
    margin: 0 auto;
}
.careers h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
}
.careers p {
    font-size: 1.1em;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}
.apply-button {
    background-color: #f7b733;
    color: #1a1a1a;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}
.apply-button:hover {
    background-color: #e6a823;
}
/* Contact Us Section Styling */
.contact {
    background-color: #ffffff;
    padding: 60px 20px;
    text-align: center;
}
.contact-container {
    max-width: 800px;
    margin: 0 auto;
}
.contact h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
}
.contact p {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 30px;
}
.contact-form .form-group {
    margin-bottom: 15px;
    text-align: left;
}
.contact-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
}
.contact-form textarea {
    resize: vertical;
}
.submit-button {
    background-color: #f7b733;
    color: #1a1a1a;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s;
}
.submit-button:hover {
    background-color: #e6a823;
}
/* Get a Quote Section Styling */
.quote {
    background-color: #f4f4f9;
    padding: 60px 20px;
    text-align: center;
}
.quote-container {
    max-width: 800px;
    margin: 0 auto;
}
.quote h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
}
.quote p {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 30px;
}
.quote-form .form-group {
    margin-bottom: 15px;
    text-align: left;
}
.quote-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}
.quote-form input,
.quote-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
}
.quote-form textarea {
    resize: vertical;
}
.submit-button {
    background-color: #f7b733;
    color: #1a1a1a;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s;
}
.submit-button:hover {
    background-color: #e6a823;
}
/* Footer Section Styling */
footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}
.footer-container {
    max-width: 1000px;
    margin: 0 auto;
}
.footer-logo img {
    width: 120px;
    margin-bottom: 15px;
}
.footer-links {
    margin-bottom: 15px;
}
.footer-links a {
    color: #f7b733;
    text-decoration: none;
    margin: 0 10px;
    font-size: 1em;
}
.footer-links a:hover {
    color: #e6a823;
}
.footer-social {
    margin-bottom: 20px;
}
.footer-social p {
    font-weight: bold;
    margin-bottom: 5px;
}
.footer-social a {
    color: #f7b733;
    text-decoration: none;
    margin: 0 8px;
}
.footer-social a:hover {
    color: #e6a823;
}
.footer-copyright {
    font-size: 0.9em;
    color: #ccc;
    margin-top: 10px;
}
/* Application Section Styling */
.application {
    background-color: #f4f4f9;
    padding: 60px 20px;
    text-align: center;
}
.application-container {
    max-width: 800px;
    margin: 0 auto;
}
.application h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
}
.application p {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 30px;
}
.application-form .form-group {
    margin-bottom: 15px;
    text-align: left;
}
.application-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}
.application-form input,
.application-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
}
.application-form textarea {
    resize: vertical;
}
.submit-button {
    background-color: #f7b733;
    color: #1a1a1a;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s;
}
.submit-button:hover {
    background-color: #e6a823;
}