a {
    text-decoration: none;
}

.cookie-banner {
    display: flex;
}

.load_item {
    display: block;
}

.gsap_span_char-black {
    opacity: 0.1;
    color: #05051E;
    transition: color 0.6s ease;
}

.gsap_span_char-black.animate-color {
    animation: black-color-transition 0.6s forwards;
}

@keyframes black-color-transition {
    0% {
        color: #05051E;
    }

    30% {
        color: #914d21;
    }

    100% {
        color: #05051E;
    }
}

.gsap_span_char-white {
    opacity: 0.1;
    color: #F9F9FF;
    transition: color 0.6s ease;
}

.gsap_span_char-white.animate-color {
    animation: color-transition 0.6s forwards;
}

@keyframes color-transition {
    0% {
        color: #F9F9FF;
    }

    30% {
        color: #914d21;
    }

    100% {
        color: #F9F9FF;
    }
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.slider-hero-slide {
    opacity: 1;
    pointer-events: auto;
}

.nav-link_wrapper:hover .nav-link_dot {
    margin-left: 0;
}

.nav-link_wrapper:hover .nav-link-text {
    opacity: 0.35;
}

.nav-link_wrapper:hover .icon {
    transition: all 300ms;
    color: var(--main-green);
}

.line-stroke {
    stroke-dasharray: 60 600;
    animation: dash-move 3s linear infinite;
}

.line-stroke:nth-child(2) {
    animation-duration: 10s;
    animation-delay: 0.5s;
}

.line-stroke:nth-child(3) {
    animation-duration: 3.5s;
    animation-delay: 1s;
}

.line-stroke:nth-child(4) {
    animation-duration: 4.5s;
    animation-delay: 1.5s;
}

@keyframes dash-move {
    to {
        stroke-dashoffset: -600;
    }
}

.footer-svg-wrapper {
    width: 100%;
    position: relative;
    padding-bottom: 69.93%;
    overflow: hidden;
}

.footer-svg-wrapper svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ==========================================================================
   Desktop Navigation Bar
   ========================================================================== */

.desktop-nav-menu {
    display: none;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 9999px;
    padding: 0.35rem 0.85rem;
    position: relative;
    z-index: 20;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.desktop-nav-link {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.85rem;
    border-radius: 9999px;
}

.desktop-nav-link:hover,
.desktop-nav-link.is-active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
}

.desktop-nav-item {
    position: relative;
}

.desktop-nav-item .dropdown-icon {
    transition: transform 0.25s ease;
}

.desktop-nav-item:hover .dropdown-icon {
    transform: rotate(180deg);
}

.desktop-dropdown {
    position: absolute;
    top: calc(100% + 0.85rem);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: rgba(10, 10, 24, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 1rem;
    padding: 0.6rem;
    min-width: 230px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.desktop-dropdown::before,
.lang-dropdown::before {
    content: '';
    position: absolute;
    top: -24px;
    left: 0;
    width: 100%;
    height: 24px;
}

.desktop-nav-item:hover .desktop-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.desktop-dropdown-item {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.85rem;
    padding: 0.55rem 0.85rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    display: block;
}

.desktop-dropdown-item:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(3px);
}

.desktop-nav-actions {
    display: none;
    align-items: center;
    gap: 1rem;
}

.desktop-lang-switcher {
    position: relative;
    cursor: pointer;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8125rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.45rem 0.85rem;
    border-radius: 9999px;
    transition: all 0.2s ease;
}

.lang-current:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 0;
    background: rgba(10, 10, 24, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 0.75rem;
    padding: 0.4rem;
    min-width: 145px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: all 0.2s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.desktop-lang-switcher:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.lang-dropdown-item {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.8125rem;
    padding: 0.45rem 0.75rem;
    border-radius: 0.4rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.lang-dropdown-item:hover,
.lang-dropdown-item.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   Light Section (White Background) Navbar Theme
   ========================================================================== */

.navbar_wrapper.is-light-section .desktop-nav-menu {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.navbar_wrapper.is-light-section .desktop-nav-link {
    color: rgba(5, 5, 30, 0.75);
}

.navbar_wrapper.is-light-section .desktop-nav-link:hover,
.navbar_wrapper.is-light-section .desktop-nav-link.is-active {
    color: #05051e;
    background: rgba(0, 0, 0, 0.08);
}

.navbar_wrapper.is-light-section .lang-current {
    color: #05051e;
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.12);
}

.navbar_wrapper.is-light-section .lang-current:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #05051e;
}

.navbar_wrapper.is-light-section .nav-menu_button {
    background-color: #f0f0f5;
}

.navbar_wrapper.is-light-section .nav-menu_button-line {
    background-color: #05051e;
}

/* Tablet and Desktop media query (>= 992px) */
@media screen and (min-width: 992px) {
    .desktop-nav-menu {
        display: flex !important;
    }

    .desktop-nav-actions {
        display: flex !important;
    }

    .nav-menu_button {
        display: none !important;
    }
}

@media (min-width: 1440px) {
    html {
        font-size: 16px;
    }
}

@media (min-width: 768px) and (max-width: 1439px) {
    html {
        font-size: calc(100vw / 90);
    }
}

@media (max-width: 767px) {
    html {
        font-size: calc(100vw / 23.44);
    }
}

.inherit-color * {
    color: inherit;
}

.w-richtext> :not(div):first-child,
.w-richtext>div:first-child> :first-child {
    margin-top: 0 !important;
}

.w-richtext> :last-child,
.w-richtext ol li:last-child,
.w-richtext ul li:last-child {
    margin-bottom: 0 !important;
}

html,
body {
    max-width: 100vw;
    overflow-x: clip;
}

html.lock-scroll,
body.lock-scroll {
    overflow: hidden;
}

.button-primary {
    background: #2cac66;
    position: relative;
    overflow: hidden;
}

.button-primary>* {
    position: relative;
    z-index: 2;
}

.button-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.3) 30%,
            rgba(255, 255, 255, 0.8) 50%,
            rgba(255, 255, 255, 0.3) 70%,
            transparent 100%);
    transition: left 0.6s ease;
}

