﻿/* ============================================================
   Keyframes
============================================================ */
@keyframes phoneRing {
    0%,100% {
        transform: rotate(0)
    }

    10% {
        transform: rotate(15deg)
    }

    20% {
        transform: rotate(-12deg)
    }

    30% {
        transform: rotate(10deg)
    }

    40% {
        transform: rotate(-8deg)
    }

    50% {
        transform: rotate(6deg)
    }

    60% {
        transform: rotate(-4deg)
    }

    70% {
        transform: rotate(3deg)
    }

    80% {
        transform: rotate(-2deg)
    }

    90% {
        transform: rotate(1deg)
    }
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(22px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes pulseGlow {
    0%,100% {
        box-shadow: 0 10px 28px rgba(200,29,37,.28)
    }

    50% {
        box-shadow: 0 14px 40px rgba(200,29,37,.50)
    }
}

@keyframes shimmerPass {
    0% {
        background-position: -200% center
    }

    100% {
        background-position: 200% center
    }
}

@keyframes borderPulse {
    0%,100% {
        border-color: rgba(7,43,65,.30)
    }

    50% {
        border-color: rgba(7,43,65,.62)
    }
}

@keyframes modCardIn {
    from {
        opacity: 0;
        transform: translateY(18px) scale(.97)
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1)
    }
}

@keyframes dotPulse {
    0%,100% {
        transform: scale(1);
        opacity: .7
    }

    50% {
        transform: scale(1.5);
        opacity: 1
    }
}

@keyframes clientCardIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(.96)
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1)
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(10px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes shimmerSlide {
    0% {
        transform: translateX(-100%) skewX(-15deg)
    }

    100% {
        transform: translateX(300%) skewX(-15deg)
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(60px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(-60px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes contactCardIn {
    from {
        opacity: 0;
        transform: translateY(24px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* ============================================================
   DESIGN TOKENS
============================================================ */
:root {
    /* Section rhythm */
    --section-gap: 80px;
    --section-pad-v: 72px;
    /* Card system */
    --card-bg: #fff;
    --card-border: 1px solid rgba(11,57,84,.10);
    --card-radius: 28px;
    --card-shadow: 0 8px 32px rgba(11,57,84,.08), 0 2px 8px rgba(11,57,84,.05), inset 0 1px 0 rgba(255,255,255,.90);
    --card-shadow-hover: 0 24px 48px rgba(11,57,84,.14), 0 6px 16px rgba(11,57,84,.08), inset 0 1px 0 rgba(255,255,255,.95);
    --card-ease: cubic-bezier(.34,1.56,.64,1);
    /* Palette */
    --acc-red: #C81D25;
    --acc-red-2: #9B1219;
    --acc-blue: #1A6CA0;
    --acc-blue-2: #0B3954;
    --acc-teal: #087E8B;
    --acc-teal-2: #065E69;
    --acc-amber: #D4860A;
    --acc-amber-2: #A66808;
    --acc-purple: #7B52AB;
    --acc-purple-2: #5F3F87;
    --acc-green: #1A8C5B;
    --acc-green-2: #126A44;
    /* Glass icon */
    --icon-glass-bg: linear-gradient(135deg, rgba(255,255,255,.70) 0%, rgba(243,250,255,.50) 100%);
    --icon-glass-border: 1px solid rgba(11,57,84,.12);
    --icon-glass-shadow: 0 4px 16px rgba(11,57,84,.08), 0 1px 2px rgba(11,57,84,.04), inset 0 1px 0 rgba(255,255,255,.90), inset 0 -1px 0 rgba(11,57,84,.04);
    --icon-glass-shadow-hover: 0 8px 24px rgba(11,57,84,.14), 0 2px 4px rgba(11,57,84,.06), inset 0 1px 0 rgba(255,255,255,.95);
}

/* ============================================================
   1. HEADER SECTION
============================================================ */
.wintap-header-section {
    width: 100%;
    background: transparent;
    padding: var(--section-pad-v) 0;
    box-sizing: border-box;
}

.wintap-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: fadeSlideUp .7s ease both;
}

.wintap-main-title {
    color: #0B3954;
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 32px;
    direction: rtl;
    position: relative;
    letter-spacing: -.2px;
    line-height: 1.3;
}

    .wintap-main-title::after {
        content: '';
        display: block;
        width: 40px;
        height: 2px;
        background: #C81D25;
        border-radius: 0;
        margin: 14px auto 0;
        opacity: .9;
    }

.wintap-features-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    width: 100%;
    max-width: 960px;
    direction: rtl;
    margin-bottom: 28px;
}

/* ---- Feature Card ---- */
.wintap-feature-item {
    background: var(--card-bg);
    border: var(--card-border);
    border-radius: var(--card-radius);
    border-top-right-radius: 0;
    height: 124px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 22px;
    box-shadow: var(--card-shadow);
    transition: transform .4s var(--card-ease), box-shadow .4s ease, border-color .3s ease;
    position: relative;
    overflow: hidden;
    direction: rtl;
}

    .wintap-feature-item::after {
        content: '';
        position: absolute;
        bottom: -50px;
        left: -50px;
        width: 130px;
        height: 130px;
        border-radius: 50%;
        background: var(--feat-accent-bg, rgba(11,57,84,.04));
        z-index: 0;
        transition: transform .5s var(--card-ease);
    }

    .wintap-feature-item::before {
        content: none !important;
        display: none !important;
    }

    .wintap-feature-item:hover {
        transform: translateY(-6px) scale(1.015);
        border-color: var(--feat-accent-border, rgba(200,29,37,.25));
        box-shadow: var(--card-shadow-hover);
    }

        .wintap-feature-item:hover::after {
            transform: scale(1.15);
        }

/* Icon wrap */
.wintap-feat-icon-wrap {
    position: relative;
    z-index: 1;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--icon-glass-bg);
    backdrop-filter: blur(12px) saturate(140%);
    -webkit-backdrop-filter: blur(12px) saturate(140%);
    border: var(--icon-glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--icon-glass-shadow);
    transition: transform .4s var(--card-ease), box-shadow .3s ease;
    overflow: hidden;
}

    .wintap-feat-icon-wrap::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 50%;
        background: linear-gradient(180deg, rgba(255,255,255,.45), transparent);
        border-radius: 14px 14px 0 0;
        pointer-events: none;
    }

    .wintap-feat-icon-wrap svg {
        width: 22px;
        height: 22px;
        fill: none;
        stroke: var(--feat-icon-color, #C81D25);
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
        opacity: .9;
        position: relative;
        z-index: 1;
    }

.wintap-feature-item:hover .wintap-feat-icon-wrap {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--icon-glass-shadow-hover);
}

.wintap-feat-text {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.wintap-feat-title {
    font-size: 15px;
    font-weight: 800;
    color: #0B3954;
    line-height: 1.3;
}

.wintap-feat-sub {
    font-size: 12.5px;
    font-weight: 500;
    color: #5a7a8e;
    line-height: 1.55;
}

/* Color variants */
.wintap-feature-item:nth-child(1) {
    --feat-accent-grad: linear-gradient(135deg, var(--acc-red), var(--acc-red-2));
    --feat-accent-bg: rgba(200,29,37,.05);
    --feat-accent-border: rgba(200,29,37,.25);
    --feat-icon-color: var(--acc-red);
    animation: fadeSlideUp .5s .10s ease both;
}

.wintap-feature-item:nth-child(2) {
    --feat-accent-grad: linear-gradient(135deg, var(--acc-amber), var(--acc-amber-2));
    --feat-accent-bg: rgba(212,134,10,.05);
    --feat-accent-border: rgba(212,134,10,.25);
    --feat-icon-color: var(--acc-amber);
    animation: fadeSlideUp .5s .17s ease both;
}

.wintap-feature-item:nth-child(3) {
    --feat-accent-grad: linear-gradient(135deg, var(--acc-blue-2), var(--acc-blue));
    --feat-accent-bg: rgba(11,57,84,.05);
    --feat-accent-border: rgba(11,57,84,.25);
    --feat-icon-color: var(--acc-blue);
    animation: fadeSlideUp .5s .24s ease both;
}

.wintap-feature-item:nth-child(4) {
    --feat-accent-grad: linear-gradient(135deg, var(--acc-teal), var(--acc-teal-2));
    --feat-accent-bg: rgba(8,126,139,.05);
    --feat-accent-border: rgba(8,126,139,.25);
    --feat-icon-color: var(--acc-teal);
    animation: fadeSlideUp .5s .31s ease both;
}

.wintap-feature-item:nth-child(5) {
    --feat-accent-grad: linear-gradient(135deg, var(--acc-purple), var(--acc-purple-2));
    --feat-accent-bg: rgba(123,82,171,.05);
    --feat-accent-border: rgba(123,82,171,.25);
    --feat-icon-color: var(--acc-purple);
    animation: fadeSlideUp .5s .38s ease both;
}

.wintap-feature-item:nth-child(6) {
    --feat-accent-grad: linear-gradient(135deg, var(--acc-green), var(--acc-green-2));
    --feat-accent-bg: rgba(26,140,91,.05);
    --feat-accent-border: rgba(26,140,91,.25);
    --feat-icon-color: var(--acc-green);
    animation: fadeSlideUp .5s .45s ease both;
}


/* ============================================================
   SERVICES INTRO DIVIDER  (بین اسلایدر اصلی و کارت‌های خدمات)
============================================================ */
.services-intro {
    width: 100%;
    padding: 52px 0 44px;
    box-sizing: border-box;
    direction: rtl;
}

.services-intro-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    gap: 40px;
}

/* خط راست */
.services-intro-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to left, transparent, rgba(11,57,84,.14));
    flex-shrink: 0;
}

/* کادر اصلی */
.services-intro-box {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 20px 32px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(11,57,84,.09);
    box-shadow: 0 4px 24px rgba(11,57,84,.06), inset 0 1px 0 rgba(255,255,255,.95);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

    /* نوار رنگی سمت راست کادر */
    .services-intro-box::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 3px;
        height: 100%;
        background: linear-gradient(180deg, #C81D25, rgba(200,29,37,.20));
        border-radius: 0 20px 20px 0;
    }

.services-intro-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(200,29,37,.07);
    border: 1px solid rgba(200,29,37,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .services-intro-icon svg {
        width: 20px;
        height: 20px;
        stroke: #C81D25;
        fill: none;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.services-intro-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.services-intro-title {
    font-size: 17px;
    font-weight: 800;
    color: #0B3954;
    line-height: 1.3;
    direction: rtl;
}

.services-intro-sub {
    font-size: 13px;
    font-weight: 400;
    color: #7a9aae;
    line-height: 1.6;
    direction: rtl;
}

/* خط چپ */
.services-intro-line.left {
    background: linear-gradient(to right, transparent, rgba(11,57,84,.14));
}


/* ============================================================
   2. CARDS SECTION
============================================================ */
.cards-section-wrap {
    width: 100%;
    background: #F3FAFF;
    padding: var(--section-pad-v) 0;
    box-sizing: border-box;
}

.cards-section-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 72px;
    box-sizing: border-box;
    position: relative;
}

#custom-cards-slider {
    overflow: hidden;
    width: 100%;
}

    #custom-cards-slider .swiper-wrapper {
        display: flex;
        align-items: stretch;
    }

    #custom-cards-slider .swiper-slide {
        flex-shrink: 0;
        height: 340px !important;
        box-sizing: border-box;
    }

.custom-card-item {
    width: 100%;
    height: 100%;
    background: var(--card-bg);
    border-radius: var(--card-radius);
    border-top-left-radius: 0;
    box-shadow: var(--card-shadow);
    border: var(--card-border);
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    overflow: hidden;
    transition: transform .4s var(--card-ease), box-shadow .4s ease, border-color .3s ease;
    position: relative;
    direction: rtl;
}

    .custom-card-item::before {
        content: none !important;
        display: none !important;
    }

    .custom-card-item::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--cc-accent, #C81D25);
        transform: scaleX(0);
        transform-origin: right;
        transition: transform .45s var(--card-ease);
    }

    .custom-card-item:hover {
        transform: translateY(-2px) scale(1.012);
        box-shadow: var(--card-shadow-hover);
        border-color: var(--cc-accent-border, rgba(200,29,37,.25));
    }

        .custom-card-item:hover::after {
            transform: scaleX(1);
        }

