@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal
}

@font-face {
    font-family: "HemiHead-BoldItalic";
    src: url("../fonts/HemiHead-BoldItalic.otf") format("opentype");
    font-weight: normal;
    font-style: normal
}

@font-face {
    font-family: "HemiHead-Bold";
    src: url("../fonts/HemiHead-Bold.otf") format("opentype");
    font-weight: normal;
    font-style: normal
}

html {
    scroll-behavior: smooth;
}

.hero-area {
    position: relative;
    width: 100%;
    height: 95vh !important;
    min-height: 35rem;
    background-color: #1a1a1a;
    overflow: hidden
}

.hero-area-inner,
.slider-active,
.swiper,
.swiper-wrapper,
.swiper-slide,
.hero-slide {
    height: 100% !important
}

@media (max-width:768px) {
    .hero-area {
        height: 70vh !important;
        min-height: 28rem
    }
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1
}

.hero-slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(2, 43, 58, 0.8) 0%, rgba(2, 43, 58, 0.45) 40%, rgba(2, 43, 58, 0.1) 75%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
}

@media (max-width:768px) {
    .hero-overlay {
        background: linear-gradient(180deg, rgba(2, 43, 58, 0.65) 0%, rgba(2, 43, 58, 0.9) 100%);
    }
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 650px;
    color: #fff;
    padding: 0;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0;
    border: none;
    width: 100%;
    margin-bottom: 12vh;
}

@media (max-width:991px) {
    .hero-content {
        max-width: 100%;
        padding: 0;
        margin-bottom: 8vh;
    }
}

.hero-title {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .3)
}

.text {
    font-size: .9375rem;
    opacity: .9;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0, 0, 0, .3)
}

.v2-btn {
    display: inline-flex;
    padding: .75rem 1.75rem;
    border-radius: 40px;
    background-color: var(--color-secondary);
    color: #fff;
    font-weight: 600;
    font-size: .8125rem;
    letter-spacing: .5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all .3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .15);
    position: relative;
    overflow: hidden;
}

.v2-btn:hover {
    background-color: var(--color-primary);
    color: #fff;
    transform: translateY(-2px);
}

.v2-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: ctaShimmer 3s infinite;
}


[data-ani] {
    opacity: 0;
    transform: translateY(20px)
}

.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: all .6s ease var(--delay)
}

.modern-bottom-right {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    gap: .75rem;
    z-index: 20
}

.hero-nav-btn {
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 50%;
    background: #ffffffd8;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .25s ease
}

.hero-nav-btn:hover {
    background: var(--color-secondary);
    color: #fff
}

.hero-nav-btn svg {
    width: 1rem;
    height: 1rem
}

@media (max-width:991px) {
    .hero-overlay {
        position: absolute;
        inset: 0;
        /* background: linear-gradient(90deg, rgba(0, 0, 0, .80), rgba(0, 0, 0, .521)) */
    }

    .hero-title {
        font-size: 1.4rem;
    }

    .text {
        font-size: .875rem;
    }

    .v2-btn {
        padding: .6rem .8rem;
        font-size: .9rem;
    }
}

@media (max-width:480px) {
    .hero-overlay {
        position: absolute;
        inset: 0;
        /* background: linear-gradient(90deg, rgba(0, 0, 0, .80), rgba(0, 0, 0, .521)) */
    }

    .hero-title {
        font-size: 1rem;
    }

    .text {
        font-size: .675rem;
    }

    .v2-btn {
        padding: .6rem .8rem;
        font-size: .7rem;
    }
}

.topbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    background-color: var(--color-primary) !important;
    color: #ffffff;
    display: flex;
    align-items: center;
    z-index: 999;
    font-size: .75rem
}

.topbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg)
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 16px
}

.topbar-left a {
    color: rgba(255, 255, 255, .85);
    transition: all .2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.topbar-left a:hover {
    color: #ffffff;
    transform: scale(1.1)
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 20px
}

.topbar-right a {
    color: rgba(255, 255, 255, .85);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color .2s ease
}

.topbar-right a:hover {
    color: #ffffff
}

.topbar-icon-svg {
    width: 14px;
    height: 14px;
    display: inline-block;
    vertical-align: middle
}

.topbar-icon-svg.contact-icon {
    width: 13px;
    height: 13px
}

@media (max-width:768px) {
    .topbar {
        display: none !important
    }
}

.header {
    position: fixed;
    top: 35px;
    left: 0;
    width: 100%;
    margin: 0;
    height: 100px;
    background-color: #ffffff !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: top 0.35s cubic-bezier(0.4, 0, 0.2, 1), height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 var(--spacing-lg)
}

body {
    padding-top: 0 !important
}

.header.scrolled {
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
    height: 90px;
    transition: top 0.35s cubic-bezier(0.4, 0, 0.2, 1), height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px 0;

}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%
}

.header-logo {
    display: flex;
    align-items: center
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    text-decoration: none;
    transition: all .3s ease
}

.logo-img {
    height: 85px;
    padding: 5px;
    width: auto;
    object-fit: contain
}

.logo-text {
    font-family: "HemiHead-BoldItalic", sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: var(--letter-spacing-wide);
    line-height: 1.2;
}

.nav-menu {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    height: 100%;
    margin-right: 20px;
    margin-left: 20px;
}

.mobile-menu-header {
    display: none
}

.nav-list {
    display: flex;
    list-style: none;
    gap: var(--spacing-xs);
    margin: 0;
    padding: 0;
    align-items: center;
    height: 100%
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%
}

.nav-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 10px 14px;
    font-size: 1rem;
    font-weight: 500;
    color: #000 !important;
    text-decoration: none;
    transition: all .3s ease;
    cursor: pointer
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary) !important;
    border-radius: 0
}

.dropdown-arrow-svg {
    width: 10px;
    height: 10px;
    margin-left: 6px;
    transition: transform .3s ease
}

.nav-item-dropdown:hover .dropdown-arrow-svg {
    transform: rotate(180deg)
}

.dropdown-menu {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background-color: #ffffff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .25s ease;
    z-index: 1010;
    padding: var(--spacing-xs) 0;
    border: 1px solid var(--color-gray-100)
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.dropdown-link {
    display: block;
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: .8125rem;
    color: var(--color-gray-700);
    text-decoration: none;
    transition: all var(--transition-base)
}

.dropdown-link:hover {
    background-color: var(--color-gray-50);
    color: var(--color-primary)
}

.nav-item-mega {
    position: static !important
}

.mega-menu {
    display: block !important;
    position: absolute;
    top: 98%;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #ffffff;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12), 0 8px 20px rgba(0, 0, 0, .06);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity .35s cubic-bezier(.4, 0, .2, 1), visibility .35s cubic-bezier(.4, 0, .2, 1), transform .35s cubic-bezier(.4, 0, .2, 1);
    z-index: 1010;
    border-top: 3px solid var(--color-secondary);
    pointer-events: none
}

.mega-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
    background: transparent;
}

.nav-item-mega:hover .mega-menu,
.nav-item-mega.active .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto
}

.mega-menu-inner {
    display: flex;
    max-width: 1320px;
    margin: 0 auto;
    padding: 24px 28px;
    gap: 24px
}

.mega-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px
}

.mega-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 22px 24px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    background-color: var(--color-gray-50);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .3s cubic-bezier(.4, 0, .2, 1), transform .4s cubic-bezier(.4, 0, .2, 1), background .4s cubic-bezier(.4, 0, .2, 1), border-color .3s ease, box-shadow .4s cubic-bezier(.4, 0, .2, 1)
}

.mega-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mega-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background-color: rgba(31, 122, 140, 0.08);
    color: var(--color-primary);
    transition: background-color 0.35s ease, color 0.35s ease;
    flex-shrink: 0;
}

.mega-card-icon {
    width: 20px;
    height: 20px;
}

.mega-card:hover .mega-icon-wrapper,
.mega-card.active .mega-icon-wrapper {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.nav-item-mega:hover .mega-card,
.nav-item-mega.active .mega-card {
    opacity: 1;
    transform: translateY(0)
}

.nav-item-mega:hover .mega-card:nth-child(1),
.nav-item-mega.active .mega-card:nth-child(1) {
    transition-delay: .05s
}

.nav-item-mega:hover .mega-card:nth-child(2),
.nav-item-mega.active .mega-card:nth-child(2) {
    transition-delay: .10s
}

.nav-item-mega:hover .mega-card:nth-child(3),
.nav-item-mega.active .mega-card:nth-child(3) {
    transition-delay: .15s
}

.nav-item-mega:hover .mega-card:nth-child(4),
.nav-item-mega.active .mega-card:nth-child(4) {
    transition-delay: .20s
}

.nav-item-mega:hover .mega-card:nth-child(5),
.nav-item-mega.active .mega-card:nth-child(5) {
    transition-delay: .25s
}

.mega-card:hover,
.mega-card.active {
    background: linear-gradient(135deg, var(--color-primary));
    border-color: transparent;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(2, 43, 58, .3)
}

.mega-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .12), transparent);
    transition: left .6s cubic-bezier(.4, 0, .2, 1);
    pointer-events: none
}

.mega-card:hover::after,
.mega-card.active::after {
    left: 100%
}

.mega-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-gray-800);
    line-height: 1.3;
    transition: color .35s cubic-bezier(.4, 0, .2, 1)
}

.mega-card:hover .mega-card-title,
.mega-card.active .mega-card-title {
    color: #ffffff
}

.mega-card-desc {
    font-size: .75rem;
    color: var(--color-gray-500);
    line-height: 1.5;
    transition: color .35s cubic-bezier(.4, 0, .2, 1)
}

.mega-card:hover .mega-card-desc,
.mega-card.active .mega-card-desc {
    color: rgba(255, 255, 255, .75)
}

.mega-card-arrow {
    display: flex;
    align-items: center;
    color: var(--color-secondary);
    margin-top: 6px;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity .3s cubic-bezier(.4, 0, .2, 1), transform .3s cubic-bezier(.4, 0, .2, 1), color .3s ease
}

.mega-card:hover .mega-card-arrow {
    opacity: 1;
    transform: translateX(0);
    color: #ffffff
}

.mega-cta {
    flex-shrink: 0;
    width: 240px;
    background: linear-gradient(145deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateX(15px);
    transition: opacity .4s cubic-bezier(.4, 0, .2, 1) .15s, transform .4s cubic-bezier(.4, 0, .2, 1) .15s
}

.nav-item-mega:hover .mega-cta,
.nav-item-mega.active .mega-cta {
    opacity: 1;
    transform: translateX(0)
}

.mega-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, .06) 0%, transparent 60%);
    animation: ctaPulse 4s ease-in-out infinite;
    pointer-events: none
}

.mega-card:hover {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light))
}

.mega-card:hover .mega-card-title {
    color: #fff
}

.mega-card:hover .mega-card-desc {
    color: rgba(255, 255, 255, .75)
}

@keyframes ctaPulse {

    0%,
    100% {
        transform: scale(.8);
        opacity: 0
    }

    50% {
        transform: scale(1.2);
        opacity: 1
    }
}

.mega-cta-badge {
    display: inline-block;
    width: fit-content;
    font-size: .6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    background: rgba(255, 255, 255, .15);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    backdrop-filter: blur(4px);
    transition: background .3s ease
}

.mega-cta:hover .mega-cta-badge {
    background: rgba(255, 255, 255, .25)
}

.mega-cta-title {
    font-family: var(--font-family-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3
}

.mega-cta-text {
    font-size: .8125rem;
    opacity: .85;
    line-height: 1.55;
    margin-bottom: 20px;
    flex: 1
}

.mega-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: var(--color-primary);
    font-size: .8125rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all .35s cubic-bezier(.4, 0, .2, 1);
    width: fit-content;
    position: relative;
    overflow: hidden
}

.mega-cta-btn:hover {
    background: var(--color-secondary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(31, 122, 140, .4)
}

.mega-cta-btn svg {
    transition: transform .35s cubic-bezier(.4, 0, .2, 1)
}

.mega-cta-btn:hover svg {
    transform: translateX(4px)
}

.header.scrolled .mega-menu {
    border-radius: 0
}

@media (max-width:1200px) and (min-width:993px) {
    .mega-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .mega-cta {
        width: 210px
    }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px
}

.btn-contact {
    background-color: #ff5900 !important;
    color: #ffffff !important;
    border: none;
    border-radius: 50px !important;
    padding: 14px 24px !important;
    font-size: .75rem !important;
    font-weight: 600 !important;
    letter-spacing: .5px;
    text-transform: uppercase;
    transition: all .3s ease;
    min-height: auto !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none
}

.btn-contact:hover {
    background-color: var(--color-primary) !important
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-sm)
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-primary);
    border-radius: 2px;
    transition: all var(--transition-base)
}

@media (min-width: 993px) and (max-width: 1200px) {
    .nav-link {
        font-size: .8rem;
    }
}

