@import url('./creative.css');


.max-content-block {
    max-width: 1200px;
    margin: 0 auto;
}

/* .main-counter-sec .container {
    padding: 0px;
} */

.subserv-hero-section {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--subserv-light-bg);
    background-image:
        radial-gradient(circle at 15% 20%, rgba(2, 132, 199, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 85% 30%, rgba(0, 210, 255, 0.07) 0%, transparent 45%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    padding: 130px 20px 80px;
    overflow: hidden;
    color: var(--subserv-text-title);
    font-family: var(--subserv-font-body);
    box-sizing: border-box;
}

@media (min-width: 992px) {
    .subserv-hero-section {
        padding: 140px 30px 90px;
    }
}

/* Background Grids & Ambient Glows */
.subserv-hero-grid-pattern {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: 36px 36px;
    background-image:
        linear-gradient(to right, rgba(0, 0, 0, 0.045) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.045) 1px, transparent 1px);
    pointer-events: none;
    z-index: 1;
}

.subserv-hero-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 1;
    opacity: 0.7;
    animation: subservGlowPulse 8s ease-in-out infinite alternate;
}

.subserv-hero-bg-glow.glow-1 {
    top: 10%;
    left: 5%;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.14) 0%, transparent 70%);
}

.subserv-hero-bg-glow.glow-2 {
    top: 25%;
    right: 5%;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.12) 0%, transparent 70%);
    animation-delay: -4s;
}

@keyframes subservGlowPulse {
    0% {
        transform: scale(1) translate(0, 0);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.15) translate(15px, -15px);
        opacity: 0.85;
    }
}

/* --------------------------------------------------------------------------
   Container & 2-Column Grid Layout
   -------------------------------------------------------------------------- */
.subserv-hero-container {
    width: 100%;
    max-width: 1340px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.subserv-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 992px) {
    .subserv-hero-grid {
        grid-template-columns: 1.05fr 1fr;
        gap: 50px;
    }
}

@media (min-width: 1200px) {
    .subserv-hero-grid {
        grid-template-columns: 1.1fr 1fr;
        gap: 60px;
    }
}

/* --------------------------------------------------------------------------
   Left Column: Typography & Content
   -------------------------------------------------------------------------- */
.subserv-hero-col-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

@media (max-width: 991px) {
    .subserv-hero-col-text {
        align-items: center;
        text-align: center;
    }
}

/* Badge */
.subserv-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 16px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.subserv-hero-badge:hover {
    border-color: var(--subserv-primary);
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(2, 132, 199, 0.18);
}

.subserv-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #0284c7;
    box-shadow: 0 0 8px #0284c7;
    position: relative;
}

.subserv-badge-dot::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background-color: rgba(2, 132, 199, 0.35);
    animation: subservBadgePulse 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes subservBadgePulse {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }

    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

.subserv-badge-text {
    font-family: var(--subserv-font-heading);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.4px;
    color: #334155;
    text-transform: uppercase;
}

/* Title */
.subserv-hero-title {
    font-family: var(--subserv-font-heading);
    font-size: 38px;
    line-height: 1.15;
    font-weight: 800;
    margin: 0 0 18px;
    letter-spacing: -0.025em;
    color: var(--subserv-text-title);
}

@media (min-width: 768px) {
    .subserv-hero-title {
        font-size: 48px;
    }
}

@media (max-width: 1367px) {
    .subserv-hero-title {
        font-size: 45px;
    }
}

.subserv-title-gradient {
    background: linear-gradient(135deg, #0284c7 0%, #00b4d8 50%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
}

/* Description */
.subserv-hero-description {
    font-size: 16.5px;
    line-height: 1.65;
    color: var(--subserv-text-body);
    margin: 0 0 20px;
    font-weight: 400;
}

@media (min-width: 768px) {
    .subserv-hero-description {
        font-size: 17.5px;
    }
}

/* --------------------------------------------------------------------------
   Interactive Solidity Smart Contract Code Preview (Neo-Glass Tech)
   -------------------------------------------------------------------------- */
.subserv-code-preview-widget {
    width: 100%;
    max-width: 540px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
    border: 1px solid rgba(2, 132, 199, 0.22);
    border-radius: 14px;
    padding: 0;
    margin: 0 0 24px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06), 0 0 20px rgba(2, 132, 199, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.subserv-code-preview-widget:hover {
    transform: translateY(-2px);
    border-color: rgba(124, 58, 237, 0.35);
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.09), 0 0 25px rgba(124, 58, 237, 0.12);
}

.subserv-code-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 14px;
    background: rgba(241, 245, 249, 0.7);
    border-bottom: 1px solid rgba(2, 132, 199, 0.12);
    font-size: 11.5px;
}

.subserv-code-dots {
    display: flex;
    align-items: center;
    gap: 6px;
}

.subserv-code-dots .c-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    display: inline-block;
}

.subserv-code-dots .c-dot.red {
    background: #ff5f56;
}

.subserv-code-dots .c-dot.yellow {
    background: #ffbd2e;
}

.subserv-code-dots .c-dot.green {
    background: #27c93f;
}

.subserv-code-filename {
    font-family: 'Courier New', Courier, monospace;
    font-weight: 700;
    color: #475569;
    letter-spacing: 0.2px;
}

.subserv-code-lang {
    font-size: 10.5px;
    font-weight: 600;
    color: #0284c7;
    background: rgba(2, 132, 199, 0.08);
    padding: 2px 7px;
    border-radius: 4px;
}

.subserv-code-body {
    padding: 12px 16px;
    font-family: 'Consolas', 'Fira Code', 'Courier New', monospace;
    font-size: 12.5px;
    line-height: 1.6;
    color: #0f172a;
    background: rgba(255, 255, 255, 0.6);
}

.code-line {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.c-line {
    color: #94a3b8;
    font-size: 11px;
    user-select: none;
    min-width: 16px;
}

.c-kw {
    color: #7c3aed;
    font-weight: 700;
}

.c-def {
    color: #0284c7;
    font-weight: 700;
}

.c-type {
    color: #059669;
    font-weight: 600;
}

.c-var {
    color: #2563eb;
}

.c-val {
    color: #d97706;
    font-weight: 700;
}

.c-cmt {
    color: #64748b;
    font-style: italic;
    font-size: 11.5px;
    margin-left: 6px;
}

/* --------------------------------------------------------------------------
   Blockchain Solutions Capability Feature List
   -------------------------------------------------------------------------- */
.subserv-hero-features-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0 0 26px;
    width: 100%;
}

.subserv-feature-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--subserv-font-heading);
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    transition: all 0.25s ease;
}

.subserv-feature-icon {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: linear-gradient(135deg, rgba(2, 132, 199, 0.12) 0%, rgba(0, 210, 255, 0.15) 100%);
    border: 1px solid rgba(2, 132, 199, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0284c7;
    flex-shrink: 0;
}

.subserv-feature-icon svg {
    width: 12px;
    height: 12px;
}

.subserv-feature-item:hover {
    color: #0284c7;
    transform: translateX(3px);
}

.subserv-feature-item:hover .subserv-feature-icon {
    background: #0284c7;
    color: #ffffff;
    border-color: #0284c7;
    box-shadow: 0 2px 8px rgba(2, 132, 199, 0.3);
}

/* --------------------------------------------------------------------------
   Right Column: Media & Video Showcase Frame
   -------------------------------------------------------------------------- */
.subserv-hero-col-media {
    position: relative;
    width: 100%;
}

.subserv-showcase-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.subserv-showcase-frame {
    position: relative;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 10px;
    box-shadow: 0 22px 50px -12px rgba(0, 0, 0, 0.1), 0 0 30px rgba(2, 132, 199, 0.08);
    transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}

.subserv-showcase-frame:hover {
    border-color: #cbd5e1;
    transform: translateY(-4px);
    box-shadow: 0 28px 60px -12px rgba(0, 0, 0, 0.14), 0 0 35px rgba(2, 132, 199, 0.18);
}

/* Ambient glow halo behind frame */
.subserv-frame-glow {
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, rgba(2, 132, 199, 0.28) 0%, transparent 50%, rgba(0, 210, 255, 0.25) 100%);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.55;
    filter: blur(14px);
    transition: opacity 0.4s ease;
}

.subserv-showcase-wrapper:hover .subserv-frame-glow {
    opacity: 0.85;
}

/* Frame UI Top Header */
.subserv-frame-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 14px 12px;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 10px;
}

.subserv-frame-dots {
    display: flex;
    align-items: center;
    gap: 7px;
}

.subserv-frame-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    opacity: 0.85;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.subserv-frame-dots:hover .dot {
    opacity: 1;
    transform: scale(1.08);
}

.subserv-frame-dots .dot.red {
    background: #ff5f56;
}

.subserv-frame-dots .dot.yellow {
    background: #ffbd2e;
}

.subserv-frame-dots .dot.green {
    background: #27c93f;
}

.subserv-frame-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--subserv-font-heading);
    font-size: 11.5px;
    font-weight: 600;
    color: #0284c7;
    letter-spacing: 0.35px;
    background: rgba(2, 132, 199, 0.08);
    border: 1px solid rgba(2, 132, 199, 0.18);
    padding: 4px 11px;
    border-radius: 6px;
    transition: all 0.25s ease;
}

.subserv-frame-tag:hover {
    background: rgba(2, 132, 199, 0.14);
    border-color: rgba(2, 132, 199, 0.3);
}

.subserv-frame-tag .tag-dot {
    width: 6px;
    height: 6px;
    background: #0284c7;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(2, 132, 199, 0.6);
    animation: subservBadgePulse 2s infinite;
}

/* Video / Image Showcase Container */
.subserv-video-wrap,
.subserv-media-wrap,
.subserv-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    background: #0f172a;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.subserv-video-wrap video,
.subserv-media-wrap video,
.subserv-media-wrap img,
.subserv-image-wrap img,
.subserv-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.subserv-showcase-frame:hover .subserv-media-wrap img,
.subserv-showcase-frame:hover .subserv-image-wrap img {
    transform: scale(1.02);
}

/* CTA Button Group */
.subserv-hero-cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .subserv-hero-cta-group {
        justify-content: center;
        margin-top: 26px;
    }
}

.subserv-hero-cta-group .btn-primary-orange {
    padding: 13px 30px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    box-shadow: 0 8px 22px rgba(254, 74, 35, 0.28);
}

.subserv-hero-cta-group .btn-primary-orange:hover {
    box-shadow: 0 12px 28px rgba(254, 74, 35, 0.38);
    transform: translateY(-2px);
}

.subserv-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 10px;
    font-family: var(--subserv-font-heading);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    line-height: 1.2;
}

/* Primary Hero CTA Button */
.subserv-hero-btn-primary {
    background: linear-gradient(135deg, #fe4a23 0%, #ff6b4a 100%);
    color: #ffffff !important;
    box-shadow: 0 8px 22px rgba(254, 74, 35, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.subserv-hero-btn-primary:hover {
    background: linear-gradient(135deg, #e23e19 0%, #fe4a23 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(254, 74, 35, 0.38);
    color: #ffffff !important;
}

/* Secondary Hero CTA Button */
.subserv-hero-btn-secondary {
    background: rgba(255, 255, 255, 0.95);
    color: var(--subserv-text-title) !important;
    border: 1px solid #cbd5e1;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.subserv-hero-btn-secondary:hover {
    background: #ffffff;
    border-color: #0284c7;
    color: #0284c7 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(2, 132, 199, 0.14);
}

.subserv-hero-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.subserv-hero-btn:hover svg {
    transform: translateX(4px);
}

/* Single-Line CTA Group Layout */
.subserv-hero-cta-group.subserv-cta-inline {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
}

.subserv-hero-cta-group.subserv-cta-inline .subserv-hero-btn,
.subserv-hero-cta-group.subserv-cta-inline .btn-primary-orange {
    white-space: nowrap;
    padding: 12px 20px;
    font-size: 14.5px;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .subserv-hero-cta-group.subserv-cta-inline {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .subserv-hero-cta-group.subserv-cta-inline {
        flex-wrap: wrap;
        width: 100%;
    }

    .subserv-hero-cta-group.subserv-cta-inline .subserv-hero-btn,
    .subserv-hero-cta-group.subserv-cta-inline .btn-primary-orange {
        width: 100%;
        justify-content: center;
    }
}

/* Background Image & Image-Based Glows/Grids */
.subserv-hero-bg-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.subserv-hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.subserv-hero-grid-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.85;
    pointer-events: none;
    z-index: 2;
    mix-blend-mode: multiply;
}

.subserv-hero-grid-img.opaicty-down-line,
.opaicty-down-line {
    opacity: 0.1 !important;
}

.subserv-hero-glow-img {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    opacity: 0.85;
    animation: subservGlowPulse 8s ease-in-out infinite alternate;
}

.subserv-hero-glow-img.glow-1 {
    top: 5%;
    left: 5%;
    width: 450px;
    height: 450px;
    object-fit: contain;
}

.subserv-hero-glow-img.glow-2 {
    top: 20%;
    right: 5%;
    width: 480px;
    height: 480px;
    object-fit: contain;
    animation-delay: -4s;
}

.subserv-hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.3) 0%, rgba(248, 250, 252, 0.6) 100%);
    pointer-events: none;
    z-index: 1;
}

/* --------------------------------------------------------------------------
   Blockchain Trust Stats & Ecosystem Badges
   -------------------------------------------------------------------------- */
.subserv-hero-stats-row {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    width: 100%;
}

.subserv-hero-stat-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.subserv-stat-number {
    font-family: var(--subserv-font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--subserv-text-title);
    line-height: 1.1;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #0284c7 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subserv-stat-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--subserv-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

/* Floating Interactive Glass Cards around Media Frame */
.subserv-float-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(2, 132, 199, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 10px 16px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08), 0 0 20px rgba(2, 132, 199, 0.08);
    z-index: 4;
    pointer-events: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.subserv-float-badge:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 18px 36px rgba(2, 132, 199, 0.18);
    border-color: rgba(2, 132, 199, 0.35);
}

.subserv-float-badge.badge-top-left {
    top: -18px;
    left: -18px;
    animation: subservFloatTop 5s ease-in-out infinite alternate;
}

.subserv-float-badge.badge-bottom-right {
    bottom: -18px;
    right: -18px;
    animation: subservFloatBottom 5.5s ease-in-out infinite alternate;
}

@keyframes subservFloatTop {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-4px, -10px);
    }
}

@keyframes subservFloatBottom {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(4px, 10px);
    }
}

.subserv-float-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    background: linear-gradient(135deg, rgba(2, 132, 199, 0.12) 0%, rgba(37, 99, 235, 0.14) 100%);
    color: #0284c7;
    flex-shrink: 0;
}

.subserv-float-icon.icon-orange {
    background: linear-gradient(135deg, rgba(254, 74, 35, 0.12) 0%, rgba(255, 107, 74, 0.18) 100%);
    color: #fe4a23;
}

.subserv-float-content {
    display: flex;
    flex-direction: column;
}

.subserv-float-title {
    font-family: var(--subserv-font-heading);
    font-size: 12.5px;
    font-weight: 700;
    color: var(--subserv-text-title);
    line-height: 1.2;
}

.subserv-float-sub {
    font-size: 11px;
    color: var(--subserv-text-muted);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.subserv-live-ping {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 6px #10b981;
    display: inline-block;
}

/* --------------------------------------------------------------------------
   Mobile Adjustments
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
    .subserv-hero-stats-row {
        justify-content: center;
    }

    .subserv-float-badge {
        display: none;
        /* Hide floating badges on smaller screens for clean layout */
    }
}

@media (max-width: 767px) {
        .subserv-sectors-center-layout {
        grid-template-columns: 1fr;
        }

            .subserv-why-invest-grid {
        grid-template-columns: repeat(1, 1fr);
            }
            
       .subserv-badge-text {
    font-size: 11px;
    }
    

        .subserv-hero-description, .subserv-grid-subtitle {
        font-size: 12.5px;
    }

    .dot {
    margin-top: 0px;
    }

        .subserv-hero-title, .subserv-grid-title {
        font-size: 29px;
    }

    .subserv-overview-title{
  font-size: 25px;
    }

    .subserv-hero-section {
        padding: 110px 16px 50px;
    }

    .subserv-hero-title {
        font-size: 32px;
    }

    .subserv-hero-description {
        font-size: 14.5px;
    }

    .subserv-hero-stats-row {
        gap: 18px;
        flex-wrap: wrap;
        justify-content: space-around;
    }

    .subserv-stat-number {
        font-size: 19px;
    }

    .subserv-showcase-frame {
        padding: 6px;
        border-radius: 12px;
    }
}

/* ==========================================================================
   Subserv Overview & Solutions Section (Unique High-Tech Web3 Aesthetics)
   ========================================================================== */
.subserv-overview-section {
    position: relative;
    background-color: #ffffff;
    padding: 80px 0px;
    overflow: hidden;
    color: var(--subserv-text-title);
    font-family: var(--subserv-font-body);
    box-sizing: border-box;
}


.container {
    max-width: 1340px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding: 0 15px;
}

/* Ambient glow nodes */
.subserv-ambient-node {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
    opacity: 0.5;
}

.subserv-ambient-node.node-left {
    top: 20%;
    left: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.15) 0%, transparent 70%);
}

.subserv-ambient-node.node-right {
    top: 60%;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.14) 0%, transparent 70%);
}

/* --------------------------------------------------------------------------
   Section Header & Intro
   -------------------------------------------------------------------------- */
.subserv-overview-header {
    text-align: center;
    max-width: 1020px;
    margin: 0 auto 45px;
}

.subserv-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 18px;
    border-radius: 100px;
    background: #ffffff;
    border: 1px solid rgba(227, 86, 17, 0.25);
    box-shadow: 0 4px 14px rgba(227, 86, 17, 0.08);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.subserv-section-badge:hover {
    border-color: #e35611;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 86, 17, 0.16);
}

.subserv-section-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #e35611;
    box-shadow: 0 0 8px rgba(227, 86, 17, 0.6);
    animation: subservBadgePulse 2s infinite;
}

.subserv-section-badge-text {
    font-family: var(--subserv-font-heading, 'Inter', sans-serif);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #e35611;
    text-transform: uppercase;
}

@keyframes subservBadgePulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(227, 86, 17, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(227, 86, 17, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(227, 86, 17, 0);
    }
}

.subserv-overview-title {
    font-family: var(--subserv-font-heading);
    font-size: 36px;
    line-height: 1.18;
    font-weight: 800;
    margin: 0 0 16px;
    letter-spacing: -0.025em;
    color: var(--subserv-text-title);
}

@media (min-width: 768px) {
    .subserv-overview-title {
        font-size: 46px;
    }
}

@media (min-width: 1200px) {
    .subserv-overview-title {
        font-size: 50px;
    }
}

.subserv-overview-subtitle {
    font-family: var(--subserv-font-heading);
    font-size: 19px;
    font-weight: 700;
    line-height: 1.45;
    color: #1e293b;
    margin: 0 auto;
    max-width: 780px;
    letter-spacing: -0.01em;
}

@media (min-width: 768px) {
    .subserv-overview-subtitle {
        font-size: 22px;
    }
}

/* --------------------------------------------------------------------------
   Simple Paragraph Stack (1 Full Width & 2 on Second Line)
   -------------------------------------------------------------------------- */
.subserv-overview-text-block {
    margin: 0 auto 10px auto;
}

.subserv-overview-para {
    font-size: 16px;
    line-height: 1.85;
    color: #475569;
    margin: 0 0 22px 0;
    font-weight: 400;
    text-align: center;
}

.subserv-overview-para:last-child {
    margin-bottom: 0;
}

.subserv-overview-para strong {
    color: #0f172a;
    font-weight: 700;
}

@media (max-width: 767px) {
    .subserv-solutions-layout{
                grid-template-columns: 1fr;
    }
    .subserv-overview-para {
        font-size: 14.5px;
        line-height: 1.75;
        margin-bottom: 16px;
    }
}

.subserv-counters-wrap {
    padding: 50px 0px;
    position: relative;
}

.subserv-counters-wrap .main-counter-sec {
    padding-top: 0;
    background: transparent;
}

.subserv-counters-wrap .inner-counter-sec {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .subserv-counters-wrap .inner-counter-sec {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}

@media (max-width: 575px) {
    .subserv-counters-wrap .inner-counter-sec {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

.subserv-counters-wrap .counter-box {
    background: #ffffff;
    background-image: radial-gradient(circle at 90% 10%, rgba(2, 132, 199, 0.04) 0%, transparent 60%), linear-gradient(180deg, #ffffff 0%, #fcfdfe 100%);
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 28px 22px 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03), 0 1px 3px rgba(0, 0, 0, 0.02);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    min-width: unset;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.subserv-counters-wrap .counter-box:nth-child(even) {
    background-image: radial-gradient(circle at 90% 10%, rgba(227, 86, 17, 0.04) 0%, transparent 60%), linear-gradient(180deg, #ffffff 0%, #fcfdfe 100%);
}

/* Top Glow Line */
.subserv-counters-wrap .counter-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3.5px;
    background: linear-gradient(90deg, #0284c7 0%, #00b4d8 100%);
    opacity: 0.85;
    transition: height 0.3s ease, opacity 0.3s ease;
}

.subserv-counters-wrap .counter-box:nth-child(even)::before {
    background: linear-gradient(90deg, #e35611 0%, #ff7a1a 100%);
}

/* Watermark Metric Index */
.subserv-counters-wrap .counter-box::after {
    position: absolute;
    top: 10px;
    right: 14px;
    font-family: var(--subserv-font-heading);
    font-size: 20px;
    font-weight: 800;
    color: #e2e8f0;
    letter-spacing: -0.02em;
    pointer-events: none;
    transition: all 0.35s ease;
    line-height: 1;
}

.subserv-counters-wrap .counter-box:nth-child(1)::after {
    content: '01';
}

.subserv-counters-wrap .counter-box:nth-child(2)::after {
    content: '02';
}

.subserv-counters-wrap .counter-box:nth-child(3)::after {
    content: '03';
}

.subserv-counters-wrap .counter-box:nth-child(4)::after {
    content: '04';
}

.subserv-counters-wrap .counter-box:hover {
    transform: translateY(-6px);
    border-color: rgba(2, 132, 199, 0.45);
    box-shadow: 0 20px 42px rgba(2, 132, 199, 0.12), 0 1px 3px rgba(0, 0, 0, 0.04);
}

.subserv-counters-wrap .counter-box:hover::before {
    height: 4.5px;
    opacity: 1;
}

.subserv-counters-wrap .counter-box:hover::after {
    color: rgba(2, 132, 199, 0.22);
    transform: translateY(2px);
}

.subserv-counters-wrap .counter-box:nth-child(even):hover {
    border-color: rgba(227, 86, 17, 0.45);
    box-shadow: 0 20px 42px rgba(227, 86, 17, 0.14), 0 1px 3px rgba(0, 0, 0, 0.04);
}

.subserv-counters-wrap .counter-box:nth-child(even):hover::after {
    color: rgba(227, 86, 17, 0.25);
}

.subserv-counters-wrap .counter-box .count-value {
    font-family: var(--subserv-font-heading);
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 8px 0;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #0284c7 0%, #00b4d8 50%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s ease;
}

.subserv-counters-wrap .counter-box:hover .count-value {
    transform: scale(1.04);
}

.subserv-counters-wrap .counter-box:nth-child(even) .count-value {
    background: linear-gradient(135deg, #e35611 0%, #ff7a1a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subserv-counters-wrap .counter-box .section-con {
    font-family: var(--subserv-font-heading);
    font-size: 14.5px;
    font-weight: 600;
    color: #475569;
    margin: 0;
    line-height: 1.35;
    transition: color 0.25s ease;
}

.subserv-counters-wrap .counter-box:hover .section-con {
    color: #0f172a;
}

/* --------------------------------------------------------------------------
   Innovative Solutions Showcase Box
   -------------------------------------------------------------------------- */

.subserv-main-section {
    overflow: hidden;
    background: #ffffff;
    padding: 50px 0px 30px 0px;
}

.subserv-solutions-showcase {
    position: relative;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 32px 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
}


.subserv-solutions-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 992px) {
    .subserv-solutions-layout {
        grid-template-columns: 1fr 1.35fr;
        gap: 40px;
    }
}

@media (min-width: 1200px) {
    .subserv-solutions-layout {
        grid-template-columns: 1fr 1.45fr;
        gap: 48px;
    }
}

/* Left Image Showcase Card */
.subserv-showcase-media-side {
    position: relative;
}

.subserv-media-card-frame {
    position: relative;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 12px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.subserv-media-card-frame:hover {
    transform: translateY(-4px);
    border-color: rgba(2, 132, 199, 0.4);
    box-shadow: 0 24px 50px rgba(2, 132, 199, 0.12);
}

.subserv-media-halo {
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.2) 0%, rgba(227, 86, 17, 0.15) 50%, transparent 70%);
    border-radius: 26px;
    z-index: -1;
    filter: blur(22px);
    opacity: 0.6;
    transition: opacity 0.4s ease;
}

.subserv-showcase-media-side:hover .subserv-media-halo {
    opacity: 0.9;
}

.subserv-media-display-img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    display: block;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.subserv-media-card-frame:hover .subserv-media-display-img {
    transform: scale(1.02);
}

/* Floating top tag on image */
.subserv-media-top-tag {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.3px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.subserv-media-top-tag .status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #e35611;
    box-shadow: 0 0 6px #e35611;
    animation: subservBadgePulse 2s infinite;
}

/* Floating bottom badge on image */
.subserv-media-badge-overlay {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(15, 23, 42, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #ffffff;
    padding: 12px 18px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
}

.subserv-media-card-frame:hover .subserv-media-badge-overlay {
    transform: translateY(-2px);
}

.subserv-media-badge-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(227, 86, 17, 0.25) 0%, rgba(255, 122, 26, 0.3) 100%);
    border: 1px solid rgba(227, 86, 17, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff7a1a;
    flex-shrink: 0;
}

.subserv-media-badge-content {
    display: flex;
    flex-direction: column;
}

.subserv-media-badge-title {
    font-family: var(--subserv-font-heading);
    font-size: 13.5px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.subserv-media-badge-desc {
    font-size: 11.5px;
    color: #94a3b8;
    line-height: 1.3;
}

/* Right Content: Title & Capabilities Grid */
.subserv-showcase-content-side {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.subserv-content-heading {
    font-family: var(--subserv-font-heading);
    font-size: 21px;
    line-height: 1.35;
    font-weight: 600;
    color: var(--subserv-text-title);
    margin: 0 0 16px;
    letter-spacing: -0.01em;
}

.subserv-content-desc {
    font-size: 15px;
    line-height: 1.65;
    color: #475569;
    font-family: var(--subserv-font-heading);
    margin: 0 0 24px;
    font-weight: 400;
}

@media (min-width: 768px) {
    .subserv-content-heading {
        font-size: 23px;
    }
}

/* Unique Compact 2-Col Matrix of 10 Minimal Single-Line Cards */
.subserv-services-matrix {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    width: 100%;
    margin-bottom: 20px;
}

@media (min-width: 600px) {
    .subserv-services-matrix {
        grid-template-columns: 1fr 1fr;
        gap: 8px 12px;
    }
}

.subserv-service-pill-item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.subserv-service-pill-item:hover {
    background: #ffffff;
    border-color: rgba(2, 132, 199, 0.4);
    transform: translateX(3px);
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.08);
}

.subserv-service-pill-item:nth-child(even):hover {
    border-color: rgba(227, 86, 17, 0.4);
    box-shadow: 0 4px 12px rgba(227, 86, 17, 0.08);
}

.subserv-item-index {
    font-family: var(--subserv-font-heading);
    font-size: 10.5px;
    font-weight: 700;
    color: #64748b;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 2px 5px;
    border-radius: 4px;
    line-height: 1;
    flex-shrink: 0;
    min-width: 18px;
    text-align: center;
    transition: all 0.2s ease;
}

.subserv-service-pill-item:hover .subserv-item-index {
    color: #ffffff;
    background: linear-gradient(135deg, #0284c7 0%, #00b4d8 100%);
    border-color: transparent;
}

.subserv-service-pill-item:nth-child(even):hover .subserv-item-index {
    color: #ffffff;
    background: linear-gradient(135deg, #e35611 0%, #ff7a1a 100%);
    border-color: transparent;
}

.subserv-item-label {
    font-family: var(--subserv-font-heading);
    font-size: 12.5px;
    font-weight: 500;
    color: #1e293b;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s ease;
}

.subserv-service-pill-item:hover .subserv-item-label {
    color: #0284c7;
}

.subserv-service-pill-item:nth-child(even):hover .subserv-item-label {
    color: #e35611;
}

/* CTA Primary Action Button (Integration with creative.css btn-primary-orange) */


/* Mobile Adjustments for Overview & Solutions */
@media (max-width: 767px) {
    .subserv-overview-section {
        padding: 70px 16px 60px;
    }

    .subserv-overview-title {
        font-size: 28px;
    }

    .subserv-overview-subtitle {
        font-size: 18px;
    }

    .subserv-solutions-showcase {
        padding: 22px 16px;
        border-radius: 18px;
    }

    .subserv-content-heading {
        font-size: 22px;
    }

    .subserv-media-top-tag {
        top: 14px;
        right: 14px;
        font-size: 10.5px;
        padding: 4px 10px;
    }

    .subserv-media-badge-overlay {
        position: static;
        margin-top: 10px;
        width: 100%;
        box-sizing: border-box;
    }
}

/* ==========================================================================
   Subserv Single-Line Blockchain / Tech Ecosystem Marquee
   ========================================================================== */
.subserv-marquee-wrapper {
    display: flex;
    width: 100%;
    overflow: hidden;
    user-select: none;
    gap: 24px;
    padding: 50px 0px;
}

.subserv-marquee-track {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 24px;
    padding: 6px 0;
    animation: subservMarqueeScroll 38s linear infinite;
    will-change: transform;
}


.subserv-marquee-wrapper:hover .subserv-marquee-track {
    animation-play-state: paused;
}

@keyframes subservMarqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% - 24px));
    }
}

.subserv-marquee-card {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 12px 24px 12px 18px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
    min-height: 68px;
    box-sizing: border-box;
}

.subserv-marquee-card:hover {
    border-color: rgba(2, 132, 199, 0.45);
    background: #ffffff;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 28px rgba(2, 132, 199, 0.14);
}

.subserv-marquee-logo-wrap {
    height: 48px;
    min-width: 48px;
    max-width: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 6px 10px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.subserv-marquee-card:hover .subserv-marquee-logo-wrap {
    background: rgba(2, 132, 199, 0.06);
    border-color: rgba(2, 132, 199, 0.3);
}

.subserv-marquee-logo-wrap img {
    height: 38px;
    width: auto;
    max-width: 110px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.04));
    transition: transform 0.3s ease;
}

.subserv-marquee-card:hover .subserv-marquee-logo-wrap img {
    transform: scale(1.06);
}

.subserv-marquee-name {
    font-family: var(--subserv-font-heading);
    font-size: 15.5px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    letter-spacing: -0.01em;
    transition: color 0.25s ease;
}

.subserv-marquee-card:hover .subserv-marquee-name {
    color: var(--subserv-primary);
}

@media (max-width: 767px) {
    .subserv-marquee-wrapper {
        gap: 16px;
        padding: 10px 0;
    }

    .subserv-marquee-track {
        gap: 16px;
        padding: 4px 0;
        animation-duration: 26s;
    }


    @keyframes subservMarqueeScroll {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(calc(-100% - 16px));
        }
    }

    .subserv-marquee-card {
        padding: 8px 16px 8px 12px;
        gap: 12px;
        min-height: 56px;
        border-radius: 12px;
    }

    .subserv-marquee-logo-wrap {
        height: 38px;
        min-width: 38px;
        max-width: 90px;
        padding: 4px 8px;
        border-radius: 8px;
    }

    .subserv-marquee-logo-wrap img {
        height: 30px;
        max-width: 80px;
    }

    .subserv-marquee-name {
        font-size: 14px;
    }
}

/* ==========================================================================
   Creative Blockchain Services 12-Card Grid Section (Minimalist Creative)
   ========================================================================== */
.subserv-title-orange-gradient {
    background: linear-gradient(135deg, #e35611 0%, #ff7a1a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.subserv-title-charcoal-gradient {
    background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.subserv-services-grid-section {
    position: relative;
    padding: 80px 0px;
    background-color: #f8fafc;
    overflow: hidden;
}

.subserv-grid-header {
    text-align: center;
    margin: 0 auto 55px;
    position: relative;
    z-index: 2;
}

.subserv-services-grid-section .subserv-section-badge {
    border-color: rgba(227, 86, 17, 0.3);
    background: rgba(227, 86, 17, 0.05);
    box-shadow: 0 4px 14px rgba(227, 86, 17, 0.1);
}

.subserv-services-grid-section .subserv-section-badge:hover {
    border-color: #e35611;
    box-shadow: 0 6px 20px rgba(227, 86, 17, 0.2);
}

.subserv-services-grid-section .subserv-section-badge-dot {
    background-color: #e35611;
    box-shadow: 0 0 8px rgba(227, 86, 17, 0.6);
}

.subserv-services-grid-section .subserv-section-badge-text {
    color: #e35611;
}

.subserv-grid-title {
    font-family: var(--subserv-font-heading);
    font-size: 36px;
    line-height: 1.25;
    font-weight: 800;
    margin: 0 0 16px;
    letter-spacing: -0.025em;
    color: #0f172a;
}

@media (min-width: 768px) {
    .subserv-grid-title {
        font-size: 44px;
    }
}

.subserv-grid-subtitle {
    font-size: 16.5px;
    line-height: 1.65;
    color: #64748b;
    margin: 0 auto;
    max-width: 920px;
    font-weight: 400;
}

.subserv-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

@media (min-width: 640px) {
    .subserv-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (min-width: 1024px) {
    .subserv-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }
}

/* ==========================================================================
   Minimalist Creative Card
   ========================================================================== */
@property --border-beam-angle {
    syntax: "<angle>";
    inherits: false;
    initial-value: 0deg;
}

@keyframes borderBeamSpin {
    0% {
        --border-beam-angle: 0deg;
    }

    100% {
        --border-beam-angle: 360deg;
    }
}

.subserv-minimal-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 32px 28px 26px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02), 0 6px 16px rgba(0, 0, 0, 0.02);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.35s ease,
        box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

/* 2026 Next-Gen Border Beam (Continuous Luminous Comet Travelling Around Border) */
.subserv-minimal-card::before {
    content: '';
    position: absolute;
    inset: -1.5px;
    border-radius: 21.5px;
    padding: 1.5px;
    background: conic-gradient(from var(--border-beam-angle, 0deg), transparent 60%, #0284c7 84%, #00d2ff 94%, #ffffff 98%, transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    animation: borderBeamSpin 3s linear infinite;
    z-index: 2;
}

.subserv-minimal-card:nth-child(even)::before {
    background: conic-gradient(from var(--border-beam-angle, 0deg), transparent 60%, #e35611 84%, #ff7a1a 94%, #ffd166 98%, transparent 100%);
}

.subserv-minimal-card:hover::before {
    opacity: 1;
}

.subserv-minimal-card:hover {
    transform: translateY(-6px);
    border-color: rgba(2, 132, 199, 0.3);
    box-shadow: 0 20px 40px -12px rgba(2, 132, 199, 0.16), 0 0 20px -4px rgba(2, 132, 199, 0.2);
}

.subserv-minimal-card:nth-child(even):hover {
    border-color: rgba(227, 86, 17, 0.3);
    box-shadow: 0 20px 40px -12px rgba(227, 86, 17, 0.16), 0 0 20px -4px rgba(227, 86, 17, 0.2);
}

/* Top Row: Icon + Index */
.subserv-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.subserv-minimal-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid #edf2f7;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
    color: #0284c7;
    perspective: 600px;
}

.subserv-minimal-icon-wrap svg {
    color: #0284c7;
}

.subserv-minimal-card:nth-child(even) .subserv-minimal-icon-wrap svg {
    color: #e35611;
}

.subserv-minimal-icon-wrap svg {
    width: 26px;
    height: 26px;
    display: block;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.subserv-minimal-icon-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.subserv-minimal-card:hover .subserv-minimal-icon-wrap {
    background: rgba(2, 132, 199, 0.08);
    border-color: rgba(2, 132, 199, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(2, 132, 199, 0.12);
}

.subserv-minimal-card:nth-child(even):hover .subserv-minimal-icon-wrap {
    background: rgba(227, 86, 17, 0.08);
    border-color: rgba(227, 86, 17, 0.3);
    box-shadow: 0 8px 20px rgba(227, 86, 17, 0.12);
}

.subserv-minimal-card:hover .subserv-minimal-icon-wrap svg {
    transform: rotateY(360deg) scale(1.12);
}

.subserv-minimal-card:hover .subserv-minimal-icon-wrap img {
    transform: rotateY(360deg) scale(1.08);
}

.subserv-card-num {
    font-family: var(--subserv-font-heading);
    font-size: 14px;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.subserv-minimal-card:hover .subserv-card-num {
    color: #0f172a;
}

/* Card Heading */
.subserv-card-title {
    font-family: var(--subserv-font-heading);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
    color: #0f172a;
    margin: 0 0 12px;
    letter-spacing: -0.015em;
    transition: color 0.25s ease;
}

.subserv-minimal-card:hover .subserv-card-title {
    color: #0284c7;
}

.subserv-minimal-card:nth-child(even):hover .subserv-card-title {
    color: #e35611;
}

/* Card Description */
.subserv-card-desc {
    font-size: 14.5px;
    line-height: 1.7;
    color: #64748b;
    margin: 0 0 24px;
    flex-grow: 1;
}

.subserv-inline-link {
    color: #0284c7;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.subserv-inline-link:hover {
    color: #0369a1;
}

.subserv-minimal-card:nth-child(even) .subserv-inline-link {
    color: #e35611;
}

.subserv-minimal-card:nth-child(even) .subserv-inline-link:hover {
    color: #c2410c;
}

/* Bottom Action Row */
.subserv-card-action-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    border-top: 1px solid #f1f5f9;
    margin-top: auto;
}

.subserv-action-label {
    font-family: var(--subserv-font-heading);
    font-size: 13.5px;
    font-weight: 700;
    color: #334155;
    transition: color 0.25s ease;
}

.subserv-minimal-card:hover .subserv-action-label {
    color: #0284c7;
}

.subserv-minimal-card:nth-child(even):hover .subserv-action-label {
    color: #e35611;
}

.subserv-circle-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.subserv-circle-arrow svg {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.subserv-minimal-card:hover .subserv-circle-arrow {
    background: #0284c7;
    border-color: #0284c7;
    color: #ffffff;
}

.subserv-minimal-card:nth-child(even):hover .subserv-circle-arrow {
    background: #e35611;
    border-color: #e35611;
    color: #ffffff;
}

.subserv-minimal-card:hover .subserv-circle-arrow svg {
    transform: translate(2px, -2px);
}

@media (max-width: 767px) {
    .subserv-services-grid-section {
        padding: 55px 0 65px;
    }

    .subserv-grid-title {
        font-size: 28px;
    }

    .subserv-grid-subtitle {
        font-size: 14.5px;
    }

    .subserv-minimal-card {
        padding: 24px 20px 20px;
        border-radius: 18px;
    }

    .subserv-minimal-icon-wrap {
        width: 48px;
        height: 48px;
        padding: 10px;
    }

    .subserv-card-title {
        font-size: 18.5px;
    }

    .subserv-card-desc {
        font-size: 14px;
        line-height: 1.65;
        margin-bottom: 18px;
    }

    .subserv-circle-arrow {
        width: 32px;
        height: 32px;
    }
}

/* ==========================================================================
   Compact Minimal Decentralized Revolution CTA Bar
   ========================================================================== */
.subserv-cta-section {
    position: relative;
    margin: 50px 0px;
}

.subserv-cta-minimal-bar {
    background: #0b1120;
    background-image:
        radial-gradient(circle at 10% 50%, rgba(227, 86, 17, 0.18) 0%, transparent 45%),
        radial-gradient(circle at 90% 50%, rgba(2, 132, 199, 0.18) 0%, transparent 45%),
        linear-gradient(135deg, #0b1120 0%, #0f172a 100%);
    border: 1px solid rgba(227, 86, 17, 0.25);
    border-radius: 20px;
    padding: 26px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 12px 35px -10px rgba(0, 0, 0, 0.25);
}

.subserv-cta-text-col {
    max-width: 720px;
}

.subserv-cta-compact-title {
    font-family: var(--subserv-font-heading);
    font-size: 22px;
    font-weight: 800;
    line-height: 1.32;
    color: #ffffff;
    margin: 0 0 5px;
    letter-spacing: -0.015em;
}

.subserv-cta-accent-orange {
    color: #ff7a1a;
    display: inline-block;
}

.subserv-cta-compact-sub {
    font-size: 15px;
    line-height: 1.5;
    color: #e2e8f0;
    font-weight: 400;
    margin: 0;
}

.subserv-cta-compact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 28px;
    border-radius: 100px;
    background: linear-gradient(135deg, #e35611 0%, #ff7a1a 100%);
    color: #ffffff;
    font-family: var(--subserv-font-heading);
    font-size: 14.5px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(227, 86, 17, 0.4);
    transition: all 0.3s ease;
}

.subserv-cta-compact-btn svg {
    transition: transform 0.25s ease;
}

.subserv-cta-compact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(227, 86, 17, 0.6);
    color: #ffffff;
}

.subserv-cta-compact-btn:hover svg {
    transform: translateX(3px);
}

@media (max-width: 767px) {
    .subserv-cta-section {
        padding: 10px 0 50px;
        margin-bottom: 0;
    }

    .subserv-cta-minimal-bar {
        flex-direction: column;
        align-items: flex-start;
        padding: 22px 20px;
        gap: 16px;
    }

    .subserv-cta-compact-title {
        font-size: 18px;
    }

    .subserv-cta-compact-sub {
        font-size: 13.5px;
    }

    .subserv-cta-compact-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }
}

/* ==========================================================================
   Matter.js Interactive Clients Physics Section
   ========================================================================== */
.subserv-matter-clients-section {
    position: relative;
    padding: 75px 0 75px;
    background-color: #ffffff;
    overflow: hidden;
}

.subserv-matter-canvas-wrapper {
    position: relative;
    width: 100%;
    height: 540px;
    background: radial-gradient(circle at 50% 25%, rgba(227, 86, 17, 0.05) 0%, transparent 60%),
        radial-gradient(circle at 80% 85%, rgba(2, 132, 199, 0.05) 0%, transparent 60%),
        linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    border: 1px solid #e2e8f0;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 16px 40px -12px rgba(15, 23, 42, 0.07);
    touch-action: pan-y;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.subserv-matter-inside-header {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 94%;
    max-width: 820px;
    height: 155px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    pointer-events: none;
    z-index: 5;
    box-sizing: border-box;
}

.subserv-header-trapezoid-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: visible;
    filter: drop-shadow(0 10px 20px rgba(15, 23, 42, 0.04));
}

.subserv-header-content {
    position: relative;
    z-index: 2;
    padding: 20px 40px 10px;
    max-width: 680px;
}

.subserv-matter-title-inside {
    font-family: var(--subserv-font-heading);
    font-size: 26px;
    line-height: 1.25;
    font-weight: 800;
    margin: 0 0 8px;
    letter-spacing: -0.025em;
    color: #0f172a;
}

@media (min-width: 768px) {
    .subserv-matter-title-inside {
        font-size: 36px;
    }
}

.subserv-matter-subtitle-inside {
    font-size: 14px;
    line-height: 1.55;
    color: #64748b;
    margin: 0 auto;
    max-width: 580px;
}

@media (min-width: 768px) {
    .subserv-matter-subtitle-inside {
        font-size: 15.5px;
    }
}

.subserv-matter-canvas-wrapper:active {
    cursor: grabbing;
}

.subserv-matter-canvas-wrapper canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.subserv-matter-dom-layer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.subserv-matter-body-item {
    position: absolute;
    top: 0;
    left: 0;
    transform-origin: center center;
    will-change: transform;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.subserv-matter-logo-pill {
    width: 100%;
    height: 100%;
    border-radius: 100px;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    box-sizing: border-box;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Distinct pill background tints & glowing borders */
.subserv-pill-orange {
    background: #fff8f5;
    border: 1.5px solid rgba(227, 86, 17, 0.4);
    box-shadow: 0 8px 20px rgba(227, 86, 17, 0.1);
}

.subserv-pill-cyan {
    background: #f0f9ff;
    border: 1.5px solid rgba(2, 132, 199, 0.35);
    box-shadow: 0 8px 20px rgba(2, 132, 199, 0.1);
}

.subserv-pill-purple {
    background: #faf5ff;
    border: 1.5px solid rgba(168, 85, 247, 0.35);
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.09);
}

.subserv-pill-emerald {
    background: #f0fdf4;
    border: 1.5px solid rgba(16, 185, 129, 0.35);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.09);
}

.subserv-pill-amber {
    background: #fffbeb;
    border: 1.5px solid rgba(245, 158, 11, 0.35);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.09);
}

.subserv-pill-indigo {
    background: #eef2ff;
    border: 1.5px solid rgba(99, 102, 241, 0.35);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.09);
}

.subserv-pill-rose {
    background: #fff1f2;
    border: 1.5px solid rgba(244, 63, 94, 0.35);
    box-shadow: 0 8px 20px rgba(244, 63, 94, 0.09);
}

.subserv-matter-logo-pill img {
    max-width: 140px;
    max-height: 46px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.03));
}

.subserv-matter-tag-pill {
    width: 100%;
    height: 100%;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--subserv-font-heading);
    font-size: 14px;
    font-weight: 700;
    padding: 0 20px;
    box-sizing: border-box;
    white-space: nowrap;
    letter-spacing: -0.01em;
}

.subserv-tag-orange {
    background: linear-gradient(135deg, #e35611 0%, #ff7a1a 100%);
    color: #ffffff;
    border: 1.5px solid #e35611;
    box-shadow: 0 6px 18px rgba(227, 86, 17, 0.3);
}

.subserv-tag-cyan {
    background: linear-gradient(135deg, #0284c7 0%, #00d2ff 100%);
    color: #ffffff;
    border: 1.5px solid #0284c7;
    box-shadow: 0 6px 18px rgba(2, 132, 199, 0.28);
}

.subserv-tag-white {
    background: #ffffff;
    color: #0f172a;
    border: 1.5px solid #e2e8f0;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.05);
}

@media (max-width: 767px) {
    .subserv-matter-clients-section {
        padding: 45px 0 55px;
    }

    .subserv-matter-title {
        font-size: 26px;
    }

    .subserv-matter-subtitle {
        font-size: 14px;
    }

    .subserv-matter-canvas-wrapper {
        height: 490px;
        border-radius: 20px;
    }

    .subserv-matter-inside-header {
        width: 96%;
        height: 130px;
    }

    .subserv-header-content {
        padding: 12px 16px 6px;
    }

    .subserv-matter-title-inside {
        font-size: 19px;
        margin: 0 0 4px;
    }

    .subserv-matter-subtitle-inside {
        font-size: 12px;
        line-height: 1.4;
        max-width: 300px;
    }

    .subserv-matter-logo-pill {
        padding: 0 14px;
    }

    .subserv-matter-logo-pill img {
        max-width: 95px;
        max-height: 30px;
    }

    .subserv-matter-tag-pill {
        font-size: 11.5px;
        padding: 0 12px;
    }
}

/*  */

/* ==========================================================================
   INTERACTIVE TRENDS FAN SECTION (MINIMAL DESIGN)
   ========================================================================== */
.subserv-trends-section,
.trends-section {
    position: relative;
    padding: 70px 0 85px;
    background: #fafbfd;
    overflow: hidden;
}

.subserv-trends-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 40px;
}

.subserv-trends-header .subserv-section-badge {
    margin-bottom: 14px;
}

.subserv-trends-title,
.trends-title {
    font-family: var(--subserv-font-heading);
    font-weight: 800;
    font-size: 36px;
    color: var(--color-text-dark);
    line-height: 1.25;
    letter-spacing: -0.8px;
    margin-bottom: 12px;
}

.subserv-trends-subtitle {
    font-size: 15px;
    color: var(--color-text-medium);
    line-height: 1.6;
    max-width: 620px;
    margin: 0 auto;
}

.subserv-title-orange-gradient,
.trends-title span.orange-gradient {
    background: linear-gradient(135deg, var(--color-accent-orange) 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trends-fan-container {
    display: flex;
    gap: 12px;
    width: 100%;
    max-width: 1080px;
    height: 380px;
    perspective: 1000px;
    margin: 10px auto 0;
}

.trend-fan-card {
    flex: 0.65;
    max-width: 86px;
    height: 100%;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    transition: flex 0.5s cubic-bezier(0.16, 1, 0.3, 1), max-width 0.5s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease, border-color 0.3s ease, box-shadow 0.4s ease;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
}

.trend-fan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    transition: height 0.3s ease;
    z-index: 3;
}

/* Category Minimal Accent Colors */
.trend-fan-card[data-category="ai"]::before {
    background: #0d9488;
}

.trend-fan-card[data-category="compliance"]::before {
    background: #ff5722;
}

.trend-fan-card[data-category="metaverse"]::before {
    background: #ec4899;
}

.trend-fan-card[data-category="stability"]::before {
    background: #0284c7;
}

.trend-fan-card[data-category="identity"]::before {
    background: #8b5cf6;
}

/* Active Expansion */
.trend-fan-card.active {
    flex: 5.5;
    max-width: 100%;
    padding: 28px 30px;
    background: #ffffff;
    border-color: #cbd5e1;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.trend-fan-card.active::before {
    height: 4px;
}

.trend-fan-card[data-category="ai"].active {
    border-color: rgba(13, 148, 136, 0.35);
}

.trend-fan-card[data-category="compliance"].active {
    border-color: rgba(255, 87, 34, 0.35);
}

.trend-fan-card[data-category="metaverse"].active {
    border-color: rgba(236, 72, 153, 0.35);
}

.trend-fan-card[data-category="stability"].active {
    border-color: rgba(2, 132, 199, 0.35);
}

.trend-fan-card[data-category="identity"].active {
    border-color: rgba(139, 92, 246, 0.35);
}

/* ==========================================================================
   COLLAPSED CONTENT LAYOUT (SMOOTH TRANSITION)
   ========================================================================== */
.card-collapsed-content {
    position: absolute;
    inset: 0;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
    pointer-events: none;
    z-index: 2;
}

.trend-fan-card.active .card-collapsed-content {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.92);
    pointer-events: none;
}

.collapsed-num {
    font-family: var(--subserv-font-heading);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: -0.3px;
    line-height: 1;
    color: #94a3b8;
    padding-top: 4px;
}

.collapsed-title-vertical {
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    font-family: var(--subserv-font-heading);
    font-weight: 600;
    font-size: 13.5px;
    color: #334155;
    white-space: nowrap;
    letter-spacing: -0.1px;
    margin: 16px 0;
}

.collapsed-icon-wrap {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    transition: all 0.25s ease;
}

.collapsed-icon-wrap svg,
.collapsed-icon {
    width: 16px;
    height: 16px;
}

.trend-fan-card[data-category="ai"] .collapsed-icon-wrap svg {
    color: #0d9488;
}

.trend-fan-card[data-category="compliance"] .collapsed-icon-wrap svg {
    color: #ff5722;
}

.trend-fan-card[data-category="metaverse"] .collapsed-icon-wrap svg {
    color: #ec4899;
}

.trend-fan-card[data-category="stability"] .collapsed-icon-wrap svg {
    color: #0284c7;
}

.trend-fan-card[data-category="identity"] .collapsed-icon-wrap svg {
    color: #8b5cf6;
}

/* ==========================================================================
   EXPANDED CONTENT LAYOUT (SMOOTH REVEAL - NO TEXT WRAP/REFLOW)
   ========================================================================== */
.card-expanded-content {
    position: absolute;
    top: 0;
    left: 0;
    max-width: none;
    min-width: 480px;
    height: 100%;
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 2;
    overflow: hidden;
    box-sizing: border-box;
}

.trend-fan-card.active .card-expanded-content {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.35s ease 0.1s, visibility 0.35s 0.1s;
}

.expanded-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    width: 100%;
}

.expanded-num {
    font-family: var(--subserv-font-heading);
    font-weight: 700;
    font-size: 11.5px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 6px;
    white-space: nowrap;
}

.trend-fan-card[data-category="ai"] .expanded-num {
    color: #0d9488;
    background-color: rgba(13, 148, 136, 0.08);
}

.trend-fan-card[data-category="compliance"] .expanded-num {
    color: #ff5722;
    background-color: rgba(255, 87, 34, 0.08);
}

.trend-fan-card[data-category="metaverse"] .expanded-num {
    color: #ec4899;
    background-color: rgba(236, 72, 153, 0.08);
}

.trend-fan-card[data-category="stability"] .expanded-num {
    color: #0284c7;
    background-color: rgba(2, 132, 199, 0.08);
}

.trend-fan-card[data-category="identity"] .expanded-num {
    color: #8b5cf6;
    background-color: rgba(139, 92, 246, 0.08);
}

.expanded-icon-wrapper {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    flex-shrink: 0;
}

.trend-fan-card[data-category="ai"] .expanded-icon-wrapper {
    color: #0d9488;
    background-color: rgba(13, 148, 136, 0.06);
    border-color: rgba(13, 148, 136, 0.15);
}

.trend-fan-card[data-category="compliance"] .expanded-icon-wrapper {
    color: #ff5722;
    background-color: rgba(255, 87, 34, 0.06);
    border-color: rgba(255, 87, 34, 0.15);
}

.trend-fan-card[data-category="metaverse"] .expanded-icon-wrapper {
    color: #ec4899;
    background-color: rgba(236, 72, 153, 0.06);
    border-color: rgba(236, 72, 153, 0.15);
}

.trend-fan-card[data-category="stability"] .expanded-icon-wrapper {
    color: #0284c7;
    background-color: rgba(2, 132, 199, 0.06);
    border-color: rgba(2, 132, 199, 0.15);
}

.trend-fan-card[data-category="identity"] .expanded-icon-wrapper {
    color: #8b5cf6;
    background-color: rgba(139, 92, 246, 0.06);
    border-color: rgba(139, 92, 246, 0.15);
}

.expanded-icon-wrapper svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.expanded-body {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
    width: 100%;
}

.expanded-title {
    font-family: var(--subserv-font-heading);
    font-weight: 700;
    font-size: 21px;
    color: #0f172a;
    margin-bottom: 10px;
    letter-spacing: -0.4px;
    line-height: 1.3;
}

.expanded-desc {
    font-size: 14.5px;
    color: #64748b;
    line-height: 1.65;
    margin-bottom: 20px;
}

/* ==========================================================================
   RESPONSIVE LAYOUT (TABLET & MOBILE)
   ========================================================================== */
@media (max-width: 991px) {
    .trends-fan-container {
        flex-direction: column;
        height: auto;
        gap: 10px;
    }

    .trend-fan-card {
        width: 100%;
        max-width: 100%;
        min-height: 64px;
        flex: none;
        transition: min-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .trend-fan-card.active {
        flex: none;
        min-height: 220px;
        transform: none;
    }

    .card-collapsed-content {
        flex-direction: row;
        align-items: center;
        padding: 14px 20px;
        width: 100%;
        height: 100%;
    }

    .card-expanded-content {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        padding: 20px 22px;
    }

    .collapsed-title-vertical {
        writing-mode: horizontal-tb;
        transform: none;
        margin: 0 14px;
        font-size: 14px;
        flex: 1;
    }

    .collapsed-num {
        font-size: 15px;
        padding-top: 0;
    }

    .collapsed-icon-wrap {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 575px) {

    .subserv-trends-title,
    .trends-title {
        font-size: 26px;
        line-height: 1.3;
    }

    .subserv-trends-subtitle {
        font-size: 14px;
    }

    .expanded-title {
        font-size: 18px;
    }

    .expanded-desc {
        font-size: 13.5px;
    }
}

/* ==========================================================================
   PROVEN BLOCKCHAIN SOLUTIONS & CASE STUDIES (DARK MODAL WINDOW DESIGN)
   ========================================================================== */
.subserv-showcase-slider-wrap .swiper-slide {
    background: transparent;
    padding: 0px;
    height: auto;
    display: flex;
    box-sizing: border-box;
}

.subserv-showcase-sec {
    position: relative;
    padding: 105px 0 120px;
    background-color: #070c18;
    background-image:
        radial-gradient(circle at 15% 15%, rgba(2, 132, 199, 0.18) 0%, transparent 50%),
        radial-gradient(circle at 85% 25%, rgba(227, 86, 17, 0.14) 0%, transparent 50%),
        radial-gradient(circle at 50% 85%, rgba(99, 102, 241, 0.12) 0%, transparent 50%),
        linear-gradient(180deg, #070c18 0%, #0c1322 100%);
    overflow: hidden;
}

/* Background Grid Overlay (Dark Theme) */
.subserv-showcase-sec .subserv-showcase-grid-pattern {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: 36px 36px;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 40%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

/* Ambient Glow Orbs */
.subserv-showcase-sec .subserv-showcase-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
    pointer-events: none;
    z-index: 1;
    opacity: 0.75;
    animation: subservShowcaseGlowPulse 8s ease-in-out infinite alternate;
}

.subserv-showcase-sec .subserv-showcase-glow.glow-cyan {
    top: 5%;
    left: -5%;
    width: 440px;
    height: 440px;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.28) 0%, transparent 70%);
}

.subserv-showcase-sec .subserv-showcase-glow.glow-orange {
    bottom: 10%;
    right: -5%;
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(227, 86, 17, 0.22) 0%, transparent 70%);
    animation-delay: -3s;
}

.subserv-showcase-sec .subserv-showcase-glow.glow-purple {
    top: 45%;
    left: 45%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.16) 0%, transparent 70%);
    animation-delay: -5s;
}