.custom-card-icon-wrap {
    width: 100%;
    height: 148px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cc-accent-bg, rgba(200,29,37,.05));
    border-bottom: 1px solid rgba(11,57,84,.07);
    box-sizing: border-box;
    padding: 14px;
    position: relative;
    overflow: hidden;
}

    .custom-card-icon-wrap::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 40%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent);
        transform: translateX(-100%) skewX(-15deg);
    }

.custom-card-item:hover .custom-card-icon-wrap::after {
    animation: shimmerSlide .7s ease forwards;
}

.custom-card-icon {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
    transition: transform .45s var(--card-ease);
}

.custom-card-item:hover .custom-card-icon {
    transform: scale(1.03) translateY(-2px);
}

.custom-card-meta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 16px 18px 8px;
    padding: 4px 12px;
    border-radius: 999px;
    background: var(--cc-badge-bg, rgba(200,29,37,.08));
    align-self: flex-start;
}

.custom-card-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cc-accent, #C81D25);
    flex-shrink: 0;
}

.custom-card-badge {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--cc-accent, #C81D25);
}

.custom-card-title {
    font-size: 15px;
    font-weight: 800;
    color: #0B3954;
    margin: 0 18px 6px;
    line-height: 1.4;
    text-align: right;
}

.custom-card-desc {
    font-size: 12px;
    color: #5a7a8e;
    line-height: 1.75;
    margin: 0 18px 16px;
    text-align: right;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Color variants */
.swiper-slide:nth-child(7n+1) .custom-card-item {
    --cc-accent: var(--acc-red);
    --cc-accent-grad: linear-gradient(90deg, var(--acc-red), var(--acc-red-2));
    --cc-accent-bg: rgba(200,29,37,.05);
    --cc-accent-border: rgba(200,29,37,.22);
    --cc-badge-bg: rgba(200,29,37,.09);
}

.swiper-slide:nth-child(7n+2) .custom-card-item {
    --cc-accent: var(--acc-blue-2);
    --cc-accent-grad: linear-gradient(90deg, var(--acc-blue-2), var(--acc-blue));
    --cc-accent-bg: rgba(11,57,84,.05);
    --cc-accent-border: rgba(11,57,84,.22);
    --cc-badge-bg: rgba(11,57,84,.09);
}

.swiper-slide:nth-child(7n+3) .custom-card-item {
    --cc-accent: var(--acc-amber);
    --cc-accent-grad: linear-gradient(90deg, var(--acc-amber), var(--acc-amber-2));
    --cc-accent-bg: rgba(212,134,10,.05);
    --cc-accent-border: rgba(212,134,10,.22);
    --cc-badge-bg: rgba(212,134,10,.09);
}

.swiper-slide:nth-child(7n+4) .custom-card-item {
    --cc-accent: var(--acc-teal);
    --cc-accent-grad: linear-gradient(90deg, var(--acc-teal), var(--acc-teal-2));
    --cc-accent-bg: rgba(8,126,139,.05);
    --cc-accent-border: rgba(8,126,139,.22);
    --cc-badge-bg: rgba(8,126,139,.09);
}

.swiper-slide:nth-child(7n+5) .custom-card-item {
    --cc-accent: var(--acc-purple);
    --cc-accent-grad: linear-gradient(90deg, var(--acc-purple), var(--acc-purple-2));
    --cc-accent-bg: rgba(123,82,171,.05);
    --cc-accent-border: rgba(123,82,171,.22);
    --cc-badge-bg: rgba(123,82,171,.09);
}

.swiper-slide:nth-child(7n+6) .custom-card-item {
    --cc-accent: var(--acc-green);
    --cc-accent-grad: linear-gradient(90deg, var(--acc-green), var(--acc-green-2));
    --cc-accent-bg: rgba(26,140,91,.05);
    --cc-accent-border: rgba(26,140,91,.22);
    --cc-badge-bg: rgba(26,140,91,.09);
}

.swiper-slide:nth-child(7n+7) .custom-card-item {
    --cc-accent: var(--acc-red);
    --cc-accent-grad: linear-gradient(90deg, var(--acc-red), var(--acc-red-2));
    --cc-accent-bg: rgba(200,29,37,.05);
    --cc-accent-border: rgba(200,29,37,.22);
    --cc-badge-bg: rgba(200,29,37,.09);
}

/* Navigation buttons */
.cards-btn-prev, .cards-btn-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 20;
    background-color: rgba(255,255,255,.92);
    background-size: 0 !important;
    border-radius: 50%;
    border: 1px solid rgba(11,57,84,.10);
    box-shadow: 0 4px 16px rgba(11,57,84,.14);
    transition: opacity .25s ease, transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s ease, background-color .25s ease;
}

