@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --navy: #081c68;
    --navy-dark: #051344;
    --navy-deep: #030c2d;
    --navy-soft: #edf1ff;
    --blue: #17349b;
    --red: #ed1524;
    --red-dark: #ca0d19;
    --white: #ffffff;
    --surface: #f6f7fb;
    --surface-2: #eef1f8;
    --border: #e4e7ef;
    --text: #161c2d;
    --text-soft: #687084;
    --font-body: "Inter", sans-serif;
    --font-heading: "Inter", sans-serif;
    --shadow-sm: 0 10px 30px rgba(12, 25, 72, 0.07);
    --shadow-md: 0 20px 60px rgba(12, 25, 72, 0.12);
    --shadow-lg: 0 35px 100px rgba(5, 19, 68, 0.18);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --transition: 0.3s cubic-bezier(.2,.75,.25,1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body,
button,
input,
textarea,
select {
    font-family: var(--font-body);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

button {
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1360px;
}

.site-main {
    overflow: hidden;
}

.section-space {
    padding: 120px 0;
}

.section-space-sm {
    padding: 90px 0;
}

.site-header {
    position: relative;
    z-index: 1060;
    width: 100%;
}

.site-topbar {
    height: 38px;
    color: rgba(255, 255, 255, 0.8);
    background: var(--navy-dark);
}

.site-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 38px;
}

.site-topbar-message {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.topbar-mark {
    width: 22px;
    height: 2px;
    background: var(--red);
    border-radius: 10px;
}

.site-topbar-contact {
    display: flex;
    align-items: center;
    height: 100%;
}

.site-topbar-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 100%;
    padding: 0 15px;
    color: rgba(255, 255, 255, 0.76);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 11px;
    font-weight: 650;
}

.site-topbar-contact a:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.site-topbar-contact a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.04);
}

.site-topbar-contact i {
    color: #ffffff;
    font-size: 10px;
}

.site-navbar {
    min-height: 94px;
    padding: 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(8, 28, 104, 0.07);
    transition: var(--transition);
}

.site-header.is-scrolled .site-navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    min-height: 76px;
    box-shadow: 0 15px 45px rgba(5, 19, 68, 0.09);
    backdrop-filter: blur(18px);
}

.site-header.is-scrolled .site-brand {
    min-height: 76px;
}

.site-header.is-scrolled .site-brand-logo {
    height: 55px;
}

.site-brand {
    display: flex;
    align-items: center;
    min-height: 94px;
    margin: 0;
    padding: 8px 0;
}

.site-brand-logo {
    display: block;
    width: auto;
    max-width: 225px;
    height: 67px;
    object-fit: contain;
    object-position: left center;
    transition: var(--transition);
}

.site-desktop-nav {
    align-items: center;
    margin-left: auto;
}

.site-nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.site-nav-link {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 0 13px !important;
    color: #252a38;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: -0.1px;
}

.site-nav-link::before {
    position: absolute;
    content: "";
    left: 50%;
    bottom: 6px;
    width: 4px;
    height: 4px;
    background: var(--red);
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%, 5px);
    transition: var(--transition);
}

.site-nav-link:hover,
.site-nav-link.active {
    color: var(--navy);
    background: rgba(8, 28, 104, 0.045);
}

.site-nav-link:hover::before,
.site-nav-link.active::before {
    opacity: 1;
    transform: translate(-50%, 0);
}

.site-nav-link.dropdown-toggle::after {
    margin-left: 7px;
    border: 0;
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-size: 10px;
    font-weight: 900;
    vertical-align: 0;
}

.site-offer-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    min-height: 50px;
    margin-left: 18px;
    padding: 0 23px;
    color: var(--white);
    background: var(--red);
    border-radius: 12px;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(237, 21, 36, 0.2);
}

.site-offer-button:hover {
    color: var(--white);
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 17px 35px rgba(237, 21, 36, 0.27);
}

.site-offer-button i {
    font-size: 11px;
    transition: transform var(--transition);
}

.site-offer-button:hover i {
    transform: translateX(4px);
}

.site-nav-dropdown {
    position: relative;
}

.site-nav-dropdown > .dropdown-menu {
    display: block;
    visibility: hidden;
    opacity: 0;
    margin: 0;
    pointer-events: none;
    z-index: 1080;
    transition:
        opacity 0.18s ease,
        transform 0.18s ease,
        visibility 0.18s ease;
}

.site-nav-dropdown.is-open > .dropdown-menu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.site-dropdown {
    top: 100% !important;
    left: 50% !important;
    width: 340px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.99);
    border: 1px solid var(--border);
    border-radius: 17px;
    box-shadow: var(--shadow-md);
    transform: translate(-50%, 8px) !important;
}

.site-nav-dropdown.is-open > .site-dropdown {
    transform: translate(-50%, 0) !important;
}

.site-dropdown-small {
    width: 350px;
}

.site-dropdown-label {
    padding: 5px 10px 10px;
    color: #9ba1af;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.site-dropdown-link {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 68px;
    padding: 10px;
    color: var(--text);
    border-radius: 12px;
}

.site-dropdown-link:hover {
    color: var(--navy);
    background: var(--navy-soft);
}

.site-dropdown-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    color: var(--navy);
    background: var(--white);
    border: 1px solid rgba(8, 28, 104, 0.09);
    border-radius: 10px;
    transition: var(--transition);
}

.site-dropdown-link:hover .site-dropdown-icon {
    color: var(--white);
    background: var(--navy);
    border-color: var(--navy);
}

.site-dropdown-icon i {
    font-size: 14px;
}

.site-dropdown-link > span:nth-child(2) {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-width: 0;
}

.site-dropdown-link strong {
    color: inherit;
    font-size: 12.5px;
    font-weight: 800;
}

.site-dropdown-link small {
    margin-top: 1px;
    color: #969dab;
    font-size: 9.5px;
}

.site-dropdown-link > i {
    color: #b6bbc5;
    font-size: 9px;
    transition: var(--transition);
}

.site-dropdown-link:hover > i {
    color: var(--red);
    transform: translateX(3px);
}

.site-services-dropdown {
    position: relative;
}

.services-dropdown {
    top: 100% !important;
    left: 50% !important;
    width: min(760px, 80vw);
    padding: 0;
    overflow: hidden;
    transform: translate(-50%, 8px) !important;
}

.site-services-dropdown.is-open > .services-dropdown {
    transform: translate(-50%, 0) !important;
}

.services-dropdown-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 21px 22px;
    background: var(--navy);
}

.services-dropdown-head > div {
    display: flex;
    flex-direction: column;
}

.services-dropdown-head span {
    color: rgba(255, 255, 255, 0.47);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.services-dropdown-head strong {
    margin-top: 2px;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
}

.services-dropdown-head > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 11px;
    font-weight: 700;
}

.services-dropdown-head > a:hover {
    color: var(--white);
}

.services-dropdown-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 9px;
}

.service-menu-link {
    display: grid;
    grid-template-columns: 43px 1fr 16px;
    align-items: center;
    gap: 11px;
    min-height: 65px;
    padding: 9px;
    color: #303647;
    border-radius: 11px;
}

.service-menu-link:hover {
    color: var(--navy);
    background: var(--navy-soft);
}

.service-menu-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    color: var(--navy);
    background: var(--surface);
    border-radius: 10px;
    transition: var(--transition);
}

.service-menu-link:hover .service-menu-icon {
    color: var(--white);
    background: var(--navy);
}

.service-menu-icon i {
    font-size: 14px;
}

.service-menu-text strong {
    display: block;
    font-size: 11.5px;
    line-height: 1.35;
    font-weight: 750;
}

.service-menu-arrow {
    color: #c1c5cf;
    font-size: 8px;
    transition: var(--transition);
}

.service-menu-link:hover .service-menu-arrow {
    color: var(--red);
    transform: translateX(3px);
}

.mobile-menu-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    color: var(--white);
    background: var(--navy);
    border: 0;
    border-radius: 12px;
}

.mobile-menu-button i {
    font-size: 18px;
}

.mobile-navigation {
    width: min(400px, 92vw) !important;
    border: 0 !important;
}

.mobile-navigation-head {
    min-height: 88px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
}

.mobile-navigation-head img {
    width: auto;
    max-width: 180px;
    height: 56px;
    object-fit: contain;
}

.mobile-navigation-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    color: var(--white);
    background: var(--red);
    border: 0;
    border-radius: 10px;
}

.mobile-navigation .offcanvas-body {
    padding: 15px 20px 25px;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
}

.mobile-nav-main-link,
.mobile-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 54px;
    width: 100%;
    padding: 0;
    color: var(--text);
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--border);
    text-align: left;
    font-size: 14px;
    font-weight: 750;
}

.mobile-nav-main-link:hover,
.mobile-nav-toggle:hover {
    color: var(--navy);
}

.mobile-nav-toggle i {
    font-size: 10px;
}

.mobile-nav-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.mobile-nav-submenu {
    padding: 7px 0 10px 15px;
    border-bottom: 1px solid var(--border);
}

.mobile-nav-submenu a {
    position: relative;
    display: block;
    padding: 8px 0 8px 17px;
    color: var(--text-soft);
    font-size: 12px;
    font-weight: 650;
}

.mobile-nav-submenu a::before {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    width: 6px;
    height: 2px;
    background: var(--red);
    transform: translateY(-50%);
}

.mobile-offer-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 51px;
    margin-top: 22px;
    color: var(--white);
    background: var(--red);
    border-radius: 11px;
    font-size: 13px;
    font-weight: 800;
}

.mobile-offer-button:hover {
    color: var(--white);
    background: var(--red-dark);
}

.mobile-contact-panel {
    display: grid;
    gap: 9px;
    margin-top: 24px;
}

.mobile-contact-panel > a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--surface);
    border-radius: 12px;
}

.mobile-contact-panel > a > i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 39px;
    height: 39px;
    color: var(--white);
    background: var(--navy);
    border-radius: 10px;
    font-size: 12px;
}

.mobile-contact-panel span {
    display: flex;
    flex-direction: column;
}

.mobile-contact-panel small {
    color: #969dab;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
}

.mobile-contact-panel strong {
    color: var(--text);
    font-size: 11px;
    font-weight: 750;
}

.home-hero {
    position: relative;
    overflow: hidden;
    min-height: 680px;
    background:
        linear-gradient(135deg, #f8f9fd 0%, #eff3ff 100%);
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    opacity: 0.32;
    background-image:
        linear-gradient(rgba(8, 28, 104, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(8, 28, 104, 0.045) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: linear-gradient(to bottom, #000, transparent 90%);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    pointer-events: none;
}

.hero-orb-one {
    width: 420px;
    height: 420px;
    right: -190px;
    top: -190px;
    background: rgba(8, 28, 104, 0.055);
    animation: orbFloat 10s ease-in-out infinite;
}

.hero-orb-two {
    width: 210px;
    height: 210px;
    left: -120px;
    bottom: -75px;
    background: rgba(237, 21, 36, 0.075);
    animation: orbFloat 8s ease-in-out infinite reverse;
}

.hero-slide {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: 680px;
    padding: 65px 0 100px;
}

.hero-content {
    max-width: 650px;
    opacity: 0;
    transform: translateY(20px);
}

.carousel-item.active .hero-content {
    animation: heroContentIn 0.8s 0.1s ease forwards;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 23px;
    color: var(--navy);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-eyebrow span {
    display: block;
    width: 31px;
    height: 2px;
    background: var(--red);
}

.hero-content h1 {
    margin: 0;
    color: var(--text);
    font-size: clamp(45px, 5.4vw, 58px);
    line-height: 1.1;
    font-weight: 750;
    letter-spacing: -3.6px;
}

.hero-content h1 strong {
    color: var(--navy);
}

.hero-content p {
    max-width: 600px;
    margin: 25px 0 0;
    color: var(--text-soft);
    font-size: 16px;
    line-height: 1.85;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 21px;
    margin-top: 34px;
}

.button-red {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    min-height: 53px;
    padding: 0 24px;
    color: var(--white);
    background: var(--red);
    border-radius: 12px;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 15px 35px rgba(237, 21, 36, 0.2);
}

.button-red:hover {
    color: var(--white);
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(237, 21, 36, 0.27);
}

.button-red i {
    font-size: 10px;
    transition: transform var(--transition);
}

.button-red:hover i {
    transform: translateX(4px);
}

.hero-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--text);
}

.hero-contact-link:hover {
    color: var(--navy);
}

.hero-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 47px;
    height: 47px;
    color: var(--navy);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.hero-contact-link > span:last-child {
    display: flex;
    flex-direction: column;
}

.hero-contact-link small {
    color: #9ba1ae;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
}

.hero-contact-link strong {
    font-size: 12px;
    font-weight: 800;
}

.hero-visual-stage {
    position: relative;
    width: min(100%, 590px);
    min-height: 520px;
    margin-left: auto;
    transform:
        translate3d(
            calc(var(--px, 0) * 8px),
            calc(var(--py, 0) * 8px),
            0
        );
    transition: transform 0.15s linear;
}

.hero-photo {
    position: absolute;
    z-index: 2;
    inset: 25px 35px 25px 40px;
    overflow: hidden;
    background:
        linear-gradient(135deg, #dfe5f7, #edf0f8);
    border-radius: 36px 8px 36px 8px;
    box-shadow: var(--shadow-lg);
}

.hero-photo::before {
    position: absolute;
    z-index: 1;
    content: "";
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(8, 28, 104, 0) 55%,
            rgba(8, 28, 104, 0.32) 100%
        );
    pointer-events: none;
}

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 7s ease;
}

.carousel-item.active .hero-photo img {
    transform: scale(1.08);
}

.hero-visual-ring {
    position: absolute;
    z-index: 1;
    width: 440px;
    height: 440px;
    right: -24px;
    top: 42px;
    border: 1px solid rgba(8, 28, 104, 0.12);
    border-radius: 50%;
    animation: ringPulse 5s ease-in-out infinite;
}

.hero-visual-ring::before,
.hero-visual-ring::after {
    position: absolute;
    content: "";
    border-radius: 50%;
}

.hero-visual-ring::before {
    inset: 32px;
    border: 1px dashed rgba(8, 28, 104, 0.1);
}

.hero-visual-ring::after {
    inset: 85px;
    background: rgba(8, 28, 104, 0.035);
}

.hero-floating-card {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 14px;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(14px);
}

.hero-floating-card > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    color: var(--white);
    background: var(--navy);
    border-radius: 11px;
}

.hero-floating-card > div {
    display: flex;
    flex-direction: column;
}

.hero-floating-card small {
    color: #9aa0ae;
    font-size: 8.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-floating-card strong {
    color: var(--text);
    font-size: 11.5px;
    font-weight: 800;
}

.hero-floating-card-one {
    left: -13px;
    bottom: 85px;
    animation: floatY 4.2s ease-in-out infinite;
}

.hero-floating-card-two {
    right: -2px;
    top: 86px;
    animation: floatY 4.8s 0.4s ease-in-out infinite;
}

.hero-floating-card-two > span {
    background: var(--red);
}

.hero-corner-tag {
    position: absolute;
    z-index: 6;
    right: 8px;
    bottom: 34px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 124px;
    padding: 15px 17px;
    color: var(--white);
    background: var(--red);
    border-radius: 15px 3px 15px 3px;
    box-shadow: 0 15px 35px rgba(237, 21, 36, 0.24);
}

.hero-corner-tag span {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2px;
}

.hero-corner-tag strong {
    margin-top: 1px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 800;
}

.hero-carousel-bottom {
    position: absolute;
    z-index: 8;
    right: 0;
    bottom: 35px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-carousel-indicators {
    display: flex;
    align-items: center;
    gap: 7px;
}

.hero-carousel-indicators button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 41px;
    height: 31px;
    padding: 0;
    color: #9299a8;
    background: transparent;
    border: 0;
    border-bottom: 2px solid #d6d9e2;
    font-size: 9px;
    font-weight: 800;
}

.hero-carousel-indicators button.active {
    width: 59px;
    color: var(--navy);
    border-color: var(--red);
}

.hero-carousel-arrows {
    display: flex;
    gap: 8px;
}

.hero-carousel-arrows button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    color: var(--navy);
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--border);
    border-radius: 50%;
}

.hero-carousel-arrows button:hover {
    color: var(--white);
    background: var(--navy);
    border-color: var(--navy);
}

.hero-carousel-arrows i {
    font-size: 10px;
}

.home-capabilities {
    position: relative;
    z-index: 10;
    margin-top: -2px;
}

.home-capabilities-panel {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    min-height: 108px;
    padding: 17px 26px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 0 0 22px 22px;
    box-shadow: 0 18px 50px rgba(5, 19, 68, 0.07);
}

.capability-item {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 0 17px;
}

.capability-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    color: var(--navy);
    background: var(--navy-soft);
    border-radius: 12px;
}

.capability-icon i {
    font-size: 17px;
}

.capability-item > div {
    display: flex;
    flex-direction: column;
}

.capability-item small {
    color: #a0a6b3;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
}

.capability-item strong {
    color: var(--text);
    font-size: 14px;
    font-weight: 700;    
    line-height: 1.6;
}

.capability-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
}

.section-heading {
    max-width: 660px;
}

.section-eyebrow {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-bottom: 15px;
    padding-left: 41px;
    color: var(--red);
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.section-eyebrow::before {
    position: absolute;
    content: "";
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--red);
}

.section-heading h2,
.reference-heading h2 {
    margin: 0;
    color: var(--text);
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.14;
    font-weight: 600;
    letter-spacing: -2.1px;
}

.section-heading h2 span,
.reference-heading h2 span {
    color: var(--navy);
    font-weight: 800;
}

.section-heading > p {
    margin: 23px 0 0;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.9;
}

.home-about {
    position: relative;
    background: var(--white);
}

.about-visual {
    position: relative;
    min-height: 560px;
    padding: 0 55px 45px 0;
}

.about-image-shell {
    position: relative;
    height: 520px;
}

.about-image-slot {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background:
        linear-gradient(135deg, #dfe4f2, #f0f2f8);
    border-radius: 8px 36px 8px 36px;
    box-shadow: var(--shadow-lg);
}

.about-image-slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-slot::after {
    position: absolute;
    content: "";
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: inherit;
    pointer-events: none;
}

.about-image-accent {
    position: absolute;
    z-index: 1;
    width: 210px;
    height: 210px;
    right: -36px;
    bottom: -34px;
    background: var(--navy);
    border-radius: 10px 38px 10px 38px;
}

.about-image-accent::before {
    position: absolute;
    content: "";
    width: 95px;
    height: 95px;
    right: -18px;
    top: -18px;
    border: 1px solid rgba(8, 28, 104, 0.18);
    border-radius: 50%;
}

.about-floating-card {
    position: absolute;
    z-index: 5;
    right: 0;
    bottom: 8px;
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 235px;
    padding: 16px 18px;
    background: var(--white);
    border-radius: 14px;
    box-shadow: var(--shadow-md);
    animation: floatY 4.4s ease-in-out infinite;
}

.about-floating-card > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    color: var(--white);
    background: var(--red);
    border-radius: 11px;
}

.about-floating-card > div {
    display: flex;
    flex-direction: column;
}

.about-floating-card small {
    color: #9ca2af;
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
}

.about-floating-card strong {
    margin-top: 1px;
    color: var(--text);
    font-size: 12px;
    font-weight: 800;
}

.about-feature-list {
    display: grid;
    gap: 17px;
    margin-top: 30px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.about-feature > span {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    margin-top: 1px;
    color: var(--white);
    background: var(--navy);
    border-radius: 50%;
}

.about-feature > span i {
    font-size: 9px;
}

.about-feature strong {
    display: block;
    color: var(--text);
    font-size: 12px;
    font-weight: 800;
}

.about-feature p {
    margin: 3px 0 0;
    color: #818897;
    font-size: 11.5px;
    line-height: 1.7;
}

.section-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 23px;
    margin-top: 34px;
}

