:root {
    --site-header-height: 86px;
    --site-header-compact-height: 62px;
    --site-red: #EC1E24;
    --site-text: #101828;
    --site-muted: #475467;
    --site-border: rgba(16, 24, 40, .10);
}

* {
    box-sizing: border-box;
}

.container-fluid {
    max-width: 1400px;
    margin-inline: auto;
}

html {
    scroll-padding-top: var(--site-header-height);
}

body {
    padding-top: var(--site-header-height);
    color: var(--site-text);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.header-scrolled,
body:has(.site-header.is-scrolled) {
    padding-top: var(--site-header-compact-height);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid var(--site-border);
    box-shadow: 0 8px 24px rgba(16, 24, 40, .06);
    transition: box-shadow .25s ease, border-color .25s ease;
}

.site-header.is-scrolled {
    border-color: rgba(236, 30, 36, .16);
    box-shadow: 0 8px 22px rgba(16, 24, 40, .10);
}

.header-inner {
    min-height: var(--site-header-height);
    display: grid;
    grid-template-columns: minmax(180px, .8fr) minmax(360px, 1.2fr) auto;
    align-items: center;
    gap: clamp(14px, 2vw, 28px);
    padding-inline: clamp(14px, 3vw, 44px);
    transition: min-height .25s ease;
}

.site-header.is-scrolled .header-inner {
    min-height: var(--site-header-compact-height);
}

.site-header .brand {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    color: var(--site-text);
    text-decoration: none;
}

.site-header .brand-logo {
    width: auto;
    max-width: 390px;
    height: 64px;
    object-fit: contain;
    transition: height .25s ease, max-width .25s ease;
}

.site-header.is-scrolled .brand-logo {
    max-width: 230px;
    height: 42px;
}

.site-header .brand-mark {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: var(--site-red);
    border-radius: 8px;
    font-size: 18px;
    font-weight: 800;
    transition: width .25s ease, height .25s ease, font-size .25s ease;
}

.site-header.is-scrolled .brand-mark {
    width: 34px;
    height: 34px;
    font-size: 15px;
}

.main-nav {
    justify-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(12px, 1.6vw, 24px);
}

.nav-link,
.nav-dropdown-toggle {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 0;
    color: var(--site-muted);
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    transition: color .2s ease;
}

.site-header.is-scrolled .nav-link,
.site-header.is-scrolled .nav-dropdown-toggle {
    min-height: 30px;
    font-size: 12px;
}

.nav-link:hover,
.nav-link:first-child,
.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown.is-hovered .nav-dropdown-toggle {
    color: var(--site-red);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle .material-symbols-outlined {
    font-size: 18px;
    line-height: 1;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    width: min(720px, calc(100vw - 36px));
    padding: 12px;
    display: grid;
    gap: 6px;
    visibility: hidden;
    opacity: 0;
    transform: translate(-50%, 8px);
    background: #ffffff;
    border: 1px solid rgba(236, 30, 36, .14);
    border-radius: 8px;
    box-shadow: 0 18px 44px rgba(16, 24, 40, .14);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.is-hovered .nav-dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, 0);
}

.solution-category {
    position: relative;
}

.solution-category-link,
.solution-submenu a,
.dropdown-all {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    color: var(--site-text);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.solution-category-link:hover,
.solution-submenu a:hover,
.dropdown-all:hover {
    color: var(--site-red);
    background: #fff0f1;
}

.solution-submenu {
    display: grid;
    gap: 4px;
    padding-left: 12px;
}

.dropdown-all {
    margin-top: 4px;
    color: var(--site-red);
    background: #fff7f7;
}

.header-actions {
    justify-self: end;
    display: flex;
    align-items: center;
}

.header-contact-btn {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 16px;
    color: #ffffff;
    background: var(--site-red);
    border: 1px solid var(--site-red);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    transition: min-height .25s ease, padding .25s ease, transform .2s ease, background .2s ease;
}

.site-header.is-scrolled .header-contact-btn {
    min-height: 34px;
    padding: 7px 12px;
    font-size: 13px;
}

.header-contact-btn:hover {
    color: #ffffff;
    background: #c9181e;
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    place-items: center;
    justify-self: end;
    color: var(--site-red);
    background: #ffffff;
    border: 1px solid rgba(236, 30, 36, .20);
    border-radius: 6px;
}

.menu-toggle .material-symbols-outlined {
    font-size: 24px;
}

@media (max-width: 1040px) {
    .header-inner {
        grid-template-columns: minmax(150px, .65fr) minmax(320px, 1fr) auto;
        gap: 14px;
    }

    .site-header .brand-logo {
        max-width: 170px;
        height: 54px;
    }

    .site-header.is-scrolled .brand-logo {
        max-width: 124px;
        height: 38px;
    }

    .main-nav {
        gap: 14px;
    }
}

@media (max-width: 900px) {
    :root {
        --site-header-height: 72px;
        --site-header-compact-height: 60px;
    }

    .header-inner {
        grid-template-columns: 1fr auto auto;
        gap: 10px;
        padding-inline: 12px;
    }

    .site-header .brand-logo {
        max-width: 142px;
        height: 46px;
    }

    .site-header.is-scrolled .brand-logo {
        max-width: 112px;
        height: 34px;
    }

    .menu-toggle {
        display: grid;
    }

    .main-nav {
        position: fixed;
        top: var(--site-header-height);
        left: 12px;
        right: 12px;
        max-height: calc(100vh - var(--site-header-height) - 18px);
        padding: 12px;
        display: grid;
        justify-content: stretch;
        gap: 4px;
        overflow-y: auto;
        visibility: hidden;
        opacity: 0;
        transform: translateY(-8px);
        background: #ffffff;
        border: 1px solid rgba(236, 30, 36, .14);
        border-radius: 8px;
        box-shadow: 0 18px 45px rgba(16, 24, 40, .16);
        transition: opacity .18s ease, transform .18s ease, visibility .18s ease, top .25s ease;
    }

    .site-header.is-scrolled .main-nav {
        top: var(--site-header-compact-height);
    }

    .main-nav.open {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .nav-link,
    .nav-dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        min-height: 40px;
        padding: 10px 12px;
        font-size: 14px;
    }

    .nav-dropdown-menu {
        position: static;
        width: 100%;
        margin-top: 4px;
        visibility: visible;
        opacity: 1;
        transform: none;
        box-shadow: none;
        border-radius: 6px;
    }

    .header-contact-btn span {
        display: none;
    }

    .header-contact-btn {
        width: 40px;
        min-height: 40px;
        padding: 0;
    }

    .site-header.is-scrolled .header-contact-btn {
        width: 36px;
        min-height: 36px;
        padding: 0;
    }
}

@media (max-width: 520px) {
    .site-header .brand-logo {
        max-width: 122px;
        height: 42px;
    }

    .site-header.is-scrolled .brand-logo {
        max-width: 96px;
        height: 32px;
    }
}

.home-banner-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 18%, rgba(236, 30, 36, .10), transparent 28%),
        linear-gradient(180deg, #ffffff, #fff7f7);
}

.home-banner-carousel,
.home-banner-carousel .owl-stage-outer,
.home-banner-carousel .owl-stage,
.home-banner-carousel .owl-item {
    min-height: 640px;
}

.home-banner-slide {
    position: relative;
    min-height: 640px;
    overflow: hidden;
}

.home-banner-slide::before {
    content: "";
    position: absolute;
    right: -120px;
    top: 54px;
    width: 430px;
    height: 430px;
    border: 52px solid rgba(236, 30, 36, .08);
    border-radius: 50%;
}

.home-banner-content {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 600px;
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(420px, .9fr);
    align-items: center;
    gap: clamp(32px, 5vw, 84px);
    padding: clamp(48px, 0vw, 82px) clamp(22px, 3vw, 90px);
}

.home-banner-copy {
    max-width: 760px;
    color: var(--site-text);
}

.home-banner-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--site-red);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.home-banner-kicker::before {
    content: "";
    width: 34px;
    height: 3px;
    background: var(--site-red);
    border-radius: 999px;
}