.cards-btn-next {
    right: 14px;
}

.cards-btn-prev {
    left: 14px;
}

    .cards-btn-prev::after, .cards-btn-next::after {
        content: '';
        display: block;
        width: 9px;
        height: 9px;
        border-top: 2.5px solid #0B3954;
        border-right: 2.5px solid #0B3954;
        position: absolute;
        top: 50%;
        left: 50%;
        transition: border-color .2s ease;
    }

.cards-btn-next::after {
    transform: translate(-65%,-50%) rotate(45deg);
}

.cards-btn-prev::after {
    transform: translate(-35%,-50%) rotate(-135deg);
}

.cards-btn-prev:hover, .cards-btn-next:hover {
    transform: translateY(-50%) scale(1.10);
    background-color: #C81D25;
    box-shadow: 0 8px 24px rgba(200,29,37,.28);
    border-color: #C81D25;
}

    .cards-btn-prev:hover::after, .cards-btn-next:hover::after {
        border-color: #fff;
    }


/* ============================================================
   4. MODULES SECTION
============================================================ */
.modules-section {
    width: 100%;
    padding: var(--section-pad-v) 0;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    direction: rtl;
    background: linear-gradient(180deg, #0E2F44 0%, #0A2233 50%, #0E2F44 100%);
}

    .modules-section::before {
        content: '';
        position: absolute;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(200,29,37,.10) 0%, transparent 70%);
        top: -200px;
        left: -150px;
        pointer-events: none;
    }

    .modules-section::after {
        content: '';
        position: absolute;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(8,126,139,.12) 0%, transparent 70%);
        bottom: -100px;
        right: -80px;
        pointer-events: none;
    }