@keyframes subservShowcaseGlowPulse {
    0% {
        transform: scale(0.95) translate(0, 0);
        opacity: 0.55;
    }

    100% {
        transform: scale(1.1) translate(15px, -15px);
        opacity: 0.9;
    }
}



/* Header */
.subserv-showcase-sec .subserv-showcase-header {
    text-align: center;
    margin: 0 auto 50px;
}

.subserv-showcase-sec .subserv-showcase-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-bottom: 18px;
}

.subserv-showcase-sec .subserv-showcase-badge-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #38bdf8;
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.8);
    position: relative;
}

.subserv-showcase-sec .subserv-showcase-badge-pulse::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: rgba(56, 189, 248, 0.35);
    animation: subservBadgePulse 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.subserv-showcase-sec .subserv-showcase-badge-text {
    font-family: var(--subserv-font-heading, 'Inter', sans-serif);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #38bdf8;
}

.subserv-showcase-sec .subserv-showcase-title {
    font-family: var(--subserv-font-heading, 'Inter', sans-serif);
    font-size: 38px;
    font-weight: 800;
    line-height: 1.22;
    letter-spacing: -0.025em;
    color: #ffffff;
    margin: 0 0 14px;
}

.subserv-showcase-sec .subserv-showcase-title span {
    background: linear-gradient(135deg, #ff7a1a 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subserv-showcase-sec .subserv-showcase-subtitle {
    font-family: var(--subserv-font-body, 'Inter', sans-serif);
    font-size: 16px;
    line-height: 1.6;
    color: #94a3b8;
    max-width: 940px;
    margin: 0 auto;
}

/* Swiper Slider Wrapper */
.subserv-showcase-sec .subserv-showcase-slider-wrap {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

/* Layered 3D Card Deck Backdrop Frame (Dark Glowing Halo) */
.subserv-showcase-sec .subserv-showcase-deck-backdrop {
    display: none;
}

.subserv-showcase-sec .subserv-showcase-swiper {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    padding: 10px 4px 14px;
}

/* ==========================================================================
   DARK MODAL WINDOW CARD
   ========================================================================== */
.subserv-showcase-sec .subserv-modal-card {
    position: relative;
    background: #0f172a;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 20px 40px -15px rgba(0, 0, 0, 0.65),
        0 4px 20px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    transition: all 0.35s ease;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.subserv-showcase-sec .subserv-modal-card:hover {
    border-color: rgba(56, 189, 248, 0.35);
    transform: translateY(-4px);
    box-shadow:
        0 25px 50px -12px rgba(2, 132, 199, 0.25),
        0 4px 20px rgba(0, 0, 0, 0.5);
}

/* Modal Window Header Bar (Dark) */
.subserv-showcase-sec .subserv-modal-top-bar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 14px 22px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.subserv-showcase-sec .subserv-modal-counter {
    font-family: var(--subserv-font-heading, 'Inter', sans-serif);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.22);
    padding: 3px 12px;
    border-radius: 9999px;
    box-shadow: 0 0 12px rgba(56, 189, 248, 0.15);
}

/* Modal Body (Dark Theme) */
.subserv-showcase-sec .subserv-modal-body {
    padding: 26px 24px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.subserv-showcase-sec .subserv-modal-title {
    font-family: var(--subserv-font-heading, 'Inter', sans-serif);
    font-size: 19px;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin: 0 0 12px;
    transition: color 0.25s ease;
}

.subserv-showcase-sec .subserv-modal-card:hover .subserv-modal-title {
    color: #38bdf8;
}

.subserv-showcase-sec .subserv-modal-desc {
    font-family: var(--subserv-font-body, 'Inter', sans-serif);
    font-size: 14.5px;
    line-height: 1.65;
    color: #94a3b8;
    margin: 0;
}

/* Modal Footer (Dark Theme) */
.subserv-showcase-sec .subserv-modal-foot {
    padding: 16px 24px 22px;
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: auto;
}

.subserv-showcase-sec .subserv-modal-foot .btn-secondary-gray {
    width: 100%;
    justify-content: center;
    font-size: 14px;
    padding: 12px 18px;
}


/* Bottom Controls: Navigation & Progress (Dark Theme) */
.subserv-showcase-sec .subserv-showcase-controls {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 32px;
    padding: 0 8px;
}

.subserv-showcase-sec .subserv-showcase-pagination {
    display: flex;
    align-items: center;
    gap: 8px;
}

.subserv-showcase-sec .subserv-showcase-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 9999px;
    background: #334155;
    opacity: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    margin: 0 !important;
}

.subserv-showcase-sec .subserv-showcase-pagination .swiper-pagination-bullet-active {
    width: 32px;
    background: linear-gradient(90deg, #0284c7, #e35611);
    box-shadow: 0 0 12px rgba(2, 132, 199, 0.6);
}

.subserv-showcase-sec .subserv-showcase-nav-btns {
    display: flex;
    align-items: center;
    gap: 12px;
}

.subserv-showcase-sec .subserv-showcase-nav-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
    outline: none;
    user-select: none;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.subserv-showcase-sec .subserv-showcase-nav-btn svg {
    width: 19px;
    height: 19px;
    stroke: currentColor;
    transition: transform 0.25s ease;
}

.subserv-showcase-sec .subserv-showcase-nav-btn:hover:not(.swiper-button-disabled) {
    background: linear-gradient(135deg, #e35611 0%, #ff6b1a 100%);
    color: #ffffff;
    border-color: #e35611;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(227, 86, 17, 0.4);
}

.subserv-showcase-sec .subserv-showcase-nav-btn.subserv-showcase-prev:hover:not(.swiper-button-disabled) svg {
    transform: translateX(-2px);
}

.subserv-showcase-sec .subserv-showcase-nav-btn.subserv-showcase-next:hover:not(.swiper-button-disabled) svg {
    transform: translateX(2px);
}

.subserv-showcase-sec .subserv-showcase-nav-btn.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
    box-shadow: none;
}

/* Responsive Breakpoints */
@media screen and (max-width: 991px) {
    .subserv-showcase-sec {
        padding: 75px 0 85px;
    }

    .subserv-showcase-sec .subserv-showcase-title {
        font-size: 30px;
        line-height: 1.25;
    }

    .subserv-showcase-sec .subserv-showcase-deck-backdrop {
        inset: -6px -6px;
        border-radius: 24px;
    }

    .subserv-showcase-sec .subserv-modal-top-bar {
        padding: 16px 24px;
    }

    .subserv-showcase-sec .subserv-modal-body {
        padding: 30px 24px 22px;
    }

    .subserv-showcase-sec .subserv-modal-title {
        font-size: 22px;
    }

    .subserv-showcase-sec .subserv-modal-foot {
        padding: 18px 24px 24px;
    }
}

@media screen and (max-width: 640px) {
    .subserv-showcase-sec {
        padding: 60px 0 70px;
    }

    .subserv-showcase-sec .subserv-showcase-title {
        font-size: 24px;
        line-height: 1.3;
    }

    .subserv-showcase-sec .subserv-showcase-subtitle {
        font-size: 14px;
    }

    .subserv-showcase-sec .subserv-showcase-deck-backdrop {
        display: none;
    }

    .subserv-showcase-sec .subserv-modal-top-bar {
        padding: 14px 18px;
    }

    .subserv-showcase-sec .subserv-modal-body {
        padding: 24px 18px 18px;
    }

    .subserv-showcase-sec .subserv-modal-desc {
        font-size: 14px;
    }

    .subserv-showcase-sec .subserv-modal-foot {
        padding: 16px 18px 20px;
    }

    .subserv-showcase-sec .btn-secondary-gray {
        width: 100%;
        justify-content: center;
        padding: 13px 20px;
        font-size: 14px;
    }

    .subserv-showcase-sec .subserv-showcase-nav-btn {
        width: 42px;
        height: 42px;
    }
}

/* ==========================================================================
   BLOCKCHAIN / TECH EXPERT PROFILE SECTION (CREATIVE FLOATING TECH & MASTER CARD)
   ========================================================================== */
.subserv-expert-sec {
    position: relative;
    padding: 95px 0;
    background-color: #fafbfc;
    overflow: hidden;
}

/* Creative Background Decorative Layer */
.subserv-expert-bg-decor {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

/* Iridescent Ambient Gradient Waves */
.subserv-expert-waves-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 140%;
    pointer-events: none;
    opacity: 0.6;
}

/* Floating Glassmorphic Web3 Capsules */
.subserv-expert-float-capsule {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 100px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 0 15px rgba(254, 74, 35, 0.04);
    font-family: var(--subserv-font-heading, 'Inter', sans-serif);
    font-size: 12.5px;
    font-weight: 700;
    color: #1e293b;
    pointer-events: none;
    z-index: 2;
    animation: subservFloat 6s ease-in-out infinite alternate;
}

.capsule-tr {
    top: 25px;
    right: 8%;
    animation-delay: 0s;
}

.capsule-bl {
    bottom: 25px;
    left: 6%;
    animation-delay: 2s;
}

.capsule-tl {
    top: 30px;
    left: 8%;
    animation-delay: 4s;
}

@keyframes subservFloat {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-8px) rotate(0.5deg);
    }

    100% {
        transform: translateY(4px) rotate(-0.5deg);
    }
}

.capsule-icon {
    font-size: 14px;
}

.capsule-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fe4a23;
    display: inline-block;
    box-shadow: 0 0 6px rgba(254, 74, 35, 0.6);
}

.capsule-dot.cyan {
    background: #0284c7;
    box-shadow: 0 0 6px rgba(2, 132, 199, 0.6);
}

.capsule-dot.purple {
    background: #774dff;
    box-shadow: 0 0 6px rgba(119, 77, 255, 0.6);
}

/* Master Card Container */
.subserv-expert-sec .container {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.subserv-expert-card-wrap {
    position: relative;
    width: 100%;
}

.subserv-expert-card-halo {
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, rgba(254, 74, 35, 0.22) 0%, rgba(119, 77, 255, 0.12) 50%, rgba(2, 132, 199, 0.2) 100%);
    border-radius: 30px;
    filter: blur(14px);
    opacity: 0.7;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.subserv-expert-card-wrap:hover .subserv-expert-card-halo {
    opacity: 0.95;
}

.subserv-expert-master-card {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 310px 1fr;
    gap: 48px;
    align-items: center;
    background: #ffffff;
    border-radius: 28px;
    padding: 30px;
}

/* Left Profile Details */
.subserv-expert-col-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #f8fafc;
    border: 1px solid #eaecf0;
    border-radius: 20px;
    padding: 22px;
}

.subserv-expert-photo-wrap {
    position: relative;
    width: 100%;
    max-width: 250px;
    margin-bottom: 20px;
}

.subserv-expert-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    display: block;
    background-color: #ffffff;
}

.subserv-expert-exp-tag {
    position: absolute;
    bottom: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    border: 1px solid #fed7cc;
    border-radius: 100px;
    padding: 4px 14px;
    font-family: var(--subserv-font-heading, 'Inter', sans-serif);
    font-size: 11.5px;
    font-weight: 700;
    color: #fe4a23;
    white-space: nowrap;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
}

.subserv-expert-profile-details {
    width: 100%;
    text-align: center;
}

.subserv-expert-sidebar-name {
    font-family: var(--subserv-font-heading, 'Inter', sans-serif);
    font-size: 19px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 4px;
}

.subserv-expert-sidebar-title {
    font-size: 13px;
    font-weight: 600;
    color: #fe4a23;
    margin: 0 0 16px;
    line-height: 1.4;
}

.subserv-expert-linkedin-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 9px 14px;
    background: #ffffff;
    color: #0a66c2;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-family: var(--subserv-font-heading, 'Inter', sans-serif);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.subserv-expert-linkedin-link:hover {
    background: #f0f7ff;
    border-color: #0a66c2;
    color: #004182;
}

.subserv-expert-linkedin-link svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
    flex-shrink: 0;
}

/* Right Content */
.subserv-expert-col-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.subserv-expert-heading {
    font-family: var(--subserv-font-heading, 'Inter', sans-serif);
    font-size: 30px;
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f172a;
    margin: 0 0 14px;
}

.subserv-expert-heading span {
    color: #fe4a23;
}

.subserv-expert-quote {
    border-left: 2.5px solid #fe4a23;
    padding-left: 12px;
    font-family: var(--subserv-font-heading, 'Inter', sans-serif);
    font-size: 15.5px;
    font-style: italic;
    font-weight: 500;
    color: #334155;
    margin: 0 0 18px;
    line-height: 1.5;
}

.subserv-expert-description {
    margin-bottom: 24px;
}

.subserv-expert-description p {
    font-size: 14.5px;
    line-height: 1.7;
    color: #475569;
    margin: 0 0 12px;
}

.subserv-expert-description p:last-child {
    margin-bottom: 0;
}

.subserv-expert-description strong {
    color: #0f172a;
    font-weight: 600;
}

/* Main CTA Button */
.subserv-expert-cta-wrap {
    display: flex;
    align-items: center;
}

.subserv-expert-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 26px;
    background: #fe4a23;
    color: #ffffff;
    font-family: var(--subserv-font-heading, 'Inter', sans-serif);
    font-size: 14.5px;
    font-weight: 700;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.subserv-expert-cta-btn:hover {
    background: #e23e19;
    transform: translateY(-2px);
}

.subserv-expert-cta-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.subserv-expert-cta-btn:hover svg {
    transform: translateX(3px);
}

/* Responsive */
@media screen and (max-width: 991px) {
    .subserv-expert-sec {
        padding: 60px 0;
    }

    .subserv-expert-master-card {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 32px 24px;
        border-radius: 22px;
    }

    .subserv-expert-col-left {
        max-width: 300px;
        margin: 0 auto;
        width: 100%;
    }

    .subserv-expert-heading {
        font-size: 25px;
    }
}

@media screen and (max-width: 767px) {
    .subserv-expert-sec {
        padding: 45px 0;
    }

    .subserv-expert-master-card {
        padding: 24px 18px;
        border-radius: 18px;
    }

    .subserv-expert-heading {
        font-size: 22px;
    }

    .subserv-expert-quote {
        font-size: 14px;
        margin-bottom: 14px;
    }

    .subserv-expert-description p {
        font-size: 13.5px;
        line-height: 1.65;
    }

    .subserv-expert-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 18px;
    }
}

/* ==========================================================================
   Sectors Benefiting Blockchain Services - 3-Column Center Hero Layout
   ========================================================================== */
.subserv-sectors-sec {
    position: relative;
    padding: 85px 20px;
    background: #ffffff;
    font-family: var(--subserv-font-body, 'Inter', sans-serif);
    overflow: hidden;
}

.subserv-sectors-container {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Centered Top Header */
.subserv-sectors-top-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 46px;
}

.subserv-sectors-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff5f2;
    border: 1px solid #fed7cc;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    color: #fe4a23;
    letter-spacing: 0.03em;
    margin-bottom: 14px;
}

.subserv-sectors-heading {
    font-family: var(--subserv-font-heading, 'Inter', sans-serif);
    font-size: 32px;
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #0f172a;
    margin: 0 0 12px;
}

.subserv-sectors-highlight {
    color: #fe4a23;
}

.subserv-sectors-subtext {
    font-size: 14.5px;
    line-height: 1.65;
    color: #64748b;
    margin: 0;
}

/* 3-Column Symmetrical Layout (5 Left, Center Hero, 5 Right) */
.subserv-sectors-center-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: center;
}

@media (min-width: 992px) {
    .subserv-sectors-center-layout {
        grid-template-columns: 1fr 1.15fr 1fr;
        gap: 24px;
    }
}

@media (min-width: 1200px) {
    .subserv-sectors-center-layout {
        grid-template-columns: 1.05fr 1.2fr 1.05fr;
        gap: 28px;
    }
}

/* Left and Right Card Columns */
.subserv-sectors-cards-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Center Hero Visual */
.subserv-sectors-center-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.subserv-sectors-visual-wrap {
    position: relative;
    width: 100%;
    max-width: 440px;
}

.subserv-sectors-glow-backdrop {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    background: radial-gradient(circle, rgba(254, 74, 35, 0.12) 0%, rgba(59, 130, 246, 0.08) 60%, transparent 80%);
    filter: blur(45px);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.subserv-sectors-visual-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #edf2f7;
    border-radius: 22px;
    padding: 16px;
    box-shadow: 0 18px 45px -10px rgba(15, 23, 42, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    z-index: 2;
}

.subserv-sectors-visual-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px -12px rgba(15, 23, 42, 0.14);
}

.subserv-sectors-main-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    object-fit: contain;
}

.subserv-sectors-live-badge {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0f172a;
    color: #ffffff;
    padding: 6px 18px;
    border-radius: 100px;
    font-size: 11.5px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.25);
    z-index: 3;
}

.subserv-sectors-live-badge .live-dot {
    width: 7px;
    height: 7px;
    background: #fe4a23;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(254, 74, 35, 0.35);
    animation: subservLivePulse 2s infinite ease-in-out;
}

@keyframes subservLivePulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.35);
        opacity: 0.6;
    }
}

/* Glowing Sector Cards */
.subserv-sector-glow-card {
    position: relative;
    background: #ffffff;
    border-radius: 14px;
    padding: 13px 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.025);
}

/* Alternating Border Glow Themes (Cyan/Blue & Amber/Orange) */
.subserv-sector-glow-card.theme-blue {
    border: 1.5px solid rgba(59, 130, 246, 0.3);
}

.subserv-sector-glow-card.theme-blue:hover {
    border-color: #3b82f6;
    box-shadow: 0 10px 24px -4px rgba(59, 130, 246, 0.16), 0 0 0 1px rgba(59, 130, 246, 0.25);
    transform: translateY(-2px);
    background: linear-gradient(160deg, #ffffff 0%, #f8fbff 100%);
}

.subserv-sector-glow-card.theme-amber {
    border: 1.5px solid rgba(254, 74, 35, 0.3);
}

.subserv-sector-glow-card.theme-amber:hover {
    border-color: #fe4a23;
    box-shadow: 0 10px 24px -4px rgba(254, 74, 35, 0.16), 0 0 0 1px rgba(254, 74, 35, 0.25);
    transform: translateY(-2px);
    background: linear-gradient(160deg, #ffffff 0%, #fffaf8 100%);
}

.subserv-sector-card-title {
    font-family: var(--subserv-font-heading, 'Inter', sans-serif);
    font-size: 16.5px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
    margin: 0 0 4px;
    transition: color 0.2s ease;
}

.subserv-sector-glow-card.theme-blue:hover .subserv-sector-card-title {
    color: #2563eb;
}

.subserv-sector-glow-card.theme-amber:hover .subserv-sector-card-title {
    color: #fe4a23;
}

.subserv-sector-card-desc {
    font-size: 13px;
    line-height: 1.5;
    color: #475569;
    margin: 0;
    word-break: normal;
    overflow-wrap: break-word;
}


@media screen and (max-width: 767px) {
    .subserv-sectors-sec {
        padding: 45px 16px;
    }

    .subserv-sectors-heading {
        font-size: 22px;
    }

    .subserv-sectors-subtext {
        font-size: 13.5px;
    }

    .subserv-sectors-center-layout {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .subserv-sectors-cards-col {
        gap: 10px;
    }

    .subserv-sector-glow-card {
        padding: 12px 14px;
    }
}

/*  */

.process-section {
    padding: 120px 0 150px;
    background-color: #06080e;
    background-image:
        radial-gradient(circle at 12% 20%, rgba(56, 189, 248, 0.10) 0%, transparent 45%),
        radial-gradient(circle at 88% 35%, rgba(139, 92, 246, 0.09) 0%, transparent 50%),
        radial-gradient(circle at 65% 85%, rgba(255, 87, 34, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.015) 0%, transparent 60%),
        linear-gradient(180deg, #05070d 0%, #090d16 50%, #05070d 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow-x: clip;
    overflow-y: visible;
    color: #f1f5f9;
}

.process-section::before {
    content: '';
    position: absolute;
    top: -120px;
    left: -100px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, rgba(56, 189, 248, 0.03) 50%, transparent 70%);
    pointer-events: none;
    filter: blur(60px);
    z-index: 0;
    animation: processAuraFloat 10s ease-in-out infinite alternate;
}

.process-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(255, 87, 34, 0.12) 0%, rgba(245, 158, 11, 0.03) 50%, transparent 70%);
    pointer-events: none;
    filter: blur(70px);
    z-index: 0;
    animation: processAuraFloat 12s ease-in-out infinite alternate-reverse;
}

@keyframes processAuraFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(30px, 40px) scale(1.1);
    }
}

