/* =========================================================
   ROOT
========================================================= */

:root {

    --primary: #e0240c;

    --primary-dark: #e0240c;

    --secondary: #00a870;

    --dark: #0b1728;

    --text: #354052;

    --muted: #748091;

    --light: #f5f8fc;

    --white: #ffffff;

    --border: #e4eaf1;

    --container-radius: 24px;

    --shadow:
        0 20px 60px rgba(14, 31, 53, 0.08);

}


/* =========================================================
   RESET
========================================================= */

* {

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    margin: 0;

    background: var(--white);

    color: var(--text);

    font-family:
        Inter,
        "Segoe UI",
        Arial,
        Helvetica,
        sans-serif;

    font-size: 16px;

    line-height: 1.7;

    overflow-x: hidden;

}


html[lang="ar"] body {

    font-family:
        Tahoma,
        Arial,
        sans-serif;

}


a {

    color: inherit;

    text-decoration: none;

}


img {

    max-width: 100%;

    height: auto;

}


button,
input,
textarea,
select {

    font: inherit;

}


/* =========================================================
   TOP BAR
========================================================= */

.topbar {

    background: var(--dark);

    color: rgba(255, 255, 255, 0.82);

    font-size: 13px;

}


.topbar-wrapper {

    display: flex;

    align-items: center;

    justify-content: space-between;

    min-height: 42px;

    gap: 20px;

}


.topbar-contact {

    display: flex;

    align-items: center;

    gap: 14px;

}


.topbar-contact a {

    transition: color 0.2s ease;

}


.topbar-contact a:hover {

    color: var(--white);

}


.topbar-separator {

    width: 1px;

    height: 13px;

    background: rgba(255, 255, 255, 0.2);

}


.topbar-languages {

    position: relative;

}


.language-toggle {

    border: 0;

    background: transparent;

    color: var(--white);

    padding: 6px 0;

}


.language-arrow {

    margin-inline-start: 4px;

}


.language-menu {

    position: absolute;

    inset-inline-end: 0;

    top: calc(100% + 8px);

    z-index: 1100;

    min-width: 155px;

    background: var(--white);

    border-radius: 12px;

    box-shadow: var(--shadow);

    padding: 8px;

    opacity: 0;

    visibility: hidden;

    transform: translateY(-5px);

    transition: all 0.2s ease;

}


.topbar-languages.open .language-menu {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}


.language-menu a {

    display: block;

    padding: 9px 12px;

    border-radius: 8px;

    color: var(--dark);

}


.language-menu a:hover {

    background: var(--light);

}


/* =========================================================
   KEYWORD BAR
========================================================= */

.keyword-bar {

    background: #edf7ff;

    border-bottom: 1px solid #dcebf7;

}


.keywordSwiper {

    height: 38px;

}


.keywordSwiper .swiper-slide {

    display: flex;

    align-items: center;

    justify-content: center;

    color: #27506f;

    font-size: 13px;

    font-weight: 600;

    text-align: center;

}


/* =========================================================
   HEADER
========================================================= */

.main-header {

    position: sticky;

    top: 0;

    z-index: 1000;

    background: rgba(255, 255, 255, 0.98);

    border-bottom: 1px solid var(--border);

    transition:
        box-shadow 0.25s ease,
        background 0.25s ease;

}


.main-header.scrolled {

    box-shadow:
        0 12px 40px rgba(17, 33, 53, 0.09);

}


.header-wrapper {

    min-height: 84px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


.brand-logo {

    display: flex;

    align-items: center;

    flex-shrink: 0;

}


.brand-logo img {

    width: auto;

    max-height: 58px;

}


.desktop-nav {

    display: flex;

    align-items: center;

    gap: 8px;

    margin-inline-start: auto;

}


.desktop-nav>a {

    position: relative;

    display: flex;

    align-items: center;

    padding: 10px 15px;

    color: var(--dark);

    font-size: 15px;

    font-weight: 600;

    border-radius: 10px;

    transition: all 0.2s ease;

}


.desktop-nav>a:hover,
.desktop-nav>a.active {

    color: var(--primary);

    background: #f2f8ff;

}


.desktop-nav .products-link {

    background: var(--primary);

    color: var(--white);

    padding: 10px 18px;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    line-height: 1.1;

}


.desktop-nav .products-link:hover {

    color: var(--white);

    background: var(--primary-dark);

}


.products-link small {

    margin-top: 4px;

    opacity: 0.75;

    font-size: 9px;

    letter-spacing: 0.08em;

    text-transform: uppercase;

}


.header-actions {

    display: flex;

    align-items: center;

    gap: 10px;

}


.header-quote {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 46px;

    padding: 0 19px;

    background: var(--secondary);

    color: var(--white);

    border-radius: 10px;

    font-weight: 700;

    font-size: 14px;

    transition: transform 0.2s ease;

}


.header-quote:hover {

    color: var(--white);

    transform: translateY(-2px);

}


/* =========================================================
   MOBILE HEADER ACTIONS
========================================================= */

.mobile-header-actions {

    display: none;

    align-items: center;

    gap: 8px;

    margin-inline-start: auto;

}


.mobile-contact-btn {

    min-height: 42px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 0 14px;

    border-radius: 9px;

    background: var(--primary);

    color: var(--white);

    font-size: 12px;

    font-weight: 700;

    white-space: nowrap;

}


.mobile-contact-btn:hover {

    color: var(--white);

    background: var(--primary-dark);

}


.mobile-offcanvas-btn {

    width: 44px;

    height: 42px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 5px;

    border: 1px solid var(--border);

    background: var(--white);

    border-radius: 9px;

    padding: 0;

}


.mobile-offcanvas-btn span {

    display: block;

    width: 19px;

    height: 2px;

    background: var(--dark);

    border-radius: 5px;

}


/* =========================================================
   MOBILE OFFCANVAS
========================================================= */

.mobile-offcanvas {

    width: min(88vw, 390px) !important;

    border: 0;

    background: #fff;

}


.mobile-offcanvas .offcanvas-header {

    min-height: 84px;

    padding: 18px 20px;

    border-bottom: 1px solid var(--border);

}


.offcanvas-logo {

    display: flex;

    align-items: center;

}


.offcanvas-logo img {

    width: auto;

    max-height: 48px;

}


.mobile-offcanvas .btn-close {

    box-shadow: none;

}


html[dir="rtl"] .mobile-offcanvas .btn-close {

    margin-inline-start: 0;

    margin-inline-end: auto;

}


.mobile-offcanvas .offcanvas-body {

    display: flex;

    flex-direction: column;

    padding: 18px 20px 24px;

}


.offcanvas-nav {

    display: grid;

    gap: 7px;

}


.offcanvas-nav>a {

    min-height: 61px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 11px 14px;

    border-radius: 12px;

    border: 1px solid transparent;

    color: var(--dark);

    transition: all .2s ease;

}


.offcanvas-nav>a:hover,
.offcanvas-nav>a.active {

    background: #f2f8ff;

    border-color: #dcecff;

    color: var(--primary);

}


.offcanvas-nav>a>span {

    display: flex;

    flex-direction: column;

    font-size: 15px;

    font-weight: 700;

}


.offcanvas-nav>a small {

    margin-top: 2px;

    color: var(--muted);

    font-size: 10px;

    font-weight: 500;

}


.offcanvas-nav>a b {

    color: #b4bdc9;

    font-size: 11px;

    font-weight: 700;

}


.offcanvas-product-link {

    background: var(--primary) !important;

    border-color: var(--primary) !important;

    color: var(--white) !important;

}


.offcanvas-product-link small {

    color: rgba(255, 255, 255, .7) !important;

}


.offcanvas-product-link b {

    color: rgba(255, 255, 255, .7) !important;

}


.offcanvas-divider {

    height: 1px;

    margin: 20px 0;

    background: var(--border);

}


.offcanvas-small-title {

    display: block;

    margin-bottom: 10px;

    color: var(--muted);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .1em;

    text-transform: uppercase;

}


.offcanvas-language-grid {

    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 8px;

}


.offcanvas-language-grid a {

    min-height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid var(--border);

    border-radius: 9px;

    color: var(--dark);

    font-size: 12px;

    font-weight: 600;

}


.offcanvas-language-grid a:hover {

    border-color: #bedcff;

    background: #f3f9ff;

    color: var(--primary);

}


.offcanvas-contact {

    display: grid;

    gap: 7px;

}


.offcanvas-contact a,
.offcanvas-contact span:not(.offcanvas-small-title) {

    color: var(--text);

    font-size: 13px;

    word-break: break-word;

}


.offcanvas-quote-btn {

    margin-top: auto;

    min-height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 0 18px;

    border-radius: 11px;

    background: var(--secondary);

    color: var(--white);

    font-weight: 700;

    font-size: 14px;

}


.offcanvas-quote-btn:hover {

    color: var(--white);

}


/* =========================================================
   HERO
========================================================= */

.hero-section {

    position: relative;

}


.heroSwiper {

    width: 100%;

}


.hero-slide {

    min-height: min(680px, 72vh);

    position: relative;

    background-position: center;

    background-size: cover;

    background-repeat: no-repeat;

    display: flex;

    align-items: center;

}


.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(6, 20, 39, 0.86) 0%,
            rgba(7, 26, 50, 0.67) 48%,
            rgba(7, 26, 50, 0.12) 100%);

}


html[dir="rtl"] .hero-overlay {

    background:
        linear-gradient(270deg,
            rgba(6, 20, 39, 0.86) 0%,
            rgba(7, 26, 50, 0.67) 48%,
            rgba(7, 26, 50, 0.12) 100%);

}


.hero-container {

    position: relative;

    z-index: 2;

}


.hero-content {

    max-width: 760px;

    color: var(--white);

    padding: 80px 0;

}


.hero-label {

    display: inline-flex;

    align-items: center;

    padding: 7px 14px;

    margin-bottom: 20px;

    border-radius: 999px;

    background: rgba(255, 255, 255, 0.12);

    border: 1px solid rgba(255, 255, 255, 0.2);

    font-weight: 700;

    font-size: 12px;

    letter-spacing: 0.11em;

    text-transform: uppercase;

}


.hero-content h1,
.hero-content h2 {

    margin: 0;

    font-size: clamp(38px, 5.1vw, 74px);

    line-height: 1.04;

    letter-spacing: -0.04em;

    font-weight: 800;

    max-width: 850px;

}


.hero-content p {

    margin: 26px 0 0;

    max-width: 660px;

    color: rgba(255, 255, 255, 0.86);

    font-size: 18px;

}


.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 34px;

}


.btn-primary-custom,
.btn-light-custom,
.btn-outline-light-custom {

    min-height: 52px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 0 24px;

    border-radius: 11px;

    font-weight: 700;

    transition:
        transform 0.2s ease,
        background 0.2s ease;

}


.btn-primary-custom {

    background: var(--primary);

    color: var(--white);

}


.btn-primary-custom:hover {

    color: var(--white);

    background: var(--primary-dark);

    transform: translateY(-2px);

}


.btn-light-custom {

    background: var(--white);

    color: var(--dark);

}


.btn-light-custom:hover {

    color: var(--dark);

    transform: translateY(-2px);

}


.btn-outline-light-custom {

    color: var(--white);

    border: 1px solid rgba(255, 255, 255, 0.5);

}


.btn-outline-light-custom:hover {

    background: var(--white);

    color: var(--dark);

}


.heroSwiper .swiper-pagination {

    bottom: 26px !important;

}


.heroSwiper .swiper-pagination-bullet {

    background: var(--white);

    opacity: 0.5;

}


.heroSwiper .swiper-pagination-bullet-active {

    opacity: 1;

    width: 24px;

    border-radius: 10px;

}


.hero-navigation {

    position: absolute;

    inset-inline-end: max(calc((100vw - 1320px) / 2),
            30px);

    bottom: 27px;

    z-index: 5;

    display: flex;

    gap: 8px;

}


.hero-navigation button {

    width: 44px;

    height: 44px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.14);

    border: 1px solid rgba(255, 255, 255, 0.3);

    color: var(--white);

}


/* =========================================================
   COMPANY STATS
========================================================= */

.company-stats {

    position: relative;

    margin-top: -1px;

    background: var(--white);

    border-bottom: 1px solid var(--border);

}


.stats-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

}


.stat-item {

    padding: 32px 20px;

    text-align: center;

    border-inline-end: 1px solid var(--border);

}


.stat-item:last-child {

    border-inline-end: 0;

}


.stat-item strong {

    display: block;

    font-size: 29px;

    line-height: 1;

    color: var(--primary);

}


.stat-item span {

    display: block;

    margin-top: 9px;

    color: var(--muted);

    font-size: 13px;

    font-weight: 600;

}


/* =========================================================
   GENERIC SECTION
========================================================= */

.company-profile,
.machine-series,
.manufacturing-section,
.applications-section,
.news-section {

    padding: 105px 0;

}


.section-heading {

    margin-bottom: 28px;

}


.section-label {

    display: inline-block;

    margin-bottom: 13px;

    color: var(--primary);

    font-size: 12px;

    line-height: 1;

    font-weight: 800;

    letter-spacing: 0.13em;

}


.section-heading h2 {

    margin: 0;

    color: var(--dark);

    font-size: clamp(32px, 4vw, 50px);

    line-height: 1.13;

    letter-spacing: -0.035em;

    font-weight: 800;

}


.section-heading>p {

    margin: 18px auto 0;

    max-width: 720px;

    color: var(--muted);

}


/* =========================================================
   COMPANY PROFILE
========================================================= */

.company-profile {

    background: var(--white);

}


.company-image {

    position: relative;

}


.company-image>img {

    width: 100%;

    border-radius: var(--container-radius);

    object-fit: cover;

    box-shadow: var(--shadow);

}


.company-experience {

    position: absolute;

    inset-inline-end: -18px;

    bottom: 30px;

    width: 190px;

    min-height: 140px;

    background: var(--primary);

    color: var(--white);

    border-radius: 18px;

    padding: 22px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    box-shadow:
        0 20px 50px rgba(0, 103, 216, 0.25);

}


.company-experience strong {

    font-size: 41px;

    line-height: 1;

}


.company-experience span {

    margin-top: 8px;

    font-size: 12px;

    line-height: 1.5;

}


.company-intro {

    color: var(--dark);

    font-size: 18px;

    font-weight: 600;

}


.profile-features {

    display: grid;

    gap: 16px;

    margin-top: 30px;

}


.profile-feature {

    display: flex;

    gap: 15px;

    align-items: flex-start;

    padding: 16px;

    background: #f8fafc;

    border-radius: 15px;

    border: 1px solid #eef2f5;

}


.feature-icon {

    min-width: 42px;

    height: 42px;

    border-radius: 10px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #e8f3ff;

    color: var(--primary);

    font-size: 12px;

    font-weight: 800;

}


.profile-feature strong {

    display: block;

    color: var(--dark);

}


.profile-feature p {

    margin: 3px 0 0;

    color: var(--muted);

    font-size: 13px;

}


.section-button {

    margin-top: 28px;

    display: inline-flex;

    align-items: center;

    gap: 13px;

    min-height: 50px;

    padding: 0 21px;

    border-radius: 10px;

    background: var(--dark);

    color: var(--white);

    font-weight: 700;

}


.section-button:hover {

    color: var(--white);

    background: var(--primary);

}


/* =========================================================
   MACHINE SERIES
========================================================= */

.machine-series {

    background: var(--light);

}


.productCategorySwiper {

    margin-top: 45px;

    padding-bottom: 48px;

}


.machine-card {

    display: block;

    height: 100%;

    background: var(--white);

    border-radius: 18px;

    overflow: hidden;

    border: 1px solid var(--border);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;

}


.machine-card:hover {

    transform: translateY(-7px);

    box-shadow: var(--shadow);

}


.machine-card img {

    width: 100%;

    aspect-ratio: 16 / 11;

    object-fit: contain;

    background: #fff;

    padding: 20px;

}


.machine-card-content {

    padding: 24px;

}


.machine-card-content>span {

    color: var(--primary);

    font-size: 11px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.1em;

}


.machine-card h3 {

    margin: 8px 0;

    color: var(--dark);

    font-size: 21px;

    font-weight: 800;

}


.machine-card p {

    color: var(--muted);

    font-size: 14px;

    min-height: 71px;

}


.machine-card strong {

    color: var(--primary);

    font-size: 13px;

}


.category-pagination {

    text-align: center;

}


/* =========================================================
   MANUFACTURING
========================================================= */

.manufacturing-section {

    background: var(--dark);

    color: rgba(255, 255, 255, .72);

}


.manufacturing-section .section-label {

    color: #60aaf7;

}


.manufacturing-section .section-heading h2 {

    color: var(--white);

}


.process-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 16px;

}


.process-card {

    min-height: 210px;

    padding: 28px;

    border-radius: 17px;

    background: rgba(255, 255, 255, 0.055);

    border: 1px solid rgba(255, 255, 255, 0.09);

}


.process-card>span {

    color: #5faefb;

    font-size: 12px;

    font-weight: 800;

}


.process-card h3 {

    color: var(--white);

    margin: 25px 0 8px;

    font-size: 19px;

}


.process-card p {

    margin: 0;

    font-size: 14px;

    color: rgba(255, 255, 255, .6);

}


/* =========================================================
   APPLICATIONS
========================================================= */

.applications-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 16px;

    margin-top: 45px;

}


.application-card {

    min-height: 150px;

    padding: 26px;

    border: 1px solid var(--border);

    border-radius: 16px;

    background: var(--white);

    transition:
        background 0.2s ease,
        transform 0.2s ease;

}


.application-card:hover {

    transform: translateY(-4px);

    background: var(--light);

}


.application-card span {

    color: var(--primary);

    font-size: 12px;

    font-weight: 800;

}


.application-card h3 {

    margin: 25px 0 0;

    color: var(--dark);

    font-size: 20px;

}


/* =========================================================
   CTA
========================================================= */

.main-cta {

    padding: 80px 0;

    background:
        linear-gradient(135deg,
            #0067d8,
            #004c9f);

    color: var(--white);

}


.cta-wrapper {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;

}


.cta-wrapper>div:first-child {

    max-width: 730px;

}


.cta-wrapper span {

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.13em;

    opacity: 0.8;

}


.cta-wrapper h2 {

    margin: 9px 0;

    font-size: clamp(31px, 4vw, 48px);

    line-height: 1.15;

}


.cta-wrapper p {

    margin: 0;

    opacity: 0.8;

}


.cta-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

}


/* =========================================================
   NEWS
========================================================= */

.section-heading-wrapper {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 40px;

}


.section-heading-wrapper .section-heading {

    margin: 0;

}


.section-heading-wrapper>a {

    color: var(--primary);

    font-weight: 700;

}


.news-card {

    height: 100%;

}


.news-card>a {

    display: block;

    border-radius: 15px;

    overflow: hidden;

}


.news-card img {

    width: 100%;

    aspect-ratio: 3 / 2;

    object-fit: cover;

    transition: transform .35s ease;

}


.news-card:hover img {

    transform: scale(1.03);

}


.news-card-body {

    padding: 21px 4px;

}


.news-card-body>span {

    color: var(--primary);

    font-size: 11px;

    font-weight: 800;

    text-transform: uppercase;

}


.news-card h3 {

    margin: 8px 0;

    color: var(--dark);

    font-size: 21px;

    line-height: 1.35;

}


.news-card p {

    color: var(--muted);

    font-size: 14px;

}


/* =========================================================
   FOOTER
========================================================= */

/* =========================================================
   FOOTER
========================================================= */

