/* General body styles */
body {
    font-family: Arial, sans-serif;
    background-color: #000; /* Black background */
    color: #fff; /* White text */
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Header and navigation styles */
header {
    background-color: #333; /* Dark gray background */
    padding: 20px 0; /* Adjust padding to give space for logo */
    text-align: center;
    position: relative;
}

/* Style for the medium logo image above the Services section */
.medium-logo {
    text-align: center; /* Center the logo */
    margin: 40px 0; /* Adds margin around the logo to separate it from the content */
}

.medium-logo img {
    max-width: 350px; /* Adjust this value to set the medium logo size */
    height: auto; /* Maintain the aspect ratio */
    display: inline-block; /* Ensures it's treated as an inline element */
}



.logo img {
    max-width: 150px; /* Set the size of the logo */
    height: auto;
    position: absolute;
    left: 20px; /* Position logo to the left */
    top: 50%; /* Vertically center logo */
    transform: translateY(-50%); /* Adjust positioning */
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    margin-top: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #32CD32; /* Green text for navigation links */
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Hero Section */
/* Full Background Logo for the Hero Section */
.hero {
    background-image: url('images/logo.png'); /* Path to your logo image */
    background-size: 50%; /* Reduce the image size to 50% of its original size */
    background-position: center; /* Keep the image centered */
    background-attachment: fixed; /* Optional: Parallax effect */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    color: #fff; /* White text */
    padding: 100px 0; /* Adds padding for spacing */
    text-align: center;
}

/* Content inside the Hero Section */
.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    color: #32CD32; /* Green color for headings */
}

.hero p {
    font-size: 1.5em;
    color: #32CD32; /* Green color for paragraph */
}

/* Services Section */
.services {
    background-color: #000; /* Black background */
    color: #fff; /* White text */
    padding: 40px 0;
    text-align: center;
}

.services h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #32CD32; /* Green heading */
}

.service {
    margin-bottom: 30px;
}

.service h3 {
    font-size: 2em;
    color: #32CD32; /* Green heading */
}

.service p {
    font-size: 1.1em;
}

/* Why Choose Section */
.why-choose {
    background-color: #111; /* Slightly lighter black */
    color: #fff;
    padding: 40px 0;
}

.why-choose h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #32CD32; /* Green heading */
}

.why-choose ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-choose ul li {
    font-size: 1.2em;
    margin-bottom: 10px;
}

/* Contact Section */
.contact {
    background-color: #000;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.contact h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #32CD32; /* Green heading */
}

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

.business-hours ul {
    list-style: none;
    padding: 0;
}

.business-hours ul li {
    font-size: 1.1em;
    margin-bottom: 10px;
}

/* Testimonials Section */
.testimonials {
    background-color: #111;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #32CD32; /* Green heading */
}

blockquote {
    font-size: 1.2em;
    margin: 20px 0;
    font-style: italic;
    border-left: 5px solid #32CD32; /* Green border */
    padding-left: 20px;
}

blockquote footer {
    font-size: 1em;
    color: #ccc; /* Light gray for the author */
}

/* Footer Section */
footer {
    background-color: #333; /* Dark background */
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

footer p {
    margin: 0;
    font-size: 1.1em;
}

footer p a {
    color: #32CD32; /* Green links */
    text-decoration: none;
}

footer p a:hover {
    text-decoration: underline;
}

footer .logo img {
    max-width: 10px; /* Set the size of the logo */
    height: auto;
    position: absolute;
    left: 2px; /* Position logo to the left */
    top: 5%; /* Vertically center logo */
    transform: translateY(-50%); /* Adjust positioning */
  
  
/* Button Styling */
.btn-download {
    display: inline-block;
    background-color: #32CD32; /* Green background */
    color: #000; /* Black text */
    padding: 12px 30px;
    text-decoration: none; /* Remove underline */
    font-size: 1.2em;
    font-weight: bold;
    border-radius: 5px;
    text-align: center;
    margin-top: 20px;
    transition: background-color 0.3s, transform 0.3s;
}

.btn-download:hover {
    background-color: #28a745; /* Darker green on hover */
    transform: scale(1.05); /* Slight scaling effect on hover */
}

.btn-download:active {
    background-color: #1e7e34; /* Even darker green when clicked */
}

/* Responsive Design for Mobile */
@media screen and (max-width: 768px) {
    .container {
        width: 90%;
    }

    .nav ul {
        text-align: center;
        padding-top: 10px;
    }

    .nav ul li {
        display: block;
        margin: 10px 0;
    }

    .hero h1 {
        font-size: 2.5em;
    }

    .services h2, .why-choose h2, .contact h2, .testimonials h2 {
        font-size: 2em;
    }

    .service h3, .why-choose ul li {
        font-size: 1.5em;
    }

    /* Make logo smaller and adjust position for mobile */
    .logo img {
        max-width: 120px; /* Smaller logo for mobile */
        position: relative;
        left: 0;
        top: 0;
    }
}
