/*
📁 public/style.css
*/

body {
    font-family: system-ui, sans-serif;
    background-color: #f9f9f9;
    color: #222;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

h1, h2, h3 {
    color: #1a1a1a;
}

header {
    text-align: center;
    margin-bottom: 3rem;
}

.btn {
    display: inline-block;
    margin-top: 1rem;
    background-color: #ff7a00;
    color: #fff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

section {
    margin-bottom: 3rem;
}

footer {
    text-align: center;
    font-size: 0.9rem;
    color: #555;
    border-top: 1px solid #ddd;
    padding-top: 2rem;
    margin-top: 4rem;
}

/*NAV BAR */
/*NAV BAR */

.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
    padding: 1rem 1.5rem;
    font-family: system-ui, sans-serif;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: #333;
    text-decoration: none;
}

.logo img {
    height: 30px;
    margin-right: 0.5rem;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
    padding: 0;
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.lang-switch {
    font-weight: bold;
    color: #0077cc;
}

/* Mobile toggle */
.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
}

/* Responsive Nav */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-toggle-label {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background: #fff;
        position: absolute;
        right: 1.5rem;
        top: 4rem;
        border: 1px solid #ddd;
        border-radius: 8px;
        padding: 1rem;
    }

    .nav-toggle:checked + .nav-toggle-label + .nav-links {
        display: flex;
    }
}


/*NAV BAR */
/*NAV BAR */



.grid.services {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
    background: #fff;
    padding: 1.5rem;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.card img {
    margin-bottom: 1rem;
}
.highlight {
    background: #f1faff;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    text-align: left;
}

.highlight h2 {
    margin-bottom: 1rem;
    color: #005588;
}