.button-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 51px;
    padding: 0 22px;
    color: var(--white);
    background: var(--navy);
    border-radius: 12px;
    font-size: 12.5px;
    font-weight: 800;
    box-shadow: 0 13px 30px rgba(8, 28, 104, 0.18);
}

.button-primary:hover {
    color: var(--white);
    background: var(--navy-dark);
    transform: translateY(-2px);
}

.button-primary i {
    font-size: 9px;
}

.button-text {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--text);
    font-size: 12px;
    font-weight: 800;
}

.button-text i {
    color: var(--red);
    font-size: 10px;
    transition: transform var(--transition);
}

.button-text:hover {
    color: var(--navy);
}

.button-text:hover i {
    transform: translateX(4px);
}

.home-services {
    position: relative;
    overflow: hidden;
    background: var(--surface);
}

.services-bg-number {
    position: absolute;
    top: -55px;
    right: -35px;
    color: rgba(8, 28, 104, 0.03);
    font-family: var(--font-heading);
    font-size: 330px;
    line-height: 1;
    font-weight: 800;
    pointer-events: none;
}

.section-heading-wide {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    align-items: end;
    gap: 70px;
    max-width: none;
    margin-bottom: 50px;
}

.section-heading-side {
    padding-bottom: 6px;
}

.section-heading-side p {
    margin: 0;
    color: var(--text-soft);
    font-size: 12.5px;
    line-height: 1.8;
}

.section-heading-side a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 17px;
    color: var(--navy);
    font-size: 11.5px;
    font-weight: 800;
}

.section-heading-side a i {
    color: var(--red);
    font-size: 9px;
    transition: transform var(--transition);
}

.section-heading-side a:hover i {
    transform: translateX(4px);
}

.services-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    color: inherit;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    transition: var(--transition);
}

.service-card:hover {
    color: inherit;
    border-color: transparent;
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
}

.service-card:nth-child(1),
.service-card:nth-child(2) {
    grid-column: span 1;
}

.service-card-media {
    position: relative;
    height: 245px;
    overflow: hidden;
    background:
        linear-gradient(135deg, #dfe4f1, #eff1f7);
}

.service-card-media::after {
    position: absolute;
    content: "";
    inset: 0;
    background:
        linear-gradient(
            180deg,
            transparent 40%,
            rgba(4, 16, 58, 0.38) 100%
        );
}

.service-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(.2,.75,.25,1);
}

.service-card:hover .service-card-media img {
    transform: scale(1.065);
}

.service-card-index {
    position: absolute;
    z-index: 3;
    right: 15px;
    bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 41px;
    height: 29px;
    padding: 0 9px;
    color: var(--white);
    background: var(--red);
    border-radius: 7px;
    font-size: 9px;
    font-weight: 800;
}

.service-card-content {
    position: relative;
    flex: 1;
    padding: 27px 25px 25px;
}

.service-card-icon {
    position: absolute;
    right: 23px;
    top: -27px;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 53px;
    height: 53px;
    color: var(--navy);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-card:hover .service-card-icon {
    color: var(--white);
    background: var(--navy);
    border-color: var(--navy);
    transform: rotate(-5deg);
}

.service-card-icon i {
    font-size: 18px;
}

.service-card h3 {
    max-width: calc(100% - 45px);
    margin: 0;
    color: var(--text);
    font-size: 17px;
    line-height: 1.42;
    font-weight: 750;
    letter-spacing: -0.4px;
}

.service-card p {
    min-height: 67px;
    margin: 13px 0 0;
    color: var(--text-soft);
    font-size: 11.5px;
    line-height: 1.75;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 17px;
    color: var(--navy);
    font-size: 10.5px;
    font-weight: 800;
}

.service-card-link i {
    color: var(--red);
    font-size: 8px;
    transition: transform var(--transition);
}

.service-card:hover .service-card-link i {
    transform: translateX(4px);
}

.home-safety {
    background: var(--white);
}

.safety-panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
    min-height: 590px;
    overflow: hidden;
    color: var(--white);
    background: var(--navy-dark);
    border-radius: 32px;
    box-shadow: var(--shadow-lg);
}

.safety-panel::before {
    position: absolute;
    content: "";
    width: 420px;
    height: 420px;
    left: -230px;
    bottom: -260px;
    border: 70px solid rgba(255, 255, 255, 0.035);
    border-radius: 50%;
}

.safety-content {
    position: relative;
    z-index: 2;
    padding: 72px 65px;
}

.section-eyebrow-light {
    color: #ff6873;
}

.safety-content h2 {
    max-width: 590px;
    margin: 0;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: clamp(35px, 4vw, 50px);
    line-height: 1.13;
    font-weight: 550;
    letter-spacing: -2px;
}

.safety-content h2 span {
    font-weight: 800;
}

.safety-content > p {
    max-width: 600px;
    margin: 23px 0 0;
    color: rgba(255, 255, 255, 0.61);
    font-size: 13px;
    line-height: 1.9;
}

.safety-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 20px;
    margin-top: 30px;
}

.safety-points > div {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 11px;
    font-weight: 650;
}

.safety-points i {
    color: var(--red);
    font-size: 12px;
}

.button-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    margin-top: 35px;
    padding: 0 22px;
    color: var(--navy);
    background: var(--white);
    border-radius: 11px;
    font-size: 12px;
    font-weight: 800;
}

.button-white:hover {
    color: var(--white);
    background: var(--red);
}

.safety-visual {
    position: relative;
    min-height: 590px;
}

.safety-image-slot {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background:
        linear-gradient(135deg, #1b2f74, #0b1d5d);
}

.safety-image-slot::after {
    position: absolute;
    content: "";
    inset: 0;
    background:
        linear-gradient(
            90deg,
            var(--navy-dark) 0%,
            rgba(5, 19, 68, 0.35) 36%,
            rgba(5, 19, 68, 0.03) 100%
        );
}

.safety-image-slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.safety-visual-label {
    position: absolute;
    z-index: 4;
    right: 32px;
    bottom: 32px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 14px 17px;
    background: rgba(255, 255, 255, 0.93);
    border-radius: 14px;
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-md);
}

.safety-visual-label > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    color: var(--white);
    background: var(--red);
    border-radius: 11px;
}

.safety-visual-label > div {
    display: flex;
    flex-direction: column;
}

.safety-visual-label small {
    color: #999fad;
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
}

.safety-visual-label strong {
    color: var(--text);
    font-size: 11.5px;
    font-weight: 800;
}

.home-process {
    background: var(--surface);
}

.section-heading-center {
    max-width: 840px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-heading-center .section-eyebrow {
    padding: 0 40px;
}

.section-heading-center .section-eyebrow::before {
    left: 0;
}

.section-heading-center .section-eyebrow::after {
    position: absolute;
    content: "";
    right: 0;
    width: 28px;
    height: 2px;
    background: var(--red);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 17px;
}

.process-card {
    position: relative;
    padding: 27px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    transition: var(--transition);
}

.process-card::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 100px;
    right: -55px;
    bottom: -55px;
    background: var(--navy-soft);
    border-radius: 50%;
    transition: var(--transition);
}

.process-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-md);
    transform: translateY(-7px);
}

.process-card:hover::after {
    background: rgba(237, 21, 36, 0.08);
    transform: scale(1.5);
}

.process-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.process-number {
    color: #d9dde8;
    font-family: var(--font-heading);
    font-size: 35px;
    line-height: 1;
    font-weight: 800;
}

.process-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 49px;
    height: 49px;
    color: var(--navy);
    background: var(--navy-soft);
    border-radius: 13px;
}

.process-icon i {
    font-size: 17px;
}

.process-card h3 {
    margin: 35px 0 0;
    color: var(--text);
    font-size: 16px;
    font-weight: 750;
}

.process-card p {
    margin: 11px 0 0;
    color: var(--text-soft);
    font-size: 11.5px;
    line-height: 1.8;
}

.home-references {
    background: var(--white);
}

.reference-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
}

.reference-heading h2 {
    max-width: 650px;
    font-size: clamp(31px, 3.5vw, 45px);
}

.reference-heading > a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding-bottom: 7px;
    color: var(--navy);
    font-size: 11px;
    font-weight: 800;
}

.reference-heading > a i {
    color: var(--red);
    font-size: 9px;
}

.reference-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
}

.reference-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 110px;
    padding: 17px;
    border: 1px solid var(--border);
    border-radius: 13px;
    transition: var(--transition);
}

.reference-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transform: translateY(-4px);
}

.reference-item img {
    max-width: 100%;
    object-fit: contain;
}

.reference-item:hover img {
    filter: grayscale(0);
    opacity: 1;
}

.reference-item strong {
    color: var(--text-soft);
    font-size: 11px;
    font-weight: 750;
    text-align: center;
}

.home-blog {
    background: var(--surface);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.blog-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    transition: var(--transition);
}

.blog-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-md);
    transform: translateY(-7px);
}

.blog-card-media {
    display: block;
    height: 245px;
    overflow: hidden;
    background:
        linear-gradient(135deg, #dfe4f1, #eff1f7);
}

.blog-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.blog-card:hover .blog-card-media img {
    transform: scale(1.06);
}

.blog-card-body {
    padding: 24px;
}

.blog-card-date {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #9ba1af;
    font-size: 9px;
    font-weight: 650;
}

.blog-card-date i {
    color: var(--red);
}

.blog-card h3 {
    margin: 11px 0 0;
    font-size: 17px;
    line-height: 1.45;
    font-weight: 750;
}

.blog-card h3 a {
    color: var(--text);
}

.blog-card h3 a:hover {
    color: var(--navy);
}

.blog-card p {
    min-height: 62px;
    margin: 12px 0 0;
    color: var(--text-soft);
    font-size: 11px;
    line-height: 1.8;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    color: var(--navy);
    font-size: 10px;
    font-weight: 800;
}

.blog-card-link i {
    color: var(--red);
    font-size: 8px;
}

.home-contact-cta {
    background: var(--white);
}

.contact-cta-panel {
    position: relative;
    display: grid;
    grid-template-columns: 5px minmax(0, 1fr) auto;
    align-items: center;
    gap: 34px;
    padding: 42px 46px;
    overflow: hidden;
    color: var(--white);
    background:
        linear-gradient(
            120deg,
            var(--navy-dark) 0%,
            var(--navy) 100%
        );
    border-radius: 22px;
    box-shadow: var(--shadow-md);
}

.contact-cta-panel::after {
    position: absolute;
    content: "";
    width: 260px;
    height: 260px;
    right: -100px;
    top: -160px;
    border: 50px solid rgba(255, 255, 255, 0.035);
    border-radius: 50%;
}

.contact-cta-line {
    width: 5px;
    height: 76px;
    background: var(--red);
    border-radius: 20px;
}

.contact-cta-panel > div:nth-child(2) {
    position: relative;
    z-index: 2;
}

.contact-cta-panel > div:nth-child(2) > span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.contact-cta-panel h2 {
    max-width: 760px;
    margin: 5px 0 0;
    color: var(--white);
    font-size: clamp(23px, 2.8vw, 36px);
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: -1px;
}

.contact-cta-buttons {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 9px;
}

.button-outline-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 53px;
    padding: 0 22px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    font-size: 12px;
    font-weight: 800;
}

.button-outline-light:hover {
    color: var(--navy);
    background: var(--white);
    border-color: var(--white);
}

.site-footer {
    position: relative;
    overflow: hidden;
    padding: 90px 0 0;
    color: rgba(255, 255, 255, 0.67);
    background: var(--navy-deep);
}

.footer-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.footer-glow-one {
    width: 460px;
    height: 460px;
    left: -300px;
    top: -280px;
    background: rgba(23, 52, 155, 0.22);
    filter: blur(40px);
}

.footer-glow-two {
    width: 320px;
    height: 320px;
    right: -210px;
    bottom: -200px;
    background: rgba(237, 21, 36, 0.11);
    filter: blur(30px);
}

.footer-main {
    position: relative;
    z-index: 2;
    padding-bottom: 60px;
}

.footer-brand {
    max-width: 385px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 25px;
}

.footer-logo img {
    display: block;
    width: auto;
    max-width: 235px;
    height: 74px;
    object-fit: contain;
    object-position: left center;
}

.footer-brand > p {
    margin: 0;
    color: rgba(255, 255, 255, 0.54);
    font-size: 12px;
    line-height: 1.9;
}

.footer-social {
    display: flex;
    gap: 8px;
    margin-top: 24px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 39px;
    height: 39px;
    color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
}

.footer-social-link:hover {
    color: var(--white);
    background: var(--red);
    border-color: var(--red);
    transform: translateY(-3px);
}

.footer-social-link i {
    font-size: 13px;
}

.footer-column,
.footer-contact {
    display: flex;
    flex-direction: column;
}

.footer-column-label {
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.32);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.footer-column h3,
.footer-contact h3 {
    margin: 0 0 23px;
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
}

.footer-column > a {
    display: inline-block;
    width: fit-content;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.54);
    font-size: 11.5px;
    font-weight: 600;
}

.footer-column > a:hover {
    color: var(--white);
    transform: translateX(4px);
}

.footer-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    color: var(--red);
    background: rgba(255, 255, 255, 0.055);
    border-radius: 10px;
}

.footer-contact-icon i {
    font-size: 12px;
}

.footer-contact-row > div {
    display: flex;
    flex-direction: column;
}

.footer-contact-row small {
    margin-bottom: 3px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.footer-contact-row p,
.footer-contact-row a {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 11px;
    line-height: 1.65;
}

.footer-contact-row a:hover {
    color: var(--white);
}

.footer-bottom {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    min-height: 70px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.35);
    font-size: 9.5px;
}

.footer-bottom > div {
    display: flex;
    flex-wrap: wrap;
    gap: 17px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.35);
    font-size: 9px;
}

.footer-bottom a:hover {
    color: var(--white);
}

.floating-whatsapp {
    position: fixed;
    z-index: 1050;
    right: 24px;
    bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 57px;
    height: 57px;
    color: var(--white);
    background: #20c763;
    border-radius: 50%;
    box-shadow: 0 13px 35px rgba(32, 199, 99, 0.25);
}

.floating-whatsapp:hover {
    color: var(--white);
    transform: translateY(-4px) scale(1.03);
}

.floating-whatsapp > i {
    position: relative;
    z-index: 2;
    font-size: 26px;
}

.whatsapp-pulse {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(32, 199, 99, 0.55);
    border-radius: 50%;
    animation: whatsappPulse 2.2s infinite;
}

.back-to-top {
    position: fixed;
    z-index: 1049;
    right: 31px;
    bottom: 92px;
    display: flex;
    visibility: hidden;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    padding: 0;
    color: var(--white);
    background: var(--navy);
    border: 0;
    border-radius: 11px;
    opacity: 0;
    box-shadow: var(--shadow-sm);
    transform: translateY(10px);
}

.back-to-top.show {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--red);
}

.back-to-top i {
    font-size: 10px;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.75s ease,
        transform 0.75s cubic-bezier(.2,.75,.25,1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.services-grid .reveal:nth-child(2),
.process-grid .reveal:nth-child(2),
.blog-grid .reveal:nth-child(2) {
    transition-delay: 0.08s;
}

.services-grid .reveal:nth-child(3),
.process-grid .reveal:nth-child(3),
.blog-grid .reveal:nth-child(3) {
    transition-delay: 0.16s;
}

.services-grid .reveal:nth-child(4),
.process-grid .reveal:nth-child(4) {
    transition-delay: 0.24s;
}

.services-grid .reveal:nth-child(5) {
    transition-delay: 0.08s;
}

.services-grid .reveal:nth-child(6) {
    transition-delay: 0.16s;
}

.services-grid .reveal:nth-child(7) {
    transition-delay: 0.24s;
}

@keyframes heroContentIn {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatY {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }
}

@keyframes ringPulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.035);
        opacity: 0.65;
    }
}

@keyframes orbFloat {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, 22px, 0);
    }
}

@keyframes whatsappPulse {
    0% {
        opacity: 0.7;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.55);
    }
}

@media (max-width: 1399.98px) {
    .container {
        max-width: 1210px;
    }

    .site-brand-logo {
        max-width: 205px;
        height: 62px;
    }

    .site-nav-link {
        padding-left: 10px !important;
        padding-right: 10px !important;
        font-size: 12px;
    }

    .site-offer-button {
        margin-left: 12px;
        padding-left: 19px;
        padding-right: 19px;
    }

    .hero-slide {
        min-height: 640px;
    }

    .home-hero {
        min-height: 640px;
    }

    .hero-visual-stage {
        min-height: 490px;
    }

    .hero-content h1 {
        font-size: 62px;
    }
}