@media (max-width:992px) {
    .mobile-hidden {
        display: none;
    }

    .nav-menu {
        margin-right: 0px !important;
    }

    body.pvm-menu-open {
        overflow: hidden;
        touch-action: none
    }

    .mobile-menu-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .45);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        opacity: 0;
        visibility: hidden;
        transition: opacity .35s ease, visibility .35s ease;
        z-index: 2;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .header {
        top: 12px;
        left: 12px;
        right: 12px;
        height: 80px;
        width: calc(100% - 24px);
        padding: 0 16px;
        border-radius: 16px
    }

    .header.scrolled {
        top: 0;
        left: 0;
        right: 0;
        height: 80px;
        border-radius: 0
    }

    .logo-text {
        font-size: 1rem
    }

    .logo-img {
        height: 50px;
        padding: 0;
    }

    .nav-toggle {
        display: flex;
        width: 42px;
        height: 42px;
        padding: 0;
        border: none;
        background: #f4f7fb;
        border-radius: 12px;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        transition: .3s
    }

    .nav-toggle:hover {
        background: var(--color-primary)
    }

    .nav-toggle span {
        width: 18px;
        height: 2px;
        background: var(--color-primary);
        border-radius: 50px;
        transition: .35s
    }

    .nav-toggle:hover span {
        background: #fff
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        left: auto;
        width: min(400px, 85vw);
        height: 100dvh;
        background: #fff;
        display: flex;
        flex-direction: column;
        transform: translateX(120%);
        transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 99999;
        box-shadow: -20px 0 60px rgba(0, 0, 0, .15)
    }

    .nav-menu.is-open {
        transform: translateX(0);
    }

    .mobile-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 72px;
        padding: env(safe-area-inset-top) 20px 16px;
        border-bottom: 1px solid #edf2f7;
        flex-shrink: 0;
        background: #fff
    }

    .mobile-menu-close {
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
        background: #f4f7fb;
        border-radius: 12px;
        cursor: pointer;
        transition: .3s
    }

    .mobile-menu-close:hover {
        background: var(--color-primary);
        color: #fff
    }

    .mobile-menu-body {
        flex: 1;
        overflow: auto;
        padding: 14px
    }

    .mobile-menu-body::-webkit-scrollbar {
        width: 4px
    }

    .mobile-menu-body::-webkit-scrollbar-thumb {
        background: #d4d4d4;
        border-radius: 20px
    }

    .nav-list {
        display: flex;
        flex-direction: column;
        gap: 6px;
        padding: 0;
        margin: 0;
        height: auto
    }

    .nav-item {
        width: 100%;
        border: none
    }

    .nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 14px 16px;
        font-size: .875rem;
        font-weight: 600;
        color: #222 !important;
        border-radius: 14px;
        background: #fff;
        transition: .3s
    }

    .nav-link:hover {
        background: #f4f7fb;
        transform: translateX(4px)
    }

    .nav-link.active {
        background: var(--color-primary);
        color: #fff !important
    }

    .nav-link.active svg {
        color: #fff
    }

    .dropdown-arrow-svg {
        width: 14px;
        height: 14px;
        transition: .3s
    }

    .nav-item.active .dropdown-arrow-svg {
        transform: rotate(180deg)
    }

    .dropdown-menu {
        position: static;
        display: block !important;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        box-shadow: none;
        border: none;
        padding: 0;
        background: #f8fafc;
        border-radius: 12px;
        margin: 6px 0;
        transition: max-height .35s ease
    }

    .nav-item-dropdown.active>.dropdown-menu {
        max-height: 500px
    }

    .dropdown-link {
        display: block;
        padding: 14px 18px;
        font-size: .8125rem;
        color: #555
    }

    .dropdown-link:hover {
        background: #fff
    }

    .nav-item-mega {
        position: relative !important;
        flex-wrap: wrap
    }

    .mega-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        border-radius: 14px;
        background: #f8fafc;
        max-height: 0;
        overflow: hidden;
        transition: max-height .4s;
        pointer-events: auto !important;
        margin-top: 8px
    }

    .nav-item-mega.active>.mega-menu {
        max-height: 1400px
    }

    .mega-menu-inner {
        display: block;
        padding: 14px
    }

    .mega-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px
    }

    .mega-card {
        display: block;
        padding: 16px;
        background: #fff;
        border: 1px solid #edf2f7;
        border-radius: 14px;
        opacity: 1 !important;
        transform: none !important
    }

    .mega-card:hover {
        background: #fff;
        transform: none;
        box-shadow: 0 8px 24px rgba(0, 0, 0, .06)
    }

    .mega-card-title {
        font-size: .875rem;
        font-weight: 600;
        margin-bottom: 4px
    }

    .mega-card-desc {
        font-size: .8125rem;
        line-height: 1.5;
        color: #000
    }

    .mega-card-arrow {
        display: none
    }

    .mega-card::after {
        display: none
    }

    .mega-cta {
        margin-top: 14px;
        width: 100%;
        padding: 20px;
        border-radius: 16px;
        opacity: 1 !important;
        transform: none !important
    }

    .mega-cta::before {
        display: none
    }

    .mega-cta-title {
        font-size: 1rem
    }

    .mega-cta-text {
        font-size: .8125rem
    }

    .mobile-menu-footer {
        padding: 20px;
        border-top: 1px solid #edf2f7;
        background: #fff;
        flex-shrink: 0
    }

    .mobile-contact {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 18px
    }

    .mobile-contact a {
        font-size: .8125rem;
        color: #475569;
        text-decoration: none
    }

    .mobile-cta {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 52px;
        border-radius: 14px;
        font-size: .8125rem;
        font-weight: 700
    }

    .nav-item {
        opacity: 0;
        transform: translateX(20px)
    }

    .nav-menu.is-open .nav-item {
        animation: mobileItem .45s forwards
    }

    .nav-menu.is-open .nav-item:nth-child(1) {
        animation-delay: .05s
    }

    .nav-menu.is-open .nav-item:nth-child(2) {
        animation-delay: .10s
    }

    .nav-menu.is-open .nav-item:nth-child(3) {
        animation-delay: .15s
    }

    .nav-menu.is-open .nav-item:nth-child(4) {
        animation-delay: .20s
    }

    .nav-menu.is-open .nav-item:nth-child(5) {
        animation-delay: .25s
    }

    .nav-menu.is-open .nav-item:nth-child(6) {
        animation-delay: .30s
    }

    @keyframes mobileItem {
        to {
            opacity: 1;
            transform: none
        }
    }

    .header-actions {
        gap: 10px
    }

    .btn-contact {
        display: none
    }

    .mega-card {
        display: block;
        padding: 16px;
        border: none;
        border-radius: 14px;
        opacity: 1 !important;
        transform: none !important;
        background: #f8fafc !important;
        transition: background .25s, border-color .25s, box-shadow .25s
    }

    .mega-card:hover, .mega-card.active {
        background: var(--color-primary) !important;
        border-color: rgba(255, 255, 255, 0.1) !important;
        box-shadow: 0 10px 24px rgba(15, 23, 42, 0.15);
        transform: none !important
    }

    .mega-card-title {
        color: var(--color-primary) !important;
        font-size: .875rem;
        font-weight: 600;
        transition: color .25s;
    }

    .mega-card-desc {
        color: #475569 !important;
        font-size: .8125rem;
        line-height: 1.5;
        display: none;
    }

    .mega-card:hover .mega-card-title, .mega-card.active .mega-card-title {
        color: #ffffff !important
    }

    .mega-card:hover .mega-icon-wrapper svg, .mega-card.active .mega-icon-wrapper svg {
        color: #ffffff !important;
    }

    .mega-card:hover .mega-card-desc, .mega-card.active .mega-card-desc {
        color: rgba(255, 255, 255, 0.8) !important
    }

    .mega-card::before,
    .mega-card::after {
        display: none !important
    }

    .mega-card-arrow {
        display: none !important
    }

    .nav-link::after {
        content: none
    }

    .mobile-contact-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 0;
        color: #475569;
        text-decoration: none;
        font-size: .8125rem;
        transition: .25s
    }

    .mobile-contact-item svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
        color: var(--color-secondary)
    }

    .mobile-contact-item:hover {
        color: var(--color-primary)
    }

    .mobile-contact-item:hover svg {
        color: var(--color-primary)
    }

    .desktop-none {
        display: block !important
    }
}

@media (max-width:992px) {
    .nav-item-mega:hover .mega-card {
        opacity: 1 !important;
        transform: none !important
    }

    .nav-item-mega:hover .mega-cta {
        opacity: 1 !important;
        transform: none !important
    }
}

.desktop-none {
    display: none
}

.page-banner {
    position: relative;
    min-height: 270px;
    display: flex;
    align-items: flex-end;
    padding: 100px 0 30px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden
}

.page-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 43, 58, .82), rgba(2, 43, 58, .55), rgba(2, 43, 58, .35))
}

.page-banner .container {
    position: relative;
    z-index: 2
}

.page-banner-content {
    color: #fff;
    max-width: 70%;
    padding-top: 1rem
}

.page-banner-content h1 {
    margin: 0 0 14px;
    font-size: 1.75rem;
    line-height: 1.15;
    font-weight: 700;
    color: #fff
}

.breadcrumb-mesa {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: .875rem;
    color: rgba(255, 255, 255, .8)
}

.breadcrumb-mesa a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    transition: .3s
}

.breadcrumb-mesa a:hover {
    color: #4ea8ff
}

.breadcrumb-mesa svg {
    width: 14px;
    height: 14px
}

.breadcrumb-mesa .divider {
    opacity: .5
}

@media (max-width:992px) {
    .page-banner {
        min-height: 240px;
        padding: 90px 0 40px
    }

    .page-banner-content h1 {
        font-size: 1.25rem
    }

    .breadcrumb-mesa {
        font-size: .75rem;
        gap: 8px
    }
}

.contact-section {
    position: relative;
    padding: 100px 0;
    background: #f8fafc;
    overflow: hidden
}

.contact-section::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -180px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, #0d6efd15 0%, transparent 70%);
    border-radius: 50%
}

.contact-section::after {
    content: "";
    position: absolute;
    left: -120px;
    bottom: -120px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, #0d6efd10 0%, transparent 70%);
    border-radius: 50%
}

.contact-section .container {
    position: relative;
    z-index: 2
}

.contact-info-grid {
    margin-bottom: 60px
}

.contact-card {
    position: relative;
    height: 100%;
    padding: 35px 30px;
    background: #fff;
    border-radius: 22px;
    border: 1px solid #eef2f6;
    transition: .35s;
    overflow: hidden;
    box-shadow: 0 12px 45px rgba(0, 0, 0, .04)
}

.contact-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 110, 253, .06), transparent);
    opacity: 0;
    transition: .35s
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .10);
    border-color: #d6e5ff
}

.contact-card:hover::before {
    opacity: 1
}

.contact-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color: #fff;
    background: linear-gradient(135deg, #0d6efd, #4f8cff);
    transition: .35s
}

.contact-card:hover .contact-icon {
    transform: rotate(-8deg) scale(1.05)
}

.contact-icon svg {
    width: 28px;
    height: 28px
}

.contact-card h4 {
    margin-bottom: 16px;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-primary)
}

.contact-card p {
    color: #000;
    line-height: 1.7;
    margin-bottom: 18px;
    font-size: .875rem
}

.contact-card a {
    display: block;
    margin-bottom: 10px;
    color: #334155;
    text-decoration: none;
    transition: .3s;
    word-break: break-word
}

.contact-card a:hover {
    color: #0d6efd;
    padding-left: 6px
}

.contact-wrapper {
    display: flex;
    gap: 35px
}

.contact-map {
    height: 100%;
    min-height: 650px;
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 15px 50px rgba(0, 0, 0, .08)
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 650px;
    border: 0;
    filter: grayscale(.15);
    transition: .4s
}

.contact-map:hover iframe {
    filter: none;
    transform: scale(1.02)
}

.contact-form-card {
    height: 100%;
    padding: 45px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid #edf2f7;
    box-shadow: 0 18px 60px rgba(0, 0, 0, .08)
}

.contact-form-header {
    margin-bottom: 35px
}

.contact-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 50px;
    background: #eef5ff;
    color: #0d6efd;
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 16px
}

.contact-form-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px
}

.contact-form-header p {
    color: #000;
    line-height: 1.7;
    font-size: .875rem
}

.form-group {
    margin-bottom: 12px
}

.form-label {
    margin-bottom: 6px;
    color: var(--color-primary);
    font-size: 0.875rem;
}

.form-label span {
    color: #ef4444
}

.input-wrapper {
    position: relative
}

.modern-input {
    width: 100%;
    height: 48px;
    border-radius: 10px;
    border: 1px solid #dbe4ee;
    padding: 0 16px 0 44px;
    background: #f8fafc;
    transition: .3s
}

textarea.modern-input {
    min-height: 140px;
    height: auto;
    resize: none;
    padding: 12px 16px 12px 44px;
}

.modern-input:focus {
    border-color: #0d6efd;
    background: #fff;
    box-shadow: 0 0 0 5px rgba(13, 110, 253, .08)
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    transition: .3s
}

.input-wrapper textarea + .input-icon,
textarea + .input-icon {
    top: 14px;
    transform: none
}

.input-wrapper:focus-within .input-icon {
    color: #0d6efd
}

.mte-contact-submit {
    height: 48px;
    border: none;
    border-radius: 10px;
    color: #fff;
    font-weight: 700;
    font-size: .875rem;
    background: linear-gradient(135deg, var(--color-primary), #0d6efd);
    transition: .35s
}

.mte-contact-submit:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(13, 110, 253, .25)
}

.contact-form2 .error,
.contact-form2 label.error {
    display: none;
    margin-top: 8px;
    color: #ef4444;
    font-size: .8125rem
}

.contact-form2 .modern-input.error {
    border-color: #ef4444;
    box-shadow: none
}

.contact-form2 .modern-input.valid {
    border-color: #22c55e
}

.contact-card {
    position: relative;
    height: 100%;
    padding: 36px;
    overflow: hidden;
    border-radius: 26px;
    background: #fff;
    border: 1px solid #edf2f7;
    box-shadow: 0 20px 50px rgba(15, 23, 42, .08);
    transition: .4s ease;
    isolation: isolate
}

.contact-card::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: -90px;
    top: -90px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, .12), rgba(37, 99, 235, 0));
    transition: .45s;
    z-index: -1
}

.contact-card::after {
    content: "";
    position: absolute;
    width: 110px;
    height: 110px;
    left: -35px;
    bottom: -35px;
    border-radius: 24px;
    transform: rotate(45deg);
    background: linear-gradient(135deg, rgba(59, 130, 246, .08), transparent);
    transition: .45s;
    z-index: -1
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: #bfd7ff;
    box-shadow: 0 28px 70px rgba(37, 99, 235, .15)
}

.contact-card:hover::before {
    transform: scale(1.2)
}

.contact-card:hover::after {
    transform: rotate(60deg) scale(1.15)
}

.contact-icon {
    position: relative;
    width: 74px;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    color: #fff;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    margin-bottom: 26px;
    transition: .35s;
    overflow: hidden
}

.contact-icon::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, .25), transparent)
}

.contact-card:hover .contact-icon {
    transform: rotate(-8deg) scale(1.08)
}

.contact-card .card-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .04;
    background-image: linear-gradient(#2563eb 1px, transparent 1px), linear-gradient(90deg, #2563eb 1px, transparent 1px);
    background-size: 28px 28px
}

.contact-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px
}

.contact-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #475569;
    transition: .3s
}

.contact-card a:hover {
    color: #2563eb;
    transform: translateX(6px)
}

.alert {
    border-radius: 14px;
    border: none
}

.input-wrapper+.invalid-feedback {
    display: block;
    margin-top: 12px
}

@media(max-width:1199px) {
    .contact-form-card {
        padding: 35px
    }

    .contact-form-header h2 {
        font-size: 1.5rem
    }
}

@media(max-width:991px) {
    .contact-section {
        padding: 70px 0
    }

    .contact-info-grid {
        margin-bottom: 40px
    }

    .contact-map {
        min-height: 420px;
        margin-bottom: 35px
    }

    .contact-map iframe {
        min-height: 420px
    }

    .contact-form-card {
        padding: 30px
    }

    .contact-form-header {
        text-align: center
    }

    .contact-form-header h2 {
        font-size: 1.375rem
    }
}

@media(max-width:767px) {
    .contact-card {
        padding: 28px
    }

    .contact-icon {
        width: 60px;
        height: 60px
    }

    .contact-form-card {
        padding: 24px
    }

    .contact-form-header h2 {
        font-size: 1.25rem
    }

    .modern-input {
        height: 48px
    }

    textarea.modern-input {
        min-height: 130px
    }
}

.mesa-about-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background: radial-gradient(circle at top left, #edf6ff 0%, transparent 45%), radial-gradient(circle at bottom right, #f3fbff 0%, transparent 40%), #fff
}

.mesa-about-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(2, 43, 58, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(2, 43, 58, .03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none
}

.mesa-about-image {
    position: relative;
    border-radius: 30px
}

.mesa-about-image img {
    width: 100%;
    border-radius: 30px;
    display: block;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
    transition: .45s
}

.mesa-about-image:hover img {
    transform: scale(1.03)
}

.mesa-floating-card {
    position: absolute;
    background: #fff;
    padding: 22px;
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .12);
    animation: mesaFloat 5s ease-in-out infinite;
    border: 1px solid rgba(31, 122, 140, .12);
    z-index: 2
}

.mesa-floating-card h3 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--color-primary);
    font-weight: 700
}

.mesa-floating-card span {
    font-size: .75rem;
    color: #000
}

.experience-card {
    left: -30px;
    bottom: 35px
}

.project-card {
    right: -30px;
    top: 40px;
    animation-delay: 1.5s
}

.mesa-section-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 50px;
    background: #e8f5ff;
    color: #0b63ce;
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 16px
}

.mesa-about-content h2 {
    font-size:2rem;
    line-height: 1.15;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px
}

.mesa-about-content p {
    font-size: .9375rem;
    line-height: 1.75;
    color: #000000;
    margin-bottom: 28px
}

.mesa-feature-list {
    margin-bottom: 40px
}

.mesa-about-feature {
    display: flex;
    align-items: center;
    height: 52px;
    padding: 10px 18px;
    border-radius: 12px;
    margin-bottom: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-primary);
    background: #FFFFFF;
    border: 1px solid rgba(2, 43, 58, 0.08);
    box-shadow: 0 4px 12px rgba(2, 43, 58, 0.03);
}

.mesa-about-feature:hover {
    transform: translateY(-4px) scale(1.02);
    /* border-color: var(--color-secondary); */
    /* background: #E1E5F2; */
    color: var(--color-primary);
    box-shadow: 0 12px 24px rgba(31, 122, 140, 0.15);
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--color-secondary);
    color: #FFFFFF;
    margin-right: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.check-icon svg {
    margin: 0 !important;
}

.mesa-about-feature:hover .check-icon {
    transform: rotate(360deg);
    background: var(--color-primary);
    box-shadow: 0 0 10px rgba(2, 43, 58, 0.3);
}


.mesa-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 45px
}

.mesa-stat {
    background: #fff;
    border-radius: 18px;
    text-align: center;
    padding: 25px;
    border: 1px solid #edf2f7;
    transition: .35s
}

.mesa-stat:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .08)
}

.mesa-stat h3 {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 4px;
    font-weight: 700
}

.mesa-stat span {
    color: #000;
    font-size: .75rem
}

.mesa-about-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 60px;
    background: var(--color-primary);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: .35s
}

.mesa-about-btn svg {
    width: 18px;
    height: 18px;
    transition: .35s
}

.mesa-about-btn:hover {
    color: #fff;
    background: var(--color-secondary);
    transform: translateY(-4px)
}

.mesa-about-btn:hover svg {
    transform: translateX(5px)
}

@keyframes mesaFloat {
    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-12px)
    }

    100% {
        transform: translateY(0)
    }
}

@media(max-width:1199px) {
    .mesa-about-content h2 {
        font-size: 2rem
    }
}

@media(max-width:991px) {
    .mesa-about-section {
        padding: 80px 0
    }

    .mesa-about-content {
        margin-top: 10px
    }

    .experience-card {
        left: 20px;
        bottom: 20px
    }

    .project-card {
        right: 20px;
        top: 20px
    }

    .mesa-stats {
        grid-template-columns: repeat(2, 1fr)
    }

    .mesa-about-content h2 {
        font-size: 1.75rem
    }
}

