/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none;     /* Internet Explorer/Edge */
    user-select: none;         /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}

/* Apply Work Sans font to the entire website */
body {
    font-family: 'Work Sans', sans-serif;
}

/* Optionally, you can specify the font for specific elements if needed */
h1, h2, h3, h4, h5, h6, p, a, div, span, label, input, textarea, button {
    font-family: 'Work Sans', sans-serif;
}
* {
    cursor: default; /* Default cursor */
}

/* Navigation Styles */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.nav .logo {
    font-size: 24px;
}
.nav .contact a {
    color: white;
    font-size: 18px;
    text-decoration: none;
}
.nav .menu-icon {
    display: none;
    cursor: pointer;
}
.nav .menu-icon div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 4px;
}

/* Menu Styles */
.menu {
    display: flex;
    justify-content: center;
    background-color: #4CAF50;
    flex-wrap: wrap;
}
.menu a {
    padding: 14px 20px;
    display: block;
    color: white;
    text-align: center;
    text-decoration: none;
    cursor: pointer; /* Hand pointer for menu links */
}
.menu a:hover {
    background-color: #ddd;
    color: black;
}

/* Section Styles */
.section {
    padding: 20px;
    text-align: center;
    background: white;
    margin: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.section img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}
.section h2 {
    margin-bottom: 20px;
}
.section p {
    text-align: justify;
    margin: 0 auto 20px;
    max-width: 800px;
}

/* Styles for the services section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.service-item {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.service-item img {
    max-width: 100%;
    border-radius: 10px;
}
.service-item h3 {
    margin-top: 10px;
    font-size: 18px;
    color: #333;
}

/* Grid for links */
.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    margin-top: 20px;
}
.links-grid a {
    display: block;
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    cursor: pointer; /* Hand pointer for link buttons */
}
.links-grid a:hover {
    background-color: #45a049;
}

/* Gallery Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 20px;
}
.gallery-grid img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Footer Styles */
.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    font-size: 14px; /* General font size for the footer */
}

.footer-logo {
    display: block;
    margin: 0 auto 10px; /* Center the image and add some margin at the bottom */
    max-width: 100px; /* Adjust the max-width as needed */
    height: auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 10px; /* Space between the links */
    margin-bottom: 10px; /* Space between links and additional info */
}

.footer a {
    color: #ddd;
    text-decoration: none;
    margin: 0 5px;
    cursor: pointer; /* Hand pointer for footer links */
    font-size: 12px; /* Smaller font size for footer links */
}

.footer a:hover {
    color: white;
    text-decoration: underline;
}

.footer-info {
    font-size: 12px; /* Smaller font size for additional info */
    margin-top: 10px; /* Space between links and additional info */
}


/* Form Styles */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}
.contact-form label {
    display: block;
    margin: 10px 0 5px;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.contact-form button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer; /* Hand pointer for buttons */
    border-radius: 5px;
}
.contact-form button:hover {
    background-color: #45a049;
}

/* Styles for Who We Are Section */
.who-we-are-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.who-we-are-container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    flex: 1 1 300px; /* Ensures the image can shrink but has a base size */
}

.who-we-are-container div {
    flex: 2 1 500px; /* Ensures the text content can grow but has a base size */
}




/* Media Query for Mobile Devices */
@media (max-width: 768px) {
    .who-we-are-container {
        flex-direction: column;
    }

    .menu {
        display: none;
        flex-direction: column;
        width: 100%;
    }
    .menu a {
        padding: 10px;
        border-top: 1px solid #444;
    }
    .menu-icon {
        display: block;
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 800px;
    border-radius: 10px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    max-height: 80vh;
    overflow-y: auto;
}

.close {
    color: #aaa;
    position: fixed;
    top: 20px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

#modal-text {
    white-space: pre-wrap;
    padding-top: 40px; /* To avoid text overlapping with close button */
}
