/* ============================================================
   GLOBAL HOMEPAGE OVERRIDES
============================================================ */
body { overflow-x: hidden; }

/* Override base h2 animation for immediate hero visibility */
.hero-title-main h2 {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.9s cubic-bezier(.16,1,.3,1), transform 0.9s cubic-bezier(.16,1,.3,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.9s cubic-bezier(.16,1,.3,1), transform 0.9s cubic-bezier(.16,1,.3,1);
}
.reveal-left.is-visible { opacity: 1; transform: translateX(0); }

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.9s cubic-bezier(.16,1,.3,1), transform 0.9s cubic-bezier(.16,1,.3,1);
}
.reveal-right.is-visible { opacity: 1; transform: translateX(0); }

.d1 { transition-delay: 0.05s !important; }
.d2 { transition-delay: 0.15s !important; }
.d3 { transition-delay: 0.25s !important; }
.d4 { transition-delay: 0.35s !important; }
.d5 { transition-delay: 0.45s !important; }
.d6 { transition-delay: 0.55s !important; }

/* ============================================================
   1. HERO SECTION
============================================================ */
#hero {
    position: relative;
    min-height: 100vh;
    background: #050b1a;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
}

/* Animated grid background */
#hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,105,188,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,105,188,0.06) 1px, transparent 1px);
    background-size: 64px 64px;
    z-index: 0;
}

/* Gradient blobs */
.h-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
}
.h-blob-1 {
    width: 650px; height: 650px;
    background: radial-gradient(circle, rgba(0,105,188,0.22) 0%, transparent 70%);
    top: -150px; right: -100px;
    animation: blobMove1 12s ease-in-out infinite;
}
.h-blob-2 {
    width: 450px; height: 450px;
    background: radial-gradient(circle, rgba(84,194,186,0.15) 0%, transparent 70%);
    bottom: -80px; left: 5%;
    animation: blobMove2 10s ease-in-out infinite;
}
.h-blob-3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(0,105,188,0.1) 0%, transparent 70%);
    top: 45%; left: 35%;
    animation: blobMove1 15s ease-in-out infinite reverse;
}
@keyframes blobMove1 {
    0%,100% { transform: translate(0,0) scale(1); }
    33%  { transform: translate(40px,-30px) scale(1.08); }
    66%  { transform: translate(-20px,40px) scale(0.93); }
}
@keyframes blobMove2 {
    0%,100% { transform: translate(0,0) scale(1); }
    50%      { transform: translate(30px,-20px) scale(1.1); }
}

/* Particle canvas */
#hero-canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding: 60px 0 80px;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(84,194,186,0.1);
    border: 1px solid rgba(84,194,186,0.25);
    border-radius: 100px;
    padding: 8px 20px;
    color: #54C2BA;
    font-size: 13px;
    font-family: Yekan-Bakh-Bold;
    margin-bottom: 28px;
    animation: fadeDown 0.7s ease both;
}
@keyframes fadeDown {
    from { opacity:0; transform:translateY(-15px); }
    to   { opacity:1; transform:translateY(0); }
}
.hero-badge .live-dot {
    width: 8px; height: 8px;
    background: #54C2BA;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(84,194,186,0.4);
    animation: livePulse 2s infinite;
}
@keyframes livePulse {
    0%  { box-shadow: 0 0 0 0 rgba(84,194,186,0.5); }
    70% { box-shadow: 0 0 0 10px rgba(84,194,186,0); }
    100%{ box-shadow: 0 0 0 0 rgba(84,194,186,0); }
}

/* Hero headline */
.hero-headline {
    font-family: Yekan-Bakh-Bold;
    font-size: clamp(34px, 4.5vw, 70px);
    color: #fff;
    line-height: 1.25;
    margin-bottom: 12px;
    animation: fadeUp 0.8s 0.1s ease both;
}
@keyframes fadeUp {
    from { opacity:0; transform:translateY(25px); }
    to   { opacity:1; transform:translateY(0); }
}
.hero-headline .gradient-text {
    background: linear-gradient(135deg, #0069BC 0%, #54C2BA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-headline .underline-anim {
    position: relative;
    display: inline-block;
    color: #fff;
}
.hero-headline .underline-anim::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #54C2BA, #0069BC);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: right;
    animation: underlineGrow 1s 0.9s cubic-bezier(.16,1,.3,1) forwards;
}
@keyframes underlineGrow {
    to { transform: scaleX(1); }
}