.modules-header {
    max-width: 1400px;
    margin: 0 auto 32px;
    padding: 0 72px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    direction: rtl;
}

.modules-title-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.modules-label {
    font-size: 11px;
    font-weight: 500;
    color: #6b8294;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .modules-label::before {
        content: '';
        display: inline-block;
        width: 24px;
        height: 2px;
        background: #C81D25;
        border-radius: 1px;
    }

.modules-main-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    letter-spacing: -.2px;
    line-height: 1.3;
}

    .modules-main-title span {
        color: inherit;
    }

.modules-nav {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
}

.mod-btn-prev, .mod-btn-next {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,.20);
    background: rgba(255,255,255,.07);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s cubic-bezier(.34,1.56,.64,1);
    backdrop-filter: blur(6px);
    position: relative;
    z-index: 10;
}

    .mod-btn-prev::after, .mod-btn-next::after {
        content: '';
        width: 9px;
        height: 9px;
        border-top: 2px solid rgba(255,255,255,.80);
        border-right: 2px solid rgba(255,255,255,.80);
        display: block;
        transition: border-color .2s ease;
    }

    .mod-btn-next::after {
        transform: rotate(45deg);
        margin-right: 2px;
    }

    .mod-btn-prev::after {
        transform: rotate(-135deg);
        margin-left: 2px;
    }

    .mod-btn-prev:hover, .mod-btn-next:hover {
        background: rgba(200,29,37,.70);
        border-color: #C81D25;
        transform: scale(1.12);
        box-shadow: 0 6px 20px rgba(200,29,37,.30);
    }

        .mod-btn-prev:hover::after, .mod-btn-next:hover::after {
            border-color: #fff;
        }

.modules-slider-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 72px;
    box-sizing: border-box;
    position: relative;
}

#modules-slider {
    overflow: hidden;
    width: 100%;
}

    #modules-slider .swiper-wrapper {
        display: flex;
        align-items: stretch;
    }

    #modules-slider .swiper-slide {
        flex-shrink: 0;
        height: auto;
        box-sizing: border-box;
    }

.mod-card {
    width: 100%;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 22px;
    padding: 24px 20px 22px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform .35s cubic-bezier(.34,1.56,.64,1), background .35s ease, border-color .35s ease, box-shadow .35s ease;
    height: 200px;
    min-height: 200px;
}

    .mod-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--mod-accent, #C81D25);
        border-radius: 22px 22px 0 0;
        opacity: 0;
        transform: scaleX(0);
        transform-origin: right;
        transition: opacity .3s ease, transform .4s cubic-bezier(.34,1.56,.64,1);
    }

    .mod-card::after {
        content: '';
        position: absolute;
        top: -60%;
        left: -30%;
        width: 80%;
        height: 80%;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
        pointer-events: none;
        opacity: 0;
        transition: opacity .4s ease;
    }

    .mod-card:hover {
        transform: translateY(-6px) scale(1.02);
        background: rgba(255,255,255,.11);
        border-color: var(--mod-accent, rgba(200,29,37,.50));
        box-shadow: 0 20px 40px rgba(0,0,0,.25);
    }

        .mod-card:hover::before {
            opacity: 1;
            transform: scaleX(1);
        }

        .mod-card:hover::after {
            opacity: 1;
        }

.mod-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--mod-accent-soft, rgba(200,29,37,.15));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform .35s cubic-bezier(.34,1.56,.64,1), background .3s ease;
    position: relative;
    z-index: 1;
}

    .mod-icon-wrap svg {
        width: 22px;
        height: 22px;
        fill: none;
        stroke: var(--mod-accent, #C81D25);
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
        transition: stroke .3s ease;
    }

.mod-card:hover .mod-icon-wrap {
    transform: scale(1.12) rotate(-5deg);
    background: var(--mod-accent, #C81D25);
}

    .mod-card:hover .mod-icon-wrap svg {
        stroke: #fff;
    }

.mod-content {
    position: relative;
    z-index: 1;
}

.mod-name {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 5px;
    line-height: 1.4;
    direction: rtl;
}

.mod-desc {
    font-size: 12px;
    color: rgba(255,255,255,.55);
    line-height: 1.7;
    direction: rtl;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 3.4em;
}

.mod-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    z-index: 1;
}

.mod-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--mod-accent, #C81D25);
    opacity: .5;
}

.mod-card:hover .mod-dot {
    animation: dotPulse .9s ease infinite;
    opacity: 1;
}

.mod-more {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--mod-accent, #C81D25);
    opacity: 0;
    transform: translateX(6px);
    direction: rtl;
    transition: opacity .3s ease, transform .3s ease;
}

.mod-card:hover .mod-more {
    opacity: 1;
    transform: translateX(0);
}

.mod-card.accent-red {
    --mod-accent: #C81D25;
    --mod-accent-soft: rgba(200,29,37,.14)
}

.mod-card.accent-teal {
    --mod-accent: #087E8B;
    --mod-accent-soft: rgba(8,126,139,.14)
}

.mod-card.accent-amber {
    --mod-accent: #D4860A;
    --mod-accent-soft: rgba(212,134,10,.14)
}

.mod-card.accent-blue {
    --mod-accent: #2980B9;
    --mod-accent-soft: rgba(41,128,185,.14)
}

.mod-card.accent-green {
    --mod-accent: #1A8C5B;
    --mod-accent-soft: rgba(26,140,91,.14)
}

.mod-card.accent-purple {
    --mod-accent: #7B52AB;
    --mod-accent-soft: rgba(123,82,171,.14)
}

.modules-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.mod-pag-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.25);
    cursor: pointer;
    transition: all .3s ease;
}

    .mod-pag-dot.active {
        width: 28px;
        border-radius: 4px;
        background: #C81D25;
    }


/* ============================================================
   5. MIDDLE TITLE
============================================================ */
.middle-title-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: var(--section-pad-v) 40px;
    box-sizing: border-box;
}