.site-footer {

    position: relative;

    background:
        linear-gradient(180deg,
            #0a1626 0%,
            #07111e 100%);

    color:
        rgba(255, 255, 255, 0.72);

    overflow: hidden;

}


/* subtle decorative glow */

.site-footer::before {

    content: "";

    position: absolute;

    width: 520px;

    height: 520px;

    inset-inline-start: -180px;

    top: -260px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(0, 103, 216, 0.14) 0%,
            rgba(0, 103, 216, 0) 70%);

    pointer-events: none;

}


/* =========================================================
   MAIN
========================================================= */

.footer-main {

    position: relative;

    z-index: 2;

    padding:
        82px 0 70px;

}


/* =========================================================
   BRAND
========================================================= */

.footer-brand {

    max-width:
        390px;

}


.footer-logo {

    display:
        inline-flex;

    align-items:
        center;

    margin-bottom:
        22px;

}


.footer-logo img {

    width:
        auto;

    max-width:
        190px;

    max-height:
        60px;

    object-fit:
        contain;

}


.footer-brand-desc {

    margin:
        0;

    color:
        rgba(255, 255, 255, .62);

    font-size:
        14px;

    line-height:
        1.8;

}


.footer-brand-badges {

    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        8px;

    margin-top:
        22px;

}


.footer-brand-badges span {

    display:
        inline-flex;

    align-items:
        center;

    min-height:
        30px;

    padding:
        0 10px;

    border:
        1px solid rgba(255, 255, 255, .12);

    border-radius:
        8px;

    background:
        rgba(255, 255, 255, .03);

    color:
        rgba(255, 255, 255, .82);

    font-size:
        10px;

    font-weight:
        700;

    letter-spacing:
        .04em;

}


/* =========================================================
   FOOTER CTA
========================================================= */

.footer-cta {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        12px;

    min-height:
        46px;

    margin-top:
        25px;

    padding:
        0 17px;

    border-radius:
        10px;

    background:
        var(--primary);

    color:
        #fff;

    font-size:
        12px;

    font-weight:
        800;

    transition:
        background .25s ease,
        transform .25s ease;

}


.footer-cta:hover {

    color:
        #fff;

    background:
        #0780ff;

    transform:
        translateY(-2px);

}


.footer-cta-arrow {

    font-size:
        17px;

    line-height:
        1;

    transition:
        transform .2s ease;

}


.footer-cta:hover .footer-cta-arrow {

    transform:
        translateX(4px);

}


html[dir="rtl"] .footer-cta:hover .footer-cta-arrow {

    transform:
        translateX(-4px);

}


/* =========================================================
   COLUMNS
========================================================= */

.footer-column h2 {

    position:
        relative;

    margin:
        3px 0 24px;

    padding-bottom:
        13px;

    color:
        #fff;

    font-size:
        15px;

    line-height:
        1.3;

    font-weight:
        800;

}


.footer-column h2::after {

    content:
        "";

    position:
        absolute;

    inset-inline-start:
        0;

    bottom:
        0;

    width:
        28px;

    height:
        2px;

    border-radius:
        10px;

    background:
        var(--primary);

}


/* =========================================================
   LINKS
========================================================= */

.footer-links {

    display:
        grid;

    gap:
        11px;

}


.footer-links a {

    position:
        relative;

    display:
        inline-flex;

    align-items:
        center;

    width:
        fit-content;

    color:
        rgba(255, 255, 255, .62);

    font-size:
        13px;

    line-height:
        1.45;

    transition:
        color .2s ease,
        transform .2s ease;

}


.footer-links a::before {

    content:
        "";

    width:
        0;

    height:
        1px;

    margin-inline-end:
        0;

    background:
        var(--primary);

    transition:
        width .2s ease,
        margin .2s ease;

}


.footer-links a:hover {

    color:
        #fff;

    transform:
        translateX(2px);

}


html[dir="rtl"] .footer-links a:hover {

    transform:
        translateX(-2px);

}


.footer-links a:hover::before {

    width:
        12px;

    margin-inline-end:
        8px;

}


/* =========================================================
   VIEW ALL CATEGORY LINK
========================================================= */

.footer-links .footer-view-all {

    margin-top:
        8px;

    color:
        #6eb4ff;

    font-weight:
        700;

}


.footer-links .footer-view-all::before {

    display:
        none;

}


.footer-view-all span {

    margin-inline-start:
        5px;

    transition:
        transform .2s ease;

}


.footer-view-all:hover span {

    transform:
        translateX(4px);

}


html[dir="rtl"] .footer-view-all:hover span {

    transform:
        translateX(-4px);

}


/* =========================================================
   CONTACT
========================================================= */

.footer-contact-list {

    display:
        grid;

    gap:
        18px;

}


.footer-contact-item {

    padding-bottom:
        16px;

    border-bottom:
        1px solid rgba(255, 255, 255, .08);

}


.footer-contact-item:last-child {

    border-bottom:
        0;

    padding-bottom:
        0;

}


.footer-contact-label {

    display:
        block;

    margin-bottom:
        5px;

    color:
        rgba(255, 255, 255, .38);

    font-size:
        9px;

    line-height:
        1;

    font-weight:
        800;

    letter-spacing:
        .10em;

    text-transform:
        uppercase;

}


.footer-contact-item p {

    margin:
        0;

    color:
        rgba(255, 255, 255, .66);

    font-size:
        12px;

    line-height:
        1.7;

}


.footer-contact-item a,
.footer-contact-item>span:not(.footer-contact-label) {

    color:
        rgba(255, 255, 255, .8);

    font-size:
        12px;

    line-height:
        1.6;

    word-break:
        break-word;

}


.footer-contact-item a:hover {

    color:
        #fff;

}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {

    position:
        relative;

    z-index:
        2;

    border-top:
        1px solid rgba(255, 255, 255, .08);

    background:
        rgba(0, 0, 0, .08);

}


.footer-bottom-inner {

    min-height:
        68px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        18px;

}


.footer-bottom-inner p {

    margin:
        0;

    color:
        rgba(255, 255, 255, .42);

    font-size:
        11px;

}