@media(max-width:767px) {
    .mesa-about-content h2 {
        font-size: 1.5rem
    }

    .mesa-about-content p {
        font-size: .875rem
    }

    .mesa-stats {
        grid-template-columns: 1fr 1fr;
        gap: 15px
    }

    .mesa-floating-card {
        padding: 16px
    }

    .mesa-floating-card h3 {
        font-size: 1.25rem
    }

    .experience-card {
        left: 10px;
        bottom: 10px
    }

    .project-card {
        right: 10px;
        top: 10px
    }
}

@media(max-width:575px) {
    .mesa-about-section {
        padding: 70px 0
    }

    .mesa-about-content h2 {
        font-size: 1.375rem
    }

    .mesa-stats {
        grid-template-columns: 1fr
    }

    .mesa-about-btn {
        width: max-content;
        justify-content: center
    }
}

.mesa-services {
    padding: 110px 0;
    background: #f8fafc;
    position: relative
}

.mesa-section-header {
    max-width: 760px;
    margin: 0 auto 70px
}

.mesa-tag {
    display: inline-block;
    padding: 6px 14px;
    background: #eaf4ff;
    color: #2563eb;
    border-radius: 50px;
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 14px
}

.mesa-section-header h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 16px
}

.mesa-section-header p {
    color: #000;
    line-height: 1.75;
    font-size: .9375rem
}

.service-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 32px 28px;
    height: 100%;
    overflow: hidden;
    border: 1px solid #e8eef5;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
        box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1),
        border-color 0.4s cubic-bezier(0.25, 1, 0.5, 1),
        color 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 12px 35px rgba(15, 23, 42, .05);
    z-index: 1;
}

.service-card::before {
    content: "";
    position: absolute;
    bottom: -100px;
    left: 50%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--color-primary);
    transform: translate(-50%, 50%) scale(0);
    transition: transform 1.1s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary-light);
    color: #fff;
    box-shadow: 0 20px 45px rgba(0, 112, 176, 0.22);
}

.service-card:hover h3,
.service-card:hover p,
.service-card:hover a {
    color: #fff;
}

.service-card:hover .service-icon {
    background: #fff;
    color: var(--color-primary);
}

.service-card:hover::before {
    transform: translate(-50%, 50%) scale(4.5);
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.375rem;
    border-radius: 16px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: #fff;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.4s ease, color 0.4s ease;
}

.service-card:hover .service-icon {
    transform: translateY(-4px) rotate(-8deg) scale(1.05);
}

.service-card h3 {
    font-size: 1.125rem;
    color: var(--color-primary);
    margin-bottom: 12px;
    font-weight: 700
}

.service-card p {
    color: #000;
    line-height: 1.7;
    margin-bottom: 22px;
    font-size: .8125rem
}

.service-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #2563eb;
    font-weight: 600;
    transition: .3s
}

.service-card:hover a {
    transform: translateX(6px)
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: #fff;
    transition: .35s
}

.service-icon svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    transition: .35s
}

.service-card:hover .service-icon {
    transform: translateY(-6px) rotate(-6deg);
    box-shadow: 0 18px 35px rgba(31, 122, 140, .28)
}

@media(max-width:991px) {
    .mesa-services {
        padding: 80px 0
    }

    .mesa-section-header h2 {
        font-size: 1.75rem
    }
}

@media(max-width:767px) {
    .mesa-section-header {
        margin-bottom: 50px
    }

    .mesa-section-header h2 {
        font-size: 1.5rem
    }

    .mesa-section-header p {
        font-size: .875rem
    }

    .service-card {
        padding: 30px
    }

    .service-icon {
        width: 52px;
        height: 52px;
        font-size: 1.125rem
    }

    .service-card h3 {
        font-size: 1rem
    }
}

.mesa-products {
    position: relative;
    padding: 100px 0;
    /* background: #abd5ff83; */
    overflow: hidden
}

.mesa-products::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    top: -220px;
    right: -180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(31, 122, 140, .22), transparent 70%)
}

.mesa-products::after {
    content: "";
    position: absolute;
    inset: 0;
    background-size: 34px 34px;
    opacity: .25;
    pointer-events: none
}

.mesa-products-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px
}

.mesa-products-heading {
    max-width: 700px
}

.mesa-products-heading h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin: 14px 0
}

.mesa-products-heading p {
    color: #000;
    line-height: 1.8;
    max-width: 620px;
    font-size: 1rem;
}

.mesa-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    border-radius: 40px;
    background: var(--color-primary);
    color: #fff;
    font-weight: 700;
    font-size: .6875rem;
    letter-spacing: 1px;
}

.mesa-view-all {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    padding: 16px 26px;
    border-radius: 60px;
    background: var(--color-primary);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: .35s
}

.mesa-view-all:hover {
    background: var(--color-secondary);
    color: #fff;
    transform: translateY(-4px)
}

.mesa-view-all svg {
    width: 18px;
    height: 18px;
    transition: .35s
}

.mesa-view-all:hover svg {
    transform: translateX(6px)
}

.mesaProductsSwiper {
    padding: 10px 5px 25px
}

.mesa-product-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #e5edf5;
    transition: .35s;
    height: 100%;
    /* box-shadow: 0 12px 35px rgba(2, 43, 58, .06) */
}

.mesa-product-card:hover {
    transform: translateY(-8px);
    /* box-shadow: 0 24px 60px rgba(2, 43, 58, .12) */
}

.mesa-product-card-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none !important;
}

.mesa-product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: linear-gradient(180deg, #ffffff, #f3f8fc); */
    overflow: hidden;
}

.mesa-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0;
    transition: .4s;
}

.mesa-product-card:hover img {
    transform: scale(1.06)
}

.mesa-product-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: var(--color-secondary);
    color: #fff;
    padding: 5px 10px;
    border-radius: 30px;
    font-size: .625rem;
    font-weight: 700;
    letter-spacing: .5px
}

.mesa-product-content {
    padding: 26px
}

.mesa-category {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--color-secondary);
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase
}

.mesa-product-content h3 {
    font-size: 1.125rem;
    color: var(--color-primary);
    margin-bottom: 10px;
    font-weight: 700
}

.mesa-product-content p {
    color: #000;
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: .8125rem
}

.mesa-product-content a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    transition: .35s
}

.mesa-product-content a:hover {
    color: var(--color-secondary)
}

.mesa-product-content svg {
    width: 18px;
    height: 18px;
    transition: .35s
}

.mesa-product-content a:hover svg {
    transform: translateX(5px)
}

.mesa-products-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 25px
}

.mesa-products-prev,
.mesa-products-next {
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
    transition: .35s
}

.mesa-products-prev:hover,
.mesa-products-next:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translateY(-4px)
}

.mesa-products-prev svg,
.mesa-products-next svg {
    width: 20px;
    height: 20px
}

.mesa-products-pagination {
    width: auto !important
}

.mesa-products-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #b8c4d2;
    opacity: 1;
    transition: .35s
}

.mesa-products-pagination .swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 20px;
    background: var(--color-secondary)
}

@media(max-width:991px) {
    .mesa-products {
        padding: 80px 0
    }

    .mesaProductsSwiper .mesa-product-card {
        width: 100% !important;
        height: 100% !important;
    }

    .mesa-products-top {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 45px
    }

    .mesa-products-heading h2 {
        font-size: 1.15rem
    }
}

@media(max-width:767px) {
    .mesa-products {
        padding: 70px 0
    }

    .mesa-products-heading h2 {
        font-size: 1.15rem
    }

    .mesa-product-image {
        /* preserved aspect-ratio */
    }

    .mesa-product-image img {
        /* preserved object-fit */
    }

    .mesa-product-content {
        padding: 22px
    }

    .mesa-product-content h3 {
        font-size: 1rem
    }

    .mesa-products-controls {
        margin-top: 35px
    }
}

.mesa-product-showcase {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: #eeeeee;
}

.mesa-product-showcase::before {
    content: "";
    position: absolute;
    inset: 0;
    background-size: 42px 42px;
    opacity: .35;
    pointer-events: none
}

.mesa-product-showcase::after {
    content: "";
    position: absolute;
    left: -40px;
    bottom: 30px;
    width: 320px;
    height: 380px;
    z-index: 0;
    opacity: .045;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 300' fill='none' stroke='%23022B3A' stroke-width='1.2'%3E%3C!-- Panel enclosure --%3E%3Crect x='20' y='10' width='200' height='280' rx='6'/%3E%3Crect x='25' y='15' width='190' height='270' rx='4'/%3E%3C!-- Door handle --%3E%3Cline x1='210' y1='130' x2='210' y2='170' stroke-width='2'/%3E%3C!-- DIN rail 1 --%3E%3Crect x='40' y='30' width='160' height='6' rx='1'/%3E%3C!-- Breakers row --%3E%3Crect x='45' y='38' width='18' height='35' rx='2'/%3E%3Crect x='67' y='38' width='18' height='35' rx='2'/%3E%3Crect x='89' y='38' width='18' height='35' rx='2'/%3E%3Crect x='111' y='38' width='18' height='35' rx='2'/%3E%3Crect x='133' y='38' width='18' height='35' rx='2'/%3E%3Crect x='155' y='38' width='18' height='35' rx='2'/%3E%3Crect x='177' y='38' width='18' height='35' rx='2'/%3E%3C!-- DIN rail 2 --%3E%3Crect x='40' y='90' width='160' height='6' rx='1'/%3E%3C!-- Relay modules --%3E%3Crect x='45' y='98' width='22' height='40' rx='2'/%3E%3Crect x='71' y='98' width='22' height='40' rx='2'/%3E%3Crect x='97' y='98' width='22' height='40' rx='2'/%3E%3Crect x='123' y='98' width='22' height='40' rx='2'/%3E%3C!-- PLC module --%3E%3Crect x='150' y='98' width='45' height='40' rx='3'/%3E%3Ctext x='155' y='122' font-size='8' fill='%23022B3A' stroke='none' font-family='monospace'%3EPLC%3C/text%3E%3C!-- Wire ducts --%3E%3Crect x='40' y='150' width='160' height='10' rx='1' fill='%23022B3A' fill-opacity='.03'/%3E%3C!-- Terminal strips --%3E%3Crect x='40' y='170' width='160' height='6' rx='1'/%3E%3Cline x1='55' y1='170' x2='55' y2='176'/%3E%3Cline x1='70' y1='170' x2='70' y2='176'/%3E%3Cline x1='85' y1='170' x2='85' y2='176'/%3E%3Cline x1='100' y1='170' x2='100' y2='176'/%3E%3Cline x1='115' y1='170' x2='115' y2='176'/%3E%3Cline x1='130' y1='170' x2='130' y2='176'/%3E%3Cline x1='145' y1='170' x2='145' y2='176'/%3E%3Cline x1='160' y1='170' x2='160' y2='176'/%3E%3Cline x1='175' y1='170' x2='175' y2='176'/%3E%3Cline x1='190' y1='170' x2='190' y2='176'/%3E%3C!-- Wiring --%3E%3Cpath d='M55 176 L55 200 L80 220' stroke-dasharray='4 2'/%3E%3Cpath d='M100 176 L100 210 L130 240' stroke-dasharray='4 2'/%3E%3Cpath d='M145 176 L145 200 L170 230' stroke-dasharray='4 2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

.mesa-product-info {
    position: relative;
    z-index: 60
}

.mesa-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 16px;
    border-radius: 40px;
    background: var(--color-primary);
    color: #fff;
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.mesa-product-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.1;
    margin-bottom: 20px
}

.mesa-product-desc {
    font-size: .9375rem;
    line-height: 1.75;
    color: #000000;
    max-width: 480px;
    margin-bottom: 32px
}

.mesa-product-features {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 45px
}

.mesa-feature {
    display: flex;
    align-items: flex-start;
    gap: 18px
}

.mesa-feature-icon {
    width: 62px;
    height: 62px;
    min-width: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    color: #fff;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    box-shadow: 0 15px 35px rgba(2, 43, 58, .15);
    transition: .35s
}

.mesa-feature:hover .mesa-feature-icon {
    transform: translateY(-6px) rotate(-6deg)
}

.mesa-feature-icon svg {
    width: 28px;
    height: 28px;
    stroke: currentColor
}

.mesa-feature h5 {
    margin: 0 0 4px;
    font-size: 1rem;
    color: var(--color-primary);
    font-weight: 700
}

.mesa-feature p {
    margin: 0;
    color: #000000;
    line-height: 1.6;
    font-size: .8125rem
}

.mesa-product-buttons {
    margin-top: 40px
}

.mesa-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 34px;
    border-radius: 60px;
    text-decoration: none;
    background: var(--color-primary);
    color: #fff;
    font-weight: 600;
    transition: .35s;
    position: relative;
    overflow: hidden;
}

.mesa-btn-primary:hover {
    background: var(--color-secondary);
    color: #fff;
    transform: translateY(-5px);
}

.mesa-btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: ctaShimmer 3s infinite;
}

@keyframes ctaShimmer {
    0% {
        left: -150%;
    }

    40% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

.mesa-showcase-wrapper {
    position: relative;
    height: 650px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.mesaShowcaseSwiper {
    width: 100%;
    height: 520px;
    overflow: visible !important;
    margin-left: 50px;
}

.mesa-showcase-bottom {
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px
}

.mesa-showcase-nav {
    display: flex;
    align-items: center;
    gap: 16px
}

.mesa-show-prev,
.mesa-show-next {
    width: 56px;
    height: 56px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 18px 35px rgba(0, 0, 0, .08);
    transition: .35s
}

.mesa-show-prev:hover,
.mesa-show-next:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translateY(-4px)
}

.mesa-show-prev svg,
.mesa-show-next svg {
    width: 22px;
    height: 22px
}

.mesa-showcase-pagination {
    display: flex;
    justify-content: center
}

.mesa-showcase-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 5px !important;
    background: #cbd5e1;
    opacity: 1;
    transition: .35s
}

.mesa-showcase-pagination .swiper-pagination-bullet-active {
    width: 34px;
    border-radius: 30px;
    background: #2563eb
}

@media(max-width:1199px) {
    .mesa-product-title {
        font-size: 2.25rem
    }
}

@media(max-width:991px) {
    .mesa-product-showcase {
        padding: 90px 0
    }

    .mesa-product-info {
        margin-top: 40px;
        margin-bottom: 60px
    }

    .mesa-product-desc {
        margin: auto auto 40px
    }

    .mesa-product-features {
        max-width: 520px;
        margin: 0 auto 40px
    }

    .mesa-showcase-wrapper {
        height: auto
    }

    .mesaShowcaseSwiper {
        height: 420px
    }
}

@media(max-width:767px) {
    .mesa-product-showcase {
        padding: 70px 0
    }

    .mesa-product-title {
        font-size: 1.625rem
    }

    .mesa-product-desc {
        font-size: .875rem
    }

    .mesa-feature {
        gap: 14px
    }

    .mesa-feature-icon {
        width: 52px;
        height: 52px;
        min-width: 52px
    }

    .mesa-feature h5 {
        font-size: .9375rem
    }

    .mesa-btn-primary {
        width: 100%
    }

    .mesaShowcaseSwiper {
        height: 340px;
        padding: 20px 0;
    }
}

.mesaShowcaseSwiper {
    overflow: visible
}

.mesaShowcaseSwiper .swiper-wrapper {
    align-items: center
}

.mesaShowcaseSwiper .swiper-slide {
    width: 380px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0 !important;
    transition: transform .8s cubic-bezier(.22, 1, .36, 1), opacity .8s, filter .8s
}

.mesa-product-3d {
    position: relative;
    width: 360px;
    height: 420px;
    border-radius: 28px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* box-shadow: 0 25px 60px rgba(2, 43, 58, .12); */
    transition: inherit
}

.mesa-product-3d::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, .55), transparent);
    pointer-events: none
}

.mesa-product-3d img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .8s;
    z-index: 2
}

@media(min-width:1200px) {
    .mesaShowcaseSwiper .swiper-slide {
        opacity: 0;
        pointer-events: none;
        transform: scale(.62);
        filter: blur(1px)
    }

    .mesaShowcaseSwiper .swiper-slide-active,
    .mesaShowcaseSwiper .swiper-slide-prev,
    .mesaShowcaseSwiper .swiper-slide-next {
        pointer-events: auto;
    }

    .mesaShowcaseSwiper .swiper-slide-active {
        opacity: 1;
        z-index: 50;
        filter: none;
        transform: scale(1)
    }

    .mesaShowcaseSwiper .swiper-slide-active .mesa-product-3d {
        box-shadow: 0 40px 80px rgba(2, 43, 58, .18)
    }

    .mesaShowcaseSwiper .swiper-slide-active img {
        transform: translateY(-6px) scale(1.05)
    }

    .mesaShowcaseSwiper .swiper-slide-prev {
        opacity: .65;
        z-index: 30;
        transform: translateX(180px) rotate(-12deg) scale(.82)
    }

    .mesaShowcaseSwiper .swiper-slide-prev .mesa-product-3d {
        box-shadow: 0 20px 45px rgba(2, 43, 58, .10)
    }

    .mesaShowcaseSwiper .swiper-slide-next {
        opacity: .65;
        z-index: 30;
        transform: translateX(-180px) rotate(12deg) scale(.82)
    }

    .mesaShowcaseSwiper .swiper-slide-next .mesa-product-3d {
        box-shadow: 0 20px 45px rgba(2, 43, 58, .10)
    }

    .mesaShowcaseSwiper .swiper-slide-prev:hover,
    .mesaShowcaseSwiper .swiper-slide-next:hover {
        opacity: .9
    }

    .mesa-product-3d:hover img {
        transform: translateY(-8px) scale(1.08)
    }
}

