/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Body styling */
body {
    background-color: #f0f4f5;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header styling */
.header {
    text-align: center;
    background-color: #2d4059;
    color: #fdf4e3;
    padding: 1.5em;
    width: 100%;
}

.header h1 {
    font-size: 2.2em;
    margin-bottom: 0.3em;
}

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

/* About section */
.about {
    max-width: 800px;
    text-align: center;
    padding: 1.2em;
    margin-top: 1em;
    background-color: #ffffff;
    color: #333;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-left: 40px;
    margin-right: 40px;

}

.about h2 {
    font-size: 1.8em;
    color: #2d4059;
    margin-bottom: 0.5em;
}

.about p {
    font-size: 1.1em;
    line-height: 1.6;
}

/* Contact section */
.contact {
    max-width: 800px;
    text-align: center;
    padding: 1.5em;
    margin-top: 1em;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-left: 40px;
    margin-right: 40px;
}

.contact h2 {
    font-size: 1.8em;
    color: #2d4059;
    margin-bottom: 0.5em;
}

.contact-info p {
    font-size: 1.1em;
    color: #333;
    margin-bottom: 0.5em;
}

.contact-info a {
    color: #1e81b0;
    text-decoration: none;
}

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

.visit-us a {
    display: inline-flex;
    align-items: center;
    color: #1e81b0;
    text-decoration: none;
}

.visit-us img {
    margin-right: 8px;
}

/* Footer styling */
.footer {
    text-align: center;
    padding: 1em;
    margin-top: 1em;
    background-color: #2d4059;
    color: #fdf4e3;
    width: 100%;
}

.footer a {
    color: #f0c27b;
    text-decoration: underline;
}

.footer a:hover {
    color: #d6a85a;
    text-decoration: underline;
}
/* Services Section */
.services {
    max-width: 800px;
    padding: 1.5em;
    margin-top: 1em;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.services h2 {
    font-size: 1.8em;
    color: #2d4059;
    margin-bottom: 0.5em;
}

.services ul {
    list-style-type: none;
    font-size: 1.1em;
    line-height: 1.6;
}

.services li {
    padding: 0.5em;
}

/* Why Choose Us Section */
.why-choose-us {
    max-width: 800px;
    padding: 1.5em;
    margin-top: 1em;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-left: 40px;
    margin-right: 40px;
}

.why-choose-us h2 {
    font-size: 1.8em;
    color: #2d4059;
    margin-bottom: 0.5em;
}

.why-choose-us ul {
    list-style-type: none;
    font-size: 1.1em;
    line-height: 1.6;
}

.why-choose-us li {
    padding: 0.5em;
}

/* Testimonials Section */
.testimonials {
    max-width: 800px;
    padding: 1.5em;
    margin-top: 1em;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-left: 40px;
    margin-right: 40px;
}

.testimonials h2 {
    font-size: 1.8em;
    color: #2d4059;
    margin-bottom: 0.5em;
}

.testimonial {
    margin-top: 1em;
    font-size: 1.1em;
    font-style: italic;
    color: #555;
}

.testimonial span {
    display: block;
    font-size: 0.9em;
    color: #2d4059;
    margin-top: 0.3em;
}
/* WhatsApp Button */
.whatsapp-button {
    margin-top: 1em;
}

.whatsapp-button a {
    display: inline-flex;
    align-items: center;
    background-color: #4a8f44; /* Green for WhatsApp */
    color: #fff;
    text-decoration: none;
    padding: 0.6em 1.2em;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.whatsapp-button img {
    margin-right: 8px;
}

.whatsapp-button a:hover {
    background-color: #3a6d37;
}

/* moving car Section */
.moving {
    max-width: 350px;
    text-align: center;
    padding: 1.5em;
    margin-top: 1em;
    background-color: #fff;
    color: #333;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.moving h2 {
    font-size: 1.8em;
    color: #004080;
    margin-bottom: 0.5em;
}
/* moving img */
.movingimg {
    width: 100%;
    height: auto;
    /* cursor: pointer; */
    border-radius: 8px;
    transition: transform 0.3s;
}

/* Back to Top Button */
#backToTopBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Position from the bottom */
    right: 20px; /* Position from the right */
    z-index: 99; /* Place it on top of other content */
    font-size: 18px; /* Increase font size */
    background-color: #333; /* Dark background color */
    color: white; /* Text color */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    cursor: pointer; /* Pointer/hand icon */
    padding: 15px; /* Some padding */
    border-radius: 50%; /* Rounded corners */
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2); /* Shadow for a floating effect */
}

#backToTopBtn:hover {
    background-color: #555; /* Darker background on hover */
}