body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-image: url('./img14.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
}

header, footer {
    background: rgba(0, 0, 0, 0.1);
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 150px;
}

header img {
    margin: 1rem 0;
    max-width: 200px;
    height: auto;
    border-radius: 10px;
}

nav {
    margin-top: 1rem;
    display: flex;
    gap: 1.5rem;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

nav a:hover {
    text-decoration: underline;
    color: #f0a500;
}

main {
    padding: 4rem 2rem;
    text-align: center;
    min-height: 500px;
}

main h2 {
    font-size: 2.5rem;
    color: rgb(249, 244, 244);
}

main p {
    font-size: 1.2rem;
    color: rgb(241, 235, 235);
}

footer {
    padding: 1rem;
    text-align: center;
    width: 100%;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

/* style.css */

body.black-background {
    background-color: black;
    color: white;
}

header, footer {
    text-align: center;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

/* Image container styling */
.image-container {
    text-align: right;
    margin-bottom: 20px;
}

/* Circular image styling */
.service-image {
    width: 100px;
    height: 100px;
    border-radius: 50%; /* Makes the image circular */
    cursor: pointer;
    transition: transform 0.3s ease; /* Smooth transition effect */
}

/* Scale effect on click */
.service-image:active {
    transform: scale(1.1); /* Increase size on click */
}

/* style.css */

/* Social icon styling */
.social-icons {
    text-align: center;
    margin-top: 10px;
}

.social-icons a {
    color: white;
    margin: 0 10px;
    font-size: 1.5em;
    text-decoration: none;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #4CAF50; /* Change color on hover */
}
.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;

}

.service-image {
    max-width: 100%;
    height: 50;
}

.about-page {
    background-image: url('img13.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white; /* Adjusts text color for readability */
}

.services-page {
    background-image: url('img11.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
}

.contact-page {
    background-image: url('img2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
}

.service-container {
    background-color: rgb(34, 33, 33); /* Light gray background */
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}