.home-banner-copy h1 {
    max-width: 780px;
    margin: 0 0 22px;
    color: var(--site-text);
    font-size: clamp(38px, 3.5vw, 64px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: 0;
}

.home-banner-copy h1 span {
    color: var(--site-red);
}

.home-banner-copy p {
    max-width: 720px;
    margin: 0 0 26px;
    color: #475467;
    font-size: clamp(16px, 1.25vw, 21px);
    font-weight: 600;
    line-height: 1.65;
}

.home-banner-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 680px;
    margin-bottom: 28px;
}

.home-banner-points span {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: #263238;
    background: #ffffff;
    border: 1px solid rgba(236, 30, 36, .14);
    border-radius: 999px;
    box-shadow: 0 10px 22px rgba(16, 24, 40, .06);
    font-size: clamp(13px, 1vw, 16px);
    font-weight: 800;
}

.home-banner-points i {
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: var(--site-red);
    border-radius: 50%;
    font-size: 15px;
}

.home-banner-btn {
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 13px 24px 13px 14px;
    color: #ffffff;
    background: var(--site-red);
    border-radius: 8px;
    font-size: clamp(14px, 1vw, 17px);
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 18px 34px rgba(236, 30, 36, .32);
    transition: transform .2s ease, background .2s ease;
}

.home-banner-btn i {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    color: var(--site-red);
    background: #ffffff;
    border-radius: 50%;
    font-size: 18px;
}

.home-banner-btn:hover {
    color: #ffffff;
    background: #d7191f;
    transform: translateY(-2px);
}

.home-banner-media {
    position: relative;
}

.home-banner-media::before {
    content: "";
    position: absolute;
    inset: 34px -20px -20px 46px;
    background: var(--site-red);
    border-radius: 8px;
    opacity: .95;
}

.home-banner-image-box {
    position: relative;
    min-height: clamp(360px, 34vw, 520px);
    overflow: hidden;
    background: #ffffff;
    border: 10px solid #ffffff;
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(16, 24, 40, .16);
}

.home-banner-image {
    width: 100%;
    height: 100%;
    min-height: clamp(340px, 32vw, 500px);
    object-fit: cover;
    display: block;
}

.home-banner-carousel.owl-theme .owl-nav {
    position: absolute;
    left: clamp(22px, 5vw, 90px);
    bottom: 34px;
    display: flex;
    gap: 12px;
    margin: 0;
}
.owl-nav{
    display: flex !important;
    justify-content: center !important;
    gap: 30px !important;
}   

.owl-carousel .owl-nav button.owl-next{

    width: 46px !important;
    height: 46px !important;
    display: grid;
    place-items: center;
    margin: 0;
    color: white !important;
    background: var(--site-red) !important;
    border: 1px solid rgba(236, 30, 36, .28);
    border-radius: 50%;
    font-size: 22px;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;

}
.owl-carousel .owl-nav button.owl-prev{
        width: 46px !important;
    height: 46px !important;
    display: grid;
    place-items: center;
    margin: 0;
    color: white !important;
    background: var(--site-red) !important;
    border: 1px solid rgba(236, 30, 36, .28);
    border-radius: 50%;
    font-size: 22px;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}



