* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 60px 20px;
}

.grey {
    background: #f8f8f8;
}

/* NAVBAR */

.navbar {
    background: white;
    padding: 18px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-brand {
    font-size: 24px;
    font-weight: 800;
    color: #0b2f63;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: 0.2s ease;
}

.nav-links a:hover {
    color: #0b2f63;
}
/* LANGUAGE SWITCHER */

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-left: 8px;
    padding: 7px 12px;
    border: 1px solid #d6e2ef;
    border-radius: 999px;
    background: #f7f9fc;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    line-height: 1;
}

.language-switcher a {
    margin-left: 0 !important;
    text-decoration: none;
    color: #8a8a8a;
}

.language-switcher a:hover {
    color: #0b2f63;
}

.language-switcher span {
    color: #b0b0b0;
}

.language-switcher .active-lang {
    color: #0b2f63;
    font-weight: 800;
}


.lang-separator {
    color: #c0c8d2;
}

/* HERO */

.hero {
    background-image: url("images/HERO.png");
    background-size: cover;
    background-position: center;
    min-height: 520px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 60px 20px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 900px;
    padding: 30px;
}

.hero h1 {
    font-size: 56px;
    line-height: 1.05;
    letter-spacing: 1px;
    margin-bottom: 12px;
    font-weight: 800;
}

.hero h2 {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 18px;
    color: white;
}

.hero p {
    font-size: 20px;
    line-height: 1.4;
    max-width: 1000px;
    margin: 0 auto 24px auto;
}

.hero-button {
    background: #f4b400;
    color: white;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: bold;
    display: inline-block;
}

.hero-button:hover {
    background: #d99f00;
}

/* HOME ABOUT */

.section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 25px;
    color: #0b2f63;
}

.about-intro {
    font-size: 22px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.about-card {
    background: white;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.about-card h3 {
    margin-bottom: 15px;
    color: #0b2f63;
}

.about-footer {
    text-align: center;
    max-width: 1000px;
    margin: 40px auto 0 auto;
    font-size: 18px;
    line-height: 1.6;
}

/* FOCUS AREAS */

.focus-heading {
    text-align: center;
    margin-bottom: 45px;
}

.focus-heading h2 {
    font-size: 42px;
    color: #0b2f63;
    margin-bottom: 12px;
}

.focus-heading p {
    font-size: 18px;
    color: #666;
    max-width: 750px;
    margin: 0 auto;
}

.gallery {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.gallery div {
    background: white;
    padding: 22px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.gallery img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    background: #f5f8fc;
    border-radius: 14px;
    display: block;
}

.gallery h3 {
    font-size: 21px;
    color: #222;
    margin-top: 18px;
}

/* WHY SECTION */

.why-section {
    padding: 70px 20px;
    background: #f7f9fc;
}

.why-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 35px;
    color: #0b2f63;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.why-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.why-card img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    background: #eef4fb;
}

.why-card h3 {
    font-size: 22px;
    color: #0b2f63;
    margin: 22px 18px 10px;
}

.why-card p {
    font-size: 16px;
    line-height: 1.6;
    padding: 0 24px 28px;
}

/* PAGE HEADER */

.page-header {
    background: #0b2f63;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.page-header h1 {
    font-size: 46px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
}

/* ABOUT PAGE */

.about-page-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 45px;
    align-items: center;
}

.about-page-grid h2 {
    color: #0b2f63;
    margin-bottom: 18px;
}

.about-page-grid p {
    margin-bottom: 16px;
}

.about-page-image {
    width: 100%;
    border-radius: 18px;
    background: #f5f8fc;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.10);
}

/* PROJECTS PAGE */

.projects-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.projects-text {
    padding-top: 20px;
}

.projects-text h2 {
    color: #0b2f63;
    margin-bottom: 16px;
}

.projects-images {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.projects-images img {
    width: 100%;
    border-radius: 16px;
    background: #f5f8fc;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.10);
}

/* CONTACT PAGE */

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
}

.contact-card {
    background: white;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.contact-card h2 {
    color: #0b2f63;
    margin-bottom: 20px;
}

.contact-card p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.contact-card a {
    color: #0b2f63;
    font-weight: 600;
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-card hr {
    margin: 20px 0;
    border: none;
    border-top: 1px solid #dce7f4;
}

.map-image {
    width: 100%;
    border-radius: 12px;
    display: block;
}

/* FOOTER */

.footer {
    background: linear-gradient(to bottom, #f7f9fc, #eef4fb);
    border-top: 1px solid #dce7f4;
    padding: 60px 20px 25px;
    margin-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.footer-column h3 {
    color: #0b2f63;
    margin-bottom: 18px;
    font-size: 20px;
}

.footer-column p {
    margin-bottom: 10px;
    color: #555;
}

.footer-column a {
    color: #0b2f63;
    text-decoration: none;
    font-weight: 500;
}

.footer-column a:hover {
    color: #f4b400;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #d6e2ef;
    color: #888;
    font-size: 14px;
}
/* MOBILE VERSION */

@media (max-width: 768px) {

    body {
        overflow-x: hidden;
    }

    .navbar {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 18px 12px;
    }

    .nav-brand {
        width: 100%;
        text-align: center;
        font-size: 28px;
    }

    .nav-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 10px 18px;
        width: 100%;
    }

    .nav-links a {
        font-size: 15px;
        margin-left: 0 !important;
    }

    .language-switcher {
        margin-left: 0;
        padding: 5px 10px;
        font-size: 13px;
    }

    .hero {
        min-height: 420px;
        padding: 40px 18px;
    }

    .hero-content {
        max-width: 100%;
        padding: 20px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero h2 {
        font-size: 22px;
    }

    .hero p {
        font-size: 16px;
        max-width: 95%;
    }

    .about-grid,
    .why-grid,
    .gallery,
    .about-page-grid,
    .projects-layout,
    .contact-layout,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .gallery img,
    .why-card img,
    .projects-images img,
    .about-page-image {
        width: 100%;
        height: auto;
    }

    .footer-grid {
        text-align: center;
    }
}