.footer-bottom-separator {

    display:
        none;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .footer-main {

        padding:
            68px 0 55px;

    }


    .footer-brand {

        max-width:
            100%;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .footer-main {

        padding:
            55px 0 42px;

    }


    .footer-logo img {

        max-width:
            155px;

    }


    .footer-brand-desc {

        font-size:
            13px;

    }


    .footer-column h2 {

        margin-bottom:
            18px;

        font-size:
            14px;

    }


    .footer-links {

        gap:
            9px;

    }


    .footer-links a {

        font-size:
            12px;

    }


    .footer-bottom-inner {

        min-height:
            auto;

        padding:
            18px 0;

        flex-direction:
            column;

        align-items:
            flex-start;

        gap:
            7px;

    }


    .footer-bottom-inner p {

        font-size:
            10px;

    }

}

/* =========================================================
   RTL
========================================================= */

html[dir="rtl"] {

    text-align: right;

}


html[dir="rtl"] .hero-navigation button {

    transform: scaleX(-1);

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {

    .desktop-nav>a {

        padding-inline: 10px;

    }

}


@media (max-width: 991px) {

    .desktop-nav,
    .desktop-header-actions {

        display: none;

    }


    .mobile-header-actions {

        display: flex;

    }


    .header-wrapper {

        min-height: 72px;

        gap: 14px;

    }


    .brand-logo {

        min-width: 0;

    }


    .brand-logo img {

        max-height: 47px;

        max-width: 150px;

    }


    .hero-slide {

        min-height: 610px;

    }


    .hero-content {

        padding: 70px 0 105px;

    }


    .hero-content h1,
    .hero-content h2 {

        font-size: clamp(39px, 7vw, 61px);

    }


    .hero-navigation {

        display: none;

    }


    .stats-grid {

        grid-template-columns: repeat(2, 1fr);

    }


    .stat-item:nth-child(2) {

        border-inline-end: 0;

    }


    .company-profile,
    .machine-series,
    .manufacturing-section,
    .applications-section,
    .news-section {

        padding: 80px 0;

    }


    .company-experience {

        inset-inline-end: 20px;

    }


    .process-grid {

        margin-top: 30px;

    }


    .applications-grid {

        grid-template-columns: repeat(2, 1fr);

    }


    .cta-wrapper {

        align-items: flex-start;

        flex-direction: column;

    }

}


@media (max-width: 767px) {

    .container {

        --bs-gutter-x: 30px;

    }


    .topbar {

        font-size: 11px;

    }


    .topbar-wrapper {

        min-height: 38px;

    }


    .topbar-contact {

        gap: 8px;

        overflow: hidden;

        white-space: nowrap;

    }


    .topbar-contact .topbar-separator {

        display: none;

    }


    .keywordSwiper {

        height: 36px;

    }


    .keywordSwiper .swiper-slide {

        font-size: 11px;

    }


    .header-wrapper {

        gap: 8px;

    }


    .brand-logo img {

        max-width: 125px;

        max-height: 43px;

    }


    .mobile-header-actions {

        gap: 6px;

    }


    .mobile-contact-btn {

        min-height: 40px;

        padding: 0 11px;

        font-size: 11px;

    }


    .mobile-offcanvas-btn {

        width: 41px;

        height: 40px;

    }


    .hero-slide {

        min-height: 570px;

    }


    .hero-overlay {

        background:
            linear-gradient(90deg,
                rgba(6, 20, 39, .9),
                rgba(6, 20, 39, .62));

    }


    html[dir="rtl"] .hero-overlay {

        background:
            linear-gradient(270deg,
                rgba(6, 20, 39, .9),
                rgba(6, 20, 39, .62));

    }


    .hero-content {

        padding: 70px 0 95px;

    }


    .hero-content h1,
    .hero-content h2 {

        font-size: 39px;

    }


    .hero-content p {

        font-size: 15px;

    }


    .hero-buttons {

        flex-direction: column;

        align-items: stretch;

    }


    .hero-buttons a {

        width: 100%;

    }


    .stats-grid {

        grid-template-columns: 1fr 1fr;

    }


    .stat-item {

        padding: 24px 8px;

    }


    .stat-item strong {

        font-size: 23px;

    }


    .company-profile,
    .machine-series,
    .manufacturing-section,
    .applications-section,
    .news-section {

        padding: 65px 0;

    }


    .section-heading h2 {

        font-size: 34px;

    }


    .company-experience {

        position: relative;

        inset: auto;

        width: 100%;

        min-height: auto;

        margin-top: 12px;

        flex-direction: row;

        justify-content: flex-start;

        align-items: center;

        gap: 15px;

    }


    .company-experience strong {

        font-size: 32px;

    }


    .process-grid {

        grid-template-columns: 1fr;

    }


    .process-card {

        min-height: auto;

    }


    .applications-grid {

        grid-template-columns: 1fr;

    }


    .application-card {

        min-height: 120px;

    }


    .section-heading-wrapper {

        align-items: flex-start;

        flex-direction: column;

    }


    .footer-bottom {

        padding: 20px 0;

        flex-direction: column;

        align-items: flex-start;

        justify-content: center;

    }

}


@media (max-width: 420px) {

    .brand-logo img {

        max-width: 108px;

    }


    .mobile-contact-btn {

        padding: 0 9px;

        font-size: 10px;

    }


    .mobile-offcanvas-btn {

        width: 38px;

    }

}


/* =========================================================
   PRODUCT SHOWCASE
========================================================= */

.product-showcase-section {

    position: relative;

    background:
        linear-gradient(180deg,
            #ffffff 0%,
            #f7f9fc 100%);

    overflow: hidden;
    margin-top: 40px;

}


/* =========================================================
   MACHINE IMAGE
========================================================= */

.product-showcase-machine {

    position: relative;

    width: 100%;

    background: #ffffff;

    overflow: hidden;

}


.product-showcase-machine::after {

    content: "";

    position: absolute;

    inset-inline: 0;

    bottom: 0;

    height: 90px;

    pointer-events: none;

    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(247, 249, 252, 1) 100%);

}

/* =========================================================
   MACHINE SHOWCASE SWIPER
========================================================= */

.product-showcase-machine {

    position: relative;

    width: 100%;

    padding: 45px 0 25px;

    overflow: hidden;

    background:
        linear-gradient(180deg,
            #ffffff 0%,
            #ffffff 70%,
            #f7f9fc 100%);

}


/* subtle background */

.product-showcase-machine::before {

    content: "";

    position: absolute;

    width: 700px;

    height: 300px;

    left: 50%;

    bottom: 30px;

    transform: translateX(-50%);

    background:
        radial-gradient(ellipse at center,
            rgba(15, 76, 129, 0.07) 0%,
            rgba(15, 76, 129, 0) 70%);

    pointer-events: none;

}


/* =========================================================
   SWIPER
========================================================= */

.machineShowcaseSwiper {

    position: relative;

    width: 100%;

    padding:
        15px 0 55px;

    overflow: visible;

}


/* =========================================================
   SLIDES
========================================================= */

.machineShowcaseSwiper .swiper-slide {

    width: 66%;

    max-width: 1150px;

    height: auto;

    display: flex;

    align-items: center;

    justify-content: center;

    opacity: 0.32;

    transform: scale(0.76);

    transition:
        transform 0.65s cubic-bezier(.2, .7, .2, 1),
        opacity 0.65s ease,
        filter 0.65s ease;

    filter:
        saturate(0.72) brightness(1.04);

}


/* previous + next */

.machineShowcaseSwiper .swiper-slide-prev,
.machineShowcaseSwiper .swiper-slide-next {

    opacity: 0.62;

    transform: scale(0.84);

    filter:
        saturate(0.88) brightness(1.02);

}


/* ACTIVE MACHINE */

.machineShowcaseSwiper .swiper-slide-active {

    position: relative;

    z-index: 5;

    opacity: 1;

    transform: scale(1);

    filter: none;

}


/* =========================================================
   LINK
========================================================= */

.machine-showcase-link {

    position: relative;

    display: block;

    width: 100%;

    text-decoration: none;

}


/* =========================================================
   IMAGE AREA
========================================================= */

.machine-showcase-image {

    position: relative;

    width: 100%;

    height: 500px;

    display: flex;

    align-items: center;

    justify-content: center;

}


/* MACHINE */

.machine-showcase-image img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: contain;

    object-position: center;

    transform: translateZ(0);

    transition:
        transform 0.45s ease;

}


/* subtle floor shadow */

.machine-showcase-image::after {

    content: "";

    position: absolute;

    z-index: -1;

    left: 12%;

    right: 12%;

    bottom: 18px;

    height: 30px;

    border-radius: 50%;

    background:
        rgba(12, 25, 40, 0.12);

    filter: blur(18px);

    transform: scaleX(0.9);

    transition:
        opacity 0.4s ease,
        transform 0.4s ease;

}


/* HOVER */

.machineShowcaseSwiper .swiper-slide-active .machine-showcase-link:hover img {

    transform: scale(1.018);

}


.machineShowcaseSwiper .swiper-slide-active .machine-showcase-link:hover .machine-showcase-image::after {

    opacity: 0.75;

    transform: scaleX(0.96);

}


/* =========================================================
   NAVIGATION
========================================================= */

.machine-showcase-prev,
.machine-showcase-next {

    position: absolute;

    z-index: 20;

    top: 50%;

    width: 52px;

    height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 0;

    border: 1px solid #e3e8ef;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.92);

    color: #111d2d;

    box-shadow:
        0 10px 35px rgba(15, 32, 55, 0.10);

    transform: translateY(-50%);

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;

}


.machine-showcase-prev {

    left: 35px;

}


.machine-showcase-next {

    right: 35px;

}


.machine-showcase-prev span,
.machine-showcase-next span {

    display: block;

    margin-top: -4px;

    font-size: 36px;

    font-weight: 300;

    line-height: 1;

}


.machine-showcase-prev:hover,
.machine-showcase-next:hover {

    border-color: #0b1728;

    background: #0b1728;

    color: #ffffff;

}


.machine-showcase-prev:hover {

    transform:
        translateY(-50%) translateX(-3px);

}


.machine-showcase-next:hover {

    transform:
        translateY(-50%) translateX(3px);

}


/* =========================================================
   PAGINATION
========================================================= */

.machine-showcase-pagination {

    position: absolute !important;

    z-index: 10;

    bottom: 8px !important;

    left: 50% !important;

    width: auto !important;

    display: flex;

    align-items: center;

    gap: 7px;

    transform: translateX(-50%);

}


.machine-showcase-pagination .swiper-pagination-bullet {

    width: 7px;

    height: 7px;

    margin: 0 !important;

    border-radius: 20px;

    background: #aab4c0;

    opacity: 0.55;

    transition:
        width 0.3s ease,
        background 0.3s ease,
        opacity 0.3s ease;

}


.machine-showcase-pagination .swiper-pagination-bullet-active {

    width: 30px;

    background: #ff4c16;

    opacity: 1;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199px) {

    .machineShowcaseSwiper .swiper-slide {

        width: 74%;

    }


    .machine-showcase-image {

        height: 420px;

    }


    .machine-showcase-prev {

        left: 20px;

    }


    .machine-showcase-next {

        right: 20px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .product-showcase-machine {

        padding:
            20px 0 10px;

    }


    .machineShowcaseSwiper {

        padding:
            5px 0 45px;

    }


    .machineShowcaseSwiper .swiper-slide {

        width: 86%;

        opacity: 0.35;

        transform: scale(0.88);

    }


    .machineShowcaseSwiper .swiper-slide-prev,
    .machineShowcaseSwiper .swiper-slide-next {

        opacity: 0.45;

        transform: scale(0.90);

    }


    .machineShowcaseSwiper .swiper-slide-active {

        opacity: 1;

        transform: scale(1);

    }


    .machine-showcase-image {

        height: 270px;

    }


    .machine-showcase-prev,
    .machine-showcase-next {

        width: 42px;

        height: 42px;

    }


    .machine-showcase-prev {

        left: 10px;

    }


    .machine-showcase-next {

        right: 10px;

    }


    .machine-showcase-prev span,
    .machine-showcase-next span {

        font-size: 29px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .machineShowcaseSwiper .swiper-slide {

        width: 90%;

    }


    .machine-showcase-image {

        height: 220px;

    }


    .machine-showcase-prev,
    .machine-showcase-next {

        display: none;

    }

}

.product-showcase-machine-link:hover img {

    transform: scale(1.012);

}


/* =========================================================
   CONTENT
========================================================= */

.product-showcase-content {

    position: relative;

    z-index: 2;

    padding: 30px 0 85px;

}


.product-showcase-content-inner {

    display: grid;

    grid-template-columns:
        minmax(0, 1.25fr) minmax(0, 1.5fr) auto;

    align-items: center;

    gap: 45px;

    padding: 38px 42px;

    border: 1px solid #e7ebf1;

    border-radius: 24px;

    background:
        rgba(255, 255, 255, 0.94);

    box-shadow:
        0 22px 65px rgba(16, 34, 56, 0.08);

}


/* =========================================================
   HEADING
========================================================= */

.product-showcase-heading {

    min-width: 0;

}


.product-showcase-kicker {

    display: inline-block;

    margin-bottom: 11px;

    color: #0067d8;

    font-size: 11px;

    line-height: 1;

    font-weight: 800;

    letter-spacing: 0.14em;

    text-transform: uppercase;

}


.product-showcase-heading h2 {

    margin: 0;

    color: #0b1728;

    font-size:
        clamp(27px,
            2.5vw,
            40px);

    line-height: 1.12;

    letter-spacing: -0.035em;

    font-weight: 800;

}


.product-showcase-heading p {

    margin: 14px 0 0;

    color: #748091;

    font-size: 14px;

    line-height: 1.75;

}


/* =========================================================
   FEATURES
========================================================= */

.product-showcase-features {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 14px;

}


.product-showcase-feature {

    min-width: 0;

    display: flex;

    align-items: flex-start;

    gap: 11px;

    padding-inline: 15px;

    border-inline-start:
        1px solid #e5eaf0;

}


.product-showcase-feature-number {

    flex: 0 0 auto;

    width: 34px;

    height: 34px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    background: #eef6ff;

    color: #0067d8;

    font-size: 10px;

    font-weight: 800;

}


.product-showcase-feature strong {

    display: block;

    margin-bottom: 3px;

    color: #0b1728;

    font-size: 13px;

    line-height: 1.35;

    font-weight: 800;

}


.product-showcase-feature small {

    display: block;

    color: #7c8795;

    font-size: 11px;

    line-height: 1.5;

}


/* =========================================================
   ACTION
========================================================= */

.product-showcase-action {

    display: flex;

    align-items: center;

    justify-content: flex-end;

}


.product-showcase-btn {

    min-height: 54px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 16px;

    padding: 0 22px;

    border-radius: 12px;

    background: #0b1728;

    color: #ffffff;

    font-size: 13px;

    font-weight: 800;

    white-space: nowrap;

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;

}


.product-showcase-btn:hover {

    color: #ffffff;

    background: #0067d8;

    transform: translateY(-2px);

    box-shadow:
        0 12px 30px rgba(0, 103, 216, 0.18);

}


.product-showcase-btn-arrow {

    font-size: 18px;

    line-height: 1;

    transition: transform 0.25s ease;

}


.product-showcase-btn:hover .product-showcase-btn-arrow {

    transform: translateX(4px);

}


html[dir="rtl"] .product-showcase-btn:hover .product-showcase-btn-arrow {

    transform: translateX(-4px);

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199px) {

    .product-showcase-content-inner {

        grid-template-columns:
            1fr 1.4fr;

        gap: 30px;

    }


    .product-showcase-action {

        grid-column: 1 / -1;

        justify-content: flex-start;

    }

}


@media (max-width: 991px) {

    .product-showcase-machine img {

        max-height: 470px;

    }


    .product-showcase-content {

        padding:
            20px 0 70px;

    }


    .product-showcase-content-inner {

        grid-template-columns: 1fr;

        gap: 28px;

        padding: 30px;

    }


    .product-showcase-features {

        grid-template-columns:
            repeat(3, 1fr);

    }


    .product-showcase-action {

        grid-column: auto;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .product-showcase-section {

        background: #f7f9fc;

    }


    .product-showcase-machine {

        padding:
            10px 0 0;

    }


    .product-showcase-machine::after {

        height: 45px;

    }


    .product-showcase-machine img {

        width: 100%;

        max-height: none;

        object-fit: contain;

    }


    .product-showcase-content {

        padding:
            10px 0 55px;

    }


    .product-showcase-content-inner {

        gap: 24px;

        padding: 25px 20px;

        border-radius: 18px;

    }


    .product-showcase-heading h2 {

        font-size: 29px;

    }


    .product-showcase-heading p {

        font-size: 13px;

    }


    .product-showcase-features {

        grid-template-columns: 1fr;

        gap: 0;

    }


    .product-showcase-feature {

        padding:
            14px 0;

        border-inline-start: 0;

        border-bottom:
            1px solid #edf0f4;

    }


    .product-showcase-feature:first-child {

        padding-top: 0;

    }


    .product-showcase-feature:last-child {

        padding-bottom: 0;

        border-bottom: 0;

    }


    .product-showcase-btn {

        width: 100%;

    }

}

.news-read-more {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 10px;

    color: var(--primary);

    font-size: 13px;

    font-weight: 700;

}


.news-read-more span {

    transition: transform 0.2s ease;

}


.news-read-more:hover span {

    transform: translateX(4px);

}


html[dir="rtl"] .news-read-more:hover span {

    transform: translateX(-4px);

}

/* =========================================================
   NEWS SECTION
========================================================= */

.news-section {

    position: relative;

    padding:
        100px 0;

    background:
        linear-gradient(180deg,
            #ffffff 0%,
            #f7f9fc 100%);

}


/* =========================================================
   HEADER
========================================================= */

.news-section-head {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 40px;

    margin-bottom: 44px;

}


.news-section-title {

    max-width: 760px;

}


.news-section-title .section-label {

    margin-bottom: 12px;

}


.news-section-title h2 {

    margin: 0;

    color: var(--dark);

    font-size:
        clamp(34px,
            4vw,
            52px);

    line-height: 1.12;

    font-weight: 800;

    letter-spacing: -0.035em;

}


.news-section-title p {

    max-width: 650px;

    margin:
        14px 0 0;

    color: var(--muted);

    font-size: 15px;

    line-height: 1.75;

}


/* =========================================================
   VIEW ALL BUTTON
========================================================= */

.news-all-btn {

    min-height: 50px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    padding:
        0 20px;

    border: 1px solid var(--border);

    border-radius: 12px;

    background: #ffffff;

    color: var(--dark);

    font-size: 13px;

    font-weight: 800;

    white-space: nowrap;

    transition:
        background .25s ease,
        color .25s ease,
        border-color .25s ease,
        transform .25s ease;

}


.news-all-btn:hover {

    border-color: var(--primary);

    background: var(--primary);

    color: #ffffff;

    transform: translateY(-2px);

}


.news-all-btn-arrow {

    font-size: 18px;

    line-height: 1;

    transition: transform .25s ease;

}


.news-all-btn:hover .news-all-btn-arrow {

    transform:
        translateX(4px);

}


html[dir="rtl"] .news-all-btn:hover .news-all-btn-arrow {

    transform:
        translateX(-4px);

}


/* =========================================================
   CARD
========================================================= */

.news-card {

    height: 100%;

    display: flex;

    flex-direction: column;

    overflow: hidden;

    border: 1px solid #e6ebf1;

    border-radius: 20px;

    background: #ffffff;

    box-shadow:
        0 10px 35px rgba(14, 30, 50, 0.05);

    transition:
        transform .28s ease,
        box-shadow .28s ease,
        border-color .28s ease;

}


.news-card:hover {

    transform:
        translateY(-7px);

    border-color:
        #d8e2ee;

    box-shadow:
        0 22px 55px rgba(14, 30, 50, 0.10);

}


/* =========================================================
   IMAGE
========================================================= */

.news-card-image {

    position: relative;

    display: block;

    width: 100%;

    overflow: hidden;

    background: #eef2f6;

}


.news-card-image img {

    display: block;

    width: 100%;

    aspect-ratio:
        760 / 500;

    object-fit: cover;

    transition:
        transform .45s ease;

}


.news-card:hover .news-card-image img {

    transform:
        scale(1.035);

}


/* arrow inside image */

.news-card-image-arrow {

    position: absolute;

    inset-inline-end: 18px;

    bottom: 18px;

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.94);

    color: var(--dark);

    font-size: 20px;

    line-height: 1;

    box-shadow:
        0 8px 24px rgba(0, 0, 0, .09);

    opacity: 0;

    transform:
        translateY(8px);

    transition:
        opacity .25s ease,
        transform .25s ease,
        background .25s ease,
        color .25s ease;

}


.news-card:hover .news-card-image-arrow {

    opacity: 1;

    transform:
        translateY(0);

}


.news-card-image-arrow:hover {

    background:
        var(--primary);

    color:
        #ffffff;

}


/* =========================================================
   CARD BODY
========================================================= */

.news-card-body {

    flex: 1;

    display: flex;

    flex-direction: column;

    padding:
        24px 24px 22px;

}


/* =========================================================
   TOP LINE
========================================================= */

.news-card-topline {

    min-height: 25px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    margin-bottom: 11px;

}


.news-card-category {

    color: var(--primary);

    font-size: 10px;

    line-height: 1;

    font-weight: 800;

    letter-spacing: .10em;

    text-transform: uppercase;

}


.news-card-views {

    color: #9aa4af;

    font-size: 10px;

    font-weight: 600;

}


/* =========================================================
   TITLE
========================================================= */

.news-card h3 {

    margin:
        0 0 13px;

    color: var(--dark);

    font-size: 20px;

    line-height: 1.42;

    font-weight: 800;

}


.news-card h3 a {

    display: -webkit-box;

    overflow: hidden;

    -webkit-box-orient: vertical;

    -webkit-line-clamp: 2;

    color: inherit;

    transition:
        color .2s ease;

}


.news-card h3 a:hover {

    color:
        var(--primary);

}


/* =========================================================
   DESCRIPTION
========================================================= */

.news-card-body>p {

    display: -webkit-box;

    overflow: hidden;

    margin:
        0 0 22px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.7;

    -webkit-box-orient: vertical;

    -webkit-line-clamp: 3;

}


/* =========================================================
   FOOTER
========================================================= */

.news-card-footer {

    margin-top: auto;

    padding-top: 15px;

    border-top:
        1px solid #eef1f4;

}


/* =========================================================
   READ MORE
========================================================= */

.news-read-more {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--dark);

    font-size: 12px;

    line-height: 1;

    font-weight: 800;

    transition:
        color .2s ease;

}


.news-read-more:hover {

    color:
        var(--primary);

}


.news-read-more-arrow {

    font-size: 17px;

    line-height: 1;

    transition:
        transform .2s ease;

}


.news-read-more:hover .news-read-more-arrow {

    transform:
        translateX(4px);

}


html[dir="rtl"] .news-read-more:hover .news-read-more-arrow {

    transform:
        translateX(-4px);

}


/* =========================================================
   EMPTY
========================================================= */

.news-empty {

    padding:
        55px 25px;

    border:
        1px dashed #dbe2ea;

    border-radius:
        18px;

    background:
        #ffffff;

    color:
        var(--muted);

    text-align:
        center;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .news-section {

        padding:
            80px 0;

    }


    .news-section-head {

        align-items:
            flex-start;

        flex-direction:
            column;

        gap:
            25px;

    }


    .news-section-action {

        width:
            100%;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .news-section {

        padding:
            65px 0;

    }


    .news-section-head {

        margin-bottom:
            30px;

    }


    .news-section-title h2 {

        font-size:
            33px;

    }


    .news-section-title p {

        font-size:
            13px;

    }


    .news-all-btn {

        width:
            100%;

    }


    .news-card {

        border-radius:
            16px;

    }


    .news-card-body {

        padding:
            20px;

    }


    .news-card h3 {

        font-size:
            18px;

    }


    .news-card-image-arrow {

        display:
            none;

    }

}

/* =========================================================
   ABOUT HERO
========================================================= */

.about-page-hero {

    position: relative;

    padding:
        90px 0 65px;

    background:
        linear-gradient(135deg,
            #f8fafc 0%,
            #ffffff 50%,
            #f3f7fb 100%);

    overflow: hidden;

}


.about-page-hero::before {

    content: "";

    position: absolute;

    width: 650px;

    height: 650px;

    inset-inline-end: -300px;

    top: -330px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(0, 103, 216, .10),
            rgba(0, 103, 216, 0) 70%);

}


.about-page-hero-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        .88fr 1.12fr;

    align-items: center;

    gap: 70px;

}


.about-page-badge {

    display: inline-flex;

    align-items: center;

    min-height: 31px;

    padding:
        0 12px;

    margin-bottom:
        20px;

    border:
        1px solid #d7e8fb;

    border-radius:
        999px;

    background:
        #edf6ff;

    color:
        var(--primary);

    font-size:
        10px;

    font-weight:
        800;

    letter-spacing:
        .08em;

    text-transform:
        uppercase;

}


.about-page-hero-copy h1 {

    margin:
        0;

    max-width:
        730px;

    color:
        #091527;

    font-size:
        clamp(44px,
            5.1vw,
            76px);

    line-height:
        1.01;

    font-weight:
        850;

    letter-spacing:
        -.05em;

}


html[dir="rtl"] .about-page-hero-copy h1 {

    letter-spacing:
        0;

}


.about-page-hero-copy>p {

    max-width:
        650px;

    margin:
        25px 0 0;

    color:
        #697586;

    font-size:
        16px;

    line-height:
        1.9;

}


.about-page-hero-actions {

    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        11px;

    margin-top:
        32px;

}


.about-page-btn-primary,
.about-page-btn-outline {

    min-height:
        52px;

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        13px;

    padding:
        0 21px;

    border-radius:
        11px;

    font-size:
        13px;

    font-weight:
        800;

    transition:
        .25s ease;

}


.about-page-btn-primary {

    background:
        var(--primary);

    color:
        #fff;

}


.about-page-btn-primary:hover {

    background:
        var(--primary-dark);

    color:
        #fff;

    transform:
        translateY(-2px);

}


.about-page-btn-outline {

    border:
        1px solid #dce3eb;

    background:
        #fff;

    color:
        #111e2f;

}


.about-page-btn-outline:hover {

    border-color:
        #b9c6d3;

    color:
        var(--primary);

}


.about-page-hero-mini {

    display:
        flex;

    gap:
        35px;

    margin-top:
        42px;

    padding-top:
        25px;

    border-top:
        1px solid #e4e9ef;

}


.about-page-hero-mini div {

    display:
        grid;

}


.about-page-hero-mini strong {

    color:
        #101d2e;

    font-size:
        20px;

}


.about-page-hero-mini span {

    margin-top:
        2px;

    color:
        #8390a0;

    font-size:
        10px;

    font-weight:
        650;

}


/* =========================================================
   HERO VISUAL
========================================================= */

.about-page-hero-visual {

    position: relative;

}


.about-page-hero-frame {

    position: relative;

    padding:
        10px;

    border:
        1px solid #e4eaf0;

    border-radius:
        30px;

    background:
        #fff;

    box-shadow:
        0 30px 80px rgba(17, 37, 63, .11);

}


.about-page-hero-frame img {

    display:
        block;

    width:
        100%;

    aspect-ratio:
        1.45 / 1;

    object-fit:
        cover;

    border-radius:
        22px;

}


.about-page-floating-card {

    position: absolute;

    inset-inline-start:
        -35px;

    bottom:
        35px;

    min-width:
        180px;

    padding:
        20px 22px;

    border-radius:
        16px;

    background:
        #091527;

    color:
        #fff;

    box-shadow:
        0 18px 45px rgba(5, 19, 36, .2);

}


.about-page-floating-card span {

    display:
        block;

    color:
        #67b3ff;

    font-size:
        27px;

    font-weight:
        800;

}


.about-page-floating-card strong {

    display:
        block;

    margin-top:
        2px;

    font-size:
        11px;

}


/* =========================================================
   METRICS
========================================================= */

.about-page-metrics {

    padding:
        25px 0 85px;

    background:
        #fff;

}


.about-page-metrics-grid {

    display:
        grid;

    grid-template-columns:
        repeat(4, 1fr);

    overflow:
        hidden;

    border:
        1px solid #e4e9ef;

    border-radius:
        20px;

    background:
        #fff;

}


.about-page-metric {

    position:
        relative;

    padding:
        30px;

    text-align:
        center;

}


.about-page-metric:not(:last-child) {

    border-inline-end:
        1px solid #e4e9ef;

}


.about-page-metric strong {

    display:
        block;

    color:
        var(--primary);

    font-size:
        30px;

    line-height:
        1;

    font-weight:
        850;

}


.about-page-metric span {

    display:
        block;

    margin-top:
        9px;

    color:
        #7b8796;

    font-size:
        11px;

    font-weight:
        700;

}


/* =========================================================
   STORY
========================================================= */

.about-page-story {

    padding:
        110px 0;

    background:
        #0a1627;

    color:
        rgba(255, 255, 255, .65);

}


.about-page-story-grid {

    display:
        grid;

    grid-template-columns:
        .8fr 1.2fr;

    gap:
        80px;

}


.about-page-story-title h2 {

    margin:
        0;

    max-width:
        480px;

    color:
        #fff;

    font-size:
        clamp(38px,
            4vw,
            56px);

    line-height:
        1.05;

    font-weight:
        850;

}


.about-page-story-content {

    max-width:
        760px;

}


.about-page-story-content p {

    margin:
        0 0 20px;

    font-size:
        15px;

    line-height:
        1.95;

}


.about-page-story-lead {

    color:
        #fff !important;

    font-size:
        21px !important;

    line-height:
        1.65 !important;

    font-weight:
        650;

}


/* =========================================================
   CAPABILITIES
========================================================= */

.about-page-capabilities {

    padding:
        110px 0;

    background:
        #f6f8fb;

}


.about-page-capabilities-grid {

    display:
        grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap:
        18px;

    margin-top:
        45px;

}


.about-page-capability {

    position:
        relative;

    min-height:
        280px;

    padding:
        30px;

    overflow:
        hidden;

    border:
        1px solid #e4eaf0;

    border-radius:
        20px;

    background:
        #fff;

    transition:
        transform .3s ease,
        box-shadow .3s ease;

}


.about-page-capability::after {

    content: "";

    position:
        absolute;

    width:
        130px;

    height:
        130px;

    inset-inline-end:
        -60px;

    bottom:
        -60px;

    border-radius:
        50%;

    background:
        rgba(0, 103, 216, .05);

}


.about-page-capability:hover {

    transform:
        translateY(-7px);

    box-shadow:
        0 25px 55px rgba(13, 31, 52, .09);

}


.about-page-capability-no {

    color:
        var(--primary);

    font-size:
        11px;

    font-weight:
        850;

}


.about-page-capability h3 {

    margin:
        75px 0 12px;

    color:
        #0e1b2c;

    font-size:
        23px;

    font-weight:
        800;

}


.about-page-capability p {

    margin:
        0;

    color:
        #758191;

    font-size:
        13px;

    line-height:
        1.8;

}


/* =========================================================
   WORKSHOP
========================================================= */

.about-page-workshop {

    padding:
        110px 0;

    background:
        #fff;

}


.about-page-workshop-grid {

    display:
        grid;

    grid-template-columns:
        1.2fr .8fr;

    align-items:
        center;

    gap:
        70px;

}


.about-page-workshop-visual {

    position:
        relative;

}


.about-page-workshop-visual::before {

    content: "";

    position:
        absolute;

    inset:
        30px -20px -20px 30px;

    z-index:
        0;

    border-radius:
        28px;

    background:
        #eef4fa;

}


.about-page-workshop-visual img {

    position:
        relative;

    z-index:
        1;

    display:
        block;

    width:
        100%;

    border-radius:
        24px;

    object-fit:
        cover;

}


.about-page-workshop-copy h2 {

    margin:
        0;

    color:
        #0d1a2a;

    font-size:
        clamp(36px,
            4vw,
            52px);

    line-height:
        1.08;

    font-weight:
        850;

}


.about-page-workshop-copy>p {

    margin:
        20px 0 30px;

    color:
        #768292;

    font-size:
        14px;

    line-height:
        1.85;

}


.about-page-workshop-stats {

    display:
        grid;

    gap:
        10px;

}


.about-page-workshop-stats div {

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        20px;

    padding:
        15px 17px;

    border:
        1px solid #e4e9ef;

    border-radius:
        12px;

    background:
        #fafbfd;

}


.about-page-workshop-stats strong {

    color:
        var(--primary);

    font-size:
        18px;

}


.about-page-workshop-stats span {

    color:
        #758090;

    font-size:
        11px;

}


/* =========================================================
   PRODUCTION
========================================================= */

.about-page-production {

    padding:
        110px 0;

    background:
        #0a1627;

}


.about-page-production-heading {

    max-width:
        750px;

    margin-bottom:
        50px;

}


.about-page-production-heading h2 {

    margin:
        0;

    color:
        #fff;

    font-size:
        clamp(38px,
            4vw,
            55px);

    font-weight:
        850;

}


.about-page-production-heading p {

    margin:
        17px 0 0;

    color:
        rgba(255, 255, 255, .58);

    line-height:
        1.8;

}


.about-page-production-list {

    border-top:
        1px solid rgba(255, 255, 255, .09);

}


.about-page-production-list article {

    display:
        grid;

    grid-template-columns:
        100px 1fr;

    gap:
        35px;

    padding:
        28px 0;

    border-bottom:
        1px solid rgba(255, 255, 255, .09);

    transition:
        padding .25s ease;

}


.about-page-production-list article:hover {

    padding-inline:
        14px;

}


.about-page-production-list article>span {

    color:
        #61adf9;

    font-size:
        12px;

    font-weight:
        800;

}


.about-page-production-list h3 {

    margin:
        0 0 7px;

    color:
        #fff;

    font-size:
        20px;

}


.about-page-production-list p {

    margin:
        0;

    color:
        rgba(255, 255, 255, .55);

    font-size:
        13px;

}


/* =========================================================
   GALLERY
========================================================= */

.about-page-gallery {

    padding:
        110px 0;

    background:
        #f6f8fb;

}


.about-page-gallery .section-heading {

    max-width:
        680px;

}


.about-page-gallery-grid {

    display:
        grid;

    grid-template-columns:
        repeat(3, 1fr);

    grid-auto-rows:
        270px;

    gap:
        14px;

    margin-top:
        42px;

}


.about-page-gallery-grid figure {

    position:
        relative;

    margin:
        0;

    overflow:
        hidden;

    border-radius:
        18px;

    background:
        #dfe5ec;

}


.about-page-gallery-main {

    grid-column:
        span 2;

    grid-row:
        span 2;

}


.about-page-gallery-grid img {

    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

    transition:
        transform .45s ease;

}


.about-page-gallery-grid figure:hover img {

    transform:
        scale(1.04);

}


.about-page-gallery-grid figcaption {

    position:
        absolute;

    inset-inline-start:
        15px;

    bottom:
        15px;

    padding:
        7px 11px;

    border-radius:
        8px;

    background:
        rgba(7, 18, 33, .83);

    color:
        #fff;

    font-size:
        10px;

    font-weight:
        700;

}


/* =========================================================
   CERTIFICATES
========================================================= */

.about-page-certificates {

    padding:
        110px 0;

    background:
        #fff;

}


.about-page-certificates-head {

    display:
        grid;

    grid-template-columns:
        1fr .8fr;

    align-items:
        end;

    gap:
        60px;

    margin-bottom:
        45px;

}


.about-page-certificates-head h2 {

    margin:
        0;

    color:
        #0e1b2c;

    font-size:
        clamp(38px,
            4vw,
            54px);

    line-height:
        1.08;

    font-weight:
        850;

}


.about-page-certificates-head>p {

    margin:
        0;

    color:
        #778392;

    font-size:
        14px;

    line-height:
        1.8;

}


.about-page-certificates-grid {

    display:
        grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap:
        16px;

}


.about-page-certificate {

    position:
        relative;

    min-height:
        390px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    padding:
        16px;

    overflow:
        hidden;

    border:
        1px solid #e1e7ed;

    border-radius:
        18px;

    background:
        #f9fafb;

    transition:
        transform .3s ease,
        box-shadow .3s ease;

}


.about-page-certificate:hover {

    transform:
        translateY(-6px);

    box-shadow:
        0 22px 55px rgba(13, 31, 52, .09);

}


.about-page-certificate img {

    display:
        block;

    width:
        100%;

    height:
        350px;

    object-fit:
        contain;

    background:
        #fff;

}


.about-page-certificate>span {

    position:
        absolute;

    inset-inline-end:
        12px;

    top:
        12px;

    width:
        31px;

    height:
        31px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        50%;

    background:
        #0a1627;

    color:
        #fff;

    font-size:
        9px;

    font-weight:
        800;

}


/* =========================================================
   QUALITY
========================================================= */

.about-page-quality {

    padding:
        25px 0 110px;

    background:
        #fff;

}


.about-page-quality-box {

    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        55px;

    padding:
        55px;

    border-radius:
        26px;

    background:
        linear-gradient(135deg,
            #0a1627,
            #112a47);

}


.about-page-quality-copy h2 {

    margin:
        0;

    color:
        #fff;

    font-size:
        clamp(34px,
            4vw,
            50px);

    line-height:
        1.08;

    font-weight:
        850;

}


.about-page-quality-copy p {

    margin:
        18px 0 0;

    color:
        rgba(255, 255, 255, .6);

    font-size:
        14px;

    line-height:
        1.8;

}


.about-page-quality-list {

    display:
        grid;

    gap:
        11px;

}


.about-page-quality-list div {

    min-height:
        68px;

    display:
        flex;

    align-items:
        center;

    gap:
        15px;

    padding:
        15px 17px;

    border:
        1px solid rgba(255, 255, 255, .1);

    border-radius:
        13px;

    background:
        rgba(255, 255, 255, .04);

}


.about-page-quality-list span {

    color:
        #63b0ff;

    font-size:
        10px;

    font-weight:
        800;

}


.about-page-quality-list strong {

    color:
        #fff;

    font-size:
        13px;

}


/* =========================================================
   CTA
========================================================= */

.about-page-cta {

    padding:
        80px 0;

    background:
        var(--primary);

    color:
        #fff;

}


.about-page-cta-inner {

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        50px;

}


.about-page-cta-inner>div:first-child {

    max-width:
        760px;

}


.about-page-cta-inner>div:first-child>span {

    font-size:
        10px;

    font-weight:
        850;

    letter-spacing:
        .13em;

}


.about-page-cta h2 {

    margin:
        8px 0;

    font-size:
        clamp(34px,
            4vw,
            50px);

    font-weight:
        850;

}


.about-page-cta p {

    margin:
        0;

    opacity:
        .8;

}


.about-page-cta-buttons {

    display:
        flex;

    gap:
        10px;

}


.about-page-cta-products,
.about-page-cta-contact {

    min-height:
        50px;

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    padding:
        0 20px;

    border-radius:
        10px;

    font-size:
        12px;

    font-weight:
        800;

}


.about-page-cta-products {

    background:
        #fff;

    color:
        #101d2d;

}


.about-page-cta-contact {

    border:
        1px solid rgba(255, 255, 255, .48);

    color:
        #fff;

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .about-page-hero-grid,
    .about-page-story-grid,
    .about-page-workshop-grid,
    .about-page-certificates-head,
    .about-page-quality-box {

        grid-template-columns:
            1fr;

    }


    .about-page-hero-grid {

        gap:
            45px;

    }


    .about-page-floating-card {

        inset-inline-start:
            20px;

    }


    .about-page-metrics-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .about-page-capabilities-grid {

        grid-template-columns:
            1fr;

    }


    .about-page-certificates-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .about-page-cta-inner {

        align-items:
            flex-start;

        flex-direction:
            column;

    }

}


@media (max-width: 767px) {

    .about-page-hero {

        padding:
            60px 0 45px;

    }


    .about-page-hero-copy h1 {

        font-size:
            39px;

    }


    .about-page-hero-copy>p {

        font-size:
            14px;

    }


    .about-page-hero-actions {

        flex-direction:
            column;

    }


    .about-page-btn-primary,
    .about-page-btn-outline {

        width:
            100%;

    }


    .about-page-hero-mini {

        gap:
            20px;

    }


    .about-page-floating-card {

        position:
            relative;

        inset:
            auto;

        margin-top:
            10px;

    }


    .about-page-metric {

        padding:
            22px 10px;

    }


    .about-page-metric strong {

        font-size:
            24px;

    }


    .about-page-story,
    .about-page-capabilities,
    .about-page-workshop,
    .about-page-production,
    .about-page-gallery,
    .about-page-certificates {

        padding:
            65px 0;

    }


    .about-page-story-grid {

        gap:
            35px;

    }


    .about-page-story-lead {

        font-size:
            18px !important;

    }


    .about-page-production-list article {

        grid-template-columns:
            45px 1fr;

        gap:
            15px;

    }


    .about-page-gallery-grid {

        grid-template-columns:
            1fr;

        grid-auto-rows:
            240px;

    }


    .about-page-gallery-main {

        grid-column:
            auto;

        grid-row:
            auto;

    }


    .about-page-certificates-grid {

        grid-template-columns:
            1fr;

    }


    .about-page-certificate {

        min-height:
            auto;

    }


    .about-page-certificate img {

        height:
            auto;

        max-height:
            470px;

    }


    .about-page-quality {

        padding:
            0 0 65px;

    }


    .about-page-quality-box {

        padding:
            30px 22px;

    }


    .about-page-cta {

        padding:
            65px 0;

    }


    .about-page-cta-buttons {

        width:
            100%;

        flex-direction:
            column;

    }


    .about-page-cta-products,
    .about-page-cta-contact {

        width:
            100%;

    }

}

/* =========================================================
   FLOATING WHATSAPP
========================================================= */

.floating-whatsapp {

    position: fixed;

    inset-inline-end: 24px;

    bottom: 24px;

    z-index: 1050;

    display: flex;

    align-items: center;

    gap: 11px;

    min-height: 58px;

    padding: 7px 15px 7px 7px;

    border-radius: 999px;

    background: #ffffff;

    color: #122033;

    text-decoration: none;

    border: 1px solid rgba(15, 23, 42, .08);

    box-shadow:
        0 10px 30px rgba(15, 23, 42, .12),
        0 3px 10px rgba(15, 23, 42, .06);

    transition:
        transform .25s ease,
        box-shadow .25s ease;

}


html[dir="rtl"] .floating-whatsapp {

    padding:
        7px 7px 7px 15px;

}


.floating-whatsapp:hover {

    color: #122033;

    transform: translateY(-4px);

    box-shadow:
        0 18px 40px rgba(15, 23, 42, .17);

}


/* ICON */

.floating-whatsapp-icon {

    flex: 0 0 44px;

    width: 44px;

    height: 44px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #25D366;

    color: #fff;

    box-shadow:
        0 5px 15px rgba(37, 211, 102, .25);

}


/* TEXT */

.floating-whatsapp-content {

    display: flex;

    flex-direction: column;

    min-width: 105px;

    line-height: 1.15;

}


.floating-whatsapp-content small {

    margin-bottom: 4px;

    color: #8a95a4;

    font-size: 9px;

    font-weight: 650;

}


.floating-whatsapp-content strong {

    color: #122033;

    font-size: 12px;

    font-weight: 800;

}


/* ARROW */

.floating-whatsapp-arrow {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 22px;

    height: 22px;

    color: #25D366;

    font-size: 17px;

    transition: transform .2s ease;

}


.floating-whatsapp:hover .floating-whatsapp-arrow {

    transform: translateX(3px);

}


html[dir="rtl"] .floating-whatsapp-arrow {

    transform: rotate(180deg);

}


html[dir="rtl"] .floating-whatsapp:hover .floating-whatsapp-arrow {

    transform:
        rotate(180deg) translateX(3px);

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .floating-whatsapp {

        inset-inline-end: 16px;

        bottom: 33px;

        width: 56px;

        height: 56px;

        min-height: 56px;

        padding: 6px;

        justify-content: center;

        border-radius: 50%;

        background: #25D366;

        border: 0;

        box-shadow:
            0 8px 24px rgba(37, 211, 102, .30);

    }


    .floating-whatsapp-icon {

        flex-basis: 44px;

        width: 44px;

        height: 44px;

        box-shadow: none;

    }


    .floating-whatsapp-content,
    .floating-whatsapp-arrow {

        display: none;

    }


    .floating-whatsapp:hover {

        transform: translateY(-3px);

    }

}


/* =========================================================
   PRODUCTS PAGE
========================================================= */

.products-page {
    background: #fff;
    color: #102033;
}


/* =========================================================
   HERO
========================================================= */

.products-hero {
    position: relative;
    overflow: hidden;
    padding: 82px 0 74px;
    background:
        radial-gradient(circle at 85% 10%, rgba(42, 114, 255, .15), transparent 30%),
        linear-gradient(135deg, #071626 0%, #0c2138 55%, #0f2d4f 100%);
    color: #fff;
}

.products-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .13;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
    background-size: 50px 50px;
}

.products-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 50px;
    align-items: end;
}

.products-hero-copy {
    max-width: 780px;
}

.products-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    padding: 8px 13px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 999px;
    background: rgba(255, 255, 255, .07);
    backdrop-filter: blur(8px);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .05em;
}

.products-hero-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #3f8cff;
    box-shadow: 0 0 0 6px rgba(63, 140, 255, .12);
}

.products-hero h1 {
    max-width: 850px;
    margin: 0 0 20px;
    font-size: clamp(42px, 5.5vw, 72px);
    line-height: 1.02;
    font-weight: 850;
    letter-spacing: -.045em;
}

.products-hero p {
    max-width: 690px;
    margin: 0;
    color: rgba(255, 255, 255, .73);
    font-size: 16px;
    line-height: 1.85;
}

.products-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.btn-products-primary,
.btn-products-secondary {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 20px;
    border-radius: 11px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 750;
    transition: .25s ease;
}

.btn-products-primary {
    background: var(--primary, #2563eb);
    color: #fff;
    box-shadow: 0 9px 24px rgba(37, 99, 235, .24);
}

.btn-products-primary:hover {
    color: #fff;
    transform: translateY(-2px);
}

.btn-products-secondary {
    border: 1px solid rgba(255, 255, 255, .19);
    background: rgba(255, 255, 255, .07);
    color: #fff;
}

.btn-products-secondary:hover {
    background: #fff;
    color: #102033;
}

.products-hero-meta {
    min-width: 180px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 20px;
    background: rgba(255, 255, 255, .07);
    backdrop-filter: blur(10px);
}

.products-hero-number {
    font-size: 38px;
    font-weight: 850;
    line-height: 1;
}

.products-hero-number-label {
    margin-top: 8px;
    color: rgba(255, 255, 255, .64);
    font-size: 12px;
}


/* =========================================================
   GENERIC HEADING
========================================================= */

.products-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}

.products-section-heading>div {
    max-width: 700px;
}

.products-section-label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary, #2563eb);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.products-section-heading h2 {
    margin: 0;
    color: #102033;
    font-size: clamp(28px, 3.5vw, 43px);
    font-weight: 850;
    letter-spacing: -.035em;
}

.products-section-heading>p {
    max-width: 430px;
    margin: 0;
    color: #738095;
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   CATEGORIES
========================================================= */

.products-categories {
    padding: 76px 0;
    background: #f6f8fb;
}

.products-category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.products-category-card {
    overflow: hidden;
    display: block;
    border: 1px solid #e7ebf0;
    border-radius: 18px;
    background: #fff;
    text-decoration: none;
    color: #102033;
    box-shadow: 0 8px 25px rgba(15, 23, 42, .045);
    transition: .3s ease;
}

.products-category-card:hover {
    transform: translateY(-5px);
    border-color: rgba(37, 99, 235, .25);
    box-shadow: 0 15px 36px rgba(15, 23, 42, .09);
}

.products-category-image {
    position: relative;
    height: 160px;
    overflow: hidden;
    background: linear-gradient(145deg, #f9fbfd, #eef3f8);
}

.products-category-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 16px;
    transition: transform .35s ease;
}

.products-category-card:hover .products-category-image img {
    transform: scale(1.045);
}

.products-category-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 17px 18px 18px;
}

.products-category-content h3 {
    margin: 0;
    color: #142338;
    font-size: 14px;
    font-weight: 800;
}

.products-category-content span {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary, #2563eb);
    font-size: 10px;
    font-weight: 800;
}


/* =========================================================
   CATALOG
========================================================= */

.products-catalog {
    padding: 82px 0 95px;
    background: #fff;
}

.catalog-heading {
    margin-bottom: 26px;
}


/* =========================================================
   FILTER
========================================================= */

.products-filter-bar {
    display: grid;
    grid-template-columns:
        minmax(240px, 1fr) minmax(205px, 270px) auto auto;
    gap: 10px;
    align-items: center;
    padding: 13px;
    border: 1px solid #e5eaf0;
    border-radius: 16px;
    background: #f8fafc;
}

.products-search-box,
.products-category-select-wrap {
    position: relative;
}

.products-search-box>i,
.products-category-select-wrap>i {
    position: absolute;
    inset-inline-start: 15px;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
    color: #8a97a7;
    font-size: 13px;
    pointer-events: none;
}

.products-search-box input,
.products-category-select {
    width: 100%;
    height: 46px;
    border: 1px solid #dce3ea;
    outline: none;
    border-radius: 10px;
    background: #fff;
    color: #152338;
    font-size: 13px;
    transition: .2s ease;
}

.products-search-box input {
    padding:
        0 15px 0 42px;
}

html[dir="rtl"] .products-search-box input {
    padding:
        0 42px 0 15px;
}

.products-category-select {
    appearance: none;
    padding:
        0 35px 0 42px;
}

html[dir="rtl"] .products-category-select {
    padding:
        0 42px 0 35px;
}

.products-search-box input:focus,
.products-category-select:focus {
    border-color: var(--primary, #2563eb);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .08);
}

.products-filter-button {
    height: 46px;
    border: 0;
    border-radius: 10px;
    padding: 0 18px;
    background: #102033;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    transition: .2s ease;
}

.products-filter-button:hover {
    background: var(--primary, #2563eb);
}

.products-filter-reset {
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 15px;
    border: 1px solid #dce3ea;
    border-radius: 10px;
    background: #fff;
    color: #6b778a;
    text-decoration: none;
    font-size: 11px;
    font-weight: 750;
}


/* =========================================================
   CATALOG SUMMARY
========================================================= */

.products-catalog-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 18px 0 24px;
    color: #778396;
    font-size: 12px;
}

.products-catalog-summary strong {
    color: #122033;
}

.products-search-current {
    color: #778396;
}


/* =========================================================
   PRODUCT GRID
========================================================= */

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

.product-modern-card {
    overflow: hidden;
    border: 1px solid #e5eaf0;
    border-radius: 19px;
    background: #fff;
    box-shadow: 0 9px 28px rgba(15, 23, 42, .045);
    transition:
        transform .28s ease,
        box-shadow .28s ease,
        border-color .28s ease;
}

.product-modern-card:hover {
    transform: translateY(-6px);
    border-color: rgba(37, 99, 235, .22);
    box-shadow: 0 20px 45px rgba(15, 23, 42, .09);
}


/* PRODUCT IMAGE */

.product-modern-image {
    position: relative;
    display: block;
    height: 275px;
    overflow: hidden;
    background:
        linear-gradient(150deg, #fbfcfd, #f1f4f7);
}

.product-modern-image::after {
    content: "";
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: 12%;
    height: 15px;
    background: rgba(15, 23, 42, .10);
    filter: blur(12px);
    border-radius: 50%;
}

.product-modern-image img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 25px 20px;
    transition: transform .4s ease;
}

.product-modern-card:hover .product-modern-image img {
    transform: scale(1.045);
}

.product-category-badge {
    position: absolute;
    top: 14px;
    inset-inline-start: 14px;
    z-index: 5;
    max-width: 70%;
    padding: 6px 10px;
    border: 1px solid rgba(15, 23, 42, .07);
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(8px);
    color: #304158;
    font-size: 9px;
    font-weight: 800;
}

.product-image-action {
    position: absolute;
    top: 14px;
    inset-inline-end: 14px;
    z-index: 5;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #102033;
    color: #fff;
    font-size: 11px;
    opacity: 0;
    transform: translateY(-5px);
    transition: .25s ease;
}

.product-modern-card:hover .product-image-action {
    opacity: 1;
    transform: translateY(0);
}


/* PRODUCT BODY */

.product-modern-body {
    padding: 20px;
}

.product-modern-code {
    margin-bottom: 9px;
    color: #8a95a4;
    font-size: 9px;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.product-modern-code span {
    color: var(--primary, #2563eb);
}

.product-modern-body h3 {
    margin: 0;
    font-size: 17px;
    line-height: 1.4;
    font-weight: 850;
}

.product-modern-body h3 a {
    color: #142338;
    text-decoration: none;
}

.product-modern-body h3 a:hover {
    color: var(--primary, #2563eb);
}

.product-modern-body p {
    min-height: 58px;
    margin: 11px 0 0;
    color: #7a8697;
    font-size: 12px;
    line-height: 1.65;
}

.product-modern-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 19px;
    padding-top: 15px;
    border-top: 1px solid #edf0f3;
}

.product-view-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #142338;
    text-decoration: none;
    font-size: 11px;
    font-weight: 850;
}

.product-view-link i {
    color: var(--primary, #2563eb);
    transition: transform .2s ease;
}

.product-view-link:hover {
    color: var(--primary, #2563eb);
}

.product-view-link:hover i {
    transform: translateX(3px);
}

html[dir="rtl"] .product-view-link:hover i {
    transform: translateX(-3px);
}

.product-quote-link {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: #f2f5f8;
    color: #26384e;
    text-decoration: none;
    font-size: 12px;
    transition: .2s ease;
}

.product-quote-link:hover {
    background: var(--primary, #2563eb);
    color: #fff;
}


/* =========================================================
   EMPTY RESULTS
========================================================= */

.products-empty-state {
    padding: 65px 25px;
    text-align: center;
    border: 1px dashed #dce3eb;
    border-radius: 18px;
    background: #f9fbfc;
}

.products-empty-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: var(--primary, #2563eb);
    box-shadow: 0 8px 23px rgba(15, 23, 42, .07);
}

.products-empty-state h3 {
    margin: 0 0 8px;
    color: #13243a;
    font-size: 21px;
    font-weight: 850;
}

.products-empty-state p {
    max-width: 480px;
    margin: 0 auto 20px;
    color: #7b8798;
    font-size: 13px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {

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

}


@media (max-width: 991px) {

    .products-hero {
        padding: 62px 0;
    }

    .products-hero-inner {
        grid-template-columns: 1fr;
    }

    .products-hero-meta {
        width: fit-content;
    }

    .products-section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .products-filter-bar {
        grid-template-columns:
            1fr 1fr;
    }

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

}


@media (max-width: 767px) {

    .products-hero {
        padding: 48px 0;
    }

    .products-hero h1 {
        font-size: 39px;
    }

    .products-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .btn-products-primary,
    .btn-products-secondary {
        width: 100%;
    }

    .products-categories {
        padding: 55px 0;
    }

    .products-category-grid {
        grid-template-columns: 1fr;
    }

    .products-category-image {
        height: 190px;
    }

    .products-catalog {
        padding: 58px 0 75px;
    }

    .products-filter-bar {
        grid-template-columns: 1fr;
    }

    .products-filter-button,
    .products-filter-reset {
        width: 100%;
    }

    .products-catalog-summary {
        align-items: flex-start;
        flex-direction: column;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-modern-image {
        height: 250px;
    }

}


/* =========================================================
   CATEGORY MAIN PAGE
========================================================= */

.category-main-page {
    background: #fff;
}


/* =========================================================
   CATEGORY HERO
========================================================= */

.category-main-hero {
    position: relative;
    overflow: hidden;

    padding: 70px 0;

    background:
        radial-gradient(circle at 85% 20%,
            rgba(37, 99, 235, .18),
            transparent 30%),
        linear-gradient(135deg,
            #071626 0%,
            #0b2139 55%,
            #102f50 100%);

    color: #fff;
}


.category-main-hero::before {

    content: "";

    position: absolute;

    inset: 0;

    opacity: .12;

    background-image:

        linear-gradient(rgba(255, 255, 255, .08) 1px,
            transparent 1px),

        linear-gradient(90deg,
            rgba(255, 255, 255, .08) 1px,
            transparent 1px);

    background-size:
        48px 48px;

    pointer-events: none;
}


.category-main-hero-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr) minmax(380px, 520px);

    gap: 65px;

    align-items: center;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.category-main-breadcrumb {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 9px;

    margin-bottom: 25px;

    font-size: 11px;

    font-weight: 650;
}


.category-main-breadcrumb a {

    color:
        rgba(255, 255, 255, .58);

    text-decoration: none;

    transition: color .2s ease;
}


.category-main-breadcrumb a:hover {

    color: #fff;
}


.category-main-breadcrumb span {

    color: #fff;
}


.category-main-breadcrumb i {

    color:
        rgba(255, 255, 255, .25);

    font-size: 8px;
}


html[dir="rtl"] .category-main-breadcrumb i {

    transform:
        rotate(180deg);
}


/* =========================================================
   HERO CONTENT
========================================================= */

.category-main-label {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 15px;

    color: #80afff;

    font-size: 11px;

    font-weight: 850;

    letter-spacing: .12em;

    text-transform: uppercase;
}


.category-main-label span {

    width: 25px;

    height: 2px;

    background: #3b82f6;
}


.category-main-hero-content h1 {

    max-width: 720px;

    margin:
        0 0 20px;

    font-size:
        clamp(40px,
            5vw,
            68px);

    line-height: 1.04;

    font-weight: 850;

    letter-spacing: -.04em;
}


.category-main-hero-content p {

    max-width: 650px;

    margin: 0;

    color:
        rgba(255, 255, 255, .70);

    font-size: 15px;

    line-height: 1.85;
}


.category-main-hero-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 29px;
}


/* =========================================================
   HERO IMAGE
========================================================= */

.category-main-hero-visual {

    position: relative;
}


.category-main-image-frame {

    position: relative;

    min-height: 390px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 25px;

    overflow: hidden;

    border:
        1px solid rgba(255, 255, 255, .14);

    border-radius: 28px;

    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, .13),
            rgba(255, 255, 255, .04));

    box-shadow:
        0 30px 60px rgba(0, 0, 0, .18);

    backdrop-filter:
        blur(8px);
}


.category-main-image-frame::before {

    content: "";

    position: absolute;

    width: 250px;

    height: 250px;

    border-radius: 50%;

    background:
        rgba(37, 99, 235, .17);

    filter:
        blur(25px);
}


.category-main-image-frame img {

    position: relative;

    z-index: 2;

    width: 100%;

    height: 330px;

    object-fit: contain;

    filter:
        drop-shadow(0 25px 24px rgba(0, 0, 0, .20));
}


/* =========================================================
   PRODUCT COUNT
========================================================= */

.category-main-image-stat {

    position: absolute;

    z-index: 5;

    inset-inline-start: 18px;

    bottom: 18px;

    min-width: 135px;

    padding:
        14px 17px;

    border:
        1px solid rgba(255, 255, 255, .13);

    border-radius: 15px;

    background:
        rgba(7, 22, 38, .80);

    backdrop-filter:
        blur(12px);
}


.category-main-image-stat strong {

    display: block;

    color: #fff;

    font-size: 24px;

    font-weight: 850;

    line-height: 1;
}


.category-main-image-stat span {

    display: block;

    margin-top: 6px;

    color:
        rgba(255, 255, 255, .55);

    font-size: 9px;

    font-weight: 650;
}


/* =========================================================
   INTRO
========================================================= */

.category-main-intro {

    padding:
        58px 0;

    border-bottom:
        1px solid #edf0f3;

    background: #fff;
}


.category-main-intro-grid {

    display: grid;

    grid-template-columns:
        minmax(0, .9fr) minmax(0, 1.1fr);

    gap: 65px;

    align-items: end;
}


.category-main-intro h2 {

    margin: 0;

    color: #122239;

    font-size:
        clamp(29px,
            3.5vw,
            42px);

    font-weight: 850;

    letter-spacing: -.035em;
}


.category-main-intro p {

    margin: 0;

    max-width: 650px;

    color: #768396;

    font-size: 14px;

    line-height: 1.9;
}


/* =========================================================
   PRODUCTS
========================================================= */

.category-products-catalog {

    background: #f8fafc;
}


/* =========================================================
   FILTER
========================================================= */

.category-product-filter {

    display: grid;

    grid-template-columns:
        minmax(260px, 1fr) auto auto;

    gap: 10px;

    padding: 13px;

    border:
        1px solid #e4e9ef;

    border-radius: 16px;

    background: #fff;

    box-shadow:
        0 8px 25px rgba(15, 23, 42, .035);
}


.category-product-filter .products-filter-button {

    min-width: 115px;
}


/* =========================================================
   ERROR
========================================================= */

.category-error-page {

    min-height: 70vh;

    display: flex;

    align-items: center;

    padding:
        80px 0;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .category-main-hero-grid {

        grid-template-columns:
            1fr;

        gap: 40px;

    }


    .category-main-hero-visual {

        max-width: 650px;

    }


    .category-main-intro-grid {

        grid-template-columns:
            1fr;

        gap: 20px;

    }

}


@media (max-width: 767px) {

    .category-main-hero {

        padding:
            45px 0;

    }


    .category-main-hero-content h1 {

        font-size: 38px;

    }


    .category-main-hero-actions {

        flex-direction: column;

    }


    .category-main-hero-actions .btn-products-primary,

    .category-main-hero-actions .btn-products-secondary {

        width: 100%;

    }


    .category-main-image-frame {

        min-height: 300px;

        border-radius: 20px;

    }


    .category-main-image-frame img {

        height: 245px;

    }


    .category-main-intro {

        padding:
            45px 0;

    }


    .category-product-filter {

        grid-template-columns:
            1fr;

    }


    .category-product-filter .products-filter-button,

    .category-product-filter .products-filter-reset {

        width: 100%;

    }

}


/* =========================================================
   PRODUCT SINGLE PAGE
========================================================= */

.product-single-page {
    background: #fff;
    color: #102033;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.product-breadcrumb-section {
    padding: 17px 0;
    border-bottom: 1px solid #e8edf2;
    background: #f8fafc;
}

.product-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    color: #8a96a7;
    font-size: 11px;
}

.product-breadcrumb a {
    color: #667488;
    text-decoration: none;
    transition: .2s ease;
}

.product-breadcrumb a:hover {
    color: var(--primary, #2563eb);
}

.product-breadcrumb i {
    color: #bec6d0;
    font-size: 7px;
}

.product-breadcrumb span {
    color: #17283e;
    font-weight: 750;
}

html[dir="rtl"] .product-breadcrumb i {
    transform: rotate(180deg);
}


/* =========================================================
   PRODUCT MAIN
========================================================= */

.product-main-section {
    position: relative;
    padding: 62px 0 72px;
    overflow: hidden;
}

.product-main-section::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -200px;
    width: 550px;
    height: 550px;
    border-radius: 50%;
    background: rgba(37, 99, 235, .035);
    pointer-events: none;
}

.product-main-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns:
        minmax(0, 1.06fr) minmax(0, .94fr);
    gap: 65px;
    align-items: start;
}


/* =========================================================
   GALLERY
========================================================= */

.product-gallery {
    min-width: 0;
}

.product-main-image-wrap {
    position: relative;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #e5eaf0;
    border-radius: 26px;
    background:
        radial-gradient(circle at center,
            #fff 0%,
            #f7f9fb 60%,
            #f0f3f6 100%);
}

.product-main-image-wrap::after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 17%;
    right: 17%;
    bottom: 10%;
    height: 25px;
    border-radius: 50%;
    background: rgba(15, 23, 42, .10);
    filter: blur(18px);
}

.product-main-image-wrap>img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    padding: 42px;
    object-fit: contain;
    cursor: zoom-in;
    transition: transform .35s ease;
}

.product-main-image-wrap:hover>img {
    transform: scale(1.025);
}

.product-single-category {
    position: absolute;
    z-index: 5;
    top: 18px;
    inset-inline-start: 18px;
    max-width: 65%;
    padding: 8px 13px;
    border: 1px solid rgba(15, 23, 42, .06);
    border-radius: 999px;
    background: rgba(255, 255, 255, .90);
    color: #30435a;
    text-decoration: none;
    backdrop-filter: blur(10px);
    font-size: 10px;
    font-weight: 800;
}

.product-single-category:hover {
    color: var(--primary, #2563eb);
}

.product-image-zoom {
    position: absolute;
    z-index: 5;
    top: 18px;
    inset-inline-end: 18px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e1e7ed;
    border-radius: 50%;
    background: rgba(255, 255, 255, .94);
    color: #1e3046;
    font-size: 13px;
    cursor: pointer;
    transition: .25s ease;
}

.product-image-zoom:hover {
    border-color: var(--primary, #2563eb);
    background: var(--primary, #2563eb);
    color: #fff;
}


/* =========================================================
   THUMBNAILS
========================================================= */

.product-thumbnail-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-top: 12px;
}

.product-thumbnail {
    height: 95px;
    overflow: hidden;
    padding: 6px;
    border: 1px solid #e1e6ec;
    border-radius: 12px;
    background: #f8fafc;
    cursor: pointer;
    transition: .2s ease;
}

.product-thumbnail:hover,
.product-thumbnail.active {
    border-color: var(--primary, #2563eb);
    background: #fff;
    box-shadow: 0 5px 18px rgba(15, 23, 42, .07);
}

.product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* =========================================================
   CONTENT
========================================================= */

.product-single-content {
    padding-top: 10px;
}

.product-single-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: var(--primary, #2563eb);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.product-single-label span {
    width: 28px;
    height: 2px;
    background: var(--primary, #2563eb);
}

.product-single-content h1 {
    margin: 0;
    color: #102138;
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1.08;
    font-weight: 850;
    letter-spacing: -.04em;
}

.product-info-line {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 23px;
    margin-top: 20px;
    padding: 14px 0;
    border-top: 1px solid #edf0f3;
    border-bottom: 1px solid #edf0f3;
}

.product-info-item {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #7c8999;
    font-size: 10px;
}

.product-info-item i {
    color: var(--primary, #2563eb);
}

.product-info-item strong {
    color: #26384d;
}

.product-intro-text {
    margin-top: 22px;
    color: #68778b;
    font-size: 14px;
    line-height: 1.9;
}


/* =========================================================
   FEATURE BOXES
========================================================= */

.product-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
    margin-top: 24px;
}

.product-feature-box {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px;
    border: 1px solid #e8ecf1;
    border-radius: 12px;
    background: #f9fafc;
}

.product-feature-icon {
    flex: 0 0 35px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: #fff;
    color: var(--primary, #2563eb);
    box-shadow: 0 3px 10px rgba(15, 23, 42, .05);
    font-size: 12px;
}

.product-feature-box strong,
.product-feature-box span {
    display: block;
}

.product-feature-box strong {
    color: #203248;
    font-size: 10px;
    font-weight: 800;
}

.product-feature-box span {
    margin-top: 3px;
    color: #909ba9;
    font-size: 8px;
    line-height: 1.4;
}


/* =========================================================
   ACTION BUTTONS
========================================================= */

.product-single-actions {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    margin-top: 26px;
}

.product-whatsapp-btn {
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 18px;
    border-radius: 13px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(37, 211, 102, .20);
    transition: .25s ease;
}

.product-whatsapp-btn>i {
    font-size: 24px;
}

.product-whatsapp-btn span,
.product-whatsapp-btn small,
.product-whatsapp-btn strong {
    display: block;
}

.product-whatsapp-btn small {
    margin-bottom: 2px;
    color: rgba(255, 255, 255, .78);
    font-size: 8px;
}

.product-whatsapp-btn strong {
    color: #fff;
    font-size: 12px;
}

.product-whatsapp-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(37, 211, 102, .27);
}

.product-contact-btn {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 19px;
    border: 1px solid #dfe5eb;
    border-radius: 13px;
    background: #fff;
    color: #24374d;
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
    transition: .2s ease;
}

.product-contact-btn:hover {
    border-color: #102033;
    background: #102033;
    color: #fff;
}

.product-sales-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 13px;
    color: #7d8999;
    font-size: 10px;
}

.product-sales-note i {
    color: #22a866;
}


/* =========================================================
   DETAILS NAV
========================================================= */

.product-detail-nav-section {
    position: sticky;
    top: 0;
    z-index: 20;
    border-top: 1px solid #e7ebf0;
    border-bottom: 1px solid #e7ebf0;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(12px);
}

.product-detail-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    overflow-x: auto;
    scrollbar-width: none;
}

.product-detail-nav::-webkit-scrollbar {
    display: none;
}

.product-detail-nav a {
    position: relative;
    flex: 0 0 auto;
    padding: 18px 0;
    color: #657386;
    text-decoration: none;
    font-size: 11px;
    font-weight: 750;
}

.product-detail-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -1px;
    height: 2px;
    background: var(--primary, #2563eb);
    transition: .25s ease;
}

.product-detail-nav a:hover {
    color: #102033;
}

.product-detail-nav a:hover::after {
    right: 0;
}


/* =========================================================
   SECTION HEADINGS
========================================================= */

.product-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 27px;
}

.product-section-label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary, #2563eb);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.product-section-heading h2 {
    margin: 0;
    color: #13243a;
    font-size: clamp(27px, 3vw, 40px);
    font-weight: 850;
    letter-spacing: -.035em;
}

.product-section-number {
    color: #e4e9ef;
    font-size: 50px;
    font-weight: 900;
    line-height: 1;
}


/* =========================================================
   OVERVIEW
========================================================= */

.product-overview-section {
    padding: 78px 0;
    background: #fff;
}

.product-overview-card {
    position: relative;
    overflow: hidden;
    padding: 38px 42px;
    border: 1px solid #e6ebf0;
    border-radius: 21px;
    background: #f9fafc;
}

.product-overview-line {
    position: absolute;
    top: 0;
    bottom: 0;
    inset-inline-start: 0;
    width: 4px;
    background: var(--primary, #2563eb);
}

.product-description-content {
    color: #627186;
    font-size: 14px;
    line-height: 2;
}

.product-description-content p:last-child {
    margin-bottom: 0;
}

.product-description-content h2,
.product-description-content h3,
.product-description-content h4 {
    color: #15273d;
    font-weight: 800;
}


/* =========================================================
   SPECIFICATIONS
========================================================= */

.product-specifications-section {
    padding: 78px 0;
    background: #f6f8fb;
}

.product-specifications-card {
    overflow: hidden;
    border: 1px solid #e1e7ed;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 35px rgba(15, 23, 42, .045);
}

.product-specification-top {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 17px 21px;
    border-bottom: 1px solid #e9edf1;
    background: #102033;
}

.product-specification-top>div {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, .10);
    color: #fff;
}

.product-specification-top p {
    margin: 0;
    color: rgba(255, 255, 255, .70);
    font-size: 11px;
}


/* =========================================================
   DB SPECIFICATION TABLE
========================================================= */

.product-specs-content {
    overflow-x: auto;
}

.product-specs-content table {
    width: 100% !important;
    margin: 0 !important;
    border-collapse: collapse !important;
    background: #fff;
}

.product-specs-content table tr {
    border-bottom: 1px solid #e7ebef;
}

.product-specs-content table tr:last-child {
    border-bottom: 0;
}

.product-specs-content table td,
.product-specs-content table th {
    padding: 14px 19px !important;
    border: 0 !important;
    border-inline-end: 1px solid #edf0f3 !important;
    color: #536277;
    font-size: 12px;
    line-height: 1.55;
    vertical-align: middle;
}

.product-specs-content table td:first-child,
.product-specs-content table th:first-child {
    color: #172a41;
    font-weight: 750;
    background: #f8fafb;
}

.product-specs-content table tr:nth-child(even) td {
    background: #fbfcfd;
}


/* =========================================================
   VIDEO
========================================================= */

.product-video-section {
    padding: 78px 0;
    background: #fff;
}

.product-video-card {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 22px;
    background: #06111d;
    box-shadow: 0 20px 50px rgba(15, 23, 42, .12);
}

.product-video-card video,
.product-video-card iframe {
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
}


/* =========================================================
   CTA
========================================================= */

.product-cta-section {
    padding: 38px 0 78px;
    background: #fff;
}

.product-cta-box {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: 38px 42px;
    border-radius: 23px;
    background:
        radial-gradient(circle at 90% 10%,
            rgba(59, 130, 246, .35),
            transparent 32%),
        linear-gradient(135deg,
            #071626,
            #102f50);
}

.product-cta-box::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .11;
    background-image:
        linear-gradient(rgba(255, 255, 255, .1) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, .1) 1px,
            transparent 1px);
    background-size: 42px 42px;
}

.product-cta-content,
.product-cta-actions {
    position: relative;
    z-index: 2;
}

.product-cta-content {
    max-width: 660px;
}

.product-cta-content>span {
    display: block;
    margin-bottom: 8px;
    color: #79aaff;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.product-cta-content h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(27px, 3vw, 39px);
    font-weight: 850;
}

.product-cta-content p {
    max-width: 580px;
    margin: 11px 0 0;
    color: rgba(255, 255, 255, .64);
    font-size: 12px;
    line-height: 1.8;
}

.product-cta-actions {
    display: flex;
    gap: 9px;
}

.product-cta-whatsapp,
.product-cta-contact {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 18px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
}

.product-cta-whatsapp {
    background: #25D366;
    color: #fff;
}

.product-cta-whatsapp:hover {
    color: #fff;
}

.product-cta-contact {
    background: #fff;
    color: #102033;
}

.product-cta-contact:hover {
    color: var(--primary, #2563eb);
}


/* =========================================================
   RELATED
========================================================= */

.product-related-section {
    padding: 75px 0 90px;
    background: #f6f8fb;
}

.product-related-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #26384d;
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
}

.product-related-all:hover {
    color: var(--primary, #2563eb);
}

.product-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 17px;
}

.product-related-card {
    overflow: hidden;
    border: 1px solid #e4e9ef;
    border-radius: 17px;
    background: #fff;
    transition: .3s ease;
}

.product-related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(15, 23, 42, .08);
}