.home-banner-carousel.owl-theme .owl-nav  {
    width: 46px !important;
    height: 46px !important;
    display: grid;
    place-items: center;
    margin: 0;
    color: var(--site-red);
    background: red !important;
    border: 1px solid rgba(236, 30, 36, .28);
    border-radius: 50%;
    font-size: 22px;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.home-banner-carousel.owl-theme .owl-nav [class*=owl-]:hover {
    color: #ffffff;
    background: var(--site-red);
    border-color: var(--site-red);
    transform: translateY(-2px);
}

.home-banner-carousel.owl-theme .owl-dots {
    position: absolute;
    right: clamp(22px, 5vw, 90px);
    bottom: 50px;
    display: flex;
    gap: 8px;
}

.home-banner-carousel.owl-theme .owl-dots .owl-dot span {
    width: 9px;
    height: 9px;
    margin: 0;
    background: rgba(236, 30, 36, .22);
    transition: width .2s ease, background .2s ease;
}

.home-banner-carousel.owl-theme .owl-dots .owl-dot.active span {
    width: 28px;
    background: var(--site-red);
}

@media (max-width: 1100px) {
    .home-banner-content {
        grid-template-columns: minmax(0, 1fr) minmax(340px, .8fr);
        gap: 30px;
    }
}

@media (max-width: 900px) {
    .home-banner-carousel,
    .home-banner-carousel .owl-stage-outer,
    .home-banner-carousel .owl-stage,
    .home-banner-carousel .owl-item,
    .home-banner-slide {
        min-height: auto;
    }

    .home-banner-content {
        min-height: auto;
        grid-template-columns: 1fr;
        padding: 44px 18px 104px;
    }

    .home-banner-copy {
        max-width: 100%;
    }

    .home-banner-media {
        order: -1;
    }

    .home-banner-media::before {
        inset: 24px -10px -12px 24px;
    }

    .home-banner-image-box {
        min-height: 260px;
    }

    .home-banner-image {
        min-height: 240px;
    }

    .home-banner-points {
        gap: 10px;
    }

    .home-banner-points span {
        min-height: 42px;
        padding: 9px 13px;
    }

    .home-banner-carousel.owl-theme .owl-nav {
        left: 18px;
        bottom: 30px;
    }

    .home-banner-carousel.owl-theme .owl-nav [class*=owl-] {
        width: 46px;
        height: 46px;
        font-size: 21px;
    }

    .home-banner-carousel.owl-theme .owl-dots {
        right: 18px;
        bottom: 44px;
    }
}

@media (max-width: 560px) {
    .home-banner-copy h1 {
        font-size: 34px;
    }

    .home-banner-copy p {
        font-size: 15px;
    }

    .home-banner-points span {
        width: 100%;
        justify-content: flex-start;
    }
}

.home-about-section {
    position: relative;
    overflow: hidden;
    padding: 70px 0px;
   background-color: #ffeef0;
}

.home-about-section::before {
    content: "";
    position: absolute;
    right: -150px;
    bottom: -180px;
    width: 430px;
    height: 430px;
    border: 56px solid rgba(236, 30, 36, .06);
    border-radius: 50%;
}

.home-about-wrap {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(360px, .92fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(14px, 2vw, 16px);
    padding-inline: clamp(22px, 5vw, 90px);
}

.home-about-media {
    position: relative;
    min-height: 560px;
}

.home-about-main-image,
.home-about-small-image {
    overflow: hidden;
    background: #ffffff;
    border: 10px solid #ffffff;
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(16, 24, 40, .14);
}

.home-about-main-image {
    position: relative;
    z-index: 1;
    width: 89%;
    height: 560px;
}

.home-about-small-image {
    position: absolute;
    right: 0;
    bottom: 28px;
    z-index: 2;
    width: 46%;
    height: 250px;
}

.home-about-main-image img,
.home-about-small-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}



.home-about-experience {
    position: absolute;
    left: clamp(18px, 4vw, 54px);
    bottom: 22px;
    z-index: 3;
    max-width: 210px;
    padding: 22px 24px;
    color: #ffffff;
    background: var(--site-red);
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(236, 30, 36, .25);
}

.home-about-experience strong {
    display: block;
    font-size: 44px;
    font-weight: 900;
    line-height: 1;
}

.home-about-experience span {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
}

.home-about-content {
    max-width: 760px;
}

.home-about-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: var(--site-red);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.home-about-kicker::before {
    content: "";
    width: 36px;
    height: 3px;
    background: var(--site-red);
    border-radius: 999px;
}

.home-about-content h2 {
    margin: 0 0 20px;
    color: var(--site-text);
    font-size: clamp(34px, 2vw, 58px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: 0;
}

.home-about-content p {
    margin: 0 0 16px;
    color: #5b6678;
    font-size: clamp(15px, 1.08vw, 18px);
    font-weight: 600;
    line-height: 1.75;
}

.home-about-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 30px 0;
}

.home-about-features article {
    display: flex;
    gap: 14px;
    padding: 18px;
    background: #ffffff;
    border: 1px solid rgba(236, 30, 36, .12);
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(16, 24, 40, .06);
}

.home-about-features i {
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: var(--site-red);
    border-radius: 8px;
    font-size: 24px;
}

.home-about-features strong {
    display: block;
    margin-bottom: 6px;
    color: var(--site-text);
    font-size: 16px;
    font-weight: 900;
}

.home-about-features span {
    display: block;
    color: #667085;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.55;
}

.home-about-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.home-about-btn {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    color: #ffffff;
    background: var(--site-red);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 16px 32px rgba(236, 30, 36, .25);
    transition: transform .2s ease, background .2s ease;
}

.home-about-btn:hover {
    color: #ffffff;
    background: #d7191f;
    transform: translateY(-2px);
}

.home-about-link {
    color: var(--site-red);
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
}

.home-about-link:hover {
    color: #c9181e;
}

@media (max-width: 980px) {
    .home-about-wrap {
        grid-template-columns: 1fr;
    }

    .home-about-media {
        min-height: 500px;
    }

    .home-about-content {
        max-width: 100%;
    }
}

@media (max-width: 680px) {
    .home-about-section {
        padding: 58px 0;
    }

    .home-about-media {
        min-height: auto;
        display: grid;
        gap: 16px;
    }

    .home-about-media::before,
    .home-about-small-image {
        display: none;
    }

    .home-about-main-image {
        width: 100%;
        height: 320px;
    }

    .home-about-experience {
        position: static;
        max-width: none;
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .home-about-features {
        grid-template-columns: 1fr;
    }

    .home-about-content h2 {
        font-size: 32px;
    }
}

.home-brand-section {
    position: relative;
    overflow: hidden;
    padding: 70px 0px;


}


.home-brand-wrap {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(420px, .95fr);
    align-items: center;
    gap: clamp(32px, 2vw, 32px);
    padding-inline: clamp(22px, 5vw, 90px);
}

.home-brand-copy {
    max-width: 620px;
}

.home-brand-copy span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--site-red);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.home-brand-copy span::before {
    content: "";
    width: 34px;
    height: 3px;
    background: var(--site-red);
    border-radius: 999px;
}

.home-brand-copy h2 {
    margin: 0;
    color: var(--site-text);
    font-size: 3.4rem;
    font-weight: 900;
    line-height: 1.06;
}

.home-brand-copy p {
    max-width: 560px;
    margin: 20px 0 28px;
    color: #5f6b7c;
    font-size: clamp(16px, 1.18vw, 20px);
    font-weight: 600;
    line-height: 1.65;
}


.home-brand-wall {
    position: relative;
    height: 520px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    overflow: hidden;
    padding-inline: 4px;
    mask-image: linear-gradient(180deg, transparent, #000 13%, #000 87%, transparent);
}

.home-brand-lane {
    overflow: hidden;
}

.home-brand-stack {
    display: grid;
    gap: 18px;
    animation: brand-scroll-y 22s linear infinite;
}

.home-brand-lane.is-reverse .home-brand-stack {
    animation-name: brand-scroll-y-reverse;
}

.home-brand-wall:hover .home-brand-stack {
    animation-play-state: paused;
}

.home-brand-card {
    min-height: 148px;
    display: grid;
    place-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: var(--site-text);
    background: #ffffff;

    border-radius: 14px;
   border: 1px solid rgb(230, 230, 230);
    text-align: center;
    text-decoration: none;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.home-brand-card:hover {
    color: var(--site-red);
    border-color: rgba(236, 30, 36, .28);
    box-shadow: 0 18px 40px rgba(236, 30, 36, .12);
    transform: translateY(-4px);
}

.home-brand-card img {
    max-width: 130px;
    max-height: 58px;
    object-fit: contain;

    transition: filter .2s ease, opacity .2s ease, transform .2s ease;
}

.home-brand-card:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.04);
}

.home-brand-card span {
    color: #667085;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
}

@keyframes brand-scroll-y {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-50%);
    }
}