.middle-title-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to left, rgba(200,29,37,0), rgba(200,29,37,.22), rgba(200,29,37,0));
}

.middle-title-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 12px 28px;
    border-radius: 999px;
    background: rgba(255,255,255,.65);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(200,29,37,.10);
    box-shadow: 0 10px 30px rgba(200,29,37,.08);
    transition: transform .3s ease, box-shadow .3s ease;
}

    .middle-title-content:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 36px rgba(200,29,37,.14);
    }

.middle-title-text {
    color: #C81D25;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: .3px;
}

.middle-title-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
    opacity: .92;
    transition: transform .3s ease, opacity .3s ease;
}

.middle-title-content:hover .middle-title-icon {
    transform: scale(1.08);
    opacity: 1;
}


/* ============================================================
   7. CLIENTS SECTION
============================================================ */
.clients-section {
    width: 100%;
    padding: 0 0 var(--section-pad-v);
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.clients-wave svg {
    display: block;
    width: 100%;
}

.clients-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 72px;
    box-sizing: border-box;
    position: relative;
    z-index: 3;
}

.clients-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 36px;
    direction: rtl;
}

.clients-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    color: #C81D25;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
    padding: 6px 18px;
    border-radius: 999px;
    background: rgba(200,29,37,.07);
    border: 1px solid rgba(200,29,37,.16);
}

    .clients-eyebrow::before, .clients-eyebrow::after {
        content: '';
        display: inline-block;
        width: 20px;
        height: 1.5px;
        background: #C81D25;
        border-radius: 1px;
        opacity: .6;
    }

.clients-title {
    font-size: 38px;
    font-weight: 700;
    color: #0B3954;
    margin: 0 0 14px;
    direction: rtl;
    letter-spacing: -.2px;
    line-height: 1.3;
    position: relative;
}

    .clients-title span {
        color: inherit;
    }

    .clients-title::after {
        content: '';
        display: block;
        width: 40px;
        height: 2px;
        background: #C81D25;
        border-radius: 0;
        margin: 14px auto 0;
        opacity: .9;
    }

.clients-subtitle {
    font-size: 16px;
    color: #5a7a8e;
    margin: 0;
    direction: rtl;
    line-height: 1.8;
    max-width: 520px;
}

.clients-stats-row {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 36px;
    direction: rtl;
    flex-wrap: wrap;
}

.clients-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    animation: countUp .6s ease both;
}

    .clients-stat-item:nth-child(1) {
        animation-delay: .1s
    }

    .clients-stat-item:nth-child(2) {
        animation-delay: .2s
    }

    .clients-stat-item:nth-child(3) {
        animation-delay: .3s
    }

    .clients-stat-item:nth-child(4) {
        animation-delay: .4s
    }

.clients-stat-number {
    font-size: 44px;
    font-weight: 900;
    color: #0B3954;
    line-height: 1;
    letter-spacing: -1px;
    position: relative;
}

    .clients-stat-number sup {
        font-size: 20px;
        font-weight: 700;
        color: #C81D25;
        vertical-align: super;
        margin-right: 2px;
    }

.clients-stat-label {
    font-size: 12px;
    font-weight: 600;
    color: #7a9aae;
    letter-spacing: .5px;
    direction: rtl;
}

.clients-stat-divider {
    width: 1px;
    height: 44px;
    background: linear-gradient(180deg, transparent, rgba(11,57,84,.20), transparent);
    align-self: center;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
    direction: rtl;
}

.client-card {
    background: var(--card-bg);
    border-radius: var(--card-radius);
    border-top-right-radius: 0;
    border: var(--card-border);
    padding: 0;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform .4s var(--card-ease), box-shadow .4s ease, border-color .3s ease;
    position: relative;
    animation: clientCardIn .6s ease both;
}

    .client-card:nth-child(1) {
        animation-delay: .10s
    }

    .client-card:nth-child(2) {
        animation-delay: .20s
    }

    .client-card:nth-child(3) {
        animation-delay: .30s
    }

    .client-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--client-accent, linear-gradient(90deg, #C81D25, #0B3954));
        z-index: 2;
    }

    .client-card:hover {
        transform: translateY(-8px) scale(1.012);
        box-shadow: var(--card-shadow-hover);
        border-color: var(--client-border-hover, rgba(200,29,37,.22));
    }

.client-card-logo-area {
    height: 168px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--client-bg, #F7FAFC);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(11,57,84,.07);
}

    .client-card-logo-area::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 40%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent);
        transform: translateX(-100%) skewX(-15deg);
    }

.client-card:hover .client-card-logo-area::after {
    animation: shimmerSlide .7s ease forwards;
}

.client-card-logo-placeholder {
    position: relative;
    width: 130px;
    height: 74px;
    border-radius: 14px;
    background: var(--icon-glass-bg);
    backdrop-filter: blur(12px) saturate(140%);
    -webkit-backdrop-filter: blur(12px) saturate(140%);
    border: var(--icon-glass-border);
    box-shadow: var(--icon-glass-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform .4s var(--card-ease), box-shadow .3s ease;
}

    .client-card-logo-placeholder::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 50%;
        background: linear-gradient(180deg, rgba(255,255,255,.45), transparent);
        pointer-events: none;
    }

.client-card:hover .client-card-logo-placeholder {
    transform: scale(1.05);
    box-shadow: var(--icon-glass-shadow-hover);
}

.client-card-logo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.client-card-body {
    padding: 20px 24px 24px;
    direction: rtl;
    position: relative;
}

.client-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--client-badge-color, #C81D25);
    background: var(--client-badge-bg, rgba(200,29,37,.08));
    border-radius: 999px;
    padding: 5px 12px;
    margin-bottom: 12px;
}

    .client-card-badge::before {
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--client-badge-color, #C81D25);
    }

.client-card-name {
    font-size: 20px;
    font-weight: 800;
    color: #0B3954;
    margin: 0 0 7px;
    direction: rtl;
    line-height: 1.3;
}

.client-card-desc {
    font-size: 13.5px;
    color: #5a7a8e;
    line-height: 1.75;
    margin: 0 0 16px;
    direction: rtl;
}

.client-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid rgba(11,57,84,.08);
    direction: rtl;
}

