:root {
    --qv-primary: #0f4c81;
    --qv-accent: #ff7a26;
    --qv-dark: #0d223a;
}

.main-header__top-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.main-header__btn-box .main-header__btn {
    background: linear-gradient(135deg, #0f4c81 0%, #0b6ab7 100%);
    color: #fff;
    border-radius: 999px;
    padding: 0 22px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    font-weight: 700;
    text-transform: none;
    box-shadow: 0 10px 24px rgba(11, 106, 183, .24);
}

.main-header__btn-box .main-header__btn::before {
    display: none;
}

.main-header__btn-box .main-header__btn:hover {
    color: #fff;
    background: linear-gradient(135deg, #0c5a97 0%, #0a7bcf 100%);
    transform: translateY(-1px);
}

.lang-switcher {
    position: relative;
}

.lang-switcher__toggle {
    border: 1px solid #d6e2ef;
    background: #fff;
    min-width: 98px;
    height: 50px;
    padding: 0 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #1f3852;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(15, 76, 129, .12);
    transition: all .25s ease;
}

.lang-switcher__toggle:hover {
    background: #f2f7ff;
    border-color: #bfd3e8;
    transform: translateY(-1px);
}

.lang-switcher__toggle i {
    font-size: 12px;
    color: #5f7792;
}

.lang-switcher__menu {
    border: 0;
    border-radius: 14px;
    min-width: 190px;
    padding: 8px;
    margin-top: 10px;
    box-shadow: 0 14px 38px rgba(11, 37, 64, .22);
    z-index: 1200;
    animation: langIn .2s ease forwards;
}

@keyframes langIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lang-flag {
    width: 22px;
    height: 15px;
    border-radius: 4px;
    object-fit: cover;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
}

.lang-option {
    width: 100%;
    border: 0;
    border-radius: 10px;
    background: transparent;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #203349;
    font-weight: 600;
    transition: all .2s ease;
}

.lang-option:hover,
.lang-option.active {
    background: #eef5ff;
    color: #0f4c81;
}

.main-menu__logo img {
    height: 44px;
    max-width: 260px;
    width: auto;
    object-fit: contain;
    display: block;
}

.main-menu__logo a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
}

.footer-widget__logo img {
    height: 42px;
    width: auto;
    object-fit: contain;
}

.footer-widget__logo a {
    display: inline-flex;
    align-items: center;
}

.mobile-nav__content .logo-box img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.main-menu__list > li > a {
    font-size: 16px;
}

.main-menu__panel-btn {
    position: relative;
    height: 50px;
    border-radius: 999px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    color: #fff;
    background: linear-gradient(135deg, #0f4c81 0%, #0b6ab7 100%);
    box-shadow: 0 10px 26px rgba(15, 76, 129, .24);
    font-weight: 700;
    letter-spacing: .01em;
    transition: all .25s ease;
}

.main-menu__panel-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(11, 106, 183, .3);
}

.main-menu__wrapper-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.main-menu__right {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
    margin-left: auto;
}

.main-slider__title {
    max-width: 920px;
}

.main-slider__content {
    max-width: 880px;
}

.main-slider__sub-title {
    letter-spacing: .06em;
}

.page-header {
    margin-bottom: 0;
}

.page-header__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(11, 27, 46, .78) 0%, rgba(11, 27, 46, .4) 45%, rgba(11, 27, 46, .22) 100%);
}

.page-header__inner {
    position: relative;
    z-index: 2;
}

.thm-breadcrumb li,
.thm-breadcrumb li a {
    font-size: 16px;
}

.project-page-v-1 {
    padding-top: 120px;
    padding-bottom: 120px;
}

.faq-page,
.services-page-v-2,
.blog-page,
.contact-form-box,
.address,
.resources-content,
.industries-content {
    padding-top: 120px;
    padding-bottom: 120px;
}

.resources-content .single-service-two,
.industries-content .single-service-two {
    margin-bottom: 30px;
}

.footer-cta-btn {
    margin-top: 12px;
    display: inline-block;
}

.footer-widget__about-text {
    color: #d0d9e5;
}

.blog-three__title a {
    line-height: 1.4;
}

.blog-three__content-box p {
    margin: 14px 0 0;
    color: #6e7a8c;
    font-size: 15px;
    line-height: 1.6;
}

.blog-deep-note {
    border-left: 4px solid var(--qv-accent);
    background: #f6f8fb;
    padding: 22px 24px;
    margin-top: 20px;
}

.map-wrap iframe {
    width: 100%;
    min-height: 520px;
    border: 0;
    filter: grayscale(0.15);
}

.contact-form__input-box textarea {
    min-height: 180px;
}

.contact-form__input-box input,
.contact-form__input-box textarea {
    width: 100%;
}

.home-insight-strip {
    background: #f4f7fc;
    border-top: 1px solid #e5ecf6;
    border-bottom: 1px solid #e5ecf6;
    padding: 24px 0;
}

.home-insight-item h4 {
    margin-bottom: 6px;
    color: var(--qv-dark);
}

.home-insight-item p {
    margin: 0;
}

.accrodion .accrodion-content .inner p {
    max-width: 980px;
}

@media (max-width: 1199px) {
    .main-header__top-right {
        gap: 10px;
    }

    .services-page-v-2,
    .faq-page,
    .blog-page,
    .contact-form-box,
    .address,
    .resources-content,
    .industries-content,
    .project-page-v-1 {
        padding-top: 90px;
        padding-bottom: 90px;
    }
}

@media (max-width: 767px) {
    .main-header__top {
        display: none;
    }

    .main-menu__wrapper-inner {
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 8px;
    }

    .main-menu__left {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .main-menu__logo img {
        height: 36px;
        max-width: 150px;
    }

    .lang-switcher__toggle {
        min-width: 84px;
        height: 34px;
        padding: 0 10px;
        font-size: 12px;
    }

    .main-menu__panel-btn {
        height: 34px;
        padding: 0 12px;
        border-radius: 999px;
        font-size: 12px;
    }

    .main-menu__right {
        display: flex;
        width: 100%;
        justify-content: flex-end;
        gap: 8px;
        margin-left: 0;
        padding-bottom: 8px;
    }

    .main-menu__panel-btn span {
        white-space: nowrap;
    }

    .project-page-v-1,
    .services-page-v-2,
    .faq-page,
    .blog-page,
    .contact-form-box,
    .address,
    .resources-content,
    .industries-content {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .home-insight-item {
        margin-bottom: 16px;
    }
}