@media (max-width: 1199.98px) {
    .site-navbar {
        min-height: 82px;
    }

    .site-brand {
        min-height: 82px;
    }

    .site-brand-logo {
        height: 59px;
    }

    .site-header.is-scrolled .site-navbar {
        min-height: 72px;
    }

    .site-header.is-scrolled .site-brand {
        min-height: 72px;
    }

    .site-header.is-scrolled .site-brand-logo {
        height: 51px;
    }

    .home-hero,
    .hero-slide {
        min-height: auto;
    }

    .hero-slide {
        padding-top: 80px;
        padding-bottom: 115px;
    }

    .hero-content h1 {
        font-size: 56px;
    }

    .hero-visual-stage {
        min-height: 470px;
    }

    .home-capabilities-panel {
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }

    .capability-divider {
        display: none;
    }

    .capability-item {
        min-height: 80px;
        border-bottom: 1px solid var(--border);
    }

    .capability-item:nth-child(5),
    .capability-item:nth-child(7) {
        border-bottom: 0;
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .reference-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .section-space {
        padding: 90px 0;
    }

    .section-space-sm {
        padding: 70px 0;
    }

    .hero-slide {
        padding-top: 65px;
        padding-bottom: 100px;
    }

    .hero-content {
        max-width: 700px;
    }

    .hero-content h1 {
        font-size: 52px;
    }

    .hero-visual-stage {
        width: min(100%, 650px);
        min-height: 520px;
        margin: 15px auto 0;
    }

    .hero-carousel-bottom {
        bottom: 26px;
    }

    .about-visual {
        max-width: 700px;
        margin: 0 auto;
    }

    .section-heading {
        max-width: 760px;
    }

    .section-heading-wide {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-heading-side {
        max-width: 650px;
    }

    .safety-panel {
        grid-template-columns: 1fr;
    }

    .safety-content {
        padding: 60px 50px;
    }

    .safety-visual {
        min-height: 450px;
    }

    .safety-image-slot::after {
        background:
            linear-gradient(
                180deg,
                var(--navy-dark) 0%,
                rgba(5, 19, 68, 0.12) 35%,
                rgba(5, 19, 68, 0.03) 100%
            );
    }

    .reference-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-cta-panel {
        grid-template-columns: 5px 1fr;
    }

    .contact-cta-buttons {
        grid-column: 2;
        justify-content: flex-start;
    }

    .footer-brand {
        max-width: 480px;
    }
}

@media (max-width: 767.98px) {
    .section-space {
        padding: 70px 0;
    }

    .section-space-sm {
        padding: 55px 0;
    }

    .site-navbar {
        min-height: 76px;
    }

    .site-brand {
        min-height: 76px;
    }

    .site-brand-logo {
        max-width: 175px;
        height: 55px;
    }

    .mobile-menu-button {
        width: 44px;
        height: 44px;
    }

    .hero-slide {
        padding-top: 55px;
        padding-bottom: 95px;
    }

    .hero-content h1 {
        font-size: 43px;
        letter-spacing: -2.2px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-visual-stage {
        min-height: 450px;
    }

    .hero-photo {
        inset: 20px 20px 25px;
    }

    .hero-floating-card-one {
        left: 0;
    }

    .hero-floating-card-two {
        right: 0;
    }

    .hero-visual-ring {
        width: 360px;
        height: 360px;
    }

    .home-capabilities-panel {
        grid-template-columns: 1fr;
        padding: 5px 20px;
    }

    .capability-item {
        min-height: 76px;
        padding: 0;
        border-bottom: 1px solid var(--border) !important;
    }

    .capability-item:last-child {
        border-bottom: 0 !important;
    }

    .section-heading h2,
    .reference-heading h2 {
        font-size: 35px;
        letter-spacing: -1.4px;
    }

    .about-visual {
        min-height: 480px;
        padding-right: 30px;
    }

    .about-image-shell {
        height: 450px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card-media {
        height: 270px;
    }

    .safety-content {
        padding: 45px 30px;
    }

    .safety-content h2 {
        font-size: 35px;
    }

    .safety-points {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-card {
        min-height: 240px;
    }

    .reference-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .reference-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .contact-cta-panel {
        padding: 32px 27px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 20px 0;
    }
}

@media (max-width: 575.98px) {
    .container {
        padding-right: 18px;
        padding-left: 18px;
    }

    .site-brand-logo {
        max-width: 155px;
        height: 50px;
    }

    .hero-slide {
        padding-top: 45px;
        padding-bottom: 90px;
    }

    .hero-eyebrow {
        margin-bottom: 17px;
        font-size: 8.5px;
    }

    .hero-content h1 {
        font-size: 36px;
        line-height: 1.08;
        letter-spacing: -1.6px;
    }

    .hero-content p {
        margin-top: 18px;
        font-size: 12.5px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 12px;
        margin-top: 26px;
    }

    .button-red {
        width: 100%;
    }

    .hero-contact-link {
        width: fit-content;
    }

    .hero-visual-stage {
        min-height: 390px;
    }

    .hero-photo {
        inset: 15px 10px 30px;
        border-radius: 25px 5px 25px 5px;
    }

    .hero-visual-ring {
        width: 295px;
        height: 295px;
        right: 0;
    }

    .hero-floating-card {
        padding: 10px 12px;
    }

    .hero-floating-card > span {
        width: 37px;
        height: 37px;
    }

    .hero-floating-card strong {
        font-size: 9.5px;
    }

    .hero-floating-card-one {
        bottom: 57px;
    }

    .hero-floating-card-two {
        top: 47px;
    }

    .hero-corner-tag {
        right: 0;
        bottom: 20px;
        min-width: 105px;
        padding: 12px 14px;
    }

    .hero-carousel-arrows {
        display: none;
    }

    .about-visual {
        min-height: 390px;
        padding-right: 20px;
        padding-bottom: 35px;
    }

    .about-image-shell {
        height: 370px;
    }

    .about-image-accent {
        width: 150px;
        height: 150px;
        right: -20px;
        bottom: -22px;
    }

    .about-floating-card {
        right: 0;
        bottom: 0;
        min-width: 200px;
    }

    .section-heading h2,
    .reference-heading h2 {
        font-size: 29px;
    }

    .section-heading > p {
        font-size: 12.5px;
    }

    .section-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .button-primary {
        width: 100%;
    }

    .service-card-media {
        height: 230px;
    }

    .service-card h3 {
        font-size: 16px;
    }

    .safety-panel {
        border-radius: 22px;
    }

    .safety-content {
        padding: 38px 24px;
    }

    .safety-content h2 {
        font-size: 29px;
    }

    .safety-visual {
        min-height: 350px;
    }

    .safety-visual-label {
        right: 17px;
        bottom: 17px;
    }

    .reference-item {
        height: 95px;
    }

    .contact-cta-panel {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 28px 23px;
    }

    .contact-cta-line {
        width: 42px;
        height: 4px;
    }

    .contact-cta-buttons {
        grid-column: auto;
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .button-outline-light {
        width: 100%;
    }

    .footer-logo img {
        max-width: 205px;
        height: 66px;
    }

    .floating-whatsapp {
        right: 17px;
        bottom: 17px;
        width: 53px;
        height: 53px;
    }

    .back-to-top {
        right: 22px;
        bottom: 80px;
        width: 42px;
        height: 42px;
    }
}

.site-offer-button,
.mobile-offer-button {
    position: relative;
    overflow: hidden;
    color: #ffffff !important;
    background: linear-gradient(
        120deg,
        #081c68,
        #17349b,
        #ed1524,
        #9d172d,
        #081c68
    );
    background-size: 350% 350%;
    border: 0;
    animation: teklifGradient 5s ease infinite;
    box-shadow: 0 12px 30px rgba(8, 28, 104, 0.22);
}

.site-offer-button:hover,
.mobile-offer-button:hover {
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 17px 38px rgba(237, 21, 36, 0.24);
}

.site-offer-button::before,
.mobile-offer-button::before {
    position: absolute;
    content: "";
    top: -100%;
    left: -60%;
    width: 45%;
    height: 300%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.22),
        transparent
    );
    transform: rotate(20deg);
    animation: teklifShine 4s ease-in-out infinite;
}

.site-offer-button span,
.site-offer-button i,
.mobile-offer-button span,
.mobile-offer-button i {
    position: relative;
    z-index: 2;
}

@keyframes teklifGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes teklifShine {
    0%,
    55% {
        left: -60%;
    }

    80%,
    100% {
        left: 130%;
    }
}


.home-hero {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    background: #f5f7fc;
}

.hero-slide {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 680px;
    padding: 70px 0 105px;
    overflow: hidden;
}

.hero-slide-background {
    position: absolute;
    z-index: 1;
    inset: 0;
    overflow: hidden;
}

.hero-slide-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    transform: scale(1.015);
    transition: transform 8s ease;
}

.carousel-item.active .hero-slide-background img {
    transform: scale(1.07);
}

.hero-slide-overlay {
    position: absolute;
    z-index: 2;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(248, 249, 253, 1) 0%,
            rgba(248, 249, 253, 0.98) 25%,
            rgba(248, 249, 253, 0.88) 42%,
            rgba(248, 249, 253, 0.48) 58%,
            rgba(248, 249, 253, 0.08) 78%,
            rgba(248, 249, 253, 0) 100%
        );
}

.hero-slide-overlay::after {
    position: absolute;
    content: "";
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(8, 28, 104, 0.01) 0%,
            rgba(8, 28, 104, 0.04) 100%
        );
}

.hero-slide-container {
    position: relative;
    z-index: 4;
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 720px;
}

.hero-content h1 {
    max-width: 700px;
    color: #161c2d;
}

.hero-content p {
    max-width: 650px;
    color: #687084;
}

.hero-visual-stage,
.hero-visual-ring,
.hero-photo,
.hero-floating-card,
.hero-floating-card-one,
.hero-floating-card-two,
.hero-corner-tag {
    display: none !important;
}

@media (max-width: 1199.98px) {
    .home-hero,
    .hero-slide {
        min-height: 620px;
    }

    .hero-slide-background img {
        object-position: 62% center;
    }

    .hero-slide-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(248, 249, 253, 1) 0%,
                rgba(248, 249, 253, 0.96) 38%,
                rgba(248, 249, 253, 0.72) 62%,
                rgba(248, 249, 253, 0.22) 100%
            );
    }
}

@media (max-width: 991.98px) {
    .home-hero,
    .hero-slide {
        min-height: 590px;
    }

    .hero-slide-background img {
        object-position: 70% center;
    }

    .hero-slide-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(248, 249, 253, 0.98) 0%,
                rgba(248, 249, 253, 0.94) 48%,
                rgba(248, 249, 253, 0.62) 100%
            );
    }
}

@media (max-width: 767.98px) {
    .home-hero,
    .hero-slide {
        min-height: 600px;
    }

    .hero-slide {
        padding: 65px 0 105px;
    }

    .hero-slide-background img {
        object-position: 72% center;
    }

    .hero-slide-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(248, 249, 253, 0.97) 0%,
                rgba(248, 249, 253, 0.92) 65%,
                rgba(248, 249, 253, 0.68) 100%
            );
    }
}

@media (max-width: 575.98px) {
    .home-hero,
    .hero-slide {
        min-height: 570px;
    }

    .hero-slide-background img {
        object-position: 68% center;
        opacity: 0.5;
    }

    .hero-slide-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(248, 249, 253, 0.98) 0%,
                rgba(248, 249, 253, 0.88) 100%
            );
    }
}


.site-footer {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 90px 0 0;
    color: rgba(255, 255, 255, 0.68);
    background:
        radial-gradient(
            circle at 82% 120%,
            rgba(237, 21, 36, 0.12) 0%,
            rgba(237, 21, 36, 0) 28%
        ),
        radial-gradient(
            circle at 8% 10%,
            rgba(40, 82, 220, 0.24) 0%,
            rgba(40, 82, 220, 0) 34%
        ),
        linear-gradient(
            120deg,
            #020a29 0%,
            #041345 32%,
            #071b65 67%,
            #081f73 100%
        );
}

.site-footer::before {
    position: absolute;
    content: "";
    inset: 0;
    pointer-events: none;
    opacity: 0.32;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        );
    background-size: 72px 72px;
    mask-image:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.9),
            rgba(0, 0, 0, 0.15)
        );
}

.site-footer::after {
    position: absolute;
    content: "";
    width: 900px;
    height: 900px;
    right: -550px;
    top: -530px;
    border: 1px solid rgba(255, 255, 255, 0.055);
    border-radius: 50%;
    box-shadow:
        0 0 0 90px rgba(255, 255, 255, 0.012),
        0 0 0 180px rgba(255, 255, 255, 0.009),
        0 0 0 270px rgba(255, 255, 255, 0.006);
    pointer-events: none;
}

.site-footer .container {
    position: relative;
    z-index: 3;
}

.footer-glow-one,
.footer-glow-two {
    display: none;
}

.footer-main {
    position: relative;
    z-index: 2;
    padding: 0 0 65px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
}

.footer-main::before {
    display: none;
}

.footer-brand {
    max-width: 390px;
    padding: 0;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 25px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
}

.footer-logo img {
    display: block;
    width: auto;
    max-width: 235px;
    height: 76px;
    object-fit: contain;
    object-position: left center;
    filter: none;
}

.footer-brand > p {
    max-width: 370px;
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    line-height: 1.9;
    font-weight: 400;
}

.footer-social {
    display: flex;
    gap: 9px;
    margin-top: 25px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    box-shadow: none;
}

.footer-social-link:hover {
    color: #ffffff;
    background: #ed1524;
    border-color: #ed1524;
    transform: translateY(-3px);
}

.footer-social-link i {
    font-size: 14px;
}

.footer-column,
.footer-contact {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: auto;
}

.footer-column::before,
.footer-contact::before {
    display: none;
}

.footer-column-label {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 9px;
    padding-left: 30px;
    color: rgba(255, 255, 255, 0.38);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.footer-column-label::before {
    position: absolute;
    content: "";
    left: 0;
    width: 20px;
    height: 2px;
    background: #ed1524;
    border-radius: 10px;
}

.footer-column h3,
.footer-contact h3 {
    margin: 0 0 24px;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 750;
    letter-spacing: -0.3px;
}

.footer-column > a {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 11px;
    padding-left: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
    line-height: 1.55;
    font-weight: 550;
}

.footer-column > a::before {
    display: none;
}

.footer-column > a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 17px;
}

.footer-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    color: #ed1524;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
}

.footer-contact-icon i {
    color: #ed1524;
    font-size: 12px;
}

.footer-contact-row > div {
    display: flex;
    flex-direction: column;
    padding: 0;
}

.footer-contact-row small {
    margin-bottom: 3px;
    color: rgba(255, 255, 255, 0.32);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-contact-row p,
.footer-contact-row a {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 11.5px;
    line-height: 1.65;
    font-weight: 500;
}

.footer-contact-row a:hover {
    color: #ffffff;
}

.footer-bottom {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    min-height: 72px;
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom::before {
    position: absolute;
    content: "";
    left: 0;
    top: -1px;
    width: 120px;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            #ed1524 0%,
            rgba(237, 21, 36, 0) 100%
        );
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.38);
    font-size: 10px;
    font-weight: 500;
}

.footer-bottom > div {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-bottom a {
    position: relative;
    color: rgba(255, 255, 255, 0.38);
    font-size: 9.5px;
    font-weight: 500;
}

.footer-bottom a::after {
    position: absolute;
    content: "";
    left: 0;
    right: 100%;
    bottom: -5px;
    height: 1px;
    background: #ed1524;
    transition: right 0.3s ease;
}

.footer-bottom a:hover {
    color: #ffffff;
}

.footer-bottom a:hover::after {
    right: 0;
}

@media (max-width: 991.98px) {
    .site-footer {
        padding-top: 75px;
    }

    .footer-main {
        padding-bottom: 50px;
    }

    .footer-brand {
        max-width: 470px;
    }
}

@media (max-width: 767.98px) {
    .site-footer {
        padding-top: 60px;
    }

    .site-footer::before {
        background-size: 48px 48px;
    }

    .footer-main {
        padding-bottom: 40px;
    }

    .footer-logo img {
        max-width: 205px;
        height: 67px;
    }

    .footer-column h3,
    .footer-contact h3 {
        font-size: 17px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 13px;
        padding: 20px 0;
    }
}

@media (max-width: 575.98px) {
    .site-footer {
        padding-top: 50px;
    }

    .footer-brand > p {
        font-size: 12px;
    }

    .footer-bottom > div {
        gap: 13px;
    }
}


.site-footer {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 90px 0 0;
    color: rgba(255, 255, 255, 0.68);
    background:
        radial-gradient(
            circle at 82% 120%,
            rgba(237, 21, 36, 0.12) 0%,
            rgba(237, 21, 36, 0) 28%
        ),
        radial-gradient(
            circle at 8% 10%,
            rgba(40, 82, 220, 0.24) 0%,
            rgba(40, 82, 220, 0) 34%
        ),
        linear-gradient(
            120deg,
            #020a29 0%,
            #041345 32%,
            #071b65 67%,
            #081f73 100%
        );
}

.site-footer::before {
    position: absolute;
    content: "";
    inset: 0;
    pointer-events: none;
    opacity: 0.32;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        );
    background-size: 72px 72px;
    mask-image:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.9),
            rgba(0, 0, 0, 0.15)
        );
}

.site-footer::after {
    position: absolute;
    content: "";
    width: 900px;
    height: 900px;
    right: -550px;
    top: -530px;
    border: 1px solid rgba(255, 255, 255, 0.055);
    border-radius: 50%;
    box-shadow:
        0 0 0 90px rgba(255, 255, 255, 0.012),
        0 0 0 180px rgba(255, 255, 255, 0.009),
        0 0 0 270px rgba(255, 255, 255, 0.006);
    pointer-events: none;
}

.site-footer .container {
    position: relative;
    z-index: 3;
}

.footer-glow-one,
.footer-glow-two {
    display: none;
}

.footer-main {
    position: relative;
    z-index: 2;
    padding: 0 0 65px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
}

.footer-main::before {
    display: none;
}

.footer-brand {
    max-width: 390px;
    padding: 0;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 25px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
}

.footer-logo img {
    display: block;
    width: auto;
    max-width: 235px;
    height: 76px;
    object-fit: contain;
    object-position: left center;
    filter: none;
}

.footer-brand > p {
    max-width: 370px;
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    line-height: 1.9;
    font-weight: 400;
}

.footer-social {
    display: flex;
    gap: 9px;
    margin-top: 25px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    box-shadow: none;
}

.footer-social-link:hover {
    color: #ffffff;
    background: #ed1524;
    border-color: #ed1524;
    transform: translateY(-3px);
}

.footer-social-link i {
    font-size: 14px;
}

.footer-column,
.footer-contact {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: auto;
}

.footer-column::before,
.footer-contact::before {
    display: none;
}

.footer-column-label {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 9px;
    padding-left: 30px;
    color: rgba(255, 255, 255, 0.38);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.footer-column-label::before {
    position: absolute;
    content: "";
    left: 0;
    width: 20px;
    height: 2px;
    background: #ed1524;
    border-radius: 10px;
}

.footer-column h3,
.footer-contact h3 {
    margin: 0 0 24px;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 750;
    letter-spacing: -0.3px;
}

.footer-column > a {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 11px;
    padding-left: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
    line-height: 1.55;
    font-weight: 550;
}

.footer-column > a::before {
    display: none;
}

.footer-column > a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 17px;
}

.footer-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    color: #ed1524;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
}

.footer-contact-icon i {
    color: #ed1524;
    font-size: 12px;
}

.footer-contact-row > div {
    display: flex;
    flex-direction: column;
    padding: 0;
}

.footer-contact-row small {
    margin-bottom: 3px;
    color: rgba(255, 255, 255, 0.32);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-contact-row p,
.footer-contact-row a {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 11.5px;
    line-height: 1.65;
    font-weight: 500;
}

.footer-contact-row a:hover {
    color: #ffffff;
}

.footer-bottom {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    min-height: 72px;
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom::before {
    position: absolute;
    content: "";
    left: 0;
    top: -1px;
    width: 120px;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            #ed1524 0%,
            rgba(237, 21, 36, 0) 100%
        );
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.38);
    font-size: 10px;
    font-weight: 500;
}

.footer-bottom > div {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-bottom a {
    position: relative;
    color: rgba(255, 255, 255, 0.38);
    font-size: 9.5px;
    font-weight: 500;
}

.footer-bottom a::after {
    position: absolute;
    content: "";
    left: 0;
    right: 100%;
    bottom: -5px;
    height: 1px;
    background: #ed1524;
    transition: right 0.3s ease;
}

.footer-bottom a:hover {
    color: #ffffff;
}

.footer-bottom a:hover::after {
    right: 0;
}

@media (max-width: 991.98px) {
    .site-footer {
        padding-top: 75px;
    }

    .footer-main {
        padding-bottom: 50px;
    }

    .footer-brand {
        max-width: 470px;
    }
}

@media (max-width: 767.98px) {
    .site-footer {
        padding-top: 60px;
    }

    .site-footer::before {
        background-size: 48px 48px;
    }

    .footer-main {
        padding-bottom: 40px;
    }

    .footer-logo img {
        max-width: 205px;
        height: 67px;
    }

    .footer-column h3,
    .footer-contact h3 {
        font-size: 17px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 13px;
        padding: 20px 0;
    }
}

@media (max-width: 575.98px) {
    .site-footer {
        padding-top: 50px;
    }

    .footer-brand > p {
        font-size: 12px;
    }

    .footer-bottom > div {
        gap: 13px;
    }
}


.footer-bottom {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    min-height: 72px;
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.footer-bottom::before {
    position: absolute;
    content: "";
    left: -220px;
    top: -1px;
    width: 300px;
    height: 2px;
    background: linear-gradient(
        90deg,
        rgba(237, 21, 36, 0) 0%,
        rgba(237, 21, 36, 0.15) 15%,
        rgba(237, 21, 36, 1) 50%,
        rgba(237, 21, 36, 0.15) 85%,
        rgba(237, 21, 36, 0) 100%
    );
    box-shadow:
        0 0 10px rgba(237, 21, 36, 0.45),
        0 0 20px rgba(237, 21, 36, 0.28),
        0 0 35px rgba(237, 21, 36, 0.16);
    animation: footerLineMove 4.5s linear infinite;
    pointer-events: none;
}

@keyframes footerLineMove {
    0% {
        left: -220px;
        opacity: 0;
    }

    8% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    92% {
        opacity: 1;
    }

    100% {
        left: calc(100% + 220px);
        opacity: 0;
    }
}

.corporate-header {
    position: relative;
    overflow: hidden;
    padding: 46px 0;
    background:
        linear-gradient(
            120deg,
            #f8f9fd 0%,
            #eef2ff 100%
        );
    border-bottom: 1px solid var(--border);
}

.corporate-header::after {
    position: absolute;
    content: "";
    width: 280px;
    height: 280px;
    right: -100px;
    top: -150px;
    border: 1px solid rgba(8, 28, 104, 0.07);
    border-radius: 50%;
}

.corporate-header-line {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 180px;
    height: 2px;
    background:
        linear-gradient(
            90deg,
            var(--red),
            transparent
        );
}

.corporate-header-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.corporate-breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 11px;
    color: #9298a6;
    font-size: 11px;
    font-weight: 600;
}

.corporate-breadcrumb a {
    color: #7b8290;
}

.corporate-breadcrumb a:hover {
    color: var(--navy);
}

.corporate-breadcrumb i {
    color: #b3b8c2;
    font-size: 8px;
}

.corporate-breadcrumb span {
    color: var(--navy);
    font-weight: 700;
}

.corporate-header h1 {
    margin: 0;
    color: var(--text);
    font-size: 34px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -1.2px;
}

.corporate-header p {
    max-width: 650px;
    margin: 9px 0 0;
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.75;
}

.corporate-header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    color: var(--navy);
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(8, 28, 104, 0.08);
    border-radius: 15px;
}

