* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f7fcb2;
    color: #333;
}

header {
    background-color: #fdec00;
    padding: 20px;
    color: rgb(0, 0, 0);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo h1 {
    font-size: 24px;
}

header nav ul {
    list-style: none;
    display: flex;
}

header nav ul li {
    margin: 0 15px;
}

header nav ul li a {
    color: rgb(0, 0, 0);
    text-decoration:underline;
    font-size: 18px;
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    animation: slideBackground 12s infinite;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

@keyframes slideBackground {
    0%, 100% { background-image: url('image7.jpg'); }
    33% { background-image: url('image8.jpg'); }
    66% { background-image: url('image9.jpg'); }
    77% { background-image: url('image10.jpg'); }
    77% { background-image: url('image11.jpg'); }
    66% { background-image: url('image14.jpg'); }
    66% { background-image: url('paving.jpg'); }
    
}

.hero {
    color: rgb(255, 251, 251);
    text-align: center;
}

.hero h1 {
    font-size: 46px;
}

.hero p {
    font-size: 30px;
}

button {
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}

section {
    padding: 50px 20px;
    text-align: center;
}

#services .service-list {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
}

#services .service {
    background-color: white;
    border: 1px solid #ddd;
    padding: 20px;
    width: 30%;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#contactForm input, #contactForm textarea {
    width: 70%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
}

#contactForm button {
    background-color: #4CAF50;
    color: white;
    padding: 12px 20px;
    justify-content: center;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#contactForm button:hover {
    background-color: #45a049;
}

footer {
    background-color: #333;
    color: white;
    padding: 15px;
    text-align: center;
}

footer p {
    font-size: 14px;
}