.mesa-product-3d::after {
    content: "";
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .12);
    filter: blur(25px)
}

.mesa-product-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(360deg, rgba(2, 43, 58, 0.95) 0%, rgba(2, 43, 58, 0.5) 60%, transparent 100%);
    padding: 30px 15px 20px;
    z-index: 5;
    text-align: center;
    box-sizing: border-box;
}

.mesa-product-title-overlay h4 {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Outfit', 'Segoe UI', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media(max-width:1199px) {
    .mesaShowcaseSwiper {
        height: 430px;
        margin-left: 0;
    }

    .mesaShowcaseSwiper .swiper-slide {
        width: auto !important;
        opacity: 1;
        transform: none;
        filter: none;
    }

    .mesa-product-3d {
        width: 100%;
        max-width: 360px;
        height: 350px
    }
}

@media(max-width:767px) {
    .mesaShowcaseSwiper {
        height: 320px;
        overflow: hidden
    }

    .mesaShowcaseSwiper .swiper-slide {
        width: auto !important;
        opacity: 1;
        transform: none;
        filter: none
    }

    .mesa-product-3d {
        width: 100%;
        max-width: 320px;
        height: 270px;
        border-radius: 20px
    }

    .mesa-product-3d img {
        width: 78%;
        height: 78%
    }
}

.mesa-partners {
    padding: 40px 0;
    position: relative;
    overflow: hidden
}

.mesa-section-heading {
    position: relative;
    z-index: 2;
    margin-bottom: 70px
}

.mesa-section-heading h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin: 18px 0
}

.mesa-section-heading p {
    max-width: 700px;
    margin: auto;
    color: #000;
    line-height: 1.8
}

.mesa-partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2
}

.partner-card {
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: 24px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    transition: .35s;
    text-decoration: none;
    overflow: hidden;
    position: relative
}

.partner-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, .04), rgba(31, 122, 140, .04));
    opacity: 0;
    transition: .35s
}

.partner-card img {
    max-width: 180px;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: .4s;
    position: relative;
    z-index: 2;
    /* filter: grayscale(100%); */
    /* opacity: .75 */
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 55px rgba(2, 43, 58, .10);
    border-color: #dbe8f5
}

.partner-card:hover::before {
    opacity: 1
}

.partner-card:hover img {
    filter: none;
    opacity: 1;
    transform: scale(1.08)
}

.partners-btn {
    text-align: center;
    margin-top: 60px
}

.partners-btn .mesa-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px
}

.partners-btn svg {
    width: 18px;
    height: 18px
}

@media(max-width:991px) {
    .mesa-partners {
        padding: 80px 0
    }

    .mesa-section-heading h2 {
        font-size: 36px
    }

    .mesa-partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px
    }

    .partner-card {
        height: 150px;
        padding: 25px
    }

    .partner-card img {
        max-width: 150px
    }
}

@media(max-width:575px) {
    .mesa-partners {
        padding: 70px 0
    }

    .mesa-section-heading {
        margin-bottom: 45px
    }

    .mesa-section-heading h2 {
        font-size: 30px
    }

    .mesa-partners-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px
    }

    .partner-card {
        height: 120px;
        padding: 18px;
        border-radius: 18px
    }

    .partner-card img {
        max-width: 110px;
        max-height: 45px
    }

    .partners-btn {
        margin-top: 40px
    }
}

.mesa-industries {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: radial-gradient(circle at top left, #eef7ff 0%, transparent 40%), radial-gradient(circle at bottom right, #f5fbff 0%, transparent 45%), #ffffff
}

.mesa-industries::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(2, 43, 58, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(2, 43, 58, .03) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: .35;
    pointer-events: none
}

.mesa-industries-header {
    position: relative;
    z-index: 5;
    max-width: 760px;
    margin: 0 auto 80px;
    text-align: center
}

.mesa-industries-header h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin: 20px 0;
    line-height: 1.15
}

.mesa-industries-header p {
    max-width: 650px;
    margin: auto;
    color: #000;
    line-height: 1.9;
    font-size: 1rem;
}

.mesa-honeycomb {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 18px;
    margin: auto;
    z-index: 3
}

.hex {
    position: relative;
    width: 210px;
    height: 240px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none
}

.hex:nth-child(9n+6),
.hex:nth-child(9n+7),
.hex:nth-child(9n+8),
.hex:nth-child(9n+9),
.hex:nth-child(9n+10) {}

.hex-inner {
    position: relative;
    width: 100%;
    height: 100%
}

.hex-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 18px
}

.hex-icon img {
    width: 56px;
    height: 56px;
    object-fit: contain
}

.hex h3 {
    margin: 0;
    text-align: center;
    font-size: 19px;
    line-height: 1.35;
    font-weight: 700;
    color: var(--color-primary)
}

@media(max-width:1399px) {
    .mesa-honeycomb {
        max-width: 1100px
    }

    .hex {
        width: 190px;
        height: 220px
    }

    .hex:nth-child(9n+6),
    .hex:nth-child(9n+7),
    .hex:nth-child(9n+8),
    .hex:nth-child(9n+9),
    .hex:nth-child(9n+10) {
        margin-top: 100px
    }
}

@media(max-width:1199px) {
    .mesa-industries {
        padding: 100px 0
    }

    .mesa-industries-header {
        margin-bottom: 60px
    }

    .mesa-industries-header h2 {
        font-size: 40px
    }

    .mesa-honeycomb {
        max-width: 900px;
        gap: 14px
    }

    .hex {
        width: 180px;
        height: 205px
    }

    .hex:nth-child(9n+6),
    .hex:nth-child(9n+7),
    .hex:nth-child(9n+8),
    .hex:nth-child(9n+9),
    .hex:nth-child(9n+10) {
        margin-top: 90px
    }
}

@media(max-width:991px) {
    .mesa-industries {
        padding: 90px 0
    }

    .mesa-industries-header h2 {
        font-size: 34px
    }

    .mesa-industries-header p {
        font-size: 16px
    }

    .mesa-honeycomb {
        max-width: 700px;
        gap: 12px
    }

    .hex {
        width: 165px;
        height: 190px
    }

    .hex:nth-child(even) {
        margin-top: 80px
    }
}

@media(max-width:767px) {
    .mesa-industries {
        padding: 70px 0
    }

    .mesa-industries-header {
        margin-bottom: 45px
    }

    .mesa-industries-header h2 {
        font-size: 28px
    }

    .mesa-industries-header p {
        font-size: 15px
    }

    .mesa-honeycomb {
        gap: 10px
    }

    .hex {
        width: 145px;
        height: 170px
    }

    .hex:nth-child(even) {
        margin-top: 70px
    }

    .hex h3 {
        font-size: 16px
    }

    .hex-icon img {
        width: 46px;
        height: 46px
    }
}

@media(max-width:480px) {
    .mesa-honeycomb {
        justify-content: center
    }

    .hex {
        width: 135px;
        height: 155px
    }

    .hex:nth-child(even) {
        margin-top: 60px
    }

    .hex h3 {
        font-size: 15px
    }
}

.hex-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 28px;
    background: #ffffff;
    border: 1px solid rgba(31, 122, 140, .10);
    clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
    overflow: hidden;
    transition: transform .45s, box-shadow .45s, border-color .45s;
    box-shadow: 0 18px 45px rgba(2, 43, 58, .06)
}

.hex-inner::before {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    top: -130px;
    right: -130px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, .12), transparent 70%);
    opacity: 0;
    transition: .45s
}

.hex-inner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, .03), rgba(31, 122, 140, .05));
    opacity: 0;
    transition: .4s
}

.hex:hover .hex-inner {
    transform: translateY(-12px) scale(1.05);
    border-color: #3b82f6;
    box-shadow: 0 28px 70px rgba(37, 99, 235, .15)
}

.hex:hover .hex-inner::before {
    opacity: 1
}

.hex:hover .hex-inner::after {
    opacity: 1
}

.hex-icon {
    position: relative;
    z-index: 2;
    width: 78px;
    height: 78px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    box-shadow: 0 14px 35px rgba(2, 43, 58, .15);
    margin-bottom: 22px;
    transition: .4s
}

.hex:hover .hex-icon {
    transform: rotate(-10deg) scale(1.08)
}

.hex-icon img {
    width: 42px;
    height: 42px;
    filter: brightness(0) invert(1);
    transition: .35s
}

.hex h3 {
    position: relative;
    z-index: 2;
    transition: .35s
}

.hex:hover h3 {
    color: #2563eb
}

.hex {
    animation: mesaFloat 5s ease-in-out infinite
}

.hex:nth-child(2) {
    animation-delay: .3s
}

.hex:nth-child(3) {
    animation-delay: .6s
}

.hex:nth-child(4) {
    animation-delay: .9s
}

.hex:nth-child(5) {
    animation-delay: 1.2s
}

.hex:nth-child(6) {
    animation-delay: 1.5s
}

.hex:nth-child(7) {
    animation-delay: 1.8s
}

.hex:nth-child(8) {
    animation-delay: 2.1s
}

.hex:nth-child(9) {
    animation-delay: 2.4s
}

.hex:nth-child(10) {
    animation-delay: 2.7s
}

@keyframes mesaFloat {
    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }

    100% {
        transform: translateY(0)
    }
}

.hex:hover {
    z-index: 20
}

.hex:hover .hex-inner {
    filter: drop-shadow(0 0 25px rgba(37, 99, 235, .18))
}

.hex:active .hex-inner {
    transform: scale(.97)
}

@media(max-width:767px) {
    .hex-inner {
        padding: 20px
    }

    .hex-icon {
        width: 62px;
        height: 62px;
        margin-bottom: 16px;
        border-radius: 18px
    }

    .hex-icon img {
        width: 34px;
        height: 34px
    }
}

@media(max-width:480px) {
    .hex-inner {
        padding: 16px
    }

    .hex-icon {
        width: 54px;
        height: 54px;
        margin-bottom: 12px
    }

    .hex-icon img {
        width: 28px;
        height: 28px
    }

    .hex h3 {
        font-size: 14px
    }
}

.hex {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .7s ease, transform .7s ease
}

.hex.is-visible {
    opacity: 1;
    transform: translateY(0)
}

.hex {
    width: 220px;
    height: 250px;
    position: relative;
    display: block;
    text-decoration: none
}

.hex-card {
    width: 100%;
    height: 100%;
    position: relative;
    transition: .45s
}

.hex-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible
}

.hex-fill {
    fill: url(#hexGradient);
    stroke: #d8e7f3;
    stroke-width: 2;
    transition: .45s;
    filter: drop-shadow(0 18px 35px rgba(2, 43, 58, .08))
}

.hex-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 25px;
    z-index: 2
}

.hex:hover .hex-card {
    transform: translateY(-12px) scale(1.04)
}

.hex:hover .hex-fill {
    stroke: #3b82f6;
    filter: drop-shadow(0 25px 50px rgba(37, 99, 235, .22))
}

.hex:hover .hex-icon {
    transform: rotate(-8deg) scale(1.08)
}

.mesa-why {
    position: relative;
    padding: 120px 0;
    background: #fff;
    overflow: hidden
}

.mesa-why::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    left: -220px;
    top: -220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(31, 122, 140, .08), transparent 70%)
}

.mesa-why::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -180px;
    bottom: -180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, .07), transparent 70%)
}

.mesa-why-content {
    position: relative;
    z-index: 5
}

.mesa-why-content h2 {
    font-size: 1.25rem;
    line-height: 1.2;
    font-weight: 700;
    color: var(--black);
    margin: 22px 0;
    max-width: 600px
}

.mesa-why-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #000;
    margin-bottom: 15px;
    max-width: 560px
}

.why-card {
    position: relative;
    height: 100%;
    background: #fff;
    border: 1px solid #e7eef5;
    border-radius: 22px;
    padding: 15px;
    transition: .4s;
    overflow: hidden
}

.why-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, .03), rgba(31, 122, 140, .04));
    opacity: 0;
    transition: .4s
}

.why-card>* {
    position: relative;
    z-index: 2
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: #d6e6f4;
    box-shadow: 0 18px 45px rgba(2, 43, 58, .08)
}

.why-card:hover::before {
    opacity: 1
}

.why-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: #fff;
    margin-bottom: 24px;
    transition: .35s
}

.why-icon svg {
    width: 34px;
    height: 34px
}

.why-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px
}

.why-card p {
    margin: 0;
    line-height: 1.8;
    color: #000
}

.why-list {
    margin: 40px 0;
    padding: 0;
    list-style: none
}

.why-list li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 16px;
    font-size: 16px;
    color: #000000;
    font-weight: 400;
}

.why-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #2563eb;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px
}

.why-image {
    position: relative;
    max-width: 560px;
    margin-left: auto
}

.why-image img {
    width: 100%;
    border-radius: 26px;
    display: block;
    box-shadow: 0 35px 80px rgba(2, 43, 58, .12)
}

.why-image .experience-card {
    position: absolute;
    left: -35px;
    top: 45px;
    width: 170px;
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 25px 60px rgba(2, 43, 58, .12);
    z-index: 5;
    animation: mesaFloat 5s ease-in-out infinite;
    transition: .35s
}

.why-image .experience-card span {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: #2563eb;
    line-height: 1
}

.why-image .experience-card small {
    display: block;
    margin-top: 10px;
    color: #000;
    font-size: 15px
}

.trust-card {
    position: absolute;
    right: -25px;
    bottom: 45px;
    background: #fff;
    border-radius: 18px;
    padding: 18px 26px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 60px rgba(2, 43, 58, .12);
    animation: mesaFloatReverse 6s ease-in-out infinite;
    transition: .35s;
    z-index: 5
}

.trust-card strong {
    font-size: 34px;
    color: var(--color-primary);
    line-height: 1
}

.trust-card span {
    margin-top: 6px;
    font-size: 15px;
    color: #000
}

.circle-shape {
    position: absolute;
    width: 170px;
    height: 170px;
    border: 16px solid #2563eb;
    border-radius: 50%;
    right: -70px;
    top: -45px;
    opacity: .12;
    z-index: 0
}

.why-image:hover img {
    transform: scale(1.03)
}

.why-image img {
    transition: .45s
}

.why-image:hover .experience-card {
    transform: translateY(-10px) rotate(-4deg)
}

.why-image:hover .trust-card {
    transform: translateY(-8px) rotate(3deg)
}

.why-card:hover .why-icon {
    transform: rotate(-10deg) scale(1.08)
}

.mesa-btn-primary {
    transition: .35s
}

.mesa-btn-primary:hover {
    transform: translateY(-4px)
}

@keyframes mesaFloat {
    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }

    100% {
        transform: translateY(0)
    }
}

@keyframes mesaFloatReverse {
    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(10px)
    }

    100% {
        transform: translateY(0)
    }
}

@media (max-width:1199px) {
    .mesa-why {
        padding: 100px 0
    }

    .mesa-why-content h2 {
        font-size: 40px
    }

    .why-image .experience-card {
        left: -15px;
        width: 150px;
        padding: 20px
    }

    .trust-card {
        right: -10px
    }
}

@media (max-width:991px) {
    .mesa-why {
        padding: 80px 0
    }

    .mesa-why-content {
        text-align: center
    }

    .mesa-why-content h2 {
        font-size: 34px;
        margin-left: auto;
        margin-right: auto
    }

    .mesa-why-desc {
        margin-left: auto;
        margin-right: auto
    }

    .why-list {
        display: inline-block;
        text-align: left
    }

    .why-image {
        margin: 70px auto 0;
        max-width: 520px
    }

    .why-image .experience-card {
        left: 10px;
        top: 20px
    }

    .trust-card {
        right: 10px;
        bottom: 20px
    }
}