.corporate-header-icon i {
    font-size: 20px;
}

.corporate-about {
    position: relative;
    padding: 90px 0;
    overflow: hidden;
    background: #ffffff;
}

.corporate-about::before {
    position: absolute;
    content: "";
    width: 420px;
    height: 420px;
    right: -280px;
    top: 40px;
    border: 1px solid rgba(8, 28, 104, 0.05);
    border-radius: 50%;
}

.corporate-about-image {
    position: relative;
    max-width: 520px;
    min-height: 540px;
    padding: 0 34px 32px 0;
}

.corporate-about-image > img {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: 510px;
    object-fit: cover;
    border-radius: 8px 28px 8px 28px;
    box-shadow: var(--shadow-md);
    transition: transform 0.7s ease;
}

.corporate-about-image:hover > img {
    transform: scale(1.02);
}

.corporate-about-image-line {
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;
    width: 180px;
    height: 180px;
    background: var(--navy);
    border-radius: 8px 30px 8px 30px;
}

.corporate-about-image-line::before {
    position: absolute;
    content: "";
    width: 90px;
    height: 90px;
    right: -18px;
    top: -18px;
    border: 1px solid rgba(8, 28, 104, 0.15);
    border-radius: 50%;
}

.corporate-about-badge {
    position: absolute;
    z-index: 4;
    right: 0;
    bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 13px;
    box-shadow: var(--shadow-md);
    animation: corporateBadgeFloat 4.5s ease-in-out infinite;
}

.corporate-about-badge > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: #ffffff;
    background: var(--red);
    border-radius: 10px;
}

.corporate-about-badge > span i {
    font-size: 14px;
}

.corporate-about-badge > div {
    display: flex;
    flex-direction: column;
}

.corporate-about-badge small {
    color: #9da3af;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.corporate-about-badge strong {
    margin-top: 1px;
    color: var(--text);
    font-size: 12px;
    font-weight: 800;
}

.corporate-section-label {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-bottom: 13px;
    padding-left: 36px;
    color: var(--red);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.corporate-section-label::before {
    position: absolute;
    content: "";
    left: 0;
    width: 25px;
    height: 2px;
    background: var(--red);
}

.corporate-about-content h2,
.corporate-section-title h2,
.corporate-values-title h2 {
    margin: 0;
    color: var(--text);
    font-size: 37px;
    line-height: 1.18;
    font-weight: 550;
    letter-spacing: -1.5px;
}

.corporate-about-content h2 strong,
.corporate-section-title h2 strong,
.corporate-values-title h2 strong {
    display: block;
    color: var(--navy);
    font-weight: 800;
}

.corporate-rich-text {
    max-height: 325px;
    margin-top: 22px;
    padding-right: 14px;
    overflow-y: auto;
}

.corporate-rich-text::-webkit-scrollbar {
    width: 5px;
}

.corporate-rich-text::-webkit-scrollbar-track {
    background: #eef0f5;
    border-radius: 20px;
}

.corporate-rich-text::-webkit-scrollbar-thumb {
    background: var(--navy);
    border-radius: 20px;
}

.corporate-rich-text p {
    margin: 0 0 16px;
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.9;
}

.corporate-rich-text p:last-child {
    margin-bottom: 0;
}

.corporate-about-bottom {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 28px;
}

.corporate-about-bottom > div {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    padding: 13px;
    background: var(--surface);
    border: 1px solid transparent;
    border-radius: 11px;
    transition: var(--transition);
}

.corporate-about-bottom > div:hover {
    background: #ffffff;
    border-color: var(--border);
    box-shadow: var(--shadow-sm);
    transform: translateY(-3px);
}

.corporate-about-bottom > div > span {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    color: var(--navy);
    background: #ffffff;
    border-radius: 9px;
}

.corporate-about-bottom > div > span i {
    font-size: 12px;
}

.corporate-about-bottom > div > div {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.corporate-about-bottom strong {
    color: var(--text);
    font-size: 11px;
    font-weight: 800;
}

.corporate-about-bottom small {
    margin-top: 2px;
    color: #979daa;
    font-size: 9px;
    line-height: 1.4;
}

.corporate-mission-vision {
    position: relative;
    padding: 90px 0;
    overflow: hidden;
    background: var(--surface);
}

.corporate-mission-vision::before {
    position: absolute;
    content: "";
    width: 500px;
    height: 500px;
    right: -330px;
    top: -230px;
    border: 1px solid rgba(8, 28, 104, 0.05);
    border-radius: 50%;
}

.corporate-section-title {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin-bottom: 38px;
}

.corporate-section-title > p {
    max-width: 620px;
    margin: 15px 0 0;
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.75;
}

.corporate-info-card {
    position: relative;
    height: 100%;
    padding: 32px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 18px;
    transition: var(--transition);
}

.corporate-info-card::before {
    position: absolute;
    content: "";
    left: 0;
    right: 100%;
    bottom: 0;
    height: 3px;
    background:
        linear-gradient(
            90deg,
            var(--navy),
            var(--red)
        );
    transition: right 0.45s ease;
}

.corporate-info-card::after {
    position: absolute;
    content: "";
    width: 160px;
    height: 160px;
    right: -90px;
    bottom: -90px;
    background: var(--navy-soft);
    border-radius: 50%;
    transition: var(--transition);
}

.corporate-info-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.corporate-info-card:hover::before {
    right: 0;
}

.corporate-info-card:hover::after {
    background: rgba(237, 21, 36, 0.07);
    transform: scale(1.3);
}

.corporate-info-card-head {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 21px;
    border-bottom: 1px solid var(--border);
}

.corporate-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 51px;
    width: 51px;
    height: 51px;
    color: #ffffff;
    background: var(--navy);
    border-radius: 13px;
}

.corporate-vision-card .corporate-info-icon {
    background: var(--red);
}

.corporate-info-icon i {
    font-size: 17px;
}

.corporate-info-card-head small {
    display: block;
    color: #adb2bd;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
}

.corporate-info-card-head h3 {
    margin: 2px 0 0;
    color: var(--text);
    font-size: 19px;
    font-weight: 800;
}

.corporate-info-content {
    position: relative;
    z-index: 2;
    max-height: 310px;
    margin-top: 22px;
    padding-right: 12px;
    overflow-y: auto;
}

.corporate-info-content::-webkit-scrollbar {
    width: 5px;
}

.corporate-info-content::-webkit-scrollbar-track {
    background: #eef0f5;
    border-radius: 20px;
}

.corporate-info-content::-webkit-scrollbar-thumb {
    background: #c7ccd7;
    border-radius: 20px;
}

.corporate-info-content p {
    margin: 0 0 15px;
    color: var(--text-soft);
    font-size: 12px;
    line-height: 1.9;
}

.corporate-info-content p:last-child {
    margin-bottom: 0;
}

.corporate-values {
    padding: 90px 0;
    background: #ffffff;
}

.corporate-values-wrap {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 70px;
}

.corporate-values-title {
    max-width: 500px;
}

.corporate-values-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
}

.corporate-value {
    display: flex;
    gap: 12px;
    padding: 19px;
    background: var(--surface);
    border: 1px solid transparent;
    border-radius: 13px;
    transition: var(--transition);
}

.corporate-value:hover {
    background: #ffffff;
    border-color: var(--border);
    box-shadow: var(--shadow-sm);
    transform: translateY(-3px);
}

.corporate-value > span {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    color: #ffffff;
    background: var(--navy);
    border-radius: 50%;
}

.corporate-value > span i {
    font-size: 9px;
}

.corporate-value strong {
    color: var(--text);
    font-size: 12px;
    font-weight: 800;
}

.corporate-value p {
    margin: 5px 0 0;
    color: var(--text-soft);
    font-size: 10px;
    line-height: 1.7;
}

.corporate-contact {
    padding: 0 0 80px;
    background: #ffffff;
}

.corporate-contact-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 38px 40px;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 90% 120%,
            rgba(237, 21, 36, 0.15),
            transparent 30%
        ),
        linear-gradient(
            120deg,
            var(--navy-dark),
            var(--navy)
        );
    border-radius: 18px;
}

.corporate-contact-inner::after {
    position: absolute;
    content: "";
    width: 220px;
    height: 220px;
    right: -100px;
    top: -130px;
    border: 40px solid rgba(255, 255, 255, 0.035);
    border-radius: 50%;
}

.corporate-contact-inner > div {
    position: relative;
    z-index: 2;
}

.corporate-contact-inner > div:first-child > span {
    color: rgba(255, 255, 255, 0.46);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.corporate-contact-inner h2 {
    max-width: 680px;
    margin: 5px 0 0;
    color: #ffffff;
    font-size: 25px;
    line-height: 1.35;
    font-weight: 650;
    letter-spacing: -0.7px;
}

.corporate-contact-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.corporate-contact-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 53px;
    padding: 0 21px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 12px;
    font-size: 12px;
    font-weight: 750;
}

.corporate-contact-link:hover {
    color: var(--navy);
    background: #ffffff;
    border-color: #ffffff;
}

@keyframes corporateBadgeFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}

@media (max-width: 991.98px) {
    .corporate-about-image {
        margin: 0 auto;
    }

    .corporate-values-wrap {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .corporate-values-title {
        max-width: 650px;
    }
}

@media (max-width: 767.98px) {
    .corporate-header {
        padding: 37px 0;
    }

    .corporate-header-icon {
        display: none;
    }

    .corporate-header h1 {
        font-size: 29px;
    }

    .corporate-header p {
        font-size: 12px;
    }

    .corporate-about,
    .corporate-mission-vision,
    .corporate-values {
        padding: 65px 0;
    }

    .corporate-about-image {
        min-height: 445px;
    }

    .corporate-about-image > img {
        height: 420px;
    }

    .corporate-about-content h2,
    .corporate-section-title h2,
    .corporate-values-title h2 {
        font-size: 30px;
    }

    .corporate-rich-text p {
        font-size: 12px;
    }

    .corporate-about-bottom {
        grid-template-columns: 1fr;
    }

    .corporate-values-list {
        grid-template-columns: 1fr;
    }

    .corporate-contact-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 575.98px) {
    .corporate-header {
        padding: 30px 0;
    }

    .corporate-breadcrumb {
        font-size: 10px;
    }

    .corporate-header h1 {
        font-size: 25px;
    }

    .corporate-header p {
        font-size: 11px;
    }

    .corporate-about,
    .corporate-mission-vision,
    .corporate-values {
        padding: 52px 0;
    }

    .corporate-about-image {
        min-height: 365px;
        padding-right: 20px;
    }

    .corporate-about-image > img {
        height: 345px;
    }

    .corporate-about-image-line {
        width: 130px;
        height: 130px;
    }

    .corporate-about-badge {
        right: 0;
        bottom: 5px;
        padding: 11px 13px;
    }

    .corporate-about-badge small {
        font-size: 9px;
    }

    .corporate-about-badge strong {
        font-size: 11px;
    }

    .corporate-about-content h2,
    .corporate-section-title h2,
    .corporate-values-title h2 {
        font-size: 27px;
    }

    .corporate-rich-text {
        max-height: 300px;
    }

    .corporate-rich-text p {
        font-size: 12px;
    }

    .corporate-info-card {
        padding: 24px 20px;
    }

    .corporate-info-card-head h3 {
        font-size: 17px;
    }

    .corporate-info-content p {
        font-size: 11px;
    }

    .corporate-value strong {
        font-size: 11px;
    }

    .corporate-value p {
        font-size: 10px;
    }

    .corporate-contact {
        padding-bottom: 55px;
    }

    .corporate-contact-inner {
        padding: 28px 23px;
    }

    .corporate-contact-inner h2 {
        font-size: 21px;
    }

    .corporate-contact-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .corporate-contact-link {
        width: 100%;
    }
}

.corporate-values {
    position: relative;
    padding: 85px 0;
    overflow: hidden;
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f7f9fd 100%
        );
}

.corporate-values::before {
    position: absolute;
    content: "";
    width: 430px;
    height: 430px;
    left: -260px;
    top: -240px;
    border: 1px solid rgba(8, 28, 104, 0.06);
    border-radius: 50%;
    box-shadow:
        0 0 0 65px rgba(8, 28, 104, 0.015),
        0 0 0 130px rgba(8, 28, 104, 0.01);
    pointer-events: none;
}

.corporate-values-wrap {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    align-items: center;
    gap: 75px;
}

.corporate-values-title {
    position: relative;
    max-width: 500px;
    padding-left: 26px;
}

.corporate-values-title::before {
    position: absolute;
    content: "";
    left: 0;
    top: 3px;
    bottom: 3px;
    width: 3px;
    background:
        linear-gradient(
            180deg,
            var(--red) 0%,
            var(--navy) 100%
        );
    border-radius: 20px;
}

.corporate-values-title .corporate-section-label {
    margin-bottom: 15px;
    padding-left: 0;
    color: var(--red);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.corporate-values-title .corporate-section-label::before {
    display: none;
}

.corporate-values-title h2 {
    margin: 0;
    color: var(--text);
    font-size: 40px;
    line-height: 1.16;
    font-weight: 600;
    letter-spacing: -1.7px;
}

.corporate-values-title h2 strong {
    display: block;
    margin-top: 2px;
    color: var(--navy);
    font-weight: 800;
}

.corporate-values-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.corporate-value {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    min-height: 155px;
    padding: 26px 25px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e5e9f2;
    border-radius: 17px;
    box-shadow: 0 8px 30px rgba(9, 25, 78, 0.045);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.corporate-value::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background:
        linear-gradient(
            180deg,
            var(--red),
            var(--navy)
        );
    border-radius: 0 0 10px 0;
    transition: height 0.35s ease;
}

.corporate-value::after {
    position: absolute;
    content: "";
    width: 110px;
    height: 110px;
    right: -75px;
    bottom: -75px;
    background: rgba(8, 28, 104, 0.035);
    border-radius: 50%;
    transition: transform 0.4s ease;
}

.corporate-value:hover {
    border-color: rgba(8, 28, 104, 0.12);
    box-shadow: 0 18px 45px rgba(9, 25, 78, 0.09);
    transform: translateY(-5px);
}

.corporate-value:hover::before {
    height: 100%;
}

.corporate-value:hover::after {
    transform: scale(1.5);
}

.corporate-value > span {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 45px;
    width: 45px;
    height: 45px;
    color: #ffffff;
    background: var(--navy);
    border-radius: 13px;
    box-shadow: 0 8px 18px rgba(8, 28, 104, 0.16);
    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.corporate-value:hover > span {
    background: var(--red);
    transform: rotate(-5deg);
}

.corporate-value > span i {
    font-size: 13px;
}

.corporate-value > div {
    position: relative;
    z-index: 2;
    padding-top: 1px;
}

.corporate-value strong {
    display: block;
    margin-bottom: 8px;
    color: #171d2d;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 800;
}

.corporate-value p {
    max-width: 330px;
    margin: 0;
    color: #737b8d;
    font-size: 12px;
    line-height: 1.75;
    font-weight: 400;
}

@media (max-width: 1199.98px) {
    .corporate-values-wrap {
        gap: 45px;
    }

    .corporate-values-title h2 {
        font-size: 36px;
    }
}

@media (max-width: 991.98px) {
    .corporate-values {
        padding: 70px 0;
    }

    .corporate-values-wrap {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .corporate-values-title {
        max-width: 650px;
    }

    .corporate-values-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .corporate-values {
        padding: 60px 0;
    }

    .corporate-values-title h2 {
        font-size: 31px;
    }

    .corporate-values-list {
        grid-template-columns: 1fr;
    }

    .corporate-value {
        min-height: auto;
        padding: 22px;
    }

    .corporate-value strong {
        font-size: 14px;
    }

    .corporate-value p {
        font-size: 12px;
    }
}

@media (max-width: 575.98px) {
    .corporate-values-title {
        padding-left: 19px;
    }

    .corporate-values-title h2 {
        font-size: 27px;
    }

    .corporate-values-title .corporate-section-label {
        font-size: 10px;
    }

    .corporate-value {
        gap: 13px;
        padding: 19px;
    }

    .corporate-value > span {
        flex-basis: 41px;
        width: 41px;
        height: 41px;
    }

    .corporate-value strong {
        font-size: 13px;
    }

    .corporate-value p {
        font-size: 11px;
    }
}

.corporate-values {
    position: relative;
    padding: 85px 0;
    overflow: hidden;
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f7f9fd 100%
        );
}

.corporate-values::before {
    position: absolute;
    content: "";
    width: 430px;
    height: 430px;
    left: -260px;
    top: -240px;
    border: 1px solid rgba(8, 28, 104, 0.06);
    border-radius: 50%;
    box-shadow:
        0 0 0 65px rgba(8, 28, 104, 0.015),
        0 0 0 130px rgba(8, 28, 104, 0.01);
    pointer-events: none;
}

.corporate-values-wrap {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    align-items: center;
    gap: 75px;
}

.corporate-values-title {
    position: relative;
    max-width: 500px;
    padding-left: 26px;
}

.corporate-values-title::before {
    position: absolute;
    content: "";
    left: 0;
    top: 3px;
    bottom: 3px;
    width: 3px;
    background:
        linear-gradient(
            180deg,
            var(--red) 0%,
            var(--navy) 100%
        );
    border-radius: 20px;
}

.corporate-values-title .corporate-section-label {
    margin-bottom: 15px;
    padding-left: 0;
    color: var(--red);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.corporate-values-title .corporate-section-label::before {
    display: none;
}

.corporate-values-title h2 {
    margin: 0;
    color: var(--text);
    font-size: 40px;
    line-height: 1.16;
    font-weight: 600;
    letter-spacing: -1.7px;
}

.corporate-values-title h2 strong {
    display: block;
    margin-top: 2px;
    color: var(--navy);
    font-weight: 800;
}

.corporate-values-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.corporate-value {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    min-height: 155px;
    padding: 26px 25px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e5e9f2;
    border-radius: 17px;
    box-shadow: 0 8px 30px rgba(9, 25, 78, 0.045);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.corporate-value::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background:
        linear-gradient(
            180deg,
            var(--red),
            var(--navy)
        );
    border-radius: 0 0 10px 0;
    transition: height 0.35s ease;
}

.corporate-value::after {
    position: absolute;
    content: "";
    width: 110px;
    height: 110px;
    right: -75px;
    bottom: -75px;
    background: rgba(8, 28, 104, 0.035);
    border-radius: 50%;
    transition: transform 0.4s ease;
}

.corporate-value:hover {
    border-color: rgba(8, 28, 104, 0.12);
    box-shadow: 0 18px 45px rgba(9, 25, 78, 0.09);
    transform: translateY(-5px);
}

.corporate-value:hover::before {
    height: 100%;
}

.corporate-value:hover::after {
    transform: scale(1.5);
}

.corporate-value > span {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 45px;
    width: 45px;
    height: 45px;
    color: #ffffff;
    background: var(--navy);
    border-radius: 13px;
    box-shadow: 0 8px 18px rgba(8, 28, 104, 0.16);
    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.corporate-value:hover > span {
    background: var(--red);
    transform: rotate(-5deg);
}

.corporate-value > span i {
    font-size: 13px;
}

.corporate-value > div {
    position: relative;
    z-index: 2;
    padding-top: 1px;
}

.corporate-value strong {
    display: block;
    margin-bottom: 8px;
    color: #171d2d;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 800;
}

.corporate-value p {
    max-width: 330px;
    margin: 0;
    color: #737b8d;
    font-size: 12px;
    line-height: 1.75;
    font-weight: 400;
}

@media (max-width: 1199.98px) {
    .corporate-values-wrap {
        gap: 45px;
    }

    .corporate-values-title h2 {
        font-size: 36px;
    }
}

@media (max-width: 991.98px) {
    .corporate-values {
        padding: 70px 0;
    }

    .corporate-values-wrap {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .corporate-values-title {
        max-width: 650px;
    }

    .corporate-values-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .corporate-values {
        padding: 60px 0;
    }

    .corporate-values-title h2 {
        font-size: 31px;
    }

    .corporate-values-list {
        grid-template-columns: 1fr;
    }

    .corporate-value {
        min-height: auto;
        padding: 22px;
    }

    .corporate-value strong {
        font-size: 14px;
    }

    .corporate-value p {
        font-size: 12px;
    }
}

@media (max-width: 575.98px) {
    .corporate-values-title {
        padding-left: 19px;
    }

    .corporate-values-title h2 {
        font-size: 27px;
    }

    .corporate-values-title .corporate-section-label {
        font-size: 10px;
    }

    .corporate-value {
        gap: 13px;
        padding: 19px;
    }

    .corporate-value > span {
        flex-basis: 41px;
        width: 41px;
        height: 41px;
    }

    .corporate-value strong {
        font-size: 13px;
    }

    .corporate-value p {
        font-size: 11px;
    }
}

.page-header {
    position: relative;
    overflow: hidden;
    padding: 42px 0;
    background:
        radial-gradient(
            circle at 88% 20%,
            rgba(23, 52, 155, 0.08) 0%,
            rgba(23, 52, 155, 0) 30%
        ),
        linear-gradient(
            120deg,
            #f8f9fd 0%,
            #eef2ff 100%
        );
    border-bottom: 1px solid var(--border);
}

.page-header::before {
    position: absolute;
    content: "";
    width: 360px;
    height: 360px;
    right: -180px;
    top: -235px;
    border: 1px solid rgba(8, 28, 104, 0.06);
    border-radius: 50%;
    box-shadow:
        0 0 0 55px rgba(8, 28, 104, 0.012),
        0 0 0 110px rgba(8, 28, 104, 0.008);
    pointer-events: none;
}

.page-header::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 190px;
    height: 2px;
    background:
        linear-gradient(
            90deg,
            var(--red),
            rgba(237, 21, 36, 0)
        );
}

.page-header-grid {
    position: absolute;
    inset: 0;
    opacity: 0.18;
    background-image:
        linear-gradient(
            rgba(8, 28, 104, 0.04) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(8, 28, 104, 0.04) 1px,
            transparent 1px
        );
    background-size: 54px 54px;
    pointer-events: none;
}

.page-header-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 10px;
    color: #9298a6;
    font-size: 11px;
    line-height: 1.5;
    font-weight: 600;
}

.page-breadcrumb a {
    color: #747c8c;
}

.page-breadcrumb a:hover {
    color: var(--navy);
}

.page-breadcrumb i {
    color: #afb5c0;
    font-size: 9px;
}

.page-breadcrumb span {
    color: var(--navy);
    font-weight: 700;
}

.page-header h1 {
    margin: 0;
    color: var(--text);
    font-size: 34px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -1.1px;
}

.page-header p {
    max-width: 650px;
    margin: 9px 0 0;
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.75;
}

.career-page {
    position: relative;
    padding: 90px 0 100px;
    overflow: hidden;
    background: #ffffff;
}

.career-page::before {
    position: absolute;
    content: "";
    width: 480px;
    height: 480px;
    left: -330px;
    top: 180px;
    border: 1px solid rgba(8, 28, 104, 0.045);
    border-radius: 50%;
    pointer-events: none;
}

.career-intro {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: end;
    gap: 80px;
    margin-bottom: 42px;
}

.career-intro-heading {
    max-width: 530px;
}

.career-intro-heading h2 {
    margin: 0;
    color: var(--text);
    font-size: 38px;
    line-height: 1.18;
    font-weight: 550;
    letter-spacing: -1.5px;
}

.career-intro-heading h2 strong {
    display: block;
    color: var(--navy);
    font-weight: 800;
}

.career-intro-text {
    max-width: 680px;
    padding-bottom: 4px;
}

.career-intro-text p {
    margin: 0;
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.9;
}

.career-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 75px;
}

.career-benefit {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 23px;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid transparent;
    border-radius: 15px;
    transition: var(--transition);
}

.career-benefit::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 100px;
    right: -65px;
    bottom: -65px;
    background: rgba(8, 28, 104, 0.04);
    border-radius: 50%;
    transition: transform 0.35s ease;
}

.career-benefit:hover {
    background: #ffffff;
    border-color: var(--border);
    box-shadow: var(--shadow-sm);
    transform: translateY(-4px);
}

.career-benefit:hover::after {
    transform: scale(1.5);
}

.career-benefit > span {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 45px;
    width: 45px;
    height: 45px;
    color: var(--navy);
    background: #ffffff;
    border: 1px solid rgba(8, 28, 104, 0.08);
    border-radius: 12px;
    transition: var(--transition);
}

.career-benefit:hover > span {
    color: #ffffff;
    background: var(--navy);
    border-color: var(--navy);
}

.career-benefit > span i {
    font-size: 15px;
}

.career-benefit > div {
    position: relative;
    z-index: 2;
}

.career-benefit strong {
    display: block;
    margin-bottom: 6px;
    color: var(--text);
    font-size: 13px;
    line-height: 1.4;
    font-weight: 800;
}

.career-benefit p {
    margin: 0;
    color: var(--text-soft);
    font-size: 11px;
    line-height: 1.7;
}

.career-application {
    position: relative;
    padding-top: 10px;
}

.career-application-info {
    position: sticky;
    top: 105px;
    padding: 33px 30px;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 115% 0%,
            rgba(237, 21, 36, 0.18),
            transparent 34%
        ),
        linear-gradient(
            145deg,
            var(--navy-dark) 0%,
            var(--navy) 100%
        );
    border-radius: 18px;
    box-shadow: var(--shadow-md);
}

