/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    color: #2d3142;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.6;
}

.container {
    width: 90%;
    margin: 0 auto;
}

/* Header */
header {
    background-color: white;
    color: #2d3142;
    padding: 10px 20px;
    border-bottom: 2px solid #ef8354;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

       .logo {
            flex: 1;
        }

        .logo img {
            height: 50px; /* Adjust size as needed */
        }

        .main-nav {
            flex: 2;
            display: flex;
            justify-content: center;
        }

        .main-nav ul {
            list-style: none;
            display: flex;
            gap: 15px;
        }

        .main-nav ul li a {
            color: #2d3142;
            font-weight: bold;
            transition: color 0.3s ease;
        }

        .main-nav ul li a:hover {
            color: #ef8354;
        }

        .language-nav {
            flex: 1;
            display: flex;
            justify-content: flex-end;
        }

        .language-nav ul {
            list-style: none;
            display: flex;
            gap: 15px;
        }

        .language-nav ul li a {
            color: #2d3142;
            font-weight: bold;
            transition: color 0.3s ease;
        }

        .language-nav ul li a:hover {
            color: #ef8354;
        }
        .language-nav img {
            width: 24px;
            height: 24px;
            cursor: pointer;
        }
/* Hero Section */
.hero {
    background-color: #4f5d75;
    color: white;
    text-align: center;
    padding: 50px 20px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h2 {
    font-size: 2.5em;
    margin-top: 0;
    font-weight: bold;
    color: white; /* White color for hero section heading */
}

.cta-button {
    background-color: #ef8354;
    color: white;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
    margin-top: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    background-color: #d97440;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

/* Sections */
section {
    padding: 60px 20px;
}

h2 {
    font-size: 2.2em;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
    color: #2d3142; /* Default color for section headings */
}

/* Services Section */
#services {
    background-color: white; /* White background for services section */
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.service {
    background-color: #f4f5f7; /* Light grey background for individual service boxes */
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1 1 calc(33.333% - 20px); /* Responsive width */
    max-width: 350px; /* Maximum width */
}

.service:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .service {
        flex: 1 1 calc(50% - 20px); /* Two services per line */
    }
}

@media (max-width: 768px) {
    .service {
        flex: 1 1 100%; /* One service per line */
    }
}

form label {
    display: block;
    margin-bottom: 8px;
}

form input,
form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #4f5d75;
    border-radius: 5px;
    box-sizing: border-box;
}

form button {
    background-color: #ef8354;
    color: white;
    padding: 14px 20px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

form button:hover {
    background-color: #d97440;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

/* Footer */
footer {
    background-color: #2d3142;
    color: white;
    text-align: center;
    padding: 5px 0;
    font-size: 0.8em;
}

footer nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px; /* Space between links */
}

footer nav ul li a {
    color: #fff; /* Change this to a contrasting color */
    text-decoration: none; /* Remove underline */
}

footer nav ul li a:hover {
    text-decoration: underline; /* Optional: add underline on hover */
}