@media (max-width:767px) {
    .mesa-why {
        padding: 70px 0
    }

    .mesa-why-content h2 {
        font-size: 30px
    }

    .why-card {
        padding: 28px 22px;
        justify-content: center;
        display: flex;
        align-items: center;
        flex-direction: column;
        width: 100%;
    }

    .why-card h4 {
        font-size: 21px
    }

    .why-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 18px
    }

    .why-icon svg {
        width: 28px;
        height: 28px
    }

    .why-image {
        margin-top: 50px
    }

    .why-image .experience-card {
        width: 120px;
        padding: 16px;
        left: 8px;
        top: 8px
    }

    .why-image .experience-card span {
        font-size: 30px
    }

    .why-image .experience-card small {
        font-size: 12px
    }

    .trust-card {
        right: 8px;
        bottom: 8px;
        padding: 14px 18px
    }

    .trust-card strong {
        font-size: 24px
    }

    .trust-card span {
        font-size: 13px
    }

    .circle-shape {
        width: 110px;
        height: 110px;
        border-width: 10px;
        right: -30px;
        top: -20px
    }
}

@media (max-width:575px) {
    .why-image {
        max-width: 100%
    }

    .why-image .experience-card {
        position: relative;
        left: auto;
        top: auto;
        margin: 18px auto 0
    }

    .trust-card {
        position: relative;
        right: auto;
        bottom: auto;
        margin: 18px auto 0;
        text-align: center
    }

    .circle-shape {
        display: none
    }
}

.mesa-cta {
    padding: 20px 0 40px;
    background: #fff
}

.mesa-cta-box {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    padding: 30px 40px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #06394d 40%, #0B4F6C 100%);
    color: #fff;
    box-shadow: 0 40px 90px rgba(2, 43, 58, .18)
}

.mesa-cta-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/projects/pdc-panel.webp") center/cover;
    opacity: .08
}

.mesa-cta-box::after {
    content: "";
    position: absolute;
    width: 550px;
    height: 550px;
    right: -220px;
    top: -220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, .25), transparent 70%)
}

.mesa-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.mesa-cta-content h2 {
    color: #fff;
    font-size: 2rem;
    line-height: 1.15;
    margin: 20px auto;
    max-width: 700px;
    font-weight: bold;
}

.mesa-cta-content p {
    color: rgba(255, 255, 255, .85);
    font-size: 1rem;
    line-height: 1.9;
    max-width: 620px;
    margin: 0 auto 35px;
}

.mesa-cta-list {
    margin: 35px 0;
    padding: 0;
    list-style: none
}

.mesa-cta-list li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 16px;
    color: #fff
}

.mesa-cta-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #3b82f6;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px
}

.mesa-cta-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
}

.mesa-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 32px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, .35);
    color: #fff;
    text-decoration: none;
    transition: .35s
}

.mesa-btn-outline:hover {
    background: #fff;
    color: var(--color-primary)
}

.mesa-cta-stats {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px
}

.stat-box {
    padding: 30px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, .12);
    transition: .35s
}

.stat-box:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, .12)
}

.stat-box h3 {
    color: #fff;
    font-size: 42px;
    margin-bottom: 10px
}

.stat-box p {
    color: rgba(255, 255, 255, .75);
    margin: 0
}

.cta-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .08);
    animation: ctaFloat 8s linear infinite
}

.c1 {
    width: 180px;
    height: 180px;
    right: 40px;
    bottom: -60px
}

.c2 {
    width: 320px;
    height: 320px;
    right: -120px;
    top: -120px
}

.cta-line {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #3b82f6, transparent);
    animation: lineMove 3s linear infinite
}

@keyframes ctaFloat {
    50% {
        transform: rotate(180deg)
    }
}

@keyframes lineMove {
    from {
        transform: translateX(-100%)
    }

    to {
        transform: translateX(100%)
    }
}

@media(max-width:991px) {
    .mesa-cta {
        padding: 80px 0
    }

    .mesa-cta-box {
        padding: 50px 35px
    }

    .mesa-cta-content {
        text-align: center
    }

    .mesa-cta-content h2 {
        font-size: 38px
    }

    .mesa-cta-buttons {
        justify-content: center
    }
}

@media(max-width:767px) {
    .mesa-cta {
        padding: 70px 0
    }

    .mesa-cta-box {
        padding: 40px 24px;
        border-radius: 24px
    }

    .mesa-cta-content h2 {
        font-size: 30px
    }

    .mesa-cta-stats {
        grid-template-columns: 1fr
    }

    .stat-box {
        padding: 24px;
        text-align: center
    }
}

.mesa-footer {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #062636 0%, #031B29 45%, #02121B 100%);
    color: #fff;
    padding: 0
}

.mesa-footer .container {
    position: relative;
    z-index: 5
}

.footer-circuit {
    position: relative;
    height: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, .03)
}

.circuit-track {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 2px;
    background: repeating-linear-gradient(to right, #3b82f6 0, #3b82f6 60px, transparent 60px, transparent 120px);
    opacity: .25
}

.node {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #3b82f6;
    box-shadow: 0 0 10px #3b82f6, 0 0 25px rgba(59, 130, 246, .5)
}

.n1 {
    left: 15%
}

.n2 {
    left: 35%
}

.n3 {
    left: 60%
}

.n4 {
    left: 85%
}

.pulse {
    position: absolute;
    left: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 4px;
    border-radius: 20px;
    background: linear-gradient(90deg, transparent, #4cc9ff, transparent)
}

.footer-watermark {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    user-select: none;
    z-index: 0
}

.footer-watermark span {
    font-family: "HemiHead-BoldItalic", sans-serif;
    font-size: 180px;
    line-height: .8;
    font-weight: 900;
    letter-spacing: 14px;
    color: #fff;
    opacity: .025;
    text-transform: uppercase
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1.4fr 1.3fr;
    gap: 15px;
    padding: 30px 0 50px
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 14px;
}

.newsletter-input-group {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    margin-top: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.newsletter-input-group:focus-within {
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(31, 122, 140, 0.25);
}

.newsletter-input-group input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 15px;
    color: #fff;
    font-size: 14px;
    outline: none;
    width: 100%;
}

.newsletter-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-submit {
    background: var(--color-secondary);
    color: #fff;
    border: none;
    padding: 0 18px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-submit:hover {
    background: #2c9db3;
}

.newsletter-submit svg {
    width: 16px;
    height: 16px;
}

.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, .2);
    border-top-color: var(--color-secondary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


.footer-col {
    position: relative;
    /* background: rgba(255, 255, 255, .03); */
    /* border: 1px solid rgba(255, 255, 255, .08); */
    border-radius: 20px;
    padding: 30px;
    transition: .4s
}

.footer-col:hover {
    backdrop-filter: blur(14px);
    /* transform: translateY(-8px); */
    /* border-color: rgba(59, 130, 246, .35); */
    /* box-shadow: 0 20px 45px rgba(0, 0, 0, .25) */
}

.footer-logo {
    display: inline-block;
    margin-bottom: 22px
}

.footer-logo img {
    height: 90px;
    width: auto
}

.footer-company p {
    color: rgba(255, 255, 255, .72);
    line-height: 1.9;
    margin-bottom: 30px
}

.footer-col h4 {
    font-size: 22px;
    margin-bottom: 26px;
    font-weight: 700;
    color: #fff;
    position: relative
}

.footer-col h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 40px;
    height: 3px;
    border-radius: 30px;
    background: #3b82f6
}

.footer-col ul {
    margin: 0;
    padding: 0;
    list-style: none
}

.footer-col li {
    margin-bottom: 16px
}

.footer-col a {
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
    transition: .35s
}

.footer-col a:hover {
    color: #4cc9ff;
    padding-left: 6px
}

.footer-contact strong {
    display: block;
    color: #fff;
    margin-bottom: 6px
}

.footer-contact span {
    color: rgba(255, 255, 255, .75);
    line-height: 1.8
}

.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.footer-social a {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    transition: .35s
}

.footer-social a:hover {
    transform: translateY(-5px) rotate(-8deg);
    background: #3b82f6
}

.footer-partners {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 45px 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.footer-partners span {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap
}

.partner-logos {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 45px;
    flex-wrap: wrap
}

.partner-logos img {
    height: 38px;
    width: auto;
    opacity: .45;
    filter: grayscale(100%);
    transition: .35s
}

.partner-logos img:hover {
    opacity: 1;
    filter: none;
    transform: translateY(-6px) scale(1.08)
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 28px 0
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, .60)
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap
}

.footer-links a {
    color: rgba(255, 255, 255, .72);
    text-decoration: none;
    position: relative;
    transition: .3s
}

.footer-links span a {
    color: gold;
}

.footer-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: #4cc9ff;
    transition: .3s
}

.footer-links a:hover {
    color: #4cc9ff
}

.footer-links a:hover::after {
    width: 100%
}

.pulse {
    animation: footerPulse 4s linear infinite
}

@keyframes footerPulse {
    from {
        left: -80px
    }

    to {
        left: calc(100% + 80px)
    }
}

.footer-watermark {
    animation: watermarkFloat 12s ease-in-out infinite
}

@keyframes watermarkFloat {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-12px)
    }
}

.footer-col::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #4cc9ff, transparent);
    transform: scaleX(0);
    transition: .4s
}

.footer-col:hover::before {
    transform: scaleX(1)
}

.footer-col:hover {
    background: rgba(255, 255, 255, .05)
}

.back-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 45px rgba(37, 99, 235, .35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(25px);
    transition: .35s;
    z-index: 999
}

.back-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.back-top:hover {
    transform: translateY(-8px) rotate(-10deg)
}

.back-top svg {
    width: 22px;
    height: 22px
}

@media(max-width:1199px) {
    .footer-main {
        grid-template-columns: repeat(3, 1fr)
    }

    .footer-company {
        grid-column: 1/-1
    }
}

@media(max-width:991px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        padding: 70px 0 50px
    }

    .footer-partners {
        flex-direction: column;
        text-align: center
    }

    .partner-logos {
        justify-content: center
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center
    }

    .footer-watermark span {
        font-size: 120px
    }
}

@media(max-width:767px) {
    .footer-main {
        grid-template-columns: 1fr
    }

    .footer-col {
        padding: 24px
    }

    .footer-watermark {
        display: none
    }

    .partner-logos {
        gap: 24px
    }

    .partner-logos img {
        height: 30px
    }

    .back-top {
        right: 18px;
        bottom: 18px;
        width: 52px;
        height: 52px;
        border-radius: 16px
    }
}

@media (prefers-reduced-motion:reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important
    }
}

.footer-social a {

    position: relative;

    overflow: hidden;

}

.footer-ripple {

    position: absolute;

    border-radius: 50%;

    background: rgba(255, 255, 255, .35);

    transform: scale(0);

    animation: footerRipple .7s linear;

    pointer-events: none;

}

@keyframes footerRipple {

    to {

        transform: scale(4);

        opacity: 0;

    }

}

.footer-visible .footer-col {

    animation: footerFade .7s ease forwards;

}

.footer-visible .footer-col:nth-child(2) {
    animation-delay: .1s;
}

.footer-visible .footer-col:nth-child(3) {
    animation-delay: .2s;
}

.footer-visible .footer-col:nth-child(4) {
    animation-delay: .3s;
}

.footer-visible .footer-col:nth-child(5) {
    animation-delay: .4s;
}

@keyframes footerFade {

    from {

        opacity: 0;

        transform: translateY(40px);

    }

    to {

        opacity: 1;

        transform: none;

    }

}

/* =========================================================
   STATS COUNTER COMPONENT STYLES
   ========================================================= */
.stats-counter-section {
    position: relative;
    padding: 90px 0;
    background-color: #040d1a;
    background-image: linear-gradient(rgba(4, 13, 26, 0.92), rgba(4, 13, 26, 0.94)), url('../images/projects/retrofit-plc-panel.webp');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 180, 216, 0.1);
}

/* Glowing Neon Orbs */
.stats-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.1;
    pointer-events: none;
    z-index: 1;
}

.stats-glow-orb.orb-1 {
    top: -10%;
    left: 20%;
    width: 300px;
    height: 300px;
    background-color: var(--light-blue);
}

.stats-glow-orb.orb-2 {
    bottom: -10%;
    right: 20%;
    width: 300px;
    height: 300px;
    background-color: var(--theme-color);
}

/* Floating Background Shapes */
.floating-bg-shape {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    opacity: 0.15;
    transition: all 0.5s ease-in-out;
}

.floating-bg-shape img {
    max-width: 100%;
    height: auto;
}

.floating-bg-shape.shape-3 {
    left: -50px;
    top: 10%;
    width: 250px;
}

.floating-bg-shape.shape-4 {
    right: -50px;
    bottom: 10%;
    width: 200px;
}

@media (max-width: 991px) {
    .floating-bg-shape.shape-3 {
        width: 150px;
        left: -30px;
    }

    .floating-bg-shape.shape-4 {
        width: 120px;
        right: -30px;
    }
}

.stats-counter-section .container {
    position: relative;
    z-index: 2;
}

.stats-heading {
    font-size: 38px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.stats-subparagraph {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.75;
    max-width: 980px;
    margin: 0 auto 30px auto;
}

/* Glassmorphic Tech Panel for Counters */
.stats-grid-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 30px 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 112, 240, 0.18);
    border-radius: 24px;
    backdrop-filter: blur(8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), inset 0 0 20px rgba(0, 112, 240, 0.08);
}

.stat-grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.stat-number {
    font-family: "HemiHead-Bold", sans-serif;
    font-size: 72px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-white) 30%, var(--color-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    text-shadow: 0 0 35px rgba(0, 112, 240, 0.25);
}

.technical-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
}

.stat-label {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    /* Matching brand red */
    letter-spacing: 1.5px;
    margin-top: 10px;
    text-transform: uppercase;
}

.stat-grid-divider {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, rgba(0, 180, 216, 0.3), transparent);
    flex-shrink: 0;
}

@media (max-width: 991.98px) {
    .stats-counter-section {
        padding: 70px 0;
    }

    .stats-heading {
        font-size: var(--font-2xl);
    }

    .stats-grid-wrap {
        padding: 30px;
    }

    .stat-number {
        font-size: 54px;
    }

    .stat-grid-divider {
        height: 60px;
    }
}

@media (max-width: 767.98px) {
    .stats-grid-wrap {
        flex-direction: column;
        gap: 40px;
        padding: 40px 20px;
    }

    .stat-grid-divider {
        display: none;
    }
}

/*==================================================
VISION & MISSION
==================================================*/

.vision-mission-section {
    position: relative;
    padding: 110px 0;
    background:
        radial-gradient(circle at top right, rgba(31, 122, 140, .08), transparent 38%),
        radial-gradient(circle at bottom left, rgba(2, 43, 58, .06), transparent 42%),
        #fff;
    overflow: hidden;
}

.vision-mission-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(2, 43, 58, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(2, 43, 58, .04) 1px, transparent 1px);
    background-size: 70px 70px;
    opacity: .35;
    pointer-events: none;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 70px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    background: #eaf6f8;
    color: var(--color-secondary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.section-heading h2 {
    font-size: 44px;
    color: var(--color-primary);
    margin-bottom: 18px;
}

.section-heading p {
    color: #5c6670;
    font-size: 17px;
    line-height: 1.8;
}

.vision-mission-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px;
    position: relative;
    z-index: 2;
}

.vm-card {
    position: relative;
    padding: 48px;
    border-radius: 28px;
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, .7);
    overflow: hidden;
    transition: .45s cubic-bezier(.4, 0, .2, 1);
    box-shadow:
        0 20px 60px rgba(2, 43, 58, .08);
}

/* .vm-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(31, 122, 140, .05),
            rgba(2, 43, 58, .01));
    opacity: 0;
    transition: .4s;
} */

.vm-card::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(31, 122, 140, .08);
    right: -90px;
    top: -90px;
    transition: .45s;
}

.vm-card:hover {
    transform: translateY(-12px);
    box-shadow:
        0 35px 80px rgba(2, 43, 58, .18);
}

.vm-card:hover::before {
    opacity: 1;
}

.vm-card:hover::after {
    transform: scale(1.25);
}

.vm-icon {
    width: 78px;
    height: 78px;
    border-radius: 22px;
    background: linear-gradient(135deg,
            var(--color-primary),
            var(--color-primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 28px;
    box-shadow: 0 18px 35px rgba(2, 43, 58, .18);
}

.vm-icon svg {
    width: 38px;
    height: 38px;
}

.vm-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.vm-content h3 {
    font-size: 30px;
    line-height: 1.35;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.vm-content p {
    color: #000;
    line-height: 1.9;
    margin-bottom: 28px;
}

.vm-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.vm-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 14px;
    color: #374151;
    font-weight: 500;
}

.vm-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--color-secondary);
    box-shadow:
        0 0 0 5px rgba(31, 122, 140, .12);
}

.vm-number {
    position: absolute;
    right: 30px;
    bottom: 22px;
    font-size: 90px;
    font-weight: 800;
    color: rgba(2, 43, 58, .05);
    line-height: 1;
    pointer-events: none;
}

.vision-card {
    border-top: 5px solid var(--color-primary);
}