/* Typewriter line */
.hero-typewriter {
    font-size: clamp(16px, 2vw, 22px);
    color: rgba(255,255,255,0.55);
    min-height: 32px;
    margin-bottom: 32px;
    animation: fadeUp 0.8s 0.3s ease both;
}
.typewriter-cursor {
    display: inline-block;
    width: 2px;
    height: 1.1em;
    background: #54C2BA;
    vertical-align: middle;
    margin-right: 4px;
    animation: cursorBlink 1s infinite;
}
@keyframes cursorBlink { 0%,100%{opacity:1} 50%{opacity:0} }

/* Hero description */
.hero-desc {
    color: rgba(255,255,255,0.6);
    font-size: 16px;
    line-height: 1.9;
    max-width: 500px;
    margin-bottom: 44px;
    animation: fadeUp 0.8s 0.4s ease both;
}

/* Hero buttons */
.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp 0.8s 0.5s ease both;
}
.btn-glow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #0069BC 0%, #0050a0 100%);
    color: #fff !important;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-family: Yekan-Bakh-Bold;
    border: none;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(0,105,188,0.45), 0 0 0 0 rgba(0,105,188,0.3);
    transition: all 0.3s ease;
    animation: glowPulse 3s 1.5s infinite;
}
@keyframes glowPulse {
    0%,100% { box-shadow: 0 8px 30px rgba(0,105,188,0.45), 0 0 0 0 rgba(0,105,188,0.3); }
    50%      { box-shadow: 0 8px 40px rgba(0,105,188,0.6), 0 0 0 14px rgba(0,105,188,0); }
}
.btn-glow:hover { transform: translateY(-3px); color: #fff !important; }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.85) !important;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-family: Yekan-Bakh-Bold;
    border: 1px solid rgba(255,255,255,0.18);
    text-decoration: none;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-3px);
    color: #fff !important;
}

/* Hero trust */
.hero-trust {
    margin-top: 52px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeUp 0.8s 0.65s ease both;
}
.hero-trust-text {
    color: rgba(255,255,255,0.4);
    font-size: 13px;
    white-space: nowrap;
}
.hero-trust-logos {
    display: flex;
    gap: 14px;
    align-items: center;
}
.hero-trust-logo {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
}
.hero-trust-logo img { width: 28px; height: 28px; object-fit: contain; filter: brightness(2) grayscale(1); }

/* Hero visual - marketing dashboard */
.hero-visual-wrap {
    position: relative;
    animation: fadeUp 0.9s 0.2s ease both;
}
.hero-dash {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 28px;
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
    box-shadow: 0 40px 80px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.1);
}
.dash-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}
.dash-dots { display: flex; gap: 6px; }
.dash-dots span {
    width: 10px; height: 10px;
    border-radius: 50%;
}
.dash-dots span:nth-child(1) { background: #ff5f57; }
.dash-dots span:nth-child(2) { background: #febc2e; }
.dash-dots span:nth-child(3) { background: #28c840; }
.dash-label {
    color: rgba(255,255,255,0.4);
    font-size: 12px;
}
.dash-chart-area {
    height: 130px;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    margin-bottom: 20px;
    padding: 0 4px;
}
.dash-bar-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    height: 100%;
    justify-content: flex-end;
}
.dash-bar-col span {
    color: rgba(255,255,255,0.3);
    font-size: 10px;
}
.dash-bar {
    width: 100%;
    border-radius: 6px 6px 0 0;
    background: rgba(0,105,188,0.3);
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
    animation: barGrow 1.2s cubic-bezier(.16,1,.3,1) both;
}
.dash-bar.peak { background: linear-gradient(to top, #0069BC, #54C2BA); }
.dash-bar::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255,255,255,0.1), transparent);
}
@keyframes barGrow {
    from { transform: scaleY(0); transform-origin: bottom; }
    to   { transform: scaleY(1); transform-origin: bottom; }
}
.dash-bar:nth-child(1) { animation-delay: 0.1s; }
.dash-bar:nth-child(2) { animation-delay: 0.2s; }
.dash-bar:nth-child(3) { animation-delay: 0.3s; }
.dash-bar:nth-child(4) { animation-delay: 0.4s; }
.dash-bar:nth-child(5) { animation-delay: 0.5s; }
.dash-bar:nth-child(6) { animation-delay: 0.6s; }

.dash-metrics-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.dash-metric-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 14px;
}
.dash-metric-card .m-label {
    color: rgba(255,255,255,0.45);
    font-size: 11px;
    margin-bottom: 6px;
}
.dash-metric-card .m-val {
    font-family: Yekan-Bakh-Bold;
    font-size: 22px;
    color: #fff;
}
.dash-metric-card .m-change {
    font-size: 11px;
    color: #54C2BA;
    margin-top: 2px;
}

