/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: url('../images/site-background.jpg') no-repeat center center/cover;
    color: #333;
    background-attachment: fixed; /* Ensures the background stays fixed while scrolling */
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

/* Header Styles */
header {
    background: #333;
    color: #fff;
    padding: 20px 0;
    border-bottom: #77aaff 3px solid;
}

header h1 {
    float: left;
    margin: 0;
    font-size: 24px;
}

header nav {
    float: right;
    margin-top: 10px;
}

header ul {
    padding: 0;
    list-style: none;
}

header li {
    display: inline;
    padding: 0 20px;
}

header a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
}

header a:hover {
    color: #77aaff;
}

/* Welcome Section Styles */
#welcome {
    background: none; /* Remove background */
    color: white; /* Ensure text is visible */
    border-radius: 10px; /* Rounded corners */
    padding: 20px;
    box-shadow: none; /* Remove any shadow effects */
    text-align: center;
}

#welcome h2 {
    color: white; /* Ensure text is visible */
    margin-bottom: 20px;
}

#welcome p {
    font-size: 18px;
    color: white; /* Ensure text is visible */
}

/* Services Section Styles */
#services {
    background: rgba(0, 0, 0, 0.6); /* Transparent dark background */
    color: white; /* Ensure text is visible */
    border-radius: 10px; /* Rounded corners */
    padding: 20px;
    box-shadow: none; /* Remove any shadow effects */
    margin-top: 20px;
}

#services h2 {
    color: white; /* Ensure text is visible */
    text-align: center;
    margin-bottom: 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service {
    background: rgba(0, 0, 0, 0.6); /* Transparent background */
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: none; /* Remove shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2); /* Subtle hover effect */
}

.service i {
    font-size: 40px;
    color: #007bff;
    margin-bottom: 10px;
}

.service h3 {
    color: white; /* Ensure text is visible */
    margin-bottom: 10px;
}

.service p {
    color: white; /* Ensure text is visible */
}

/* About Us Section Styles */
#about {
    background: none; /* Remove background */
    color: white; /* Ensure text is visible */
    border-radius: 10px; /* Rounded corners */
    padding: 20px;
    box-shadow: none; /* Remove any shadow effects */
    margin-top: 20px;
}

#about h2 {
    color: white; /* Ensure text is visible */
    text-align: center;
    margin-bottom: 20px;
}

#about p {
    color: white; /* Ensure text is visible */
    margin-bottom: 10px;
    text-align: justify;
}

/* Find Us Section Styles */
#map {
    background: rgba(0, 0, 0, 0.6); /* Transparent dark background */
    color: white; /* Ensure text is visible */
    border-radius: 10px; /* Rounded corners */
    padding: 20px;
    box-shadow: none; /* Remove any shadow effects */
    margin-top: 20px;
    margin-bottom: 40px; /* Add spacing below Find Us section */
}

#map h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: bold;
    color: white; /* Ensure text is visible */
}

/* Contact Us Section Styles */
#contact {
    background: rgba(0, 0, 0, 0.6); /* Transparent dark background */
    color: white; /* Ensure text is visible */
    text-align: center; /* Center-align all text */
    padding: 40px 20px;
    border-radius: 10px; /* Add rounded corners */
    box-shadow: none; /* Remove shadow */
    margin-top: 40px; /* Add spacing above Contact Us section */
}

#contact h2 {
    color: white; /* Ensure text is visible */
    margin-bottom: 20px;
}

#contact p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: white; /* Ensure text is visible */
}

#contact ul {
    list-style: none;
    padding: 0;
    margin: 0 auto; /* Center the list */
    display: inline-block; /* Ensure the list is centered */
    text-align: left; /* Align list items to the left */
}

#contact ul li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: white; /* Ensure text is visible */
}

#contact ul li i {
    color: #007bff; /* Blue icon color for consistency */
    margin-right: 10px;
}

#contact a {
    color: #007bff;
    text-decoration: none;
}

#contact a:hover {
    text-decoration: underline;
}

#contact button {
    margin-top: 20px;
}

/* Contact Button Section Styles */
#contact .contact-content button {
    background-color: orange;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 18px;
    margin-top: 20px;
}

#contact .contact-content button:hover {
    background-color: #e69500;
}

/* Footer Styles */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
}

footer p {
    margin: 0;
}

footer a {
    color: #77aaff;
    margin: 0 10px;
    text-decoration: none;
}

footer a:hover {
    color: #fff;
}

/* Modal Styles */
.modal {
    display: none; /* Ensure the modal is hidden by default */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.modal form {
    display: flex;
    flex-direction: column;
}

.modal form label {
    margin-bottom: 5px;
    color: #333;
}

.modal form input,
.modal form textarea {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.modal form button {
    background-color: #77aaff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.modal form button:hover {
    background-color: #555;
}