@keyframes brand-scroll-y-reverse {
    from {
        transform: translateY(-50%);
    }

    to {
        transform: translateY(0);
    }
}

@media (max-width: 980px) {
    .home-brand-wrap {
        grid-template-columns: 1fr;
    }

    .home-brand-wall {
        height: 420px;
    }
}

@media (max-width: 620px) {
    .home-brand-copy h2 {
        font-size: 34px;
    }

    .home-brand-wall {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        height: 390px;
        gap: 12px;
    }

    .home-brand-lane:nth-child(3) {
        display: none;
    }

    .home-brand-card {
        min-height: 120px;
        padding: 14px;
    }

    .home-brand-card img {
        max-width: 112px;
        max-height: 44px;
    }
}

.home-achievement-section {
    position: relative;
    overflow: hidden;
    padding:70px 0px;
    color: #ffffff;
    background:
        radial-gradient(circle at 92% 8%, rgba(0, 76, 140, .56), transparent 34%),
        linear-gradient(135deg, #061120 0%, #062749 48%, #073d76 100%);
}

.home-achievement-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .12), transparent 42%),
        radial-gradient(circle at 18% 88%, rgba(236, 30, 36, .10), transparent 32%);
    pointer-events: none;
}

.home-achievement-wrap {
    position: relative;
    z-index: 1;
    padding-inline: clamp(22px, 5vw, 90px);
}

.home-achievement-head {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .75fr);
    align-items: end;
    gap: clamp(34px, 6vw, 110px);
    margin-bottom: clamp(44px, 5vw, 72px);
}

.home-achievement-head span {
    display: inline-flex;
    margin-bottom: 22px;
    color: #ff4850;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .26em;
    text-transform: uppercase;
}

.home-achievement-head h2 {
    max-width: 760px;
    margin: 0;
    color: #ffffff;
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: 0;
}

.home-achievement-head h2 span {
    display: inline;
    margin: 0;
    color: #ff4850;
    font-size: inherit;
    letter-spacing: 0;
}

.home-achievement-head p {
    max-width: 620px;
    margin: 0;
    color: rgba(242, 242, 242, 0.72);
    font-size:17px;

    line-height: 1.55;
}

.home-achievement-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
    background: rgba(4, 10, 22, .86);
    border: 1px solid rgba(255, 255, 255, .20);
    border-radius: 22px;
}

.home-achievement-card {
    min-height: 200px;
    display: grid;
    align-content: center;
    gap: 18px;
    padding: clamp(26px, 3vw, 48px);
    border-right: 1px solid rgba(255, 255, 255, .16);
}

.home-achievement-card:last-child {
    border-right: 0;
}

.home-achievement-card strong {
    display: block;
    color: #ffffff;
    font-size:3.4rem;
    font-weight: 900;
    line-height: .9;
}

.home-achievement-card strong span {
    color: #ff4850;
}

.home-achievement-card p {
    max-width: 210px;
    margin: 0;
    color: rgba(255, 255, 255, .62);
    font-size: clamp(12px, .9vw, 15px);
    font-weight: 900;
    letter-spacing: .28em;
    line-height: 1.45;
    text-transform: uppercase;
}

@media (max-width: 1080px) {
    .home-achievement-head {
        grid-template-columns: 1fr;
    }

    .home-achievement-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .home-achievement-card:nth-child(3n) {
        border-right: 0;
    }
}

@media (max-width: 720px) {
    .home-achievement-section {
        padding: 68px 0;
    }

    .home-achievement-head h2 {
        font-size: 38px;
    }

    .home-achievement-head p {
        font-size: 16px;
    }

    .home-achievement-grid {
        grid-template-columns: 1fr;
        border-radius: 16px;
    }

    .home-achievement-card,
    .home-achievement-card:nth-child(3n) {
        min-height: 150px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .16);
    }

    .home-achievement-card:last-child {
        border-bottom: 0;
    }
}