.mission-card {
    border-top: 5px solid var(--color-secondary);
}

/* Hover */

.vm-card:hover .vm-icon {
    transform: rotate(-8deg) scale(1.08);
    transition: .45s;
}

.vm-card:hover .vm-content h3 {
    color: var(--color-primary);
}

/*=========================
Responsive
=========================*/

@media(max-width:991px) {

    .vision-mission-section {
        padding: 80px 0;
    }

    .vision-mission-wrapper {
        grid-template-columns: 1fr;
    }

    .vm-card {
        padding: 38px 30px;
    }

    .section-heading h2 {
        font-size: 36px;
    }

    .vm-content h3 {
        font-size: 26px;
    }

}

@media(max-width:576px) {

    .section-heading {
        margin-bottom: 45px;
    }

    .section-heading h2 {
        font-size: 30px;
    }

    .section-heading p {
        font-size: 15px;
    }

    .vm-card {
        padding: 28px 24px;
        border-radius: 22px;
    }

    .vm-icon {
        width: 65px;
        height: 65px;
    }

    .vm-icon svg {
        width: 30px;
        height: 30px;
    }

    .vm-content h3 {
        font-size: 22px;
    }

    .vm-content p {
        font-size: 15px;
    }

    .vm-number {
        font-size: 62px;
    }

}

/*==================================================
VISION & MISSION
PART 2 - PREMIUM EFFECTS
==================================================*/

/* Floating Shapes */

.vision-mission-section .shape-1,
.vision-mission-section .shape-2 {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    z-index: 1;

}

.vision-mission-section .shape-1 {

    width: 220px;

    height: 220px;

    background:
        radial-gradient(circle,
            rgba(31, 122, 140, .15),
            transparent 70%);

    top: 8%;

    left: -90px;

    animation: vmFloatOne 10s ease-in-out infinite;

}

.vision-mission-section .shape-2 {

    width: 280px;

    height: 280px;

    background:
        radial-gradient(circle,
            rgba(2, 43, 58, .08),
            transparent 70%);

    right: -120px;

    bottom: -80px;

    animation: vmFloatTwo 12s ease-in-out infinite;

}

/*======================================
TOP GLOW BORDER
======================================*/

.vm-card {

    isolation: isolate;

}

.vm-card::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 4px;

    transform: scaleX(0);

    transform-origin: left;

    background: linear-gradient(90deg,
            var(--color-primary),
            var(--color-secondary),
            #44d5ff);

    transition: .45s;

    z-index: 3;

}

.vm-card:hover::before {

    transform: scaleX(1);

}

/*======================================
ICON
======================================*/

.vm-icon {

    transition: .45s;

}

.vm-card:hover .vm-icon {

    transform:
        rotate(-12deg) scale(1.08);

    box-shadow:
        0 25px 50px rgba(2, 43, 58, .25);

}

/*======================================
NUMBER
======================================*/

.vm-number {

    transition: .4s;

}

.vm-card:hover .vm-number {

    transform: scale(1.08);

    color: rgba(2, 43, 58, .08);

}

/*======================================
LIST
======================================*/

.vm-list li {

    transition: .3s;

}

.vm-list li:hover {

    transform: translateX(8px);

    color: var(--color-primary);

}

.vm-list li::before {

    transition: .3s;

}

.vm-list li:hover::before {

    transform: scale(1.2);

    box-shadow:
        0 0 0 8px rgba(31, 122, 140, .18);

}

/*======================================
TEXT
======================================*/

.vm-content h3 {

    transition: .35s;

}

.vm-content p {

    transition: .35s;

}

.vm-card:hover p {

    color: #475569;

}

/*======================================
MOUSE GLOW
======================================*/

.vm-card .glow {

    position: absolute;

    width: 180px;

    height: 180px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(59, 130, 246, .14),
            transparent 70%);

    top: -80px;

    right: -80px;

    opacity: 0;

    transition: .4s;

    pointer-events: none;

}

.vm-card:hover .glow {

    opacity: 1;

}

/*======================================
ANIMATION
======================================*/

@keyframes vmFloatOne {

    0%,
    100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(-18px);

    }

}

@keyframes vmFloatTwo {

    0%,
    100% {

        transform:
            translateY(0) rotate(0deg);

    }

    50% {

        transform:
            translateY(20px) rotate(10deg);

    }

}

/*======================================
REVEAL
======================================*/

.vm-card {

    opacity: 0;

    transform: translateY(60px);

    animation: vmReveal .8s ease forwards;

}

.mission-card {

    animation-delay: .18s;

}

@keyframes vmReveal {

    to {

        opacity: 1;

        transform: none;

    }

}

/*======================================
REDUCED MOTION
======================================*/

@media(prefers-reduced-motion:reduce) {

    .vm-card,
    .vm-icon,
    .vm-number,
    .shape-1,
    .shape-2 {

        animation: none !important;

        transition: none !important;

    }

}

/*======================================
MOBILE
======================================*/

@media(max-width:767px) {

    .vision-mission-section::before {

        background-size: 38px 38px;

    }

    .shape-1 {

        width: 120px;

        height: 120px;

        left: -40px;

    }

    .shape-2 {

        width: 150px;

        height: 150px;

        right: -60px;

    }

    .vm-card:hover {

        transform: translateY(-6px);

    }

}

/*=========================================================
OUR PROCESS
PART 1
=========================================================*/

