/* Reset default browser styles and ensure full width */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #333;
    line-height: 1.6; /* Consistent line height */
    font-size: 1em;
    background: #f4f4f4; /* Light gray background */
}

/* Ensure the header takes full width and positions relative */
.main-header {
    width: 100%;
    position: relative;
    padding: 0; /* Remove padding */
}

/* Banner section to hold background image and text */
.banner {
    position: relative;
    width: 100%;
    height: 60vh;
    margin-bottom: -4px; /* Overlapping the header and menu */
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: none; /* Remove zoom on hover */
}

/* Logo styles */
.logo {
    max-height: 100px;
    margin-bottom: 10px;
}

/* Banner text container styles */
.banner-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 30px;
    box-sizing: border-box;
    text-align: center;
}

/* Banner heading styles */
.banner-text h1 {
    margin: 0;
    font-size: 3em;
}

/* Banner paragraph styles */
.banner-text p {
    margin: 10px 0 0;
    font-size: 1.5em;
}

/* Navigation bar styling */
.sticky-nav {
    background: #2c3e50; /* Dark Blue */
    padding: 10px 0; /* Reduced padding */
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    margin-bottom: 5px; /* Less space between menu and sections */
}

.lang_icon {
    margin-top: 4px;
    width: 22px;
    height: auto; /* Set the height of the icon */
/*    background-image: url('img/lang.gif');
    background-size: cover;
    border:none;
    transition: background-image 0.3s ease;*/
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    flex-wrap: wrap; /* Allow items to wrap */
}

.nav-links li {
    margin: 0 20px;
}

.nav-links a {
    text-decoration: none;
    color: #ecf0f1; /* Light Grey */
    font-size: 1.2em;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a:focus {
    color: #e74c3c; /* Tomato */
    outline: none; /* Remove outline for better focus state */
}
/* Mobile styles */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Hide links initially */
        flex-direction: column; /* Stack links vertically */
        width: 100%; /* Full width */
        background: #2c3e50; /* Dark Blue */
        position: absolute; /* Overlay on top */
        top: 50px; /* Below the nav */
        left: 0;
    }
    .nav-links.active {
        display: flex; /* Show links when active */
    }
    .menu-toggle {
        display: block!important; /* Show toggle button */
        cursor: pointer;
        margin: 0 auto; /* Center the button */
        color: #ecf0f1; /* Light Grey */
        font-size: 1.5em; /* Increased font size for visibility */
        padding: 10px; /* Added padding */
        background: none; /* No background */
        border: none; /* No border */
        text-align: center; /* Center text */
    }
}
.menu-toggle {
    display: none; /* Hide toggle button on larger screens */
}
/* Container for sections */
.container {
    max-width: 1200px;
    margin: 5px auto; /* Reduced margin */
    padding: 20px; /* Reduced padding */
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-bottom: 5px; /* Reduced margin */
}

/* Section heading styling */
.container h2 {
    font-size: 2em;
    margin-bottom: 10px;
    color: #2c5f2d; /* Dark green color */
    text-align: left;
}

/* Paragraph and list styling */
.container p, .container ul {
    font-size: 1.2em;
    line-height: 1.6; /* Consistent line height */
    color: #555;
}

.container ul li {
    margin-bottom: 10px; /* Reduced margin */
    line-height: 1.6; /* Consistent line height */
}

/* About us section styling */
.about-us-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 10px auto;
    padding: 20px;
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.about-us-image {
    max-width: 20%;
    border-radius: 8px;
    margin-right: 20px;
}

.about-us-text {
    max-width: 75%;
}

.about-us-text h2 {
    font-size: 2em;
    color: #2c5f2d;
    margin-top: 10px;
    margin-bottom: 10px;
}

.about-us-text p {
    font-size: 1.2em;
    color: #555;
    line-height: 1.6;
}

/* Values section styling */
.values-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px; /* Reduced gap for less space between boxes */
    justify-content: space-between;
    margin-top: 10px; /* Reduced margin */
}

.value-item {
    flex: 1 1 22%;
    max-width: 22%;
    background: #4A5B6A; /* Matching color */
    padding: 40px; /* Increased padding for more space inside */
    text-align: left; /* Align text to the left */
    border-radius: 8px;
    color: #ecf0f1; /* Light Grey text color */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
}

.value-item img {
    display: none;
}

.value-item h3 {
    margin: 20px 0;
    font-size: 1.6em;
    color: #ecf0f1;
}

.value-item p {
    font-size: 1.2em;
    color: #ecf0f1;
}

.value-item:hover {
    transform: scale(1.05);
}

/* Mission section styling */
.mission-container {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.mission-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    justify-content: center;
    text-align: left;
    max-width: 100%;
}

.mission-image {
    max-width: 40%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    align-self: center;
}

.mission-text {
    max-width: 60%;
    box-sizing: border-box;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mission-text h2 {
    font-size: 2em;
    color: #2c5f2d;
    margin-bottom: 10px;
}

.mission-text h3 {
    font-size: 1.8em;
    color: #2c5f2d;
    margin-bottom: 10px;
}

.mission-text p {
    font-size: 1.2em;
    color: #555;
    line-height: 1.6;
}


/* Services section styling */
.services-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px; /* Reduced gap for less space between boxes */
    justify-content: space-between;
    text-align: left; /* Align text to the left */
    margin-top: 10px; /* Reduced margin */
}

.service-item {
    flex: 1 1 30%;
    max-width: 30%;
    background: #fff;
    padding: 40px; /* Increased padding for more space inside */
    text-align: left; /* Align text to the left */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
}

.service-item img {
    max-width: 200px;
    max-height: 150px;
    height: auto;
    margin-bottom: 10px;
}

.service-item h3 {
    margin: 10px 0;
    font-size: 1.4em;
    color: #333;
}

.service-item p {
    font-size: 1.2em;
    color: #555;
    margin-top: 10px;
}

.service-item button {
    background-color: #2c3e50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.service-item button:hover, .service-item button:focus {
    background-color: #e74c3c;
    outline: none;
}

.service-item:hover {
    transform: scale(1.05);
}


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

/* Add some padding around sections */
section {
    padding: 15px 0; /* Reduced padding */
}

/* Improved button styles */
button {
    background-color: #2c3e50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover, button:focus {
    background-color: #e74c3c;
    outline: none;
}


/* Media queries for responsive design */
@media (max-width: 768px) {
    .about-us-container, .mission-content, .values-grid, .services-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .about-us-image, .mission-image, .mission-text, .value-item, .service-item {
        max-width: 100%;
    }

    .services-grid {
        gap: 20px; /* Reduced gap for better layout on small screens */
    }

    .service-item {
        margin: 0;
    }

    .service-item img {
        max-width: 100%;
        height: auto;
    }
}