.home-service-section {
    position: relative;
    overflow: hidden;
    padding: 70px 0px;
    background: #ffffff;
}

.home-service-wrap {
    padding-inline: clamp(22px, 5vw, 90px);
}

.home-service-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
    align-items: end;
    gap: clamp(34px, 6vw, 110px);
    margin-bottom: clamp(42px, 5vw, 72px);
}

.home-service-head span {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--site-red);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .26em;
    text-transform: uppercase;
}

.home-service-head h2 {
    max-width: 760px;
    margin: 0;
    color: #06254b;
    font-size: clamp(42px, 3.4vw, 42px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: 0;
}

.home-service-head p {
    max-width: 620px;
    margin: 0;
    color: #5f6b7c;
    font-size: 17px;

    line-height: 1.55;
}

.home-service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.home-service-card {
    position: relative;
    min-height: 260px;
    display: grid;
    align-content: start;
    gap: 16px;
    padding: 34px 30px;
    color: #06254b;
    background: #ffffff;
    border: 1px solid #e5ebf3;
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(16, 24, 40, .03);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.home-service-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    opacity: 0;
    background: linear-gradient(90deg, #06254b, var(--site-red));
    border-radius: 14px 14px 0 0;
    transition: opacity .2s ease;
}

.home-service-card:hover,
.home-service-card.is-featured {
    color: #06254b;
    border-color: rgba(236, 30, 36, .18);
    box-shadow: 0 24px 48px rgba(16, 24, 40, .12);
    transform: translateY(-4px);
}

.home-service-card:hover::before,
.home-service-card.is-featured::before {
    opacity: 1;
}

.home-service-arrow {
    position: absolute;
    top: 30px;
    right: 30px;
    color: #a5adba;
    font-size: 22px;
    transition: color .2s ease, transform .2s ease;
}

.home-service-card:hover .home-service-arrow,
.home-service-card.is-featured .home-service-arrow {
    color: var(--site-red);
    transform: translate(3px, -3px);
}

.home-service-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    color: #06254b;
    background: #f6f8fb;
    border-radius: 14px;
    font-size: 27px;
    transition: color .2s ease, background .2s ease;
}

.home-service-card:hover .home-service-icon,
.home-service-card.is-featured .home-service-icon {
    color: #ffffff;
    background: #06254b;
}

.home-service-card strong {
    display: block;
    margin-top: 10px;
    color: #06254b;
    font-size: clamp(20px, 1.45vw, 25px);
    font-weight: 900;
    line-height: 1.18;
}

.home-service-card p {
    margin: 0;
    color: #667085;
    font-size: clamp(14px, 1vw, 17px);
    font-weight: 600;
    line-height: 1.55;
}

.home-service-link {
    align-self: end;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-top: 12px;
    color: #06254b;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.home-service-link i {
    width: 28px;
    height: 1px;
    background: currentColor;
}

.home-service-card:hover .home-service-link,
.home-service-card.is-featured .home-service-link {
    color: var(--site-red);
}

@media (max-width: 1180px) {
    .home-service-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .home-service-head {
        grid-template-columns: 1fr;
    }

    .home-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .home-service-section {
        padding: 58px 0;
    }

    .home-service-head h2 {
        font-size: 36px;
    }

    .home-service-head p {
        font-size: 16px;
    }

    .home-service-grid {
        grid-template-columns: 1fr;
    }

    .home-service-card {
        min-height: 230px;
        padding: 28px 24px;
    }
}

.home-founder-section {
    position: relative;
    overflow: hidden;
    padding: 70px 0px;
    background:
        radial-gradient(circle at 6% 16%, rgba(236, 30, 36, .08), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
}

.home-founder-wrap {
    display: grid;
    grid-template-columns: minmax(320px, 520px) minmax(0, 1fr);
    align-items: center;
    gap: clamp(44px, 6vw, 110px);
    padding-inline: clamp(22px, 5vw, 90px);
}

.home-founder-media {
    position: relative;
    min-height: clamp(460px, 42vw, 650px);
    overflow: hidden;
    border-radius: 0 54px 0 54px;
    background: #f4f7fb;
    box-shadow: 0 28px 70px rgba(6, 37, 75, .14);
}

.home-founder-media::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(180deg, transparent 0%, rgba(6, 37, 75, .88) 100%);
}

.home-founder-media img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    display: block;
    object-fit: cover;
}

.home-founder-quote-icon {
    position: absolute;
    z-index: 2;
    top: -28px;
    left: -26px;
    width: 96px;
    height: 96px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: var(--site-red);
    border: 10px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 18px 42px rgba(236, 30, 36, .24);
    font-size: 42px;
}

.home-founder-name {
    position: absolute;
    z-index: 2;
    left: 32px;
    right: 32px;
    bottom: 30px;
    color: #ffffff;
}

.home-founder-name strong {
    display: block;
    font-size: clamp(22px, 2vw, 30px);
    font-weight: 900;
    line-height: 1.15;
}

.home-founder-name span {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .22em;
    text-transform: uppercase;
    opacity: .86;
}

.home-founder-content {
    max-width: 850px;
}

.home-founder-kicker {
    display: inline-flex;
    margin-bottom: 22px;
    color: var(--site-red);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .28em;
    text-transform: uppercase;
}

.home-founder-content h2 {
    margin: 0;
    color: #06254b;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: 0;
}

.home-founder-content h2 span {
    color: var(--site-red);
  
    font-size: 3.4rem;
    font-weight: 700;
}

.home-founder-content>p {
    max-width: 760px;
    margin: 28px 0 38px;
    color: #5f6b7c;
    font-size: clamp(17px, 1.25vw, 22px);
    font-weight: 600;
    line-height: 1.7;
}