.button-primary:hover::before {
    left: 100%;
}

.button-primary:not(:hover)::before {
    left: -100%;
    transition: left 0.6s ease;
}

.button-primary::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            #2cac66 63.64%,
            #fff 94.12%);
    opacity: 0;
    transition: opacity 1s ease;
    pointer-events: none;
}

.button-primary:hover::after {
    opacity: 1;
}

.button-primary.is-white::before {
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(44, 172, 102, 0.3) 30%,
            rgba(44, 172, 102, 0.8) 50%,
            rgba(44, 172, 102, 0.3) 70%,
            transparent 100%);
}

.button-primary.is-white::after {
    background: linear-gradient(90deg,
            #fff 63.64%,
            #2cac66 94.12%);
}

.section-grid_body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
}

.section-grid-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
}

.section-grid-img::before {
    content: "";
    position: absolute;
    width: 14rem;
    height: 14rem;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 0) 70%);
    mask-image: radial-gradient(circle,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 0) 70%);
    -webkit-mask-image: radial-gradient(circle,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.section-grid-img.active {
    opacity: 1;
}

/* Uniform Category & Service / Product Cards Grid */
.news_wrapper {
    grid-column-gap: 2.25rem !important;
    grid-row-gap: 3rem !important;
    grid-template-rows: auto !important;
    grid-template-columns: repeat(3, 1fr) !important;
    grid-auto-columns: 1fr !important;
    display: grid !important;
    width: 100% !important;
}

.news_wrapper>* {
    grid-column: span 1 !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
}

@media (max-width: 991px) {
    .news_wrapper {
        grid-template-columns: repeat(2, 1fr) !important;
        grid-column-gap: 1.5rem !important;
        grid-row-gap: 2.5rem !important;
    }
}

@media (max-width: 767px) {
    .news_wrapper {
        grid-template-columns: 1fr !important;
        grid-column-gap: 1rem !important;
        grid-row-gap: 2rem !important;
    }
}

.news-card {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    width: 100% !important;
    height: 100% !important;
    text-decoration: none !important;
    color: inherit !important;
    transition: transform 0.35s ease !important;
}

.news-card:hover {
    transform: translateY(-6px) !important;
}

.news-card_img {
    border-radius: 1.25rem !important;
    width: 100% !important;
    height: 260px !important;
    min-height: 260px !important;
    max-height: 260px !important;
    margin-bottom: 1.25rem !important;
    position: relative !important;
    overflow: hidden !important;
    background-color: #05051e !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06) !important;
}

.news-card_img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.5s ease !important;
}