.process-grid-layout {
    display: flex;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.process-sidebar-sticky {
    flex: 0 0 380px;
    max-width: 380px;
}

.process-steps-scroll {
    flex: 1;
    min-width: 0;
}

/* Left Sticky Side */
.process-sidebar-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 120px;
    align-self: start;
    height: fit-content;
    z-index: 10;
}

.process-meta-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter';
    font-size: 11.5px;
    font-weight: 700;
    color: #38bdf8;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(56, 189, 248, 0.08);
    border: 1px solid rgba(56, 189, 248, 0.22);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.12);
}

.process-meta-label::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #38bdf8;
    box-shadow: 0 0 8px #38bdf8;
    animation: processPulseDot 2s infinite ease-in-out;
}

@keyframes processPulseDot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.75);
    }
}

.process-sticky-title {
    font-family: var(--font-heading, 'Inter', sans-serif);
    font-size: 32px;
    line-height: 1.18;
    color: #ffffff;
    font-weight: 800;
    letter-spacing: -1px;
}

.process-sticky-title span.orange-highlight {
    background: linear-gradient(135deg, #ff6b35 0%, #ffa502 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.35));
}

.process-sticky-desc {
    margin-top: 22px;
    font-size: 15.5px;
    color: #94a3b8;
    line-height: 1.7;
}

/* Left Sidebar Creative Badges & Line Accent */
.process-sidebar-decor-line {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.process-protocol-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    backdrop-filter: blur(8px);
    font-size: 13px;
    font-weight: 600;
    color: #cbd5e1;
    transition: all 0.3s ease;
}

.process-protocol-pill:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(56, 189, 248, 0.3);
    transform: translateX(4px);
}

.protocol-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 10px #10b981;
    animation: processPulseDot 2s infinite ease-in-out;
}

.protocol-live-dot.cyan {
    background: #38bdf8;
    box-shadow: 0 0 10px #38bdf8;
}

/* Right Stepper Column */
.process-steps-scroll {
    position: relative;
    padding-left: 58px;
}

.minimal-spine {
    position: absolute;
    left: 0;
    top: 23px;
    bottom: 16px;
    width: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.12);
}