.home-founder-timeline {
    position: relative;
    display: grid;
    gap: 26px;
    margin: 0 0 38px;
    padding-left: 34px;
}

.home-founder-timeline::before {
    content: "";
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 7px;
    border-left: 2px dashed #d6deea;
}

.home-founder-timeline article {
    position: relative;
}

.home-founder-timeline article::before {
    content: "";
    position: absolute;
    top: 8px;
    left: -34px;
    width: 14px;
    height: 14px;
    background: #06254b;
    border: 4px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 0 1px #d6deea;
}

.home-founder-timeline strong {
    display: block;
    color: #06254b;
    font-size: clamp(24px, 2.1vw, 34px);
    font-weight: 950;
    line-height: 1;
}

.home-founder-timeline span {
    display: block;
    margin-top: 10px;
    color: #657286;
    font-size: clamp(15px, 1vw, 18px);
    font-weight: 600;
    line-height: 1.45;
}

.home-founder-sign {
    display: flex;
    align-items: start;
    flex-wrap: wrap;
text-align: left;
    gap: 0px;
    flex-direction: column;
}

.home-founder-sign strong {
    color: #06254b;

    font-size: clamp(30px, 3vw, 46px);
    font-weight: 500;
}

.home-founder-sign span {
    color: #667085;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

@media (max-width: 1050px) {
    .home-founder-wrap {
        grid-template-columns: 1fr;
    }

    .home-founder-media {
        max-width: 620px;
        width: 100%;
        margin-inline: auto;
    }
}

@media (max-width: 620px) {
    .home-founder-section {
        padding: 58px 0;
    }

    .home-founder-wrap {
        gap: 34px;
    }

    .home-founder-media {
        min-height: 430px;
        border-radius: 0 34px 0 34px;
    }

    .home-founder-quote-icon {
        top: -18px;
        left: -12px;
        width: 76px;
        height: 76px;
        border-width: 8px;
        font-size: 34px;
    }

    .home-founder-content h2 {
        font-size: 36px;
    }

    .home-founder-content>p {
        margin: 22px 0 30px;
        font-size: 16px;
    }
}

.home-project-section {
    position: relative;
    overflow: hidden;
    padding: 70px 0px;
    background: #f7f9fc;
}

.home-project-section::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 240px;
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.home-project-wrap {
    position: relative;
    z-index: 1;
    padding-inline: clamp(18px, 5vw, 90px);
}

.home-project-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
    align-items: end;
    gap: clamp(30px, 6vw, 100px);
    margin-bottom: 34px;
}

.home-project-head span {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--site-red);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .28em;
    text-transform: uppercase;
}

.home-project-head h2 {
    max-width: 780px;
    margin: 0;
    color: #06254b;
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: 0;
}

.home-project-head h2 span {
    display: inline;
    margin: 0;
    color: var(--site-red);
    font-size: inherit;
    letter-spacing: 0;
}

.home-project-head p {
    max-width: 620px;
    margin: 0;
    color: #5f6b7c;
    font-size: 17px;

    line-height: 1.55;
}

.home-project-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: clamp(32px, 4vw, 54px);
}

.home-project-filters button {
    min-height: 38px;
    padding: 10px 20px;
    color: var(--site-red);
    background: #ffffff;
    border: 1px solid #dde5ef;
    border-radius: 999px;
    box-shadow: 0 8px 22px rgba(16, 24, 40, .04);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .16em;
    line-height: 1;
    text-transform: uppercase;
    transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.home-project-filters button:hover,
.home-project-filters button.is-active {
    color: #ffffff;
    background:var(--site-red);
    border-color: var(--site-red);
    transform: translateY(-1px);
}

.home-project-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-flow: dense;
    gap: 22px;
}

.home-project-card {
    position: relative;
    min-height: 310px;
    overflow: hidden;
    display: block;
    color: #ffffff;
    background: #06254b;
    border-radius: 16px;
    box-shadow: 0 24px 54px rgba(6, 37, 75, .14);
    text-decoration: none;
    transform: translateY(0);
    transition: opacity .25s ease, transform .25s ease, box-shadow .25s ease;
}

.home-project-card:nth-child(3n + 1),
.home-project-card.is-large {
    min-height: 430px;
}

.home-project-card:nth-child(4n) {
    min-height: 380px;
}

.home-project-card.is-hidden {
    display: none;
}

.home-project-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(6, 37, 75, .05) 0%, rgba(6, 37, 75, .34) 44%, rgba(2, 18, 38, .92) 100%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.24), transparent 48%);
    transition: background .25s ease;
}

.home-project-card img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    display: block;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform .5s ease, filter .25s ease;
}

.home-project-card:hover {
    color: #ffffff;
    box-shadow: 0 30px 70px rgba(6, 37, 75, .22);
    transform: translateY(-5px);
}

.home-project-card:hover img {
    filter: saturate(1.08);
    transform: scale(1.08);
}

.home-project-card:hover::after {
    background:
        linear-gradient(180deg, rgba(6, 37, 75, .02) 0%, rgba(6, 37, 75, .22) 40%, rgba(2, 18, 38, .94) 100%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.34), transparent 54%);
}

