body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8fa;
    color: #333;
    width: 100%;
}

/* ======= Header ======= */
header {
    background-color: #004d99;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 24px;
}
.logo {
        margin: 0;
        padding: 0;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        height: 60px; /* adjust as needed */
    }
/* ======= Navigation Bar ======= */
nav {
    background-color: #004d99;
    width: 100%;
    padding: 15px 0;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 15px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: gold;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #004d99;
    color: white;
    font-size: 14px;
}

/* ======= Hero Section ======= */
#hero {
    text-align: center;
    padding: 50px 20px;
    background: lavender;
}

#hero h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

#hero p {
    font-size: 15px;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
    font-style: italic;
}

.hero-image {
    width: 100%;
    height: 1200px;
    display: block;
    margin: 20px auto;
    border-radius: 10px;
}

#cleaning-process {
    background: lavender;
    padding: 40px 20px;
    border-radius: 8px;
}

#cleaning-process h2 {
    font-size: 26px;
    color: #004d99;
    margin-bottom: 15px;
    text-align: center;
}

#cleaning-process p {
    font-size: 18px;
    line-height: 1.8;
    margin: 10px 0;
    color: #555;
}

#cleaning-process ul {
    list-style:disc;
    padding-left: 40px;
    margin: 10px 0;
}

#cleaning-process li {
    font-size: 18px;
    line-height: 1.8;
    margin: 10px 0;
}


/* ======= Why Choose Us Section ======= */
#why-choose-us {
    background: lavender;
    padding: 40px 20px;
    width: 100%;
    text-align: center;
    box-sizing: border-box;

}

#why-choose-us h2 {
    font-size: 26px;
    color: #004d99;
    margin-bottom: 15px;
    text-align: center;
}

#why-choose-us p {
    font-size: 18px;
    line-height: 2;
    margin: 0 auto;
    color: #555;
}

/* ======= Testimonials Section ======= */
#testimonials {
    background: lavender;
    padding: 40px 20px;
    text-align: center;
}

#testimonials h2 {
    font-size: 26px;
    color: #004d99;
}

.testimonial {
    background: white;
    padding: 20px;
    margin: 15px auto;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.testimonial p {
    font-size: 18px;
    font-style: italic;
    color: #333;
}

.testimonial h4 {
    margin-top: 10px;
    color: #004d99;
}

/* ===== About Page Styling ===== */
.about-us {
    padding: 50px 20px;
    text-align: center;
    background-color: lavender;
}

.about-us h2 {
    font-size: 30px;
    color: #004d99;
    margin-bottom: 20px;
    font-weight: bold;
}

.about-us p {
    font-size: 18px;
    line-height: 1.8;
    text-align: center;
    color: #555;
    max-width: 900px;
    margin: 0 auto 30px auto;
}

/* ===== FAQ Section Styling ===== */
#faq {
    background: lavender;
    padding: 40px 20px;
}

#faq h2 {
    font-size: 26px;
    color: #004d99;
    margin-bottom: 20px;
    font-weight: bold;
    text-align: center;
}

.faq-item {
    background: white;
    margin: 15px 0;
    border-radius: 8px;
    padding: 20px;
}

.faq-item h3 {
    font-size: 20px;
    color: #004d99;
    margin-bottom: 10px;
    font-weight: bold;
    text-align: center;
}

.faq-item p {
    font-size: 19px;
    line-height: 2;
    color: #555;
    text-align: center;
}

/* ======= Services Page Styling ======= */
#services {
    padding: 40px 20px;
    text-align: center;
    background-color: lavender;
}

#services h2 {
    font-size: 30px;
    color: #004d99;
    margin-bottom: 30px;
}

#services div {
    display: inline-block;
    width: 45%;
    margin: 20px 2%;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#services div:hover {
    transform: scale(1.05);
    box-shadow: 2px 2px 18px rgba(0, 0, 0, 0.2);
}

#services h3 {
    font-size: 22px;
    color: #004d99;
    margin-bottom: 15px;
}

#services p {
    font-size: 16px;
    line-height: 2;
    color: #555;
    margin: 0;
}

/* ===== Gallery Section Styling ===== */
#gallery {
    padding: 50px 20px;
    text-align: center;
    background-color: lavender;
}

#gallery h2 {
    font-size: 30px;
    color: #004d99;
    margin-bottom: 30px;
}

#gallery img {
    width: 100%;  
    height: auto;
    max-width: 250px;  
    margin: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

/* ======= Book a Service Page Styling ======= */
#book-us
{
    background-color:lavender;
}

form {
    max-width: 700px;
    margin: 20px auto;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 10px;
}

h2 {
    text-align: center;
    color: #004d99;
    margin-bottom: 20px;
    margin-top: 0;
    padding: 20px;
    font-size: 28px;
}

form label {
    font-size: 20px;
    margin-bottom: 8px;
    display: block;
    color: black;

}

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form input[type="date"],
form textarea {
    width: 100%;
    padding: 12px;
    margin: 8px 0 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    transition: border 0.3s ease;
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form input[type="tel"]:focus,
form input[type="date"]:focus,
form textarea:focus {
    border-color: #004d99;
    outline: none;
}
form input[type="checkbox"],
form input[type="radio"],
form label[for] {
    display: inline-block;
    vertical-align: middle;
    margin: 5px 0;
}

form textarea {
    font-family: inherit;
    resize: vertical;
    min-height: 100px;
}

#total-price {
    font-size: 20px;
    font-weight: bold;
    color: #004d99;
    margin-top: 10px;
}

form button {
    background-color: #004d99;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    width: 100%;
    margin-top: 15px;
    transition: background 0.3s ease;
}

form button:hover {
    background-color: #003366;
}


/* ======= Contact Us Page Styling ======= */
#contact-us {
    padding: 40px 20px;
    background-color: lavender;
    text-align: center;
}

#contact-us h2 {
    font-size: 30px;
    color: #004d99;
    margin-bottom: 20px;
}

/* ======= Complaint Form Styling ======= */
#complaint-form {
    max-width: 600px;
    margin: 20px auto;
    padding: 35px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
}

#complaint-form h3 {
    font-size: 24px;
    color: #004d99;
    margin-bottom: 15px;
    text-align: center;
}

#complaint-form label {
    font-size: 16px;
    display: block;
}

#complaint-form input[type="text"],
#complaint-form input[type="email"],
#complaint-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

#complaint-form button {
    background-color: #004d99;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    width: 100%;
    margin-top: 10px;
}

#complaint-form button:hover {
    background-color: #003366;
}

/* ======= Contact Info Styling ======= */
#contact-info {
    margin: 40px auto;
    max-width: 600px;
    text-align: left;
}

#contact-info h3 {
    font-size: 24px;
    color: #004d99;
    margin-bottom: 10px;
}

#contact-info p {
    font-size: 16px;
    margin: 5px 0;
    color: #555;
}

/* ======= Social Media Styling ======= */
#social-media {
    margin: 40px auto;
    max-width: 600px;
    text-align: center;
}

#social-media h3 {
    font-size: 24px;
    color: #004d99;
    margin-bottom: 10px;
}

#social-media a {
    color: #004d99;
    font-size: 20px;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
}

#social-media a:hover {
    color: gold;
}

/* ======= Map Section Styling ======= */
#map {
    margin: 40px auto;
    max-width: 800px;
    text-align: center;
}

#map h3 {
    font-size: 24px;
    color: #004d99;
    margin-bottom: 10px;
}