.client-card-industry {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: #5a7a8e;
    font-weight: 600;
}

    .client-card-industry svg {
        width: 15px;
        height: 15px;
        stroke: #5a7a8e;
        fill: none;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
        flex-shrink: 0;
    }

.client-card-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(11,57,84,.06);
    border: 1px solid rgba(11,57,84,.10);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s ease, border-color .3s ease, transform .3s var(--card-ease);
}

    .client-card-arrow svg {
        width: 16px;
        height: 16px;
        stroke: #0B3954;
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
        transition: stroke .3s ease;
    }

.client-card:hover .client-card-arrow {
    background: var(--client-badge-color, #C81D25);
    border-color: var(--client-badge-color, #C81D25);
    transform: translateX(-4px) scale(1.08);
}

    .client-card:hover .client-card-arrow svg {
        stroke: #fff;
    }

.client-card.client-red {
    --client-accent: linear-gradient(90deg, var(--acc-red) 0%, var(--acc-red-2) 100%);
    --client-bg: #FEF5F5;
    --client-badge-color: var(--acc-red);
    --client-badge-bg: rgba(200,29,37,.08);
    --client-border-hover: rgba(200,29,37,.22);
}

.client-card.client-blue {
    --client-accent: linear-gradient(90deg, var(--acc-blue-2) 0%, var(--acc-blue) 100%);
    --client-bg: #F0F7FD;
    --client-badge-color: var(--acc-blue);
    --client-badge-bg: rgba(26,108,160,.08);
    --client-border-hover: rgba(26,108,160,.22);
}

.client-card.client-teal {
    --client-accent: linear-gradient(90deg, var(--acc-teal) 0%, var(--acc-teal-2) 100%);
    --client-bg: #F0F9FA;
    --client-badge-color: var(--acc-teal);
    --client-badge-bg: rgba(8,126,139,.08);
    --client-border-hover: rgba(8,126,139,.22);
}

.clients-trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-top: 36px;
    padding: 20px 36px;
    background: rgba(11,57,84,.04);
    border-radius: 20px;
    border: 1px solid rgba(11,57,84,.08);
    direction: rtl;
    flex-wrap: wrap;
}

.clients-trust-item {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13.5px;
    font-weight: 600;
    color: #4a6a7e;
    direction: rtl;
}

    .clients-trust-item svg {
        width: 18px;
        height: 18px;
        stroke: #C81D25;
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
        flex-shrink: 0;
    }

.clients-trust-sep {
    width: 1px;
    height: 22px;
    background: rgba(11,57,84,.14);
    flex-shrink: 0;
}


/* ============================================================
   8. HERO SPLIT
============================================================ */
.hero-split {
    min-height: 800px;
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-areas: "media content";
    background: #F3FAFF;
    overflow: hidden;
    position: relative;
    margin-top: var(--section-gap);
    margin-bottom: var(--section-gap);
}

    .hero-split.reverse {
        grid-template-areas: "content media";
    }

    .hero-split::after {
        content: '';
        position: absolute;
        top: 10%;
        bottom: 10%;
        left: 50%;
        width: 1px;
        background: rgba(0,0,0,.08);
        z-index: 2;
    }

.hero-split__media {
    grid-area: media;
    width: 100%;
    height: 100%;
    overflow: hidden;
    animation: fadeLeft .9s ease forwards;
}

.hero-split.reverse .hero-split__media {
    animation: fadeRight .9s ease forwards;
}

.hero-split__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-split__content {
    grid-area: content;
    padding: 80px 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: right;
    animation: fadeRight .9s ease forwards;
}

.hero-split.reverse .hero-split__content {
    animation: fadeLeft .9s ease forwards;
}

.hero-tag {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--acc-red);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .5px;
    padding: 5px 14px;
    border-radius: 999px;
    background: rgba(200,29,37,.07);
    border: 1px solid rgba(200,29,37,.15);
    align-self: flex-start;
}

.hero-split__content h2 {
    font-size: 52px;
    line-height: 1.4;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 20px;
}

.hero-split__content p {
    font-size: 17px;
    line-height: 2;
    color: #6b7280;
    max-width: 560px;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary {
    position: relative;
    padding: 14px 32px;
    border-radius: 12px;
    background: var(--acc-red);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

    .btn-primary:hover {
        color: #fff;
        transform: translateY(-4px);
        box-shadow: 0 18px 40px rgba(200,29,37,.35);
    }

    .btn-primary:active {
        transform: translateY(-1px) scale(.98);
    }

    .btn-primary::before {
        content: '';
        position: absolute;
        top: 0;
        left: -120%;
        width: 80px;
        height: 100%;
        background: rgba(255,255,255,.25);
        transform: skewX(-25deg);
        transition: .7s;
    }

    .btn-primary:hover::before {
        left: 140%;
    }

.btn-outline {
    padding: 14px 32px;
    border-radius: 12px;
    border: 1px solid #d1d5db;
    background: #fff;
    color: #111827;
    text-decoration: none;
    font-size: 15px;
    transition: all .25s ease;
}

    .btn-outline:hover {
        transform: translateY(-4px);
        border-color: var(--acc-red);
        color: var(--acc-red);
        box-shadow: 0 12px 30px rgba(0,0,0,.08);
    }

    .btn-outline:active {
        transform: translateY(-1px) scale(.98);
    }


/* ============================================================
   9. CONTACT SECTION
============================================================ */
.contact-section {
    width: 100%;
    padding: var(--section-pad-v) 0;
    background: #F3FAFF;
    position: relative;
    overflow: hidden;
}

.contact-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 72px;
    box-sizing: border-box;
}

.contact-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 48px;
    direction: rtl;
}

.contact-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    color: #C81D25;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
    padding: 6px 18px;
    border-radius: 999px;
    background: rgba(200,29,37,.07);
    border: 1px solid rgba(200,29,37,.16);
}

    .contact-eyebrow::before, .contact-eyebrow::after {
        content: '';
        width: 20px;
        height: 1.5px;
        background: #C81D25;
        border-radius: 1px;
        opacity: .6;
    }