.process-section {

    position: relative;

    padding: 120px 0;

    overflow: hidden;

    background:
        linear-gradient(180deg,
            #ffffff 0%,
            #f8fbfd 100%);

}

/*========================*/

.process-shape {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;

}

.process-shape-1 {

    width: 260px;

    height: 260px;

    left: -120px;

    top: 120px;

    background:
        radial-gradient(circle,
            rgba(31, 122, 140, .10),
            transparent 70%);

}

.process-shape-2 {

    width: 340px;

    height: 340px;

    right: -160px;

    bottom: -80px;

    background:
        radial-gradient(circle,
            rgba(2, 43, 58, .08),
            transparent 70%);

}

/*========================*/

.process-section .section-heading {

    text-align: center;

    max-width: 760px;

    margin: 0 auto 80px;

}

.process-section .section-heading h2 {

    font-size: 2rem;

    margin: 18px 0;

    color: var(--color-primary);

}

.process-section .section-heading p {

    color: #000;

    line-height: 1.8;

    font-size: 17px;

}

/*========================*/

.process-timeline {

    position: relative;

    display: grid;

    grid-template-columns: repeat(6, 1fr);

    gap: 22px;

    z-index: 2;

}

/*========================*/

.timeline-line {

    display: none;

}

.timeline-progress {

    position: absolute;

    left: 0;

    top: 0;

    width: 0;

    height: 100%;

    background:

        linear-gradient(90deg,
            var(--color-primary),
            var(--color-secondary));

    border-radius: 30px;

}

/*========================*/

.process-card {

    position: relative;

    background: #fff;

    border: 1px solid #e5edf3;

    border-radius: 24px;

    padding: 42px 26px;

    text-align: center;

    transition: .45s;

    z-index: 2;

    box-shadow:

        0 15px 40px rgba(2, 43, 58, .06);

}

/*========================*/

.step-number {

    position: absolute;

    right: 20px;

    top: 18px;

    font-size: 14px;

    font-weight: 700;

    color: #94a3b8;

}

/*========================*/

.step-icon {
    /* display: none !important; */
    width: 90px;

    height: 90px;

    margin: 0 auto 24px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(135deg,
            var(--color-primary));

    color: #fff;

    box-shadow:

        0 20px 45px rgba(2, 43, 58, .18);

    position: relative;

}

.step-icon::before {

    content: "";

    position: absolute;

    inset: -8px;

    border-radius: 50%;

    border: 2px dashed rgba(31, 122, 140, .18);

}

.step-icon svg {

    width: 40px;

    height: 40px;

}

/*========================*/

.process-card h3 {

    font-size: 24px;

    color: var(--color-primary);

    margin-bottom: 15px;

}

.process-card p {

    margin: 0;

    color: #000;

    line-height: 1.8;

    font-size: 15px;

}

/*========================*/

.process-card.active {
    /* border-color: var(--color-primary); */
    box-shadow: 0 20px 50px rgba(0, 112, 176, 0.15);
    background: linear-gradient(180deg, #ffffff 0%, #f4f9fc 100%);
}

.process-card.active .step-icon {
    transform: scale(1.08);
    box-shadow: 0 20px 45px rgba(0, 112, 176, 0.3);
}

/*========================*/

@media(max-width:1199px) {

    .process-timeline {

        grid-template-columns: repeat(2, 1fr);

        row-gap: 30px;

    }

    .timeline-line {

        display: none;

    }

}

@media(max-width:767px) {

    .process-section {

        padding: 80px 0;

    }

    .process-section .section-heading {

        margin-bottom: 50px;

    }

    .process-section .section-heading h2 {

        font-size: 34px;

    }

    .process-timeline {

        grid-template-columns: 1fr;

        gap: 24px;

    }

    .process-card {

        padding: 34px 24px;

    }

    .step-icon {

        width: 74px;

        height: 74px;

    }

    .step-icon svg {

        width: 34px;

        height: 34px;

    }

}

/*=========================================================
OUR PROCESS
PART 2 - ANIMATIONS & INTERACTIONS
=========================================================*/

/*========================
CARD GLOW
========================*/

.process-card::before {

    content: "";

    position: absolute;

    inset: 0;

    border-radius: 24px;

    background:
        linear-gradient(135deg,
            rgba(31, 122, 140, .08),
            rgba(2, 43, 58, .02));

    opacity: 0;

    transition: .45s;

    pointer-events: none;

}

.process-card::after {

    content: "";

    position: absolute;

    width: 180px;

    height: 180px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(59, 130, 246, .12),
            transparent 70%);

    top: -80px;

    right: -80px;

    opacity: 0;

    transition: .45s;

}

/*========================
HOVER
========================*/

.process-card:hover {

    transform:
        translateY(-12px);

    border-color: var(--color-primary);

    box-shadow:
        0 30px 70px rgba(0, 112, 176, .18);

}

.process-card:hover::before,

.process-card:hover::after {

    opacity: 1;

}

.process-card:hover h3 {

    color: var(--color-primary);

}

.process-card:hover p {

    color: #475569;

}

/*========================
ICON
========================*/

.step-icon {

    transition: .45s;

}

.process-card:hover .step-icon {

    transform:
        rotate(-12deg) scale(1.08);

}

.process-card:hover .step-icon::before {

    animation:
        processRotate 8s linear infinite;

}

/*========================
NUMBER
========================*/

.step-number {

    transition: .35s;

}

.process-card:hover .step-number {

    color: var(--color-primary);

    transform: scale(1.15);

}

/*========================
REVEAL
========================*/

.process-card {

    opacity: 0;

    transform:
        translateY(60px);

    transition:

        opacity .8s,

        transform .8s;

}

.process-card.show,
.process-card.revealed {

    opacity: 1;

    transform: none;

}

.process-card:nth-child(2) {

    transition-delay: .05s;

}

.process-card:nth-child(3) {

    transition-delay: .1s;

}

.process-card:nth-child(4) {

    transition-delay: .15s;

}

.process-card:nth-child(5) {

    transition-delay: .2s;

}

.process-card:nth-child(6) {

    transition-delay: .25s;

}

.process-card:nth-child(7) {

    transition-delay: .3s;

}

/*========================
ACTIVE STEP
========================*/

.process-card.active {

    /* border-color: var(--color-secondary); */

    box-shadow:
        0 25px 60px rgba(31, 122, 140, .18);

}

.process-card.active .step-icon {

    animation:
        activePulse 2.5s ease infinite;

}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/*========================
TIMELINE
========================*/

.timeline-progress {

    transition:
        width .9s ease;

    box-shadow:
        0 0 15px rgba(31, 122, 140, .45);

}

/*========================
KEYFRAMES
========================*/

@keyframes processRotate {

    from {

        transform: rotate(0);

    }

    to {

        transform: rotate(360deg);

    }

}

@keyframes activePulse {

    0%,
    100% {

        transform: scale(1);

    }

    50% {

        transform: scale(1.08);

    }

}

/*========================
MOBILE CONNECTOR
========================*/

@media(max-width:767px) {

    .process-card {

        padding-left: 90px;

        text-align: left;

    }

    .step-icon {

        position: absolute;

        left: 20px;

        top: 28px;

        width: 58px;

        height: 58px;

        margin: 0;

    }

    .step-icon svg {

        width: 28px;

        height: 28px;

    }

    .process-card::after {

        content: "";

        position: absolute;

        left: 48px;

        top: 86px;

        width: 2px;

        height: calc(100% + 24px);

        background: #d8e5ed;

        opacity: 1;

        border-radius: 20px;

    }

    .process-card:last-child::after {

        display: none;

    }

    .step-number {

        right: 20px;

        top: 18px;

    }

}

/*========================
REDUCED MOTION
========================*/

@media(prefers-reduced-motion:reduce) {

    .process-card,

    .step-icon,

    .timeline-progress {

        animation: none !important;

        transition: none !important;

        transform: none !important;

    }

}

/*==================================================
Large Laptop
==================================================*/

@media (max-width: 1199px) {

    .process-section {
        padding: 100px 0;
    }

    .process-section .section-heading {
        margin-bottom: 60px;
    }

    .process-section .section-heading h2 {
        font-size: 40px;
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .timeline-line {
        display: none;
    }

}

/*==================================================
Tablet
==================================================*/

@media (max-width: 991px) {

    .process-section {
        padding: 80px 0;
    }

    .process-card {
        padding: 38px 28px;
    }

    .step-icon {
        width: 78px;
        height: 78px;
    }

    .step-icon svg {
        width: 34px;
        height: 34px;
    }

    .process-card h3 {
        font-size: 24px;
    }

    .process-card p {
        font-size: 15px;
        line-height: 1.8;
    }

}

/*==================================================
Mobile
==================================================*/

@media (max-width:767px) {

    .process-section {
        padding: 70px 0;
    }

    .process-section .section-heading {
        margin-bottom: 45px;
    }

    .process-section .section-heading h2 {
        font-size: 30px;
        line-height: 1.3;
    }

    .process-section .section-heading p {
        font-size: 15px;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .process-card {

        padding: 30px 24px 30px 95px;

        text-align: left;

        min-height: 180px;

    }

    .step-icon {

        position: absolute;

        left: 24px;

        top: 28px;

        width: 56px;

        height: 56px;

        margin: 0;

    }

    .step-icon::before {
        inset: -6px;
    }

    .step-icon svg {

        width: 26px;

        height: 26px;

    }

    .step-number {

        top: 18px;

        right: 18px;

        font-size: 13px;

    }

    .process-card h3 {

        font-size: 22px;

        margin-bottom: 10px;

    }

    .process-card p {

        font-size: 14px;

        line-height: 1.7;

    }

    /* Vertical Timeline */

    .process-card::after {

        content: "";

        position: absolute;

        left: 52px;

        top: 84px;

        width: 2px;

        height: calc(100% + 22px);

        background: #d8e5ed;

        border-radius: 30px;

    }

    .process-card:last-child::after {

        display: none;

    }

}

/*==================================================
Small Mobile
==================================================*/

@media (max-width:480px) {

    .process-section {
        padding: 60px 0;
    }

    .process-card {

        padding: 24px 20px 24px 82px;

        border-radius: 20px;

    }

    .step-icon {

        width: 48px;

        height: 48px;

        left: 18px;

        top: 22px;

    }

    .step-icon svg {

        width: 22px;

        height: 22px;

    }

    .process-card::after {

        left: 42px;

        top: 72px;

    }

    .process-card h3 {

        font-size: 20px;

    }

    .process-card p {

        font-size: 13px;

    }

}

/*==================================================
PRODUCT SECTION
PART 1
==================================================*/

.products-section {

    position: relative;

    padding: 40px 0;

    background:
        linear-gradient(180deg,
            #ffffff 0%,
            #f8fbfd 100%);

    overflow: hidden;

}

/*============================*/

.product-filter {

    position: sticky;

    top: 95px;

    z-index: 20;

    display: flex;

    justify-content: center;

    align-items: center;

    flex-wrap: wrap;

    gap: 14px;

    margin: 60px 0;

    padding: 18px;

    border-radius: 18px;

    background:
        rgba(255, 255, 255, .9);

    backdrop-filter: blur(18px);

    box-shadow:
        0 15px 40px rgba(0, 0, 0, .06);

}

/*============================*/

.filter-btn {

    border: none;

    cursor: pointer;

    padding: 12px 22px;

    border-radius: 40px;

    background: #eef5f8;

    color: #374151;

    font-size: 14px;

    font-weight: 600;

    transition: .35s;

}

.filter-btn:hover {

    background:

        var(--color-primary);

    color: #fff;

    transform: translateY(-4px);

}

.filter-btn.active {

    background:

        linear-gradient(135deg,
            var(--color-primary),
            var(--color-secondary));

    color: #fff;

    box-shadow:

        0 12px 30px rgba(31, 122, 140, .25);

}

/*============================*/

.product-grid {

    display: grid;

    grid-template-columns:

        repeat(4, 1fr);

    gap: 28px;

}

/*============================*/

.product-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #edf2f7;
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
    box-shadow: 0 12px 35px rgba(2, 43, 58, .06);
}

.product-card:hover {

    transform:

        translateY(-10px);

    box-shadow:

        0 25px 55px rgba(2, 43, 58, .14);

}

/*============================*/

.product-popup {

    display: block;

    text-decoration: none;

    color: inherit;

}

/*============================*/

.product-image {

    position: relative;

    aspect-ratio: 16/17;

    overflow: hidden;

    background:

        linear-gradient(180deg,
            #ffffff,
            #f5f8fb);

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 10px;

}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: .45s;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

/*============================*/

.view-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    background:
        rgba(2, 43, 58, .75);
    color: #fff;
    opacity: 0;
    transition: .35s;
    font-size: 15px;
    font-weight: 600;
}

.product-card:hover .view-overlay {

    opacity: 1;

}

.view-overlay svg {

    width: 34px;

    height: 34px;

    fill: #fff;

}

/*============================*/

.product-card h4 {

    margin: 0;

    padding: 22px;

    text-align: center;

    font-size: 18px;

    color: var(--color-primary);

    border-top: 1px solid #edf2f7;

    transition: .35s;

}

.product-card:hover h4 {

    color: var(--color-secondary);

}

/*============================*/

.product-card.hide {

    display: none;

}

/*============================*/

@media(max-width:1200px) {

    .product-grid {

        grid-template-columns:

            repeat(4, 1fr);

        gap: 22px;

    }

}

@media(max-width:991px) {

    .product-grid {

        grid-template-columns:

            repeat(3, 1fr);

    }

    .product-filter {

        top: 80px;

    }

}

@media(max-width:767px) {

    .product-filter {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: wrap;
        justify-content: center;
        padding: 14px;
        margin: 40px 0;
        scrollbar-width: none;
    }

    .product-filter::-webkit-scrollbar {

        display: none;

    }

    .filter-btn {

        flex: 0 0 auto;

        padding: 10px 18px;

        font-size: 13px;

    }

    .product-grid {

        grid-template-columns:

            repeat(2, 1fr);

        gap: 18px;

    }

    .product-card h4 {

        font-size: 16px;

        padding: 16px;

    }

}

@media(max-width:575px) {

    .products-section {

        padding: 70px 0;

    }

    .product-grid {

        grid-template-columns: 1fr;

    }

    .product-image img {

        padding: 20px;

    }

}

/*=============================
CARD EFFECTS
=============================*/

.product-card {

    position: relative;

}

.product-card::before {

    content: "";

    position: absolute;

    inset: 0;

    border-radius: 22px;

    padding: 2px;

    background: linear-gradient(135deg,
            var(--color-primary),
            var(--color-secondary),
            #49d6ff);

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;

    mask-composite: exclude;

    opacity: 0;

    transition: .35s;

}

.product-card:hover::before {

    opacity: 1;

}

/*=============================
SHINE EFFECT
=============================*/

.product-image::before {

    content: "";

    position: absolute;

    top: 0;

    left: -120%;

    width: 60%;

    height: 100%;

    background: linear-gradient(90deg,

            transparent,

            rgba(255, 255, 255, .55),

            transparent);

    transform: skewX(-20deg);

    transition: .8s;

}

.product-card:hover .product-image::before {

    left: 160%;

}

/*=============================
MODAL
=============================*/

.product-modal {

    position: fixed;

    inset: 0;

    background: rgba(3, 18, 29, .94);

    backdrop-filter: blur(14px);

    display: flex;

    align-items: center;

    justify-content: center;

    opacity: 0;

    visibility: hidden;

    transition: .35s;

    z-index: 99999;

}

.product-modal.open {

    opacity: 1;

    visibility: visible;

}

/*=============================
CONTENT
=============================*/

.modal-content {

    position: relative;

    width: min(90vw, 1100px);

    height: min(82vh, 780px);

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

}

.modal-image {

    max-width: 100%;

    max-height: 70vh;

    object-fit: contain;

    cursor: grab;

    transition: transform .25s;

    transform-origin: center;

}

.modal-title {

    color: #fff;

    margin-top: 25px;

    font-size: 24px;

    font-weight: 600;

}

/*=============================
BUTTONS
=============================*/

.modal-close,
.modal-prev,
.modal-next {

    position: absolute;

    border: none;

    width: 56px;

    height: 56px;

    border-radius: 50%;

    cursor: pointer;

    background: rgba(255, 255, 255, .12);

    color: #fff;

    backdrop-filter: blur(12px);

    transition: .3s;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 24px;
    z-index: 23;

}

.modal-close {

    top: 30px;

    right: 30px;

}

.modal-prev {

    left: 35px;

    top: 50%;

    transform: translateY(-50%);

}

.modal-next {

    right: 35px;

    top: 50%;

    transform: translateY(-50%);

}

.modal-close:hover,
.modal-prev:hover,
.modal-next:hover {

    background: var(--color-primary);

    transform: translateY(-50%) scale(1.08);

}

.modal-close:hover {

    transform: scale(1.08);

}

/*=============================
ZOOM TOOLBAR
=============================*/

.modal-toolbar {

    position: absolute;

    top: 30px;

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    gap: 10px;

    padding: 10px;

    border-radius: 50px;

    background: rgba(255, 255, 255, .08);

    backdrop-filter: blur(16px);

}

.modal-toolbar button {

    border: none;

    width: 42px;

    height: 42px;

    border-radius: 50%;

    background: #fff;

    cursor: pointer;

    font-size: 18px;

    font-weight: 700;

    transition: .3s;

}

.modal-toolbar button:hover {

    background: var(--color-primary);

    color: #fff;

}

/*=============================
OPEN ANIMATION
=============================*/

.product-modal.open .modal-content {

    animation: galleryZoom .35s ease;

}

@keyframes galleryZoom {

    from {

        opacity: 0;

        transform: scale(.9);

    }

    to {

        opacity: 1;

        transform: scale(1);

    }

}

/*=============================
MOBILE
=============================*/

@media(max-width:768px) {

    .modal-content {

        width: 94vw;

    }

    .modal-image {

        max-height: 55vh;

    }

    .modal-title {

        font-size: 18px;

        text-align: center;

    }

    .modal-prev,
    .modal-next {

        width: 46px;

        height: 46px;

        font-size: 20px;

    }

    .modal-prev {

        left: 12px;

    }

    .modal-next {

        right: 12px;

    }

    .modal-close {

        top: 16px;

        right: 16px;

        width: 46px;

        height: 46px;

    }

    .modal-toolbar {

        bottom: 20px;

        top: auto;

    }

}

@media(max-width:480px) {

    .product-card {

        border-radius: 18px;

    }

    .product-card h4 {

        font-size: 15px;

    }

    .modal-toolbar {

        gap: 8px;

        padding: 8px;

    }

    .modal-toolbar button {

        width: 38px;

        height: 38px;

        font-size: 16px;

    }

}

/*=============================
REDUCED MOTION
=============================*/

@media(prefers-reduced-motion:reduce) {

    .product-card,
    .product-image img,
    .product-modal,
    .modal-content {

        animation: none !important;

        transition: none !important;

    }

}

/*======================================
INDUSTRIAL BLUEPRINT DECORATIVE ELEMENTS
Subtle sketch-style SVG backgrounds
======================================*/

/* --- PLC Blueprint on About Section (bottom-right) --- */
.mesa-about-section::after {
    content: "";
    position: absolute;
    right: -40px;
    bottom: 30px;
    width: 320px;
    height: 380px;
    z-index: 0;
    opacity: .045;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 380' fill='none' stroke='%23022B3A' stroke-width='1.5'%3E%3C!-- PLC Body --%3E%3Crect x='60' y='30' width='200' height='300' rx='12'/%3E%3Crect x='75' y='50' width='170' height='40' rx='6'/%3E%3Ctext x='110' y='76' font-size='14' fill='%23022B3A' stroke='none' font-family='monospace'%3ECPU 1500%3C/text%3E%3C!-- Status LEDs --%3E%3Ccircle cx='90' cy='115' r='5'/%3E%3Ccircle cx='110' cy='115' r='5'/%3E%3Ccircle cx='130' cy='115' r='5'/%3E%3Ccircle cx='150' cy='115' r='5'/%3E%3Ccircle cx='170' cy='115' r='5'/%3E%3Ccircle cx='190' cy='115' r='5'/%3E%3Ccircle cx='210' cy='115' r='5'/%3E%3Ccircle cx='230' cy='115' r='5'/%3E%3C!-- I/O Terminal Blocks --%3E%3Crect x='80' y='140' width='160' height='8' rx='2'/%3E%3Cline x1='95' y1='140' x2='95' y2='148'/%3E%3Cline x1='110' y1='140' x2='110' y2='148'/%3E%3Cline x1='125' y1='140' x2='125' y2='148'/%3E%3Cline x1='140' y1='140' x2='140' y2='148'/%3E%3Cline x1='155' y1='140' x2='155' y2='148'/%3E%3Cline x1='170' y1='140' x2='170' y2='148'/%3E%3Cline x1='185' y1='140' x2='185' y2='148'/%3E%3Cline x1='200' y1='140' x2='200' y2='148'/%3E%3Cline x1='215' y1='140' x2='215' y2='148'/%3E%3Cline x1='230' y1='140' x2='230' y2='148'/%3E%3C!-- Wiring channels --%3E%3Cline x1='95' y1='148' x2='95' y2='175' stroke-dasharray='4 3'/%3E%3Cline x1='125' y1='148' x2='125' y2='175' stroke-dasharray='4 3'/%3E%3Cline x1='155' y1='148' x2='155' y2='175' stroke-dasharray='4 3'/%3E%3Cline x1='185' y1='148' x2='185' y2='175' stroke-dasharray='4 3'/%3E%3Cline x1='215' y1='148' x2='215' y2='175' stroke-dasharray='4 3'/%3E%3C!-- Bottom terminal row --%3E%3Crect x='80' y='280' width='160' height='8' rx='2'/%3E%3Cline x1='95' y1='280' x2='95' y2='288'/%3E%3Cline x1='110' y1='280' x2='110' y2='288'/%3E%3Cline x1='125' y1='280' x2='125' y2='288'/%3E%3Cline x1='140' y1='280' x2='140' y2='288'/%3E%3Cline x1='155' y1='280' x2='155' y2='288'/%3E%3Cline x1='170' y1='280' x2='170' y2='288'/%3E%3Cline x1='185' y1='280' x2='185' y2='288'/%3E%3Cline x1='200' y1='280' x2='200' y2='288'/%3E%3Cline x1='215' y1='280' x2='215' y2='288'/%3E%3Cline x1='230' y1='280' x2='230' y2='288'/%3E%3C!-- Module slots --%3E%3Crect x='80' y='170' width='40' height='100' rx='4'/%3E%3Crect x='130' y='170' width='40' height='100' rx='4'/%3E%3Crect x='180' y='170' width='60' height='100' rx='4'/%3E%3C!-- Ethernet port --%3E%3Crect x='85' y='300' width='30' height='18' rx='3'/%3E%3Crect x='125' y='300' width='30' height='18' rx='3'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain
}

/* --- HMI Touchscreen on Services Section (top-left) --- */
.mesa-services::before {
    content: "";
    position: absolute;
    left: -30px;
    top: 40px;
    width: 280px;
    height: 220px;
    z-index: 0;
    opacity: .04;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 280 220' fill='none' stroke='%23022B3A' stroke-width='1.5'%3E%3C!-- HMI Panel Body --%3E%3Crect x='20' y='10' width='240' height='180' rx='10'/%3E%3C!-- Screen --%3E%3Crect x='35' y='25' width='210' height='130' rx='4' fill='%23022B3A' fill-opacity='.03'/%3E%3C!-- Screen Graph Lines --%3E%3Cpolyline points='50,120 80,95 110,105 140,75 170,90 200,60 230,80' stroke-width='1.2'/%3E%3Cline x1='50' y1='130' x2='230' y2='130' stroke-width='.8' stroke-dasharray='3 2'/%3E%3Cline x1='50' y1='110' x2='230' y2='110' stroke-width='.5' stroke-dasharray='3 2'/%3E%3Cline x1='50' y1='90' x2='230' y2='90' stroke-width='.5' stroke-dasharray='3 2'/%3E%3Cline x1='50' y1='70' x2='230' y2='70' stroke-width='.5' stroke-dasharray='3 2'/%3E%3C!-- Status bar --%3E%3Crect x='50' y='35' width='60' height='12' rx='2'/%3E%3Crect x='180' y='35' width='50' height='12' rx='2'/%3E%3C!-- Buttons row --%3E%3Ccircle cx='80' cy='172' r='8'/%3E%3Ccircle cx='140' cy='172' r='8'/%3E%3Ccircle cx='200' cy='172' r='8'/%3E%3C!-- Label --%3E%3Ctext x='100' y='208' font-size='10' fill='%23022B3A' stroke='none' font-family='monospace'%3EHMI PANEL%3C/text%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain
}

/* --- Services also gets a VFD drive at bottom-right --- */
.mesa-services::after {
    content: "";
    position: absolute;
    right: -20px;
    bottom: 20px;
    width: 220px;
    height: 340px;
    z-index: 0;
    opacity: .035;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 340' fill='none' stroke='%23022B3A' stroke-width='1.5'%3E%3C!-- VFD Body --%3E%3Crect x='30' y='20' width='160' height='300' rx='8'/%3E%3C!-- Display --%3E%3Crect x='50' y='40' width='120' height='50' rx='4' fill='%23022B3A' fill-opacity='.03'/%3E%3Ctext x='70' y='72' font-size='22' fill='%23022B3A' stroke='none' font-family='monospace'%3E50.0Hz%3C/text%3E%3C!-- Keypad --%3E%3Crect x='60' y='110' width='30' height='20' rx='3'/%3E%3Crect x='95' y='110' width='30' height='20' rx='3'/%3E%3Crect x='130' y='110' width='30' height='20' rx='3'/%3E%3Crect x='60' y='140' width='30' height='20' rx='3'/%3E%3Crect x='95' y='140' width='30' height='20' rx='3'/%3E%3Crect x='130' y='140' width='30' height='20' rx='3'/%3E%3C!-- Heat sink fins --%3E%3Cline x1='45' y1='190' x2='175' y2='190'/%3E%3Cline x1='45' y1='200' x2='175' y2='200'/%3E%3Cline x1='45' y1='210' x2='175' y2='210'/%3E%3Cline x1='45' y1='220' x2='175' y2='220'/%3E%3Cline x1='45' y1='230' x2='175' y2='230'/%3E%3Cline x1='45' y1='240' x2='175' y2='240'/%3E%3C!-- Terminal block --%3E%3Crect x='55' y='260' width='110' height='15' rx='2'/%3E%3Cline x1='70' y1='260' x2='70' y2='275'/%3E%3Cline x1='85' y1='260' x2='85' y2='275'/%3E%3Cline x1='100' y1='260' x2='100' y2='275'/%3E%3Cline x1='115' y1='260' x2='115' y2='275'/%3E%3Cline x1='130' y1='260' x2='130' y2='275'/%3E%3Cline x1='145' y1='260' x2='145' y2='275'/%3E%3C!-- Wires coming out --%3E%3Cline x1='70' y1='275' x2='70' y2='310' stroke-dasharray='5 3'/%3E%3Cline x1='100' y1='275' x2='100' y2='310' stroke-dasharray='5 3'/%3E%3Cline x1='130' y1='275' x2='130' y2='310' stroke-dasharray='5 3'/%3E%3C!-- Label --%3E%3Ctext x='80' y='295' font-size='8' fill='%23022B3A' stroke='none' font-family='monospace'%3ER S T U V W%3C/text%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain
}

/* --- Circuit Board Traces on Industries Section (bottom-left) --- */
.mesa-industries::after {
    content: "";
    position: absolute;
    left: -20px;
    bottom: 20px;
    width: 350px;
    height: 280px;
    z-index: 0;
    opacity: .04;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 350 280' fill='none' stroke='%231F7A8C' stroke-width='1.2'%3E%3C!-- IC Chip --%3E%3Crect x='120' y='90' width='110' height='80' rx='6'/%3E%3Crect x='135' y='105' width='80' height='50' rx='3' fill='%231F7A8C' fill-opacity='.03'/%3E%3Ctext x='148' y='135' font-size='10' fill='%231F7A8C' stroke='none' font-family='monospace'%3EMCU%3C/text%3E%3C!-- Pins left --%3E%3Cline x1='120' y1='110' x2='90' y2='110'/%3E%3Cline x1='120' y1='125' x2='90' y2='125'/%3E%3Cline x1='120' y1='140' x2='90' y2='140'/%3E%3Cline x1='120' y1='155' x2='90' y2='155'/%3E%3C!-- Pins right --%3E%3Cline x1='230' y1='110' x2='260' y2='110'/%3E%3Cline x1='230' y1='125' x2='260' y2='125'/%3E%3Cline x1='230' y1='140' x2='260' y2='140'/%3E%3Cline x1='230' y1='155' x2='260' y2='155'/%3E%3C!-- Pins top --%3E%3Cline x1='145' y1='90' x2='145' y2='60'/%3E%3Cline x1='165' y1='90' x2='165' y2='60'/%3E%3Cline x1='185' y1='90' x2='185' y2='60'/%3E%3Cline x1='205' y1='90' x2='205' y2='60'/%3E%3C!-- Pins bottom --%3E%3Cline x1='145' y1='170' x2='145' y2='200'/%3E%3Cline x1='165' y1='170' x2='165' y2='200'/%3E%3Cline x1='185' y1='170' x2='185' y2='200'/%3E%3Cline x1='205' y1='170' x2='205' y2='200'/%3E%3C!-- Traces --%3E%3Cpath d='M90 110 L50 110 L50 50 L145 50 L145 60'/%3E%3Cpath d='M90 125 L40 125 L40 40 L165 40 L165 60'/%3E%3Cpath d='M260 110 L300 110 L300 50 L205 50 L205 60'/%3E%3Cpath d='M260 140 L310 140 L310 210 L205 210 L205 200'/%3E%3Cpath d='M90 155 L60 155 L60 220 L145 220 L145 200'/%3E%3C!-- Passive components --%3E%3Crect x='50' y='65' width='16' height='8' rx='1'/%3E%3Crect x='280' y='65' width='16' height='8' rx='1'/%3E%3Ccircle cx='55' cy='230' r='8'/%3E%3Ccircle cx='55' cy='230' r='4'/%3E%3Crect x='290' y='190' width='8' height='16' rx='1'/%3E%3Ccircle cx='295' cy='230' r='8'/%3E%3Ccircle cx='295' cy='230' r='4'/%3E%3C!-- Vias --%3E%3Ccircle cx='50' cy='110' r='3' fill='%231F7A8C' fill-opacity='.15'/%3E%3Ccircle cx='300' cy='110' r='3' fill='%231F7A8C' fill-opacity='.15'/%3E%3Ccircle cx='145' cy='50' r='3' fill='%231F7A8C' fill-opacity='.15'/%3E%3Ccircle cx='205' cy='210' r='3' fill='%231F7A8C' fill-opacity='.15'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain
}

/* --- Servo Motor on Why Choose Us (top-right) --- */
.mesa-why-content::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 200px;
    right: -80px;
    top: -30px;
    z-index: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 260 200' fill='none' stroke='%23022B3A' stroke-width='1.3'%3E%3C!-- Motor body --%3E%3Crect x='30' y='50' width='130' height='100' rx='10'/%3E%3C!-- Shaft --%3E%3Crect x='160' y='85' width='60' height='30' rx='4'/%3E%3Cline x1='220' y1='100' x2='250' y2='100' stroke-width='3'/%3E%3C!-- Cooling fins --%3E%3Cline x1='35' y1='60' x2='35' y2='140'/%3E%3Cline x1='50' y1='55' x2='50' y2='145'/%3E%3Cline x1='65' y1='55' x2='65' y2='145'/%3E%3Cline x1='80' y1='55' x2='80' y2='145'/%3E%3Cline x1='95' y1='55' x2='95' y2='145'/%3E%3Cline x1='110' y1='55' x2='110' y2='145'/%3E%3Cline x1='125' y1='55' x2='125' y2='145'/%3E%3Cline x1='140' y1='55' x2='140' y2='145'/%3E%3C!-- Encoder --%3E%3Ccircle cx='30' cy='100' r='20'/%3E%3Ccircle cx='30' cy='100' r='10'/%3E%3Ccircle cx='30' cy='100' r='3' fill='%23022B3A' fill-opacity='.1'/%3E%3C!-- Mounting holes --%3E%3Ccircle cx='170' cy='75' r='4'/%3E%3Ccircle cx='170' cy='125' r='4'/%3E%3C!-- Cable --%3E%3Cpath d='M10 100 C0 100 0 70 10 60 L10 40' stroke-dasharray='4 3'/%3E%3C!-- Connector --%3E%3Crect x='5' y='30' width='12' height='12' rx='2'/%3E%3C!-- Label --%3E%3Ctext x='60' y='108' font-size='9' fill='%23022B3A' stroke='none' font-family='monospace'%3ESERVO%3C/text%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    opacity: .04
}

/* --- Control Panel Blueprint on Partners Section --- */
.mesa-partners::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 240px;
    height: 300px;
    z-index: 0;
    opacity: .03;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 300' fill='none' stroke='%23022B3A' stroke-width='1.2'%3E%3C!-- Panel enclosure --%3E%3Crect x='20' y='10' width='200' height='280' rx='6'/%3E%3Crect x='25' y='15' width='190' height='270' rx='4'/%3E%3C!-- Door handle --%3E%3Cline x1='210' y1='130' x2='210' y2='170' stroke-width='2'/%3E%3C!-- DIN rail 1 --%3E%3Crect x='40' y='30' width='160' height='6' rx='1'/%3E%3C!-- Breakers row --%3E%3Crect x='45' y='38' width='18' height='35' rx='2'/%3E%3Crect x='67' y='38' width='18' height='35' rx='2'/%3E%3Crect x='89' y='38' width='18' height='35' rx='2'/%3E%3Crect x='111' y='38' width='18' height='35' rx='2'/%3E%3Crect x='133' y='38' width='18' height='35' rx='2'/%3E%3Crect x='155' y='38' width='18' height='35' rx='2'/%3E%3Crect x='177' y='38' width='18' height='35' rx='2'/%3E%3C!-- DIN rail 2 --%3E%3Crect x='40' y='90' width='160' height='6' rx='1'/%3E%3C!-- Relay modules --%3E%3Crect x='45' y='98' width='22' height='40' rx='2'/%3E%3Crect x='71' y='98' width='22' height='40' rx='2'/%3E%3Crect x='97' y='98' width='22' height='40' rx='2'/%3E%3Crect x='123' y='98' width='22' height='40' rx='2'/%3E%3C!-- PLC module --%3E%3Crect x='150' y='98' width='45' height='40' rx='3'/%3E%3Ctext x='155' y='122' font-size='8' fill='%23022B3A' stroke='none' font-family='monospace'%3EPLC%3C/text%3E%3C!-- Wire ducts --%3E%3Crect x='40' y='150' width='160' height='10' rx='1' fill='%23022B3A' fill-opacity='.03'/%3E%3C!-- Terminal strips --%3E%3Crect x='40' y='170' width='160' height='6' rx='1'/%3E%3Cline x1='55' y1='170' x2='55' y2='176'/%3E%3Cline x1='70' y1='170' x2='70' y2='176'/%3E%3Cline x1='85' y1='170' x2='85' y2='176'/%3E%3Cline x1='100' y1='170' x2='100' y2='176'/%3E%3Cline x1='115' y1='170' x2='115' y2='176'/%3E%3Cline x1='130' y1='170' x2='130' y2='176'/%3E%3Cline x1='145' y1='170' x2='145' y2='176'/%3E%3Cline x1='160' y1='170' x2='160' y2='176'/%3E%3Cline x1='175' y1='170' x2='175' y2='176'/%3E%3Cline x1='190' y1='170' x2='190' y2='176'/%3E%3C!-- Wiring --%3E%3Cpath d='M55 176 L55 200 L80 220' stroke-dasharray='4 2'/%3E%3Cpath d='M100 176 L100 210 L130 240' stroke-dasharray='4 2'/%3E%3Cpath d='M145 176 L145 200 L170 230' stroke-dasharray='4 2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain
}

/* --- Ensure all section content stays above decorative elements --- */
.mesa-about-section>.container,
.mesa-services>.container,
.mesa-industries>.container,
.mesa-why>.container,
.mesa-partners>.container {
    position: relative;
    z-index: 2
}

/* --- Hide blueprint decorations on mobile for performance --- */
@media (max-width: 991px) {

    .mesa-about-section::after,
    .mesa-services::before,
    .mesa-services::after,
    .mesa-industries::after,
    .mesa-why-content::after,
    .mesa-partners::before,
    .mesa-about-image .experience-card {
        display: none
    }
}

/* =========================================================
   PRELOADER STYLES
   ========================================================= */
.preloader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    opacity: 1;
    visibility: visible;
}

.preloader-overlay.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.modern-spinner {
    width: 50px;
    height: 50px;
}

.modern-spinner svg {
    animation: spinner-rotate 1.8s linear infinite;
    width: 100%;
    height: 100%;
}

.modern-spinner circle {
    fill: none;
    stroke-width: 3.5;
    stroke-linecap: round;
}

.modern-spinner .spinner-track {
    stroke: rgba(31, 122, 140, 0.08);
}

.modern-spinner .spinner-path {
    stroke: var(--color-secondary);
    stroke-dasharray: 90, 150;
    stroke-dashoffset: 0;
    animation: spinner-dash 1.4s ease-in-out infinite;
}

.preloader-percent {
    font-family: 'Outfit', 'Segoe UI', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
    margin-top: 8px;
}

.preloader-progress-bar {
    width: 180px;
    height: 4px;
    background-color: rgba(31, 122, 140, 0.08);
    border-radius: 10px;
    overflow: hidden;
    margin: 8px 0;
}

.preloader-progress-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 10px;
    transition: width 0.1s ease;
}

