/* Global styles */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #1f2933;
    background-color: #ffffff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Layout */

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Header / Navigation */

header {
    background-color: #ffffff;
    border-bottom: 1px solid #e4e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 10px 0;
}

/* NEW: make the inner container flex so logo is left, menu right */
header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* NEW: control logo size inside header */
header img {
    height: 60px;   /* adjust if you want bigger/smaller */
    width: auto;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 70px;     /* Your logo size (used if you add class="logo") */
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;        /* spacing between menu items */
}

.nav-links a {
    font-size: 16px;
    color: #52606d;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
    color: #1f3b67;
    border-bottom-color: #1f3b67;
}

/* (duplicate navbar rules kept as in your file, safe to leave) */

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 20px;
    color: #1f3b67;
}

.nav-links {
    display: flex;
    gap: 22px;
    font-size: 15px;
}

.nav-links a {
    color: #52606d;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
    color: #1f3b67;
    border-bottom-color: #1f3b67;
}

/* Hero section (Home) */

.hero {
    padding: 64px 0 48px;
    background-color: #f5f7fa;
}

.hero-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    align-items: center;
}

.hero-text {
    flex: 1 1 280px;
}

.hero-title {
    font-size: 32px;
    font-weight: 700;
    color: #102a43;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 17px;
    color: #52606d;
    margin-bottom: 24px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.btn-primary {
    background-color: #1f3b67;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #244673;
}

.btn-secondary {
    background-color: transparent;
    color: #1f3b67;
    border: 1px solid #cbd2d9;
}

.btn-secondary:hover {
    background-color: #e4e7eb;
}

/* Sections */

.section {
    padding: 56px 0;
}

.section-alt {
    background-color: #f5f7fa;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #102a43;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 15px;
    color: #52606d;
    margin-bottom: 24px;
}

/* Cards / Grids */

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.service-card,
.highlight-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 18px 18px 20px;
    border: 1px solid #e4e7eb;
}

.service-card h3,
.highlight-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #102a43;
    margin-bottom: 8px;
}

.service-card p,
.highlight-card p {
    font-size: 14px;
    color: #52606d;
}

/* Two-column layout (About, Services detail) */

.two-column {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.3fr);
    gap: 32px;
}

@media (max-width: 800px) {
    .two-column {
        grid-template-columns: 1fr;
    }

    .hero-inner {
        flex-direction: column;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: flex-end;
    }
}

/* Lists */

ul {
    list-style: none;
}

.list-check li::before {
    content: "•";
    color: #1f3b67;
    font-weight: bold;
    margin-right: 6px;
}

.list-check li {
    margin-bottom: 6px;
    font-size: 14px;
    color: #52606d;
}

/* Contact */

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 32px;
}

@media (max-width: 800px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #e4e7eb;
}

.contact-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 14px;
    color: #52606d;
    margin-bottom: 8px;
}

.contact-form label {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
    color: #334e68;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid #cbd2d9;
    margin-bottom: 12px;
    font-size: 14px;
    font-family: inherit;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

/* Blog */

.blog-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

/* Footer */

footer {
    border-top: 1px solid #e4e7eb;
    padding: 16px 0;
    font-size: 13px;
    color: #9fb3c8;
    margin-top: 32px;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
}

.footer-inner a {
    color: #829ab1;
}

.footer-inner a:hover {
    color: #52606d;
}

/* Optional: logo class if you use it */
.logo {
    height: 70px;       /* Increase logo size */
    width: auto;        /* Maintain proportions */
    object-fit: contain;
}
.lang-switch {
    padding: 4px 10px;
    border-radius: 6px;
    background: #0033cc; /* blue badge */
    color: white !important;
    font-weight: 600;
    margin-left: 16px;
}

.lang-switch:hover {
    background: #001f80;
}