.product-related-image {
    height: 190px;
    display: block;
    overflow: hidden;
    background: #f5f7f9;
}

.product-related-image img {
    width: 100%;
    height: 100%;
    padding: 18px;
    object-fit: contain;
    transition: transform .3s ease;
}

.product-related-card:hover .product-related-image img {
    transform: scale(1.04);
}

.product-related-content {
    padding: 17px;
}

.product-related-content>span {
    display: block;
    margin-bottom: 7px;
    color: var(--primary, #2563eb);
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.product-related-content h3 {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 800;
}

.product-related-content h3 a {
    color: #172940;
    text-decoration: none;
}

.product-related-content h3 a:hover {
    color: var(--primary, #2563eb);
}

.product-related-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 13px;
    color: #687689;
    text-decoration: none;
    font-size: 9px;
    font-weight: 800;
}

.product-related-link i {
    color: var(--primary, #2563eb);
}


/* =========================================================
   LIGHTBOX
========================================================= */

.product-lightbox {
    position: fixed;
    z-index: 999999;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 35px;
    visibility: hidden;
    opacity: 0;
    transition:
        opacity .25s ease,
        visibility .25s ease;
}

.product-lightbox.active {
    visibility: visible;
    opacity: 1;
}

.product-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 10, 18, .92);
    backdrop-filter: blur(8px);
}

.product-lightbox-content {
    position: relative;
    z-index: 2;
    width: min(1100px, 92vw);
    height: min(780px, 85vh);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 30px 50px rgba(0, 0, 0, .4));
}

