/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #ffffff;
    background-color: #1a1a1a; /* Dark background for overall consistency */
}

/* Navbar */
.navbar {
    background-color: #222;
    color: #ffffff;
    padding: 1rem;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar ul {
    display: flex;
    justify-content: center;
    list-style-type: none;
    margin: 0;
}

.navbar ul li {
    margin: 0 15px;
}

.navbar ul li a {
    color: #ffffff;
    font-weight: bold;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s, border-bottom 0.3s;
}

.navbar ul li a:hover {
    color: #ff9800;
    border-bottom: 2px solid #ff9800;
}

/* Header */
.header {
    background-color: #33d9b2;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.logo {
    border-radius: 13%;
    width: 100%; /* Responsive width */
    max-width: 1000px;
    height: auto;
}

.header-title {
    font-size: 2.5rem;
    color: #ffffff;
}

.header-subtitle {
    font-size: 1.2rem;
    color: #ffffff;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}


/* Services Section */
.services {
    padding: 2rem;
    text-align: center;
    background-color: #1a1a1a;
}

.services {
    padding: 2rem;
    text-align: center;
    background-color: #1a1a1a;
}

.services h2 {
    font-size: 2rem;
    color: #ff9800;
    margin-bottom: 1rem;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.service {
    background-color: #333333;
    color: #ff9800;
    margin: 1rem;
    padding: 1.5rem;
    border-radius: 8px;
    max-width: 300px;
    text-align: left;
    transition: transform 0.3s;
}

.service:hover {
    transform: scale(1.05);
}

.service h3 {
    font-size: 1.5rem;
    color: #ffffff;
}

.price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ff9800;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 2rem;
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
}

.why-choose-us h2 {
    font-size: 2rem;
    color: #ff9800;
    margin-bottom: 1.5rem;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.feature {
    background-color: #333333;
    color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    max-width: 300px;
}

.feature h3 {
    font-size: 1.5rem;
    color: #ff9800;
    margin-bottom: 0.5rem;
}

/* Testimonials Section */
.testimonials {
    background-color: #1a1a1a;
    padding: 2rem;
    text-align: center;
}

.testimonials h2 {
    font-size: 2rem;
    color: #ff9800;
    margin-bottom: 1rem;
}

.testimonial {
    background-color: #333333;
    padding: 1.5rem;
    margin: 1rem auto;
    border-radius: 8px;
    max-width: 600px;
    color: #ffffff;
    font-style: italic;
}

.author {
    font-size: 1rem;
    margin-top: 0.5rem;
    color: #ff9800;
}

/* Contact Form Section */
.contact {
    padding: 2rem;
    background-color: #1a1a1a;
    text-align: center;
}

.contact h2 {
    font-size: 2rem;
    color: #ff9800;
    margin-bottom: 1rem;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 80%;
    max-width: 400px;
    margin: 0 auto;
}

label {
    font-size: 1rem;
    color: #ffffff;
}

input, textarea {
    padding: 0.5rem;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1rem;
    background-color: #333333;
    color: #ffffff;
}

input:focus, textarea:focus {
    outline: none;
    border: 1px solid #ff9800;
}

.contact-button {
    background-color: #ff9800;
    color: white;
    padding: 0.5rem;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-button:hover {
    background-color: #ffbf70;
}

.serviceman{
    width: 8rem;
}

/* Footer */
.footer {
    background-color: #83c1a2;
    color: #1a1a1a;
    padding: 1rem;
    text-align: center;
    font-size: 0.9rem;
}