.career-application-info::after {
    position: absolute;
    content: "";
    width: 220px;
    height: 220px;
    left: -140px;
    bottom: -145px;
    border: 38px solid rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.career-application-info .corporate-section-label {
    position: relative;
    z-index: 2;
    color: #ff6973;
    font-size: 10px;
}

.career-application-info h2 {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #ffffff;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 550;
    letter-spacing: -1px;
}

.career-application-info h2 strong {
    display: block;
    font-weight: 800;
}

.career-application-info > p {
    position: relative;
    z-index: 2;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.64);
    font-size: 12px;
    line-height: 1.85;
}

.career-application-steps {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 13px;
    margin-top: 30px;
}

.career-application-steps > div {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
}

.career-application-steps > div > span {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    color: #ffffff;
    background: var(--red);
    border-radius: 9px;
    font-size: 10px;
    font-weight: 800;
}

.career-application-steps > div > div {
    display: flex;
    flex-direction: column;
    padding-top: 1px;
}

.career-application-steps strong {
    color: #ffffff;
    font-size: 11px;
    font-weight: 750;
}

.career-application-steps small {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 9px;
    line-height: 1.5;
}

.career-form-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 15px 50px rgba(8, 28, 104, 0.06);
}

.career-form-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 27px 30px;
    background:
        linear-gradient(
            180deg,
            #ffffff,
            #fafbfe
        );
    border-bottom: 1px solid var(--border);
}

.career-form-head > div {
    display: flex;
    flex-direction: column;
}

.career-form-head > div > span {
    color: var(--red);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.career-form-head h3 {
    margin: 4px 0 0;
    color: var(--text);
    font-size: 22px;
    line-height: 1.3;
    font-weight: 800;
}

.career-form-head > small {
    color: #9ca2ae;
    font-size: 10px;
    font-weight: 600;
}

.career-alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 23px 30px 0;
    padding: 15px 17px;
    border-radius: 11px;
}

.career-alert > i {
    margin-top: 2px;
    font-size: 16px;
}

.career-alert > div {
    display: flex;
    flex-direction: column;
}

.career-alert strong {
    font-size: 12px;
    font-weight: 800;
}

.career-alert span {
    margin-top: 2px;
    font-size: 10px;
    line-height: 1.6;
}

.career-alert-success {
    color: #17653a;
    background: #edf9f2;
    border: 1px solid #ceeeda;
}

.career-alert-error {
    color: #a52029;
    background: #fff1f2;
    border: 1px solid #f3cdd0;
}

.career-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.career-form-section {
    padding: 30px;
    border-bottom: 1px solid var(--border);
}

.career-form-section:last-of-type {
    border-bottom: 0;
}

.career-form-section-title {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 22px;
}

.career-form-section-title > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: var(--navy);
    background: var(--navy-soft);
    border-radius: 9px;
    font-size: 10px;
    font-weight: 800;
}

.career-form-section-title > strong {
    color: var(--text);
    font-size: 13px;
    font-weight: 800;
}

.career-field {
    height: 100%;
}

.career-field label {
    display: block;
    margin-bottom: 7px;
    color: #343b4b;
    font-size: 11px;
    line-height: 1.4;
    font-weight: 700;
}

.career-field .form-control,
.career-field .form-select {
    min-height: 48px;
    padding: 0 14px;
    color: var(--text);
    background-color: #fafbfc;
    border: 1px solid #e1e5ed;
    border-radius: 10px;
    box-shadow: none;
    font-size: 11px;
    font-weight: 500;
    transition: var(--transition);
}

.career-field textarea.form-control {
    min-height: 100px;
    padding-top: 12px;
    padding-bottom: 12px;
    resize: vertical;
}

.career-field .form-control::placeholder {
    color: #a3a9b5;
    opacity: 1;
}

.career-field .form-control:focus,
.career-field .form-select:focus {
    color: var(--text);
    background: #ffffff;
    border-color: rgba(8, 28, 104, 0.38);
    box-shadow:
        0 0 0 3px rgba(8, 28, 104, 0.055);
}

.career-file-upload {
    position: relative;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    min-height: 100px;
    padding: 18px;
    background:
        linear-gradient(
            135deg,
            #fafbfe,
            #f5f7fb
        );
    border: 1px dashed #cbd1de;
    border-radius: 12px;
    transition: var(--transition);
}

.career-file-upload:hover {
    background: #ffffff;
    border-color: rgba(8, 28, 104, 0.4);
}

.career-file-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: var(--navy);
    background: var(--navy-soft);
    border-radius: 11px;
}

.career-file-icon i {
    font-size: 17px;
}

.career-file-upload > div {
    display: flex;
    flex-direction: column;
}

.career-file-upload strong {
    color: var(--text);
    font-size: 11px;
    font-weight: 800;
}

.career-file-upload small {
    margin-top: 3px;
    color: #9299a7;
    font-size: 9px;
}

.career-file-input {
    grid-column: 1 / -1;
    width: 100%;
    color: var(--text-soft);
    font-size: 10px;
}

.career-file-input::file-selector-button {
    margin-right: 12px;
    padding: 9px 13px;
    color: #ffffff;
    background: var(--navy);
    border: 0;
    border-radius: 8px;
    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 700;
    cursor: pointer;
}

.career-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 3px;
    padding: 14px 15px;
    background: var(--surface);
    border-radius: 10px;
}

.career-consent input[type="checkbox"] {
    flex: 0 0 auto;
    width: 17px;
    height: 17px;
    margin-top: 2px;
    accent-color: var(--navy);
    cursor: pointer;
}

.career-consent label {
    margin: 0;
    color: var(--text-soft);
    font-size: 10px;
    line-height: 1.7;
    cursor: pointer;
}

.career-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 24px 30px;
    background: #fafbfe;
    border-top: 1px solid var(--border);
}

.career-form-footer > span {
    max-width: 480px;
    color: #949ba8;
    font-size: 9px;
    line-height: 1.6;
}

.career-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 49px;
    padding: 0 21px;
    color: #ffffff;
    background:
        linear-gradient(
            120deg,
            var(--navy),
            #17349b,
            var(--red)
        );
    background-size: 200% 200%;
    border-radius: 11px;
    font-size: 11px;
    font-weight: 800;
    animation: careerButtonGradient 5s ease infinite;
    box-shadow: 0 12px 25px rgba(8, 28, 104, 0.15);
}

.career-submit:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(8, 28, 104, 0.21);
}

.career-submit i {
    font-size: 9px;
}

@keyframes careerButtonGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@media (max-width: 1199.98px) {
    .career-intro {
        gap: 45px;
    }

    .career-intro-heading h2 {
        font-size: 35px;
    }
}

@media (max-width: 991.98px) {
    .career-page {
        padding: 75px 0 85px;
    }

    .career-intro {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .career-intro-heading {
        max-width: 650px;
    }

    .career-intro-text {
        max-width: 700px;
    }

    .career-benefits {
        margin-bottom: 55px;
    }

    .career-application-info {
        position: relative;
        top: auto;
    }
}

@media (max-width: 767.98px) {
    .page-header {
        padding: 36px 0;
    }

    .page-header h1 {
        font-size: 29px;
    }

    .page-header p {
        font-size: 12px;
    }

    .career-page {
        padding: 60px 0 70px;
    }

    .career-intro-heading h2 {
        font-size: 30px;
    }

    .career-benefits {
        grid-template-columns: 1fr;
    }

    .career-benefit {
        min-height: auto;
    }

    .career-application-info h2 {
        font-size: 27px;
    }

    .career-form-head,
    .career-form-section,
    .career-form-footer {
        padding-left: 22px;
        padding-right: 22px;
    }

    .career-form-footer {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 575.98px) {
    .page-header {
        padding: 30px 0;
    }

    .page-header h1 {
        font-size: 25px;
    }

    .page-header p {
        font-size: 11px;
    }

    .career-page {
        padding: 50px 0 60px;
    }

    .career-intro-heading h2 {
        font-size: 27px;
    }

    .career-intro-text p {
        font-size: 12px;
    }

    .career-benefit {
        padding: 18px;
    }

    .career-benefit strong {
        font-size: 12px;
    }

    .career-benefit p {
        font-size: 10px;
    }

    .career-application-info {
        padding: 27px 22px;
    }

    .career-application-info h2 {
        font-size: 24px;
    }

    .career-application-info > p {
        font-size: 11px;
    }

    .career-form-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .career-form-head h3 {
        font-size: 19px;
    }

    .career-form-section {
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .career-field label {
        font-size: 10px;
    }

    .career-field .form-control,
    .career-field .form-select {
        font-size: 10px;
    }

    .career-submit {
        width: 100%;
    }
}


.certificates-page {
    position: relative;
    padding: 85px 0 100px;
    overflow: hidden;
    background: #ffffff;
}

.certificates-page::before {
    position: absolute;
    content: "";
    width: 520px;
    height: 520px;
    right: -360px;
    top: 150px;
    border: 1px solid rgba(8, 28, 104, 0.045);
    border-radius: 50%;
    pointer-events: none;
}

.certificates-heading {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.65fr);
    align-items: end;
    gap: 70px;
    margin-bottom: 42px;
}

.certificates-heading > div {
    max-width: 650px;
}

.certificates-heading h2 {
    margin: 0;
    color: var(--text);
    font-size: 38px;
    line-height: 1.18;
    font-weight: 550;
    letter-spacing: -1.5px;
}

.certificates-heading h2 strong {
    display: block;
    color: var(--navy);
    font-weight: 800;
}

.certificates-heading > p {
    max-width: 550px;
    margin: 0;
    padding-bottom: 4px;
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.85;
}

.certificates-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.certificate-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 17px;
    box-shadow: 0 10px 35px rgba(8, 28, 104, 0.055);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.certificate-card:hover {
    border-color: rgba(8, 28, 104, 0.15);
    box-shadow: 0 22px 55px rgba(8, 28, 104, 0.11);
    transform: translateY(-6px);
}

.certificate-preview {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #eef1f7;
    border-bottom: 1px solid var(--border);
}

.certificate-pdf-preview {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1.28;
    overflow: hidden;
    background: #dfe4ed;
}

.certificate-pdf-preview iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    background: #ffffff;
}

.certificate-image-preview {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1.28;
    overflow: hidden;
    background: #eef1f7;
}

.certificate-image-preview > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
    background: #f5f6f9;
    transition: transform 0.55s ease;
}

.certificate-card:hover .certificate-image-preview > img {
    transform: scale(1.025);
}

.certificate-image-hover {
    position: absolute;
    z-index: 3;
    inset: 0;
    display: flex;
    visibility: hidden;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    color: #ffffff;
    background: rgba(5, 19, 68, 0.70);
    opacity: 0;
    transition: 0.3s ease;
}

.certificate-image-hover i {
    font-size: 22px;
}

.certificate-image-hover strong {
    font-size: 12px;
    font-weight: 750;
}

.certificate-image-preview:hover .certificate-image-hover {
    visibility: visible;
    opacity: 1;
}

.certificate-file-badge {
    position: absolute;
    z-index: 5;
    top: 13px;
    right: 13px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 30px;
    padding: 0 10px;
    color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.13);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.4px;
}

.certificate-file-badge i {
    font-size: 11px;
}

.certificate-file-pdf {
    background: #ed1524;
}

.certificate-file-image {
    background: var(--navy);
}

.certificate-unknown-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    aspect-ratio: 1 / 1.28;
    gap: 9px;
    color: var(--navy);
    background:
        linear-gradient(
            135deg,
            #f5f7fb,
            #e9edf6
        );
}

.certificate-unknown-preview > i {
    font-size: 48px;
    opacity: 0.75;
}

.certificate-unknown-preview > strong {
    color: var(--text);
    font-size: 14px;
    font-weight: 800;
}

.certificate-unknown-preview > span {
    color: #9198a6;
    font-size: 10px;
    font-weight: 700;
}

.certificate-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px;
}

