body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    background: url('image.png') no-repeat center center fixed;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    width: 100vw;
    height: 100vh;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    background-color: #333;
    padding: 15px;
}
nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}


header {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
}

header img {
    max-width: 150px;
    display: block;
    margin: 0 auto 10px;
}

section {
    padding: 50px;
    text-align: center;
}
section {
    background: transparent;
}

.contact {
    background-color: #3a3f46;
    padding: 50px;
}

footer {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 10px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.contact-form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    margin: auto;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: none;
}

.contact-form button {
    background-color: #ff914d;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
}

.contact-form button:hover {
    background-color: #ff732d;
}

#testimonials {
    text-align: center;
    padding: 50px;
    background-color: #3a3f46;
    color: white;
}

.testimonial-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.testimonial {
    background-color: #222;
    padding: 20px;
    border-radius: 10px;
    max-width: 300px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.testimonial p {
    font-style: italic;
}

.testimonial h4 {
    margin-top: 10px;
    color: #ff914d;
}

#submit-testimonial {
    text-align: center;
    padding: 50px;
    background-color: #3a3f46;
    color: white;
}

#testimonial-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#testimonial-form input, 
#testimonial-form textarea {
    width: 80%;
    max-width: 400px;
    padding: 10px;
    margin: 10px;
    border-radius: 5px;
    border: none;
}

#testimonial-form button {
    background-color: #ff914d;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
}

#testimonial-form button:hover {
    background-color: #ff7c2d;
}

.gallery img {
    width: 250px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery img:hover {
    transform: scale(1.05);
}