.contact-title {
    font-size: 38px;
    font-weight: 700;
    color: #0B3954;
    margin: 0 0 14px;
    letter-spacing: -.2px;
    line-height: 1.3;
}

    .contact-title span {
        color: inherit;
    }

    .contact-title::after {
        content: '';
        display: block;
        width: 40px;
        height: 2px;
        background: #C81D25;
        border-radius: 0;
        margin: 14px auto 0;
        opacity: .9;
    }

.contact-subtitle {
    font-size: 16px;
    color: #5a7a8e;
    margin: 0;
    line-height: 1.8;
    max-width: 560px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
    direction: rtl;
}

.contact-card {
    background: #fff;
    border-radius: 28px;
    border-bottom-left-radius: 0;
    border: 1px solid rgba(11,57,84,.10);
    padding: 28px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(11,57,84,.08), 0 2px 8px rgba(11,57,84,.05), inset 0 1px 0 rgba(255,255,255,.90);
    transition: transform .4s cubic-bezier(.34,1.56,.64,1), box-shadow .4s ease;
    display: flex;
    flex-direction: column;
    animation: contactCardIn .6s ease both;
}

    .contact-card:nth-child(1) {
        animation-delay: .10s
    }

    .contact-card:nth-child(2) {
        animation-delay: .20s
    }

    .contact-card:nth-child(3) {
        animation-delay: .30s
    }

    .contact-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--contact-accent, linear-gradient(90deg, #C81D25, #0B3954));
    }

    .contact-card:hover {
        transform: translateY(-8px) scale(1.012);
        box-shadow: 0 24px 48px rgba(11,57,84,.14), 0 6px 16px rgba(11,57,84,.08), inset 0 1px 0 rgba(255,255,255,.95);
    }

.contact-card-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 22px;
}

.contact-icon-tile {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: var(--icon-glass-bg), var(--contact-icon-tint, rgba(11,57,84,.06));
    backdrop-filter: blur(12px) saturate(140%);
    -webkit-backdrop-filter: blur(12px) saturate(140%);
    border: var(--icon-glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--icon-glass-shadow);
    transition: transform .4s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease;
    overflow: hidden;
}

    .contact-icon-tile::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 50%;
        background: linear-gradient(180deg, rgba(255,255,255,.45), transparent);
        border-radius: 18px 18px 0 0;
        pointer-events: none;
    }

.contact-card:hover .contact-icon-tile {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--icon-glass-shadow-hover);
}

.contact-icon-tile i {
    font-size: 26px;
    color: var(--contact-icon-color, #0B3954);
    opacity: .9;
    position: relative;
    z-index: 1;
}

.contact-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--contact-badge-color, #C81D25);
    background: var(--contact-badge-bg, rgba(200,29,37,.08));
    border-radius: 999px;
    padding: 5px 12px;
}

    .contact-card-badge::before {
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--contact-badge-color, #C81D25);
    }

.contact-card-body {
    position: relative;
    z-index: 1;
    flex: 1;
    margin-bottom: 20px;
}

.contact-card-name {
    font-size: 20px;
    font-weight: 800;
    color: #0B3954;
    margin: 0 0 8px;
    line-height: 1.3;
}

.contact-card-desc {
    font-size: 13.5px;
    color: #5a7a8e;
    line-height: 1.85;
    margin: 0;
}

.contact-card-footer {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid rgba(11,57,84,.08);
    text-decoration: none;
    cursor: pointer;
}

.contact-card-action {
    font-size: 13.5px;
    font-weight: 700;
    color: #0B3954;
    transition: color .3s ease;
}

.contact-card-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(11,57,84,.06);
    border: 1px solid rgba(11,57,84,.10);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s ease, border-color .3s ease, transform .3s cubic-bezier(.34,1.56,.64,1);
}

    .contact-card-arrow svg {
        width: 16px;
        height: 16px;
        stroke: #0B3954;
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
        transition: stroke .3s ease;
    }