.certificate-card-title {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.certificate-card-title > span {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    color: var(--navy);
    background: var(--navy-soft);
    border-radius: 10px;
    transition: var(--transition);
}

.certificate-card:hover .certificate-card-title > span {
    color: #ffffff;
    background: var(--navy);
}

.certificate-card-title > span i {
    font-size: 15px;
}

.certificate-card-title > div {
    min-width: 0;
    padding-top: 1px;
}

.certificate-card-title small {
    display: block;
    margin-bottom: 3px;
    color: #9ca2ae;
    font-size: 9px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.certificate-card-title h3 {
    margin: 0;
    color: var(--text);
    font-size: 15px;
    line-height: 1.45;
    font-weight: 800;
    word-break: break-word;
}

.certificate-card-actions {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px;
    margin-top: 20px;
}

.certificate-view-button,
.certificate-open-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 9px;
    font-size: 10px;
    line-height: 1.3;
    font-weight: 750;
}

.certificate-view-button {
    color: #ffffff;
    background: var(--navy);
}

.certificate-view-button:hover {
    color: #ffffff;
    background: var(--navy-dark);
}

.certificate-open-button {
    color: var(--navy);
    background: var(--surface);
    border: 1px solid var(--border);
}

.certificate-open-button:hover {
    color: var(--red);
    background: #ffffff;
    border-color: rgba(237, 21, 36, 0.2);
}

.certificate-view-button i,
.certificate-open-button i {
    font-size: 10px;
}

.certificates-empty {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 30px;
    background: var(--surface);
    border: 1px dashed #ccd2dd;
    border-radius: 15px;
}

.certificates-empty > span {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 55px;
    width: 55px;
    height: 55px;
    color: var(--navy);
    background: #ffffff;
    border-radius: 13px;
}

.certificates-empty > span i {
    font-size: 20px;
}

.certificates-empty h3 {
    margin: 0;
    color: var(--text);
    font-size: 16px;
    font-weight: 800;
}

.certificates-empty p {
    margin: 5px 0 0;
    color: var(--text-soft);
    font-size: 12px;
    line-height: 1.7;
}

@media (max-width: 1199.98px) {
    .certificates-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .certificates-heading {
        gap: 40px;
    }
}

@media (max-width: 991.98px) {
    .certificates-page {
        padding: 70px 0 80px;
    }

    .certificates-heading {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .certificates-heading > p {
        max-width: 700px;
    }
}

@media (max-width: 767.98px) {
    .certificates-page {
        padding: 60px 0 70px;
    }

    .certificates-heading h2 {
        font-size: 31px;
    }

    .certificates-heading > p {
        font-size: 12px;
    }

    .certificate-card-title h3 {
        font-size: 14px;
    }
}

@media (max-width: 575.98px) {
    .certificates-page {
        padding: 50px 0 60px;
    }

    .certificates-heading {
        margin-bottom: 30px;
    }

    .certificates-heading h2 {
        font-size: 27px;
    }

    .certificates-grid {
        grid-template-columns: 1fr;
    }

    .certificate-pdf-preview,
    .certificate-image-preview,
    .certificate-unknown-preview {
        aspect-ratio: 1 / 1.18;
    }

    .certificate-card-body {
        padding: 19px;
    }

    .certificate-card-actions {
        grid-template-columns: 1fr;
    }

    .certificate-view-button,
    .certificate-open-button {
        width: 100%;
        font-size: 10px;
    }

    .certificates-empty {
        align-items: flex-start;
        padding: 22px;
    }
}


.affiliates-page {
    position: relative;
    padding: 85px 0 100px;
    overflow: hidden;
    background: #ffffff;
}

.affiliates-page::before {
    position: absolute;
    content: "";
    width: 480px;
    height: 480px;
    right: -330px;
    top: 100px;
    border: 1px solid rgba(8, 28, 104, 0.045);
    border-radius: 50%;
    pointer-events: none;
}

.affiliates-heading {
    position: relative;
    z-index: 2;
    margin-bottom: 42px;
}

.affiliates-heading h2 {
    margin: 0;
    color: var(--text);
    font-size: 38px;
    line-height: 1.18;
    font-weight: 550;
    letter-spacing: -1.5px;
}

.affiliates-heading h2 strong {
    display: block;
    color: var(--navy);
    font-weight: 800;
}

.affiliates-heading > p {
    margin: 16px 0 0;
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.85;
}

.affiliates-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.affiliate-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(8, 28, 104, 0.05);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.affiliate-card:hover {
    border-color: rgba(8, 28, 104, 0.14);
    box-shadow: 0 24px 60px rgba(8, 28, 104, 0.11);
    transform: translateY(-6px);
}

.affiliate-card-media {
    position: relative;
    height: 170px;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            #e7ebf5 0%,
            #f3f5f9 100%
        );
}

.affiliate-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.affiliate-card:hover .affiliate-banner {
    transform: scale(1.045);
}

.affiliate-banner-empty {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 25px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(237, 21, 36, 0.10),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            var(--navy-dark),
            var(--navy)
        );
}

.affiliate-banner-empty::before {
    position: absolute;
    content: "";
    inset: 0;
    opacity: 0.25;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px
        );
    background-size: 45px 45px;
}

.affiliate-banner-empty span {
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, 0.08);
    font-size: 90px;
    line-height: 1;
    font-weight: 800;
}

.affiliate-card-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(4, 16, 58, 0) 38%,
            rgba(4, 16, 58, 0.38) 100%
        );
    pointer-events: none;
}

.affiliate-logo {
    position: absolute;
    z-index: 4;
    left: 24px;
    bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 11px 16px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
}

.affiliate-logo img {
    display: block;
    max-width: 100%;
    max-height: 105px;
    object-fit: contain;
}

.affiliate-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 27px 27px 28px;
}

.affiliate-card-index {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 13px;
}

.affiliate-card-index > span {
    color: var(--red);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}

.affiliate-card-index > div {
    width: 35px;
    height: 1px;
    background: #d9dde6;
}

.affiliate-card h2 {
    margin: 0;
    color: var(--text);
    font-size: 20px;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.affiliate-description {
    margin-top: 13px;
    color: var(--text-soft);
    font-size: 12px;
    line-height: 1.85;
}

.affiliate-description p {
    margin: 0 0 12px;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
}

.affiliate-description p:last-child {
    margin-bottom: 0;
}

.affiliate-web-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: fit-content;
    margin-top: auto;
    padding-top: 20px;
    color: var(--navy);
    font-size: 11px;
    font-weight: 800;
}

.affiliate-web-link i {
    color: var(--red);
    font-size: 10px;
    transition: transform 0.3s ease;
}

.affiliate-web-link:hover {
    color: var(--red);
}

.affiliate-web-link:hover i {
    transform: translate(3px, -3px);
}

.affiliates-empty {
    position: relative;
    z-index: 2;
    padding: 30px;
    background: var(--surface);
    border: 1px dashed #cbd1dd;
    border-radius: 15px;
}

.affiliates-empty h3 {
    margin: 0;
    color: var(--text);
    font-size: 16px;
    font-weight: 800;
}

.affiliates-empty p {
    margin: 6px 0 0;
    color: var(--text-soft);
    font-size: 12px;
    line-height: 1.7;
}

@media (max-width: 991.98px) {
    .affiliates-page {
        padding: 70px 0 80px;
    }

    .affiliate-card-media {
        height: 220px;
    }
}

@media (max-width: 767.98px) {
    .affiliates-page {
        padding: 60px 0 70px;
    }

    .affiliates-heading h2 {
        font-size: 31px;
    }

    .affiliates-grid {
        grid-template-columns: 1fr;
    }

    .affiliate-card-media {
        height: 260px;
    }
}

@media (max-width: 575.98px) {
    .affiliates-page {
        padding: 50px 0 60px;
    }

    .affiliates-heading {
        margin-bottom: 30px;
    }

    .affiliates-heading h2 {
        font-size: 27px;
    }

    .affiliates-heading > p {
        font-size: 12px;
    }

    .affiliate-card-media {
        height: 210px;
    }

    .affiliate-logo {
        left: 17px;
        bottom: 16px;
        height: 60px;
        max-width: 175px;
    }

    .affiliate-logo img {
        max-height: 40px;
    }

    .affiliate-card-body {
        padding: 22px 20px 23px;
    }

    .affiliate-card h2 {
        font-size: 18px;
    }

    .affiliate-description {
        font-size: 11px;
    }
}



.references-page {
    padding: 80px 0 95px;
    background: #ffffff;
}

.references-page-heading {
    max-width: 700px;
    margin-bottom: 36px;
}

.references-page-heading h2 {
    margin: 0;
    color: var(--text);
    font-size: 36px;
    line-height: 1.2;
    font-weight: 550;
    letter-spacing: -1.4px;
}

.references-page-heading h2 strong {
    display: block;
    color: var(--navy);
    font-weight: 800;
}

.references-logo-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.reference-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    padding: 3px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 14px;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.reference-logo-item:hover {
    border-color: rgba(8, 28, 104, 0.14);
    box-shadow: 0 12px 30px rgba(8, 28, 104, 0.07);
    transform: translateY(-4px);
}

.reference-logo-item img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.reference-logo-item:hover img {
    transform: scale(1.04);
}

.references-page-empty {
    padding: 25px;
    color: var(--text-soft);
    background: var(--surface);
    border: 1px dashed var(--border);
    border-radius: 12px;
    font-size: 12px;
}

@media (max-width: 1199.98px) {
    .references-logo-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .references-page {
        padding: 60px 0 70px;
    }

    .references-page-heading h2 {
        font-size: 30px;
    }

    .references-logo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .reference-logo-item {
        min-height: 130px;
        padding: 20px;
    }

    .reference-logo-item img {
        max-height: 72px;
    }
}

@media (max-width: 575.98px) {
    .references-page {
        padding: 50px 0 60px;
    }

    .references-page-heading {
        margin-bottom: 28px;
    }

    .references-page-heading h2 {
        font-size: 27px;
    }

    .references-logo-grid {
        gap: 10px;
    }

    .reference-logo-item {
        min-height: 110px;
        padding: 16px;
    }

    .reference-logo-item img {
        max-height: 62px;
    }
}


.services-page {
    position: relative;
    padding: 80px 0 95px;
    overflow: hidden;
    background: #ffffff;
}

.services-page-heading {
    max-width: 760px;
    margin-bottom: 38px;
}

.services-page-heading h2 {
    margin: 0;
    color: var(--text);
    font-size: 37px;
    line-height: 1.18;
    font-weight: 550;
    letter-spacing: -1.4px;
}

.services-page-heading h2 strong {
    display: block;
    color: var(--navy);
    font-weight: 800;
}

.services-page-heading > p {
    max-width: 680px;
    margin: 15px 0 0;
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.85;
}

.services-page-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.services-page-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 8px 28px rgba(8, 28, 104, 0.045);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.services-page-card:hover {
    border-color: rgba(8, 28, 104, 0.14);
    box-shadow: 0 18px 42px rgba(8, 28, 104, 0.09);
    transform: translateY(-5px);
}

.services-page-card-media {
    position: relative;
    height: 225px;
    overflow: hidden;
    background: #eef1f6;
}

.services-page-card-media > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.services-page-card:hover .services-page-card-media > img {
    transform: scale(1.04);
}

.services-page-card-media::after {
    position: absolute;
    content: "";
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(4, 16, 58, 0) 55%,
            rgba(4, 16, 58, 0.28) 100%
        );
    pointer-events: none;
}

.services-page-number {
    position: absolute;
    z-index: 3;
    left: 16px;
    bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 39px;
    height: 39px;
    color: #ffffff;
    background: var(--red);
    border-radius: 10px;
    font-size: 11px;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(237, 21, 36, 0.2);
}

.services-page-card-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: rgba(255, 255, 255, 0.9);
    background:
        linear-gradient(
            135deg,
            var(--navy-dark),
            var(--navy)
        );
}

.services-page-card-placeholder i {
    font-size: 35px;
}

.services-page-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px;
}

.services-page-card-body h2 {
    margin: 0;
    color: var(--text);
    font-size: 17px;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.services-page-card-body > p {
    margin: 11px 0 0;
    color: var(--text-soft);
    font-size: 11px;
    line-height: 1.8;
}

.services-page-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin-top: auto;
    padding-top: 19px;
    color: var(--navy);
    font-size: 11px;
    font-weight: 800;
}

.services-page-link i {
    color: var(--red);
    font-size: 10px;
    transition: transform 0.3s ease;
}

.services-page-link:hover {
    color: var(--red);
}

.services-page-link:hover i {
    transform: translateX(4px);
}

.services-page-empty {
    padding: 25px;
    color: var(--text-soft);
    background: var(--surface);
    border: 1px dashed var(--border);
    border-radius: 12px;
    font-size: 12px;
}

.services-contact {
    padding: 0 0 85px;
    background: #ffffff;
}

.services-contact-panel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 36px 40px;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 90% 120%,
            rgba(237, 21, 36, 0.16),
            transparent 30%
        ),
        linear-gradient(
            120deg,
            var(--navy-dark),
            var(--navy)
        );
    border-radius: 18px;
}

.services-contact-panel::after {
    position: absolute;
    content: "";
    width: 220px;
    height: 220px;
    right: -100px;
    top: -140px;
    border: 40px solid rgba(255, 255, 255, 0.035);
    border-radius: 50%;
}

.services-contact-panel > div,
.services-contact-panel > a {
    position: relative;
    z-index: 2;
}

.services-contact-panel > div > span {
    color: rgba(255, 255, 255, 0.52);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.services-contact-panel h2 {
    max-width: 700px;
    margin: 6px 0 0;
    color: #ffffff;
    font-size: 25px;
    line-height: 1.35;
    font-weight: 700;
}

.services-contact-panel p {
    max-width: 700px;
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 11px;
    line-height: 1.75;
}

@media (max-width: 1199.98px) {
    .services-page-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .services-page {
        padding: 60px 0 70px;
    }

    .services-page-heading h2 {
        font-size: 30px;
    }

    .services-page-grid {
        grid-template-columns: 1fr;
    }

    .services-page-card-media {
        height: 260px;
    }

    .services-contact {
        padding-bottom: 65px;
    }

    .services-contact-panel {
        align-items: flex-start;
        flex-direction: column;
        padding: 30px 25px;
    }

    .services-contact-panel h2 {
        font-size: 22px;
    }
}

@media (max-width: 575.98px) {
    .services-page {
        padding: 50px 0 60px;
    }

    .services-page-heading {
        margin-bottom: 29px;
    }

    .services-page-heading h2 {
        font-size: 27px;
    }

    .services-page-heading > p {
        font-size: 12px;
    }

    .services-page-card-media {
        height: 220px;
    }

    .services-page-card-body {
        padding: 19px;
    }

    .services-page-card-body h2 {
        font-size: 16px;
    }

    .services-page-card-body > p {
        font-size: 11px;
    }

    .services-contact-panel h2 {
        font-size: 20px;
    }
}


.service-detail {
    position: relative;
    padding: 75px 0 95px;
    background: #ffffff;
}

.service-detail-main {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 18px;
}

.service-detail-main-image {
    position: relative;
    width: 100%;
    height: 410px;
    overflow: hidden;
    background: #eef1f6;
}

.service-detail-main-image::after {
    position: absolute;
    content: "";
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(4, 16, 58, 0) 65%,
            rgba(4, 16, 58, 0.18) 100%
        );
    pointer-events: none;
}

.service-detail-main-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-content {
    padding: 38px;
}

.service-detail-content-head {
    margin-bottom: 25px;
}

.service-detail-content-head h2 {
    margin: 0;
    color: var(--text);
    font-size: 30px;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: -0.8px;
}

.service-detail-richtext {
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.9;
}

.service-detail-richtext p {
    margin: 0 0 18px;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
}

.service-detail-richtext p:last-child {
    margin-bottom: 0;
}

.service-detail-richtext strong,
.service-detail-richtext b {
    color: var(--text);
    font-weight: 750;
}

.service-detail-richtext h2,
.service-detail-richtext h3,
.service-detail-richtext h4 {
    margin: 32px 0 14px;
    color: var(--text);
    font-weight: 800;
}

.service-detail-richtext h2 {
    font-size: 24px;
}

.service-detail-richtext h3 {
    font-size: 20px;
}

.service-detail-richtext h4 {
    font-size: 17px;
}

.service-detail-richtext ul,
.service-detail-richtext ol {
    margin: 17px 0 22px;
    padding-left: 0;
    list-style: none;
}

.service-detail-richtext li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 25px;
    color: var(--text-soft);
    font-size: 12.5px;
    line-height: 1.8;
}

.service-detail-richtext ul li::before {
    position: absolute;
    content: "\f00c";
    left: 0;
    top: 2px;
    color: var(--red);
    font-family: "Font Awesome 6 Free";
    font-size: 10px;
    font-weight: 900;
}

.service-detail-richtext ol {
    counter-reset: service-list;
}

.service-detail-richtext ol li {
    counter-increment: service-list;
}

.service-detail-richtext ol li::before {
    position: absolute;
    content: counter(service-list) ".";
    left: 0;
    top: 0;
    color: var(--navy);
    font-size: 11px;
    font-weight: 800;
}

.service-detail-richtext a {
    color: var(--navy);
    font-weight: 700;
    text-decoration: underline;
}

.service-detail-gallery {
    margin-top: 45px;
}

.service-detail-section-heading {
    margin-bottom: 23px;
}

.service-detail-section-heading h2 {
    margin: 0;
    color: var(--text);
    font-size: 27px;
    line-height: 1.3;
    font-weight: 550;
}

.service-detail-section-heading h2 strong {
    color: var(--navy);
    font-weight: 800;
}

.service-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 13px;
}

.service-gallery-item {
    position: relative;
    display: block;
    height: 185px;
    overflow: hidden;
    background: #eef1f6;
    border-radius: 12px;
}

.service-gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 0.45s ease,
        filter 0.45s ease;
}

.service-gallery-item > span {
    position: absolute;
    inset: 0;
    display: flex;
    visibility: hidden;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: rgba(5, 19, 68, 0.62);
    opacity: 0;
    transition: 0.3s ease;
}

.service-gallery-item > span i {
    font-size: 20px;
}

.service-gallery-item:hover img {
    transform: scale(1.06);
}

.service-gallery-item:hover > span {
    visibility: visible;
    opacity: 1;
}

.service-detail-sidebar {
    display: grid;
    gap: 20px;
}

.service-sidebar-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 16px;
}

.service-sidebar-head {
    padding: 22px 23px 18px;
    border-bottom: 1px solid var(--border);
}

.service-sidebar-head > span {
    display: block;
    margin-bottom: 3px;
    color: var(--red);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.service-sidebar-head h3 {
    margin: 0;
    color: var(--text);
    font-size: 18px;
    font-weight: 800;
}

.service-sidebar-list {
    padding: 8px;
}

.service-sidebar-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    min-height: 48px;
    padding: 10px 13px;
    color: #555e70;
    border-radius: 9px;
    font-size: 11px;
    line-height: 1.45;
    font-weight: 700;
    transition: var(--transition);
}

.service-sidebar-link + .service-sidebar-link {
    border-top: 1px solid #f0f2f6;
}

.service-sidebar-link i {
    flex: 0 0 auto;
    color: #a4abb8;
    font-size: 9px;
    transition: var(--transition);
}

.service-sidebar-link:hover {
    color: var(--navy);
    background: var(--surface);
}

.service-sidebar-link:hover i {
    color: var(--red);
    transform: translateX(3px);
}

.service-sidebar-link.active {
    color: #ffffff;
    background: var(--navy);
}

.service-sidebar-link.active i {
    color: #ffffff;
}

.service-sidebar-contact {
    position: relative;
    overflow: hidden;
    padding: 28px 25px;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 100% 100%,
            rgba(237, 21, 36, 0.2),
            transparent 38%
        ),
        linear-gradient(
            145deg,
            var(--navy-dark),
            var(--navy)
        );
    border-radius: 16px;
}

.service-sidebar-contact::after {
    position: absolute;
    content: "";
    width: 170px;
    height: 170px;
    right: -100px;
    top: -95px;
    border: 30px solid rgba(255, 255, 255, 0.035);
    border-radius: 50%;
}

.service-sidebar-contact > * {
    position: relative;
    z-index: 2;
}

