
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

/* Container for limiting main content width */
.container {
    max-width: 1024px; /* Set maximum width */
    margin: 0 auto; /* Center the container */
    
}


/* Header Section with Logo */
header {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
    position: relative;
}

/* Logo styling */
#logo {
    width: 300px;
    height: auto;
    margin-bottom: 0;
}

/* Language switch links */
/* Language switcher styles */
/* Language Switcher Styling */
.language-switcher {
    display: flex;
    justify-content: flex-end; /* Default: align to the right */
    margin-right: 20px; /* Add some spacing on the right */
}

.language-switcher a {
    text-decoration: none;
    margin-left: 10px;
    padding: 5px 10px;
    color: #fff;
    font-size: 0.9rem; /* Smaller font size */
}

.language-switcher .current-lang {
    font-weight: bold;
    background-color: rgba(255, 255, 255, 0.2); /* Light background for visibility */
    border-radius: 5px; /* Rounded corners for the background */
    padding: 5px 10px; /* Add more padding */
    
}

/* Center language switcher on mobile screens */
@media (max-width: 768px) {
    .language-switcher {
        justify-content: center; /* Center the links on smaller screens */
        margin-right: 0; /* Remove right margin on mobile */
    }
}


/* Navigation Menu */
nav {
    background-color: #444;
    overflow: hidden;
}

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

nav ul li {
    display: inline;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 15px;
    display: inline-block;
}

.our_value-content
{
    text-align: center;
}

/* Section with background image */
#value {
    position: relative;
    background: url('images/value.jpg') no-repeat center center;
    background-size: cover;
    height: 500px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Overlay for better text visibility */
#value::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

#value-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

#value-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

#value-content p {
    font-size: 1.2rem;
}

section {
    margin: 20px;
    padding: 20px;
    background: #fff;
}

h2 {
    /* color: #333; */
    text-align: center;
}

a {
    color: white;
}

.service {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    padding: 20px;
    border-radius: 8px;
}

.service img {
    max-width: 40%;
    height: auto;
    margin-right: 20px;
}

.service .button-link {
    display: inline-block;
    padding: 10px 20px;
    margin-right: 10px;
    background-color: darkorange;
    color: #FFFFFF;
    text-align: center;
    text-decoration: none;
    font-size: 0.8em;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.service .button-link:hover {
    background-color: orangered;
}

.service-content {
    max-width: 60%;
}

.service:nth-child(odd) {
    background-color: #f9f9f9;
}

.service:nth-child(even) {
    background-color: #e9e9e9;
}

@media (max-width: 768px) {
    .service {
        flex-direction: column;
        text-align: center;
    }

    .service img {
        margin-right: 0;
        margin-bottom: 20px;
        max-width: 100%;
    }

    .service-content {
        max-width: 100%;
    }
}

/* Contact Section with Background Image */
#contact {
    position: relative;
    background: url('images/contact-background.jpg') no-repeat center center;
    background-size: cover;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    flex-direction: column;
}

#contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

#contact-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

#contact img {
    width: 150px;
    margin-top: 20px;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}