/* Animated continuous streaming laser particle */
.minimal-spine::before {
    content: '';
    position: absolute;
    top: 0;
    left: -1px;
    width: 5px;
    height: 120px;
    background: linear-gradient(180deg, transparent 0%, rgba(56, 189, 248, 0.85) 70%, #ffffff 100%);
    border-radius: 5px;
    filter: drop-shadow(0 0 8px #38bdf8);
    animation: spineLaserFlow 3.5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes spineLaserFlow {
    0% {
        top: 0%;
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    85% {
        opacity: 1;
    }

    100% {
        top: 88%;
        opacity: 0;
    }
}

.minimal-spine-progress {
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0%;
    background: linear-gradient(180deg, #38bdf8 0%, #00f2fe 35%, #3b82f6 70%, #ff5722 100%);
    box-shadow: 0 0 14px rgba(56, 189, 248, 0.9), 0 0 25px rgba(2, 132, 199, 0.6);
    border-radius: 4px;
    transition: height 0.15s ease-out;
}

/* Glowing Laser Head Bead at tip of progress */
.minimal-spine-progress::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: #ffffff;
    border: 2px solid #38bdf8;
    border-radius: 50%;
    box-shadow: 0 0 14px #38bdf8, 0 0 25px #00f2fe;
    animation: laserTipPulse 1.5s ease-in-out infinite;
}

@keyframes laserTipPulse {

    0%,
    100% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 0 12px #38bdf8, 0 0 20px #00f2fe;
    }

    50% {
        transform: translateX(-50%) scale(1.3);
        box-shadow: 0 0 20px #38bdf8, 0 0 35px #00f2fe;
    }
}

.steps-wrapper {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.minimal-step-item {
    display: flex;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.65;
}

.minimal-step-item.active,
.minimal-step-item:hover {
    opacity: 1;
}

.step-icon-indicator {
    position: absolute;
    left: -58px;
    top: 24px;
    transform: translateX(-50%);
    z-index: 5;
}

.step-dot {
    display: block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #0d1322;
    border: 2px solid #334155;
    box-shadow: 0 0 0 4px rgba(6, 8, 14, 0.95);
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.step-dot::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 50%;
    background: #334155;
    transition: all 0.3s ease;
}

.minimal-step-item.active .step-dot,
.minimal-step-item:hover .step-dot {
    background: #070a12;
    border-color: #38bdf8;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.95), 0 0 0 5px rgba(56, 189, 248, 0.25);
    transform: scale(1.25);
}

.minimal-step-item.active .step-dot::after,
.minimal-step-item:hover .step-dot::after {
    background: #38bdf8;
    box-shadow: 0 0 8px #ffffff;
}

/* Connecting dynamic energy beam bridging dot to card */
.step-icon-indicator::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    width: 0px;
    height: 2px;
    background: linear-gradient(90deg, #38bdf8 0%, rgba(56, 189, 248, 0) 100%);
    box-shadow: 0 0 8px rgba(56, 189, 248, 0.8);
    transform: translateY(-50%);
    transition: width 0.4s ease;
    pointer-events: none;
}

.minimal-step-item.active .step-icon-indicator::after,
.minimal-step-item:hover .step-icon-indicator::after {
    width: 48px;
}

.step-content {
    width: 100%;
    padding: 26px 32px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.minimal-step-item.active .step-content,
.minimal-step-item:hover .step-content {
    background: rgba(255, 255, 255, 0.045);
    border-color: rgba(56, 189, 248, 0.35);
    box-shadow: 0 16px 36px -10px rgba(0, 0, 0, 0.5), 0 0 25px rgba(56, 189, 248, 0.08);
}

.step-number {
    font-family: 'Inter';
    font-size: 11.5px;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 8px;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.minimal-step-item.active .step-number,
.minimal-step-item:hover .step-number {
    color: #38bdf8;
    text-shadow: 0 0 10px rgba(56, 189, 248, 0.4);
}

.step-title {
    font-family: var(--font-heading, 'Inter', sans-serif);
    font-size: 21px;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 10px;
    letter-spacing: -0.4px;
    transition: color 0.3s ease;
}

.minimal-step-item.active .step-title,
.minimal-step-item:hover .step-title {
    color: #ffffff;
}

.step-desc {
    font-size: 14.5px;
    color: #94a3b8;
    line-height: 1.68;
    margin: 0;
    max-width: 640px;
    transition: color 0.3s ease;
}

.minimal-step-item.active .step-desc,
.minimal-step-item:hover .step-desc {
    color: #cbd5e1;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .process-section {
        padding: 80px 0;
    }

    .process-grid-layout {
        flex-direction: column;
        gap: 48px;
    }

    .process-sidebar-sticky {
        position: relative;
        top: 0;
        flex: 1 1 100%;
        max-width: 100%;
        width: 100%;
    }

    .process-steps-scroll {
        width: 100%;
    }

    .process-sticky-title {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .process-sticky-title {
        font-size: 26px;
    }

    .process-steps-scroll {
        padding-left: 36px;
    }

    .step-icon-indicator {
        left: -36px;
        top: 20px;
    }

    .step-content {
        padding: 20px 20px;
    }
}

/* ==========================================================================
   Why Businesses Invest in Blockchain Solutions - Creative Cards Grid
   ========================================================================== */
.subserv-why-invest-sec {
    position: relative;
    padding: 80px 0px;
    background: #ffffff;
    font-family: var(--subserv-font-body, 'Inter', sans-serif);
    overflow: hidden;
}

/* Unique Vector Blockchain Stream & Topology Background */
.subserv-why-invest-vectors {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.subserv-why-svg-stream {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.85;
}

/* Animated Data Pulses */
.subserv-why-svg-stream .stream-pulse.pulse-1 {
    stroke-dasharray: 100 1200;
    stroke-dashoffset: 1300;
    animation: streamFlowLight 8s linear infinite;
}

.subserv-why-svg-stream .stream-pulse.pulse-2 {
    stroke-dasharray: 100 1200;
    stroke-dashoffset: -1300;
    animation: streamFlowLightRev 9s linear infinite;
}

@keyframes streamFlowLight {
    0% {
        stroke-dashoffset: 1300;
        opacity: 0;
    }

    15% {
        opacity: 0.9;
    }

    85% {
        opacity: 0.9;
    }

    100% {
        stroke-dashoffset: 0;
        opacity: 0;
    }
}

@keyframes streamFlowLightRev {
    0% {
        stroke-dashoffset: -1300;
        opacity: 0;
    }

    15% {
        opacity: 0.9;
    }

    85% {
        opacity: 0.9;
    }

    100% {
        stroke-dashoffset: 0;
        opacity: 0;
    }
}

/* Floating Isometric Wireframe Cubes */
.subserv-why-svg-stream .stream-cube.cube-1 {
    transform-origin: center;
    animation: cubeFloatLeft 7s ease-in-out infinite alternate;
}

.subserv-why-svg-stream .stream-cube.cube-2 {
    transform-origin: center;
    animation: cubeFloatRight 9s ease-in-out infinite alternate-reverse;
}

@keyframes cubeFloatLeft {
    0% {
        transform: translate(60px, 140px) translateY(0px) rotate(0deg);
    }

    100% {
        transform: translate(60px, 140px) translateY(-14px) rotate(3deg);
    }
}

@keyframes cubeFloatRight {
    0% {
        transform: translate(1320px, 680px) translateY(0px) rotate(0deg);
    }

    100% {
        transform: translate(1320px, 680px) translateY(-14px) rotate(-3deg);
    }
}

/* Pulsing Radar Nodes */
.subserv-why-svg-stream .stream-node circle:first-child {
    animation: nodeRadarPulse 3s ease-out infinite;
    transform-origin: center;
}

@keyframes nodeRadarPulse {
    0% {
        transform: scale(0.85);
        opacity: 0.9;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.3;
    }

    100% {
        transform: scale(0.85);
        opacity: 0.9;
    }
}

.subserv-why-invest-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
    padding: 0 15px;
}

/* Header */
.subserv-why-invest-header {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 10;
}

.subserv-why-invest-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid rgba(254, 74, 35, 0.25);
    padding: 7px 18px;
    border-radius: 100px;
    box-shadow: 0 4px 15px rgba(254, 74, 35, 0.08);
    margin-bottom: 18px;
}

.subserv-why-invest-badge .badge-dot {
    width: 7px;
    height: 7px;
    background: #fe4a23;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(254, 74, 35, 0.9);
    animation: investBadgePulse 2s infinite ease-in-out;
}

.subserv-why-invest-badge .badge-text {
    font-family: 'Inter';
    font-size: 11.5px;
    font-weight: 700;
    color: #fe4a23;
    letter-spacing: 1.5px;
}

@keyframes investBadgePulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.7);
    }
}

.subserv-why-invest-title {
    font-family: var(--subserv-font-heading, 'Inter', sans-serif);
    font-size: 38px;
    line-height: 1.22;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0f172a;
    margin: 0 0 16px;
}

.subserv-why-invest-title span {
    background: linear-gradient(135deg, #fe4a23 0%, #ff7043 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subserv-why-invest-desc {
    font-size: 16px;
    line-height: 1.75;
    color: #64748b;
    margin: 0;
}

/* Grid */
.subserv-why-invest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ==========================================================================
   Creative Card Styling
   ========================================================================== */
.subserv-why-invest-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 36px 30px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow:
        0 10px 30px -8px rgba(15, 23, 42, 0.04),
        0 2px 6px -2px rgba(15, 23, 42, 0.02);
    overflow: hidden;
    z-index: 1;
}

/* Card Glow Effect Behind */
.subserv-why-invest-card .card-inner-glow {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.45s ease, transform 0.45s ease;
    z-index: 0;
}

/* Corner Cybernetic Accent */
.subserv-why-invest-card .card-corner-decor {
    position: absolute;
    top: 0;
    right: 0;
    width: 42px;
    height: 42px;
    pointer-events: none;
    z-index: 2;
    opacity: 0.35;
    transition: opacity 0.35s ease;
}

.subserv-why-invest-card .card-corner-decor::before {
    content: '';
    position: absolute;
    top: 14px;
    right: 14px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #cbd5e1;
    transition: background 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.subserv-why-invest-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 24px 50px -12px rgba(15, 23, 42, 0.09),
        0 12px 24px -8px rgba(15, 23, 42, 0.04);
}

.subserv-why-invest-card:hover .card-inner-glow {
    opacity: 0.85;
    transform: scale(1.25);
}

.subserv-why-invest-card:hover .card-corner-decor {
    opacity: 1;
}

/* Card Top Section */
.subserv-why-invest-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

/* Floating Icon Box */
.subserv-why-invest-icon-box {
    position: relative;
    width: 66px;
    height: 66px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.subserv-why-invest-icon-box .icon-ambient-ring {
    position: absolute;
    inset: -3px;
    border-radius: 21px;
    border: 1px dashed rgba(254, 74, 35, 0.3);
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.6s ease;
}

.subserv-why-invest-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.subserv-why-invest-card:hover .subserv-why-invest-icon-box {
    transform: scale(1.08) translateY(-2px);
}

.subserv-why-invest-card:hover .subserv-why-invest-icon-box .icon-ambient-ring {
    opacity: 1;
    transform: rotate(45deg);
}

.subserv-why-invest-card:hover .subserv-why-invest-icon {
    transform: scale(1.12);
}

/* Tag Wrap */
.subserv-why-invest-tag {
    font-family: 'Inter';
    font-size: 9px;
    line-height: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 3px 12px;
    border-radius: 8px;
    border: 1px solid;
    transition: all 0.3s ease;
    display: inline-block;
}

/* Card Body */
.subserv-why-invest-body {
    flex: 1;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.subserv-why-invest-card-title {
    font-family: var(--subserv-font-heading, 'Inter', sans-serif);
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.35;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.subserv-why-invest-card-text {
    font-size: 14.5px;
    line-height: 1.68;
    color: #475569;
    margin: 0;
}

/* Feature Chips Matrix */
.subserv-why-features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.subserv-why-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 6px;
    background: #f8fafc;
    border: 1px solid #edf2f7;
    font-size: 11.5px;
    font-weight: 600;
    color: #64748b;
    transition: all 0.25s ease;
}

.subserv-why-chip .chip-icon {
    font-size: 10px;
    font-style: normal;
    transition: transform 0.25s ease;
}

.subserv-why-invest-card:hover .subserv-why-chip {
    background: #ffffff;
    color: #1e293b;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.subserv-why-invest-card:hover .subserv-why-chip .chip-icon {
    transform: scale(1.2);
}

/* Card Bottom Progress Laser Line */
.subserv-why-invest-footer {
    position: relative;
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
    z-index: 1;
}

.subserv-why-bottom-bar {
    display: block;
    width: 24px;
    height: 3px;
    border-radius: 100px;
    transition: width 0.4s ease, box-shadow 0.4s ease;
}

.subserv-why-invest-card:hover .subserv-why-bottom-bar {
    width: 100%;
}

/* ==========================================================================
   Theme Accents (Dedicated Visual Colors Per Theme)
   ========================================================================== */

/* 1. Orange Theme (Trust / ROI) */
.card-theme-orange .card-inner-glow {
    background: radial-gradient(circle, rgba(254, 74, 35, 0.2) 0%, transparent 70%);
}

.card-theme-orange .subserv-why-invest-icon-box {
    background: linear-gradient(135deg, #fff5f2 0%, #ffe9e2 100%);
    border: 1px solid rgba(254, 74, 35, 0.22);
}

.card-theme-orange .subserv-why-invest-tag {
    background: #fff5f2;
    border-color: #fed7cc;
    color: #fe4a23;
}

.card-theme-orange .subserv-why-bottom-bar {
    background: linear-gradient(90deg, #fe4a23, #ff7043);
}

.card-theme-orange:hover {
    border-color: rgba(254, 74, 35, 0.4);
}

.card-theme-orange:hover .subserv-why-invest-card-title {
    color: #fe4a23;
}

.card-theme-orange:hover .card-corner-decor::before {
    background: #fe4a23;
    box-shadow: 0 0 10px #fe4a23;
}

.card-theme-orange:hover .subserv-why-chip {
    border-color: rgba(254, 74, 35, 0.25);
}

.card-theme-orange:hover .subserv-why-chip .chip-icon {
    color: #fe4a23;
}

.card-theme-orange:hover .subserv-why-bottom-bar {
    box-shadow: 0 0 12px rgba(254, 74, 35, 0.6);
}

/* 2. Blue Theme (Logic & Smart Contracts) */
.card-theme-blue .card-inner-glow {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.22) 0%, transparent 70%);
}

.card-theme-blue .subserv-why-invest-icon-box {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 1px solid rgba(59, 130, 246, 0.22);
}

.card-theme-blue .icon-ambient-ring {
    border-color: rgba(59, 130, 246, 0.4);
}

.card-theme-blue .subserv-why-invest-tag {
    background: #eff6ff;
    border-color: #bfdbfe;
    color: #2563eb;
}

.card-theme-blue .subserv-why-bottom-bar {
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

.card-theme-blue:hover {
    border-color: rgba(59, 130, 246, 0.4);
}

.card-theme-blue:hover .subserv-why-invest-card-title {
    color: #2563eb;
}

.card-theme-blue:hover .card-corner-decor::before {
    background: #3b82f6;
    box-shadow: 0 0 10px #3b82f6;
}

.card-theme-blue:hover .subserv-why-chip {
    border-color: rgba(59, 130, 246, 0.25);
}

.card-theme-blue:hover .subserv-why-chip .chip-icon {
    color: #2563eb;
}

.card-theme-blue:hover .subserv-why-bottom-bar {
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.6);
}

/* 3. Purple Theme (Zero-Trust Security) */
.card-theme-purple .card-inner-glow {
    background: radial-gradient(circle, rgba(139, 92, 246, 0.22) 0%, transparent 70%);
}

.card-theme-purple .subserv-why-invest-icon-box {
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
    border: 1px solid rgba(139, 92, 246, 0.22);
}

.card-theme-purple .icon-ambient-ring {
    border-color: rgba(139, 92, 246, 0.4);
}

.card-theme-purple .subserv-why-invest-tag {
    background: #f5f3ff;
    border-color: #ddd6fe;
    color: #7c3aed;
}

.card-theme-purple .subserv-why-bottom-bar {
    background: linear-gradient(90deg, #8b5cf6, #a78bfa);
}

.card-theme-purple:hover {
    border-color: rgba(139, 92, 246, 0.4);
}

.card-theme-purple:hover .subserv-why-invest-card-title {
    color: #7c3aed;
}

.card-theme-purple:hover .card-corner-decor::before {
    background: #8b5cf6;
    box-shadow: 0 0 10px #8b5cf6;
}

.card-theme-purple:hover .subserv-why-chip {
    border-color: rgba(139, 92, 246, 0.25);
}

.card-theme-purple:hover .subserv-why-chip .chip-icon {
    color: #7c3aed;
}

.card-theme-purple:hover .subserv-why-bottom-bar {
    box-shadow: 0 0 12px rgba(139, 92, 246, 0.6);
}

/* 4. Teal Theme (Tokenization & Web3) */
.card-theme-teal .card-inner-glow {
    background: radial-gradient(circle, rgba(13, 148, 136, 0.2) 0%, transparent 70%);
}

.card-theme-teal .subserv-why-invest-icon-box {
    background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
    border: 1px solid rgba(13, 148, 136, 0.22);
}

.card-theme-teal .icon-ambient-ring {
    border-color: rgba(13, 148, 136, 0.4);
}

.card-theme-teal .subserv-why-invest-tag {
    background: #f0fdfa;
    border-color: #99f6e4;
    color: #0d9488;
}

.card-theme-teal .subserv-why-bottom-bar {
    background: linear-gradient(90deg, #0d9488, #2dd4bf);
}

.card-theme-teal:hover {
    border-color: rgba(13, 148, 136, 0.4);
}

.card-theme-teal:hover .subserv-why-invest-card-title {
    color: #0d9488;
}

.card-theme-teal:hover .card-corner-decor::before {
    background: #0d9488;
    box-shadow: 0 0 10px #0d9488;
}

.card-theme-teal:hover .subserv-why-chip {
    border-color: rgba(13, 148, 136, 0.25);
}

.card-theme-teal:hover .subserv-why-chip .chip-icon {
    color: #0d9488;
}

.card-theme-teal:hover .subserv-why-bottom-bar {
    box-shadow: 0 0 12px rgba(13, 148, 136, 0.6);
}

/* 5. Indigo Theme (Provenance & Supply Chain) */
.card-theme-indigo .card-inner-glow {
    background: radial-gradient(circle, rgba(99, 102, 241, 0.22) 0%, transparent 70%);
}

.card-theme-indigo .subserv-why-invest-icon-box {
    background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
    border: 1px solid rgba(99, 102, 241, 0.22);
}

.card-theme-indigo .icon-ambient-ring {
    border-color: rgba(99, 102, 241, 0.4);
}

.card-theme-indigo .subserv-why-invest-tag {
    background: #eef2ff;
    border-color: #c7d2fe;
    color: #4f46e5;
}

.card-theme-indigo .subserv-why-bottom-bar {
    background: linear-gradient(90deg, #6366f1, #818cf8);
}

.card-theme-indigo:hover {
    border-color: rgba(99, 102, 241, 0.4);
}

.card-theme-indigo:hover .subserv-why-invest-card-title {
    color: #4f46e5;
}

.card-theme-indigo:hover .card-corner-decor::before {
    background: #6366f1;
    box-shadow: 0 0 10px #6366f1;
}

.card-theme-indigo:hover .subserv-why-chip {
    border-color: rgba(99, 102, 241, 0.25);
}

.card-theme-indigo:hover .subserv-why-chip .chip-icon {
    color: #4f46e5;
}

.card-theme-indigo:hover .subserv-why-bottom-bar {
    box-shadow: 0 0 12px rgba(99, 102, 241, 0.6);
}

/* Responsive */
@media screen and (max-width: 1100px) {
    .subserv-why-invest-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media screen and (max-width: 768px) {
    .subserv-why-invest-sec {
        padding: 75px 0 80px;
    }

    .subserv-why-invest-header {
        margin-bottom: 40px;
    }

    .subserv-why-invest-title {
        font-size: 28px;
    }



    .subserv-why-invest-card {
        padding: 28px 22px 22px;
        border-radius: 18px;
    }
}

/* ==========================================================================
   11. INTEGRATIONS - CONNECT YOUR FINANCIAL ECOSYSTEM (CENTRAL HUB DESIGN)
   ========================================================================== */
.subserv-eco-sec {
    position: relative;
    padding: 100px 0 110px;
    background: linear-gradient(180deg, #fafbfd 0%, #f4f6fa 50%, #ffffff 100%);
    border-top: 1px solid #eef2f6;
    border-bottom: 1px solid #eef2f6;
    overflow: hidden;
    font-family: var(--subserv-font-body, 'Inter', sans-serif);
}

/* Background Ambient Lighting & High-Tech Grid */
.subserv-eco-bg-glow {
    position: absolute;
    width: 650px;
    height: 650px;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    z-index: 1;
    opacity: 0.45;
}

.subserv-eco-glow-left {
    top: 15%;
    left: -180px;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.18) 0%, rgba(2, 132, 199, 0) 70%);
}

.subserv-eco-glow-right {
    bottom: 10%;
    right: -180px;
    background: radial-gradient(circle, rgba(254, 74, 35, 0.15) 0%, rgba(254, 74, 35, 0) 70%);
}

.subserv-eco-grid-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: 40px 40px;
    background-image:
        linear-gradient(to right, rgba(15, 23, 42, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
    pointer-events: none;
    z-index: 1;
}

.subserv-eco-container {
    position: relative;
    z-index: 2;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Section */
.subserv-eco-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 60px;
}

.subserv-eco-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    background: #ffffff;
    border: 1px solid rgba(227, 86, 17, 0.2);
    border-radius: 100px;
    box-shadow: 0 2px 10px rgba(227, 86, 17, 0.08);
    margin-bottom: 20px;
}

.subserv-eco-badge .badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fe4a23;
    box-shadow: 0 0 10px #fe4a23;
    animation: subservEcoPulse 2s infinite ease-in-out;
}

.subserv-eco-badge .badge-text {
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: #fe4a23;
    text-transform: uppercase;
}

.subserv-eco-title {
    font-family: var(--subserv-font-heading, 'Inter', sans-serif);
    font-size: 40px;
    font-weight: 800;
    line-height: 1.22;
    color: #0f172a;
    letter-spacing: -0.025em;
    margin: 0 0 18px;
}

.subserv-eco-title span {
    background: linear-gradient(135deg, #fe4a23 0%, #ff7347 50%, #e0320b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subserv-eco-desc {
    font-size: 16.5px;
    line-height: 1.7;
    color: #64748b;
    margin: 0 auto;
    max-width: 700px;
}

/* ==========================================================================
   INTERACTIVE ECOSYSTEM TOPOLOGY MATRIX
   ========================================================================== */
.subserv-eco-stage {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 440px 1fr;
    gap: 28px;
    align-items: center;
    /* min-height: 640px; */
}

/* SVG Circuit Stream Overlays */
.subserv-eco-svg-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    overflow: visible;
}

.subserv-eco-line {
    fill: none;
    stroke: #e2e8f0;
    stroke-width: 2;
    stroke-dasharray: 6 6;
    transition: stroke 0.4s ease, stroke-width 0.4s ease, filter 0.4s ease;
}

.subserv-eco-line.active {
    stroke-dasharray: none;
    stroke-width: 2.5;
    filter: drop-shadow(0 0 8px currentColor);
}

/* Left and Right Node Columns */
.subserv-eco-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    z-index: 3;
}

/* ==========================================================================
   INTEGRATION NODE CARDS
   ========================================================================== */
.subserv-eco-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 26px 28px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    overflow: hidden;
}

.subserv-eco-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1.5px;
    background: linear-gradient(135deg, transparent, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    transition: background 0.35s ease;
    pointer-events: none;
}

.subserv-eco-card:hover,
.subserv-eco-card.active {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px -10px rgba(15, 23, 42, 0.12);
    border-color: transparent;
}

/* Card Body Content */
.subserv-eco-card-title {
    font-family: var(--subserv-font-heading, 'Inter', sans-serif);
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
    margin: 0 0 10px;
    transition: color 0.3s ease;
}

.subserv-eco-card-desc {
    font-size: 14.5px;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

/* ==========================================================================
   THEME COLOR PALETTES FOR NODES
   ========================================================================== */
/* 1. Banking - Cyan/Blue */
.theme-banking {
    --node-color: #0284c7;
    --node-light: #e0f2fe;
    --node-glow: rgba(2, 132, 199, 0.25);
}

.theme-banking::before {
    background: linear-gradient(135deg, #0284c7, #38bdf8);
}

.theme-banking:hover .subserv-eco-card-title,
.theme-banking.active .subserv-eco-card-title {
    color: #0284c7;
}

/* 2. Payments - Emerald/Teal */
.theme-payments {
    --node-color: #059669;
    --node-light: #d1fae5;
    --node-glow: rgba(5, 150, 105, 0.25);
}

.theme-payments::before {
    background: linear-gradient(135deg, #059669, #34d399);
}

.theme-payments:hover .subserv-eco-card-title,
.theme-payments.active .subserv-eco-card-title {
    color: #059669;
}

/* 3. Identity - Purple/Violet */
.theme-identity {
    --node-color: #7c3aed;
    --node-light: #ede9fe;
    --node-glow: rgba(124, 58, 237, 0.25);
}

.theme-identity::before {
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
}

.theme-identity:hover .subserv-eco-card-title,
.theme-identity.active .subserv-eco-card-title {
    color: #7c3aed;
}

/* 4. Blockchain - Orange/Amber */
.theme-blockchain {
    --node-color: #ea580c;
    --node-light: #ffedd5;
    --node-glow: rgba(234, 88, 12, 0.25);
}

.theme-blockchain::before {
    background: linear-gradient(135deg, #ea580c, #fb923c);
}

.theme-blockchain:hover .subserv-eco-card-title,
.theme-blockchain.active .subserv-eco-card-title {
    color: #ea580c;
}

/* 5. Cloud - Sky/Blue */
.theme-cloud {
    --node-color: #0284c7;
    --node-light: #e0f2fe;
    --node-glow: rgba(2, 132, 199, 0.25);
}

.theme-cloud::before {
    background: linear-gradient(135deg, #0284c7, #38bdf8);
}

.theme-cloud:hover .subserv-eco-card-title,
.theme-cloud.active .subserv-eco-card-title {
    color: #0284c7;
}

/* 6. Enterprise - Indigo/Slate */
.theme-enterprise {
    --node-color: #4f46e5;
    --node-light: #e0e7ff;
    --node-glow: rgba(79, 70, 229, 0.25);
}

.theme-enterprise::before {
    background: linear-gradient(135deg, #4f46e5, #818cf8);
}

.theme-enterprise:hover .subserv-eco-card-title,
.theme-enterprise.active .subserv-eco-card-title {
    color: #4f46e5;
}

/* ==========================================================================
   CENTRAL PLATFORM HUB CORE
   ========================================================================== */
.subserv-eco-hub-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 5;
}

.subserv-eco-hub-sphere-wrap {
    position: relative;
    width: 440px;
    height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Concentric Radar Orbits */
.subserv-eco-orbit-ring {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.subserv-eco-orbit-ring.ring-1 {
    width: 430px;
    height: 430px;
    border: 1px dashed rgba(203, 213, 225, 0.85);
    animation: subservEcoSpin 50s linear infinite;
}

.subserv-eco-orbit-ring.ring-2 {
    width: 310px;
    height: 310px;
    border: 1px dotted rgba(254, 74, 35, 0.3);
    animation: subservEcoSpinRev 35s linear infinite;
}

.subserv-eco-orbit-ring.ring-3 {
    width: 215px;
    height: 215px;
    border: 1px solid rgba(226, 232, 240, 0.9);
}

/* Central Hub Main Core Element (Clean Round Circle) */
.subserv-eco-hub-core {
    position: relative;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    box-shadow:
        0 10px 30px rgba(15, 23, 42, 0.08),
        0 0 0 6px rgba(254, 74, 35, 0.06),
        0 0 25px rgba(254, 74, 35, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 16px;
    box-sizing: border-box;
    z-index: 6;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.subserv-eco-hub-core:hover {
    transform: scale(1.04);
    border-color: rgba(254, 74, 35, 0.35);
    box-shadow:
        0 14px 38px rgba(15, 23, 42, 0.12),
        0 0 0 8px rgba(254, 74, 35, 0.1),
        0 0 35px rgba(254, 74, 35, 0.25);
}

.subserv-eco-hub-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff5f2;
    border: 1px solid rgba(254, 74, 35, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fe4a23;
    margin-bottom: 8px;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.subserv-eco-hub-core:hover .subserv-eco-hub-icon {
    transform: scale(1.08);
    background: #fe4a23;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(254, 74, 35, 0.35);
}

.subserv-eco-hub-icon svg {
    width: 22px;
    height: 22px;
}

.subserv-eco-hub-title {
    font-family: var(--subserv-font-heading, 'Inter', sans-serif);
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    margin: 0;
    max-width: 125px;
    letter-spacing: -0.01em;
}

/* Hub Satellites / Connected Node Badges */
.subserv-eco-satellite {
    position: absolute;
    padding: 6px 14px;
    border-radius: 100px;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.07);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 7;
    white-space: nowrap;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.subserv-eco-satellite svg {
    width: 14px;
    height: 14px;
    color: currentColor;
    flex-shrink: 0;
}

.subserv-eco-satellite span {
    color: #334155;
    transition: color 0.3s ease;
}

/* Symmetrical Orbital Positions along the 430px Ring */
.subserv-eco-satellite.sat-1 {
    top: 32px;
    left: 20px;
    color: #0284c7;
}

.subserv-eco-satellite.sat-2 {
    top: 50%;
    left: -25px;
    transform: translateY(-50%);
    color: #059669;
}

.subserv-eco-satellite.sat-3 {
    bottom: 32px;
    left: 20px;
    color: #7c3aed;
}

.subserv-eco-satellite.sat-4 {
    top: 32px;
    right: 20px;
    color: #ea580c;
}

.subserv-eco-satellite.sat-5 {
    top: 50%;
    right: -25px;
    transform: translateY(-50%);
    color: #0284c7;
}

.subserv-eco-satellite.sat-6 {
    bottom: 32px;
    right: -20px;
    color: #4f46e5;
}

/* Active & Hover States */
.subserv-eco-satellite.active,
.subserv-eco-satellite:hover {
    border-color: currentColor;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12), 0 0 16px currentColor;
    background: #ffffff;
}

.subserv-eco-satellite.sat-1.active,
.subserv-eco-satellite.sat-1:hover,
.subserv-eco-satellite.sat-3.active,
.subserv-eco-satellite.sat-3:hover,
.subserv-eco-satellite.sat-4.active,
.subserv-eco-satellite.sat-4:hover,
.subserv-eco-satellite.sat-6.active,
.subserv-eco-satellite.sat-6:hover {
    transform: scale(1.08);
}

.subserv-eco-satellite.sat-2.active,
.subserv-eco-satellite.sat-2:hover,
.subserv-eco-satellite.sat-5.active,
.subserv-eco-satellite.sat-5:hover {
    transform: translateY(-50%) scale(1.08);
}

.subserv-eco-satellite.active span,
.subserv-eco-satellite:hover span {
    color: #0f172a;
}

/* Animations */
@keyframes subservEcoPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.15);
        opacity: 0.75;
    }
}

@keyframes subservEcoSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes subservEcoSpinRev {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

/* ==========================================================================
   RESPONSIVE DESIGN FOR ECOSYSTEM SECTION
   ========================================================================== */
@media screen and (max-width: 1280px) {
    .subserv-eco-stage {
        grid-template-columns: 1fr 380px 1fr;
        gap: 20px;
    }

    .subserv-eco-hub-sphere-wrap {
        width: 380px;
        height: 380px;
    }

    .subserv-eco-orbit-ring.ring-1 {
        width: 360px;
        height: 360px;
    }

    .subserv-eco-orbit-ring.ring-2 {
        width: 270px;
        height: 270px;
    }

    .subserv-eco-orbit-ring.ring-3 {
        width: 190px;
        height: 190px;
    }

    .subserv-eco-hub-core {
        width: 140px;
        height: 140px;
    }

    .subserv-eco-satellite.sat-2 {
        left: -10px;
    }

    .subserv-eco-satellite.sat-5 {
        right: -10px;
    }
}

/* iPad / Tablet (max-width: 991px) */
@media screen and (max-width: 991px) {
    .subserv-eco-sec {
        padding: 70px 0 75px;
    }

    .subserv-eco-header {
        margin-bottom: 40px;
    }

    .subserv-eco-title {
        font-size: 30px;
    }

    .subserv-eco-desc {
        font-size: 15px;
    }

    .subserv-eco-stage {
        display: flex;
        flex-direction: column;
        gap: 32px;
        align-items: center;
    }

    .subserv-eco-svg-canvas {
        display: none;
    }

    .subserv-eco-hub-center {
        order: -1;
        margin-bottom: 10px;
    }

    .subserv-eco-hub-sphere-wrap {
        width: 340px;
        height: 340px;
    }

    .subserv-eco-orbit-ring.ring-1 {
        width: 330px;
        height: 330px;
    }

    .subserv-eco-orbit-ring.ring-2 {
        width: 245px;
        height: 245px;
    }

    .subserv-eco-orbit-ring.ring-3 {
        width: 170px;
        height: 170px;
    }

    .subserv-eco-hub-core {
        width: 130px;
        height: 130px;
        padding: 12px;
    }

    .subserv-eco-hub-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 6px;
    }

    .subserv-eco-hub-icon svg {
        width: 18px;
        height: 18px;
    }

    .subserv-eco-hub-title {
        font-size: 13px;
        max-width: 105px;
    }

    .subserv-eco-satellite {
        padding: 5px 12px;
        font-size: 11.5px;
        gap: 6px;
    }

    .subserv-eco-satellite svg {
        width: 13px;
        height: 13px;
    }

    .subserv-eco-satellite.sat-1 {
        top: 22px;
        left: 12px;
    }

    .subserv-eco-satellite.sat-2 {
        top: 50%;
        left: -15px;
    }

    .subserv-eco-satellite.sat-3 {
        bottom: 22px;
        left: 12px;
    }

    .subserv-eco-satellite.sat-4 {
        top: 22px;
        right: 12px;
    }

    .subserv-eco-satellite.sat-5 {
        top: 50%;
        right: -15px;
    }

    .subserv-eco-satellite.sat-6 {
        bottom: 22px;
        right: 12px;
    }

    .subserv-eco-col {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .subserv-eco-card {
        padding: 20px 18px;
        border-radius: 16px;
    }

    .subserv-eco-card-title {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .subserv-eco-card-desc {
        font-size: 13px;
        line-height: 1.5;
    }
}

/* Mobile & Small Tablet (max-width: 767px) */
@media screen and (max-width: 767px) {
    .subserv-eco-sec {
        padding: 55px 0 60px;
    }

    .subserv-eco-header {
        margin-bottom: 30px;
    }

    .subserv-eco-badge {
        padding: 5px 14px;
        margin-bottom: 14px;
    }

    .subserv-eco-badge .badge-text {
        font-size: 10.5px;
    }

    .subserv-eco-title {
        font-size: 26px;
        line-height: 1.25;
        margin-bottom: 12px;
    }

    .subserv-eco-desc {
        font-size: 14px;
        line-height: 1.6;
    }

    .subserv-eco-stage {
        gap: 24px;
    }

    .subserv-eco-hub-sphere-wrap {
        width: 290px;
        height: 290px;
    }

    .subserv-eco-orbit-ring.ring-1 {
        width: 280px;
        height: 280px;
    }

    .subserv-eco-orbit-ring.ring-2 {
        width: 205px;
        height: 205px;
    }

    .subserv-eco-orbit-ring.ring-3 {
        width: 145px;
        height: 145px;
    }

    .subserv-eco-hub-core {
        width: 112px;
        height: 112px;
        padding: 8px;
    }

    .subserv-eco-hub-icon {
        width: 30px;
        height: 30px;
        margin-bottom: 4px;
    }

    .subserv-eco-hub-icon svg {
        width: 15px;
        height: 15px;
    }

    .subserv-eco-hub-title {
        font-size: 11.5px;
        max-width: 85px;
        line-height: 1.2;
    }

    .subserv-eco-satellite {
        padding: 4px 8px;
        font-size: 10px;
        gap: 4px;
        border-width: 1px;
    }

    .subserv-eco-satellite svg {
        width: 11px;
        height: 11px;
    }

    .subserv-eco-satellite.sat-1 {
        top: 14px;
        left: 2px;
    }

    .subserv-eco-satellite.sat-2 {
        top: 50%;
        left: -12px;
    }

    .subserv-eco-satellite.sat-3 {
        bottom: 14px;
        left: 2px;
    }

    .subserv-eco-satellite.sat-4 {
        top: 14px;
        right: 2px;
    }

    .subserv-eco-satellite.sat-5 {
        top: 50%;
        right: -12px;
    }

    .subserv-eco-satellite.sat-6 {
        bottom: 14px;
        right: 2px;
    }

    .subserv-eco-col {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .subserv-eco-card {
        padding: 18px 18px;
        border-radius: 14px;
    }

    .subserv-eco-card-title {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .subserv-eco-card-desc {
        font-size: 13.5px;
        line-height: 1.55;
    }
}

/* ==========================================================================
   Security and Compliance Section (Layered Architecture & Security Areas) - Minimal
   ========================================================================== */
.security-layer-section {
    position: relative;
    padding: 85px 0;
    background: #090d16;
    background-image:
        radial-gradient(circle at 20% 15%, rgba(2, 132, 199, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 85%, rgba(16, 185, 129, 0.05) 0%, transparent 40%),
        linear-gradient(180deg, #070a12 0%, #0a101d 100%);
    overflow: clip;
    color: #e2e8f0;
    font-family: var(--subserv-font-body, 'Inter', sans-serif);
}

/* Minimal Subtle Ambient Glows */
.sec-layer-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
}

.sec-layer-glow-1 {
    top: 10%;
    left: 0;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.15) 0%, transparent 70%);
}

.sec-layer-glow-2 {
    bottom: 5%;
    right: 0;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
}

.security-layer-section .container {
    position: relative;
    z-index: 2;
    max-width: 1280px;
}

/* Header Area - Clean & Minimal */
.sec-header-wrap {
    max-width: 820px;
    margin: 0 auto 50px;
    text-align: center;
}

.sec-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px;
    border-radius: 100px;
    background: rgba(56, 189, 248, 0.08);
    border: 1px solid rgba(56, 189, 248, 0.2);
    color: #38bdf8;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.sec-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #38bdf8;
    box-shadow: 0 0 6px #38bdf8;
}

.sec-main-title {
    font-family: var(--subserv-font-heading, 'Inter', sans-serif);
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
}

.sec-title-accent {
    background: linear-gradient(135deg, #38bdf8 0%, #818cf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sec-lead-desc {
    font-size: 16px;
    line-height: 1.65;
    color: #cbd5e1;
    margin-bottom: 8px;
}

.sec-sub-desc {
    font-size: 14.5px;
    line-height: 1.6;
    color: #94a3b8;
    margin: 0;
}

/* 2-Column Grid Layout */
.sec-main-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: start;
}

@media (min-width: 992px) {
    .sec-main-grid {
        grid-template-columns: 390px 1fr;
        gap: 40px;
    }
}

@media (min-width: 1200px) {
    .sec-main-grid {
        grid-template-columns: 410px 1fr;
        gap: 48px;
    }
}

/* --------------------------------------------------------------------------
   Left Column: Layered Architecture Diagram (Sticky)
   -------------------------------------------------------------------------- */
.sec-arch-column {
    position: relative;
    width: 100%;
}

@media (min-width: 992px) {

    .sec-arch-column,
    .sec-arch-column.sticky,
    .stciky-content-architech {
        position: -webkit-sticky;
        position: sticky;
        top: 100px;
        align-self: start;
        height: fit-content;
        z-index: 10;
        will-change: auto;
    }
}

.sec-diagram-card {
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px 22px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
}

.sec-diagram-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sec-diagram-title {
    font-size: 14px;
    font-weight: 700;
    color: #f1f5f9;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0;
    white-space: nowrap;
}

.sec-diagram-title svg {
    width: 17px;
    height: 17px;
    color: #38bdf8;
    flex-shrink: 0;
}

/* Layer Stack Structure */
.sec-stack-wrap {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sec-layer-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    transition: all 0.25s ease;
    cursor: default;
}

.sec-layer-item:hover {
    background: rgba(2, 132, 199, 0.12);
    border-color: rgba(56, 189, 248, 0.4);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(2, 132, 199, 0.12);
}

.sec-layer-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sec-layer-num {
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    font-family: monospace;
    transition: color 0.25s ease;
}

.sec-layer-item:hover .sec-layer-num {
    color: #38bdf8;
}

.sec-layer-name {
    font-size: 14px;
    font-weight: 600;
    color: #e2e8f0;
    letter-spacing: -0.01em;
    margin: 0;
    transition: color 0.25s ease;
}

.sec-layer-item:hover .sec-layer-name {
    color: #38bdf8;
}

.sec-layer-icon {
    display: flex;
    align-items: center;
    color: #475569;
    transition: all 0.25s ease;
}

.sec-layer-icon svg {
    width: 16px;
    height: 16px;
}

.sec-layer-item:hover .sec-layer-icon {
    color: #38bdf8;
}

/* Downward Connector Arrow - Minimal */
.sec-layer-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 16px;
    position: relative;
}

.sec-connector-line {
    position: absolute;
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
}

.sec-connector-arrow {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    z-index: 2;
    transition: all 0.25s ease;
}

.sec-connector-arrow svg {
    width: 8px;
    height: 8px;
}

.sec-layer-item:hover+.sec-layer-connector .sec-connector-arrow,
.sec-layer-item:hover+.sec-layer-connector .sec-connector-line {
    border-color: rgba(56, 189, 248, 0.35);
    color: #38bdf8;
    background: #38bdf8;
}

/* --------------------------------------------------------------------------
   Right Column: Security Areas Cards (Minimal Grid)
   -------------------------------------------------------------------------- */
.sec-areas-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 640px) {
    .sec-areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

.sec-area-card {
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 22px 20px;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
}

.sec-area-card:hover {
    background: #131d33;
    border-color: rgba(56, 189, 248, 0.28);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.sec-area-icon-wrap {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #38bdf8;
    transition: all 0.25s ease;
}

.sec-area-icon-wrap svg {
    width: 19px;
    height: 19px;
}

.sec-area-card:hover .sec-area-icon-wrap {
    background: rgba(2, 132, 199, 0.15);
    border-color: rgba(56, 189, 248, 0.3);
    color: #38bdf8;
}

.sec-area-title {
    font-family: var(--subserv-font-heading, 'Inter', sans-serif);
    font-size: 16.5px;
    font-weight: 700;
    color: #f8fafc;
    line-height: 1.35;
    margin-bottom: 7px;
    letter-spacing: -0.01em;
    transition: color 0.25s ease;
}

.sec-area-card:hover .sec-area-title {
    color: #38bdf8;
}

.sec-area-desc {
    font-size: 13.5px;
    line-height: 1.55;
    color: #94a3b8;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .security-layer-section {
        padding: 65px 0;
    }

    .sec-main-title {
        font-size: 30px;
    }

    .sec-lead-desc {
        font-size: 15px;
    }
}

@media (max-width: 640px) {
    .sec-main-title {
        font-size: 25px;
    }

    .sec-diagram-card {
        padding: 20px 16px;
    }

    .sec-layer-item {
        padding: 10px 14px;
    }

    .sec-area-card {
        padding: 18px 16px;
    }
}

/* ==========================================================================
   Creative Minimal FAQ Accordion Section (Split Layout)
   ========================================================================== */
.subserv-faq-sec {
    position: relative;
    padding: 80px 0px;
    background: #fafbfd;
    border-top: 1px solid #f1f5f9;
    font-family: var(--subserv-font-body, 'Inter', sans-serif);
}

.subserv-faq-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
}

/* 2-Column Split Grid */
.subserv-faq-split-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 56px;
    align-items: start;
}


.subserv-faq-main-title {
    font-family: var(--subserv-font-heading, 'Inter', sans-serif);
    font-size: 38px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    margin: 0;
    letter-spacing: -0.025em;
}

.subserv-faq-main-title span {
    color: #fe4a23;
}

.subserv-faq-main-desc {
    font-size: 15.5px;
    line-height: 1.7;
    color: #64748b;
    margin: 16px 0 0;
}

/* Right Stream Column */
.subserv-faq-stream {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Minimalist Accordion Card */
.subserv-faq-card {
    background: #ffffff;
    border: 1px solid #e6ebf1;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.02);
    overflow: hidden;
    position: relative;
}

.subserv-faq-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 6px 18px -3px rgba(15, 23, 42, 0.04);
}

/* Radio System */
.subserv-faq-radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    margin: 0;
}

.subserv-faq-header-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    cursor: pointer;
    user-select: none;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.25s ease;
}

.subserv-faq-header-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    padding-right: 16px;
}

.subserv-faq-number {
    font-family: 'Inter';
    font-size: 13px;
    font-weight: 700;
    color: #94a3b8;
    background: #f8fafc;
    border: 1px solid #edf2f7;
    width: 34px;
    height: 34px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.subserv-faq-q-text {
    font-family: var(--subserv-font-heading, 'Inter', sans-serif);
    font-size: 16.5px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
    transition: color 0.25s ease;
}

.subserv-faq-toggle-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.subserv-faq-toggle-btn svg {
    display: block;
}

.subserv-faq-toggle-btn svg line {
    transition: transform 0.25s ease, opacity 0.25s ease;
    transform-origin: 12px 12px;
}

/* Active / Checked State */
.subserv-faq-radio:checked~.subserv-faq-header-label {
    padding: 20px 22px 14px;
}

.subserv-faq-radio:checked~.subserv-faq-header-label .subserv-faq-number {
    background: #fe4a23;
    border-color: #fe4a23;
    color: #ffffff;
    box-shadow: 0 3px 10px rgba(254, 74, 35, 0.3);
}

.subserv-faq-radio:checked~.subserv-faq-header-label .subserv-faq-q-text {
    color: #fe4a23;
}

.subserv-faq-radio:checked~.subserv-faq-header-label .subserv-faq-toggle-btn {
    background: #fff5f2;
    border-color: #fed7cc;
    color: #fe4a23;
}

.subserv-faq-radio:checked~.subserv-faq-header-label .subserv-faq-toggle-btn svg line:first-child {
    opacity: 0;
    transform: scaleY(0);
}

.subserv-faq-card:has(.subserv-faq-radio:checked) {
    border-color: rgba(254, 74, 35, 0.3);
    box-shadow: 0 10px 28px -6px rgba(254, 74, 35, 0.08), 0 2px 6px rgba(15, 23, 42, 0.02);
}

/* Animated Content Expansion (Absolute 0px when closed) */
.subserv-faq-body {
    display: grid;
    grid-template-rows: 0fr;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transition: grid-template-rows 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        max-height 0.35s ease,
        opacity 0.25s ease,
        visibility 0.35s ease;
}

.subserv-faq-radio:checked~.subserv-faq-body {
    grid-template-rows: 1fr;
    max-height: 2000px;
    opacity: 1;
    visibility: visible;
}

/* Dynamic CKEditor Typography */
.subserv-faq-content-inner {
    min-height: 0;
    overflow: hidden;
    padding: 0 22px 0 72px;
    font-size: 14.8px;
    line-height: 1.75;
    color: #475569;
    transition: padding 0.35s ease;
}

.subserv-faq-radio:checked~.subserv-faq-body .subserv-faq-content-inner {
    padding: 0 22px 22px 72px;
}

.subserv-faq-content-inner p {
    margin: 0 0 14px;
    line-height: 1.75;
    color: #475569;
}

.subserv-faq-content-inner p:last-child {
    margin-bottom: 0;
}

.subserv-faq-content-inner strong,
.subserv-faq-content-inner b {
    font-weight: 700;
    color: #0f172a;
}

.subserv-faq-content-inner ul {
    margin: 12px 0 16px;
    padding: 0;
    list-style: none;
}

.subserv-faq-content-inner ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 14.2px;
    color: #334155;
    line-height: 1.6;
}

.subserv-faq-content-inner ul li::before {
    content: "✦";
    position: absolute;
    left: 0;
    top: 0;
    color: #fe4a23;
    font-size: 10px;
    line-height: 1.6;
}

.subserv-faq-content-inner ol {
    margin: 12px 0 16px;
    padding-left: 18px;
}

.subserv-faq-content-inner ol li {
    margin-bottom: 8px;
    font-size: 14.2px;
    color: #334155;
    line-height: 1.6;
}

.subserv-faq-content-inner ol li::marker {
    color: #fe4a23;
    font-weight: 700;
}

.subserv-faq-content-inner blockquote {
    margin: 14px 0;
    padding: 12px 16px;
    border-left: 3px solid #fe4a23;
    background: #f8fafc;
    border-radius: 0 8px 8px 0;
    color: #475569;
    font-style: italic;
    font-size: 14px;
}

.subserv-faq-content-inner a {
    color: #fe4a23;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 600;
}

/* Responsive */
@media screen and (max-width: 1100px) {
    .subserv-faq-split-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .subserv-faq-sticky-col {
        position: static;
        max-width: 700px;
    }
}

@media screen and (max-width: 768px) {
    .subserv-faq-sec {
        padding: 75px 0 85px;
    }

    .subserv-faq-main-title {
        font-size: 28px;
    }

    .subserv-faq-header-label {
        padding: 18px 16px;
    }

    .subserv-faq-header-left {
        gap: 12px;
    }

    .subserv-faq-number {
        width: 28px;
        height: 28px;
        font-size: 11px;
        border-radius: 7px;
    }

    .subserv-faq-q-text {
        font-size: 15px;
    }

    .subserv-faq-toggle-btn {
        width: 30px;
        height: 30px;
    }

    .subserv-faq-content-inner {
        padding: 0 16px 18px 16px;
        font-size: 13.8px;
    }
}

/* ==========================================================================
   Framer JS Target Elements Optimization
   ========================================================================== */
[data-framer] {
    will-change: transform, opacity;
    backface-visibility: hidden;
}

@media (prefers-reduced-motion: reduce) {
    [data-framer] {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ==========================================================================
   Top Hero Trust River: Ultra-Clean Floating Stream (Distinct Layout)
   ========================================================================== */
/* Ensure non-hero top section clears the fixed header when placed at position 1 */
.dynamic-sections-wrapper>section:first-child:not(.subserv-hero-section),
.dynamic-sections-wrapper>div:first-child>section:not(.subserv-hero-section),
.subserv-hero-trust-river:first-child {
    padding-top: 70px !important;
}

.subserv-hero-trust-river {
    position: relative;
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #edf2f7;
    border-bottom: 1px solid #edf2f7;
    padding: 22px 0;
    overflow: hidden;
    z-index: 10;
}


.subserv-river-header {
    max-width: 1360px;
    margin: 0 auto 20px auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.subserv-trust-pillar-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 999px;
    padding: 6px 14px;
}

.subserv-trust-pillar-badge .subserv-pillar-text {
    font-family: var(--subserv-font-heading, 'Inter', sans-serif);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #0284c7;
}

.subserv-river-statement {
    font-family: var(--subserv-font-body, 'Inter', sans-serif);
    font-size: 15.5px;
    line-height: 1.65;
    color: #475569;
    max-width: 900px;
    margin: 0 auto;
}

.subserv-river-statement strong {
    color: #0f172a;
    font-weight: 600;
}

.subserv-trust-river-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 32px;
}

/* Left Anchor Pillar */
.subserv-trust-pillar {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.subserv-pillar-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0284c7;
    box-shadow: 0 0 10px rgba(2, 132, 199, 0.7);
    animation: subservPillarGlow 2s ease-in-out infinite;
}

@keyframes subservPillarGlow {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

.subserv-pillar-text {
    font-family: var(--subserv-font-heading, 'Inter', sans-serif);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #475569;
    white-space: nowrap;
}

.subserv-pillar-divider {
    width: 1px;
    height: 28px;
    background: linear-gradient(180deg, transparent, #cbd5e1, transparent);
    margin-left: 8px;
}

/* Right Sliding River */
.subserv-trust-river-slider {
    flex: 1;
    min-width: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    user-select: none;
}

.subserv-river-track {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 36px;
    /* min-width: 100%; */
    animation: subservRiverSlide 26s linear infinite;
    will-change: transform;
}

.subserv-trust-river-slider:hover .subserv-river-track {
    animation-play-state: paused;
}

/* Pure Floating Logo Item (NO card box) */
.subserv-river-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.subserv-river-item:hover {
    transform: scale(1.12);
}

.subserv-river-item img {
    height: 32px;
    max-width: 110px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

/* Bullet Separator Accent */
.subserv-river-bullet {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #cbd5e1;
    flex-shrink: 0;
}

/* River Edge Fades */
.subserv-river-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 5;
    pointer-events: none;
}

.subserv-river-fade.river-fade-left {
    left: 0;
    background: linear-gradient(90deg, #ffffff 0%, transparent 100%);
}

.subserv-river-fade.river-fade-right {
    right: 0;
    background: linear-gradient(270deg, #ffffff 0%, transparent 100%);
}

@keyframes subservRiverSlide {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

@media (max-width: 991px) {
    .subserv-trust-river-inner {
        flex-direction: column;
        gap: 16px;
        padding: 0 16px;
    }

    .subserv-pillar-divider {
        display: none;
    }

    .subserv-trust-river-slider {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .subserv-hero-trust-river {
        padding: 18px 0;
    }

    .subserv-river-header {
        margin-bottom: 14px;
        padding: 0 16px;
        gap: 10px;
    }

    .subserv-river-statement {
        font-size: 13.5px;
        line-height: 1.55;
    }

    .subserv-pillar-text {
        font-size: 11.5px;
    }

    .subserv-river-track {
        gap: 24px;
        animation-duration: 20s;
    }

    .subserv-river-item img {
        height: 26px;
        max-width: 85px;
    }

    .subserv-river-fade {
        width: 40px;
    }
}

/* ==========================================================================
   LATEST BLOG & INSIGHTS SLIDER SECTION
   ========================================================================== */
.subserv-blog-section {
    position: relative;
    padding: 85px 0 95px;
    background-color: #fafbfd;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(227, 86, 17, 0.035) 0%, transparent 45%),
        radial-gradient(circle at 90% 80%, rgba(2, 132, 199, 0.04) 0%, transparent 45%),
        linear-gradient(180deg, #ffffff 0%, #fafbfd 50%, #ffffff 100%);
    overflow: hidden;
}

.subserv-blog-ambient-node {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
}

.subserv-blog-node-left {
    top: 15%;
    left: -5%;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(227, 86, 17, 0.12) 0%, transparent 70%);
}

.subserv-blog-node-right {
    bottom: 10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.12) 0%, transparent 70%);
}

.subserv-blog-header {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 45px;
}

.subserv-blog-section .subserv-section-badge {
    border-color: rgba(227, 86, 17, 0.3);
    background: rgba(227, 86, 17, 0.05);
    box-shadow: 0 4px 14px rgba(227, 86, 17, 0.08);
}

.subserv-blog-section .subserv-section-badge:hover {
    border-color: #e35611;
    box-shadow: 0 6px 20px rgba(227, 86, 17, 0.18);
}

.subserv-blog-section .subserv-section-badge-dot {
    background-color: #e35611;
    box-shadow: 0 0 8px rgba(227, 86, 17, 0.6);
}

.subserv-blog-section .subserv-section-badge-text {
    color: #e35611;
}

.subserv-blog-header-left {
    max-width: 680px;
}

.subserv-blog-title {
    font-family: var(--subserv-font-heading, 'Inter', sans-serif);
    font-size: 36px;
    line-height: 1.22;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.025em;
    margin: 12px 0 12px;
}

.subserv-blog-subtitle {
    font-size: 15.5px;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

.subserv-blog-header-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.subserv-blog-slider-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.subserv-blog-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    color: #0f172a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}

.subserv-blog-nav-btn:hover:not(.swiper-button-disabled) {
    background: #e35611;
    border-color: #e35611;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(227, 86, 17, 0.25);
}

.subserv-blog-nav-btn.swiper-button-disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.subserv-blog-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 100px;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    color: #0f172a;
    font-family: var(--subserv-font-heading, 'Inter', sans-serif);
    font-weight: 700;
    font-size: 13.5px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}

.subserv-blog-view-all-btn:hover {
    background: #e35611;
    border-color: #e35611;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(227, 86, 17, 0.25);
}

.subserv-blog-view-all-btn svg {
    transition: transform 0.25s ease;
}

.subserv-blog-view-all-btn:hover svg {
    transform: translate(2px, -2px);
}

/* Slider Wrapper & Swiper Slide */
.subserv-blog-slider-wrapper {
    position: relative;
    z-index: 2;
}

.subserv-blog-swiper {
    overflow: hidden;
    padding: 10px 4px 25px;
}

.subserv-blog-swiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
    gap: 0;
}

.subserv-blog-swiper .swiper-slide {
    height: auto;
    display: flex;
    background: transparent;
    background-color: transparent;
    padding: 0;
    margin: 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
    gap: 0;
    flex-shrink: 0;
    box-sizing: border-box;
    cursor: default;
}

/* Blog Card */
.subserv-blog-card {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e8edf5;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.05);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.3s ease;
}

.subserv-blog-card:hover {
    transform: translateY(-6px);
    border-color: rgba(227, 86, 17, 0.35);
    box-shadow: 0 20px 38px -12px rgba(15, 23, 42, 0.10), 0 0 0 1px rgba(227, 86, 17, 0.1);
}

/* Card Image Link & Wrapper */
.subserv-blog-img-link {
    display: block;
    text-decoration: none;
}

.subserv-blog-img-wrap {
    position: relative;
    width: 100%;
    height: 215px;
    overflow: hidden;
    background-color: #f1f5f9;
}

.subserv-blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.subserv-blog-card:hover .subserv-blog-card-img {
    transform: scale(1.06);
}

.subserv-blog-cat-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 5px 12px;
    border-radius: 100px;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    font-family: var(--subserv-font-heading, 'Inter', sans-serif);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.02em;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Card Body */
.subserv-blog-body {
    padding: 22px 24px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Meta Data */
.subserv-blog-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 12.5px;
    color: #64748b;
    font-weight: 500;
}

.subserv-blog-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.subserv-blog-meta-item svg {
    color: #e35611;
}

.subserv-blog-meta-dot {
    color: #cbd5e1;
}

/* Card Heading */
.subserv-blog-card-heading {
    font-family: var(--subserv-font-heading, 'Inter', sans-serif);
    font-size: 18px;
    line-height: 1.42;
    font-weight: 800;
    margin: 0 0 10px;
    letter-spacing: -0.015em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 50px;
}

.subserv-blog-card-heading a {
    color: #0f172a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.subserv-blog-card:hover .subserv-blog-card-heading a {
    color: #e35611;
}

/* Excerpt */
.subserv-blog-card-excerpt {
    font-size: 13.8px;
    line-height: 1.6;
    color: #64748b;
    margin: 0 0 18px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

/* Footer CTA */
.subserv-blog-card-footer {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
}

.subserv-blog-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--subserv-font-heading, 'Inter', sans-serif);
    font-size: 13.5px;
    font-weight: 700;
    color: #e35611;
    text-decoration: none;
    transition: gap 0.25s ease, color 0.2s ease;
}

.subserv-blog-card-cta svg {
    transition: transform 0.25s ease;
}

.subserv-blog-card:hover .subserv-blog-card-cta {
    gap: 10px;
    color: #c44307;
}

.subserv-blog-card:hover .subserv-blog-card-cta svg {
    transform: translateX(4px);
}

/* Pagination */
.subserv-blog-pagination {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 20px;
}

.subserv-blog-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 100px;
    background: #cbd5e1;
    opacity: 1;
    transition: all 0.3s ease;
    cursor: pointer;
}

.subserv-blog-pagination .swiper-pagination-bullet-active {
    width: 26px;
    background: #e35611;
}

/* Responsive Media Queries */
@media (max-width: 1023px) {
    .subserv-blog-section {
        padding: 70px 0 80px;
    }

    .subserv-blog-title {
        font-size: 30px;
    }

    .subserv-blog-subtitle {
        font-size: 14.5px;
    }

    .subserv-blog-img-wrap {
        height: 195px;
    }
}

@media (max-width: 767px) {
    .subserv-blog-section {
        padding: 55px 0 65px;
    }

    .subserv-blog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 30px;
    }

    .subserv-blog-header-right {
        width: 100%;
        justify-content: space-between;
    }

    .subserv-blog-title {
        font-size: 24px;
    }

    .subserv-blog-subtitle {
        font-size: 13.5px;
    }

    .subserv-blog-pagination {
        display: flex;
    }

    .subserv-blog-card-heading {
        font-size: 17px;
        min-height: auto;
    }

    .subserv-blog-body {
        padding: 18px 18px 20px;
    }

    .subserv-blog-img-wrap {
        height: 190px;
    }
}

/* ==========================================================================
   BLOG HUB PAGE (NEW BLOG INDEX DESIGN SYSTEM)
   Parent class: .subserv-blog-hub-page
   ========================================================================== */
.subserv-blog-hub-page {
    position: relative;
    background-color: #ffffff;
    overflow: hidden;
}

/* Hero Section */
.subserv-blog-hub-page .subserv-blog-hub-hero {
    position: relative;
    padding: 130px 0 60px;
    background-color: #070c18;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(227, 86, 17, 0.16) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(2, 132, 199, 0.18) 0%, transparent 50%),
        linear-gradient(180deg, #070c18 0%, #0c1322 100%);
    overflow: hidden;
    text-align: center;
}

.subserv-blog-hub-page .subserv-blog-hub-hero-grid {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: 40px 40px;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 40%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.subserv-blog-hub-page .subserv-blog-hub-hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto;
    padding: 0 20px;
}

.subserv-blog-hub-page .subserv-blog-hub-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 18px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(227, 86, 17, 0.4);
    box-shadow: 0 4px 18px rgba(227, 86, 17, 0.15);
    margin-bottom: 22px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.subserv-blog-hub-page .subserv-blog-hub-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #e35611;
    box-shadow: 0 0 8px rgba(227, 86, 17, 0.8);
    animation: subservBadgePulse 2s infinite;
}

.subserv-blog-hub-page .subserv-blog-hub-badge-text {
    font-family: var(--subserv-font-heading, 'Inter', sans-serif);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.6px;
    color: #ff7a3d;
    text-transform: uppercase;
}

.subserv-blog-hub-page .subserv-blog-hub-hero-title {
    font-family: var(--subserv-font-heading, 'Inter', sans-serif);
    font-size: 46px;
    line-height: 1.18;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.025em;
    margin: 0 0 18px;
}

.subserv-blog-hub-page .subserv-blog-hub-hero-subtitle {
    font-size: 16.5px;
    line-height: 1.65;
    color: #94a3b8;
    max-width: 680px;
    margin: 0 auto 35px;
}

/* Search bar in Hero */
.subserv-blog-hub-page .subserv-blog-hub-search-wrap {
    position: relative;
    max-width: 580px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.subserv-blog-hub-page .subserv-blog-hub-search-icon {
    position: absolute;
    left: 20px;
    color: #94a3b8;
    pointer-events: none;
    z-index: 2;
}

.subserv-blog-hub-page .subserv-blog-hub-search-input {
    width: 100%;
    height: 56px;
    padding: 0 50px 0 54px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 15px;
    font-family: inherit;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    outline: none;
}

.subserv-blog-hub-page .subserv-blog-hub-search-input::placeholder {
    color: #94a3b8;
}

.subserv-blog-hub-page .subserv-blog-hub-search-input:focus {
    background: rgba(255, 255, 255, 0.14);
    border-color: #e35611;
    box-shadow: 0 10px 30px rgba(227, 86, 17, 0.2);
}

.subserv-blog-hub-page .subserv-blog-hub-search-clear {
    position: absolute;
    right: 18px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #cbd5e1;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.subserv-blog-hub-page .subserv-blog-hub-search-clear.active {
    display: flex;
}

.subserv-blog-hub-page .subserv-blog-hub-search-clear:hover {
    background: #e35611;
    color: #ffffff;
}

/* Category Filter Bar */
.subserv-blog-hub-page .subserv-blog-hub-filter-bar {
    position: relative;
    z-index: 5;
    background: #ffffff;
    border-bottom: 1px solid #e8edf5;
    padding: 18px 0;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
}

.subserv-blog-hub-page .subserv-blog-hub-filter-pills {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 12px;
    padding: 6px 0;
    width: 100%;
}

.subserv-blog-hub-page .subserv-blog-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border-radius: 100px;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    color: #475569;
    font-family: var(--subserv-font-heading, 'Inter', sans-serif);
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.25s ease;
    text-decoration: none;
}

.subserv-blog-hub-page .subserv-blog-filter-btn:hover {
    background: #fff5f0;
    border-color: rgba(227, 86, 17, 0.35);
    color: #e35611;
}

.subserv-blog-hub-page .subserv-blog-filter-btn.active {
    background: #e35611;
    border-color: #e35611;
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(227, 86, 17, 0.25);
}

.subserv-blog-hub-page .subserv-blog-filter-count {
    padding: 2px 7px;
    border-radius: 100px;
    background: rgba(15, 23, 42, 0.06);
    font-size: 11px;
    font-weight: 700;
    transition: background 0.25s ease, color 0.25s ease;
}

.subserv-blog-hub-page .subserv-blog-filter-btn.active .subserv-blog-filter-count {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

/* Main Content Area */
.subserv-blog-hub-page .subserv-blog-hub-main {
    padding: 60px 0 90px;
    background: #fafbfd;
}

/* Featured Spotlight Section */
.subserv-blog-hub-page .subserv-blog-featured-wrap {
    margin-bottom: 55px;
}

.subserv-blog-hub-page .subserv-blog-featured-card {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    background: #ffffff;
    border: 1px solid #e8edf5;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 16px 45px -12px rgba(15, 23, 42, 0.07);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.3s ease;
}

.subserv-blog-hub-page .subserv-blog-featured-card:hover {
    transform: translateY(-5px);
    border-color: rgba(227, 86, 17, 0.35);
    box-shadow: 0 24px 50px -12px rgba(15, 23, 42, 0.12);
}

.subserv-blog-hub-page .subserv-blog-featured-img-wrap {
    position: relative;
    width: 100%;
    min-height: 380px;
    height: 100%;
    overflow: hidden;
    background: #0f172a;
}

.subserv-blog-hub-page .subserv-blog-featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.subserv-blog-hub-page .subserv-blog-featured-card:hover .subserv-blog-featured-img {
    transform: scale(1.05);
}

.subserv-blog-hub-page .subserv-blog-featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    padding: 6px 16px;
    border-radius: 100px;
    background: linear-gradient(135deg, #e35611 0%, #ff7a1a 100%);
    color: #ffffff;
    font-family: var(--subserv-font-heading, 'Inter', sans-serif);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    box-shadow: 0 4px 14px rgba(227, 86, 17, 0.4);
    text-transform: uppercase;
}

.subserv-blog-hub-page .subserv-blog-featured-body {
    padding: 40px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.subserv-blog-hub-page .subserv-blog-featured-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
}

.subserv-blog-hub-page .subserv-blog-featured-cat {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 100px;
    background: #f1f5f9;
    color: #0f172a;
    font-family: var(--subserv-font-heading, 'Inter', sans-serif);
    font-size: 12px;
    font-weight: 700;
}

.subserv-blog-hub-page .subserv-blog-featured-title {
    font-family: var(--subserv-font-heading, 'Inter', sans-serif);
    font-size: 28px;
    line-height: 1.3;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    margin: 0 0 14px;
}

.subserv-blog-hub-page .subserv-blog-featured-title a {
    color: #0f172a;
    text-decoration: none;
    transition: color 0.25s ease;
}

.subserv-blog-hub-page .subserv-blog-featured-card:hover .subserv-blog-featured-title a {
    color: #e35611;
}

.subserv-blog-hub-page .subserv-blog-featured-excerpt {
    font-size: 15px;
    line-height: 1.65;
    color: #64748b;
    margin: 0 0 24px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.subserv-blog-hub-page .subserv-blog-featured-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.subserv-blog-hub-page .subserv-blog-featured-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.subserv-blog-hub-page .subserv-blog-featured-author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-weight: 700;
    font-size: 13px;
}

.subserv-blog-hub-page .subserv-blog-featured-author-name {
    font-size: 13.5px;
    font-weight: 700;
    color: #0f172a;
}

.subserv-blog-hub-page .subserv-blog-featured-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 100px;
    background: #e35611;
    color: #ffffff;
    font-family: var(--subserv-font-heading, 'Inter', sans-serif);
    font-weight: 700;
    font-size: 13.5px;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(227, 86, 17, 0.3);
    transition: all 0.25s ease;
}

.subserv-blog-hub-page .subserv-blog-featured-btn:hover {
    background: #c44307;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(227, 86, 17, 0.4);
}

.subserv-blog-hub-page .subserv-blog-featured-btn svg {
    transition: transform 0.25s ease;
}

.subserv-blog-hub-page .subserv-blog-featured-btn:hover svg {
    transform: translateX(4px);
}

/* Grid Section Header */
.subserv-blog-hub-page .subserv-blog-grid-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.subserv-blog-hub-page .subserv-blog-grid-title {
    font-family: var(--subserv-font-heading, 'Inter', sans-serif);
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    margin: 0;
}

.subserv-blog-hub-page .subserv-blog-grid-count {
    font-size: 14px;
    color: #64748b;
    font-weight: 600;
}

/* Articles 3-Column Grid */
.subserv-blog-hub-page .subserv-blog-hub-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-bottom: 50px;
}

/* Empty search result state */
.subserv-blog-hub-page .subserv-blog-empty-state {
    grid-column: 1 / -1;
    padding: 70px 20px;
    text-align: center;
    background: #ffffff;
    border-radius: 20px;
    border: 1px dashed #cbd5e1;
}

.subserv-blog-hub-page .subserv-blog-empty-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: #fff5f0;
    color: #e35611;
    display: flex;
    align-items: center;
    justify-content: center;
}

.subserv-blog-hub-page .subserv-blog-empty-title {
    font-family: var(--subserv-font-heading, 'Inter', sans-serif);
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px;
}

.subserv-blog-hub-page .subserv-blog-empty-desc {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

/* Pagination Row */
.subserv-blog-hub-page .subserv-blog-hub-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.subserv-blog-hub-page .subserv-blog-hub-pagination a,
.subserv-blog-hub-page .subserv-blog-hub-pagination span {
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border-radius: 12px;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    color: #0f172a;
    font-family: var(--subserv-font-heading, 'Inter', sans-serif);
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s ease;
}

.subserv-blog-hub-page .subserv-blog-hub-pagination a:hover {
    border-color: #e35611;
    color: #e35611;
    background: #fff5f0;
}

.subserv-blog-hub-page .subserv-blog-hub-pagination .active {
    background: #e35611;
    border-color: #e35611;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(227, 86, 17, 0.3);
}

.subserv-blog-hub-page .subserv-blog-hub-pagination .disabled {
    opacity: 0.4;
    pointer-events: none;
}

.subserv-hero-section .subserv-badge-dot::after,
.common-blue-badge .subserv-badge-dot::after {
    animation: subservBadgePulseblue 2s infinite;
}

@keyframes subservBadgePulseblue {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgb(2 132 199 / 70%);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(227, 86, 17, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(227, 86, 17, 0);
    }
}


/* Responsive Media Queries */
@media (max-width: 1023px) {
    .subserv-blog-hub-page .subserv-blog-hub-hero-title {
        font-size: 36px;
    }

    .subserv-blog-hub-page .subserv-blog-featured-card {
        grid-template-columns: 1fr;
    }

    .subserv-blog-hub-page .subserv-blog-featured-img-wrap {
        min-height: 280px;
        height: 280px;
    }

    .subserv-blog-hub-page .subserv-blog-featured-body {
        padding: 30px 28px;
    }

    .subserv-blog-hub-page .subserv-blog-featured-title {
        font-size: 24px;
    }

    .subserv-blog-hub-page .subserv-blog-hub-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .subserv-blog-hub-page .subserv-blog-hub-hero {
        padding: 100px 0 45px;
    }

    .subserv-blog-hub-page .subserv-blog-hub-hero-title {
        font-size: 28px;
    }

    .subserv-blog-hub-page .subserv-blog-hub-hero-subtitle {
        font-size: 14.5px;
        margin-bottom: 25px;
    }

    .subserv-blog-hub-page .subserv-blog-hub-search-input {
        height: 50px;
        font-size: 14px;
    }

    .subserv-blog-hub-page .subserv-blog-hub-main {
        padding: 40px 0 60px;
    }

    .subserv-blog-hub-page .subserv-blog-featured-card {
        border-radius: 18px;
    }

    .subserv-blog-hub-page .subserv-blog-featured-img-wrap {
        min-height: 220px;
        height: 220px;
    }

    .subserv-blog-hub-page .subserv-blog-featured-body {
        padding: 22px 20px;
    }

    .subserv-blog-hub-page .subserv-blog-featured-title {
        font-size: 20px;
    }

    .subserv-blog-hub-page .subserv-blog-featured-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .subserv-blog-hub-page .subserv-blog-featured-btn {
        width: 100%;
        justify-content: center;
    }

    .subserv-blog-hub-page .subserv-blog-hub-filter-pills {
        gap: 8px;
        justify-content: center;
    }

    .subserv-blog-hub-page .subserv-blog-filter-btn {
        padding: 7px 14px;
        font-size: 12.5px;
    }

    .subserv-blog-hub-page .subserv-blog-hub-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .capsule-bl {
        bottom: 3px;
    }

    .subserv-expert-float-capsule {
        display: none;
    }
}


/* --------------------------------------------------------------------------
   Sub Industries Intro Section (Light Theme Fintech Ecosystem)
   -------------------------------------------------------------------------- */
.sub-industries-intro {
    position: relative;
    padding: 80px 0;
    background-color: #f8fafc;
    background-image:
        radial-gradient(circle at 12% 18%, rgba(2, 132, 199, 0.05) 0%, transparent 45%),
        radial-gradient(circle at 88% 82%, rgba(0, 210, 255, 0.05) 0%, transparent 45%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    color: var(--subserv-text-title, #0f172a);
    font-family: var(--subserv-font-body, 'Inter', sans-serif);
    border-top: 1px solid rgba(226, 232, 240, 0.8);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.sub-industries-intro .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.sub-industries-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
}

/* Left Content Column */
.sub-industries-content {
    display: flex;
    flex-direction: column;
}

.sub-industries-title {
    font-size: 34px;
    line-height: 1.25;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 22px;
    letter-spacing: -0.02em;
}

.sub-industries-title .title-highlight {
    background: linear-gradient(135deg, #0284c7 0%, #2563eb 60%, #0082f3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
}

.sub-industries-text {
    font-size: 16px;
    line-height: 1.75;
    color: #475569;
    margin-bottom: 18px;
}

.sub-industries-text:last-child {
    margin-bottom: 0;
}

/* Right Visual Column - Full Bleed Rounded Card */
.sub-industries-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.sub-industries-visual-glow {
    position: absolute;
    inset: -15px;
    border-radius: 30px;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.16) 0%, rgba(0, 210, 255, 0.08) 50%, transparent 75%);
    filter: blur(28px);
    pointer-events: none;
    z-index: 0;
    transition: all 0.5s ease;
}

.sub-industries-visual:hover .sub-industries-visual-glow {
    filter: blur(34px);
    background: radial-gradient(circle, rgba(2, 132, 199, 0.24) 0%, rgba(0, 210, 255, 0.14) 55%, transparent 75%);
    transform: scale(1.04);
}

.sub-industries-card-frame {
    position: relative;
    z-index: 1;
    width: 100%;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow:
        0 20px 45px -15px rgba(15, 23, 42, 0.08),
        0 0 0 1px rgba(2, 132, 199, 0.05);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sub-industries-card-frame:hover {
    transform: translateY(-4px);
    border-color: rgba(2, 132, 199, 0.25);
    box-shadow:
        0 28px 55px -15px rgba(2, 132, 199, 0.18),
        0 0 0 1px rgba(2, 132, 199, 0.15);
}

.sub-industries-img-wrap {
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.sub-industries-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.sub-industries-card-frame:hover .sub-industries-img {
    transform: scale(1.025);
}

/* Responsive Media Queries */
@media (max-width: 1199px) {
    .sub-industries-title {
        font-size: 30px;
    }

    .sub-industries-grid {
        gap: 36px;
    }
}


@media (max-width: 576px) {
    .sub-industries-intro {
        padding: 48px 0;
    }

    .sub-industries-intro .container {
        padding: 0 18px;
    }

    .sub-industries-title {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .sub-industries-text {
        font-size: 14.5px;
        line-height: 1.65;
        margin-bottom: 14px;
    }

    .sub-industries-img-wrap {
        padding: 8px;
        border-radius: 12px;
    }
}

/* ==========================================================================
   Header Navigation & Mega Menu System - Class-Based with Parent Class
   ========================================================================== */

/* Parent-scoped navigation bar */
.creative-header .header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-self: stretch;
    margin-top: -14px;
    margin-bottom: -14px;
}

.creative-header .header-nav .nav-item {
    position: static;
    list-style: none;
    display: flex;
    align-items: center;
    height: 100%;
}

.creative-header .header-nav .nav-item.nav-item-compact {
    position: relative;
}

.creative-header .header-nav .nav-link {
    position: relative;
    color: #374151;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid transparent;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
}

.creative-header .header-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 0;
    right: 0;
    height: 25px;
    background: transparent;
}

.creative-header .header-nav .nav-link i {
    font-size: 10px;
    color: #6b7280;
    transition: transform 0.25s ease, color 0.2s ease;
}

.creative-header .header-nav .nav-link:hover,
.creative-header .header-nav .nav-item:hover .nav-link,
.creative-header .header-nav .nav-link.active {
    background: #fff0eb;
    border-color: #ffd5c4;
    color: #fe4a23;
}

.creative-header .header-nav .nav-link:hover i,
.creative-header .header-nav .nav-item:hover .nav-link i,
.creative-header .header-nav .nav-link.active i {
    transform: rotate(180deg);
    color: #fe4a23;
}

/* Mega Menu Container Base */
.creative-header .mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 1240px;
    max-width: calc(100vw - 40px);
    background: #ffffff;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.12), 0 0 1px rgba(0, 0, 0, 0.05);
    border-top: 3px solid #fe4a23;
    padding: 24px 30px 28px 30px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 999;
}

.creative-header .mega-menu::before {
    content: '';
    position: absolute;
    top: -25px;
    left: 0;
    right: 0;
    height: 25px;
    background: transparent;
}

.creative-header .header-nav .nav-item:hover .mega-menu,
.creative-header .mega-menu:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* 1-Column Menus (Our Work, Products, Insights, Company) - Content-Fitted Width */
.creative-header .mega-menu.mega-menu-cols-1 {
    width: max-content;
    min-width: 170px;
    padding: 18px 22px 20px 22px;
    border-radius: 0 0 14px 14px;
    box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.12), 0 0 1px rgba(0, 0, 0, 0.06);
}

.creative-header .mega-menu.mega-menu-cols-1 .mega-columns-grid {
    display: block;
    max-height: none;
    overflow: visible;
    padding-right: 0;
}

.creative-header .mega-menu.mega-menu-cols-1 .mega-column {
    gap: 16px;
}

.creative-header .mega-menu.mega-menu-cols-1 .mega-group-title {
    font-size: 11.5px;
    font-weight: 800;
    color: #111827;
    letter-spacing: 0.6px;
    margin-bottom: 8px;
    white-space: nowrap;
}

.creative-header .mega-menu.mega-menu-cols-1 .mega-link {
    font-size: 13.5px;
    font-weight: 500;
    padding: 6px 8px;
    margin: 0 -8px;
    border-radius: 6px;
    white-space: nowrap;
    transition: all 0.18s ease;
}

.creative-header .mega-menu.mega-menu-cols-1 .mega-link:hover {
    background: #fff6f3;
    color: #fe4a23;
    transform: translateX(4px);
}

@media screen and (max-width: 1240px) {
    .creative-header .nav-item-company .mega-menu.mega-menu-cols-1 {
        left: auto;
        right: 0;
        transform: none;
    }
}

/* 2-Column Menus (Industries, Technologies) - Content-Fitted Width */
.creative-header .mega-menu.mega-menu-cols-2 {
    width: 580px;
    max-width: calc(100vw - 32px);
    padding: 20px 24px 24px 24px;
    border-radius: 0 0 16px 16px;
}

.creative-header .mega-columns-grid {
    max-height: none;
    overflow: visible;
    padding-right: 0;
}

.creative-header .mega-columns-grid::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

.creative-header .mega-menu.mega-menu-cols-2 .mega-columns-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-height: none;
    overflow: visible;
}

.creative-header .mega-menu.mega-menu-cols-2 .mega-top-banner {
    padding: 12px 18px;
    margin-bottom: 18px;
    gap: 16px;
}

.creative-header .mega-menu.mega-menu-cols-2 .mega-top-banner-content h3 {
    font-size: 16px;
    margin-bottom: 2px;
}

.creative-header .mega-menu.mega-menu-cols-2 .mega-top-banner-content p {
    font-size: 12px;
    line-height: 1.4;
}

.creative-header .mega-menu.mega-menu-cols-2 .mega-top-banner-btn {
    padding: 7px 16px;
    font-size: 12px;
    gap: 6px;
}

/* 3-Column Menus (Solutions) */
.creative-header .mega-menu.mega-menu-cols-3 {
    width: 980px;
    max-width: calc(100vw - 40px);
    padding: 24px 28px 28px 28px;
}

.creative-header .mega-menu.mega-menu-cols-3 .mega-columns-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Services Vertical Tabs Mega Menu (.mega-menu-vtabs) - Minimal, No Scroll */
.creative-header .mega-menu.mega-menu-vtabs {
    width: 1040px;
    max-width: calc(100vw - 40px);
    padding: 20px 24px 22px 24px;
    max-height: none;
    overflow: visible;
}

.creative-header .creative-vtabs-container {
    display: flex;
    align-items: stretch;
    gap: 24px;
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    min-height: auto;
}

/* Left Sidebar: Minimal Vertical Tabs */
.creative-header .creative-vtabs-nav {
    width: 205px;
    flex-shrink: 0;
    background: #f8fafc;
    border: 1px solid #eef2f6;
    border-radius: 10px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.creative-header .creative-vtab-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 12px;
    border-radius: 7px;
    cursor: pointer;
    transition: all 0.16s ease;
    user-select: none;
    background: transparent;
    border: none;
}

.creative-header .creative-vtab-title {
    font-size: 13.5px;
    font-weight: 600;
    color: #374151;
    transition: color 0.16s ease;
    white-space: nowrap;
}

.creative-header .creative-vtab-arrow {
    font-size: 10px;
    color: #cbd5e1;
    transition: transform 0.16s ease, color 0.16s ease;
}

.creative-header .creative-vtab-item:hover {
    background: #ffffff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.creative-header .creative-vtab-item:hover .creative-vtab-title,
.creative-header .creative-vtab-item:hover .creative-vtab-arrow {
    color: #fe4a23;
}

.creative-header .creative-vtab-item.active {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(254, 74, 35, 0.08);
    border-left: 3px solid #fe4a23;
}

.creative-header .creative-vtab-item.active .creative-vtab-title {
    color: #fe4a23;
    font-weight: 700;
}

.creative-header .creative-vtab-item.active .creative-vtab-arrow {
    color: #fe4a23;
    transform: translateX(2px);
}

/* Right Content: Tab Panels (3 Columns, Zero Scroll) */
.creative-header .creative-vtabs-panels {
    flex-grow: 1;
    padding: 2px 0 0 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    overflow: visible;
    max-height: none;
}

.creative-header .creative-vtab-panel {
    display: none;
    overflow: visible;
    max-height: none;
    animation: creativeFadeIn 0.18s ease;
}

.creative-header .creative-vtab-panel.active {
    display: block;
}

@keyframes creativeFadeIn {
    from {
        opacity: 0;
        transform: translateY(3px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.creative-header .creative-vtab-hidden-mobile-header {
    display: none;
}

/* 3-Column Minimal Grid (No Scroll) */
.creative-header .creative-vtab-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    overflow: visible;
    max-height: none;
}

.creative-header .creative-vtab-col {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.creative-header .creative-vtab-col-header {
    font-size: 11px;
    font-weight: 800;
    color: #fe4a23;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 6px;
    padding-bottom: 4px;
    border-bottom: 1px solid #f1f5f9;
}

.creative-header .creative-vtab-link {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #374151;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    padding: 4px 6px;
    margin: 0 -6px;
    border-radius: 5px;
    transition: all 0.15s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.creative-header .creative-vtab-link-bullet {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #cbd5e1;
    flex-shrink: 0;
    transition: all 0.15s ease;
}

.creative-header .creative-vtab-link:hover {
    background: #fff6f3;
    color: #fe4a23;
    transform: translateX(3px);
}

.creative-header .creative-vtab-link:hover .creative-vtab-link-bullet {
    background: #fe4a23;
    transform: scale(1.4);
}

@media screen and (max-width: 1267px) {

    .creative-header .mega-menu.mega-menu-wide,
    .creative-header .mega-menu.mega-menu-vtabs {
        width: 1000px;
        padding: 22px 24px;
    }
}

/* ==========================================================================
   USE CASES SECTION: WALLETS FOR DIFFERENT BUSINESS MODELS
   Parent Class: .subserv-usecases-sec
   Description: 8-card responsive grid showcasing diverse crypto wallet use cases
   ========================================================================== */

/* Main Section Wrapper */
.subserv-usecases-sec {
    position: relative;
    padding: 95px 0 105px;
    background-color: #f8fafc;
    background-image:
        radial-gradient(circle at 50% 15%, rgba(59, 130, 246, 0.05) 0%, transparent 65%),
        radial-gradient(circle at 85% 85%, rgba(139, 92, 246, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 15% 85%, rgba(16, 185, 129, 0.04) 0%, transparent 50%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    overflow: hidden;
    font-family: var(--subserv-font-body, 'Inter', sans-serif);
    box-sizing: border-box;
}

/* Container */
.subserv-usecases-sec .subserv-usecases-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

/* Section Header Area */
.subserv-usecases-sec .subserv-usecases-header {
    text-align: center;
    margin: 0 auto 52px;
    max-width: 820px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Top Pill Badge */
.subserv-usecases-sec .subserv-usecases-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 7px 18px;
    border-radius: 9999px;
    background: #edf3ff;
    border: 1px solid #dbe6fd;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.07);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.subserv-usecases-sec .subserv-usecases-badge:hover {
    background: #e4eeff;
    border-color: #c7dbfc;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.12);
}

.subserv-usecases-sec .subserv-usecases-badge-icon {
    width: 15px;
    height: 15px;
    color: #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.subserv-usecases-sec .subserv-usecases-badge-text {
    font-family: var(--subserv-font-heading, 'Inter', sans-serif);
    font-size: 12.5px;
    font-weight: 700;
    color: #2563eb;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1;
}

/* Main Section Title */
.subserv-usecases-sec .subserv-usecases-title {
    font-family: var(--subserv-font-heading, 'Inter', sans-serif);
    font-size: 42px;
    font-weight: 800;
    color: #0b1536;
    line-height: 1.22;
    letter-spacing: -0.025em;
    margin: 0 0 16px;
    text-align: center;
}

/* Title Decorative Divider Accent */
.subserv-usecases-sec .subserv-usecases-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin: 0 auto 18px;
}

.subserv-usecases-sec .subserv-usecases-divider-bar {
    width: 38px;
    height: 3.5px;
    border-radius: 10px;
    background: linear-gradient(90deg, #3b82f6 0%, #6366f1 100%);
    display: block;
}

.subserv-usecases-sec .subserv-usecases-divider-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #6366f1;
    display: block;
}

/* Subtitle Description */
.subserv-usecases-sec .subserv-usecases-subtitle {
    font-family: var(--subserv-font-body, 'Inter', sans-serif);
    font-size: 16px;
    line-height: 1.65;
    color: #64748b;
    max-width: 680px;
    margin: 0 auto;
    font-weight: 400;
    text-align: center;
}

/* Grid Layout: 4 Columns on Desktop */
.subserv-usecases-sec .subserv-usecases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    align-items: stretch;
    margin: 0 auto;
}

/* Card Base Styles */
.subserv-usecases-sec .subserv-usecase-card {
    background: #ffffff;
    border: 1px solid #edf2f7;
    border-radius: 22px;
    padding: 34px 24px 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.03), 0 1px 3px rgba(15, 23, 42, 0.02);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.35s ease;
    box-sizing: border-box;
}

/* Card Number Badge (Top-Right) */
.subserv-usecases-sec .subserv-usecase-num {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: var(--subserv-font-heading, 'Inter', sans-serif);
    font-size: 13px;
    font-weight: 700;
    padding: 4px 9px;
    border-radius: 9999px;
    line-height: 1.2;
    letter-spacing: 0.03em;
    transition: transform 0.3s ease;
}

.subserv-usecases-sec .subserv-usecase-card:hover .subserv-usecase-num {
    transform: translateY(-2px);
}

/* Card Icon Box with 3D Perspective */
.subserv-usecases-sec .subserv-usecase-icon-box {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    flex-shrink: 0;
    perspective: 600px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.subserv-usecases-sec .subserv-usecase-card:hover .subserv-usecase-icon-box {
    transform: scale(1.08) translateY(-2px);
}

/* 3D Flip Animation for Icon on Hover */
.subserv-usecases-sec .subserv-usecase-icon-svg {
    width: 38px;
    height: 38px;
    display: block;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.subserv-usecases-sec .subserv-usecase-card:hover .subserv-usecase-icon-svg,
.subserv-usecases-sec .subserv-usecase-icon-box:hover .subserv-usecase-icon-svg {
    transform: rotateY(360deg) scale(1.1);
}

/* Card Title */
.subserv-usecases-sec .subserv-usecase-title {
    font-family: var(--subserv-font-heading, 'Inter', sans-serif);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 10px;
    letter-spacing: -0.015em;
    text-align: center;
}

/* Card Decorative Divider Line */
.subserv-usecases-sec .subserv-usecase-line {
    width: 26px;
    height: 2.5px;
    border-radius: 9999px;
    margin: 0 auto 16px;
    transition: width 0.3s ease;
    display: block;
}

.subserv-usecases-sec .subserv-usecase-card:hover .subserv-usecase-line {
    width: 38px;
}

/* Card Description */
.subserv-usecases-sec .subserv-usecase-desc {
    font-family: var(--subserv-font-body, 'Inter', sans-serif);
    font-size: 14px;
    line-height: 1.65;
    color: #64748b;
    margin: 0;
    text-align: center;
}

/* --------------------------------------------------------------------------
   Individual Card Color Themes
   -------------------------------------------------------------------------- */

/* 01. Fintech Theme (Blue) */
.subserv-usecases-sec .card-fintech .subserv-usecase-num {
    background: #eff6ff;
    color: #2563eb;
}

.subserv-usecases-sec .card-fintech .subserv-usecase-icon-box {
    background: radial-gradient(circle at 50% 50%, #e0edff 0%, #f0f6ff 100%);
    color: #1d68f0;
}

.subserv-usecases-sec .card-fintech .subserv-usecase-icon-box svg {
    color: #1d68f0;
}

.subserv-usecases-sec .card-fintech .subserv-usecase-title {
    color: #1d68f0;
}

.subserv-usecases-sec .card-fintech .subserv-usecase-line {
    background-color: #1d68f0;
}

.subserv-usecases-sec .card-fintech:hover {
    transform: translateY(-6px);
    border-color: rgba(29, 104, 240, 0.3);
    box-shadow: 0 16px 36px -8px rgba(29, 104, 240, 0.16), 0 4px 12px rgba(15, 23, 42, 0.04);
}

/* 02. Payments Theme (Green) */
.subserv-usecases-sec .card-payments .subserv-usecase-num {
    background: #ecfdf5;
    color: #059669;
}

.subserv-usecases-sec .card-payments .subserv-usecase-icon-box {
    background: radial-gradient(circle at 50% 50%, #d1fae5 0%, #ecfdf5 100%);
    color: #00b074;
}

.subserv-usecases-sec .card-payments .subserv-usecase-icon-box svg {
    color: #00b074;
}


.subserv-usecases-sec .card-payments .subserv-usecase-title {
    color: #00b074;
}

.subserv-usecases-sec .card-payments .subserv-usecase-line {
    background-color: #00b074;
}

.subserv-usecases-sec .card-payments:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 176, 116, 0.3);
    box-shadow: 0 16px 36px -8px rgba(0, 176, 116, 0.16), 0 4px 12px rgba(15, 23, 42, 0.04);
}

/* 03. Web3 Platforms Theme (Purple) */
.subserv-usecases-sec .card-web3 .subserv-usecase-num {
    background: #f5f3ff;
    color: #7c3aed;
}

.subserv-usecases-sec .card-web3 .subserv-usecase-icon-box {
    background: radial-gradient(circle at 50% 50%, #ede9fe 0%, #f5f3ff 100%);
    color: #8b5cf6;
}

.subserv-usecases-sec .card-web3 .subserv-usecase-icon-box svg {
    color: #8b5cf6;
}

.subserv-usecases-sec .card-web3 .subserv-usecase-title {
    color: #8b5cf6;
}

.subserv-usecases-sec .card-web3 .subserv-usecase-line {
    background-color: #8b5cf6;
}

.subserv-usecases-sec .card-web3:hover {
    transform: translateY(-6px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 16px 36px -8px rgba(139, 92, 246, 0.16), 0 4px 12px rgba(15, 23, 42, 0.04);
}

/* 04. Gaming Theme (Orange) */
.subserv-usecases-sec .card-gaming .subserv-usecase-num {
    background: #fff7ed;
    color: #ea580c;
}

.subserv-usecases-sec .card-gaming .subserv-usecase-icon-box {
    background: radial-gradient(circle at 50% 50%, #ffedd5 0%, #fff7ed 100%);
    color: #f97316;
}

.subserv-usecases-sec .card-gaming .subserv-usecase-icon-box svg {
    color: #f97316;
}


.subserv-usecases-sec .card-gaming .subserv-usecase-title {
    color: #f97316;
}

.subserv-usecases-sec .card-gaming .subserv-usecase-line {
    background-color: #f97316;
}

.subserv-usecases-sec .card-gaming:hover {
    transform: translateY(-6px);
    border-color: rgba(249, 115, 22, 0.3);
    box-shadow: 0 16px 36px -8px rgba(249, 115, 22, 0.16), 0 4px 12px rgba(15, 23, 42, 0.04);
}

/* 05. Loyalty Theme (Pink/Rose) */
.subserv-usecases-sec .card-loyalty .subserv-usecase-num {
    background: #fff1f2;
    color: #e11d48;
}

.subserv-usecases-sec .card-loyalty .subserv-usecase-icon-box {
    background: radial-gradient(circle at 50% 50%, #ffe4e6 0%, #fff1f2 100%);
    color: #f43f5e;
}

.subserv-usecases-sec .card-loyalty .subserv-usecase-icon-box svg {
    color: #f43f5e;
}

.subserv-usecases-sec .card-loyalty .subserv-usecase-title {
    color: #f43f5e;
}

.subserv-usecases-sec .card-loyalty .subserv-usecase-line {
    background-color: #f43f5e;
}

.subserv-usecases-sec .card-loyalty:hover {
    transform: translateY(-6px);
    border-color: rgba(244, 63, 94, 0.3);
    box-shadow: 0 16px 36px -8px rgba(244, 63, 94, 0.16), 0 4px 12px rgba(15, 23, 42, 0.04);
}

/* 06. Tokenized Assets Theme (Teal/Cyan) */
.subserv-usecases-sec .card-tokenized .subserv-usecase-num {
    background: #f0fdfa;
    color: #0d9488;
}

.subserv-usecases-sec .card-tokenized .subserv-usecase-icon-box {
    background: radial-gradient(circle at 50% 50%, #ccfbf1 0%, #f0fdfa 100%);
    color: #0d9488;
}

.subserv-usecases-sec .card-tokenized .subserv-usecase-icon-box svg {
    color: #0d9488;
}

.subserv-usecases-sec .card-tokenized .subserv-usecase-title {
    color: #0d9488;
}

.subserv-usecases-sec .card-tokenized .subserv-usecase-line {
    background-color: #0d9488;
}

.subserv-usecases-sec .card-tokenized:hover {
    transform: translateY(-6px);
    border-color: rgba(13, 148, 136, 0.3);
    box-shadow: 0 16px 36px -8px rgba(13, 148, 136, 0.16), 0 4px 12px rgba(15, 23, 42, 0.04);
}

/* 07. Institutional Finance Theme (Indigo/Blue) */
.subserv-usecases-sec .card-institutional .subserv-usecase-num {
    background: #eff6ff;
    color: #1d4ed8;
}

.subserv-usecases-sec .card-institutional .subserv-usecase-icon-box {
    background: radial-gradient(circle at 50% 50%, #dbeafe 0%, #eff6ff 100%);
    color: #2563eb;
}

.subserv-usecases-sec .card-institutional .subserv-usecase-icon-box svg {
    color: #2563eb;
}

.subserv-usecases-sec .card-institutional .subserv-usecase-title {
    color: #2563eb;
}

.subserv-usecases-sec .card-institutional .subserv-usecase-line {
    background-color: #2563eb;
}

.subserv-usecases-sec .card-institutional:hover {
    transform: translateY(-6px);
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 16px 36px -8px rgba(37, 99, 235, 0.16), 0 4px 12px rgba(15, 23, 42, 0.04);
}

/* 08. Visual Showcase Card */
.subserv-usecases-sec .card-visual {
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.subserv-usecases-sec .subserv-usecase-visual-wrap {
    width: 100%;
    height: 100%;
    min-height: 255px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 18px;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.06) 0%, rgba(248, 250, 252, 0.5) 100%);
    overflow: hidden;
}

.subserv-usecases-sec .subserv-usecase-visual-img {
    width: 100%;
    height: 100%;
    max-height: 260px;
    object-fit: contain;
    border-radius: 16px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
}

.subserv-usecases-sec .card-visual:hover {
    transform: translateY(-6px);
    border-color: rgba(59, 130, 246, 0.35);
    box-shadow: 0 16px 36px -8px rgba(59, 130, 246, 0.16), 0 4px 12px rgba(15, 23, 42, 0.04);
}

.subserv-usecases-sec .card-visual:hover .subserv-usecase-visual-img {
    transform: scale(1.05);
}

/* --------------------------------------------------------------------------
   Responsive Media Queries
   -------------------------------------------------------------------------- */

/* Tablet (Max-width: 1199px) -> 2 Columns */
@media (max-width: 1199px) {
    .subserv-usecases-sec .subserv-usecases-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .subserv-usecases-sec .subserv-usecases-title {
        font-size: 34px;
    }
}

/* Mobile (Max-width: 767px) -> 1 Column */
@media (max-width: 767px) {
    .subserv-usecases-sec {
        padding: 65px 0 75px;
    }

    .subserv-usecases-sec .subserv-usecases-header {
        margin-bottom: 38px;
    }

    .subserv-usecases-sec .subserv-usecases-title {
        font-size: 26px;
        line-height: 1.28;
    }

    .subserv-usecases-sec .subserv-usecases-subtitle {
        font-size: 14.5px;
        line-height: 1.6;
        padding: 0 8px;
    }

    .subserv-usecases-sec .subserv-usecases-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .subserv-usecases-sec .subserv-usecase-card {
        padding: 28px 20px 24px;
        border-radius: 18px;
    }

    .subserv-usecases-sec .subserv-usecase-icon-box {
        width: 68px;
        height: 68px;
        margin-bottom: 18px;
    }

    .subserv-usecases-sec .subserv-usecase-icon-svg {
        width: 32px;
        height: 32px;
    }

    .subserv-usecases-sec .subserv-usecase-title {
        font-size: 18.5px;
    }

    .subserv-usecases-sec .subserv-usecase-desc {
        font-size: 13.5px;
    }

    .subserv-usecases-sec .subserv-usecase-visual-wrap {
        min-height: 220px;
    }

    .subserv-usecases-sec .subserv-usecase-visual-img {
        max-height: 220px;
    }
}

/* ==========================================================================
   OUR APPROACH SECTION: SIX-STAGE HORIZONTAL TIMELINE
   Parent Class: .approch-content-common
   ========================================================================== */

.approch-content-common {
    position: relative;
    padding: 100px 0 115px;
    background-color: #080c14;
    background-image:
        radial-gradient(circle at 50% 0%, rgba(2, 132, 199, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 85% 85%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 15% 85%, rgba(14, 165, 233, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #090e17 0%, #060910 100%);
    overflow: hidden;
    font-family: var(--subserv-font-body, 'Inter', sans-serif);
    color: #ffffff;
    box-sizing: border-box;
}

/* Ambient Background Glows */
.approch-content-common .approch-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
}

.approch-content-common .approch-bg-glow.glow-1 {
    top: 5%;
    left: 20%;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.14) 0%, transparent 70%);
}

.approch-content-common .approch-bg-glow.glow-2 {
    bottom: 5%;
    right: 15%;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
}

/* Subtle Technical Grid Background */
.approch-content-common .approch-grid-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: 40px 40px;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    pointer-events: none;
    z-index: 1;
}

.approch-content-common .container {
    position: relative;
    z-index: 2;
    max-width: 1320px;
}

/* Section Header */
.approch-content-common .approch-header {
    max-width: 820px;
    margin: 0 auto 55px;
    text-align: center;
}

.approch-content-common .approch-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 100px;
    background: rgba(56, 189, 248, 0.08);
    border: 1px solid rgba(56, 189, 248, 0.22);
    color: #38bdf8;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 18px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.approch-content-common .approch-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #38bdf8;
    box-shadow: 0 0 8px #38bdf8;
    animation: approchDotPulse 2s infinite ease-in-out;
}

@keyframes approchDotPulse {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(0.9);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.approch-content-common .approch-title {
    font-family: var(--subserv-font-heading, 'Inter', sans-serif);
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
}

.approch-content-common .approch-title-gradient {
    background: linear-gradient(135deg, #38bdf8 0%, #818cf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.approch-content-common .approch-subtitle {
    font-size: 16.5px;
    line-height: 1.65;
    color: #94a3b8;
    margin: 0;
}

/* Timeline Wrapper */
.approch-content-common .approch-timeline-wrapper {
    position: relative;
    margin-top: 25px;
}

/* Continuous Horizontal Timeline Track Line (Desktop) */
.approch-content-common .approch-timeline-track {
    position: absolute;
    top: 22px;
    left: calc(100% / 12);
    right: calc(100% / 12);
    height: 2px;
    z-index: 1;
    pointer-events: none;
}

.approch-content-common .approch-timeline-line {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(56, 189, 248, 0.25) 0%,
            rgba(56, 189, 248, 0.7) 25%,
            rgba(99, 102, 241, 0.7) 75%,
            rgba(129, 140, 248, 0.3) 100%);
    border-radius: 2px;
}

.approch-content-common .approch-timeline-pulse {
    position: absolute;
    top: -1px;
    left: 0;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, #38bdf8 50%, #ffffff 80%, transparent 100%);
    border-radius: 4px;
    filter: drop-shadow(0 0 8px #38bdf8);
    animation: approchLinePulse 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes approchLinePulse {
    0% {
        left: 0;
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    85% {
        opacity: 1;
    }

    100% {
        left: calc(100% - 120px);
        opacity: 0;
    }
}

/* Stages 6-Column Grid */
.approch-content-common .approch-stages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 18px;
    position: relative;
    z-index: 2;
}

/* Stage Item */
.approch-content-common .approch-stage-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

/* Node Wrapper & Numbered Indicator */
.approch-content-common .approch-node-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 14px;
}

.approch-content-common .approch-node-dot {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #0b1329;
    border: 2px solid rgba(56, 189, 248, 0.45);
    box-shadow: 0 0 16px rgba(56, 189, 248, 0.25), inset 0 0 10px rgba(56, 189, 248, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.approch-content-common .approch-node-num {
    font-size: 14px;
    font-weight: 800;
    color: #38bdf8;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.approch-content-common .approch-node-connector {
    width: 2px;
    height: 18px;
    background: linear-gradient(180deg, rgba(56, 189, 248, 0.4) 0%, rgba(56, 189, 248, 0.1) 100%);
    transition: background 0.3s ease;
}

/* Stage Card */
.approch-content-common .approch-stage-card {
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 24px 18px 22px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.approch-content-common .approch-stage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #38bdf8, #818cf8);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.approch-content-common .approch-card-header {
    margin-bottom: 12px;
}

.approch-content-common .approch-stage-title {
    font-family: var(--subserv-font-heading, 'Inter', sans-serif);
    font-size: 15px;
    font-weight: 700;
    color: #f8fafc;
    line-height: 1.35;
    letter-spacing: -0.01em;
    margin: 0;
    transition: color 0.3s ease;
}

.approch-content-common .approch-stage-desc {
    font-size: 12.5px;
    line-height: 1.58;
    color: #94a3b8;
    margin: 0 0 10px 0;
    transition: color 0.3s ease;
}

/* Hover Micro-Interactions */
.approch-content-common .approch-stage-item:hover .approch-node-dot {
    transform: scale(1.14);
    border-color: #38bdf8;
    background: #0284c7;
    box-shadow: 0 0 24px rgba(56, 189, 248, 0.6), inset 0 0 12px rgba(255, 255, 255, 0.3);
}

.approch-content-common .approch-stage-item:hover .approch-node-num {
    color: #ffffff;
}

.approch-content-common .approch-stage-item:hover .approch-node-connector {
    background: #38bdf8;
    box-shadow: 0 0 8px #38bdf8;
}

.approch-content-common .approch-stage-item:hover .approch-stage-card {
    transform: translateY(-6px);
    border-color: rgba(56, 189, 248, 0.4);
    background: rgba(15, 23, 42, 0.85);
    box-shadow: 0 16px 36px -8px rgba(2, 132, 199, 0.22), 0 0 24px rgba(56, 189, 248, 0.12);
}

.approch-content-common .approch-stage-item:hover .approch-stage-card::before {
    opacity: 1;
}

.approch-content-common .approch-stage-item:hover .approch-stage-title {
    color: #38bdf8;
}

.approch-content-common .approch-stage-item:hover .approch-stage-desc {
    color: #cbd5e1;
}

/* --------------------------------------------------------------------------
   Responsive Media Queries
   -------------------------------------------------------------------------- */

/* Large Tablet (Max-width: 1199px) -> 3 Columns x 2 Rows */
@media (max-width: 1199px) {
    .approch-content-common .approch-timeline-track {
        display: none;
    }

    .approch-content-common .approch-stages-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px 20px;
    }

    .approch-content-common .approch-stage-item {
        align-items: stretch;
    }

    .approch-content-common .approch-node-wrapper {
        flex-direction: row;
        gap: 12px;
        align-items: center;
        margin-bottom: 12px;
    }

    .approch-content-common .approch-node-connector {
        display: none;
    }

    .approch-content-common .approch-title {
        font-size: 32px;
    }
}

/* Small Tablet / Mobile Landscape (Max-width: 767px) -> 1 Column */
@media (max-width: 767px) {
    .approch-content-common {
        padding: 75px 0 85px;
    }

    .approch-content-common .approch-header {
        margin-bottom: 38px;
    }

    .approch-content-common .approch-title {
        font-size: 27px;
        line-height: 1.28;
    }

    .approch-content-common .approch-subtitle {
        font-size: 14.5px;
    }

    .approch-content-common .approch-stages-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .approch-content-common .approch-stage-card {
        padding: 20px 18px;
        border-radius: 16px;
    }

    .approch-content-common .approch-node-dot {
        width: 38px;
        height: 38px;
    }

    .approch-content-common .approch-node-num {
        font-size: 13px;
    }

    .approch-content-common .approch-stage-title {
        font-size: 16.5px;
    }

    .approch-content-common .approch-stage-desc {
        font-size: 13px;
    }
}

/* ==========================================================================
   13. ETHEREUM ECOSYSTEM SECTION (Light & Creative Floating Dock Strip - No Grid)
   ========================================================================== */
.ethereum-ecosystem {
    position: relative;
    padding: 100px 0 105px;
    background-color: #ffffff;
    background-image:
        radial-gradient(circle at 20% 15%, rgba(2, 132, 199, 0.05) 0%, transparent 45%),
        radial-gradient(circle at 80% 85%, rgba(99, 102, 241, 0.05) 0%, transparent 45%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    overflow: hidden;
    color: var(--subserv-text-title, #0f172a);
    font-family: var(--subserv-font-body, 'Inter', sans-serif);
    border-top: 1px solid rgba(226, 232, 240, 0.6);
}

/* Ambient Soft Light Glow Orbs */
.ethereum-ecosystem .eth-eco-ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
}

.ethereum-ecosystem .eth-eco-ambient-glow.eth-glow-1 {
    top: 5%;
    left: 10%;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.08) 0%, transparent 70%);
}

.ethereum-ecosystem .eth-eco-ambient-glow.eth-glow-2 {
    bottom: 5%;
    right: 10%;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.06) 0%, transparent 70%);
}

.ethereum-ecosystem .container {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
}

/* Section Header */
.ethereum-ecosystem .eth-eco-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 46px;
}

.ethereum-ecosystem .eth-eco-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 6px 18px;
    border-radius: 100px;
    background: #ffffff;
    border: 1px solid rgba(2, 132, 199, 0.18);
    box-shadow: 0 4px 14px rgba(2, 132, 199, 0.06), 0 1px 3px rgba(0, 0, 0, 0.03);
    margin-bottom: 18px;
    transition: all 0.3s ease;
}

.ethereum-ecosystem .eth-eco-badge:hover {
    border-color: rgba(2, 132, 199, 0.35);
    box-shadow: 0 6px 18px rgba(2, 132, 199, 0.12);
    transform: translateY(-1px);
}

.ethereum-ecosystem .eth-eco-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0284c7;
    box-shadow: 0 0 8px rgba(2, 132, 199, 0.7);
    position: relative;
}

.ethereum-ecosystem .eth-eco-badge-dot::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: rgba(2, 132, 199, 0.3);
    animation: subservBadgePulse 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.ethereum-ecosystem .eth-eco-badge-text {
    font-family: var(--subserv-font-heading, 'Inter', sans-serif);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #0f172a;
    text-transform: uppercase;
}

.ethereum-ecosystem .eth-eco-title {
    font-family: var(--subserv-font-heading, 'Inter', sans-serif);
    font-size: 38px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #0f172a;
    margin: 0 0 16px;
}

.ethereum-ecosystem .eth-eco-title-gradient {
    background: linear-gradient(135deg, #0284c7 0%, #2563eb 50%, #4f46e5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.ethereum-ecosystem .eth-eco-desc {
    font-size: 16px;
    line-height: 1.65;
    color: #475569;
    margin: 0 auto;
    max-width: 740px;
    font-weight: 400;
}

/* --------------------------------------------------------------------------
   Creative Horizontal Floating Dock Bar (No Grid)
   -------------------------------------------------------------------------- */
.ethereum-ecosystem .eth-eco-strip-dock {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 24px;
    padding: 12px 14px;
    box-shadow:
        0 20px 40px -12px rgba(15, 23, 42, 0.06),
        0 2px 8px rgba(0, 0, 0, 0.02),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.ethereum-ecosystem .eth-eco-strip-dock:hover {
    border-color: rgba(2, 132, 199, 0.25);
    box-shadow:
        0 24px 50px -12px rgba(2, 132, 199, 0.1),
        0 4px 14px rgba(0, 0, 0, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

/* Continuous Horizontal Flow Track */
.ethereum-ecosystem .eth-eco-strip-track {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* Individual Interactive Pill */
.ethereum-ecosystem .eth-eco-pill {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 8px 14px;
    border-radius: 16px;
    background: transparent;
    transition: all 0.32s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
    position: relative;
}

/* Micro Separator Notch */
.ethereum-ecosystem .eth-eco-separator {
    width: 1px;
    height: 42px;
    background: linear-gradient(180deg, transparent 0%, rgba(226, 232, 240, 0.9) 30%, rgba(226, 232, 240, 0.9) 70%, transparent 100%);
    flex-shrink: 0;
    transition: opacity 0.3s ease;
}

/* Logo Vector Icon Box */
.ethereum-ecosystem .eth-eco-icon-wrap {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    border-radius: 12px;
    background: #f8fafc;
    /* border: 1px solid rgba(226, 232, 240, 0.85); */
    color: #475569;
    transition: all 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}

.eth-eco-icon-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ethereum-ecosystem .eth-eco-svg {
    width: 26px;
    height: 26px;
    display: block;
    transition: transform 0.32s ease;
}

/* Metadata Text */
.ethereum-ecosystem .eth-eco-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    width: 100%;
    text-align: center;
}

.ethereum-ecosystem .eth-eco-label {
    font-family: var(--subserv-font-heading, 'Inter', sans-serif);
    font-size: 13.5px;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: -0.01em;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.ethereum-ecosystem .eth-eco-category {
    font-size: 10.5px;
    font-weight: 600;
    color: #64748b;
    background: #f1f5f9;
    padding: 2px 7px;
    border-radius: 100px;
    letter-spacing: 0.2px;
    line-height: 1.2;
    transition: all 0.3s ease;
}

/* Interactive Hover States */
.ethereum-ecosystem .eth-eco-pill:hover {
    background: #ffffff;
    box-shadow: 0 10px 24px -4px rgba(2, 132, 199, 0.12), 0 2px 6px rgba(0, 0, 0, 0.04);
    transform: translateY(-4px);
}

.ethereum-ecosystem .eth-eco-pill:hover .eth-eco-icon-wrap {
    background: #ffffff;
    border-color: rgba(2, 132, 199, 0.35);
    color: #0284c7;
    transform: scale(1.12);
    box-shadow: 0 6px 18px rgba(2, 132, 199, 0.15);
}

.ethereum-ecosystem .eth-eco-pill:hover .eth-eco-label {
    color: #0284c7;
}

.ethereum-ecosystem .eth-eco-pill:hover .eth-eco-category {
    background: #e0f2fe;
    color: #0284c7;
}

/* --------------------------------------------------------------------------
   Small Action Link Below: "View All Technologies"
   -------------------------------------------------------------------------- */
.ethereum-ecosystem .eth-eco-footer-action {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 34px;
}

.ethereum-ecosystem .eth-eco-view-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--subserv-font-heading, 'Inter', sans-serif);
    font-size: 13.5px;
    font-weight: 600;
    color: #475569;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 100px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ethereum-ecosystem .eth-eco-view-link .eth-eco-link-arrow {
    width: 14px;
    height: 14px;
    color: #0284c7;
    transition: transform 0.3s ease;
}

.ethereum-ecosystem .eth-eco-view-link:hover {
    color: #0284c7;
    background: #ffffff;
    border-color: #0284c7;
    box-shadow: 0 6px 18px rgba(2, 132, 199, 0.12);
    transform: translateY(-2px);
}

.ethereum-ecosystem .eth-eco-view-link:hover .eth-eco-link-arrow {
    transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   Responsive Media Queries
   -------------------------------------------------------------------------- */
/* Large Tablet (Max-width: 1199px) -> 4 Columns x 2 Rows */
@media (max-width: 1199px) {
    .ethereum-ecosystem .eth-eco-strip-track {
        flex-wrap: wrap;
        gap: 10px;
    }

    .ethereum-ecosystem .eth-eco-separator {
        display: none;
    }

    .ethereum-ecosystem .eth-eco-pill {
        flex: 1 1 calc(25% - 10px);
        min-width: 140px;
        background: #f8fafc;
        border: 1px solid rgba(226, 232, 240, 0.8);
    }

    .ethereum-ecosystem .eth-eco-title {
        font-size: 32px;
    }
}

/* Small Tablet & Mobile (Max-width: 767px) -> 2 Columns */
@media (max-width: 767px) {
    .ethereum-ecosystem {
        padding: 70px 0 80px;
    }

    .ethereum-ecosystem .eth-eco-header {
        margin-bottom: 32px;
    }

    .ethereum-ecosystem .eth-eco-title {
        font-size: 26px;
        line-height: 1.25;
    }

    .ethereum-ecosystem .eth-eco-desc {
        font-size: 14.5px;
    }

    .ethereum-ecosystem .eth-eco-strip-dock {
        padding: 10px;
        border-radius: 20px;
    }

    .ethereum-ecosystem .eth-eco-strip-track {
        gap: 8px;
    }

    .ethereum-ecosystem .eth-eco-pill {
        flex: 1 1 calc(50% - 8px);
        padding: 14px 6px 12px;
    }

    .ethereum-ecosystem .eth-eco-icon-wrap {
        width: 38px;
        height: 38px;
        margin-bottom: 6px;
    }

    .ethereum-ecosystem .eth-eco-svg {
        width: 22px;
        height: 22px;
    }

    .ethereum-ecosystem .eth-eco-label {
        font-size: 13px;
    }

    .ethereum-ecosystem .eth-eco-category {
        font-size: 10px;
    }

    .ethereum-ecosystem .eth-eco-footer-action {
        margin-top: 26px;
    }
}

/* ==========================================================================
   14. WHY ETHEREUM SECTION (Five Cards with Creative Technical Icons & Animations)
   ========================================================================== */
.why-ethereum-content {
    position: relative;
    padding: 105px 0 115px;
    background-color: #ffffff;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(2, 132, 199, 0.05) 0%, transparent 45%),
        radial-gradient(circle at 90% 80%, rgba(99, 102, 241, 0.05) 0%, transparent 45%),
        linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
    overflow: hidden;
    color: var(--subserv-text-title, #0f172a);
    font-family: var(--subserv-font-body, 'Inter', sans-serif);
    border-top: 1px solid rgba(226, 232, 240, 0.6);
}

/* Background Cyber Matrix Grid Pattern */
.why-ethereum-content .why-eth-grid-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: 40px 40px;
    background-image:
        linear-gradient(to right, rgba(2, 132, 199, 0.035) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(2, 132, 199, 0.035) 1px, transparent 1px);
    pointer-events: none;
    z-index: 1;
}

/* Ambient Decorative Glows */
.why-ethereum-content .why-eth-ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 1;
}

.why-ethereum-content .why-eth-ambient-glow.glow-left {
    top: 15%;
    left: -6%;
    width: 440px;
    height: 440px;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.08) 0%, transparent 70%);
}

.why-ethereum-content .why-eth-ambient-glow.glow-right {
    bottom: 10%;
    right: -6%;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.07) 0%, transparent 70%);
}

.why-ethereum-content .container {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
}

/* Header */
.why-ethereum-content .why-eth-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 56px;
}

.why-ethereum-content .why-eth-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 6px 18px;
    border-radius: 100px;
    background: #ffffff;
    border: 1px solid rgba(2, 132, 199, 0.2);
    box-shadow: 0 4px 14px rgba(2, 132, 199, 0.06), 0 1px 3px rgba(0, 0, 0, 0.03);
    margin-bottom: 20px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-ethereum-content .why-eth-badge:hover {
    border-color: rgba(2, 132, 199, 0.45);
    box-shadow: 0 6px 18px rgba(2, 132, 199, 0.14);
    transform: translateY(-1px);
}

.why-ethereum-content .why-eth-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0284c7;
    box-shadow: 0 0 8px rgba(2, 132, 199, 0.85);
    position: relative;
}

.why-ethereum-content .why-eth-badge-dot::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: rgba(2, 132, 199, 0.35);
    animation: subservBadgePulse 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.why-ethereum-content .why-eth-badge-text {
    font-family: var(--subserv-font-heading, 'Inter', sans-serif);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #0f172a;
    text-transform: uppercase;
}

.why-ethereum-content .why-eth-title {
    font-family: var(--subserv-font-heading, 'Inter', sans-serif);
    font-size: 38px;
    line-height: 1.22;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #0f172a;
    margin: 0 0 18px;
}

.why-ethereum-content .why-eth-title-gradient {
    background: linear-gradient(135deg, #0284c7 0%, #2563eb 50%, #4f46e5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.why-ethereum-content .why-eth-desc {
    font-size: 16px;
    line-height: 1.68;
    color: #475569;
    margin: 0 auto;
    max-width: 760px;
    font-weight: 400;
}

/* --------------------------------------------------------------------------
   5-Card Grid Layout (3 on top row, 2 on bottom row)
   -------------------------------------------------------------------------- */
.why-ethereum-content .why-eth-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 26px;
}

.why-ethereum-content .why-eth-card {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 22px;
    padding: 32px 28px 28px;
    display: flex;
    flex-direction: column;
    box-shadow:
        0 8px 24px -6px rgba(15, 23, 42, 0.04),
        0 2px 6px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    z-index: 1;
}

/* Row placement for 5 cards: 3 top (span 2), 2 bottom (span 3) */
.why-ethereum-content .why-eth-card:nth-child(1),
.why-ethereum-content .why-eth-card:nth-child(2),
.why-ethereum-content .why-eth-card:nth-child(3) {
    grid-column: span 2;
}

/* .why-ethereum-content .why-eth-card:nth-child(4),
.why-ethereum-content .why-eth-card:nth-child(5) {
    grid-column: span 3;
} */

.why-ethereum-content .why-eth-card:nth-last-child(2),
.why-ethereum-content .why-eth-card:last-child {
    grid-column: span 3;
}

.why-ethereum-content .why-eth-card {
    grid-column: span 2;
}

.subserv-eco-satellite.sat-8 {
    bottom: -45px;
    right: 30%;
    color: #059669;
}

.subserv-eco-satellite.sat-7 {
    top: -40px;
    left: 40%;
    color: #ea580c;
}

/* Background Card Glow on Hover */
.why-ethereum-content .why-eth-card-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.1) 0%, transparent 70%);
    opacity: 0;
    transform: translate(30%, -30%) scale(0.8);
    pointer-events: none;
    transition: all 0.45s ease;
    z-index: -1;
}

/* Top Accent Shimmer Bar */
.why-ethereum-content .why-eth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3.5px;
    background: linear-gradient(90deg, #0284c7 0%, #2563eb 50%, #6366f1 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

/* Bottom Expandable Indicator Line */
.why-ethereum-content .why-eth-card-bar {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #0284c7, transparent);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Card Hover Elevation */
.why-ethereum-content .why-eth-card:hover {
    transform: translateY(-8px);
    border-color: rgba(2, 132, 199, 0.4);
    box-shadow:
        0 24px 48px -12px rgba(2, 132, 199, 0.14),
        0 6px 16px rgba(0, 0, 0, 0.03);
}

.why-ethereum-content .why-eth-card:hover::before {
    opacity: 1;
}

.why-ethereum-content .why-eth-card:hover .why-eth-card-glow {
    opacity: 1;
    transform: translate(20%, -20%) scale(1.3);
}

.why-ethereum-content .why-eth-card:hover .why-eth-card-bar {
    width: 80%;
}

/* --------------------------------------------------------------------------
   Creative Icon Wrap, Orbital Ring, & Box
   -------------------------------------------------------------------------- */
.why-ethereum-content .why-eth-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.why-ethereum-content .why-eth-icon-wrap {
    position: relative;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Outer Orbiting Ring around Icon */
.why-ethereum-content .why-eth-icon-orbit {
    position: absolute;
    inset: -6px;
    border-radius: 20px;
    border: 1.5px dashed rgba(2, 132, 199, 0.25);
    opacity: 0;
    transform: scale(0.85);
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-ethereum-content .why-eth-card:hover .why-eth-icon-orbit {
    opacity: 1;
    transform: scale(1.02);
    animation: ethOrbitRotate 12s linear infinite;
    border-color: rgba(2, 132, 199, 0.45);
}

@keyframes ethOrbitRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Main Icon Box */
.why-ethereum-content .why-eth-icon-box {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(2, 132, 199, 0.08) 0%, rgba(99, 102, 241, 0.08) 100%);
    border: 1px solid rgba(2, 132, 199, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0284c7;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-ethereum-content .why-eth-icon-svg {
    width: 30px;
    height: 30px;
    display: block;
    overflow: visible;
    transition: transform 0.35s ease;
}

/* Icon Box Hover Transformation */
.why-ethereum-content .why-eth-card:hover .why-eth-icon-box {
    background: linear-gradient(135deg, #0284c7 0%, #2563eb 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 10px 24px rgba(2, 132, 199, 0.35);
    transform: translateY(-2px) scale(1.06);
}

/* Number Tag */
.why-ethereum-content .why-eth-num {
    font-family: var(--subserv-font-heading, 'Inter', sans-serif);
    font-size: 13px;
    font-weight: 700;
    color: #94a3b8;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 5px 12px;
    border-radius: 100px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.why-ethereum-content .why-eth-card:hover .why-eth-num {
    color: #0284c7;
    background: #e0f2fe;
    border-color: rgba(2, 132, 199, 0.35);
    transform: scale(1.05);
}

/* Card Typography */
.why-ethereum-content .why-eth-card-title {
    font-family: var(--subserv-font-heading, 'Inter', sans-serif);
    font-size: 19px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.015em;
    color: #0f172a;
    margin: 0 0 10px;
    transition: color 0.3s ease;
}

.why-ethereum-content .why-eth-card:hover .why-eth-card-title {
    color: #0284c7;
}

.why-ethereum-content .why-eth-card-desc {
    font-size: 14.5px;
    line-height: 1.64;
    color: #64748b;
    margin: 0;
    font-weight: 400;
}

/* ==========================================================================
   CREATIVE ICON KEYFRAME HOVER ANIMATIONS (Card Specific)
   ========================================================================== */

/* 1. Established Ecosystem: Pulsing Hub & Streaming Node Lines */
.why-ethereum-content .card-ecosystem .eth-anim-center-node,
.why-ethereum-content .card-ecosystem .eth-anim-node,
.why-ethereum-content .card-ecosystem .eth-anim-line {
    transform-origin: 16px 16px;
    transition: all 0.35s ease;
}

.why-ethereum-content .card-ecosystem:hover .eth-anim-center-node {
    animation: ethNodePulse 1.6s ease-in-out infinite alternate;
}

@keyframes ethNodePulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.35);
        opacity: 1;
        filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.9));
    }
}

.why-ethereum-content .card-ecosystem:hover .node-tl {
    animation: ethSatelliteBob 1.8s ease-in-out infinite alternate;
}

.why-ethereum-content .card-ecosystem:hover .node-tr {
    animation: ethSatelliteBob 1.8s ease-in-out 0.3s infinite alternate-reverse;
}

.why-ethereum-content .card-ecosystem:hover .node-bl {
    animation: ethSatelliteBob 1.8s ease-in-out 0.6s infinite alternate;
}

.why-ethereum-content .card-ecosystem:hover .node-br {
    animation: ethSatelliteBob 1.8s ease-in-out 0.9s infinite alternate-reverse;
}

@keyframes ethSatelliteBob {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(1.5px, -1.5px);
    }
}

.why-ethereum-content .card-ecosystem:hover .line-left,
.why-ethereum-content .card-ecosystem:hover .line-right {
    stroke-dasharray: 4 3;
    animation: ethLineStream 1s linear infinite;
}

@keyframes ethLineStream {
    from {
        stroke-dashoffset: 14;
    }

    to {
        stroke-dashoffset: 0;
    }
}

/* 2. Programmable Assets: Isometric Diamond Levitation & Code Flash */
.why-ethereum-content .card-programmable .eth-anim-diamond-top,
.why-ethereum-content .card-programmable .eth-anim-diamond-mid,
.why-ethereum-content .card-programmable .eth-anim-diamond-bot,
.why-ethereum-content .card-programmable .eth-anim-code {
    transform-origin: 16px 16px;
    transition: all 0.35s ease;
}

.why-ethereum-content .card-programmable:hover .eth-anim-diamond-top {
    animation: ethDiamondLevitate 1.8s ease-in-out infinite alternate;
}

@keyframes ethDiamondLevitate {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-3.5px);
        filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.8));
    }
}

.why-ethereum-content .card-programmable:hover .eth-anim-diamond-bot {
    animation: ethDiamondBottomExpand 1.8s ease-in-out infinite alternate;
}

@keyframes ethDiamondBottomExpand {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(2.5px);
    }
}