.contact-card:hover .contact-card-arrow {
    background: var(--contact-badge-color, #C81D25);
    border-color: var(--contact-badge-color, #C81D25);
    transform: translateX(-4px) scale(1.08);
}

    .contact-card:hover .contact-card-arrow svg {
        stroke: #fff;
    }

.contact-card:hover .contact-card-action {
    color: var(--contact-badge-color, #C81D25);
}

.contact-card.contact-red {
    --contact-accent: linear-gradient(90deg, #C81D25 0%, #9B1219 100%);
    --contact-badge-color: #C81D25;
    --contact-badge-bg: rgba(200,29,37,.08);
    --contact-icon-color: #C81D25;
    --contact-icon-tint: rgba(200,29,37,.06);
}

.contact-card.contact-blue {
    --contact-accent: linear-gradient(90deg, #0B3954 0%, #1A6CA0 100%);
    --contact-badge-color: #1A6CA0;
    --contact-badge-bg: rgba(26,108,160,.08);
    --contact-icon-color: #1A6CA0;
    --contact-icon-tint: rgba(26,108,160,.06);
}

.contact-card.contact-teal {
    --contact-accent: linear-gradient(90deg, #087E8B 0%, #065E69 100%);
    --contact-badge-color: #087E8B;
    --contact-badge-bg: rgba(8,126,139,.08);
    --contact-icon-color: #087E8B;
    --contact-icon-tint: rgba(8,126,139,.06);
}


/* ============================================================
   RESPONSIVE — max 991px
============================================================ */
@media (max-width:991px) {
    :root {
        --section-gap: 56px;
        --section-pad-v: 52px;
    }

    .wintap-header-inner {
        padding: 0 24px;
    }

    .wintap-main-title {
        font-size: 26px;
        margin-bottom: 24px;
    }

    .wintap-features-grid {
        grid-template-columns: repeat(2,1fr);
        gap: 12px;
        max-width: 100%;
    }

    .wintap-feature-item {
        height: 108px;
    }

    .cards-section-inner {
        padding: 0 56px;
    }

    #custom-cards-slider .swiper-slide {
        height: 310px !important;
    }

    .custom-card-icon-wrap {
        height: 138px;
    }

    .services-intro {
        padding: 36px 0 30px;
    }

    .services-intro-inner {
        padding: 0 24px;
        gap: 20px;
    }

    .services-intro-box {
        padding: 16px 22px;
        gap: 18px;
    }

    .services-intro-title {
        font-size: 15px;
    }

    .modules-header {
        padding: 0 32px;
        margin-bottom: 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .modules-slider-wrap {
        padding: 0 32px;
    }

    .modules-main-title {
        font-size: 26px;
    }

    .mod-card {
        height: auto;
        min-height: 185px;
    }

    .clients-inner {
        padding: 0 32px;
    }

    .clients-grid {
        grid-template-columns: repeat(2,1fr);
        gap: 18px;
    }

    .clients-title {
        font-size: 30px;
    }

    .clients-header {
        margin-bottom: 28px;
    }

    .clients-trust-bar {
        gap: 18px;
    }

    .hero-split,
    .hero-split.reverse {
        grid-template-columns: 1fr;
        grid-template-areas: "media" "content";
        min-height: auto;
    }

        .hero-split::after {
            display: none;
        }

        .hero-split__media,
        .hero-split.reverse .hero-split__media {
            height: 420px;
            animation: fadeIn .9s ease forwards;
        }

        .hero-split__content,
        .hero-split.reverse .hero-split__content {
            padding: 52px 32px;
            text-align: center;
            align-items: center;
            animation: fadeIn .9s ease forwards;
        }

            .hero-split__content h2 {
                font-size: 36px;
            }

            .hero-split__content p {
                max-width: 100%;
            }

    .hero-actions {
        justify-content: center;
    }

    .hero-tag {
        align-self: center;
    }

    .contact-inner {
        padding: 0 32px;
    }

    .contact-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .contact-title {
        font-size: 30px;
    }
}

/* ============================================================
   RESPONSIVE — max 767px
============================================================ */
@media (max-width:767px) {
    :root {
        --section-gap: 40px;
        --section-pad-v: 40px;
    }

    .wintap-header-inner {
        padding: 0 16px;
    }

    .wintap-main-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .wintap-features-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 20px;
    }

    .wintap-feature-item {
        height: 90px;
        padding: 0 14px;
        gap: 12px;
    }

    .wintap-feat-icon-wrap {
        width: 44px;
        height: 44px;
    }

    .services-intro {
        padding: 28px 0 24px;
    }

    .services-intro-inner {
        padding: 0 16px;
        gap: 12px;
    }

    .services-intro-line {
        display: none;
    }

    .services-intro-box {
        padding: 14px 18px;
        gap: 14px;
        width: 100%;
        border-radius: 16px;
    }

    .services-intro-title {
        font-size: 14px;
    }

    .services-intro-sub {
        font-size: 12px;
    }

    .services-intro-icon {
        width: 38px;
        height: 38px;
    }

    .cards-section-inner {
        padding: 0 44px;
    }

    #custom-cards-slider .swiper-slide {
        height: auto !important;
        min-height: 260px;
    }

    .custom-card-icon-wrap {
        height: 130px;
    }

    .cards-btn-next {
        right: 4px;
    }

    .cards-btn-prev {
        left: 4px;
    }

    .modules-header {
        padding: 0 16px;
        margin-bottom: 16px;
    }

    .modules-slider-wrap {
        padding: 0 16px;
    }

    .modules-main-title {
        font-size: 20px;
    }

    .mod-card {
        height: auto;
        min-height: 170px;
        padding: 18px 14px 16px;
    }

    .modules-pagination {
        margin-top: 20px;
    }

    .clients-inner {
        padding: 0 16px;
    }

    .clients-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .clients-header {
        margin-bottom: 24px;
    }

    .clients-title {
        font-size: 24px;
    }

    .clients-subtitle {
        font-size: 14px;
    }

    .clients-stat-divider {
        display: none;
    }

    .clients-stats-row {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 28px;
    }

    .clients-stat-number {
        font-size: 32px;
    }

    .clients-trust-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 16px;
    }

    .clients-trust-sep {
        display: none;
    }

    .hero-split__content h2 {
        font-size: 28px;
        line-height: 1.5;
    }

    .hero-split__content p {
        font-size: 15px;
    }

    .btn-primary, .btn-outline {
        width: 100%;
        text-align: center;
    }

    .hero-actions {
        width: 100%;
        flex-direction: column;
    }

    .contact-inner {
        padding: 0 16px;
    }

    .contact-title {
        font-size: 26px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .contact-card {
        padding: 22px;
    }
}

/* Fix: small / medium desktop (992px – 1280px) */
@media (min-width: 992px) and (max-width: 1280px) {
    #custom-cards-slider .swiper-slide {
        height: auto !important;
        min-height: 340px;
        display: flex;
    }

    .custom-card-item {
        height: auto;
        min-height: 340px;
    }

    .custom-card-icon-wrap {
        height: 130px;
    }

    .custom-card-title {
        font-size: 14.5px;
        margin: 0 14px 6px;
        line-height: 1.5;
    }

    .custom-card-desc {
        font-size: 11.5px;
        margin: 0 14px 14px;
        -webkit-line-clamp: unset;
        display: block;
        overflow: visible;
    }

    .custom-card-meta {
        margin: 14px 14px 6px;
    }
}
/* ============================================================
   SERVICES INTRO DIVIDER
============================================================ */
.services-intro {
    width: 100%;
    padding: 56px 0 8px;
    box-sizing: border-box;
    direction: rtl;
    text-align: center;
}

.services-intro-inner {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.services-intro-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    color: #C81D25;
    margin-bottom: 16px;
}

    .services-intro-eyebrow::before,
    .services-intro-eyebrow::after {
        content: '';
        display: inline-block;
        width: 24px;
        height: 1px;
        background: rgba(200,29,37,.35);
    }

.services-intro-heading {
    font-size: 34px;
    font-weight: 800;
    color: #0B3954;
    margin: 0 0 14px;
    line-height: 1.45;
    letter-spacing: -.3px;
    direction: rtl;
}

.services-intro-sub {
    font-size: 15px;
    font-weight: 400;
    color: #7a9aae;
    line-height: 1.8;
    margin: 0;
    direction: rtl;
    max-width: 520px;
}

/* ── Responsive ── */
@media (max-width: 767px) {
    .services-intro {
        padding: 40px 0 32px;
    }

    .services-intro-heading {
        font-size: 24px;
    }

    .services-intro-sub {
        font-size: 14px;
    }
}