.product-lightbox-close {
    position: absolute;
    z-index: 4;
    top: 22px;
    inset-inline-end: 25px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

.product-lightbox-close:hover {
    background: #fff;
    color: #102033;
}

body.product-lightbox-open {
    overflow: hidden;
}


/* =========================================================
   ERROR
========================================================= */

.product-error-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    background: #f7f9fb;
}

.product-empty-box {
    max-width: 600px;
    margin: auto;
    padding: 55px 30px;
    text-align: center;
    border: 1px solid #e3e8ed;
    border-radius: 22px;
    background: #fff;
}

.product-empty-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f3f6f9;
    color: var(--primary, #2563eb);
    font-size: 19px;
}

.product-empty-box h1 {
    margin-bottom: 10px;
    color: #15273d;
    font-size: 27px;
    font-weight: 850;
}

.product-empty-box p {
    margin-bottom: 22px;
    color: #7a8798;
}

.product-primary-btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border-radius: 10px;
    background: var(--primary, #2563eb);
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
}

.product-primary-btn:hover {
    color: #fff;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {

    .product-main-grid {
        gap: 40px;
    }

    .product-feature-grid {
        grid-template-columns: 1fr;
    }

    .product-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 991px) {

    .product-main-grid {
        grid-template-columns: 1fr;
    }

    .product-main-image-wrap {
        height: 480px;
    }

    .product-single-content {
        padding-top: 0;
    }

    .product-cta-box {
        align-items: flex-start;
        flex-direction: column;
    }

}