.home-project-badge {
    position: absolute;
    z-index: 2;
    top: 20px;
    left: 20px;
    max-width: calc(100% - 40px);
    padding: 8px 14px;
    color: #06254b;
    background: rgba(255, 255, 255, .92);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .16em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.home-project-card-copy {
    position: absolute;
    z-index: 2;
    left: 20px;
    right: 54px;
    bottom: 20px;
}

.home-project-card-copy strong {
    display: block;
    color: #ffffff;
    font-size: clamp(19px, 1.55vw, 26px);
    font-weight: 950;
    line-height: 1.14;
}

.home-project-card-copy p {
    max-width: 520px;
    margin: 10px 0 0;
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
}

.home-project-card>i {
    position: absolute;
    z-index: 2;
    right: 20px;
    bottom: 20px;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 50%;
    font-size: 18px;
    transition: background .2s ease, transform .2s ease;
}

.home-project-card:hover>i {
    background: var(--site-red);
    transform: translate(3px, -3px);
}

@media (max-width: 1100px) {
    .home-project-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-project-head {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .home-project-section {
        padding: 58px 0;
    }

    .home-project-head h2 {
        font-size: 38px;
    }

    .home-project-head p {
        font-size: 16px;
    }

    .home-project-filters {
        gap: 8px;
    }

    .home-project-filters button {
        min-height: 36px;
        padding: 9px 14px;
        font-size: 11px;
    }

    .home-project-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .home-project-card,
    .home-project-card:nth-child(3n + 1),
    .home-project-card:nth-child(4n),
    .home-project-card.is-large {
        min-height: 340px;
    }
}

.home-review-section {
    position: relative;
    overflow: hidden;
    padding: 70px 0px;
    color: #ffffff;
    background:
        radial-gradient(circle at 72% 16%, rgba(236, 30, 36, .16), transparent 28%),
        radial-gradient(circle at 88% 58%, rgba(93, 63, 211, .22), transparent 34%),
        linear-gradient(135deg, #061120 0%, #06284a 48%, #161b3b 100%);
}

.home-review-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .16), transparent 46%),
        radial-gradient(circle at 18% 74%, rgba(0, 102, 180, .12), transparent 34%);
    pointer-events: none;
}

.home-review-wrap {
    position: relative;
    z-index: 1;
    max-width: 980px;
    padding-inline: clamp(18px, 5vw, 90px);
}

.home-review-head {
    margin-bottom: clamp(34px, 5vw, 58px);
    text-align: center;
}

.home-review-head span {
    display: inline-flex;
    margin-bottom: 18px;
    color: #ff4850;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .28em;
    text-transform: uppercase;
}

.home-review-head h2 {
    margin: 0;
    color: #ffffff;
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: 0;
}

.home-review-head h2 span {
    display: inline;
    margin: 0;
    color: #ff4850;
    font-size: inherit;
    letter-spacing: 0;
}

.home-review-carousel {
    padding-bottom: 72px;
}

.home-review-carousel .owl-stage-outer {
    overflow: visible;
}

.home-review-card {
    min-height: clamp(330px, 28vw, 430px);
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 24px;
    padding: clamp(42px, 5vw, 72px);
    color: #ffffff;
    background: rgba(3, 19, 43, .72);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 22px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04), 0 28px 70px rgba(0, 0, 0, .18);
    text-align: center;
    backdrop-filter: blur(10px);
}

.home-review-quote {
    color: #ff4850;
    font-size: clamp(36px, 4vw, 54px);
    line-height: 1;
}

.home-review-card blockquote {
    max-width: 780px;
    margin: 0;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0;
}

.home-review-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    color: rgba(255, 255, 255, .26);
    font-size: 18px;
}

.home-review-stars .is-active {
    color: #ff4850;
}

.home-review-author {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    text-align: left;
}

.home-review-author img {
    width: 58px !important;
    height: 58px !important;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, .24);
    border-radius: 50%;
}

.home-review-author strong {
    display: block;
    color: #ffffff;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.1;
}

.home-review-author span {
    display: block;
    margin-top: 5px;
    color: rgba(255, 255, 255, .64);
    font-size: 13px;
    font-weight: 600;
}

.home-review-author b {
    color: #ff4850;
    font-weight: 900;
}

.home-review-carousel.owl-theme .owl-nav,
.home-review-carousel .owl-nav {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: auto !important;
    height: auto !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 116px !important;
    margin: 0;
    transform: translateX(-50%);
    background: transparent !important;
}

.home-review-carousel.owl-carousel .owl-nav button.owl-prev,
.home-review-carousel.owl-carousel .owl-nav button.owl-next {
    width: 42px !important;
    height: 42px !important;
    display: grid;
    place-items: center;
    margin: 0;
    color: #ffffff !important;
    background: rgba(3, 19, 43, .62) !important;
    border: 1px solid rgba(255, 255, 255, .12) !important;
    border-radius: 50%;
    font-size: 19px;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.home-review-carousel.owl-carousel .owl-nav button:hover {
    background: var(--site-red) !important;
    border-color: var(--site-red) !important;
    transform: translateY(-2px);
}

.home-review-carousel.owl-theme .owl-dots,
.home-review-carousel .owl-dots {
    position: absolute;
    left: 50%;
    bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transform: translateX(-50%);
}

.home-review-carousel.owl-theme .owl-dots .owl-dot span {
    width: 11px;
    height: 6px;
    margin: 0;
    background: rgba(255, 255, 255, .32);
    border-radius: 999px;
    transition: width .2s ease, background .2s ease;
}

.home-review-carousel.owl-theme .owl-dots .owl-dot.active span {
    width: 34px;
    background: #ff4850;
}

@media (max-width: 760px) {
    .home-review-section {
        padding: 64px 0;
    }

    .home-review-head h2 {
        font-size: 38px;
    }

    .home-review-card {
        min-height: 360px;
        padding: 34px 22px;
        border-radius: 16px;
    }

    .home-review-card blockquote {
        font-size: 24px;
    }

    .home-review-carousel .owl-nav {
        gap: 98px !important;
    }
}
.faq-section {
    padding: 70px 0;
   background-color: #ffeef0;
}

.faq-layout {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 60px;
    align-items: flex-start;
}

.faq-sticky {
    position: sticky;
    top: 120px;
}

.section-label {
      display: inline-flex;
    margin-bottom: 18px;
    color: var(--site-red);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .26em;
    text-transform: uppercase;
}

.faq-sticky h2 {
    font-size: 42px;
    line-height: 1.15;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
}

.faq-sticky p {
    font-size: 16px;
    line-height: 1.8;
    color: #6b7280;
}

.faq-info-box {
    margin-top: 35px;
    display: flex;
    gap: 18px;
    padding: 25px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid #ececec;
    box-shadow: 0 15px 40px rgba(0,0,0,.05);
}

.faq-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #cc0000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
}

