html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #222222;
    line-height: 1.6;
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body.fade {
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

body.loaded {
    opacity: 1;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.hero {
    background-color: #193246;
    text-align: center;
    padding: 3rem 0rem 1rem;
    padding-top: 4rem;
}

.hero h1 {
    font-size: 1.75rem;
    color: #f8f9fc;
}

.hero p {
    font-size: 1.25rem;
    color: #f8f9fc;
}

section {
    padding: 1rem 1.5rem;
    max-width: 1200px;
    margin: auto;
    background-color: #ffffff;
}

section h2 {
    color: #193246;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 0.5rem;
}

ul,
ol {
    padding-left: 1.5rem;
}

ul.icon-list {
    list-style: none;
    padding-left: 0.5rem;
}

ul.icon-list li {
    margin-bottom: 1rem;
}

.icon-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.icon-item img {
    width: 24px;
    height: 24px;
}

.grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1rem;
}

.grid>div {
    flex: 1 1 300px;
    width: max-content;
    max-width: 320px;
    min-width: 280px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.grid>div:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.grid>div h2 {
    margin-top: 0;
    font-size: 1.5rem;
    color: #193246;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.grid h2 {
    border-bottom: none;
    font-size: 1.5rem;
    color: #193246;
}

.who-we-are h2 {
    font-size: 1.5rem;
    color: #193246;
    border-bottom: 2px solid #e0e0e0;
}

footer {
    background-color: #f1f1f1;
    padding: 2rem 1rem;
    text-align: center;
    font-size: 0.9rem;
    color: #666666;
    margin-top: auto;
}

a {
    color: #007bff;
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.4rem;
    }

    .hero p {
        font-size: 0.95rem;
    }
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background-color: #193246;
    padding: 1rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

.navbar-right {
    display: block;
    align-items: center;
    gap: 1rem;
}

.navbar .logo {
    height: 40px;
    object-fit: contain;
    display: block;
}

.navbar-menu {
    display: flex;
    gap: 1rem;
    font-weight: 600;
    margin-left: auto;
    margin-right: 1rem;
}

.navbar-menu a {
    color: #fff;
    text-decoration: none;
}

.navbar-menu a:hover {
    color: #b3bec1;
}

.hamburger {
    display: none;
}

.language-toggle {
    cursor: pointer;
    font-weight: 600;
    color: #fff;
    padding: 0 1rem;
    border-left: 2px solid rgba(255, 255, 255, 0.4);
    width: 20px;
}

.language-toggle a {
    color: #fff;
    text-decoration: none;
}

.language-toggle a:hover {
    color: #b3bec1;
}

a,
button,
input,
textarea,
select,
label,
svg,
img,
.hamburger,
.language-toggle,
.navbar-menu a {
    -webkit-tap-highlight-color: transparent;
}

@media (max-width: 768px) {
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background-color: #193246;
        padding: 1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: 999;
    }

    .navbar-menu {
        position: absolute;
        top: 56px;
        left: 0;
        right: 0;
        width: 100%;
        background-color: #193246;
        padding: 1rem;
        padding-bottom: 1.5rem;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 998;
        font-size: 18px;
    }

    .navbar-menu.show {
        max-height: 500px;
        opacity: 1;
        transform: translateY(0);
        margin-top: 1rem;
    }

    .navbar-menu a:hover {
        border-bottom: 0;
    }

    .navbar-menu.no-transition {
        transition: none !important;
    }

    .hamburger {
        display: block;
        position: relative; 
        width: 28px;
        height: 28px;
        cursor: pointer;
    }

    .hamburger-icon {
        position: absolute;
        width: 28px;
        height: 28px;
        cursor: pointer;
        filter: invert(1);
        transition: transform 0.3s ease, opacity 0.3s ease;
        vertical-align: middle;
    }

    .hamburger-menu {
        opacity: 1;
        transform: rotate(0deg);
    }

    .hamburger-close {
        opacity: 0;
        transform: rotate(-90deg);
    }

    .hamburger.active .hamburger-menu {
        opacity: 0;
        transform: rotate(90deg);
    }

    .hamburger.active .hamburger-close {
        opacity: 1;
        transform: rotate(0deg);
    }

    .hamburger-icon.active {
        transform: rotate(-90deg);
        opacity: 0.8;
    }

    .navbar-right {
        margin-left: auto;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .language-toggle {
        font-size: 0.85rem;
        border-left: 0;
        border-right: 1px solid rgba(255, 255, 255, 0.5);
        padding-right: 0.75rem;
    }

}


.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    margin-bottom: 1rem;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
    margin-top: 0;
    font-size: 1.25rem;
    color: #193246;
    margin-bottom: 0.75rem;
}

.service-card p {
    margin: 0;
    color: #333;
    line-height: 1.6;
}