.news-card:hover .news-card_img img {
    transform: scale(1.06) !important;
}

.news-card_tag {
    z-index: 2 !important;
    -webkit-backdrop-filter: blur(1.5rem) !important;
    backdrop-filter: blur(1.5rem) !important;
    color: #ffffff !important;
    background-color: rgba(5, 5, 30, 0.75) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 6.25rem !important;
    padding: 0.4rem 1.1rem !important;
    position: absolute !important;
    top: 1.25rem !important;
    left: 1.25rem !important;
    font-weight: 700 !important;
    font-size: 0.875rem !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
}

/* Global Footer Link Styling */
.footer_wrapper a,
.footer-link,
.footer-privacy-link,
.footer_left a {
    color: rgba(249, 249, 255, 0.7) !important;
    text-decoration: none !important;
    transition: color 0.3s ease, transform 0.2s ease !important;
}

.footer_wrapper a:hover,
.footer-link:hover,
.footer-privacy-link:hover,
.footer_left a:hover {
    color: #2cac66 !important;
}

.footer_main a.footer-link {
    display: inline-block;
    color: rgba(249, 249, 255, 0.75) !important;
    text-decoration: none !important;
}

.footer_main a.footer-link:hover {
    color: #2cac66 !important;
    transform: translateX(4px);
}

/* ==========================================================================
   Catalogs Grid & 3D Interactive Cards
   ========================================================================== */
.catalogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    width: 100%;
}

@media (max-width: 991px) {
    .catalogs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .catalogs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.catalog-grid-item {
    height: 440px;
    perspective: 1200px;
    position: relative;
}

.catalog-grid-item .case-slide_body {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    text-decoration: none;
    display: block;
    border-radius: 1.25rem;
}

.catalog-grid-item:hover .case-slide_body {
    transform: rotateY(180deg);
}

.catalog-card-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}

.catalog-card-title-wrap {
    margin: auto 0;
    padding: 15px 0;
    width: 100%;
}

.catalog-card-title {
    font-size: 1.55rem;
    font-weight: 800;
    line-height: 1.35;
    margin: 0;
}

.catalog-card-title.is-white {
    color: #ffffff !important;
}

.catalog-pdf-badge {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 5px 14px;
    border-radius: 9999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.catalog-pdf-badge.is-back {
    background: rgba(44, 172, 102, 0.95);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.catalog-cta-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    margin-top: auto;
    transition: gap 0.25s ease;
}

.catalog-grid-item:hover .catalog-cta-link {
    gap: 14px;
}

.catalog-back-btn {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 20px;
    border-radius: 9999px;
    background: #2cac66;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 8px 24px rgba(44, 172, 102, 0.4);
    transition: all 0.25s ease;
}

.catalog-grid-item:hover .catalog-back-btn {
    background: #249155;
    gap: 12px;
}

/* Alternating colors for 3n items */
.catalogs-grid .catalog-grid-item:nth-child(3n + 1) .case-slide_forward {
    background-color: var(--dark-main, #05051e);
    color: var(--white, #ffffff);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.catalogs-grid .catalog-grid-item:nth-child(3n + 1) .catalog-cta-link {
    color: #2cac66;
}

.catalogs-grid .catalog-grid-item:nth-child(3n + 2) .case-slide_forward {
    background-color: var(--main-green, #2cac66);
    color: var(--white, #ffffff);
}
.catalogs-grid .catalog-grid-item:nth-child(3n + 2) .catalog-cta-link {
    color: #ffffff;
}

.catalogs-grid .catalog-grid-item:nth-child(3n + 3) .case-slide_forward {
    background-color: var(--white-bg, #f4f5f8);
    color: var(--dark-main, #05051e);
    border: 1px solid rgba(0, 0, 0, 0.08);
}
.catalogs-grid .catalog-grid-item:nth-child(3n + 3) .catalog-pdf-badge {
    background: rgba(5, 5, 30, 0.08);
    border-color: rgba(5, 5, 30, 0.15);
    color: #05051e;
}
.catalogs-grid .catalog-grid-item:nth-child(3n + 3) .catalog-cta-link {
    color: #2cac66;
}