/* Floating badges */
.float-badge {
    position: absolute;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
    animation: floatBadge 4s ease-in-out infinite;
}
.float-badge:nth-child(2) { animation-delay: -2s; }
.float-badge.fb-1 { top: -20px; left: -20px; }
.float-badge.fb-2 { bottom: 30px; right: -25px; animation-delay: -1.5s; }
@keyframes floatBadge {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}
.fb-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
}
.fb-icon.blue  { background: rgba(0,105,188,0.1); color: #0069BC; }
.fb-icon.teal  { background: rgba(84,194,186,0.1); color: #54C2BA; }
.fb-num { font-family: Yekan-Bakh-Bold; font-size: 17px; color: #0a0f1e; }
.fb-txt { font-size: 11px; color: #777; }

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 3;
    animation: scrollAnim 2.5s ease-in-out infinite;
}
.scroll-indicator span { font-size: 11px; color: rgba(255,255,255,0.3); }
.scroll-mouse {
    width: 22px; height: 36px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 11px;
    display: flex; justify-content: center; padding-top: 6px;
}
.scroll-wheel {
    width: 3px; height: 8px;
    background: rgba(255,255,255,0.4);
    border-radius: 2px;
    animation: scrollWheel 2s ease infinite;
}
@keyframes scrollWheel {
    0%   { opacity:1; transform:translateY(0); }
    100% { opacity:0; transform:translateY(10px); }
}
@keyframes scrollAnim {
    0%,100% { transform:translateX(-50%) translateY(0); }
    50%     { transform:translateX(-50%) translateY(6px); }
}

/* ============================================================
   2. MARQUEE TICKER
============================================================ */
#ticker {
    background: linear-gradient(90deg, #0069BC 0%, #0050a0 100%);
    padding: 14px 0;
    overflow: hidden;
    position: relative;
}
/* فید در کنارها */
#ticker::before,
#ticker::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
#ticker::before {
    right: 0;
    background: linear-gradient(to left, #0050a0, transparent);
}
#ticker::after {
    left: 0;
    background: linear-gradient(to right, #0069BC, transparent);
}
/* owl overrides برای ticker */
#ticker .owl-stage-outer { overflow: hidden; }
#ticker .owl-item { display: flex; align-items: center; justify-content: center; }
.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 0 32px;
    color: rgba(255,255,255,0.92);
    font-size: 14px;
    font-family: Yekan-Bakh-Bold;
    white-space: nowrap;
}
.ticker-dot {
    width: 5px; height: 5px;
    background: #54C2BA;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ============================================================
   3. SERVICES SECTION
============================================================ */
#services {
    padding: 110px 0;
    background: #fff;
}
.svc-card {
    background: #fff;
    border: 1px solid rgba(0,105,188,0.1);
    border-radius: 24px;
    padding: 36px 28px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    cursor: default;
}
.svc-card::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, #0069BC, #54C2BA);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(.16,1,.3,1);
}
.svc-card:hover::after { transform: scaleX(1); }
.svc-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 64px rgba(0,105,188,0.13);
    border-color: rgba(0,105,188,0.2);
}
.svc-num {
    font-size: 48px;
    font-family: Yekan-Bakh-Bold;
    color: rgba(0,105,188,0.07);
    line-height: 1;
    margin-bottom: 16px;
    position: absolute;
    top: 16px;
    left: 24px;
}
.svc-icon {
    width: 60px; height: 60px;
    background: rgba(0,105,188,0.07);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    transition: background 0.4s ease;
    position: relative;
    z-index: 1;
}
.svc-card:hover .svc-icon { background: #0069BC; }
.svc-icon i {
    font-size: 26px;
    color: #0069BC;
    transition: color 0.4s ease;
}
.svc-card:hover .svc-icon i { color: #fff; }
.svc-title {
    font-family: Yekan-Bakh-Bold;
    font-size: 17px;
    color: #0a0f1e;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}
.svc-text {
    color: #777;
    font-size: 14px;
    line-height: 1.85;
    margin: 0;
    position: relative;
    z-index: 1;
}
.svc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #0069BC;
    font-size: 13px;
    font-family: Yekan-Bakh-Bold;
    margin-top: 20px;
    text-decoration: none;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    position: relative;
    z-index: 1;
}
.svc-card:hover .svc-link { opacity: 1; transform: translateY(0); }
.svc-link:hover { color: #0069BC; }

/* Section header shared */
.sec-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,105,188,0.07);
    color: #0069BC;
    font-family: Yekan-Bakh-Bold;
    font-size: 13px;
    padding: 6px 18px;
    border-radius: 100px;
    border: 1px solid rgba(0,105,188,0.15);
    margin-bottom: 14px;
}
.sec-tag::before {
    content: '';
    width: 6px; height: 6px;
    background: #0069BC;
    border-radius: 50%;
}
.sec-h2 {
    font-family: Yekan-Bakh-Bold;
    font-size: clamp(26px, 3.5vw, 46px);
    color: #0a0f1e;
    line-height: 1.3;
    margin-bottom: 14px;
}
.sec-h2 em { font-style: normal; color: #0069BC; }
.sec-p {
    color: #777;
    font-size: 16px;
    line-height: 1.85;
    max-width: 580px;
    margin: 0 auto;
}

/* ============================================================
   4. COUNTER SECTION
============================================================ */
#counters {
    padding: 90px 0;
    background: linear-gradient(135deg, #050b1a 0%, #0d1e40 50%, #050b1a 100%);
    position: relative;
    overflow: hidden;
}
#counters::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(0,105,188,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,105,188,0.08) 1px, transparent 1px);
    background-size: 50px 50px;
}
.counter-glow {
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,105,188,0.15) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    filter: blur(60px);
    pointer-events: none;
}
.ctr-card {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 24px 16px;
}
.ctr-num {
    font-family: Yekan-Bakh-Bold;
    font-size: clamp(44px, 5vw, 68px);
    color: #fff;
    line-height: 1;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
}
.ctr-plus { color: #54C2BA; font-size: 0.7em; margin-top: 8px; }
.ctr-label {
    color: rgba(255,255,255,0.55);
    font-size: 15px;
}
.ctr-icon {
    width: 52px; height: 52px;
    background: rgba(0,105,188,0.2);
    border: 1px solid rgba(0,105,188,0.3);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    color: #54C2BA;
    font-size: 22px;
}
.ctr-sep {
    width: 1px; height: 80px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.1), transparent);
    margin: auto;
}