.why-ethereum-content .card-programmable:hover .code-left {
    animation: ethCodeLeftSlide 1.2s ease-in-out infinite alternate;
}

.why-ethereum-content .card-programmable:hover .code-right {
    animation: ethCodeRightSlide 1.2s ease-in-out infinite alternate;
}

@keyframes ethCodeLeftSlide {
    0% {
        transform: translateX(0);
        opacity: 0.6;
    }

    100% {
        transform: translateX(-2.5px);
        opacity: 1;
    }
}

@keyframes ethCodeRightSlide {
    0% {
        transform: translateX(0);
        opacity: 0.6;
    }

    100% {
        transform: translateX(2.5px);
        opacity: 1;
    }
}

/* 3. Broad Infrastructure: Active Server Blade Shifting & Blinking Status LEDs */
.why-ethereum-content .card-infrastructure .eth-anim-server,
.why-ethereum-content .card-infrastructure .eth-anim-led,
.why-ethereum-content .card-infrastructure .eth-anim-slot {
    transition: all 0.35s ease;
}

.why-ethereum-content .card-infrastructure:hover .server-1 {
    animation: ethServerShift 1.6s ease-in-out infinite alternate;
}

.why-ethereum-content .card-infrastructure:hover .server-2 {
    animation: ethServerShift 1.6s ease-in-out 0.25s infinite alternate-reverse;
}