@media (max-width: 767px) {

    .product-main-section {
        padding: 35px 0 50px;
    }

    .product-main-image-wrap {
        height: 340px;
        border-radius: 18px;
    }

    .product-main-image-wrap>img {
        padding: 25px 15px;
    }

    .product-thumbnail-list {
        display: flex;
        overflow-x: auto;
        padding-bottom: 5px;
    }

    .product-thumbnail {
        flex: 0 0 78px;
        height: 75px;
    }

    .product-single-content h1 {
        font-size: 34px;
    }

    .product-single-actions {
        grid-template-columns: 1fr;
    }

    .product-contact-btn {
        width: 100%;
    }

    .product-detail-nav {
        gap: 23px;
    }

    .product-overview-section,
    .product-specifications-section,
    .product-video-section {
        padding: 55px 0;
    }

    .product-overview-card {
        padding: 25px 22px;
    }

    .product-section-number {
        display: none;
    }

    .product-specs-content table {
        min-width: 650px;
    }

    .product-cta-section {
        padding: 25px 0 55px;
    }

    .product-cta-box {
        padding: 27px 22px;
        border-radius: 18px;
    }

    .product-cta-actions {
        width: 100%;
        flex-direction: column;
    }

    .product-cta-whatsapp,
    .product-cta-contact {
        width: 100%;
    }

    .product-related-grid {
        grid-template-columns: 1fr;
    }

    .product-related-image {
        height: 230px;
    }

    .product-lightbox {
        padding: 15px;
    }

}

/* =========================================================
   PRODUCT TAGS
========================================================= */

.product-tags-section {

    padding: 18px 0;

    border-top:
        1px solid #e7ebf0;

    border-bottom:
        1px solid #e7ebf0;

    background:
        #f8fafc;

}


.product-tags-box {

    display: flex;

    align-items: center;

    gap: 20px;

}


.product-tags-title {

    flex: 0 0 auto;

    display: flex;

    align-items: center;

    gap: 8px;

    color:
        #34455b;

    font-size: 11px;

    font-weight: 800;

}