/* ============================================================
   5. PORTFOLIO SECTION
============================================================ */
#portfolio {
    padding: 110px 0;
    background: #f8f9fb;
}
.port-filter {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}
.pf-btn {
    background: #fff;
    border: 1px solid #e0e8f0;
    border-radius: 50px;
    padding: 9px 24px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: Yekan-Bakh-Regular;
}
.pf-btn:hover, .pf-btn.active {
    background: #0069BC;
    border-color: #0069BC;
    color: #fff;
}
.port-grid {
    columns: 3;
    column-gap: 20px;
}
@media (max-width: 991px) { .port-grid { columns: 2; } }
@media (max-width: 576px) { .port-grid { columns: 1; } }
.port-item {
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    display: block;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.port-item:hover { transform: scale(1.02); box-shadow: 0 20px 50px rgba(0,0,0,0.15); }
.port-item img {
    width: 100%;
    display: block;
    transition: transform 0.6s ease;
}
.port-item:hover img { transform: scale(1.06); }
.port-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,10,30,0.85) 0%, rgba(0,10,30,0.1) 60%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
}
.port-item:hover .port-overlay { opacity: 1; }
.port-cat-tag {
    background: rgba(84,194,186,0.85);
    color: #fff;
    font-size: 11px;
    font-family: Yekan-Bakh-Bold;
    padding: 4px 12px;
    border-radius: 50px;
    width: fit-content;
    margin-bottom: 8px;
    backdrop-filter: blur(4px);
}
.port-item-title {
    font-family: Yekan-Bakh-Bold;
    font-size: 16px;
    color: #fff;
    margin: 0 0 4px;
}
.port-item-sub {
    color: rgba(255,255,255,0.65);
    font-size: 12px;
}
.port-overlay-always {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,10,30,0.6) 0%, transparent 55%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    pointer-events: none;
}