.service-sidebar-contact-label {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.service-sidebar-contact h3 {
    margin: 0;
    color: #ffffff;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 750;
}

.service-sidebar-contact p {
    margin: 13px 0 20px;
    color: rgba(255, 255, 255, 0.63);
    font-size: 11px;
    line-height: 1.75;
}

@media (min-width: 992px) {
    .service-detail-sidebar {
        position: sticky;
        top: 105px;
    }
}

@media (max-width: 991.98px) {
    .service-detail {
        padding: 65px 0 80px;
    }
}

@media (max-width: 767.98px) {
    .service-detail-main-image {
        height: 330px;
    }

    .service-detail-content {
        padding: 28px;
    }

    .service-detail-content-head h2 {
        font-size: 26px;
    }

    .service-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .service-detail {
        padding: 50px 0 60px;
    }

    .service-detail-main-image {
        height: 245px;
    }

    .service-detail-content {
        padding: 22px 19px;
    }

    .service-detail-content-head h2 {
        font-size: 23px;
    }

    .service-detail-richtext {
        font-size: 12px;
    }

    .service-detail-richtext li {
        font-size: 11px;
    }

    .service-gallery-grid {
        grid-template-columns: 1fr;
    }

    .service-gallery-item {
        height: 220px;
    }

    .service-sidebar-contact {
        padding: 24px 21px;
    }
}


.services-page-image-link {
    display: block;
    width: 100%;
    height: 100%;
}

.services-page-image-link img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.services-page-card:hover .services-page-image-link img {
    transform: scale(1.04);
}

.services-page-card-body h2 a {
    color: inherit;
}

.services-page-card-body h2 a:hover {
    color: var(--navy);
}

.photo-gallery-page {
    position: relative;
    padding: 80px 0 95px;
    background: #ffffff;
}

.photo-gallery-heading {
    max-width: 650px;
    margin-bottom: 35px;
}

.photo-gallery-heading h2 {
    margin: 0;
    color: var(--text);
    font-size: 36px;
    line-height: 1.2;
    font-weight: 550;
    letter-spacing: -1.3px;
}

.photo-gallery-heading h2 strong {
    display: block;
    color: var(--navy);
    font-weight: 800;
}

.photo-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.photo-gallery-item {
    position: relative;
    display: block;
    width: 100%;
    height: 290px;
    padding: 0;
    overflow: hidden;
    background: #eef1f6;
    border: 0;
    border-radius: 14px;
    cursor: pointer;
    box-shadow: 0 8px 28px rgba(8, 28, 104, 0.045);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.photo-gallery-item:nth-child(5n + 1) {
    grid-row: span 2;
    height: 596px;
}

.photo-gallery-item:hover {
    box-shadow: 0 18px 45px rgba(8, 28, 104, 0.12);
    transform: translateY(-4px);
}

.photo-gallery-image {
    position: absolute;
    inset: 0;
}

.photo-gallery-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 0.6s ease,
        filter 0.4s ease;
}

.photo-gallery-item:hover .photo-gallery-image img {
    transform: scale(1.05);
}

.photo-gallery-overlay {
    position: absolute;
    z-index: 2;
    inset: 0;
    display: flex;
    visibility: hidden;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    color: #ffffff;
    background:
        linear-gradient(
            180deg,
            rgba(5, 19, 68, 0.08),
            rgba(5, 19, 68, 0.72)
        );
    opacity: 0;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.photo-gallery-item:hover .photo-gallery-overlay {
    visibility: visible;
    opacity: 1;
}

.photo-gallery-overlay > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: #ffffff;
    background: var(--red);
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(237, 21, 36, 0.25);
}

.photo-gallery-overlay i {
    font-size: 16px;
}

.photo-gallery-overlay strong {
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
}

.photo-gallery-empty {
    padding: 27px;
    background: var(--surface);
    border: 1px dashed var(--border);
    border-radius: 13px;
}

.photo-gallery-empty h3 {
    margin: 0;
    color: var(--text);
    font-size: 16px;
    font-weight: 800;
}

.photo-gallery-empty p {
    margin: 6px 0 0;
    color: var(--text-soft);
    font-size: 12px;
    line-height: 1.7;
}

.photo-gallery-modal-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 300px;
    padding: 12px;
    background: #080d1c;
    border: 0;
    border-radius: 15px;
}

.photo-gallery-modal-content img {
    display: block;
    max-width: 100%;
    max-height: 82vh;
    object-fit: contain;
    border-radius: 8px;
}

.photo-gallery-modal-close {
    position: absolute;
    z-index: 5;
    top: 18px;
    right: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    color: #ffffff;
    background: rgba(5, 19, 68, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.photo-gallery-modal-close:hover {
    background: var(--red);
}

.photo-gallery-modal-close i {
    font-size: 14px;
}

@media (max-width: 991.98px) {
    .photo-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .photo-gallery-item,
    .photo-gallery-item:nth-child(5n + 1) {
        height: 300px;
        grid-row: auto;
    }
}

@media (max-width: 767.98px) {
    .photo-gallery-page {
        padding: 60px 0 70px;
    }

    .photo-gallery-heading h2 {
        font-size: 30px;
    }

    .photo-gallery-item,
    .photo-gallery-item:nth-child(5n + 1) {
        height: 250px;
    }
}

@media (max-width: 575.98px) {
    .photo-gallery-page {
        padding: 50px 0 60px;
    }

    .photo-gallery-heading {
        margin-bottom: 27px;
    }

    .photo-gallery-heading h2 {
        font-size: 27px;
    }

    .photo-gallery-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .photo-gallery-item,
    .photo-gallery-item:nth-child(5n + 1) {
        height: 260px;
    }
}



.video-gallery-page {
    position: relative;
    padding: 80px 0 95px;
    background: #ffffff;
}

.video-gallery-heading {
    max-width: 720px;
    margin-bottom: 36px;
}

.video-gallery-heading h2 {
    margin: 0;
    color: var(--text);
    font-size: 36px;
    line-height: 1.2;
    font-weight: 550;
    letter-spacing: -1.3px;
}

.video-gallery-heading h2 strong {
    display: block;
    color: var(--navy);
    font-weight: 800;
}

.video-gallery-heading > p {
    max-width: 620px;
    margin: 13px 0 0;
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.8;
}

.video-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.video-gallery-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 9px 30px rgba(8, 28, 104, 0.05);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.video-gallery-card:hover {
    border-color: rgba(8, 28, 104, 0.13);
    box-shadow: 0 18px 45px rgba(8, 28, 104, 0.09);
    transform: translateY(-4px);
}

.video-gallery-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #080d1c;
}

.video-gallery-media iframe,
.video-gallery-media video {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
}

.video-gallery-external {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 11px;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 70% 25%,
            rgba(237, 21, 36, 0.17),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--navy-dark),
            var(--navy)
        );
}

.video-gallery-external:hover {
    color: #ffffff;
}

.video-gallery-external > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    color: #ffffff;
    background: var(--red);
    border-radius: 50%;
    box-shadow: 0 10px 28px rgba(237, 21, 36, 0.25);
    transition: transform 0.3s ease;
}

.video-gallery-external:hover > span {
    transform: scale(1.08);
}

.video-gallery-external i {
    margin-left: 3px;
    font-size: 18px;
}

.video-gallery-external strong {
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
}

.video-gallery-content {
    position: relative;
    padding: 23px 24px 25px;
}

.video-gallery-number {
    margin-bottom: 8px;
    color: var(--red);
    font-size: 10px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 1px;
}

.video-gallery-content h2 {
    margin: 0;
    color: var(--text);
    font-size: 17px;
    line-height: 1.45;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.video-gallery-content p {
    margin: 10px 0 0;
    color: var(--text-soft);
    font-size: 11px;
    line-height: 1.8;
}

.video-gallery-empty {
    padding: 27px;
    background: var(--surface);
    border: 1px dashed var(--border);
    border-radius: 13px;
}

.video-gallery-empty h3 {
    margin: 0;
    color: var(--text);
    font-size: 16px;
    font-weight: 800;
}

.video-gallery-empty p {
    margin: 6px 0 0;
    color: var(--text-soft);
    font-size: 12px;
    line-height: 1.7;
}

@media (max-width: 767.98px) {
    .video-gallery-page {
        padding: 60px 0 70px;
    }

    .video-gallery-heading h2 {
        font-size: 30px;
    }

    .video-gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .video-gallery-page {
        padding: 50px 0 60px;
    }

    .video-gallery-heading {
        margin-bottom: 28px;
    }

    .video-gallery-heading h2 {
        font-size: 27px;
    }

    .video-gallery-heading > p {
        font-size: 12px;
    }

    .video-gallery-content {
        padding: 20px;
    }

    .video-gallery-content h2 {
        font-size: 16px;
    }

    .video-gallery-content p {
        font-size: 11px;
    }
}



.blog-detail-page {
    padding: 70px 0 95px;
    background: #ffffff;
}

.blog-detail-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 12px 40px rgba(8, 28, 104, 0.055);
}

.blog-detail-image {
    height: 450px;
    overflow: hidden;
    background: #eef1f6;
}

.blog-detail-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail-body {
    padding: 35px 38px 40px;
}

.blog-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 17px;
    margin-bottom: 25px;
    padding-bottom: 19px;
    border-bottom: 1px solid var(--border);
}

.blog-detail-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #8e95a3;
    font-size: 10px;
    line-height: 1.4;
}

.blog-detail-meta i {
    color: var(--red);
    font-size: 10px;
}

.blog-detail-content {
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.95;
}

.blog-detail-content p {
    margin: 0 0 19px;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
}

.blog-detail-content h2,
.blog-detail-content h3,
.blog-detail-content h4 {
    color: var(--text);
    font-weight: 800;
}

.blog-detail-content h2 {
    margin: 34px 0 15px;
    font-size: 25px;
}

.blog-detail-content h3 {
    margin: 30px 0 14px;
    font-size: 21px;
}

.blog-detail-content h4 {
    margin: 27px 0 12px;
    font-size: 17px;
}

.blog-detail-content ul,
.blog-detail-content ol {
    margin: 19px 0 24px;
    padding-left: 23px;
}

.blog-detail-content li {
    margin-bottom: 10px;
    color: var(--text-soft);
    font-size: 12px;
    line-height: 1.8;
}

.blog-detail-content strong,
.blog-detail-content b {
    color: var(--text);
    font-weight: 750;
}

.blog-detail-content a {
    color: var(--navy);
    text-decoration: underline;
}

.blog-detail-content img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 25px auto;
    border-radius: 12px;
}

.blog-detail-content blockquote {
    margin: 25px 0;
    padding: 20px 23px;
    color: var(--text);
    background: var(--surface);
    border-left: 3px solid var(--red);
    border-radius: 0 10px 10px 0;
    font-size: 13px;
    line-height: 1.8;
}

.blog-detail-sidebar {
    display: grid;
    gap: 20px;
}

.blog-sidebar-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 16px;
}

.blog-sidebar-head {
    padding: 21px 22px 17px;
    border-bottom: 1px solid var(--border);
}

.blog-sidebar-head > span {
    display: block;
    margin-bottom: 3px;
    color: var(--red);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.blog-sidebar-head h3 {
    margin: 0;
    color: var(--text);
    font-size: 18px;
    font-weight: 800;
}

.blog-sidebar-list {
    padding: 8px 15px;
}

.blog-sidebar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 0;
    color: inherit;
    border-bottom: 1px solid #edf0f5;
}

.blog-sidebar-item:last-child {
    border-bottom: 0;
}

.blog-sidebar-image {
    flex: 0 0 72px;
    width: 72px;
    height: 62px;
    overflow: hidden;
    background: #eef1f6;
    border-radius: 8px;
}

.blog-sidebar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.blog-sidebar-item:hover .blog-sidebar-image img {
    transform: scale(1.05);
}

.blog-sidebar-content {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.blog-sidebar-content small {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
    color: #989fab;
    font-size: 9px;
}

.blog-sidebar-content small i {
    color: var(--red);
}

.blog-sidebar-content strong {
    color: var(--text);
    font-size: 11px;
    line-height: 1.55;
    font-weight: 750;
    transition: color 0.25s ease;
}

.blog-sidebar-item:hover strong {
    color: var(--navy);
}

.blog-sidebar-all {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 47px;
    margin: 0 15px 15px;
    padding: 0 14px;
    color: var(--navy);
    background: var(--surface);
    border-radius: 9px;
    font-size: 10px;
    font-weight: 800;
}

.blog-sidebar-all i {
    color: var(--red);
    font-size: 9px;
}

.blog-sidebar-all:hover {
    color: #ffffff;
    background: var(--navy);
}

.blog-sidebar-all:hover i {
    color: #ffffff;
}

.blog-sidebar-contact {
    position: relative;
    overflow: hidden;
    padding: 27px 24px;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 105% 105%,
            rgba(237, 21, 36, 0.2),
            transparent 38%
        ),
        linear-gradient(
            145deg,
            var(--navy-dark),
            var(--navy)
        );
    border-radius: 16px;
}

.blog-sidebar-contact > * {
    position: relative;
    z-index: 2;
}

.blog-sidebar-contact > span {
    display: block;
    margin-bottom: 7px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.1px;
}

.blog-sidebar-contact h3 {
    margin: 0;
    color: #ffffff;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 750;
}

.blog-sidebar-contact p {
    margin: 13px 0 20px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 11px;
    line-height: 1.75;
}

@media (min-width: 992px) {
    .blog-detail-sidebar {
        position: sticky;
        top: 105px;
    }
}

@media (max-width: 767.98px) {
    .blog-detail-page {
        padding: 60px 0 70px;
    }

    .blog-detail-image {
        height: 340px;
    }

    .blog-detail-body {
        padding: 28px;
    }
}

@media (max-width: 575.98px) {
    .blog-detail-page {
        padding: 50px 0 60px;
    }

    .blog-detail-image {
        height: 245px;
    }

    .blog-detail-body {
        padding: 22px 19px;
    }

    .blog-detail-content {
        font-size: 12px;
    }

    .blog-detail-content h2 {
        font-size: 22px;
    }

    .blog-detail-content h3 {
        font-size: 19px;
    }

    .blog-detail-content h4 {
        font-size: 16px;
    }

    .blog-sidebar-contact {
        padding: 23px 20px;
    }
}

.blog-list-page {
    position: relative;
    padding: 80px 0 95px;
    overflow: hidden;
    background: #ffffff;
}

.blog-list-page::before {
    position: absolute;
    content: "";
    width: 480px;
    height: 480px;
    right: -330px;
    top: 120px;
    border: 1px solid rgba(8, 28, 104, 0.045);
    border-radius: 50%;
    pointer-events: none;
}

.blog-list-heading {
    position: relative;
    z-index: 2;
    max-width: 740px;
    margin-bottom: 38px;
}

.blog-list-heading h2 {
    margin: 0;
    color: var(--text);
    font-size: 36px;
    line-height: 1.2;
    font-weight: 550;
    letter-spacing: -1.3px;
}

.blog-list-heading h2 strong {
    display: block;
    color: var(--navy);
    font-weight: 800;
}

.blog-list-heading > p {
    max-width: 650px;
    margin: 14px 0 0;
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.8;
}

.blog-list-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.blog-list-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 8px 28px rgba(8, 28, 104, 0.045);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.blog-list-card:hover {
    border-color: rgba(8, 28, 104, 0.14);
    box-shadow: 0 20px 48px rgba(8, 28, 104, 0.10);
    transform: translateY(-5px);
}

.blog-list-image {
    position: relative;
    display: block;
    height: 235px;
    overflow: hidden;
    background: #eef1f6;
}

.blog-list-image::after {
    position: absolute;
    content: "";
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(5, 19, 68, 0) 48%,
            rgba(5, 19, 68, 0.34) 100%
        );
    pointer-events: none;
}

.blog-list-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-list-card:hover .blog-list-image img {
    transform: scale(1.045);
}

.blog-list-image-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: rgba(255, 255, 255, 0.86);
    background:
        radial-gradient(
            circle at 75% 20%,
            rgba(237, 21, 36, 0.14),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--navy-dark),
            var(--navy)
        );
}

.blog-list-image-empty i {
    font-size: 38px;
}

.blog-list-category {
    position: absolute;
    z-index: 3;
    left: 15px;
    bottom: 15px;
    display: inline-flex;
    align-items: center;
    min-height: 31px;
    padding: 0 11px;
    color: #ffffff;
    background: var(--red);
    border-radius: 8px;
    box-shadow: 0 7px 20px rgba(237, 21, 36, 0.20);
    font-size: 10px;
    line-height: 1.3;
    font-weight: 800;
}

.blog-list-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px;
}

.blog-list-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-bottom: 11px;
}

.blog-list-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #969daa;
    font-size: 10px;
    line-height: 1.4;
    font-weight: 600;
}

.blog-list-meta i {
    color: var(--red);
    font-size: 10px;
}

.blog-list-body h2 {
    margin: 0;
    color: var(--text);
    font-size: 17px;
    line-height: 1.45;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.blog-list-body h2 a {
    color: inherit;
}

.blog-list-body h2 a:hover {
    color: var(--navy);
}

.blog-list-body > p {
    margin: 11px 0 0;
    color: var(--text-soft);
    font-size: 11px;
    line-height: 1.8;
}

.blog-list-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin-top: auto;
    padding-top: 19px;
    color: var(--navy);
    font-size: 11px;
    line-height: 1.4;
    font-weight: 800;
}

.blog-list-link i {
    color: var(--red);
    font-size: 10px;
    transition: transform 0.3s ease;
}

.blog-list-link:hover {
    color: var(--red);
}

.blog-list-link:hover i {
    transform: translateX(4px);
}

.blog-list-empty {
    position: relative;
    z-index: 2;
    padding: 27px;
    background: var(--surface);
    border: 1px dashed var(--border);
    border-radius: 13px;
}

.blog-list-empty h3 {
    margin: 0;
    color: var(--text);
    font-size: 16px;
    font-weight: 800;
}

.blog-list-empty p {
    margin: 6px 0 0;
    color: var(--text-soft);
    font-size: 12px;
    line-height: 1.7;
}

@media (max-width: 1199.98px) {
    .blog-list-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .blog-list-page {
        padding: 60px 0 70px;
    }

    .blog-list-heading h2 {
        font-size: 30px;
    }

    .blog-list-heading > p {
        font-size: 12px;
    }

    .blog-list-image {
        height: 245px;
    }
}

@media (max-width: 575.98px) {
    .blog-list-page {
        padding: 50px 0 60px;
    }

    .blog-list-heading {
        margin-bottom: 28px;
    }

    .blog-list-heading h2 {
        font-size: 27px;
    }

    .blog-list-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .blog-list-image {
        height: 220px;
    }

    .blog-list-body {
        padding: 19px;
    }

    .blog-list-body h2 {
        font-size: 16px;
    }

    .blog-list-body > p {
        font-size: 11px;
    }

    .blog-list-meta span {
        font-size: 10px;
    }

    .blog-list-link {
        font-size: 11px;
    }
}


.contact-page {
    position: relative;
    padding: 80px 0 95px;
    overflow: hidden;
    background: #ffffff;
}

.contact-page::before {
    position: absolute;
    content: "";
    width: 500px;
    height: 500px;
    right: -350px;
    top: 190px;
    border: 1px solid rgba(8, 28, 104, 0.04);
    border-radius: 50%;
    pointer-events: none;
}

.contact-page-heading {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin-bottom: 35px;
}

.contact-page-heading h2 {
    margin: 0;
    color: var(--text);
    font-size: 36px;
    line-height: 1.2;
    font-weight: 550;
    letter-spacing: -1.3px;
}

.contact-page-heading h2 strong {
    display: block;
    color: var(--navy);
    font-weight: 800;
}

.contact-page-heading > p {
    max-width: 650px;
    margin: 14px 0 0;
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.85;
}

.contact-info-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 45px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    min-width: 0;
    padding: 20px;
    color: inherit;
    background: var(--surface);
    border: 1px solid transparent;
    border-radius: 14px;
    transition: var(--transition);
}

a.contact-info-card:hover {
    color: inherit;
    background: #ffffff;
    border-color: var(--border);
    box-shadow: var(--shadow-sm);
    transform: translateY(-3px);
}

.contact-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    color: var(--navy);
    background: #ffffff;
    border-radius: 10px;
}

.contact-info-icon i {
    font-size: 14px;
}

.contact-info-card > div {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.contact-info-card small {
    margin-bottom: 4px;
    color: #9299a7;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.contact-info-card strong {
    color: var(--text);
    font-size: 12px;
    line-height: 1.6;
    font-weight: 800;
    word-break: break-word;
}

.contact-info-card > div > span {
    margin-top: 3px;
    color: var(--text-soft);
    font-size: 11px;
}

.contact-main {
    position: relative;
    z-index: 2;
}

.contact-form-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 12px 40px rgba(8, 28, 104, 0.055);
}

.contact-form-head {
    padding: 28px 30px 24px;
    background: linear-gradient(
        180deg,
        #ffffff,
        #fafbfe
    );
    border-bottom: 1px solid var(--border);
}