.product-tags-title i {

    color:
        var(--primary, #2563eb);

}


.product-tags-list {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 8px;

}


.product-tag-item {

    display: inline-flex;

    align-items: center;

    gap: 3px;

    padding:
        7px 11px;

    border:
        1px solid #dde4eb;

    border-radius:
        999px;

    background:
        #fff;

    color:
        #566579;

    text-decoration:
        none;

    font-size:
        10px;

    font-weight:
        750;

    transition:
        all .2s ease;

}


.product-tag-item span {

    color:
        var(--primary, #2563eb);

    font-weight:
        900;

}


.product-tag-item:hover {

    border-color:
        var(--primary, #2563eb);

    background:
        var(--primary, #2563eb);

    color:
        #fff;

    transform:
        translateY(-2px);

}


.product-tag-item:hover span {

    color:
        #fff;

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .product-tags-box {

        align-items:
            flex-start;

        flex-direction:
            column;

        gap: 12px;

    }

}

/* =========================================================
   TAG PAGE
========================================================= */

.tag-page {
    background: #fff;
}


/* =========================================================
   HERO
========================================================= */

.tag-hero {
    position: relative;
    overflow: hidden;

    padding: 62px 0;

    background:
        radial-gradient(circle at 85% 15%,
            rgba(37, 99, 235, .18),
            transparent 32%),
        linear-gradient(135deg,
            #071626 0%,
            #0d243d 60%,
            #113352 100%);

    color: #fff;
}


.tag-hero::before {

    content: "";

    position: absolute;

    inset: 0;

    opacity: .10;

    background-image:
        linear-gradient(rgba(255, 255, 255, .09) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, .09) 1px,
            transparent 1px);

    background-size:
        48px 48px;

    pointer-events: none;
}


.tag-hero-inner {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: end;

    justify-content: space-between;

    gap: 40px;
}


.tag-hero-content {

    max-width: 780px;
}


.tag-breadcrumb {

    margin-bottom: 25px;
}


.tag-breadcrumb a {

    color:
        rgba(255, 255, 255, .56);
}


.tag-breadcrumb span {

    color: #fff;
}


.tag-breadcrumb i {

    color:
        rgba(255, 255, 255, .25);
}


.tag-hero-label {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 13px;

    color: #82afff;

    font-size: 10px;

    font-weight: 850;

    letter-spacing: .11em;

    text-transform: uppercase;
}


.tag-hero-content h1 {

    margin: 0;

    font-size:
        clamp(42px,
            6vw,
            72px);

    line-height: 1;

    font-weight: 900;

    letter-spacing: -.045em;
}


.tag-hero-content p {

    max-width: 650px;

    margin: 18px 0 0;

    color:
        rgba(255, 255, 255, .68);

    font-size: 14px;

    line-height: 1.85;
}


/* =========================================================
   HERO STAT
========================================================= */

.tag-hero-stat {

    flex: 0 0 auto;

    min-width: 155px;

    padding: 20px 23px;

    border:
        1px solid rgba(255, 255, 255, .14);

    border-radius: 18px;

    background:
        rgba(255, 255, 255, .07);

    backdrop-filter:
        blur(10px);
}


.tag-hero-stat strong {

    display: block;

    color: #fff;

    font-size: 34px;

    font-weight: 900;

    line-height: 1;
}


.tag-hero-stat span {

    display: block;

    margin-top: 7px;

    color:
        rgba(255, 255, 255, .55);

    font-size: 9px;

    font-weight: 700;
}


/* =========================================================
   RESULTS
========================================================= */

.tag-results-section {

    padding:
        75px 0 95px;

    background:
        #f8fafc;
}


.tag-results-summary {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 24px;

    padding:
        13px 16px;

    border:
        1px solid #e3e8ed;

    border-radius:
        12px;

    background: #fff;

    color: #758295;

    font-size: 11px;
}


.tag-results-summary>div {

    display: flex;

    align-items: center;

    gap: 7px;
}


.tag-results-summary i {

    color:
        var(--primary, #2563eb);
}


.tag-results-summary strong {

    color: #17283e;
}


.tag-results-summary>a {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: #26384e;

    text-decoration: none;

    font-size: 10px;

    font-weight: 800;
}


.tag-results-summary>a:hover {

    color:
        var(--primary, #2563eb);
}


/* =========================================================
   ERROR
========================================================= */

.tag-error-page {

    min-height: 70vh;

    display: flex;

    align-items: center;

    padding:
        80px 0;

    background:
        #f8fafc;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .tag-hero {

        padding:
            43px 0;

    }


    .tag-hero-inner {

        align-items:
            flex-start;

        flex-direction:
            column;

    }


    .tag-hero-content h1 {

        font-size:
            42px;

    }


    .tag-hero-stat {

        width: 100%;

    }


    .tag-results-section {

        padding:
            55px 0 75px;

    }


    .tag-results-summary {

        align-items:
            flex-start;

        flex-direction:
            column;

    }

}

/* =========================================================
   CONTACT PAGE
========================================================= */

.contact-page {
    background: #fff;
    color: #112238;
}


/* =========================================================
   HERO
========================================================= */

.contact-hero {

    position: relative;

    overflow: hidden;

    padding:
        76px 0;

    background:
        radial-gradient(circle at 85% 10%,
            rgba(37, 99, 235, .20),
            transparent 30%),
        linear-gradient(135deg,
            #071626 0%,
            #0b223b 58%,
            #103253 100%);

    color: #fff;

}


.contact-hero::before {

    content: "";

    position: absolute;

    inset: 0;

    opacity: .10;

    background-image:

        linear-gradient(rgba(255, 255, 255, .08) 1px,
            transparent 1px),

        linear-gradient(90deg,
            rgba(255, 255, 255, .08) 1px,
            transparent 1px);

    background-size:
        48px 48px;

}


.contact-hero-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr) 320px;

    gap: 70px;

    align-items: end;

}


.contact-hero-content {

    max-width: 800px;

}


.contact-hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 16px;

    color: #8ab6ff;

    font-size: 10px;

    font-weight: 850;

    letter-spacing: .13em;

    text-transform: uppercase;

}


.contact-hero-badge span {

    width: 28px;

    height: 2px;

    background: #438cff;

}


.contact-hero h1 {

    margin:
        0 0 20px;

    max-width: 850px;

    font-size:
        clamp(42px,
            5.5vw,
            70px);

    line-height: 1.03;

    font-weight: 850;

    letter-spacing: -.045em;

}


.contact-hero-content>p {

    max-width: 680px;

    margin: 0;

    color:
        rgba(255, 255, 255, .68);

    font-size: 15px;

    line-height: 1.9;

}


.contact-hero-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 28px;

}


.contact-primary-button,
.contact-whatsapp-button {

    min-height: 50px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding:
        0 20px;

    border-radius: 11px;

    text-decoration: none;

    font-size: 11px;

    font-weight: 800;

    transition:
        .25s ease;

}


.contact-primary-button {

    background:
        var(--primary, #2563eb);

    color: #fff;

}


.contact-primary-button:hover {

    color: #fff;

    transform:
        translateY(-2px);

}


.contact-whatsapp-button {

    border:
        1px solid rgba(255, 255, 255, .16);

    background:
        rgba(255, 255, 255, .07);

    color: #fff;

}


.contact-whatsapp-button i {

    color: #35da75;

    font-size: 17px;

}


.contact-whatsapp-button:hover {

    background: #fff;

    color: #15283e;

}


/* =========================================================
   HERO INFO
========================================================= */

.contact-hero-info {

    padding: 25px;

    border:
        1px solid rgba(255, 255, 255, .14);

    border-radius: 20px;

    background:
        rgba(255, 255, 255, .07);

    backdrop-filter:
        blur(10px);

}


.contact-hero-info-icon {

    width: 44px;

    height: 44px;

    margin-bottom: 17px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 11px;

    background:
        rgba(255, 255, 255, .10);

    color: #78aaff;

}


.contact-hero-info>span {

    display: block;

    margin-bottom: 6px;

    color:
        rgba(255, 255, 255, .48);

    font-size: 9px;

    font-weight: 750;

    text-transform: uppercase;

}


.contact-hero-info>strong {

    display: block;

    color: #fff;

    font-size: 17px;

    font-weight: 800;

}


.contact-hero-info p {

    margin:
        9px 0 0;

    color:
        rgba(255, 255, 255, .57);

    font-size: 11px;

    line-height: 1.7;

}


/* =========================================================
   INFO CARDS
========================================================= */

.contact-info-section {

    position: relative;

    z-index: 4;

    margin-top: -26px;

}


.contact-info-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 14px;

}


.contact-info-card {

    position: relative;

    min-width: 0;

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 20px;

    border:
        1px solid #e2e8ee;

    border-radius: 16px;

    background: #fff;

    color: #172a41;

    text-decoration: none;

    box-shadow:
        0 10px 32px rgba(15, 23, 42, .07);

    transition:
        .25s ease;

}


.contact-info-card:hover {

    color: #172a41;

    transform:
        translateY(-4px);

    box-shadow:
        0 18px 40px rgba(15, 23, 42, .10);

}


.contact-info-icon {

    flex:
        0 0 45px;

    width: 45px;

    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 11px;

    background: #f1f5fa;

    color:
        var(--primary, #2563eb);

    font-size: 15px;

}


.contact-info-whatsapp .contact-info-icon {

    background:
        rgba(37, 211, 102, .10);

    color: #20b858;

}


.contact-info-card>div:nth-child(2) {

    min-width: 0;

    flex: 1;

}


.contact-info-card span,
.contact-info-card strong,
.contact-info-card small {

    display: block;

}


.contact-info-card span {

    margin-bottom: 4px;

    color: #929dab;

    font-size: 8px;

    font-weight: 750;

    text-transform: uppercase;

}


.contact-info-card strong {

    overflow: hidden;

    color: #1a2b41;

    font-size: 12px;

    font-weight: 800;

    text-overflow: ellipsis;

}


.contact-info-card small {

    margin-top: 4px;

    color: #929daa;

    font-size: 8px;

}


.contact-info-arrow {

    color: #b2bbc5;

    font-size: 9px;

}


/* =========================================================
   MAIN
========================================================= */

.contact-main-section {

    padding:
        95px 0;

}


.contact-main-grid {

    display: grid;

    grid-template-columns:
        minmax(300px, .75fr) minmax(520px, 1.25fr);

    gap: 80px;

    align-items: start;

}


/* =========================================================
   COMPANY SIDE
========================================================= */

.contact-section-label {

    margin-bottom: 10px;

    color:
        var(--primary, #2563eb);

    font-size: 10px;

    font-weight: 850;

    letter-spacing: .13em;

    text-transform: uppercase;

}


.contact-company-side h2 {

    margin: 0;

    color: #12243b;

    font-size:
        clamp(30px,
            3.5vw,
            44px);

    font-weight: 850;

    letter-spacing: -.035em;

}


.contact-company-intro {

    margin:
        17px 0 30px;

    color: #718094;

    font-size: 13px;

    line-height: 1.9;

}


.contact-company-item {

    display: flex;

    gap: 15px;

    padding:
        18px 0;

    border-bottom:
        1px solid #e9edf1;

}


.contact-company-item-icon {

    flex:
        0 0 40px;

    width: 40px;

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    background: #f3f6f9;

    color:
        var(--primary, #2563eb);

}


.contact-company-item span {

    display: block;

    margin-bottom: 5px;

    color: #94a0ae;

    font-size: 8px;

    font-weight: 800;

    text-transform: uppercase;

}


.contact-company-item p,
.contact-company-item a {

    margin: 0;

    color: #293b50;

    text-decoration: none;

    font-size: 11px;

    line-height: 1.7;

    font-weight: 650;

}


/* =========================================================
   SOCIAL
========================================================= */

.contact-social-block {

    margin-top: 30px;

}


.contact-social-title {

    display: block;

    margin-bottom: 11px;

    color: #23354b;

    font-size: 10px;

    font-weight: 800;

}


.contact-social-list {

    display: flex;

    flex-wrap: wrap;

    gap: 8px;

}


.contact-social-item {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    border:
        1px solid #e1e7ed;

    border-radius: 10px;

    background: #fff;

    color: #26394f;

    text-decoration: none;

    transition: .2s ease;

}


.contact-social-item:hover {

    border-color:
        var(--primary, #2563eb);

    background:
        var(--primary, #2563eb);

    color: #fff;

    transform:
        translateY(-3px);

}


.contact-social-item img {

    width: 21px;

    height: 21px;

    object-fit: contain;

}


/* =========================================================
   FORM
========================================================= */

.contact-form-card {

    padding: 34px;

    border:
        1px solid #e2e8ee;

    border-radius: 22px;

    background: #fff;

    box-shadow:
        0 18px 55px rgba(15, 23, 42, .07);

}


.contact-form-heading {

    display: flex;

    align-items: center;

    gap: 14px;

}


.contact-form-icon {

    flex:
        0 0 48px;

    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    background:
        var(--primary, #2563eb);

    color: #fff;

    font-size: 16px;

}


.contact-form-heading span {

    color:
        var(--primary, #2563eb);

    font-size: 8px;

    font-weight: 800;

    text-transform: uppercase;

}


.contact-form-heading h2 {

    margin:
        3px 0 0;

    color: #15273e;

    font-size: 23px;

    font-weight: 850;

}


.contact-form-description {

    margin:
        18px 0 25px;

    color: #8490a0;

    font-size: 11px;

    line-height: 1.8;

}


/* =========================================================
   FORM ROW
========================================================= */

.contact-form-row {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 13px;

}


.contact-form-group {

    margin-bottom: 16px;

}


.contact-form-group label {

    display: block;

    margin-bottom: 7px;

    color: #435268;

    font-size: 9px;

    font-weight: 750;

}


.contact-form-group label span {

    color: #e84d4d;

}


.contact-input-wrap {

    position: relative;

}


.contact-input-wrap>i {

    position: absolute;

    top: 50%;

    inset-inline-start: 15px;

    transform:
        translateY(-50%);

    color: #9da7b4;

    font-size: 11px;

    pointer-events: none;

}


.contact-input-wrap input,
.contact-textarea-wrap textarea {

    width: 100%;

    border:
        1px solid #dfe5eb;

    outline: none;

    border-radius: 10px;

    background: #f9fafc;

    color: #172a40;

    font-size: 11px;

    transition: .2s ease;

}


.contact-input-wrap input {

    height: 48px;

    padding:
        0 15px 0 41px;

}


html[dir="rtl"] .contact-input-wrap input {

    padding:
        0 41px 0 15px;

}


.contact-textarea-wrap textarea {

    min-height: 135px;

    padding: 14px;

    resize: vertical;

    line-height: 1.7;

}


.contact-input-wrap input:focus,
.contact-textarea-wrap textarea:focus {

    border-color:
        var(--primary, #2563eb);

    background: #fff;

    box-shadow:
        0 0 0 3px rgba(37, 99, 235, .07);

}


.contact-field-error {

    border-color:
        #e55252 !important;

    box-shadow:
        0 0 0 3px rgba(229, 82, 82, .07) !important;

}


/* =========================================================
   ERROR ALERT
========================================================= */

.contact-form-alert {

    display: none;

    align-items: center;

    gap: 8px;

    margin-bottom: 13px;

    padding: 10px 13px;

    border:
        1px solid #f0c9c9;

    border-radius: 9px;

    background: #fff5f5;

    color: #c54646;

    font-size: 9px;

}


.contact-form-alert.active {

    display: flex;

}


/* =========================================================
   SUBMIT
========================================================= */

.contact-submit-button {

    width: 100%;

    min-height: 60px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding:
        8px 18px;

    border: 0;

    border-radius: 12px;

    background: #25D366;

    color: #fff;

    cursor: pointer;

    box-shadow:
        0 10px 25px rgba(37, 211, 102, .20);

    transition: .25s ease;

}


.contact-submit-button:hover {

    transform:
        translateY(-2px);

    box-shadow:
        0 15px 32px rgba(37, 211, 102, .27);

}


.contact-submit-button span {

    text-align:
        start;

}


.contact-submit-button small,
.contact-submit-button strong {

    display: block;

}


.contact-submit-button small {

    margin-bottom: 2px;

    color:
        rgba(255, 255, 255, .73);

    font-size: 8px;

}


.contact-submit-button strong {

    color: #fff;

    font-size: 12px;

}


.contact-submit-button>i {

    font-size: 25px;

}


.contact-form-note {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 6px;

    margin-top: 11px;

    color: #99a3b0;

    font-size: 8px;

}


/* =========================================================
   BOTTOM CTA
========================================================= */

.contact-bottom-section {

    padding:
        0 0 85px;

}


.contact-bottom-box {

    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;

    padding:
        38px 42px;

    border-radius: 22px;

    background:
        radial-gradient(circle at 90% 15%,
            rgba(52, 211, 153, .18),
            transparent 30%),
        #071a2c;

    color: #fff;

}


.contact-bottom-box>div {

    max-width: 670px;

}


.contact-bottom-box>div>span {

    display: block;

    margin-bottom: 7px;

    color: #72a5f7;

    font-size: 8px;

    font-weight: 850;

    letter-spacing: .12em;

    text-transform: uppercase;

}


.contact-bottom-box h2 {

    margin: 0;

    font-size:
        clamp(26px,
            3vw,
            38px);

    font-weight: 850;

}


.contact-bottom-box p {

    max-width: 580px;

    margin:
        10px 0 0;

    color:
        rgba(255, 255, 255, .58);

    font-size: 11px;

    line-height: 1.8;

}


.contact-bottom-box>a {

    flex:
        0 0 auto;

    display: flex;

    align-items: center;

    gap: 12px;

    min-width: 175px;

    padding:
        12px 17px;

    border-radius: 12px;

    background: #25D366;

    color: #fff;

    text-decoration: none;

}


.contact-bottom-box>a>i {

    font-size: 24px;

}


.contact-bottom-box>a small,
.contact-bottom-box>a strong {

    display: block;

}


.contact-bottom-box>a small {

    color:
        rgba(255, 255, 255, .72);

    font-size: 8px;

}


.contact-bottom-box>a strong {

    margin-top: 2px;

    color: #fff;

    font-size: 12px;

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .contact-hero-grid {

        grid-template-columns:
            1fr;

        gap: 35px;

    }


    .contact-hero-info {

        max-width: 500px;

    }


    .contact-info-grid {

        grid-template-columns:
            1fr;

    }


    .contact-info-section {

        margin-top: 25px;

    }


    .contact-main-grid {

        grid-template-columns:
            1fr;

        gap: 50px;

    }

}


@media (max-width: 767px) {

    .contact-hero {

        padding:
            48px 0;

    }


    .contact-hero h1 {

        font-size: 39px;

    }


    .contact-hero-actions {

        flex-direction:
            column;

    }


    .contact-primary-button,
    .contact-whatsapp-button {

        width: 100%;

    }


    .contact-main-section {

        padding:
            60px 0;

    }


    .contact-form-card {

        padding:
            23px 18px;

        border-radius: 17px;

    }


    .contact-form-row {

        grid-template-columns:
            1fr;

        gap: 0;

    }


    .contact-bottom-section {

        padding-bottom:
            60px;

    }


    .contact-bottom-box {

        align-items:
            flex-start;

        flex-direction:
            column;

        padding:
            28px 22px;

    }


    .contact-bottom-box>a {

        width: 100%;

    }

}


/* =========================================================
   CONTACT SOCIAL MEDIA
========================================================= */

.contact-social-block {
    margin-top: 30px;
}


.contact-social-title {
    display: block;

    margin-bottom: 12px;

    color: #23354b;

    font-size: 10px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .04em;
}


.contact-social-list {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 9px;
}


.contact-social-item {
    width: 46px;

    height: 46px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    padding: 9px;

    border:
        1px solid #e1e7ed;

    border-radius: 12px;

    background: #fff;

    text-decoration: none;

    box-shadow:
        0 4px 14px rgba(15, 23, 42, .04);

    transition:
        transform .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;
}


.contact-social-item img {
    display: block;

    width: 100%;

    height: 100%;

    object-fit: contain;

    transition:
        transform .2s ease;
}


.contact-social-item:hover {
    transform:
        translateY(-3px);

    border-color:
        var(--primary, #2563eb);

    box-shadow:
        0 9px 22px rgba(15, 23, 42, .09);
}


.contact-social-item:hover img {
    transform:
        scale(1.08);
}

/* =========================================================
   NEWS PAGE
========================================================= */

.news-page {
    background: #fff;
    color: #102033;
}


/* =========================================================
   HERO
========================================================= */

.news-hero {
    position: relative;
    overflow: hidden;

    padding: 75px 0;

    background:
        radial-gradient(circle at 85% 15%,
            rgba(37, 99, 235, .18),
            transparent 32%),
        linear-gradient(135deg,
            #071626 0%,
            #0c223a 58%,
            #10304f 100%);

    color: #fff;
}


.news-hero::before {
    content: "";

    position: absolute;

    inset: 0;

    opacity: .10;

    background-image:
        linear-gradient(rgba(255, 255, 255, .08) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, .08) 1px,
            transparent 1px);

    background-size:
        48px 48px;
}


.news-hero-grid {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: end;

    justify-content: space-between;

    gap: 45px;
}


.news-hero-content {
    max-width: 790px;
}


.news-hero-label {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 16px;

    color: #84b0ff;

    font-size: 10px;

    font-weight: 850;

    letter-spacing: .13em;

    text-transform: uppercase;
}


.news-hero-label span {
    width: 28px;

    height: 2px;

    background:
        var(--primary, #2563eb);
}


.news-hero h1 {
    margin:
        0 0 20px;

    font-size:
        clamp(42px,
            5.7vw,
            72px);

    line-height: 1.03;

    font-weight: 850;

    letter-spacing: -.045em;
}


.news-hero-content p {
    max-width: 680px;

    margin: 0;

    color:
        rgba(255, 255, 255, .68);

    font-size: 14px;

    line-height: 1.9;
}


/* =========================================================
   HERO STAT
========================================================= */

.news-hero-stat {
    min-width: 165px;

    padding: 23px;

    border:
        1px solid rgba(255, 255, 255, .14);

    border-radius: 18px;

    background:
        rgba(255, 255, 255, .07);

    backdrop-filter:
        blur(10px);
}


.news-hero-stat strong {
    display: block;

    color: #fff;

    font-size: 35px;

    line-height: 1;

    font-weight: 900;
}


.news-hero-stat span {
    display: block;

    margin-top: 7px;

    color:
        rgba(255, 255, 255, .52);

    font-size: 9px;

    font-weight: 700;
}


/* =========================================================
   SEARCH
========================================================= */

.news-search-section {
    position: relative;

    z-index: 5;

    margin-top: -27px;
}


.news-search-box {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr) auto auto;

    gap: 10px;

    padding: 13px;

    border:
        1px solid #e1e7ed;

    border-radius: 16px;

    background: #fff;

    box-shadow:
        0 12px 35px rgba(15, 23, 42, .08);
}


.news-search-input {
    position: relative;
}


.news-search-input>i {
    position: absolute;

    top: 50%;

    inset-inline-start: 16px;

    transform:
        translateY(-50%);

    color: #8e9aa8;

    font-size: 12px;
}


.news-search-input input {
    width: 100%;

    height: 47px;

    padding:
        0 15px 0 43px;

    border:
        1px solid #dfe5eb;

    border-radius: 10px;

    outline: none;

    background: #f9fafc;

    color: #182a40;

    font-size: 12px;
}


html[dir="rtl"] .news-search-input input {
    padding:
        0 43px 0 15px;
}


.news-search-input input:focus {
    border-color:
        var(--primary, #2563eb);

    background: #fff;

    box-shadow:
        0 0 0 3px rgba(37, 99, 235, .07);
}


.news-search-button,
.news-search-reset {
    height: 47px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    padding:
        0 18px;

    border-radius: 10px;

    font-size: 10px;

    font-weight: 800;
}


.news-search-button {
    border: 0;

    background: #102033;

    color: #fff;
}


.news-search-button:hover {
    background:
        var(--primary, #2563eb);
}


.news-search-reset {
    border:
        1px solid #dfe5eb;

    background: #fff;

    color: #607085;

    text-decoration: none;
}


/* =========================================================
   LIST
========================================================= */

.news-list-section {
    padding:
        85px 0 95px;

    background:
        #f7f9fb;
}


.news-section-heading {
    display: flex;

    align-items: end;

    justify-content: space-between;

    gap: 35px;

    margin-bottom: 27px;
}


.news-section-heading>div {
    max-width: 680px;
}


.news-section-heading span {
    display: block;

    margin-bottom: 8px;

    color:
        var(--primary, #2563eb);

    font-size: 10px;

    font-weight: 850;

    letter-spacing: .13em;

    text-transform: uppercase;
}


.news-section-heading h2 {
    margin: 0;

    color: #13253c;

    font-size:
        clamp(29px,
            3.5vw,
            43px);

    font-weight: 850;

    letter-spacing: -.035em;
}


.news-section-heading>p {
    max-width: 430px;

    margin: 0;

    color: #768496;

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   SUMMARY
========================================================= */

.news-results-summary {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 24px;

    color: #7b8796;

    font-size: 10px;
}


.news-results-summary strong {
    color: #15283e;
}


/* =========================================================
   GRID
========================================================= */

.news-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 22px;
}


/* =========================================================
   CARD
========================================================= */

.news-modern-card {
    overflow: hidden;

    border:
        1px solid #e2e7ec;

    border-radius: 19px;

    background: #fff;

    box-shadow:
        0 8px 28px rgba(15, 23, 42, .045);

    transition:
        transform .28s ease,
        box-shadow .28s ease,
        border-color .28s ease;
}


.news-modern-card:hover {
    transform:
        translateY(-6px);

    border-color:
        rgba(37, 99, 235, .22);

    box-shadow:
        0 18px 42px rgba(15, 23, 42, .09);
}


/* =========================================================
   IMAGE
========================================================= */

.news-card-image {
    position: relative;

    height: 225px;

    display: block;

    overflow: hidden;

    background: #eaf0f5;
}


.news-card-image img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform .4s ease;
}


.news-modern-card:hover .news-card-image img {
    transform:
        scale(1.055);
}


.news-card-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(to top,
            rgba(7, 22, 38, .32),
            transparent 55%);
}


.news-card-arrow {
    position: absolute;

    top: 15px;

    inset-inline-end: 15px;

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, .92);

    color: #18304a;

    font-size: 11px;

    opacity: 0;

    transform:
        translateY(-5px);

    transition:
        .25s ease;
}


.news-modern-card:hover .news-card-arrow {
    opacity: 1;

    transform:
        translateY(0);
}


/* =========================================================
   BODY
========================================================= */

.news-card-body {
    padding: 20px;
}


.news-card-meta {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 11px;

    color: #98a2af;

    font-size: 8px;

    font-weight: 700;
}


.news-card-meta span {
    display: inline-flex;

    align-items: center;

    gap: 5px;
}


.news-card-meta i {
    color:
        var(--primary, #2563eb);
}


.news-card-body h3 {
    margin: 0;

    font-size: 17px;

    line-height: 1.45;

    font-weight: 850;
}


.news-card-body h3 a {
    color: #16283e;

    text-decoration: none;
}


.news-card-body h3 a:hover {
    color:
        var(--primary, #2563eb);
}


.news-card-body p {
    min-height: 62px;

    margin:
        11px 0 0;

    color: #788598;

    font-size: 11px;

    line-height: 1.75;
}


/* =========================================================
   CARD FOOTER
========================================================= */

.news-card-footer {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    margin-top: 18px;

    padding-top: 15px;

    border-top:
        1px solid #edf0f3;
}


.news-read-more {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #22364c;

    text-decoration: none;

    font-size: 10px;

    font-weight: 850;
}


.news-read-more i {
    color:
        var(--primary, #2563eb);

    transition:
        transform .2s ease;
}


.news-read-more:hover {
    color:
        var(--primary, #2563eb);
}


.news-read-more:hover i {
    transform:
        translateX(3px);
}


html[dir="rtl"] .news-read-more:hover i {
    transform:
        translateX(-3px);
}


.news-card-footer>span {
    padding:
        5px 8px;

    border-radius:
        999px;

    background: #f1f5f8;

    color: #7d8999;

    font-size: 7px;

    font-weight: 750;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .news-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 767px) {

    .news-hero {
        padding:
            48px 0 58px;
    }


    .news-hero-grid {
        align-items:
            flex-start;

        flex-direction:
            column;
    }


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


    .news-hero-stat {
        width: 100%;
    }


    .news-search-section {
        margin-top: 20px;
    }


    .news-search-box {
        grid-template-columns:
            1fr;
    }


    .news-search-button,
    .news-search-reset {
        width: 100%;
    }


    .news-list-section {
        padding:
            58px 0 75px;
    }


    .news-section-heading {
        align-items:
            flex-start;

        flex-direction:
            column;
    }


    .news-results-summary {
        align-items:
            flex-start;

        flex-direction:
            column;
    }


    .news-grid {
        grid-template-columns:
            1fr;
    }


    .news-card-image {
        height: 235px;
    }

}

/* =========================================================
   SINGLE NEWS PAGE
========================================================= */

.single-news-page {
    background: #fff;
    color: #112238;
}


/* =========================================================
   HERO
========================================================= */

.single-news-hero {

    position: relative;

    overflow: hidden;

    padding:
        36px 0 78px;

    background:
        radial-gradient(circle at 85% 15%,
            rgba(37, 99, 235, .18),
            transparent 30%),
        linear-gradient(135deg,
            #071626 0%,
            #0c223a 58%,
            #10304f 100%);

    color: #fff;

}


.single-news-hero::before {

    content: "";

    position: absolute;

    inset: 0;

    opacity: .10;

    background-image:
        linear-gradient(rgba(255, 255, 255, .08) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, .08) 1px,
            transparent 1px);

    background-size:
        48px 48px;

}


.single-news-breadcrumb {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 42px;

    font-size: 10px;

}


.single-news-breadcrumb a {

    color:
        rgba(255, 255, 255, .54);

    text-decoration: none;

}


.single-news-breadcrumb a:hover {

    color: #fff;

}


.single-news-breadcrumb span {

    max-width: 500px;

    overflow: hidden;

    color: #fff;

    text-overflow: ellipsis;

    white-space: nowrap;

}


.single-news-breadcrumb i {

    color:
        rgba(255, 255, 255, .24);

    font-size: 7px;

}


html[dir="rtl"] .single-news-breadcrumb i {

    transform:
        rotate(180deg);

}


.single-news-hero-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr) 260px;

    gap: 70px;

    align-items: end;

}


.single-news-hero-content {

    max-width: 850px;

}


.single-news-label {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 14px;

    color: #86b2ff;

    font-size: 9px;

    font-weight: 850;

    letter-spacing: .13em;

    text-transform: uppercase;

}


.single-news-label span {

    width: 28px;

    height: 2px;

    background:
        #438cff;

}


.single-news-hero h1 {

    margin: 0;

    max-width: 920px;

    font-size:
        clamp(37px,
            5vw,
            64px);

    line-height: 1.08;

    font-weight: 850;

    letter-spacing: -.04em;

}


.single-news-meta {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 20px;

    margin-top: 20px;

}


.single-news-meta span {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    color:
        rgba(255, 255, 255, .54);

    font-size: 9px;

}


.single-news-meta i {

    color: #76a9ff;

}


.single-news-hero-content>p {

    max-width: 760px;

    margin:
        21px 0 0;

    color:
        rgba(255, 255, 255, .66);

    font-size: 13px;

    line-height: 1.85;

}


/* =========================================================
   HERO SIDE
========================================================= */

.single-news-hero-side {

    padding: 22px;

    border:
        1px solid rgba(255, 255, 255, .13);

    border-radius: 18px;

    background:
        rgba(255, 255, 255, .06);

    backdrop-filter:
        blur(10px);

}


.single-news-side-icon {

    width: 42px;

    height: 42px;

    margin-bottom: 15px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    background:
        rgba(255, 255, 255, .09);

    color: #7eaeff;

}


.single-news-hero-side span {

    display: block;

    color:
        rgba(255, 255, 255, .45);

    font-size: 8px;

    font-weight: 750;

    text-transform: uppercase;

}


.single-news-hero-side strong {

    display: block;

    margin-top: 5px;

    color: #fff;

    font-size: 13px;

    line-height: 1.5;

}


/* =========================================================
   MAIN IMAGE
========================================================= */

.single-news-image-section {

    position: relative;

    z-index: 5;

    margin-top: -38px;

}


.single-news-main-image {

    position: relative;

    height: min(590px,
            58vw);

    min-height: 390px;

    overflow: hidden;

    border:
        7px solid #fff;

    border-radius: 24px;

    background: #e9eef3;

    box-shadow:
        0 20px 55px rgba(15, 23, 42, .13);

}


.single-news-main-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    cursor: zoom-in;

    transition:
        transform .45s ease;

}


.single-news-main-image:hover img {

    transform:
        scale(1.02);

}


.single-news-main-image button {

    position: absolute;

    top: 18px;

    inset-inline-end: 18px;

    width: 44px;

    height: 44px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 0;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, .94);

    color: #14273e;

    box-shadow:
        0 5px 18px rgba(0, 0, 0, .12);

    cursor: pointer;

    transition:
        .2s ease;

}


.single-news-main-image button:hover {

    background:
        var(--primary, #2563eb);

    color: #fff;

}


/* =========================================================
   ARTICLE LAYOUT
========================================================= */

.single-news-content-section {

    padding:
        75px 0 90px;

}


.single-news-layout {

    display: grid;

    grid-template-columns:
        minmax(0, 1fr) 300px;

    gap: 65px;

    align-items: start;

}


.single-news-article {

    min-width: 0;

}


.single-news-article-header {

    margin-bottom: 28px;

}


.single-news-article-header>span {

    display: block;

    margin-bottom: 9px;

    color:
        var(--primary, #2563eb);

    font-size: 9px;

    font-weight: 850;

    letter-spacing: .12em;

    text-transform: uppercase;

}


.single-news-article-header h2 {

    margin: 0;

    color: #13253c;

    font-size:
        clamp(28px,
            3vw,
            40px);

    line-height: 1.25;

    font-weight: 850;

    letter-spacing: -.025em;

}


/* =========================================================
   ARTICLE DB CONTENT
========================================================= */

.single-news-body {

    color: #536378;

    font-size: 14px;

    line-height: 2;

}


.single-news-body p {

    margin-bottom: 20px;

}


.single-news-body h2 {

    margin:
        40px 0 17px;

    color: #14273e;

    font-size: 27px;

    line-height: 1.3;

    font-weight: 850;

}


.single-news-body h3 {

    margin:
        33px 0 14px;

    color: #172a41;

    font-size: 21px;

    font-weight: 820;

}


.single-news-body h4 {

    margin:
        28px 0 12px;

    color: #1c3048;

    font-size: 17px;

    font-weight: 800;

}


.single-news-body img {

    max-width: 100%;

    height: auto;

    margin:
        22px 0;

    border-radius: 15px;

}


.single-news-body ul,
.single-news-body ol {

    margin:
        18px 0 25px;

    padding-inline-start:
        25px;

}


.single-news-body li {

    margin-bottom: 9px;

}


.single-news-body strong {

    color: #1e3148;

}


.single-news-body a {

    color:
        var(--primary, #2563eb);

}


.single-news-body blockquote {

    margin:
        30px 0;

    padding:
        22px 25px;

    border-inline-start:
        4px solid var(--primary, #2563eb);

    border-radius: 0 12px 12px 0;

    background: #f5f8fb;

    color: #45586e;

}


html[dir="rtl"] .single-news-body blockquote {

    border-radius:
        12px 0 0 12px;

}


/* TABLES */

.single-news-body table {

    width: 100%;

    margin:
        25px 0;

    border-collapse:
        collapse;

}


.single-news-body th,
.single-news-body td {

    padding:
        12px 14px;

    border:
        1px solid #e2e7ec;

    font-size: 12px;

}


.single-news-body th {

    background: #102033;

    color: #fff;

}


/* =========================================================
   SIDEBAR
========================================================= */

.single-news-sidebar {

    position: sticky;

    top: 90px;

}


.single-news-company-card {

    padding: 23px;

    border:
        1px solid #e2e8ee;

    border-radius: 17px;

    background: #f8fafc;

}


.single-news-company-icon {

    width: 43px;

    height: 43px;

    margin-bottom: 15px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    background: #fff;

    color:
        var(--primary, #2563eb);

    box-shadow:
        0 4px 14px rgba(15, 23, 42, .06);

}


.single-news-company-card>span {

    color:
        var(--primary, #2563eb);

    font-size: 8px;

    font-weight: 850;

    letter-spacing: .10em;

    text-transform: uppercase;

}


.single-news-company-card h3 {

    margin:
        8px 0 12px;

    color: #14273e;

    font-size: 16px;

    line-height: 1.45;

    font-weight: 850;

}


.single-news-company-card p {

    margin: 0;

    color: #7b8796;

    font-size: 10px;

    line-height: 1.8;

}


.single-news-company-card a {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    margin-top: 15px;

    color: #26394f;

    text-decoration: none;

    font-size: 9px;

    font-weight: 800;

}


.single-news-company-card a i {

    color:
        var(--primary, #2563eb);

}


/* CONTACT CARD */

.single-news-contact-card {

    margin-top: 15px;

    padding: 22px;

    border-radius: 17px;

    background:
        linear-gradient(135deg,
            #071626,
            #10304f);

    color: #fff;

}


.single-news-contact-card>i {

    margin-bottom: 14px;

    color: #78aaff;

    font-size: 20px;

}


.single-news-contact-card h3 {

    margin: 0;

    font-size: 16px;

    font-weight: 850;

}


.single-news-contact-card p {

    margin:
        9px 0 14px;

    color:
        rgba(255, 255, 255, .59);

    font-size: 10px;

    line-height: 1.7;

}


.single-news-contact-card a {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 38px;

    padding:
        0 14px;

    border-radius: 8px;

    background: #fff;

    color: #15283e;

    text-decoration: none;

    font-size: 9px;

    font-weight: 800;

}


/* =========================================================
   RELATED
========================================================= */

.single-news-related {

    padding:
        75px 0 90px;

    background: #f6f8fb;

}


.single-news-section-heading {

    display: flex;

    align-items: end;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 28px;

}


.single-news-section-heading span {

    display: block;

    margin-bottom: 7px;

    color:
        var(--primary, #2563eb);

    font-size: 9px;

    font-weight: 850;

    text-transform: uppercase;

    letter-spacing: .12em;

}


.single-news-section-heading h2 {

    margin: 0;

    color: #13253b;

    font-size:
        clamp(28px,
            3vw,
            40px);

    font-weight: 850;

}


.single-news-section-heading>a {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #2b3e53;

    text-decoration: none;

    font-size: 10px;

    font-weight: 800;

}


/* =========================================================
   LIGHTBOX
========================================================= */

.news-image-lightbox {

    position: fixed;

    z-index: 999999;

    inset: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    visibility: hidden;

    opacity: 0;

    padding: 30px;

    transition:
        .25s ease;

}


.news-image-lightbox.active {

    visibility: visible;

    opacity: 1;

}


.news-image-lightbox-backdrop {

    position: absolute;

    inset: 0;

    background:
        rgba(3, 10, 18, .93);

    backdrop-filter:
        blur(8px);

}


.news-image-lightbox-content {

    position: relative;

    z-index: 2;

    width:
        min(1200px, 94vw);

    height:
        min(830px, 88vh);

    display: flex;

    align-items: center;

    justify-content: center;

}


.news-image-lightbox-content img {

    max-width: 100%;

    max-height: 100%;

    object-fit: contain;

}


.news-image-lightbox-close {

    position: absolute;

    z-index: 4;

    top: 22px;

    inset-inline-end: 25px;

    width: 44px;

    height: 44px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid rgba(255, 255, 255, .15);

    border-radius: 50%;

    background:
        rgba(255, 255, 255, .08);

    color: #fff;

    cursor: pointer;

}


body.news-lightbox-open {

    overflow: hidden;

}


/* =========================================================
   ERROR
========================================================= */

.news-single-error {

    min-height: 70vh;

    display: flex;

    align-items: center;

    padding:
        80px 0;

    background:
        #f8fafc;

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .single-news-hero-grid {

        grid-template-columns:
            1fr;

        gap: 35px;

    }


    .single-news-hero-side {

        max-width: 450px;

    }


    .single-news-layout {

        grid-template-columns:
            1fr;

        gap: 45px;

    }


    .single-news-sidebar {

        position: static;

        display: grid;

        grid-template-columns:
            1fr 1fr;

        gap: 15px;

    }


    .single-news-contact-card {

        margin-top: 0;

    }

}


@media (max-width: 767px) {

    .single-news-hero {

        padding:
            28px 0 58px;

    }


    .single-news-breadcrumb {

        margin-bottom:
            30px;

    }


    .single-news-hero h1 {

        font-size:
            36px;

    }


    .single-news-image-section {

        margin-top:
            -25px;

    }


    .single-news-main-image {

        height: 330px;

        min-height: 330px;

        border-width: 4px;

        border-radius: 17px;

    }


    .single-news-content-section {

        padding:
            55px 0 65px;

    }


    .single-news-sidebar {

        grid-template-columns:
            1fr;

    }


    .single-news-section-heading {

        align-items:
            flex-start;

        flex-direction:
            column;

    }


    .single-news-related {

        padding:
            55px 0 70px;

    }

}

/* =========================================================
   404 PAGE
========================================================= */

.error-404-page {
    overflow: hidden;
    background: #fff;
}


/* =========================================================
   HERO
========================================================= */

.error-404-hero {
    position: relative;
    overflow: hidden;
    padding: 90px 0 100px;
    background:
        radial-gradient(circle at 75% 40%,
            rgba(239, 65, 35, .10),
            transparent 31%),
        linear-gradient(135deg,
            #f8fafc 0%,
            #ffffff 52%,
            #f5f7fa 100%);
}


.error-404-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .32;

    background-image:
        linear-gradient(rgba(15, 23, 42, .04) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(15, 23, 42, .04) 1px,
            transparent 1px);

    background-size: 48px 48px;
}


.error-404-layout {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns:
        minmax(0, .85fr) minmax(0, 1.15fr);

    gap: 75px;
    align-items: center;
}


/* =========================================================
   CONTENT
========================================================= */

.error-404-label {
    display: flex;
    align-items: center;
    gap: 11px;

    margin-bottom: 17px;

    color: #ed321d;

    font-size: 11px;
    font-weight: 850;

    letter-spacing: .13em;
    text-transform: uppercase;
}


.error-404-label span {
    width: 30px;
    height: 2px;
    background: #ed321d;
}


.error-404-number {
    display: flex;
    align-items: center;

    color: #102035;

    font-size: clamp(82px, 10vw, 145px);
    font-weight: 900;

    line-height: .85;
    letter-spacing: -.08em;
}


.error-404-zero {
    width: .75em;
    height: .75em;

    margin: 0 .06em;

    display: flex;
    align-items: center;
    justify-content: center;

    border: .09em solid #ed321d;
    border-radius: 50%;
}


.error-404-zero-inner {
    width: 67%;
    height: 67%;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #102035;
}


.error-404-zero-inner span {
    color: #fff;

    font-size: 8px;
    font-weight: 900;

    letter-spacing: .05em;
}


.error-404-content h1 {
    max-width: 620px;

    margin: 30px 0 14px;

    color: #102035;

    font-size: clamp(31px, 4vw, 52px);
    line-height: 1.12;
    font-weight: 850;

    letter-spacing: -.035em;
}


.error-404-content>p {
    max-width: 570px;

    margin: 0;

    color: #6e7c8f;

    font-size: 14px;
    line-height: 1.85;
}


.error-404-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;

    margin-top: 28px;
}


.error-404-btn {
    min-height: 49px;

    padding: 0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    border-radius: 10px;

    text-decoration: none;

    font-size: 11px;
    font-weight: 800;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}


.error-404-btn:hover {
    transform: translateY(-2px);
}


.error-404-btn-primary {
    background: #ed321d;
    color: #fff;

    box-shadow:
        0 10px 25px rgba(237, 50, 29, .20);
}


.error-404-btn-primary:hover {
    background: #d92c19;
    color: #fff;
}


.error-404-btn-secondary {
    border: 1px solid #dce3ea;
    background: #fff;
    color: #14263d;
}


.error-404-btn-secondary:hover {
    color: #ed321d;
}


/* =========================================================
   MACHINE
========================================================= */

.error-404-machine-box {
    position: relative;

    min-height: 430px;

    display: flex;
    align-items: center;
    justify-content: center;
}


.error-404-machine-glow {
    position: absolute;

    width: 78%;
    height: 50%;

    border-radius: 50%;

    background:
        rgba(237, 50, 29, .13);

    filter: blur(60px);
}


.error-404-machine-box>img {
    position: relative;
    z-index: 2;

    width: 100%;
    height: auto;

    object-fit: contain;

    filter:
        drop-shadow(0 24px 25px rgba(15, 23, 42, .15));
}


.error-404-machine-status {
    position: absolute;
    z-index: 4;

    inset-inline-start: 4%;
    bottom: 22px;

    min-width: 205px;

    padding: 12px 15px;

    display: flex;
    align-items: center;
    gap: 11px;

    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 12px;

    background: rgba(255, 255, 255, .88);

    backdrop-filter: blur(10px);

    box-shadow:
        0 12px 35px rgba(15, 23, 42, .10);
}


.error-404-status-dot {
    width: 9px;
    height: 9px;

    flex: 0 0 auto;

    border-radius: 50%;

    background: #20b96b;

    box-shadow:
        0 0 0 5px rgba(32, 185, 107, .11);
}


.error-404-machine-status small,
.error-404-machine-status strong {
    display: block;
}


.error-404-machine-status small {
    margin-bottom: 2px;

    color: #8b97a5;

    font-size: 8px;
}


.error-404-machine-status strong {
    color: #16283d;

    font-size: 10px;
}


/* =========================================================
   QUICK LINKS
========================================================= */

.error-404-help {
    padding: 85px 0;
    background: #0d1d30;
}


.error-404-help-heading {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr) minmax(250px, 430px);

    gap: 60px;
    align-items: end;

    margin-bottom: 35px;
}


.error-404-help-heading span {
    display: block;

    margin-bottom: 8px;

    color: #f15a46;

    font-size: 9px;
    font-weight: 850;

    letter-spacing: .12em;
    text-transform: uppercase;
}


.error-404-help-heading h2 {
    margin: 0;

    color: #fff;

    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 850;

    letter-spacing: -.03em;
}


.error-404-help-heading p {
    margin: 0;

    color: rgba(255, 255, 255, .53);

    font-size: 12px;
    line-height: 1.8;
}


.error-404-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border-top:
        1px solid rgba(255, 255, 255, .09);

    border-inline-start:
        1px solid rgba(255, 255, 255, .09);
}


.error-404-link-card {
    position: relative;

    min-height: 195px;

    padding: 24px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    border-inline-end:
        1px solid rgba(255, 255, 255, .09);

    border-bottom:
        1px solid rgba(255, 255, 255, .09);

    text-decoration: none;

    transition:
        background .25s ease;
}


.error-404-link-card:hover {
    background:
        rgba(255, 255, 255, .045);
}


.error-404-link-number {
    color:
        rgba(255, 255, 255, .26);

    font-size: 9px;
    font-weight: 750;
}


.error-404-link-card strong {
    display: block;

    margin-bottom: 7px;

    color: #fff;

    font-size: 16px;
    font-weight: 800;
}


.error-404-link-card small {
    display: block;

    max-width: 200px;

    color:
        rgba(255, 255, 255, .45);

    font-size: 9px;
    line-height: 1.65;
}


.error-404-link-arrow {
    position: absolute;

    top: 23px;
    inset-inline-end: 23px;

    color: #f15a46;

    font-size: 15px;

    transition:
        transform .2s ease;
}


.error-404-link-card:hover .error-404-link-arrow {
    transform: translateX(4px);
}


html[dir="rtl"] .error-404-link-card:hover .error-404-link-arrow {
    transform: translateX(-4px);
}


/* =========================================================
   CATEGORIES
========================================================= */

.error-404-categories {
    padding: 85px 0 95px;
    background: #fff;
}


.error-404-section-heading {
    max-width: 650px;
    margin-bottom: 30px;
}


.error-404-section-heading>span {
    display: block;

    margin-bottom: 8px;

    color: #ed321d;

    font-size: 9px;
    font-weight: 850;

    letter-spacing: .12em;
    text-transform: uppercase;
}


.error-404-section-heading h2 {
    margin: 0;

    color: #102035;

    font-size: clamp(27px, 3.5vw, 42px);
    font-weight: 850;

    letter-spacing: -.03em;
}


.error-404-category-card {
    height: 100%;

    overflow: hidden;

    display: block;

    border: 1px solid #e5e9ee;
    border-radius: 15px;

    background: #fff;

    text-decoration: none;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}


.error-404-category-card:hover {
    transform: translateY(-4px);

    border-color:
        rgba(237, 50, 29, .25);

    box-shadow:
        0 15px 35px rgba(15, 23, 42, .08);
}


.error-404-category-image {
    height: 150px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 15px;

    background: #f6f8fa;
}


.error-404-category-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    transition:
        transform .3s ease;
}


.error-404-category-card:hover .error-404-category-image img {
    transform: scale(1.04);
}


.error-404-category-content {
    padding: 17px;
}


.error-404-category-content>span {
    display: block;

    margin-bottom: 5px;

    color: #ed321d;

    font-size: 8px;
    font-weight: 800;

    text-transform: uppercase;
}


.error-404-category-content h3 {
    margin: 0;

    color: #14263d;

    font-size: 14px;
    line-height: 1.4;
    font-weight: 800;
}


.error-404-category-content strong {
    display: block;

    margin-top: 13px;

    color: #6c7888;

    font-size: 9px;
    font-weight: 750;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .error-404-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }


    .error-404-machine-box {
        min-height: 320px;
    }


    .error-404-help-heading {
        grid-template-columns: 1fr;
        gap: 15px;
    }


    .error-404-links-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .error-404-hero {
        padding: 60px 0 65px;
    }


    .error-404-number {
        font-size: 92px;
    }


    .error-404-content h1 {
        margin-top: 23px;
    }


    .error-404-actions {
        flex-direction: column;
    }


    .error-404-btn {
        width: 100%;
    }


    .error-404-machine-box {
        min-height: 230px;
    }


    .error-404-machine-status {
        bottom: -5px;
    }


    .error-404-help {
        padding: 60px 0;
    }


    .error-404-links-grid {
        grid-template-columns: 1fr;
    }


    .error-404-link-card {
        min-height: 150px;
    }


    .error-404-categories {
        padding: 60px 0 70px;
    }

}