.preloader-text {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #8fa0a6;
    animation: preloader-fade 1.6s ease-in-out infinite;
}

@keyframes spinner-rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes spinner-dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px;
    }

    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124px;
    }
}

@keyframes preloader-fade {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}

/* Custom Helper Classes for Inline Style Removal */
.seo-h1-hidden {
    height: 0;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    margin: 0;
    padding: 0;
}

.display-none {
    display: none;
}

.project-specs-container {
    background: #f8fafc;
    /* border-left: 3px solid var(--color-primary); */
    padding: 12px 16px;
    border-radius: 0 8px 8px 0;
}

.specs-title-label {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-primary);
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 6px;
}

.project-spec-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.spec-pill {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: var(--color-gray-700);
    padding: 6px 12px;
    font-size: 0.8125rem;
    font-weight: 500;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
    transition: all 0.25s ease;
}

.spec-pill:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: #f0f7fc;
    transform: translateY(-1px);
}

.spec-check-icon {
    color: var(--color-primary);
    flex-shrink: 0;
}

.project-spec-list {
    list-style-type: disc !important;
}

.quick-contact-close-icon {
    display: none;
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
}

.enquiry-loading-msg {
    display: none;
    margin-top: 10px;
    color: #007bff;
    font-weight: 600;
}

@media (min-width: 992px) {

    .mega-card.active {
        background: linear-gradient(135deg, var(--color-primary)) !important;
    }

    .mega-card:hover {
        background: var(--color-primary) !important;
        border-color: #dbe5f00d;
        box-shadow: 0 10px 24px rgba(0, 0, 0, .06);
        transform: none !important;
    }

    .mega-card:hover .mega-card-title {
        color: #fff!important;
    }
}

/*=========================================================
MOBILE PROJECTS SHOWCASE
=========================================================*/
.mesa-product-showcase-mobile {
    padding: 60px 0;
    background: #eeeeee;
}

.mesa-mobile-showcase-header {
    margin-bottom: 30px;
}

.mesa-mobile-showcase-header .mesa-tag {
    display: inline-block;
    margin-bottom: 12px;
}

.mesa-mobile-showcase-header .mesa-product-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 12px;
    font-family: 'Outfit', sans-serif;
}

.mesa-mobile-showcase-header .mesa-product-desc {
    font-size: 0.95rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.mesaMobileShowcaseSwiper {
    width: 100%;
    padding-bottom: 40px !important;
}

.mesa-mobile-project-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    margin: 10px 4px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mesa-mobile-project-img {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.mesa-mobile-project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.mesa-mobile-project-card:hover .mesa-mobile-project-img img {
    transform: scale(1.05);
}

.mesa-mobile-project-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.mesa-mobile-project-info h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
    font-family: 'Outfit', sans-serif;
}

.mesa-mobile-project-info p {
    font-size: 0.9rem;
    color: var(--color-text);
    line-height: 1.5;
    margin: 0;
}

.mesa-mobile-showcase-pagination {
    margin-top: 15px;
}

.mesa-mobile-showcase-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #bbb;
    opacity: 1;
    transition: all 0.3s ease;
}

.mesa-mobile-showcase-pagination .swiper-pagination-bullet-active {
    background: var(--color-primary) !important;
    width: 20px;
    border-radius: 4px;
}

/* Combined Why Choose & Partners Component */
.mesa-why-partners-combined {
    padding: 40px 0;
    position: relative;
    background-color: var(--color-white);
}

.mesa-why-partners-combined .mesa-why-content {
    padding-right: 20px;
}

.mesa-partners-sidebar {
    background: var(--color-gray-50);
    border-radius: 24px;
    border: 1px solid var(--color-gray-200);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.mesa-partners-sidebar h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 25px;
}

.mesa-partners-grid-sidebar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (min-width: 576px) and (max-width: 991px) {
    .mesa-partners-grid-sidebar {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mesa-partners-grid-sidebar .partner-card {
    height: 80px;
    border-radius: 16px;
    padding: 10px;
    background: #ffffff;
    border: 1px solid var(--color-gray-200);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.mesa-partners-grid-sidebar .partner-card img {
    max-height: 40px;
    max-width: 100%;
    /* filter: grayscale(100%); */
    opacity: 1;
    transition: all 0.3s ease;
    object-fit: contain;
}

.mesa-partners-grid-sidebar .partner-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary-light);
}

.mesa-partners-grid-sidebar .partner-card:hover img {
    filter: none;
    opacity: 1;
}

/* Responsiveness for mobile screen */
@media (max-width: 991px) {
    .mesa-why-partners-combined {
        padding: 60px 0;
    }
    .mesa-why-partners-combined .mesa-why-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    .mesa-partners-sidebar {
        padding: 30px 20px;
    }
}

/* Custom classes extracted from projects.php inline styles */
.capabilities-item {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-primary);
}
.capabilities-check-bullet {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: var(--color-secondary);
    color: #fff;
    min-width: 22px;
}
.category-badge-custom {
    width: fit-content;
    margin: 0 auto;
}
.project-intro-custom {
    max-width: 650px;
}
.gallery-media-fit {
    width: 100%;
    height: 100%;
    object-fit: contain;
    aspect-ratio: 4/3;
}
.lightbox-img-custom {
    display: none;
}
.lightbox-video-custom {
    display: none;
    max-width: 100%;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}
.proj-gallery-heading {
    font-family: var(--font-family-heading);
    font-weight: 700;
    color: var(--color-primary);
}
.proj-video-badge-icon {
    margin-right: 2px;
}

/* Form Captcha Styling */
.captcha-wrapper {
    width: 100%;
    margin-bottom: 5px;
}
.captcha-digit-box {
    position: relative;
    width: 65px;
    height: 48px;
    background-color: #1e293b;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    user-select: none;
    flex-shrink: 0;
}
.captcha-digit {
    font-family: 'Poppins', 'Courier New', monospace;
    font-size: 22px;
    font-weight: 700;
    color: #38bdf8;
    transform: rotate(-5deg);
    text-shadow: 0px 0px 8px rgba(56, 189, 248, 0.4);
}
.captcha-line {
    position: absolute;
    width: 75%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.25);
    top: 50%;
    left: 12.5%;
    transform: translateY(-50%) rotate(7deg);
}
.btn-refresh-captcha {
    width: 48px;
    height: 48px;
    background-color: #f8fafc;
    border: 1px solid #dbe4ee;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    outline: none;
}
.btn-refresh-captcha:hover {
    background-color: #edf2f7;
    color: var(--color-primary);
    border-color: #cbd5e1;
}
.captcha-wrapper input.captcha-input {
    border: 1px solid #dbe4ee !important;
    border-radius: 12px !important;
    background-color: #ffffff !important;
    padding: 10px 16px !important;
    height: 48px !important;
    transition: all 0.3s ease;
    font-size: 15px;
    color: #475569 !important;
    outline: none;
    margin-bottom: 0;
    max-width: 140px;
}
.captcha-wrapper input.captcha-input:focus {
    border-color: #0d6efd !important;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, .08) !important;
}