.why-ethereum-content .card-infrastructure:hover .server-3 {
    animation: ethServerShift 1.6s ease-in-out 0.5s infinite alternate;
}

@keyframes ethServerShift {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(2px);
    }
}

.why-ethereum-content .card-infrastructure:hover .led-1 {
    animation: ethLedGlow 0.8s ease infinite alternate;
}

.why-ethereum-content .card-infrastructure:hover .led-2 {
    animation: ethLedGlow 0.8s ease 0.25s infinite alternate;
}

.why-ethereum-content .card-infrastructure:hover .led-3 {
    animation: ethLedGlow 0.8s ease 0.5s infinite alternate;
}

@keyframes ethLedGlow {
    0% {
        opacity: 0.3;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1.4);
        filter: drop-shadow(0 0 4px #ffffff);
    }
}

/* 4. Layer 2 Options: Dynamic Rollup Layer Compression & Speed Arrow Surge */
.why-ethereum-content .card-layer2 .eth-anim-l2-base,
.why-ethereum-content .card-layer2 .eth-anim-l2-tier,
.why-ethereum-content .card-layer2 .eth-anim-speed-arrow,
.why-ethereum-content .card-layer2 .eth-anim-speed-tail {
    transform-origin: 16px 16px;
    transition: all 0.35s ease;
}

.why-ethereum-content .card-layer2:hover .eth-anim-l2-base {
    animation: ethRollupTop 1.5s ease-in-out infinite alternate;
}

@keyframes ethRollupTop {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-2.5px);
    }
}

.why-ethereum-content .card-layer2:hover .tier-2 {
    animation: ethRollupBottom 1.5s ease-in-out infinite alternate;
}

@keyframes ethRollupBottom {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(2px);
    }
}

.why-ethereum-content .card-layer2:hover .eth-anim-speed-arrow,
.why-ethereum-content .card-layer2:hover .eth-anim-speed-tail {
    animation: ethSpeedSurge 1.1s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
}

@keyframes ethSpeedSurge {
    0% {
        transform: translateX(-4px);
        opacity: 0.2;
    }

    50% {
        transform: translateX(1px);
        opacity: 1;
    }

    100% {
        transform: translateX(5px);
        opacity: 0.2;
    }
}

/* 5. Interoperability: Bridge Node Synchrony & Data Packet Motion */
.why-ethereum-content .card-interoperability .eth-anim-bridge-hub,
.why-ethereum-content .card-interoperability .eth-anim-bridge-path,
.why-ethereum-content .card-interoperability .eth-anim-packet {
    transform-origin: 16px 16px;
    transition: all 0.35s ease;
}

.why-ethereum-content .card-interoperability:hover .hub-1 {
    animation: ethHubPulse 1.6s ease-in-out infinite alternate;
}

.why-ethereum-content .card-interoperability:hover .hub-2 {
    animation: ethHubPulse 1.6s ease-in-out 0.4s infinite alternate;
}

.why-ethereum-content .card-interoperability:hover .hub-3 {
    animation: ethHubPulse 1.6s ease-in-out 0.8s infinite alternate;
}

@keyframes ethHubPulse {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.18);
        filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.85));
    }
}

.why-ethereum-content .card-interoperability:hover .path-top {
    stroke-dasharray: 4 3;
    animation: ethPathFlow 0.8s linear infinite;
}

@keyframes ethPathFlow {
    from {
        stroke-dashoffset: 14;
    }

    to {
        stroke-dashoffset: 0;
    }
}

.why-ethereum-content .card-interoperability:hover .packet-1 {
    animation: ethPacketHorizontal 1.2s ease-in-out infinite alternate;
}

@keyframes ethPacketHorizontal {
    0% {
        transform: translateX(-4px);
        opacity: 0.4;
    }

    100% {
        transform: translateX(4px);
        opacity: 1;
        filter: drop-shadow(0 0 3px #ffffff);
    }
}

.why-ethereum-content .card-interoperability:hover .packet-2 {
    animation: ethPacketVertical 1.2s ease-in-out 0.3s infinite alternate;
}

@keyframes ethPacketVertical {
    0% {
        transform: translateY(-3px);
        opacity: 0.4;
    }

    100% {
        transform: translateY(3px);
        opacity: 1;
        filter: drop-shadow(0 0 3px #ffffff);
    }
}

/* --------------------------------------------------------------------------
   Responsive Breakpoints
   -------------------------------------------------------------------------- */
/* Large Tablet (Max-width: 1199px) -> 2 Columns for cards 1-4, 5th card spans full */
@media (max-width: 1199px) {
    .why-ethereum-content .why-eth-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .why-ethereum-content .why-eth-card:nth-child(1),
    .why-ethereum-content .why-eth-card:nth-child(2),
    .why-ethereum-content .why-eth-card:nth-child(3),
    .why-ethereum-content .why-eth-card:nth-child(4) {
        grid-column: span 1;
    }

    .why-ethereum-content .why-eth-card:nth-child(5) {
        grid-column: span 2;
    }

    .why-ethereum-content .why-eth-title {
        font-size: 32px;
    }
}

/* Small Tablet & Mobile (Max-width: 767px) -> 1 Column */
@media (max-width: 767px) {
    .why-ethereum-content {
        padding: 70px 0 80px;
    }

    .why-ethereum-content .why-eth-header {
        margin-bottom: 36px;
    }

    .why-ethereum-content .why-eth-title {
        font-size: 26px;
        line-height: 1.25;
    }

    .why-ethereum-content .why-eth-desc {
        font-size: 14.5px;
    }

    .why-ethereum-content .why-eth-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .why-ethereum-content .why-eth-card:nth-child(1),
    .why-ethereum-content .why-eth-card:nth-child(2),
    .why-ethereum-content .why-eth-card:nth-child(3),
    .why-ethereum-content .why-eth-card:nth-child(4),
    .why-ethereum-content .why-eth-card:nth-child(5) {
        grid-column: span 1;
    }

    .why-ethereum-content .why-eth-card {
        padding: 24px 20px 22px;
        border-radius: 18px;
    }

    .why-ethereum-content .why-eth-icon-wrap {
        width: 48px;
        height: 48px;
    }

    .why-ethereum-content .why-eth-icon-box {
        width: 46px;
        height: 46px;
    }

    .why-ethereum-content .why-eth-icon-svg {
        width: 25px;
        height: 25px;
    }

    .why-ethereum-content .why-eth-card-title {
        font-size: 17.5px;
    }

    .why-ethereum-content .why-eth-card-desc {
        font-size: 13.5px;
    }
}

/* ==========================================================================
   Web3 Integrations Section: Creative Orbital Constellation Stage
   ========================================================================== */
.integration-web-content {
    position: relative;
    padding: 120px 0 130px;
    background: #060913;
    overflow: hidden;
    color: #ffffff;
}

/* Cosmic Cyber Background */
.web3-orbital-canvas-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 50% 50%, rgba(2, 132, 199, 0.12) 0%, rgba(99, 102, 241, 0.06) 45%, transparent 70%),
        radial-gradient(circle at 1px 1px, rgba(56, 189, 248, 0.12) 1px, transparent 0);
    background-size: 100% 100%, 36px 36px;
    pointer-events: none;
    z-index: 0;
}

.web3-orbital-glow-spot {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(120px);
    z-index: 0;
}

.web3-orbital-glow-spot.glow-core {
    width: 650px;
    height: 650px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(14, 165, 233, 0.22) 0%, rgba(99, 102, 241, 0.12) 50%, transparent 75%);
}

.integration-web-content .container {
    position: relative;
    z-index: 1;
}

/* --------------------------------------------------------------------------
   Section Header (Dark Neon Theme)
   -------------------------------------------------------------------------- */
.web3-int-header {
    text-align: center;
    max-width: 840px;
    margin: 0 auto 75px;
}

.web3-int-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 18px;
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.3);
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.15);
    margin-bottom: 22px;
}

.web3-int-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #38bdf8;
    box-shadow: 0 0 10px #38bdf8;
    animation: web3PulseDot 2s ease-in-out infinite;
}

@keyframes web3PulseDot {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.4);
        opacity: 0.6;
    }
}

.web3-int-badge-text {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #38bdf8;
}

.web3-int-title {
    font-size: 44px;
    line-height: 1.18;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.03em;
    margin: 0 0 18px;
}

.web3-int-title-gradient {
    background: linear-gradient(135deg, #38bdf8 0%, #818cf8 50%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.web3-int-desc {
    font-size: 17px;
    line-height: 1.7;
    color: #94a3b8;
    margin: 0 auto;
    max-width: 680px;
}

/* --------------------------------------------------------------------------
   Horizontal Hub-and-Spoke Stage Architecture
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   Horizontal Hub-and-Spoke Stage Architecture (Clean & Minimalist)
   -------------------------------------------------------------------------- */
.web3-horizontal-stage {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 10px 0;
}

/* Crisp Clean Connecting Lines */
.web3-horizontal-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: visible;
}

.web3-hz-line {
    fill: none;
    stroke: rgba(56, 189, 248, 0.3);
    stroke-width: 1.5px;
}

.web3-hz-pulse-dot {
    fill: #38bdf8;
    filter: drop-shadow(0 0 6px #38bdf8);
}

/* --------------------------------------------------------------------------
   Horizontal Rows (Top Row & Bottom Row)
   -------------------------------------------------------------------------- */
.web3-horizontal-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 3;
}

.web3-row-top {
    margin-bottom: 0;
}

.web3-row-bottom {
    margin-top: 0;
}

/* --------------------------------------------------------------------------
   Clean Minimalist Spoke Cards
   -------------------------------------------------------------------------- */
.web3-hz-card {
    position: relative;
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(56, 189, 248, 0.16);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 18px;
    padding: 24px 22px 20px;
    box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.4);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
    display: flex;
    overflow: hidden;
    flex-direction: column;
}

/* Corner Cyber Marks */
.web3-hz-card-corner {
    position: absolute;
    width: 6px;
    height: 6px;
    border-color: #38bdf8;
    opacity: 0.35;
    transition: all 0.3s ease;
}

.web3-hz-card-corner.corner-tl {
    top: 0;
    left: 0;
    border-top: 2px solid;
    border-left: 2px solid;
    border-top-left-radius: 4px;
}

.web3-hz-card-corner.corner-br {
    bottom: 0;
    right: 0;
    border-bottom: 2px solid;
    border-right: 2px solid;
    border-bottom-right-radius: 4px;
}

/* Top Accent Glow on Hover */
.web3-hz-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #38bdf8, #818cf8);
    opacity: 0;
    border-radius: 18px 18px 0 0;
    transition: opacity 0.35s ease;
}

/* Card Header */
.web3-hz-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    gap: 10px;
}

.web3-hz-card-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.web3-hz-icon-box {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(14, 165, 233, 0.08);
    border: 1px solid rgba(56, 189, 248, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #38bdf8;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.web3-hz-icon-svg {
    width: 20px;
    height: 20px;
    display: block;
}

.web3-hz-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #f8fafc;
    margin: 0;
    letter-spacing: -0.015em;
    transition: color 0.3s ease;
}

.web3-hz-card-index {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: rgba(148, 163, 184, 0.35);
    font-family: monospace;
    transition: color 0.3s ease;
}

.web3-hz-card-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #94a3b8;
    margin: 0;
    transition: color 0.3s ease;
}

/* Card Hover */
.web3-hz-card:hover {
    transform: translateY(-4px);
    background: rgba(15, 23, 42, 0.92);
    border-color: rgba(56, 189, 248, 0.45);
    box-shadow:
        0 15px 35px -10px rgba(14, 165, 233, 0.18),
        0 0 20px rgba(56, 189, 248, 0.08);
}

.web3-hz-card:hover::before {
    opacity: 1;
}

.web3-hz-card:hover .web3-hz-card-corner {
    opacity: 1;
    border-color: #38bdf8;
}

.web3-hz-card:hover .web3-hz-icon-box {
    background: linear-gradient(135deg, #0284c7 0%, #6366f1 100%);
    color: #ffffff;
    border-color: transparent;
    transform: scale(1.08);
}

.web3-hz-card:hover .web3-hz-card-title {
    color: #38bdf8;
}

.web3-hz-card:hover .web3-hz-card-index {
    color: #38bdf8;
}

.web3-hz-card:hover .web3-hz-card-desc {
    color: #e2e8f0;
}

/* --------------------------------------------------------------------------
   Center Horizontal Ethereum Hub Pill (Clean, Static & Precise)
   -------------------------------------------------------------------------- */
.web3-hz-center-spine {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
    z-index: 4;
}

.web3-hz-spine-node {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #0f172a 0%, #060913 100%);
    border: 1.5px solid rgba(56, 189, 248, 0.4);
    border-radius: 999px;
    padding: 0 28px 0 14px;
    width: 320px;
    height: 76px;
    box-sizing: border-box;
    box-shadow:
        0 0 40px rgba(14, 165, 233, 0.2),
        0 15px 30px -10px rgba(0, 0, 0, 0.7);
    z-index: 2;
    cursor: default;
}

.web3-hz-spine-badge {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.2) 0%, rgba(99, 102, 241, 0.2) 100%);
    border: 1.5px solid rgba(56, 189, 248, 0.4);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.web3-hz-eth-svg {
    width: 28px;
    height: 28px;
    display: block;
    filter: drop-shadow(0 0 6px rgba(56, 189, 248, 0.8));
}

.web3-hz-spine-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.web3-hz-spine-tag {
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #38bdf8;
    margin-bottom: 2px;
}

.web3-hz-spine-title {
    font-size: 15px;
    color: #ffffff;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.015em;
    text-shadow: 0 0 10px rgba(56, 189, 248, 0.25);
}

/* --------------------------------------------------------------------------
   Responsive Breakpoints
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
    .web3-horizontal-svg {
        display: none;
    }

    .web3-horizontal-row {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .web3-hz-center-spine {
        margin: 24px 0;
    }
}

@media (max-width: 767px) {
    .integration-web-content {
        padding: 70px 0 80px;
    }

    .web3-int-header {
        margin-bottom: 40px;
    }

    .web3-int-title {
        font-size: 28px;
    }

    .web3-int-desc {
        font-size: 15px;
    }

    .web3-hz-card {
        padding: 20px 18px;
    }

    .web3-hz-spine-node {
        padding: 10px 22px 10px 12px;
    }

    .web3-hz-spine-badge {
        width: 46px;
        height: 46px;
    }

    .web3-hz-eth-svg {
        width: 24px;
        height: 24px;
    }

    .web3-hz-spine-title {
        font-size: 16px;
    }
}

/* ==========================================================================
   Ethereum and Layer 2 Section: Network Comparison (Light Version)
   ========================================================================== */
.ethereum-services-content {
    position: relative;
    padding: 120px 0 130px;
    background-color: #f8fafc;
    background-image:
        radial-gradient(circle at 15% 20%, rgba(2, 132, 199, 0.06) 0%, transparent 45%),
        radial-gradient(circle at 85% 30%, rgba(130, 71, 229, 0.05) 0%, transparent 45%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
    overflow: hidden;
    color: #0f172a;
    font-family: var(--subserv-font-body, 'Inter', sans-serif);
}

/* Background Grids & Ambient Glow Orbs */
.eth-l2-bg-grid {
    position: absolute;
    inset: 0;
    background-size: 36px 36px;
    background-image:
        linear-gradient(to right, rgba(0, 0, 0, 0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
    pointer-events: none;
    z-index: 0;
}

.eth-l2-glow-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(90px);
    z-index: 0;
}

.eth-l2-glow-orb.glow-orb-1 {
    width: 480px;
    height: 480px;
    top: 10%;
    left: -80px;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.12) 0%, transparent 70%);
    animation: ethL2FloatOrb1 10s ease-in-out infinite alternate;
}

.eth-l2-glow-orb.glow-orb-2 {
    width: 520px;
    height: 520px;
    bottom: 10%;
    right: -80px;
    background: radial-gradient(circle, rgba(130, 71, 229, 0.1) 0%, transparent 70%);
    animation: ethL2FloatOrb2 12s ease-in-out infinite alternate;
}

.eth-l2-glow-orb.glow-orb-center {
    width: 560px;
    height: 560px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(2, 132, 199, 0.1) 0%, rgba(99, 102, 241, 0.05) 50%, transparent 75%);
    animation: ethL2CenterPulse 8s ease-in-out infinite alternate;
}

@keyframes ethL2FloatOrb1 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(35px, 25px) scale(1.12);
    }
}

@keyframes ethL2FloatOrb2 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-25px, -35px) scale(1.1);
    }
}

@keyframes ethL2CenterPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.96);
        opacity: 0.6;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 0.9;
    }
}

.ethereum-services-content .container {
    position: relative;
    z-index: 1;
}

/* --------------------------------------------------------------------------
   Section Header
   -------------------------------------------------------------------------- */
.eth-l2-header {
    text-align: center;
    max-width: 840px;
    margin: 0 auto 70px;
}

.eth-l2-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(2, 132, 199, 0.22);
    box-shadow: 0 4px 16px rgba(2, 132, 199, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-bottom: 22px;
    transition: all 0.3s ease;
}

.eth-l2-badge:hover {
    border-color: #0284c7;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(2, 132, 199, 0.16);
}

.eth-l2-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #0284c7;
    box-shadow: 0 0 8px #0284c7;
    animation: ethL2BadgePulse 2s ease-in-out infinite;
}

@keyframes ethL2BadgePulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.4);
        opacity: 0.6;
    }
}

.eth-l2-badge-text {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #0284c7;
}

.eth-l2-title {
    font-size: 44px;
    line-height: 1.2;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.03em;
    margin: 0 0 18px;
}