.contact-form-head > span {
    display: block;
    margin-bottom: 4px;
    color: var(--red);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.contact-form-head h2 {
    margin: 0;
    color: var(--text);
    font-size: 24px;
    line-height: 1.35;
    font-weight: 800;
}

.contact-form-head p {
    margin: 7px 0 0;
    color: var(--text-soft);
    font-size: 11px;
    line-height: 1.7;
}

.contact-form-body {
    padding: 30px;
}

.contact-field label {
    display: block;
    margin-bottom: 7px;
    color: #343b4b;
    font-size: 11px;
    font-weight: 700;
}

.contact-field .form-control {
    min-height: 49px;
    padding: 0 14px;
    color: var(--text);
    background: #fafbfc;
    border: 1px solid #e1e5ed;
    border-radius: 10px;
    box-shadow: none;
    font-size: 12px;
    transition: var(--transition);
}

.contact-field textarea.form-control {
    min-height: 145px;
    padding-top: 13px;
    padding-bottom: 13px;
    resize: vertical;
}

.contact-field .form-control::placeholder {
    color: #a1a8b5;
}

.contact-field .form-control:focus {
    background: #ffffff;
    border-color: rgba(8, 28, 104, 0.36);
    box-shadow: 0 0 0 3px rgba(8, 28, 104, 0.055);
}

.contact-consent {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 3px;
    padding: 14px 15px;
    background: var(--surface);
    border-radius: 10px;
}

.contact-consent input[type="checkbox"] {
    flex: 0 0 auto;
    width: 17px;
    height: 17px;
    margin-top: 2px;
    accent-color: var(--navy);
}

.contact-consent label {
    margin: 0;
    color: var(--text-soft);
    font-size: 10px;
    line-height: 1.7;
    cursor: pointer;
}

.contact-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 22px;
}

.contact-form-footer > span {
    max-width: 430px;
    color: #9299a7;
    font-size: 10px;
    line-height: 1.6;
}

.contact-submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 50px;
    padding: 0 21px;
    color: #ffffff;
    background: var(--navy);
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(8, 28, 104, 0.15);
    font-size: 11px;
    font-weight: 800;
}

.contact-submit-button:hover {
    color: #ffffff;
    background: var(--red);
    transform: translateY(-2px);
}

.contact-submit-button i {
    font-size: 10px;
}

.contact-alert {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin: 22px 30px 0;
    padding: 14px 16px;
    border-radius: 10px;
}

.contact-alert > i {
    margin-top: 2px;
    font-size: 15px;
}

.contact-alert > div {
    display: flex;
    flex-direction: column;
}

.contact-alert strong {
    font-size: 12px;
    font-weight: 800;
}

.contact-alert span {
    margin-top: 2px;
    font-size: 10px;
    line-height: 1.6;
}

.contact-alert-success {
    color: #17653a;
    background: #edf9f2;
    border: 1px solid #ceeeda;
}

.contact-alert-error {
    color: #a52029;
    background: #fff1f2;
    border: 1px solid #f3cdd0;
}

.contact-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.contact-side {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 105% 10%,
            rgba(237, 21, 36, 0.18),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            var(--navy-dark),
            var(--navy)
        );
    border-radius: 18px;
}

.contact-side::before {
    position: absolute;
    content: "";
    width: 280px;
    height: 280px;
    right: -160px;
    bottom: -170px;
    border: 45px solid rgba(255, 255, 255, 0.035);
    border-radius: 50%;
}

.contact-side-content {
    position: relative;
    z-index: 2;
    padding: 40px 34px;
}

.contact-side-content > span {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.3px;
}

.contact-side-content h2 {
    margin: 0;
    color: #ffffff;
    font-size: 28px;
    line-height: 1.35;
    font-weight: 750;
    letter-spacing: -0.7px;
}

.contact-side-content > p {
    margin: 17px 0 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 12px;
    line-height: 1.85;
}

.contact-side-list {
    display: grid;
    gap: 11px;
    margin-top: 28px;
}

.contact-side-list > div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 11px;
    font-weight: 650;
}

.contact-side-list i {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    color: #ffffff;
    background: var(--red);
    border-radius: 50%;
    font-size: 9px;
}

.contact-map {
    position: relative;
    height: 420px;
    margin-top: 45px;
    overflow: hidden;
    background: #eef1f6;
    border: 1px solid var(--border);
    border-radius: 18px;
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 1199.98px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .contact-page {
        padding: 70px 0 80px;
    }

    .contact-side {
        min-height: auto;
    }
}

@media (max-width: 767.98px) {
    .contact-page {
        padding: 60px 0 70px;
    }

    .contact-page-heading h2 {
        font-size: 30px;
    }

    .contact-form-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .contact-map {
        height: 350px;
    }
}

@media (max-width: 575.98px) {
    .contact-page {
        padding: 50px 0 60px;
    }

    .contact-page-heading h2 {
        font-size: 27px;
    }

    .contact-page-heading > p {
        font-size: 12px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-card {
        min-height: auto;
    }

    .contact-form-head,
    .contact-form-body {
        padding-left: 20px;
        padding-right: 20px;
    }

    .contact-form-head h2 {
        font-size: 21px;
    }

    .contact-alert {
        margin-left: 20px;
        margin-right: 20px;
    }

    .contact-submit-button {
        width: 100%;
    }

    .contact-side-content {
        padding: 30px 23px;
    }

    .contact-side-content h2 {
        font-size: 24px;
    }

    .contact-map {
        height: 300px;
    }
}


.offer-page {
    position: relative;
    padding: 80px 0 95px;
    overflow: hidden;
    background: #ffffff;
}

.offer-page::before {
    position: absolute;
    content: "";
    width: 500px;
    height: 500px;
    right: -360px;
    top: 190px;
    border: 1px solid rgba(8, 28, 104, 0.04);
    border-radius: 50%;
    pointer-events: none;
}

.offer-heading {
    position: relative;
    z-index: 2;
    max-width: 750px;
    margin-bottom: 37px;
}

.offer-heading h2 {
    margin: 0;
    color: var(--text);
    font-size: 36px;
    line-height: 1.2;
    font-weight: 550;
    letter-spacing: -1.3px;
}

.offer-heading h2 strong {
    display: block;
    color: var(--navy);
    font-weight: 800;
}

.offer-heading > p {
    max-width: 660px;
    margin: 14px 0 0;
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.85;
}

.offer-form-card {
    position: relative;
    z-index: 2;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 12px 42px rgba(8, 28, 104, 0.055);
}

.offer-form-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 27px 30px;
    background:
        linear-gradient(
            180deg,
            #ffffff,
            #fafbfe
        );
    border-bottom: 1px solid var(--border);
}

.offer-form-head > div > span {
    display: block;
    color: var(--red);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.offer-form-head h2 {
    margin: 4px 0 0;
    color: var(--text);
    font-size: 23px;
    line-height: 1.35;
    font-weight: 800;
}

.offer-form-head > small {
    color: #969daa;
    font-size: 10px;
    font-weight: 600;
}

.offer-form-section {
    padding: 30px;
    border-bottom: 1px solid var(--border);
}

.offer-form-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.offer-form-section-title > span {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    color: var(--navy);
    background: var(--navy-soft);
    border-radius: 9px;
    font-size: 10px;
    font-weight: 800;
}

.offer-form-section-title > div {
    display: flex;
    flex-direction: column;
}

.offer-form-section-title strong {
    color: var(--text);
    font-size: 13px;
    font-weight: 800;
}

.offer-form-section-title small {
    margin-top: 2px;
    color: #949ba8;
    font-size: 10px;
    line-height: 1.5;
}

.offer-field {
    height: 100%;
}

.offer-field label {
    display: block;
    margin-bottom: 7px;
    color: #343b4b;
    font-size: 11px;
    line-height: 1.4;
    font-weight: 700;
}

.offer-field .form-control,
.offer-field .form-select {
    min-height: 49px;
    padding: 0 14px;
    color: var(--text);
    background: #fafbfc;
    border: 1px solid #e1e5ed;
    border-radius: 10px;
    box-shadow: none;
    font-size: 12px;
    transition: var(--transition);
}

.offer-field textarea.form-control {
    min-height: 110px;
    padding-top: 13px;
    padding-bottom: 13px;
    resize: vertical;
}

.offer-field .form-control::placeholder {
    color: #9da4b0;
}

.offer-field .form-control:focus,
.offer-field .form-select:focus {
    background: #ffffff;
    border-color: rgba(8, 28, 104, 0.36);
    box-shadow: 0 0 0 3px rgba(8, 28, 104, 0.055);
}

.offer-consent {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 15px;
    background: var(--surface);
    border-radius: 10px;
}

.offer-consent input[type="checkbox"] {
    flex: 0 0 auto;
    width: 17px;
    height: 17px;
    margin-top: 2px;
    accent-color: var(--navy);
}

.offer-consent label {
    margin: 0;
    color: var(--text-soft);
    font-size: 10px;
    line-height: 1.7;
    cursor: pointer;
}

.offer-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 23px 30px;
    background: #fafbfe;
}

.offer-form-footer > span {
    max-width: 470px;
    color: #9198a6;
    font-size: 10px;
    line-height: 1.65;
}

.offer-submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 51px;
    padding: 0 22px;
    color: #ffffff;
    background:
        linear-gradient(
            120deg,
            var(--navy),
            #17349b,
            var(--red)
        );
    background-size: 200% 200%;
    border-radius: 10px;
    box-shadow: 0 12px 28px rgba(8, 28, 104, 0.17);
    font-size: 11px;
    font-weight: 800;
    animation: offerButtonGradient 5s ease infinite;
}

.offer-submit-button:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.offer-submit-button i {
    font-size: 10px;
}

.offer-alert {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin: 22px 30px 0;
    padding: 14px 16px;
    border-radius: 10px;
}

.offer-alert > i {
    margin-top: 2px;
    font-size: 15px;
}

.offer-alert > div {
    display: flex;
    flex-direction: column;
}

.offer-alert strong {
    font-size: 12px;
    font-weight: 800;
}

.offer-alert span {
    margin-top: 2px;
    font-size: 10px;
    line-height: 1.6;
}

.offer-alert-success {
    color: #17653a;
    background: #edf9f2;
    border: 1px solid #ceeeda;
}

.offer-alert-error {
    color: #a52029;
    background: #fff1f2;
    border: 1px solid #f3cdd0;
}

.offer-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.offer-side {
    position: sticky;
    top: 105px;
    overflow: hidden;
    padding: 34px 28px;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 110% 0%,
            rgba(237, 21, 36, 0.18),
            transparent 31%
        ),
        linear-gradient(
            145deg,
            var(--navy-dark),
            var(--navy)
        );
    border-radius: 18px;
    box-shadow: var(--shadow-md);
}

.offer-side::after {
    position: absolute;
    content: "";
    width: 220px;
    height: 220px;
    right: -145px;
    bottom: -140px;
    border: 38px solid rgba(255, 255, 255, 0.035);
    border-radius: 50%;
}

.offer-side > * {
    position: relative;
    z-index: 2;
}

.offer-side-label {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.offer-side > h2 {
    margin: 0;
    color: #ffffff;
    font-size: 26px;
    line-height: 1.35;
    font-weight: 750;
    letter-spacing: -0.6px;
}

.offer-side > p {
    margin: 15px 0 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 11px;
    line-height: 1.8;
}

.offer-side-items {
    display: grid;
    gap: 12px;
    margin-top: 27px;
}

.offer-side-items > div {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 13px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 11px;
}

.offer-side-items > div > span {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    color: #ffffff;
    background: var(--red);
    border-radius: 9px;
}

.offer-side-items > div > span i {
    font-size: 12px;
}

.offer-side-items > div > div {
    display: flex;
    flex-direction: column;
}

.offer-side-items strong {
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
}

.offer-side-items small {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 9px;
    line-height: 1.55;
}

.offer-side-contact {
    margin-top: 25px;
    padding-top: 19px;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.offer-side-contact > span {
    display: block;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 10px;
}

.offer-side-contact > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
}

.offer-side-contact > a i {
    color: #ff6973;
    font-size: 10px;
    transition: transform 0.3s ease;
}

.offer-side-contact > a:hover i {
    transform: translateX(4px);
}

@keyframes offerButtonGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@media (max-width: 991.98px) {
    .offer-page {
        padding: 70px 0 80px;
    }

    .offer-side {
        position: relative;
        top: auto;
    }
}

@media (max-width: 767.98px) {
    .offer-page {
        padding: 60px 0 70px;
    }

    .offer-heading h2 {
        font-size: 30px;
    }

    .offer-form-footer {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 575.98px) {
    .offer-page {
        padding: 50px 0 60px;
    }

    .offer-heading h2 {
        font-size: 27px;
    }

    .offer-heading > p {
        font-size: 12px;
    }

    .offer-form-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
        padding: 23px 20px;
    }

    .offer-form-head h2 {
        font-size: 20px;
    }

    .offer-form-section {
        padding: 24px 20px;
    }

    .offer-form-footer {
        padding: 22px 20px;
    }

    .offer-submit-button {
        width: 100%;
    }

    .offer-alert {
        margin-left: 20px;
        margin-right: 20px;
    }

    .offer-side {
        padding: 28px 22px;
    }

    .offer-side > h2 {
        font-size: 23px;
    }
}



.policy-page {
    position: relative;
    padding: 75px 0 95px;
    overflow: hidden;
    background: #ffffff;
}

.policy-page::before {
    position: absolute;
    content: "";
    width: 500px;
    height: 500px;
    right: -350px;
    top: 150px;
    border: 1px solid rgba(8, 28, 104, 0.04);
    border-radius: 50%;
    pointer-events: none;
}

.policy-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr);
    align-items: start;
    gap: 30px;
}

.policy-navigation {
    position: sticky;
    top: 105px;
    overflow: hidden;
    padding: 10px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(8, 28, 104, 0.045);
}

.policy-navigation-label {
    display: block;
    padding: 13px 13px 11px;
    color: #969daa;
    font-size: 10px;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.policy-navigation a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    min-height: 49px;
    padding: 10px 13px;
    color: #515a6d;
    border-radius: 9px;
    font-size: 11px;
    line-height: 1.5;
    font-weight: 700;
    transition:
        color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}

.policy-navigation a + a {
    margin-top: 3px;
}

.policy-navigation a i {
    flex: 0 0 auto;
    color: #a3aab7;
    font-size: 9px;
    transition: transform 0.25s ease;
}

.policy-navigation a:hover {
    color: var(--navy);
    background: var(--surface);
}

.policy-navigation a:hover i {
    color: var(--red);
    transform: translateX(3px);
}

.policy-navigation a.active {
    color: #ffffff;
    background:
        linear-gradient(
            120deg,
            var(--navy-dark),
            var(--navy)
        );
    box-shadow: 0 8px 20px rgba(8, 28, 104, 0.14);
}

.policy-navigation a.active i {
    color: #ffffff;
}

.policy-content-card {
    min-width: 0;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 17px;
    box-shadow: 0 10px 38px rgba(8, 28, 104, 0.045);
}

.policy-content-head {
    position: relative;
    padding: 27px 33px 24px;
    overflow: hidden;
    background:
        linear-gradient(
            180deg,
            #ffffff,
            #fafbfe
        );
    border-bottom: 1px solid var(--border);
}

.policy-content-head::after {
    position: absolute;
    content: "";
    width: 120px;
    height: 120px;
    right: -70px;
    top: -70px;
    border: 20px solid rgba(8, 28, 104, 0.025);
    border-radius: 50%;
}

.policy-content-head > span {
    position: relative;
    z-index: 2;
    display: block;
    margin-bottom: 4px;
    color: var(--red);
    font-size: 10px;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.policy-content-head h2 {
    position: relative;
    z-index: 2;
    margin: 0;
    color: var(--text);
    font-size: 25px;
    line-height: 1.35;
    font-weight: 800;
    letter-spacing: -0.6px;
}

.policy-richtext {
    padding: 34px 35px 40px;
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.95;
}

.policy-richtext p {
    margin: 0 0 18px;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
}

.policy-richtext p:last-child {
    margin-bottom: 0;
}

.policy-richtext h1,
.policy-richtext h2,
.policy-richtext h3,
.policy-richtext h4,
.policy-richtext h5,
.policy-richtext h6 {
    color: var(--text);
    font-weight: 800;
}

.policy-richtext h1 {
    margin: 0 0 20px;
    font-size: 27px;
    line-height: 1.35;
}

.policy-richtext h2 {
    position: relative;
    margin: 34px 0 15px;
    padding-left: 15px;
    font-size: 21px;
    line-height: 1.4;
}

.policy-richtext h2::before {
    position: absolute;
    content: "";
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 3px;
    background: var(--red);
    border-radius: 10px;
}

.policy-richtext h3 {
    margin: 28px 0 13px;
    font-size: 18px;
    line-height: 1.45;
}

.policy-richtext h4 {
    margin: 25px 0 12px;
    font-size: 16px;
    line-height: 1.5;
}

.policy-richtext h5,
.policy-richtext h6 {
    margin: 22px 0 10px;
    font-size: 14px;
    line-height: 1.5;
}

.policy-richtext strong,
.policy-richtext b {
    color: var(--text);
    font-weight: 750;
}

.policy-richtext ul,
.policy-richtext ol {
    margin: 18px 0 23px;
    padding-left: 23px;
}

.policy-richtext li {
    margin-bottom: 9px;
    color: var(--text-soft);
    font-size: 12px;
    line-height: 1.85;
}

.policy-richtext li:last-child {
    margin-bottom: 0;
}

.policy-richtext a {
    color: var(--navy);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.policy-richtext a:hover {
    color: var(--red);
}

.policy-richtext blockquote {
    position: relative;
    margin: 25px 0;
    padding: 19px 21px;
    color: var(--text);
    background: var(--surface);
    border-left: 3px solid var(--red);
    border-radius: 0 10px 10px 0;
    font-size: 12px;
    line-height: 1.8;
}

.policy-richtext table {
    width: 100%;
    margin: 25px 0;
    overflow: hidden;
    border-collapse: collapse;
    border: 1px solid var(--border);
    border-radius: 10px;
}

.policy-richtext th,
.policy-richtext td {
    padding: 12px 14px;
    color: var(--text-soft);
    border: 1px solid var(--border);
    font-size: 11px;
    line-height: 1.6;
    text-align: left;
    vertical-align: top;
}

.policy-richtext th {
    color: var(--text);
    background: var(--surface);
    font-weight: 800;
}

.policy-richtext hr {
    margin: 30px 0;
    border: 0;
    border-top: 1px solid var(--border);
    opacity: 1;
}

@media (max-width: 991.98px) {
    .policy-page {
        padding: 65px 0 80px;
    }

    .policy-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .policy-navigation {
        position: relative;
        top: auto;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 5px;
    }

    .policy-navigation-label {
        grid-column: 1 / -1;
    }

    .policy-navigation a + a {
        margin-top: 0;
    }
}

@media (max-width: 767.98px) {
    .policy-page {
        padding: 55px 0 70px;
    }

    .policy-content-head {
        padding: 24px;
    }

    .policy-content-head h2 {
        font-size: 22px;
    }

    .policy-richtext {
        padding: 27px 25px 32px;
        font-size: 12px;
    }

    .policy-richtext h1 {
        font-size: 24px;
    }

    .policy-richtext h2 {
        font-size: 20px;
    }

    .policy-richtext h3 {
        font-size: 17px;
    }
}

@media (max-width: 575.98px) {
    .policy-page {
        padding: 45px 0 60px;
    }

    .policy-navigation {
        grid-template-columns: 1fr;
    }

    .policy-navigation-label {
        grid-column: auto;
    }

    .policy-navigation a {
        font-size: 11px;
    }

    .policy-content-head {
        padding: 21px 19px;
    }

    .policy-content-head h2 {
        font-size: 20px;
    }

    .policy-richtext {
        padding: 23px 19px 28px;
        font-size: 12px;
    }

    .policy-richtext h1 {
        font-size: 22px;
    }

    .policy-richtext h2 {
        margin-top: 29px;
        font-size: 19px;
    }

    .policy-richtext h3 {
        font-size: 17px;
    }

    .policy-richtext h4 {
        font-size: 15px;
    }

    .policy-richtext li {
        font-size: 11px;
    }

    .policy-richtext table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}