.custom-faq .accordion-item {
    border: 0;
    margin-bottom: 18px;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 35px rgba(0,0,0,.06);
}

.custom-faq .accordion-button {
    padding: 24px 28px;
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    background: #fff;
    box-shadow: none;
}

.custom-faq .accordion-button:not(.collapsed) {
    background: #cc0000;
    color: #fff;
}

.custom-faq .accordion-button:focus {
    box-shadow: none;
}

.custom-faq .accordion-body {
    padding: 25px 28px;
    font-size: 15px;
    line-height: 1.8;
    color: #6b7280;
}

@media (max-width: 991px) {
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-sticky {
        position: relative;
        top: 0;
    }

    .faq-sticky h2 {
        font-size: 32px;
    }
}


.cta-section {
  padding: 40px;
  background: #ffffff;
  font-family: Arial, sans-serif;
}

.cta-box {
  max-width: 1260px;
  margin: auto;
  padding: 80px 30px;
  border-radius: 42px;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 82%, #ff3445 0%, transparent 35%),
    radial-gradient(circle at 12% 15%, #0c416d 0%, transparent 35%),
    linear-gradient(135deg, #073b70 0%, #143d75 35%, #773d6f 68%, #ef3349 100%);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.cta-badge {
  display: inline-block;
  padding: 9px 20px;
  margin-bottom: 30px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.cta-box h2 {
  max-width: 900px;
  margin: 0 auto;
  font-size: 68px;
  line-height: 1;
  font-weight: 900;
}

.cta-box h2 span {
  display: block;
  margin-top: 10px;
  font-size: 56px;
  font-family: cursive;
  font-weight: 500;
}

.cta-box p {
  max-width: 720px;
  margin: 28px auto 42px;
  font-size: 20px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 17px 30px;
  border-radius: 35px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: 0.3s ease;
}

.btn-light {
  background: #ffffff;
  color: #0b2442;
}

.btn-outline {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.04);
}

.btn:hover {
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .cta-section {
    padding: 20px;
  }

  .cta-box {
    padding: 55px 20px;
    border-radius: 28px;
  }

  .cta-box h2 {
    font-size: 38px;
  }

  .cta-box h2 span {
    font-size: 36px;
  }

  .cta-box p {
    font-size: 16px;
  }
}

.site-footer {
  background: #070d18;
  color: #a6adba;
  padding: 70px 8% 35px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: 2.2fr 0.8fr 0.8fr 0.8fr 0.9fr 1.7fr;
  gap: 45px;
}

.footer-logo {
  color: #fff;
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 900;
}

.footer-logo span {
  color: #ef3d4f;
}

.footer-about p {
  max-width: 320px;
  line-height: 1.7;
  font-size: 15px;
}

.footer-info {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.footer-info li {
  margin-bottom: 14px;
  line-height: 1.5;
  font-size: 14px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #151c2a;
  color: #fff;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-size: 13px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #ef3d4f;
}

.footer-links h4,
.footer-newsletter h4 {
  color: #ef3d4f;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 22px;
}

.footer-links a {
  display: block;
  color: #a6adba;
  text-decoration: none;
  margin-bottom: 14px;
  font-size: 14px;
}

.footer-links a:hover {
  color: #fff;
}

.footer-newsletter h3 {
  color: #fff;
  font-size: 23px;
  line-height: 1.25;
  margin-bottom: 18px;
}

.footer-newsletter form {
  display: flex;
  max-width: 280px;
  background: #151c2a;
  border-radius: 35px;
  overflow: hidden;
  border: 1px solid #252d3a;
}

.footer-newsletter input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  padding: 16px 18px;
}

.footer-newsletter button {
  width: 58px;
  border: 0;
  background: #ef3d4f;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.footer-newsletter small {
  display: block;
  margin-top: 13px;
  color: #747b88;
  font-size: 12px;
}

.footer-bottom {
  border-top: 1px solid #18202d;
  margin-top: 60px;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
}

.footer-bottom a {
  color: #858c99;
  text-decoration: none;
  margin-left: 25px;
}

.footer-bottom a:hover {
  color: #fff;
}

@media (max-width: 1100px) {
  .footer-container {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-about,
  .footer-newsletter {
    grid-column: span 3;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 50px 20px 28px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-about,
  .footer-newsletter {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-bottom a {
    margin-left: 0;
    margin-right: 18px;
  }
}

.process-section {
  padding: 120px 40px 100px;
  background: #ffffff;
  font-family: Arial, sans-serif;
  color: #082b59;
  text-align: center;
  position: relative;
}

.process-header span {
  display: block;
  color: #ef3445;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 7px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.process-header h2 {
  margin: 0 auto 90px;
  max-width: 980px;
  font-size: 70px;
  line-height: 1.05;
  font-weight: 900;
  color: #062856;
}

.process-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 57%;
  height: 1px;
  background: #dce2eb;
  z-index: 0;
}

.process-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 35px;
  max-width: 1500px;
  margin: 0 auto;
}

.process-card {
  text-align: center;
}

.icon-box {
  width: 78px;
  height: 78px;
  margin: 0 auto 30px;
  border-radius: 50%;
  border: 2px solid #e1e6ee;
  background: #fff;
  color: #062856;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  position: relative;
}

.icon-box span {
  position: absolute;
  top: -12px;
  right: -12px;
  background: #062856;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  padding: 6px 11px;
  border-radius: 20px;
}

.process-card h3 {
  font-size: 24px;
  margin-bottom: 18px;
  color: #062856;
  font-weight: 900;
}

.process-card p {
  font-size: 17px;
  line-height: 1.6;
  color: #586274;
  max-width: 240px;
  margin: auto;
}

@media (max-width: 1200px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-line {
    display: none;
  }

  .process-header h2 {
    font-size: 52px;
  }
}

@media (max-width: 768px) {
  .process-section {
    padding: 70px 20px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .process-header h2 {
    font-size: 36px;
  }

  .process-card p {
    max-width: 100%;
  }
}