.eth-l2-title-gradient {
    background: linear-gradient(135deg, #0284c7 0%, #2563eb 50%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.eth-l2-desc {
    font-size: 16.5px;
    line-height: 1.7;
    color: #475569;
    margin: 0 auto;
    max-width: 740px;
    font-weight: 400;
}

/* --------------------------------------------------------------------------
   Stage Architecture (Central Hub & Radial Outward Branches)
   -------------------------------------------------------------------------- */
.eth-l2-stage {
    position: relative;
    max-width: 1140px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Desktop Branching SVG Lines */
.eth-l2-branch-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: visible;
}

.eth-l2-line {
    fill: none;
    stroke-width: 2px;
    stroke-dasharray: 6 4;
    animation: ethL2DashFlow 25s linear infinite;
    transition: all 0.4s ease;
}

@keyframes ethL2DashFlow {
    to {
        stroke-dashoffset: -1000;
    }
}

.line-arbitrum {
    stroke: rgba(40, 160, 240, 0.45);
}

.line-optimism {
    stroke: rgba(255, 4, 32, 0.4);
}

.line-base {
    stroke: rgba(0, 82, 255, 0.4);
}

.line-polygon {
    stroke: rgba(130, 71, 229, 0.4);
}

.eth-l2-pulse-dot {
    filter: drop-shadow(0 0 4px currentColor);
}

.dot-arbitrum {
    fill: #0284c7;
    color: #0284c7;
}

.dot-optimism {
    fill: #e11d48;
    color: #e11d48;
}

.dot-base {
    fill: #0052ff;
    color: #0052ff;
}

.dot-polygon {
    fill: #7e22ce;
    color: #7e22ce;
}

/* 3-Column Grid Layout */
.eth-l2-grid-layout {
    display: grid;
    grid-template-columns: 1fr 340px 1fr;
    gap: 36px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.eth-l2-side-col {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

/* --------------------------------------------------------------------------
   Central Ethereum Core Nexus Hub
   -------------------------------------------------------------------------- */
.eth-l2-center-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.eth-l2-core-hub {
    position: relative;
    width: 100%;
    max-width: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ambient Orbit Rings */
.eth-l2-core-orbit {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    transition: all 0.5s ease;
}

.orbit-ring-1 {
    width: 350px;
    height: 350px;
    border: 1.5px dashed rgba(2, 132, 199, 0.22);
    animation: ethOrbitRotate 30s linear infinite;
}

.orbit-ring-2 {
    width: 380px;
    height: 380px;
    border: 1.5px dotted rgba(99, 102, 241, 0.18);
    animation: ethOrbitRotateReverse 40s linear infinite;
}

@keyframes ethOrbitRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes ethOrbitRotateReverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

.eth-l2-core-glow {
    position: absolute;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.18) 0%, rgba(99, 102, 241, 0.08) 50%, transparent 70%);
    border-radius: 50%;
    filter: blur(35px);
    pointer-events: none;
    transition: all 0.4s ease;
}

.eth-l2-core-card {
    position: relative;
    width: 100%;
    background: linear-gradient(160deg, #ffffff 0%, #f8fafc 100%);
    border: 1.5px solid rgba(2, 132, 199, 0.35);
    border-radius: 24px;
    padding: 34px 22px;
    text-align: center;
    box-shadow:
        0 16px 40px -12px rgba(2, 132, 199, 0.16),
        0 4px 14px rgba(15, 23, 42, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
    cursor: default;
}

.eth-l2-core-card:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: rgba(2, 132, 199, 0.65);
    box-shadow:
        0 24px 50px -12px rgba(2, 132, 199, 0.24),
        0 6px 18px rgba(15, 23, 42, 0.06);
}

.eth-l2-core-icon-wrap {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e0f2fe 0%, #ede9fe 100%);
    border: 1.5px solid rgba(2, 132, 199, 0.32);
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(2, 132, 199, 0.18);
}

.eth-l2-core-beacon {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1.5px solid rgba(2, 132, 199, 0.35);
    animation: ethBeaconPulse 2.5s ease-out infinite;
    pointer-events: none;
}

@keyframes ethBeaconPulse {
    0% {
        transform: scale(0.9);
        opacity: 0.9;
    }

    100% {
        transform: scale(1.35);
        opacity: 0;
    }
}

.eth-l2-core-eth-svg {
    width: 38px;
    height: 38px;
    display: block;
    filter: drop-shadow(0 4px 10px rgba(2, 132, 199, 0.35));
}

.eth-l2-core-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #0284c7;
    background: #e0f2fe;
    border: 1px solid rgba(2, 132, 199, 0.25);
    padding: 3px 12px;
    border-radius: 999px;
    margin-bottom: 8px;
}

.eth-l2-core-title {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    margin: 0 0 8px;
}

.eth-l2-core-desc {
    font-size: 13.5px;
    line-height: 1.55;
    color: #64748b;
    margin: 0 auto;
    max-width: 240px;
}

/* --------------------------------------------------------------------------
   Layer 2 Outward Branch Cards (Light Theme)
   -------------------------------------------------------------------------- */
.eth-l2-card {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 20px;
    padding: 26px 24px 24px;
    box-shadow:
        0 10px 28px -8px rgba(15, 23, 42, 0.05),
        0 2px 6px rgba(0, 0, 0, 0.02);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
    overflow: hidden;
}

.eth-l2-card-sheen {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.eth-l2-card-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.eth-l2-brand-icon-box {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.eth-l2-brand-svg {
    width: 40px;
    height: 40px;
    display: block;
}

.eth-l2-card-titles {
    display: flex;
    flex-direction: column;
}

.eth-l2-badge-tag {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: inline-block;
    width: fit-content;
    padding: 2px 8px;
    border-radius: 6px;
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

.eth-l2-node-title {
    font-size: 19px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.015em;
    margin: 0;
    transition: color 0.3s ease;
}

.eth-l2-node-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #475569;
    margin: 0;
    transition: color 0.3s ease;
}

.eth-l2-branch-indicator {
    display: none;
}

/* Card Specific Brand Themes & Hover Effects */

/* 1. Arbitrum */
.card-arbitrum .eth-l2-badge-tag {
    color: #0284c7;
    background: #e0f2fe;
    border: 1px solid rgba(2, 132, 199, 0.2);
}

.card-arbitrum .eth-l2-card-sheen {
    background: linear-gradient(90deg, #28a0f0, #0284c7);
}

.card-arbitrum:hover {
    transform: translateY(-5px);
    border-color: rgba(40, 160, 240, 0.55);
    box-shadow:
        0 18px 38px -10px rgba(40, 160, 240, 0.22),
        0 4px 12px rgba(15, 23, 42, 0.04);
}

.card-arbitrum:hover .eth-l2-card-sheen {
    opacity: 1;
}

.card-arbitrum:hover .eth-l2-brand-icon-box {
    transform: scale(1.1);
}

.card-arbitrum:hover .eth-l2-node-title {
    color: #0284c7;
}

/* 2. Optimism */
.card-optimism .eth-l2-badge-tag {
    color: #e11d48;
    background: #ffe4e6;
    border: 1px solid rgba(225, 29, 72, 0.2);
}

.card-optimism .eth-l2-card-sheen {
    background: linear-gradient(90deg, #ff0420, #e11d48);
}

.card-optimism:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 4, 32, 0.5);
    box-shadow:
        0 18px 38px -10px rgba(255, 4, 32, 0.18),
        0 4px 12px rgba(15, 23, 42, 0.04);
}

.card-optimism:hover .eth-l2-card-sheen {
    opacity: 1;
}

.card-optimism:hover .eth-l2-brand-icon-box {
    transform: scale(1.1);
}

.card-optimism:hover .eth-l2-node-title {
    color: #e11d48;
}

/* 3. Base */
.card-base .eth-l2-badge-tag {
    color: #0052ff;
    background: #dbeafe;
    border: 1px solid rgba(0, 82, 255, 0.2);
}

.card-base .eth-l2-card-sheen {
    background: linear-gradient(90deg, #0052ff, #2563eb);
}

.card-base:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 82, 255, 0.5);
    box-shadow:
        0 18px 38px -10px rgba(0, 82, 255, 0.2),
        0 4px 12px rgba(15, 23, 42, 0.04);
}

.card-base:hover .eth-l2-card-sheen {
    opacity: 1;
}

.card-base:hover .eth-l2-brand-icon-box {
    transform: scale(1.1);
}

.card-base:hover .eth-l2-node-title {
    color: #0052ff;
}

/* 4. Polygon */
.card-polygon .eth-l2-badge-tag {
    color: #7e22ce;
    background: #f3e8ff;
    border: 1px solid rgba(126, 34, 206, 0.2);
}

.card-polygon .eth-l2-card-sheen {
    background: linear-gradient(90deg, #8247e5, #7e22ce);
}

.card-polygon:hover {
    transform: translateY(-5px);
    border-color: rgba(130, 71, 229, 0.5);
    box-shadow:
        0 18px 38px -10px rgba(130, 71, 229, 0.2),
        0 4px 12px rgba(15, 23, 42, 0.04);
}

.card-polygon:hover .eth-l2-card-sheen {
    opacity: 1;
}

.card-polygon:hover .eth-l2-brand-icon-box {
    transform: scale(1.1);
}

.card-polygon:hover .eth-l2-node-title {
    color: #7e22ce;
}

/* --------------------------------------------------------------------------
   Responsive Breakpoints
   -------------------------------------------------------------------------- */
@media (max-width: 1199px) {
    .eth-l2-grid-layout {
        grid-template-columns: 1fr 300px 1fr;
        gap: 24px;
    }

    .orbit-ring-1 {
        width: 310px;
        height: 310px;
    }

    .orbit-ring-2 {
        width: 330px;
        height: 330px;
    }
}

@media (max-width: 991px) {
    .eth-l2-branch-svg {
        display: none;
    }

    .eth-l2-grid-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .eth-l2-center-col {
        order: -1;
        margin-bottom: 12px;
    }

    .eth-l2-core-hub {
        max-width: 480px;
    }

    .eth-l2-side-col {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .orbit-ring-1,
    .orbit-ring-2 {
        display: none;
    }
}

@media (max-width: 767px) {
    .ethereum-services-content {
        padding: 70px 0 80px;
    }

    .eth-l2-header {
        margin-bottom: 40px;
    }

    .eth-l2-title {
        font-size: 28px;
    }

    .eth-l2-desc {
        font-size: 15px;
    }

    .eth-l2-side-col {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .eth-l2-card {
        padding: 20px 18px;
    }

    .eth-l2-core-card {
        padding: 26px 18px;
    }

    .eth-l2-core-icon-wrap {
        width: 68px;
        height: 68px;
    }

    .eth-l2-core-eth-svg {
        width: 32px;
        height: 32px;
    }

    .eth-l2-core-title {
        font-size: 20px;
    }
}

@media (max-width: 1367px) {
    .subserv-why-invest-tag {
        font-size: 9px;
    }
}

/* ==========================================================================
   SOLANA TRANSACTION FLOW & ARCHITECTURE SECTION
   ========================================================================== */
/* ==========================================================================
   SOLANA TRANSACTION ARCHITECTURE (Light Theme Architectural Design)
   ========================================================================== */
.solana-txflow-section {
    position: relative;
    padding: 75px 0 80px;
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    overflow: hidden;
    font-family: inherit;
}

.sol-container {
    position: relative;
    z-index: 2;
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --------------------------------------------------------------------------
   Section Header (Badge & Heading)
   -------------------------------------------------------------------------- */
.sol-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 46px;
}

.sol-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 6px 18px;
    border-radius: 9999px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.08);
    color: #1d4ed8;
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.01em;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.sol-badge:hover {
    border-color: #93c5fd;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.14);
}

.sol-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff5722;
    box-shadow: 0 0 0 3.5px rgba(255, 87, 34, 0.22);
}

.sol-main-heading {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.22;
    letter-spacing: -0.025em;
    color: #0f172a;
    margin: 0 auto;
}

.sol-heading-accent {
    background: linear-gradient(135deg, #ff5722 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* --------------------------------------------------------------------------
   6 Architectural Cards Grid (3 Columns x 2 Rows)
   -------------------------------------------------------------------------- */
.sol-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.sol-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 30px 26px 28px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.02),
        0 8px 20px -4px rgba(15, 23, 42, 0.04);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.sol-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 20px 36px -10px rgba(15, 23, 42, 0.09),
        0 4px 12px -2px rgba(15, 23, 42, 0.03);
}

/* Top Accent Sheen Line */
.sol-card-sheen {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    opacity: 0.85;
    transition: all 0.3s ease;
}

.sol-card:hover .sol-card-sheen {
    height: 4.5px;
    opacity: 1;
}

/* Watermark Number */
.sol-card-watermark {
    position: absolute;
    right: 22px;
    top: 20px;
    font-size: 68px;
    font-weight: 900;
    line-height: 1;
    color: rgba(15, 23, 42, 0.045);
    pointer-events: none;
    user-select: none;
    transition: all 0.35s ease;
}

.sol-card:hover .sol-card-watermark {
    color: rgba(15, 23, 42, 0.08);
    transform: scale(1.05);
}

/* Card Header */
.sol-card-head {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

/* Layered Icon Box */
.sol-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sol-card:hover .sol-icon-box {
    transform: scale(1.08) rotate(2deg);
}

/* Card Body */
.sol-card-body {
    flex-grow: 1;
    position: relative;
    z-index: 1;
    margin-bottom: 0;
}

.sol-card-title {
    font-size: 19px;
    font-weight: 750;
    line-height: 1.35;
    color: #0f172a;
    letter-spacing: -0.015em;
    margin-bottom: 10px;
    transition: color 0.25s ease;
}

.sol-card-desc {
    font-size: 14.5px;
    line-height: 1.65;
    color: #64748b;
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Step Color Themes (Orange, Blue, Amber, Cyan, Indigo, Emerald)
   -------------------------------------------------------------------------- */
/* 01 Orange */
.sol-card-orange .sol-card-sheen {
    background: linear-gradient(90deg, #ff5722 0%, #ff8a65 100%);
}

.sol-card-orange .sol-icon-box {
    background: #fff7ed;
    color: #ea580c;
    border: 1px solid #ffedd5;
}

.sol-card-orange:hover {
    border-color: #fdba74;
    box-shadow: 0 20px 36px -10px rgba(255, 87, 34, 0.12);
}

.sol-card-orange:hover .sol-card-title {
    color: #ea580c;
}

/* 02 Blue */
.sol-card-blue .sol-card-sheen {
    background: linear-gradient(90deg, #2563eb 0%, #60a5fa 100%);
}

.sol-card-blue .sol-icon-box {
    background: #eff6ff;
    color: #2563eb;
    border: 1px solid #dbeafe;
}

.sol-card-blue:hover {
    border-color: #93c5fd;
    box-shadow: 0 20px 36px -10px rgba(37, 99, 235, 0.12);
}

.sol-card-blue:hover .sol-card-title {
    color: #2563eb;
}

/* 03 Amber / Orange */
.sol-card-amber .sol-card-sheen {
    background: linear-gradient(90deg, #f59e0b 0%, #fcd34d 100%);
}

.sol-card-amber .sol-icon-box {
    background: #fffbeb;
    color: #d97706;
    border: 1px solid #fef3c7;
}

.sol-card-amber:hover {
    border-color: #fcd34d;
    box-shadow: 0 20px 36px -10px rgba(245, 158, 11, 0.12);
}

.sol-card-amber:hover .sol-card-title {
    color: #d97706;
}

/* 04 Cyan / Blue */
.sol-card-cyan .sol-card-sheen {
    background: linear-gradient(90deg, #0284c7 0%, #38bdf8 100%);
}

.sol-card-cyan .sol-icon-box {
    background: #f0f9ff;
    color: #0284c7;
    border: 1px solid #e0f2fe;
}

.sol-card-cyan:hover {
    border-color: #7dd3fc;
    box-shadow: 0 20px 36px -10px rgba(2, 132, 199, 0.12);
}

.sol-card-cyan:hover .sol-card-title {
    color: #0284c7;
}

/* 05 Indigo */
.sol-card-indigo .sol-card-sheen {
    background: linear-gradient(90deg, #4f46e5 0%, #818cf8 100%);
}

.sol-card-indigo .sol-icon-box {
    background: #eef2ff;
    color: #4f46e5;
    border: 1px solid #e0e7ff;
}

.sol-card-indigo:hover {
    border-color: #a5b4fc;
    box-shadow: 0 20px 36px -10px rgba(79, 70, 229, 0.12);
}

.sol-card-indigo:hover .sol-card-title {
    color: #4f46e5;
}

/* 06 Emerald */
.sol-card-emerald .sol-card-sheen {
    background: linear-gradient(90deg, #059669 0%, #34d399 100%);
}

.sol-card-emerald .sol-icon-box {
    background: #ecfdf5;
    color: #059669;
    border: 1px solid #d1fae5;
}

.sol-card-emerald:hover {
    border-color: #6ee7b7;
    box-shadow: 0 20px 36px -10px rgba(5, 150, 105, 0.12);
}

.sol-card-emerald:hover .sol-card-title {
    color: #059669;
}

/* --------------------------------------------------------------------------
   Responsive Breakpoints
   -------------------------------------------------------------------------- */
@media (max-width: 1199px) {
    .sol-cards-grid {
        gap: 18px;
    }

    .sol-card {
        padding: 26px 22px 24px;
    }

    .sol-main-heading {
        font-size: 34px;
    }
}

@media (max-width: 991px) {
    .solana-txflow-section {
        padding: 70px 0;
    }

    .sol-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .sol-main-heading {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .solana-txflow-section {
        padding: 60px 0;
    }

    .sol-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .sol-main-heading {
        font-size: 25px;
    }

    .sol-header {
        margin-bottom: 35px;
    }

    .sol-badge {
        font-size: 12.5px;
        padding: 5px 14px;
    }
}

@media (max-width: 480px) {
    .sol-main-heading {
        font-size: 23px;
    }
}

.security-areas-section {
    padding-top: 100px;
}

.security-areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}


.security-area-card {
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 22px 20px;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
}

.security-area-card:hover {
    background: #131d33;
    border-color: rgba(56, 189, 248, 0.28);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.area-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.area-number {
    color: rgba(109, 186, 238, 0.5);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* ==========================================================================
   SAAS PRODUCT ESSENTIALS SECTION
   ========================================================================== */
.saas-essentials-section {
    position: relative;
    padding: 95px 0 105px;
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
    overflow: hidden;
}

.saas-ess-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.saas-ess-header {
    text-align: center;
    margin-bottom: 55px;
}

.saas-ess-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 9999px;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.2);
    color: #2563eb;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.03em;
    margin-bottom: 16px;
}

.saas-ess-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2563eb;
}

.saas-ess-title {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: #0f172a;
    margin: 0 auto;
}

.saas-ess-gradient {
    background: linear-gradient(135deg, #2563eb 0%, #0284c7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.saas-ess-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.saas-ess-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 30px 26px 26px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 16px -4px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.saas-ess-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px -10px rgba(15, 23, 42, 0.08), 0 2px 8px rgba(0, 0, 0, 0.03);
}

.saas-ess-card-sheen {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.saas-ess-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.saas-ess-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.saas-ess-card:hover .saas-ess-icon-box {
    transform: scale(1.08);
}

.saas-ess-num-tag {
    font-size: 13px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 6px;
    letter-spacing: 0.04em;
}

.saas-ess-card-title {
    font-size: 19px;
    font-weight: 700;
    line-height: 1.35;
    color: #0f172a;
    margin: 0 0 16px;
}

.saas-ess-card-divider {
    height: 1px;
    background: #f1f5f9;
    margin-bottom: 18px;
}

.saas-ess-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.saas-ess-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.saas-ess-check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.saas-ess-item-text {
    font-size: 14px;
    color: #475569;
    line-height: 1.4;
}

/* Themes */
.theme-blue .saas-ess-card-sheen {
    background: #2563eb;
}

.theme-blue .saas-ess-icon-box {
    background: rgba(37, 99, 235, 0.08);
    color: #2563eb;
}

.theme-blue .saas-ess-num-tag {
    background: rgba(37, 99, 235, 0.08);
    color: #2563eb;
}

.theme-blue .saas-ess-check {
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
}

.theme-blue:hover {
    border-color: rgba(37, 99, 235, 0.35);
}

.theme-purple .saas-ess-card-sheen {
    background: #8b5cf6;
}

.theme-purple .saas-ess-icon-box {
    background: rgba(139, 92, 246, 0.08);
    color: #8b5cf6;
}

.theme-purple .saas-ess-num-tag {
    background: rgba(139, 92, 246, 0.08);
    color: #8b5cf6;
}

.theme-purple .saas-ess-check {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.theme-purple:hover {
    border-color: rgba(139, 92, 246, 0.35);
}

.theme-green .saas-ess-card-sheen {
    background: #10b981;
}

.theme-green .saas-ess-icon-box {
    background: rgba(16, 185, 129, 0.08);
    color: #10b981;
}

.theme-green .saas-ess-num-tag {
    background: rgba(16, 185, 129, 0.08);
    color: #10b981;
}

.theme-green .saas-ess-check {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.theme-green:hover {
    border-color: rgba(16, 185, 129, 0.35);
}

.theme-amber .saas-ess-card-sheen {
    background: #f59e0b;
}

.theme-amber .saas-ess-icon-box {
    background: rgba(245, 158, 11, 0.08);
    color: #f59e0b;
}

.theme-amber .saas-ess-num-tag {
    background: rgba(245, 158, 11, 0.08);
    color: #f59e0b;
}

.theme-amber .saas-ess-check {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.theme-amber:hover {
    border-color: rgba(245, 158, 11, 0.35);
}

.theme-cyan .saas-ess-card-sheen {
    background: #06b6d4;
}

.theme-cyan .saas-ess-icon-box {
    background: rgba(6, 182, 212, 0.08);
    color: #06b6d4;
}

.theme-cyan .saas-ess-num-tag {
    background: rgba(6, 182, 212, 0.08);
    color: #06b6d4;
}

.theme-cyan .saas-ess-check {
    background: rgba(6, 182, 212, 0.1);
    color: #06b6d4;
}

.theme-cyan:hover {
    border-color: rgba(6, 182, 212, 0.35);
}

.theme-rose .saas-ess-card-sheen {
    background: #f43f5e;
}

.theme-rose .saas-ess-icon-box {
    background: rgba(244, 63, 94, 0.08);
    color: #f43f5e;
}

.theme-rose .saas-ess-num-tag {
    background: rgba(244, 63, 94, 0.08);
    color: #f43f5e;
}

.theme-rose .saas-ess-check {
    background: rgba(244, 63, 94, 0.1);
    color: #f43f5e;
}

.theme-rose:hover {
    border-color: rgba(244, 63, 94, 0.35);
}

/* Responsive */

@media (max-width: 768px) {
    .saas-essentials-section {
        padding: 65px 0 75px;
    }

    .saas-ess-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .saas-ess-title {
        font-size: 26px;
    }

    .saas-ess-card {
        padding: 24px 20px 20px;
    }
}

@media (max-width: 480px) {
    .saas-ess-title {
        font-size: 23px;
    }

    .saas-ess-badge {
        font-size: 12px;
        padding: 5px 14px;
    }

    .saas-ess-item-text {
        font-size: 14px;
    }
}


.sec-area-card ul li {
    font-size: 13.5px;
    line-height: 1.55;
    color: #94a3b8;
    margin: 0;
}

.sec-area-card ul {
    padding-left: 30px;
}

.saas-ess-grid.grid-four,
.subserv-cards-grid.grid-four-tech {
    grid-template-columns: repeat(4, 1fr);
}

/* ==========================================================================
   "You are here" — Services mega-menu (vertical tabs)
   Highlights the tab + leaf link matching the page currently being viewed,
   independent of which tab the user happens to be hovering/browsing.
   ========================================================================== */
.creative-header .creative-vtab-item.current-page-tab .creative-vtab-title::after {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fe4a23;
    margin-left: 7px;
    vertical-align: middle;
}

.creative-header .creative-vtab-link.active {
    color: #fe4a23;
    font-weight: 700;
    background: #fff6f3;
}

.creative-header .creative-vtab-link.active .creative-vtab-link-bullet {
    background: #fe4a23;
    transform: scale(1.4);
}

/* ==========================================================================
   Team Section (dynamic page builder "team" section type)
   Placeholder styling — expected to be replaced once the designer delivers
   the final layout. Structure/classes: .subserv-team-section > .container
   > .subserv-team-header + .subserv-team-grid > .subserv-team-card.
   ========================================================================== */
.subserv-team-section {
    padding: 80px 0;
}

.subserv-team-header {
    max-width: 640px;
    margin: 0 auto 48px;
    text-align: center;
}

.subserv-team-heading {
    font-family: var(--subserv-font-heading, 'Inter', sans-serif);
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f172a;
    margin: 0 0 12px;
}

.subserv-team-desc {
    font-size: 15px;
    line-height: 1.65;
    color: #64748b;
}

.subserv-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 26px;
}

.subserv-team-card {
    background: #ffffff;
    border: 1px solid #e8edf5;
    border-radius: 18px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.05);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.subserv-team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 38px -12px rgba(15, 23, 42, 0.10);
}

.subserv-team-photo-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f1f5f9;
    overflow: hidden;
}

.subserv-team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.subserv-team-info {
    padding: 18px 16px 22px;
}

.subserv-team-name {
    font-family: var(--subserv-font-heading, 'Inter', sans-serif);
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 4px;
}

.subserv-team-role {
    font-size: 13px;
    color: #64748b;
    margin: 0 0 12px;
}

.subserv-team-linkedin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #e35611;
    transition: background 0.2s ease, color 0.2s ease;
}

.subserv-team-linkedin:hover {
    background: #e35611;
    color: #ffffff;
}

.subserv-team-linkedin svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.subserv-team-empty {
    text-align: center;
    padding: 40px 20px;
    color: #94a3b8;
    border: 1px dashed #cbd5e1;
    border-radius: 16px;
}

@media (max-width: 767px) {
    .subserv-team-section {
        padding: 56px 0;
    }

    .subserv-team-heading {
        font-size: 26px;
    }

    .subserv-team-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 18px;
    }
}

/* ==========================================================================
   Career Page - Company Benefits Section
   ========================================================================== */
.career-benefits-section {
    position: relative;
    background-color: #ffffff;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(254, 74, 35, 0.035) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(2, 132, 199, 0.04) 0%, transparent 40%),
        linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
    padding: 80px 0 80px;
    overflow: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.career-benefits-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
}

/* Header */
.career-benefits-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}

.career-benefits-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    border-radius: 9999px;
    background: rgba(254, 74, 35, 0.08);
    color: #fe4a23;
    border: 1px solid rgba(254, 74, 35, 0.2);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}

.career-benefits-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fe4a23;
    box-shadow: 0 0 8px rgba(254, 74, 35, 0.6);
    animation: benefitDotPulse 2s infinite;
}

@keyframes benefitDotPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.35);
        opacity: 0.6;
    }
}

.career-benefits-title {
    font-size: clamp(30px, 3.8vw, 44px);
    font-weight: 800;
    line-height: 1.22;
    color: #0f172a;
    margin: 0 0 14px;
    letter-spacing: -0.02em;
}

.career-benefits-highlight {
    background: linear-gradient(135deg, #fe4a23 0%, #ff7844 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.career-benefits-subtitle {
    font-size: 16.5px;
    color: #64748b;
    line-height: 1.65;
    margin: 0 auto;
}

/* Split Layout */
.career-benefits-layout {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 36px;
    align-items: stretch;
}

/* Media Showcase Column */
.career-benefits-media-col {
    display: flex;
    position: relative;
}

.career-benefits-media-wrapper {
    position: relative;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    background: #f1f5f9;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
}

.career-benefits-image {
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.career-benefits-media-wrapper:hover .career-benefits-image {
    transform: scale(1.04);
}

.career-benefits-media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.02) 40%, rgba(15, 23, 42, 0.72) 100%);
    pointer-events: none;
}

/* Floating Glass Badges */
.career-benefits-floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
    border-radius: 16px;
    padding: 12px 18px;
    z-index: 3;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.career-benefits-floating-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.16);
}

.career-benefits-floating-badge.badge-top {
    top: 22px;
    left: 22px;
}

.career-benefits-floating-badge.badge-bottom {
    bottom: 22px;
    left: 22px;
    right: 22px;
    background: rgba(15, 23, 42, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.career-benefits-badge-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
}

.career-benefits-badge-icon.icon-amber {
    background: #fef3c7;
    color: #d97706;
}

.career-benefits-badge-icon.icon-blue {
    background: rgba(2, 132, 199, 0.15);
    color: #38bdf8;
}

.career-benefits-badge-text h4 {
    font-size: 13.5px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 2px;
    line-height: 1.3;
}

.career-benefits-floating-badge.badge-bottom .career-benefits-badge-text h4 {
    color: #ffffff;
}

.career-benefits-badge-text p {
    font-size: 11.5px;
    color: #64748b;
    margin: 0;
    line-height: 1.2;
}

.career-benefits-floating-badge.badge-bottom .career-benefits-badge-text p {
    color: #94a3b8;
}

/* Benefit Cards Grid */
.career-benefits-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    align-content: center;
}

.career-benefits-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 15px 18px;
    box-shadow: 0 2px 5px rgba(15, 23, 42, 0.02);
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    cursor: default;
}

.career-benefits-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #fe4a23 0%, #ff7844 100%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.career-benefits-card:hover {
    transform: translateY(-3px) !important;
    border-color: rgba(254, 74, 35, 0.35);
    box-shadow: 0 10px 24px -6px rgba(254, 74, 35, 0.09), 0 4px 10px -2px rgba(15, 23, 42, 0.04);
}

.career-benefits-card:hover::before {
    opacity: 1;
}

.career-benefits-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
    transition: transform 0.28s ease;
}

.career-benefits-card:hover .career-benefits-card-icon {
    transform: scale(1.08);
}

/* Card Icon Variant Backgrounds */
.icon-theme-orange {
    background: rgba(254, 74, 35, 0.09);
    color: #fe4a23;
}

.icon-theme-blue {
    background: rgba(2, 132, 199, 0.09);
    color: #0284c7;
}

.icon-theme-purple {
    background: rgba(119, 77, 255, 0.09);
    color: #774dff;
}

.icon-theme-emerald {
    background: rgba(16, 185, 129, 0.09);
    color: #10b981;
}

.icon-theme-amber {
    background: rgba(245, 158, 11, 0.09);
    color: #f59e0b;
}

.icon-theme-rose {
    background: rgba(244, 63, 94, 0.09);
    color: #f43f5e;
}

.icon-theme-teal {
    background: rgba(13, 148, 136, 0.09);
    color: #0d9488;
}

.icon-theme-indigo {
    background: rgba(99, 102, 241, 0.09);
    color: #6366f1;
}

.career-benefits-card-info {
    flex: 1;
    min-width: 0;
}

.career-benefits-card-title {
    font-size: 14.5px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.38;
    margin: 0;
    transition: color 0.2s ease;
}

.career-benefits-card:hover .career-benefits-card-title {
    color: #0f172a;
}

.career-benefits-card-badge {
    margin-left: auto;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 10px;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.career-benefits-card:hover .career-benefits-card-badge {
    background: #fe4a23;
    color: #ffffff;
    transform: scale(1.08);
}

/* Responsive Styles */
@media (max-width: 1120px) {
    .career-benefits-layout {
        grid-template-columns: 360px 1fr;
        gap: 28px;
    }

    .career-benefits-card {
        padding: 13px 15px;
        gap: 12px;
    }

    .career-benefits-card-title {
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .career-benefits-section {
        padding: 80px 0 90px;
    }

    .career-benefits-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .career-benefits-media-col {
        max-width: 540px;
        margin: 0 auto;
        width: 100%;
    }

    .career-benefits-image {
        min-height: 380px;
        max-height: 440px;
    }
}

@media (max-width: 640px) {
    .career-benefits-section {
        padding: 60px 0 70px;
    }

    .career-benefits-header {
        margin-bottom: 36px;
    }

    .career-benefits-cards-grid {
        grid-template-columns: 1fr;
        gap: 11px;
    }

    .career-benefits-floating-badge.badge-top {
        top: 16px;
        left: 16px;
        padding: 8px 14px;
    }

    .career-benefits-floating-badge.badge-bottom {
        bottom: 16px;
        left: 16px;
        right: 16px;
        padding: 10px 14px;
    }

    .career-benefits-badge-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .career-benefits-card {
        padding: 12px 14px;
    }

    .career-benefits-card-icon {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

    .career-benefits-card-title {
        font-size: 13.5px;
    }
}

/* ==========================================================================
   Career Page - We Have Opening Section
   ========================================================================== */
.career-openings-section {
    position: relative;
    background-color: #f8fafc;
    background-image:
        radial-gradient(circle at 85% 15%, rgba(254, 74, 35, 0.035) 0%, transparent 40%),
        radial-gradient(circle at 15% 85%, rgba(2, 132, 199, 0.04) 0%, transparent 40%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 45%, #ffffff 100%);
    padding: 80px 0 80px;
    border-top: 1px solid rgba(226, 232, 240, 0.85);
    border-bottom: 1px solid rgba(226, 232, 240, 0.85);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.career-openings-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
}

/* Header */
.career-openings-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}

.career-openings-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    border-radius: 9999px;
    background: rgba(16, 185, 129, 0.08);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.25);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}

.career-openings-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.7);
    animation: openingDotPulse 2s infinite;
}

@keyframes openingDotPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.35);
        opacity: 0.6;
    }
}

.career-openings-title {
    font-size: clamp(30px, 3.8vw, 44px);
    font-weight: 800;
    line-height: 1.22;
    color: #0f172a;
    margin: 0 0 14px;
    letter-spacing: -0.02em;
}

.career-openings-highlight {
    background: linear-gradient(135deg, #fe4a23 0%, #ff7844 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.career-openings-subtitle {
    font-size: 16.5px;
    color: #64748b;
    line-height: 1.65;
    margin: 0 auto;
}

/* Openings Grid */
.career-openings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

/* Opening Card */
.career-openings-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 30px 28px;
    box-shadow: 0 4px 15px -3px rgba(15, 23, 42, 0.04);
    display: flex;
    flex-direction: column;
    transition: all 0.32s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.career-openings-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3.5px;
    background: linear-gradient(90deg, #fe4a23 0%, #774dff 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.career-openings-card:hover {
    transform: translateY(-6px) !important;
    border-color: rgba(254, 74, 35, 0.35);
    box-shadow: 0 20px 35px -10px rgba(15, 23, 42, 0.09), 0 8px 16px -6px rgba(254, 74, 35, 0.05);
}

.career-openings-card:hover::before {
    opacity: 1;
}

/* Card Top */
.career-openings-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.career-openings-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.career-openings-card:hover .career-openings-card-icon {
    transform: scale(1.08) rotate(3deg);
}

.career-openings-card-type {
    font-size: 12px;
    font-weight: 600;
    padding: 5px 13px;
    border-radius: 9999px;
    background: rgba(2, 132, 199, 0.08);
    color: #0284c7;
    border: 1px solid rgba(2, 132, 199, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Card Title */
.career-openings-card-title {
    font-size: 19px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.35;
    margin: 0 0 16px;
    min-height: 52px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}

.career-openings-card:hover .career-openings-card-title {
    color: #fe4a23;
}

/* Meta List */
.career-openings-meta-list {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #e2e8f0;
    flex-grow: 1;
}

.career-openings-meta-item {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 14px;
    color: #475569;
    line-height: 1.4;
}

.career-openings-meta-icon {
    width: 18px;
    color: #94a3b8;
    font-size: 14px;
    text-align: center;
    flex-shrink: 0;
}

/* Card Footer & Button */
.career-openings-card-footer {
    margin-top: auto;
}

.career-openings-apply-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    border-radius: 12px;
    background: #0f172a;
    color: #ffffff !important;
    font-size: 14.5px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.28s ease;
    cursor: pointer;
    border: none;
    box-sizing: border-box;
}

.career-openings-apply-btn i {
    font-size: 13px;
    transition: transform 0.25s ease;
}

.career-openings-apply-btn:hover {
    background: #fe4a23;
    color: #ffffff !important;
    box-shadow: 0 6px 18px rgba(254, 74, 35, 0.32);
}

.career-openings-apply-btn:hover i {
    transform: translateX(4px);
}

/* Responsive Styles */
@media (max-width: 1100px) {
    .career-openings-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }
}

@media (max-width: 768px) {
    .career-openings-section {
        padding: 70px 0 80px;
    }

    .career-openings-header {
        margin-bottom: 38px;
    }

    .career-openings-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .career-openings-card {
        padding: 24px 20px;
    }

    .career-openings-card-title {
        min-height: unset;
        font-size: 18px;
        margin-bottom: 14px;
    }
}

@media (max-width: 480px) {
    .career-openings-section {
        padding: 55px 0 65px;
    }

    .career-openings-badge {
        font-size: 12px;
        padding: 5px 14px;
    }

    .career-openings-title {
        font-size: 26px;
    }

    .career-openings-subtitle {
        font-size: 15px;
    }
}

/* ==========================================================================
   Career Page - Apply for Future Opportunities Section
   ========================================================================== */
.career-apply-section {
    position: relative;
    background-color: #ffffff;
    background-image:
        radial-gradient(circle at 10% 15%, rgba(254, 74, 35, 0.035) 0%, transparent 40%),
        radial-gradient(circle at 90% 85%, rgba(2, 132, 199, 0.04) 0%, transparent 40%),
        linear-gradient(180deg, #ffffff 0%, #fafbfd 100%);
    padding: 80px 0 80px;
    overflow: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.career-apply-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
}

/* Header */
.career-apply-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}

.career-apply-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    border-radius: 9999px;
    background: rgba(254, 74, 35, 0.08);
    color: #fe4a23;
    border: 1px solid rgba(254, 74, 35, 0.25);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}

.career-apply-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fe4a23;
    box-shadow: 0 0 8px rgba(254, 74, 35, 0.7);
    animation: applyDotPulse 2s infinite;
}

@keyframes applyDotPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.35);
        opacity: 0.6;
    }
}

.career-apply-title {
    font-size: clamp(30px, 3.8vw, 44px);
    font-weight: 800;
    line-height: 1.22;
    color: #0f172a;
    margin: 0 0 14px;
    letter-spacing: -0.02em;
}

.career-apply-highlight {
    background: linear-gradient(135deg, #fe4a23 0%, #ff7844 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.career-apply-subtitle {
    font-size: 16.5px;
    color: #64748b;
    line-height: 1.65;
    margin: 0 auto;
}

/* 2-Column Split Layout */
.career-apply-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 36px;
    align-items: stretch;
}

/* Left Info Card */
.career-apply-info-card {
    background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
    border-radius: 24px;
    padding: 36px 30px;
    color: #ffffff;
    box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.18);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.career-apply-info-card::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -40%;
    width: 180%;
    height: 180%;
    background: radial-gradient(circle, rgba(254, 74, 35, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.career-apply-info-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px;
    line-height: 1.3;
}

.career-apply-info-desc {
    font-size: 14.5px;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0 0 28px;
}

.career-apply-perks-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.career-apply-perk-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.career-apply-perk-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fe4a23;
    font-size: 16px;
    flex-shrink: 0;
}

.career-apply-perk-text h4 {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 4px;
    line-height: 1.25;
}

.career-apply-perk-text p {
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.45;
    margin: 0;
}

.career-apply-contact-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.career-apply-contact-label {
    font-size: 12px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
    font-weight: 600;
}

.career-apply-contact-email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14.5px;
    font-weight: 600;
    color: #38bdf8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.career-apply-contact-email:hover {
    color: #fe4a23;
}

/* Right Form Card */
.career-apply-form-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 38px 36px;
    box-shadow: 0 15px 35px -10px rgba(15, 23, 42, 0.05);
}

.career-apply-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 18px;
}

.career-apply-col-full {
    grid-column: 1 / -1;
}

.career-apply-field-wrap {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.career-apply-label {
    font-size: 13.5px;
    font-weight: 600;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 6px;
}

.career-apply-input-box {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.career-apply-field-icon {
    position: absolute;
    left: 16px;
    color: #94a3b8;
    font-size: 15px;
    pointer-events: none;
    z-index: 1;
}

.career-apply-input,
.career-apply-select {
    width: 100%;
    height: 48px;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    padding: 0 16px 0 44px;
    font-size: 14.5px;
    color: #0f172a;
    background: #f8fafc;
    font-family: inherit;
    transition: all 0.2s ease;
    outline: none;
    box-sizing: border-box;
}

.career-apply-input:focus,
.career-apply-select:focus {
    background: #ffffff;
    border-color: #fe4a23;
    box-shadow: 0 0 0 3.5px rgba(254, 74, 35, 0.12);
}

.career-apply-input::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.career-apply-select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%2364748b' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 14px center;
    background-repeat: no-repeat;
    background-size: 18px;
    padding-right: 40px;
}

/* File Upload Zone */
.career-apply-file-zone {
    position: relative;
    border: 1.5px dashed #cbd5e1;
    border-radius: 14px;
    background: #f8fafc;
    padding: 24px 20px;
    text-align: center;
    transition: all 0.25s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.career-apply-file-zone:hover {
    background: #fff8f6;
    border-color: #fe4a23;
}

.career-apply-file-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 3;
}

.career-apply-file-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(254, 74, 35, 0.08);
    color: #fe4a23;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 4px;
}

.career-apply-file-label {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    display: block;
    max-width: 90%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.career-apply-file-hint {
    font-size: 12px;
    color: #94a3b8;
    margin: 0;
}

/* Recaptcha & Feedback */
.career-apply-recaptcha-wrap {
    margin: 16px 0 12px;
    display: flex;
    justify-content: center;
}

.career-apply-feedback {
    margin-bottom: 12px;
    text-align: center;
    min-height: 22px;
    font-size: 14px;
}

.career-apply-feedback #success-msg {
    color: #059669;
    font-weight: 600;
    display: block;
}

.career-apply-feedback #error-msg {
    color: #dc2626;
    font-weight: 600;
    display: block;
}

/* Submit Button */
.career-apply-submit-btn {
    width: 100%;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #fe4a23 0%, #ff6b3d 100%);
    color: #ffffff;
    border: none;
    font-size: 15.5px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.28s ease;
    box-shadow: 0 8px 20px -4px rgba(254, 74, 35, 0.35);
    outline: none;
}

.career-apply-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px -4px rgba(254, 74, 35, 0.45);
}

.career-apply-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.career-apply-submit-btn i {
    font-size: 14px;
    transition: transform 0.25s ease;
}

.career-apply-submit-btn:hover i {
    transform: translateX(4px);
}

/* Responsive Styles */
@media (max-width: 1080px) {
    .career-apply-layout {
        grid-template-columns: 320px 1fr;
        gap: 28px;
    }

    .career-apply-form-card {
        padding: 30px 24px;
    }
}

@media (max-width: 900px) {
    .career-apply-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .career-apply-info-card {
        padding: 28px 24px;
    }
}

@media (max-width: 640px) {
    .career-apply-section {
        padding: 60px 0 70px;
    }

    .career-apply-header {
        margin-bottom: 38px;
    }

    .career-apply-form-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .career-apply-form-card {

        padding: 24px 18px;
    }

    .career-apply-input,
    .career-apply-select {
        height: 44px;
        font-size: 14px;
    }

    .career-apply-submit-btn {
        height: 46px;
        font-size: 15px;
    }
}

/* ==========================================================================
   Motion On-Scroll Animation Engine Styles
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    [data-framer] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ==========================================================================
   Portfolio Page Styles (Light Mode - Scoped under .portfolio-page)
   ========================================================================== */
.portfolio-page {
    background-color: #ffffff;
    position: relative;
    overflow-x: hidden;
    width: 100%;
}

/* 1. Common Layout Containers & Ambient Aura */
.portfolio-page .portfolio-ambient-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(80px);
}

.portfolio-page .glow-top-left {
    top: 4%;
    left: -6%;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(227, 86, 17, 0.08) 0%, transparent 70%);
}

.portfolio-page .glow-top-right {
    top: 18%;
    right: -6%;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(254, 74, 35, 0.06) 0%, transparent 70%);
}

.portfolio-page .glow-middle {
    top: 48%;
    left: -8%;
    width: 440px;
    height: 440px;
    background: radial-gradient(circle, rgba(227, 86, 17, 0.05) 0%, transparent 70%);
}

.portfolio-page .glow-bottom {
    bottom: 4%;
    right: -6%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(227, 86, 17, 0.07) 0%, transparent 70%);
}

/* Portfolio Hero Elements - Theme Color Alignment */
.portfolio-page .subserv-hero-bg-glow.glow-1,
.portfolio-detail-page .subserv-hero-bg-glow.glow-1 {
    background: radial-gradient(circle, rgba(227, 86, 17, 0.15) 0%, transparent 70%);
}

.portfolio-page .subserv-hero-bg-glow.glow-2,
.portfolio-detail-page .subserv-hero-bg-glow.glow-2 {
    background: radial-gradient(circle, rgba(254, 74, 35, 0.12) 0%, transparent 70%);
}

.portfolio-page .subserv-frame-glow,
.portfolio-detail-page .subserv-frame-glow {
    background: linear-gradient(135deg, rgba(227, 86, 17, 0.28) 0%, transparent 50%, rgba(254, 74, 35, 0.25) 100%);
}

.portfolio-page .subserv-frame-tag,
.portfolio-detail-page .subserv-frame-tag {
    color: #e35611;
    background: rgba(227, 86, 17, 0.08);
    border-color: rgba(227, 86, 17, 0.22);
}

.portfolio-page .subserv-frame-tag .tag-dot,
.portfolio-detail-page .subserv-frame-tag .tag-dot {
    background: #e35611;
    box-shadow: 0 0 6px rgba(227, 86, 17, 0.6);
}

.portfolio-page .subserv-hero-badge,
.portfolio-detail-page .subserv-hero-badge {
    border-color: rgba(227, 86, 17, 0.25);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 14px rgba(227, 86, 17, 0.08);
}

.portfolio-page .subserv-hero-badge:hover,
.portfolio-detail-page .subserv-hero-badge:hover {
    border-color: #e35611;
    box-shadow: 0 6px 18px rgba(227, 86, 17, 0.18);
}