.port-link-icon {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    text-decoration: none;
    opacity: 0;
    transform: scale(0.7) rotate(-15deg);
    transition: all 0.4s cubic-bezier(.16,1,.3,1);
}
.port-item:hover .port-link-icon { opacity: 1; transform: scale(1) rotate(0deg); }
.port-link-icon:hover { background: #0069BC; color: #fff; }

/* hidden items */
.port-item.hidden { display: none; }

.port-more-wrap { margin-top: 48px; text-align: center; }
.btn-port-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid rgba(0,105,188,0.2);
    color: #0069BC;
    padding: 14px 36px;
    border-radius: 50px;
    font-family: Yekan-Bakh-Bold;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,105,188,0.08);
}
.btn-port-more:hover {
    background: #0069BC;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0,105,188,0.25);
}

/* ============================================================
   6. PROCESS SECTION
============================================================ */
#process {
    padding: 110px 0;
    background: #fff;
}
.proc-step {
    display: flex;
    gap: 20px;
    margin-bottom: 44px;
    position: relative;
}
.proc-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 55px;
    right: 25px;
    width: 2px;
    height: calc(100% + 4px);
    background: linear-gradient(to bottom, rgba(0,105,188,0.5), rgba(0,105,188,0.05));
}
.proc-num {
    width: 52px; height: 52px;
    min-width: 52px;
    background: #0069BC;
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: Yekan-Bakh-Bold;
    font-size: 17px;
    box-shadow: 0 8px 24px rgba(0,105,188,0.35);
    position: relative; z-index: 1;
    flex-shrink: 0;
}
.proc-content { padding-top: 6px; }
.proc-content h4 {
    font-family: Yekan-Bakh-Bold;
    font-size: 17px;
    color: #0a0f1e;
    margin-bottom: 8px;
}
.proc-content p {
    color: #777;
    font-size: 14px;
    line-height: 1.85;
    margin: 0;
}
/* Process visual */
.proc-visual {
    background: linear-gradient(135deg, #f0f6ff 0%, #e8f8f5 100%);
    border-radius: 28px;
    padding: 44px 36px;
    height: 100%;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.proc-visual::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(0,105,188,0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(84,194,186,0.08) 0%, transparent 50%);
}
.proc-center-icon {
    width: 120px; height: 120px;
    background: linear-gradient(135deg, #0069BC, #54C2BA);
    border-radius: 30px;
    display: flex; align-items: center; justify-content: center;
    font-size: 48px;
    color: #fff;
    box-shadow: 0 20px 60px rgba(0,105,188,0.35);
    position: relative; z-index: 1;
    animation: procIconFloat 4s ease-in-out infinite;
}
@keyframes procIconFloat {
    0%,100% { transform: translateY(0) rotate(0deg); }
    50%      { transform: translateY(-12px) rotate(3deg); }
}
.proc-orbit {
    position: absolute;
    width: 300px; height: 300px;
    border: 1px dashed rgba(0,105,188,0.15);
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    animation: rotateSlow 20s linear infinite;
}
.proc-orbit-2 {
    width: 200px; height: 200px;
    border-color: rgba(84,194,186,0.2);
    animation: rotateSlow 15s linear infinite reverse;
}
@keyframes rotateSlow {
    from { transform: translate(-50%,-50%) rotate(0deg); }
    to   { transform: translate(-50%,-50%) rotate(360deg); }
}
.proc-orbit-dot {
    position: absolute;
    width: 12px; height: 12px;
    background: #0069BC;
    border-radius: 50%;
    top: -6px;
    left: 50%;
    margin-left: -6px;
    box-shadow: 0 0 12px rgba(0,105,188,0.5);
}
.proc-orbit-dot-2 {
    background: #54C2BA;
    box-shadow: 0 0 12px rgba(84,194,186,0.5);
}

/* ============================================================
   7. ABOUT SECTION
============================================================ */
#about {
    padding: 110px 0;
    background: #f8f9fb;
}
.about-img-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
}
.about-main-img {
    border-radius: 28px;
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}
.about-exp-badge {
    position: absolute;
    bottom: -18px;
    left: 28px;
    background: linear-gradient(135deg, #0069BC, #0050a0);
    color: #fff;
    border-radius: 20px;
    padding: 20px 28px;
    box-shadow: 0 16px 48px rgba(0,105,188,0.4);
    z-index: 2;
}
.about-exp-num {
    font-family: Yekan-Bakh-Bold;
    font-size: 44px;
    color: #fff;
    line-height: 1;
}
.about-exp-label { font-size: 13px; color: rgba(255,255,255,0.8); margin-top: 4px; }
.about-img-badge-2 {
    position: absolute;
    top: 24px;
    right: -16px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-radius: 14px;
    padding: 12px 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
}
.about-img-badge-2 .b2-num { font-family: Yekan-Bakh-Bold; font-size: 20px; color: #0069BC; }
.about-img-badge-2 .b2-txt { font-size: 11px; color: #666; }

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}
.about-feat-icon {
    width: 50px; height: 50px;
    min-width: 50px;
    background: rgba(0,105,188,0.08);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: #0069BC;
    font-size: 22px;
    transition: all 0.3s ease;
}
.about-feature:hover .about-feat-icon { background: #0069BC; color: #fff; }
.about-feat-title {
    font-family: Yekan-Bakh-Bold;
    font-size: 15px;
    color: #0a0f1e;
    margin-bottom: 5px;
}
.about-feat-text { color: #777; font-size: 14px; line-height: 1.75; margin: 0; }

.about-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0069BC, #54C2BA);
    border-radius: 2px;
    margin: 24px 0;
}

/* ============================================================
   8. TESTIMONIALS SECTION
============================================================ */
#testimonials {
    padding: 110px 0;
    background: #fff;
    overflow: hidden;
}
.test-card {
    background: #f8f9fb;
    border: 1px solid rgba(0,105,188,0.08);
    border-radius: 24px;
    padding: 32px;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
}
.test-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(0,105,188,0.1);
    border-color: rgba(0,105,188,0.2);
    background: #fff;
}
.test-quote {
    font-size: 52px;
    line-height: 0.7;
    color: rgba(0,105,188,0.15);
    font-family: Georgia, serif;
    margin-bottom: 18px;
    display: block;
}
.test-stars {
    color: #f59e0b;
    font-size: 13px;
    letter-spacing: 3px;
    margin-bottom: 14px;
    display: block;
}
.test-text {
    color: #444;
    font-size: 14px;
    line-height: 1.95;
    margin-bottom: 24px;
}
.test-author { display: flex; align-items: center; gap: 14px; }
.test-avatar {
    width: 52px; height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(0,105,188,0.15);
    flex-shrink: 0;
}
.test-name { font-family: Yekan-Bakh-Bold; font-size: 14px; color: #0a0f1e; }
.test-role { font-size: 12px; color: #999; margin-top: 2px; }

/* swiper nav */
.test-nav {
    display: flex;
    gap: 12px;
    margin-top: 40px;
    justify-content: center;
}
.test-nav-btn {
    width: 48px; height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(0,105,188,0.2);
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    color: #0069BC;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
}
.test-nav-btn:hover { background: #0069BC; color: #fff; border-color: #0069BC; }

/* ============================================================
   9. CLIENTS / BRANDS SECTION
============================================================ */
#clients {
    padding: 64px 0;
    background: #f8f9fb;
    overflow: hidden;
}
.clients-label {
    text-align: center;
    color: #999;
    font-size: 14px;
    font-family: Yekan-Bakh-Bold;
    margin-bottom: 36px;
}
.brands-track-wrap {
    overflow: hidden;
    position: relative;
}
.brands-track-wrap::before,
.brands-track-wrap::after {
    content: '';
    position: absolute; top: 0; height: 100%;
    width: 80px; z-index: 2;
}
.brands-track-wrap::before { right: 0; background: linear-gradient(to left, #f8f9fb, transparent); }
.brands-track-wrap::after  { left:  0; background: linear-gradient(to right, #f8f9fb, transparent); }

.brands-track-wrap .owl-stage { display: flex; align-items: center; }
.brands-track-wrap .owl-stage-outer { overflow: visible; }
.brand-logo {
    min-width: 100px;
    height: 52px;
    display: flex; align-items: center; justify-content: center;
    filter: grayscale(100%) opacity(0.35);
    transition: all 0.4s ease;
}
.brand-logo:hover { filter: grayscale(0%) opacity(1); }
.brand-logo img { height: 44px; width: auto; object-fit: contain; }

/* ============================================================
   10. BLOG SECTION
============================================================ */
#blog {
    padding: 110px 0;
    background: #fff;
}
.blog-card {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    height: 100%;
    background: #fff;
    text-decoration: none;
    display: block;
    color: inherit;
    transition: all 0.4s ease;
}
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(0,0,0,0.09);
    border-color: rgba(0,105,188,0.2);
    color: inherit;
}
.blog-img {
    height: 210px;
    overflow: hidden;
    position: relative;
}
.blog-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-body { padding: 24px; }
.blog-cat {
    display: inline-block;
    background: rgba(0,105,188,0.07);
    color: #0069BC;
    font-size: 11px;
    font-family: Yekan-Bakh-Bold;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
}
.blog-title {
    font-family: Yekan-Bakh-Bold;
    font-size: 15px;
    color: #0a0f1e;
    line-height: 1.6;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-excerpt {
    color: #888;
    font-size: 13px;
    line-height: 1.8;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 18px;
}
.blog-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.blog-date { color: #bbb; font-size: 12px; }
.blog-arrow {
    width: 34px; height: 34px;
    background: rgba(0,105,188,0.07);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #0069BC;
    font-size: 14px;
    transition: all 0.3s ease;
}
.blog-card:hover .blog-arrow { background: #0069BC; color: #fff; }

.blog-more-wrap { margin-top: 52px; text-align: center; }

/* ============================================================
   11. CTA SECTION
============================================================ */
#cta {
    padding: 110px 0;
    background: #050b1a;
    position: relative;
    overflow: hidden;
}
.cta-blob-1 {
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0,105,188,0.18) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    top: -150px; right: -100px;
    animation: blobMove1 14s ease-in-out infinite;
}
.cta-blob-2 {
    position: absolute;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(84,194,186,0.12) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    bottom: -80px; left: 5%;
    animation: blobMove2 11s ease-in-out infinite;
}
.cta-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(0,105,188,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,105,188,0.05) 1px, transparent 1px);
    background-size: 60px 60px;
}
.cta-inner { position: relative; z-index: 2; text-align: center; }
.cta-sub-label {
    display: inline-block;
    background: rgba(84,194,186,0.12);
    color: #54C2BA;
    font-family: Yekan-Bakh-Bold;
    font-size: 13px;
    padding: 7px 22px;
    border-radius: 100px;
    border: 1px solid rgba(84,194,186,0.25);
    margin-bottom: 28px;
}
.cta-title {
    font-family: Yekan-Bakh-Bold;
    font-size: clamp(28px, 4vw, 58px);
    color: #fff;
    line-height: 1.25;
    margin-bottom: 22px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}
.cta-title.is-visible { opacity: 1; transform: translateY(0); }
.cta-title .g { background: linear-gradient(135deg, #0069BC, #54C2BA); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cta-desc {
    color: rgba(255,255,255,0.55);
    font-size: 17px;
    max-width: 540px;
    margin: 0 auto 44px;
    line-height: 1.85;
}
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #0069BC, #0050a0);
    color: #fff !important;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-family: Yekan-Bakh-Bold;
    border: none;
    text-decoration: none;
    box-shadow: 0 10px 40px rgba(0,105,188,0.45);
    transition: all 0.3s ease;
}
.btn-cta-primary:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,105,188,0.55); color: #fff !important; }
.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: rgba(255,255,255,0.8) !important;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-family: Yekan-Bakh-Bold;
    border: 1px solid rgba(255,255,255,0.2);
    text-decoration: none;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}
.btn-cta-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.4); transform: translateY(-4px); color: #fff !important; }

/* Floating orbs in CTA */
.orb {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.04);
    animation: orbRotate 25s linear infinite;
}
.orb-1 { width: 280px; height: 280px; top: 10%; left: 8%; }
.orb-2 { width: 180px; height: 180px; bottom: 12%; right: 10%; animation-duration: 18s; animation-direction: reverse; }
.orb-3 { width: 100px; height: 100px; top: 55%; left: 25%; animation-duration: 12s; }
@keyframes orbRotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 991px) {
    #hero { text-align: center; }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-btns { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-visual-wrap { margin-top: 52px; }
    .float-badge { display: none; }
    .about-exp-badge, .about-img-badge-2 { display: none; }
    .ctr-sep { display: none; }
    #process .col-lg-6:last-child { display: none; }
    .sec-p { margin-left: 0; margin-right: 0; }
}
@media (max-width: 767px) {
    #hero, #services, #portfolio, #process, #about, #testimonials, #clients, #blog, #cta {
        padding-top: 72px;
        padding-bottom: 72px;
    }
    .hero-headline { font-size: 32px; }
    .ctr-num { font-size: 40px; }
}
