/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

header {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
}

header .logo {
    font-size: 1.8em;
    text-align: center;
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-top: 10px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 5px 10px;
    transition: background-color 0.3s ease;
}

header nav ul li a:hover {
    background-color: #555;
    border-radius: 5px;
}

.hero {
    background: url('img/main.jpg') no-repeat center center/cover;
    color: #fff;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero h2 {
    font-size: 3em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.5em;
    margin-bottom: 30px;
}

.hero .btn {
    background-color: #ff6600;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 1.2em;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.hero .btn:hover {
    background-color: #e65c00;
}

.services {
    padding: 50px 0;
    background-color: #fff;
}

.services h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5em;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: #f9f9f9;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    width: calc(33.333% - 20px);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    margin: 10px;
}

.service-card img {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5em;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
}

footer p {
    margin: 0;
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 2.5em;
    }

    .hero p {
        font-size: 1.2em;
    }

    .service-cards {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        width: 80%;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1em;
    }

    header nav ul {
        flex-direction: column;
        gap: 10px;
    }

    header nav ul li {
        text-align: center;
    }

    .service-card {
        width: 90%;
    }
}

/* About Us Section */
.about {
    padding: 50px 0;
    background-color: #f4f4f4;
}

.about h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5em;
}

.about p {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.2em;
}

.map {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.map iframe {
    border-radius: 10px;
    width: 100%;
    height: 400px;
    border: none;
}

/* Media Queries for About Us */
@media (max-width: 768px) {
    .about p {
        font-size: 1em;
        padding: 0 20px;
    }

    .map iframe {
        height: 300px;
    }
}

/* Contact Us Section */
.contact {
    padding: 50px 0;
    background-color: #fff;
    color: #333;
}

.contact h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5em;
}

.contact p {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.2em;
}

.contact-options {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-option {
    flex: 1;
    min-width: 280px;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-option h3 {
    margin-bottom: 15px;
    font-size: 1.5em;
}

.contact-option p, .contact-option a {
    font-size: 1.2em;
    color: #007bff;
    text-decoration: none;
}

.contact-option a:hover {
    text-decoration: underline;
}

.contact-option form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-option input, .contact-option textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
}

.contact-option textarea {
    resize: vertical;
    height: 100px;
}

.contact-option button {
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    cursor: pointer;
}

.contact-option button:hover {
    background-color: #0056b3;
}

/* Media Queries for Contact Us */
@media (max-width: 768px) {
    .contact-options {
        flex-direction: column;
        align-items: center;
    }

    .contact-option {
        max-width: 100%;
    }
}

/* Book Service Section */
.book-service {
    padding: 50px 0;
    background-color: #f4f4f4;
    color: #333;
}

.book-service h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5em;
}

.book-service p {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.2em;
}

.book-service form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.book-service input, .book-service select, .book-service textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
}

.book-service textarea {
    resize: vertical;
    height: 100px;
}

.book-service button {
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    cursor: pointer;
}

.book-service button:hover {
    background-color: #0056b3;
}

/* Media Queries for Book Service */
@media (max-width: 768px) {
    .book-service form {
        width: 100%;
    }
}