.portfolio-page .subserv-hero-badge .subserv-badge-dot,
.portfolio-detail-page .subserv-hero-badge .subserv-badge-dot {
    background-color: #e35611;
    box-shadow: 0 0 8px #e35611;
}

.portfolio-page .subserv-hero-badge .subserv-badge-dot::after,
.portfolio-detail-page .subserv-hero-badge .subserv-badge-dot::after {
    background-color: rgba(227, 86, 17, 0.35);
}

.portfolio-page .subserv-hero-badge .subserv-badge-text,
.portfolio-detail-page .subserv-hero-badge .subserv-badge-text {
    color: #e35611;
    font-weight: 600;
}

.portfolio-page .subserv-title-gradient,
.portfolio-detail-page .subserv-title-gradient {
    background: linear-gradient(135deg, #e35611 0%, #ff7a1a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.portfolio-page .portfolio-section-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* 2. Selected Work Section */
.portfolio-page .portfolio-selected-section {
    padding: 85px 0 60px;
    position: relative;
}

.portfolio-page .portfolio-selected-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 44px;
    flex-wrap: wrap;
}

.portfolio-page .portfolio-selected-header-left {
    max-width: 520px;
}

.portfolio-page .portfolio-section-title {
    font-size: clamp(28px, 3.2vw, 40px);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.025em;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.portfolio-page .portfolio-section-desc {
    font-size: 15px;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* Filter Navigation Pills */
.portfolio-page .portfolio-filter-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 6px;
    border-radius: 9999px;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.03);
    margin-bottom: 20px;
}

.portfolio-page .portfolio-filter-btn {
    appearance: none;
    border: 1px solid transparent;
    background: transparent;
    color: #475569;
    font-size: 13.5px;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.22s ease;
    outline: none;
    user-select: none;
    line-height: 1.4;
}

.portfolio-page .portfolio-filter-btn:hover {
    background: #fff7ed;
    color: #e35611;
    border-color: rgba(227, 86, 17, 0.3);
}

.portfolio-page .portfolio-filter-btn.active {
    background: #e35611;
    color: #ffffff;
    border-color: #e35611;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(227, 86, 17, 0.28);
}

/* Projects Grid */
.portfolio-page .portfolio-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

/* Project Card */
.portfolio-page .portfolio-project-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
}

.portfolio-page .portfolio-project-card:hover {
    transform: translateY(-6px);
    border-color: rgba(227, 86, 17, 0.35);
    box-shadow: 0 20px 38px -10px rgba(15, 23, 42, 0.1), 0 0 20px rgba(227, 86, 17, 0.08);
}

.portfolio-page .portfolio-project-card.is-hidden {
    display: none !important;
}

/* Card Visual Showcase - Pure Image Only */
.portfolio-page .portfolio-card-mockup {
    background: #f8fafc;
    height: 230px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #eef2f6;
    padding: 0;
}

.portfolio-page .portfolio-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-page .portfolio-project-card:hover .portfolio-card-img {
    transform: scale(1.05);
}

/* Card Content Area */
.portfolio-page .portfolio-card-content {
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.portfolio-page .portfolio-card-title {
    font-size: 18.5px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px 0;
    line-height: 1.35;
    letter-spacing: -0.01em;
    transition: color 0.2s ease;
}

.portfolio-page .portfolio-project-card:hover .portfolio-card-title {
    color: #e35611;
}

.portfolio-page .portfolio-card-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 18px 0;
    flex-grow: 1;
}

.portfolio-page .portfolio-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 22px;
}

.portfolio-page .portfolio-tag {
    font-size: 12px;
    font-weight: 500;
    color: #475569;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 3px 10px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.portfolio-page .portfolio-project-card:hover .portfolio-tag:first-child {
    background: rgba(227, 86, 17, 0.08);
    color: #e35611;
    border-color: rgba(227, 86, 17, 0.25);
}

.portfolio-page .portfolio-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-top: auto;
}

.portfolio-page .portfolio-card-link svg {
    width: 15px;
    height: 15px;
    transition: transform 0.2s ease, color 0.2s ease;
}

.portfolio-page .portfolio-card-link:hover {
    color: #e35611;
}

.portfolio-page .portfolio-card-link:hover svg {
    transform: translateX(4px);
    color: #e35611;
}

/* Load More Button */
.portfolio-page .portfolio-load-more-wrap {
    text-align: center;
    margin-top: 16px;
}

.portfolio-page .portfolio-load-more-btn {
    appearance: none;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    color: #0f172a;
    font-size: 14.5px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 9999px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.portfolio-page .portfolio-load-more-btn:hover {
    background: #e35611;
    color: #ffffff;
    border-color: #e35611;
    box-shadow: 0 8px 20px rgba(227, 86, 17, 0.28);
    transform: translateY(-2px);
}

.portfolio-page .portfolio-load-more-btn svg {
    width: 14px;
    height: 14px;
    transition: transform 0.25s ease;
}

.portfolio-page .portfolio-load-more-btn:hover svg {
    transform: translateY(2px);
}

/* 4. Have a Product in Mind CTA Section */
.portfolio-page .portfolio-cta-section {
    padding: 40px 0 100px;
}

.portfolio-page .portfolio-cta-box {
    background: linear-gradient(135deg, #fff7f2 0%, #fffcf9 45%, #ffffff 100%);
    border: 1px solid rgba(227, 86, 17, 0.18);
    border-radius: 28px;
    padding: 54px 60px;
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 14px 40px -10px rgba(227, 86, 17, 0.08);
}

.portfolio-page .portfolio-cta-badge {
    font-size: 12px;
    font-weight: 700;
    color: #e35611;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: inline-block;
}

.portfolio-page .portfolio-cta-title {
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 14px 0;
    line-height: 1.22;
    letter-spacing: -0.02em;
}

.portfolio-page .portfolio-cta-desc {
    font-size: 15px;
    line-height: 1.65;
    color: #475569;
    margin: 0 0 28px 0;
    max-width: 500px;
}

.portfolio-page .portfolio-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0f172a;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    padding: 13px 26px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.15);
}

.portfolio-page .portfolio-cta-btn:hover {
    background: #e35611;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(227, 86, 17, 0.28);
    color: #ffffff;
}

.portfolio-page .portfolio-cta-btn svg {
    width: 15px;
    height: 15px;
    transition: transform 0.2s ease;
}

.portfolio-page .portfolio-cta-btn:hover svg {
    transform: translateX(4px);
}

/* CTA Right Visual & Sketch Annotation */
.portfolio-page .portfolio-cta-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 240px;
}

.portfolio-page .portfolio-cta-sketch {
    position: absolute;
    top: 4px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
}

.portfolio-page .portfolio-sketch-text {
    font-family: 'Caveat', 'Comic Sans MS', cursive, sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #e35611;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 2px;
}

.portfolio-page .portfolio-sketch-arrow {
    width: 38px;
    height: 38px;
    color: #e35611;
}

.portfolio-page .portfolio-cta-mockup-wrapper {
    width: 100%;
    max-width: 320px;
    height: 180px;
    position: relative;
}

.portfolio-page .cta-mockup-browser {
    width: 82%;
    height: 150px;
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid rgba(227, 86, 17, 0.2);
    box-shadow: 0 10px 30px rgba(227, 86, 17, 0.08);
    position: absolute;
    left: 0;
    top: 16px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.portfolio-page .cta-mockup-phone {
    width: 72px;
    height: 140px;
    background: #ffffff;
    border-radius: 12px;
    border: 2px solid #0f172a;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
    position: absolute;
    right: 8px;
    bottom: 0px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* 5. Responsive Breakpoints for Portfolio Page */
@media (max-width: 1100px) {
    .portfolio-page .portfolio-projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .portfolio-page .related-grid,
    .portfolio-page .portfolio-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .portfolio-page .portfolio-cta-box {
        padding: 44px 36px;
    }
}

@media (max-width: 768px) {
    .portfolio-page .portfolio-selected-section {
        padding: 50px 0 35px;
    }

    .portfolio-page .project-related-section {
        padding: 30px 0 50px;
    }

    .portfolio-page .portfolio-selected-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .portfolio-page .portfolio-filter-nav {
        width: 100%;
        overflow-x: auto;
        white-space: nowrap;
        flex-wrap: nowrap;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
    }

    .portfolio-page .portfolio-filter-btn {
        flex-shrink: 0;
    }

    .portfolio-page .portfolio-projects-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .portfolio-page .related-header,
    .portfolio-page .portfolio-products-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 24px;
    }

    .portfolio-page .related-grid,
    .portfolio-page .portfolio-products-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .portfolio-page .related-card {
        padding: 18px 16px;
        gap: 16px;
    }

    .portfolio-page .related-thumb {
        width: 76px;
        height: 66px;
        flex-shrink: 0;
    }

    .portfolio-page .portfolio-cta-box {
        grid-template-columns: 1fr;
        padding: 36px 24px;
        gap: 36px;
    }

    .portfolio-page .portfolio-cta-visual {
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .portfolio-page .portfolio-section-container {
        padding: 0 16px;
    }

    .portfolio-page .related-card {
        padding: 16px 14px;
        gap: 14px;
    }

    .portfolio-page .related-thumb {
        width: 66px;
        height: 58px;
        flex-shrink: 0;
        border-radius: 8px;
    }

    .portfolio-page .related-thumb svg {
        width: 22px;
        height: 22px;
    }

    .portfolio-page .related-title {
        font-size: 15.5px;
    }

    .portfolio-page .related-desc {
        font-size: 12.5px;
        margin-bottom: 6px;
    }

    .portfolio-page .related-tags {
        gap: 5px;
        margin-bottom: 6px;
    }

    .portfolio-page .related-tag {
        font-size: 10.5px;
        padding: 2px 6px;
    }

    .portfolio-page .related-link {
        font-size: 12.5px;
    }
}

/* ==========================================================================
   Portfolio Detail Page Styles (Scoped under .portfolio-detail-page)
   ========================================================================== */
.portfolio-detail-page {
    background-color: #ffffff;
    color: #0f172a;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    position: relative;
    overflow-x: hidden;
    width: 100%;
}

.portfolio-detail-page .detail-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* 1. Detail Hero Custom Elements */
.portfolio-detail-page .detail-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: #64748b;
    margin-bottom: 22px;
}

.portfolio-detail-page .detail-breadcrumb a {
    color: #64748b;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.portfolio-detail-page .detail-breadcrumb a:hover {
    color: #0f172a;
}

.portfolio-detail-page .detail-breadcrumb .separator {
    color: #cbd5e1;
}

.portfolio-detail-page .detail-breadcrumb .current {
    color: #0f172a;
    font-weight: 600;
}

.portfolio-detail-page .detail-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 16px;
    background: #e0f2fe;
    border: 1px solid #bae6fd;
    border-radius: 9999px;
    color: #0284c7;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.portfolio-detail-page .detail-hero-title {
    font-size: clamp(34px, 4.4vw, 56px);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.15;
    margin: 0 0 10px 0;
    letter-spacing: -0.025em;
}

.portfolio-detail-page .detail-hero-subtitle {
    font-size: clamp(18px, 2.2vw, 24px);
    font-weight: 700;
    color: #334155;
    margin: 0 0 18px 0;
    letter-spacing: -0.01em;
}

.portfolio-detail-page .detail-hero-desc {
    font-size: 15.5px;
    line-height: 1.68;
    color: #475569;
    margin: 0 0 30px 0;
    max-width: 580px;
}

.portfolio-detail-page .detail-hero-ctas {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.portfolio-detail-page .btn-visit-site {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0f172a;
    color: #ffffff !important;
    padding: 13px 26px;
    border-radius: 10px;
    font-size: 14.5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.15);
}

.portfolio-detail-page .btn-visit-site:hover {
    background: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.2);
}

.portfolio-detail-page .btn-get-touch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #0f172a !important;
    border: 1.5px solid #cbd5e1;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 14.5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}

.portfolio-detail-page .btn-get-touch:hover {
    border-color: #0f172a;
    background: #f8fafc;
    transform: translateY(-2px);
}

/* Hero Showcase Double Mockup (Laptop + Phone) */
.portfolio-detail-page .detail-hero-mockup-wrap {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 340px;
}

.portfolio-detail-page .detail-laptop {
    width: 88%;
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    border-radius: 12px;
    box-shadow: 0 20px 45px -10px rgba(15, 23, 42, 0.14);
    overflow: hidden;
    position: relative;
}

.portfolio-detail-page .detail-laptop-bar {
    height: 22px;
    background: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    padding: 0 10px;
    gap: 5px;
}

.portfolio-detail-page .detail-laptop-body {
    padding: 14px;
    background: #f8fafc;
    display: flex;
    gap: 14px;
}

.portfolio-detail-page .detail-laptop-sidebar {
    width: 75px;
    background: #0f172a;
    border-radius: 6px;
    padding: 10px 6px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    flex-shrink: 0;
}

.portfolio-detail-page .detail-sidebar-item {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 6px;
    border-radius: 4px;
    font-size: 8px;
    font-weight: 600;
    color: #94a3b8;
}

.portfolio-detail-page .detail-sidebar-item.active {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.portfolio-detail-page .detail-laptop-main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.portfolio-detail-page .detail-laptop-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 6px 12px;
}

.portfolio-detail-page .detail-stat-chips {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.portfolio-detail-page .detail-stat-chip {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 6px 10px;
    display: flex;
    flex-direction: column;
}

.portfolio-detail-page .detail-stat-chip-num {
    font-size: 13px;
    font-weight: 800;
    color: #0f172a;
}

.portfolio-detail-page .detail-stat-chip-lbl {
    font-size: 7.5px;
    color: #64748b;
}

.portfolio-detail-page .detail-laptop-panels {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 8px;
}

.portfolio-detail-page .detail-chart-panel {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 8px 10px;
}

.portfolio-detail-page .detail-activity-panel {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 8px 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.portfolio-detail-page .detail-phone-float {
    width: 105px;
    background: #ffffff;
    border-radius: 18px;
    border: 3px solid #0f172a;
    box-shadow: 0 20px 35px -5px rgba(15, 23, 42, 0.22);
    position: absolute;
    right: 0;
    bottom: -10px;
    z-index: 5;
    padding: 8px 6px;
    overflow: hidden;
}

/* 2. Project Metadata Bar */
.portfolio-detail-page .project-meta-section {
    padding: 20px 0 60px;
    margin-top: -24px;
    position: relative;
    z-index: 10;
}

.portfolio-detail-page .project-meta-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 26px 36px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    box-shadow: 0 10px 30px -6px rgba(15, 23, 42, 0.06);
}

.portfolio-detail-page .project-meta-item {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
}

.portfolio-detail-page .project-meta-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 15%;
    height: 70%;
    width: 1px;
    background: #e2e8f0;
}

.portfolio-detail-page .project-meta-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #f0f7ff;
    border: 1px solid #dbeafe;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    flex-shrink: 0;
}

.portfolio-detail-page .project-meta-icon svg {
    width: 20px;
    height: 20px;
}

.portfolio-detail-page .project-meta-info {
    display: flex;
    flex-direction: column;
}

.portfolio-detail-page .project-meta-label {
    font-size: 11.5px;
    font-weight: 500;
    color: #64748b;
    margin: 0 0 3px 0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.portfolio-detail-page .project-meta-val {
    font-size: 14.5px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

/* 3. Project Overview & Testimonial */
.portfolio-detail-page .project-overview-section {
    padding: 30px 0 65px;
}

.portfolio-detail-page .overview-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 48px;
    align-items: stretch;
}

.portfolio-detail-page .overview-title {
    font-size: clamp(26px, 2.8vw, 34px);
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 20px 0;
    letter-spacing: -0.02em;
}

.portfolio-detail-page .overview-text {
    font-size: 15.5px;
    line-height: 1.75;
    color: #475569;
    margin: 0 0 18px 0;
}

.portfolio-detail-page .testimonial-card {
    background: linear-gradient(135deg, #f0f7ff 0%, #f8faff 100%);
    border: 1px solid #dbeafe;
    border-radius: 20px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.04);
}

.portfolio-detail-page .testimonial-quote-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #2563eb;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.portfolio-detail-page .testimonial-quote-icon svg {
    width: 18px;
    height: 18px;
}

.portfolio-detail-page .testimonial-quote {
    font-size: 16.5px;
    line-height: 1.65;
    color: #1e293b;
    font-style: italic;
    margin: 0 0 24px 0;
    font-weight: 500;
}

.portfolio-detail-page .testimonial-author {
    font-size: 14px;
    font-weight: 700;
    color: #64748b;
    margin: 0;
}

/* 4. Key Features Section */
.portfolio-detail-page .project-features-section {
    padding: 30px 0 75px;
}

.portfolio-detail-page .section-heading {
    font-size: clamp(26px, 2.8vw, 34px);
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 34px 0;
    letter-spacing: -0.02em;
}

.portfolio-detail-page .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.portfolio-detail-page .feature-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 30px 24px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
}

.portfolio-detail-page .feature-card:hover {
    transform: translateY(-5px);
    border-color: #cbd5e1;
    box-shadow: 0 16px 32px -8px rgba(15, 23, 42, 0.08);
}

.portfolio-detail-page .feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #f0f7ff;
    border: 1px solid #dbeafe;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    margin-bottom: 20px;
}

.portfolio-detail-page .feature-icon svg {
    width: 22px;
    height: 22px;
}

.portfolio-detail-page .feature-title {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 10px 0;
    line-height: 1.35;
}

.portfolio-detail-page .feature-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

/* 5. Screenshots & Visual Showcase Slider */
.portfolio-detail-page .project-screenshots-section {
    padding: 30px 0 80px;
    position: relative;
}

.portfolio-detail-page .screenshots-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 32px;
    gap: 20px;
    flex-wrap: wrap;
}

.portfolio-detail-page .screenshots-arrows {
    display: flex;
    gap: 12px;
}

.portfolio-detail-page .arrow-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid #e2e8f0;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.portfolio-detail-page .arrow-btn:hover {
    background: #e35611;
    color: #ffffff;
    border-color: #e35611;
    box-shadow: 0 4px 14px rgba(227, 86, 17, 0.3);
    transform: translateY(-1px);
}

.portfolio-detail-page .arrow-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.portfolio-detail-page .arrow-btn svg {
    width: 18px;
    height: 18px;
}

.portfolio-detail-page .detail-screenshots-swiper {
    width: 100%;
    overflow: hidden;
    padding: 8px 4px 24px;
}

.portfolio-detail-page .detail-screenshots-swiper .swiper-wrapper {
    align-items: stretch;
}

.portfolio-detail-page .detail-screenshots-swiper .swiper-slide {
    height: auto;
    display: flex;
    padding: 0;
}

.portfolio-detail-page .screenshot-img-card {
    position: relative;
    width: 100%;
    height: 250px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.portfolio-detail-page .screenshot-img-card:hover {
    transform: translateY(-5px);
    border-color: rgba(227, 86, 17, 0.45);
    box-shadow: 0 18px 36px -8px rgba(15, 23, 42, 0.12), 0 0 20px rgba(227, 86, 17, 0.08);
}

.portfolio-detail-page .screenshot-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-detail-page .screenshot-img-card:hover .screenshot-img {
    transform: scale(1.05);
}

/* Hover Zoom Overlay Badge */
.portfolio-detail-page .screenshot-zoom-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.38);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: 2;
    pointer-events: none;
}

.portfolio-detail-page .screenshot-img-card:hover .screenshot-zoom-overlay {
    opacity: 1;
}

.portfolio-detail-page .zoom-icon-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #0f172a;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 18px;
    border-radius: 9999px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    transform: translateY(8px);
    transition: transform 0.25s ease;
}

.portfolio-detail-page .screenshot-img-card:hover .zoom-icon-badge {
    transform: translateY(0);
}

.portfolio-detail-page .zoom-icon-badge svg {
    width: 16px;
    height: 16px;
    color: #e35611;
}

/* ==========================================================================
   Portfolio Lightbox Slider Modal
   ========================================================================== */
.portfolio-lightbox-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s ease;
}

.portfolio-lightbox-modal.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.portfolio-lightbox-modal .lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 15, 29, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    cursor: zoom-out;
}

.portfolio-lightbox-modal .lightbox-dialog {
    position: relative;
    z-index: 2;
    width: 94vw;
    max-width: 1300px;
    height: 92vh;
    display: flex;
    flex-direction: column;
    pointer-events: auto;
}

/* Lightbox Toolbar */
.portfolio-lightbox-modal .lightbox-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 14px 12px;
    color: #ffffff;
    flex-shrink: 0;
}

.portfolio-lightbox-modal .lightbox-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.portfolio-lightbox-modal .lightbox-counter {
    font-size: 13px;
    font-weight: 700;
    color: #e35611;
    background: rgba(227, 86, 17, 0.15);
    border: 1px solid rgba(227, 86, 17, 0.3);
    padding: 4px 12px;
    border-radius: 9999px;
    letter-spacing: 0.04em;
}

.portfolio-lightbox-modal .lightbox-divider {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
}

.portfolio-lightbox-modal .lightbox-title {
    font-size: 15px;
    font-weight: 600;
    color: #f8fafc;
    letter-spacing: -0.01em;
}

.portfolio-lightbox-modal .lightbox-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.portfolio-lightbox-modal .lightbox-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.portfolio-lightbox-modal .lightbox-btn:hover {
    background: #e35611;
    border-color: #e35611;
    box-shadow: 0 4px 14px rgba(227, 86, 17, 0.4);
    transform: scale(1.05);
}

.portfolio-lightbox-modal .lightbox-btn svg {
    width: 18px;
    height: 18px;
}

/* Lightbox Main Stage */
.portfolio-lightbox-modal .lightbox-stage {
    position: relative;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 10px 56px;
}

.portfolio-lightbox-modal .lightbox-image-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-lightbox-modal .lightbox-active-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: opacity 0.22s ease, transform 0.22s ease;
    user-select: none;
}

.portfolio-lightbox-modal .lightbox-active-img.is-loading {
    opacity: 0;
    transform: scale(0.96);
}

/* Nav Buttons on Stage */
.portfolio-lightbox-modal .lightbox-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    z-index: 10;
}

.portfolio-lightbox-modal .lightbox-prev-btn {
    left: 8px;
}

.portfolio-lightbox-modal .lightbox-next-btn {
    right: 8px;
}

.portfolio-lightbox-modal .lightbox-nav-btn:hover {
    background: #e35611;
    border-color: #e35611;
    box-shadow: 0 6px 18px rgba(227, 86, 17, 0.45);
    transform: translateY(-50%) scale(1.08);
}

.portfolio-lightbox-modal .lightbox-nav-btn svg {
    width: 22px;
    height: 22px;
}

/* Bottom Thumbnails Strip */
.portfolio-lightbox-modal .lightbox-thumbnails-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 10px 6px;
    flex-shrink: 0;
    overflow-x: auto;
}

.portfolio-lightbox-modal .lightbox-thumb-item {
    width: 66px;
    height: 44px;
    border-radius: 8px;
    border: 2px solid transparent;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.2s ease;
    background: #0f172a;
    flex-shrink: 0;
}

.portfolio-lightbox-modal .lightbox-thumb-item:hover {
    opacity: 0.85;
    border-color: rgba(255, 255, 255, 0.4);
}

.portfolio-lightbox-modal .lightbox-thumb-item.active {
    opacity: 1;
    border-color: #e35611;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(227, 86, 17, 0.4);
}

.portfolio-lightbox-modal .lightbox-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .portfolio-detail-page .screenshot-img-card {
        height: 210px;
    }

    .portfolio-lightbox-modal .lightbox-stage {
        padding: 10px 4px;
    }

    .portfolio-lightbox-modal .lightbox-nav-btn {
        width: 38px;
        height: 38px;
    }

    .portfolio-lightbox-modal .lightbox-prev-btn {
        left: 2px;
    }

    .portfolio-lightbox-modal .lightbox-next-btn {
        right: 2px;
    }

    .portfolio-lightbox-modal .lightbox-thumb-item {
        width: 50px;
        height: 36px;
    }
}

/* 6. Related Projects / Proprietary Innovations Section */
.portfolio-detail-page .project-related-section,
.portfolio-page .project-related-section {
    padding: 40px 0 80px;
    border-top: 1px solid #edf2f7;
}

.portfolio-detail-page .related-header,
.portfolio-page .related-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 34px;
    flex-wrap: wrap;
    gap: 16px;
}

.portfolio-detail-page .related-view-all,
.portfolio-page .related-view-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14.5px;
    font-weight: 600;
    color: #0f172a;
    text-decoration: none;
    transition: all 0.2s ease;
}

.portfolio-detail-page .related-view-all:hover,
.portfolio-page .related-view-all:hover {
    color: #e35611;
    gap: 10px;
}

.portfolio-detail-page .related-grid,
.portfolio-page .related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.portfolio-detail-page .related-card,
.portfolio-page .related-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
}

.portfolio-detail-page .related-card:hover,
.portfolio-page .related-card:hover {
    border-color: rgba(227, 86, 17, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 16px 30px -8px rgba(15, 23, 42, 0.08), 0 0 18px rgba(227, 86, 17, 0.06);
}

.portfolio-detail-page .related-thumb,
.portfolio-page .related-thumb {
    width: 90px;
    height: 76px;
    flex-shrink: 0;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #334155;
}

.portfolio-detail-page .related-card:hover .related-thumb,
.portfolio-page .related-card:hover .related-thumb {
    border-color: rgba(227, 86, 17, 0.3);
    background: #fff7ed;
    color: #e35611;
}

.portfolio-detail-page .related-thumb.thumb-orange,
.portfolio-page .related-thumb.thumb-orange {
    background: #fff7ed;
    border-color: #ffedd5;
    color: #e35611;
}

.portfolio-detail-page .related-thumb.thumb-blue,
.portfolio-page .related-thumb.thumb-blue,
.portfolio-detail-page .related-thumb.thumb-cyan,
.portfolio-page .related-thumb.thumb-cyan {
    background: #f8fafc;
    border-color: #e2e8f0;
    color: #475569;
}

.portfolio-detail-page .related-card:hover .related-thumb.thumb-blue,
.portfolio-page .related-card:hover .related-thumb.thumb-blue,
.portfolio-detail-page .related-card:hover .related-thumb.thumb-cyan,
.portfolio-page .related-card:hover .related-thumb.thumb-cyan {
    background: #fff7ed;
    border-color: #ffedd5;
    color: #e35611;
}

.portfolio-detail-page .related-info,
.portfolio-page .related-info {
    flex-grow: 1;
    min-width: 0;
}

.portfolio-detail-page .related-title,
.portfolio-page .related-title {
    font-size: 16.5px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 4px 0;
    transition: color 0.2s ease;
}

.portfolio-detail-page .related-card:hover .related-title,
.portfolio-page .related-card:hover .related-title {
    color: #e35611;
}

.portfolio-detail-page .related-desc,
.portfolio-page .related-desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.45;
    margin: 0 0 8px 0;
}

.portfolio-detail-page .related-tags,
.portfolio-page .related-tags {
    display: flex;
    gap: 6px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.portfolio-detail-page .related-tag,
.portfolio-page .related-tag {
    font-size: 11px;
    font-weight: 500;
    color: #475569;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    padding: 2px 7px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.portfolio-detail-page .related-tag.tag-orange,
.portfolio-page .related-tag.tag-orange {
    background: #fff7ed;
    color: #c2410c;
    border-color: rgba(227, 86, 17, 0.2);
}

.portfolio-detail-page .related-tag.tag-blue,
.portfolio-page .related-tag.tag-blue,
.portfolio-detail-page .related-tag.tag-cyan,
.portfolio-page .related-tag.tag-cyan,
.portfolio-detail-page .related-tag.tag-purple,
.portfolio-page .related-tag.tag-purple,
.portfolio-detail-page .related-tag.tag-neutral,
.portfolio-page .related-tag.tag-neutral {
    background: #f1f5f9;
    color: #475569;
    border-color: #e2e8f0;
}

.portfolio-detail-page .related-card:hover .related-tag:first-child,
.portfolio-page .related-card:hover .related-tag:first-child {
    background: #fff7ed;
    color: #e35611;
    border-color: rgba(227, 86, 17, 0.25);
}

.portfolio-detail-page .related-link,
.portfolio-page .related-link {
    font-size: 13px;
    font-weight: 600;
    color: #0f172a;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.2s ease;
}

.portfolio-detail-page .related-link:hover,
.portfolio-page .related-link:hover,
.portfolio-detail-page .related-card:hover .related-link,
.portfolio-page .related-card:hover .related-link {
    color: #e35611;
    gap: 8px;
}

.portfolio-detail-page .related-link-arrow,
.portfolio-page .related-link-arrow {
    display: inline-flex;
    transition: transform 0.2s ease;
}

.portfolio-detail-page .related-link:hover .related-link-arrow,
.portfolio-page .related-link:hover .related-link-arrow,
.portfolio-detail-page .related-card:hover .related-link-arrow,
.portfolio-page .related-card:hover .related-link-arrow {
    transform: translateX(4px);
}

/* 7. CTA Section */
.portfolio-detail-page .detail-cta-section {
    padding: 20px 0 100px;
}

.portfolio-detail-page .detail-cta-box {
    background: linear-gradient(135deg, #fff7f2 0%, #fffcf9 45%, #ffffff 100%);
    border: 1px solid rgba(227, 86, 17, 0.18);
    border-radius: 28px;
    padding: 54px 60px;
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 14px 40px -10px rgba(227, 86, 17, 0.08);
}

.portfolio-detail-page .detail-cta-badge {
    font-size: 12px;
    font-weight: 700;
    color: #e35611;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: inline-block;
}

.portfolio-detail-page .detail-cta-title {
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 14px 0;
    line-height: 1.22;
    letter-spacing: -0.02em;
}

.portfolio-detail-page .detail-cta-desc {
    font-size: 15px;
    line-height: 1.65;
    color: #475569;
    margin: 0 0 28px 0;
    max-width: 500px;
}

.portfolio-detail-page .detail-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0f172a;
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 600;
    padding: 13px 26px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.15);
}

.portfolio-detail-page .detail-cta-btn:hover {
    background: #e35611;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(227, 86, 17, 0.28);
}

.portfolio-detail-page .detail-cta-btn svg {
    width: 15px;
    height: 15px;
    transition: transform 0.2s ease;
}

.portfolio-detail-page .detail-cta-btn:hover svg {
    transform: translateX(4px);
}

.portfolio-detail-page .detail-cta-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 240px;
}

.portfolio-detail-page .detail-cta-sketch {
    position: absolute;
    top: 4px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
}

.portfolio-detail-page .detail-sketch-text {
    font-family: 'Caveat', 'Comic Sans MS', cursive, sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #e35611;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 2px;
}

.portfolio-detail-page .detail-sketch-arrow {
    width: 38px;
    height: 38px;
    color: #e35611;
}

.portfolio-detail-page .detail-cta-mockup-wrapper {
    width: 100%;
    max-width: 320px;
    height: 180px;
    position: relative;
}

/* Responsive Media Queries */
@media (max-width: 1100px) {
    .portfolio-detail-page .project-meta-card {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .portfolio-detail-page .project-meta-item:nth-child(3)::after {
        display: none;
    }

    .portfolio-detail-page .overview-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .portfolio-detail-page .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-detail-page .screenshots-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-detail-page .related-grid,
    .portfolio-page .related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .portfolio-detail-page .detail-cta-box {
        padding: 44px 36px;
    }
}

@media (max-width: 1024px) {

    .saas-ess-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .saas-ess-title {
        font-size: 32px;
    }

    .subserv-item-label {
        white-space: unset;
    }

    .subserv-hero-section {
        min-height: 50dvh;
    }

    .subserv-solutions-showcase {
        padding: 32px 17px;
    }

    .subserv-media-badge-overlay {
        left: 15px;
        right: 15px;
    }

    .subserv-media-badge-desc {
        font-size: 8.5px;
        margin-top: 5px;
    }

    .subserv-solutions-layout {
        grid-template-columns: 1fr 2fr;
        gap: 30px;
    }

    .subserv-item-label {
        font-size: 11.5px;
    }

    .subserv-hero-title,
    .subserv-overview-title,
    .subserv-grid-title {
        font-size: 38px;
    }

    .subserv-counters-wrap .counter-box .count-value {
        font-size: 34px;
    }

    .subserv-card-title {
        font-size: 17px;
    }

    .subserv-hero-description,
    .subserv-grid-subtitle {
        font-size: 15.5px;
    }

    .subserv-eco-sec {
        padding: 80px 0 85px;
    }

    .subserv-eco-header {
        margin-bottom: 45px;
    }

    .subserv-eco-title {
        font-size: 34px;
        margin-bottom: 14px;
    }

    .subserv-eco-desc {
        font-size: 15.5px;
    }

    .subserv-eco-stage {
        grid-template-columns: 1fr 320px 1fr;
        gap: 16px;
    }

    .subserv-eco-col {
        gap: 16px;
    }

    .subserv-eco-card {
        padding: 20px 20px;
        border-radius: 16px;
    }

    .subserv-eco-card-title {
        font-size: 17px;
        margin-bottom: 6px;
    }

    .subserv-eco-card-desc {
        font-size: 13.5px;
        line-height: 1.55;
    }

    .subserv-eco-hub-sphere-wrap {
        width: 320px;
        height: 320px;
    }

    .subserv-eco-orbit-ring.ring-1 {
        width: 310px;
        height: 310px;
    }

    .subserv-eco-orbit-ring.ring-2 {
        width: 230px;
        height: 230px;
    }

    .subserv-eco-orbit-ring.ring-3 {
        width: 160px;
        height: 160px;
    }

    .subserv-eco-hub-core {
        width: 120px;
        height: 120px;
        padding: 10px;
    }

    .subserv-eco-hub-icon {
        width: 34px;
        height: 34px;
        margin-bottom: 4px;
    }

    .subserv-eco-hub-icon svg {
        width: 18px;
        height: 18px;
    }

    .subserv-eco-hub-title {
        font-size: 12.5px;
        max-width: 95px;
    }

    .subserv-eco-satellite {
        padding: 5px 10px;
        font-size: 11px;
        gap: 5px;
    }

    .subserv-eco-satellite svg {
        width: 12px;
        height: 12px;
    }

    .subserv-eco-satellite.sat-1 {
        top: 18px;
        left: 10px;
    }

    .subserv-eco-satellite.sat-2 {
        top: 50%;
        left: -15px;
    }

    .subserv-eco-satellite.sat-3 {
        bottom: 18px;
        left: 10px;
    }

    .subserv-eco-satellite.sat-4 {
        top: 18px;
        right: 10px;
    }

    .subserv-eco-satellite.sat-5 {
        top: 50%;
        right: -15px;
    }

    .subserv-eco-satellite.sat-6 {
        bottom: 18px;
        right: 10px;
    }

    .process-sticky-title {
        letter-spacing: 0px;
    }
}

@media (max-width: 991px) {

       .subserv-sectors-sec {
        padding: 56px 20px;
    }

    .subserv-sectors-top-header {
        margin-bottom: 34px;
    }

    .subserv-sectors-heading {
        font-size: 26px;
    }

    .subserv-sectors-center-layout {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .subserv-sectors-center-hero {
        grid-column: 1 / -1;
        order: -1;
        margin-bottom: 16px;
    }

    .subserv-sectors-visual-wrap {
        max-width: 350px;
    }

    .subserv-hero-title,
    .subserv-overview-title,
    .subserv-grid-title {
        font-size: 30px;
        line-height: 40px;
    }

    .sub-industries-intro {
        padding: 60px 0;
    }

    .sub-industries-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .sub-industries-title {
        font-size: 26px;
    }

    .sub-industries-text {
        font-size: 15px;
    }

        .subserv-hero-title, .subserv-overview-title, .subserv-grid-title {
        font-size: 30px;
        line-height: 40px;
    }

    .subserv-overview-section,
    .subserv-overview-section,
    .subserv-services-grid-section,
    .subserv-why-invest-sec,
    .process-section,
    .subserv-blog-section{
        padding: 50px 0px;
    }

    .process-protocol-pill {
    max-width: 300px;
}

.cta-left.coffee-cup-box, .coffee-cup-box {
    position: absolute;
    width: 170px;
    height: 160px;
    margin-top: 25px;
    left: auto;
    right: 0;
    bottom: 0px;
}

.creative-actions {
    margin-bottom: 30px;
}


.creative-text-block,
.creative-form-block{
    min-width: unset;
    max-width: unset;
    width: 100%;
}

        .subserv-solutions-layout {
        grid-template-columns: 1fr;
    }

    .subserv-media-card-frame {
    max-width: 400px;
    margin: 0 auto;
}

.subserv-media-display-img{
    height: 400px;
}

.subserv-cta-minimal-bar{
        flex-direction: column;
}

}

@media (max-width: 768px) {
    .portfolio-detail-page .project-meta-card {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 16px;
    }

    .portfolio-detail-page .project-meta-item::after {
        display: none !important;
    }

    .portfolio-detail-page .features-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-detail-page .related-header,
    .portfolio-page .related-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 24px;
    }

    .portfolio-detail-page .related-grid,
    .portfolio-page .related-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .portfolio-detail-page .related-card,
    .portfolio-page .related-card {
        padding: 18px 16px;
        gap: 16px;
    }

    .portfolio-detail-page .related-thumb,
    .portfolio-page .related-thumb {
        width: 76px;
        height: 66px;
        flex-shrink: 0;
    }

    .portfolio-detail-page .project-related-section,
    .portfolio-page .project-related-section {
        padding: 30px 0 50px;
    }

    .portfolio-detail-page .detail-cta-box {
        grid-template-columns: 1fr;
        padding: 34px 22px;
        gap: 34px;
    }

    .portfolio-detail-page .detail-hero-mockup-wrap {
        min-height: auto;
    }

    .portfolio-detail-page .detail-phone-float {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 14px;
    }
}

@media (max-width: 480px) {
    .portfolio-page .portfolio-section-container {
        padding: 0 16px;
    }

    .portfolio-detail-page .related-card,
    .portfolio-page .related-card {
        padding: 15px 14px;
        gap: 14px;
    }

    .portfolio-detail-page .related-thumb,
    .portfolio-page .related-thumb {
        width: 66px;
        height: 58px;
        flex-shrink: 0;
        border-radius: 8px;
    }

    .portfolio-detail-page .related-thumb svg,
    .portfolio-page .related-thumb svg {
        width: 22px;
        height: 22px;
    }

    .portfolio-detail-page .related-title,
    .portfolio-page .related-title {
        font-size: 15.5px;
    }

    .portfolio-detail-page .related-desc,
    .portfolio-page .related-desc {
        font-size: 12.5px;
        margin-bottom: 6px;
    }

    .portfolio-detail-page .related-tags,
    .portfolio-page .related-tags {
        gap: 5px;
        margin-bottom: 6px;
    }

    .portfolio-detail-page .related-tag,
    .portfolio-page .related-tag {
        font-size: 10.5px;
        padding: 2px 6px;
    }

    .portfolio-detail-page .related-link,
    .portfolio-page .related-link {
        font-size: 12.5px;
    }
}

.sub-industries-supporting-points {
    padding-left: 25px;
}

.sub-industries-supporting-points .sub-industries-text {
    margin-bottom: 0;
}

.subserv-usecases-sec .subserv-usecase-card .subserv-usecase-icon-box svg {
    height: 40px;
    width: 40px;
}