﻿/* ============================================
   PROFILE MK â€” Home Page Styles
   Premium Glassmorphism Landing Page
   ============================================ */

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   PORTFOLIO SECTION (Preloader moved to preloader.css)
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

0%,
100% {
    transform: translate(0, 0) scale(1);
}

50% {
    transform: translate(-40px, 20px) scale(1.05);
}
}

/* Typing Animation */
.loader-typing {
    min-height: 24px;
    margin-top: var(--space-4);
}

.loader-typing-text {
    font-size: var(--text-base);
    color: var(--text-secondary);
    letter-spacing: var(--tracking-wide);
    animation: typing-cursor 0.5s ease-in-out infinite;
}

@keyframes typing-cursor {

    0%,
    100% {
        border-right-color: var(--color-primary);
    }

    50% {
        border-right-color: transparent;
    }
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: var(--space-32) var(--section-padding-x) var(--space-16);
    overflow: hidden;
}

/* Background Effects */
.hero-background {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
}

.hero-orb-1 {
    top: 10%;
    left: 20%;
    width: 400px;
    height: 400px;
    background: var(--color-primary);
}

.hero-orb-2 {
    bottom: 20%;
    right: 15%;
    width: 350px;
    height: 350px;
    background: var(--color-primary-dark);
}

.hero-orb-3 {
    top: 50%;
    left: 60%;
    width: 250px;
    height: 250px;
    background: var(--color-secondary);
}

/* Hero Content */
.hero-content {
    position: relative;
    max-width: 900px;
    z-index: 1;
}

.hero-badge {
    margin-bottom: var(--space-6);
}

.hero-title {
    margin-bottom: var(--space-6);
}

.hero-title-line {
    display: block;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: var(--text-xl);
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto var(--space-8);
    line-height: var(--leading-relaxed);
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    color: var(--text-muted);
    font-size: var(--text-xs);
    animation: float 2s ease-in-out infinite;
}

.scroll-indicator-icon {
    width: 24px;
    height: 36px;
    border: 2px solid var(--glass-border-strong);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator-icon::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--color-primary-light);
    border-radius: 2px;
    animation: scroll-dot 1.5s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-8px);
    }
}

@keyframes scroll-dot {

    0%,
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    50% {
        opacity: 0.3;
        transform: translateX(-50%) translateY(10px);
    }
}

/* ============================================
   ABOUT ME / AUTHORITY SECTION REDESIGN
   ============================================ */

.authority {
    position: relative;
    padding: var(--space-24) 0;
    overflow: hidden;
}

/* Background Glow for Section */
.authority::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(130, 36, 227, 0.1) 0%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
}

.authority-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Balanced 50/50 split */
    gap: var(--space-16);
    align-items: center;
}

/* Typography & Content */
.authority-label-wrapper {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.authority-line {
    width: 60px;
    height: 2px;
    background: var(--color-primary);
}

/* ============================================
   SERVICES SECTION (MASTER)
   ============================================ */
.services {
    padding: var(--space-24) 0;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 50% 10%, #1a0b2e 0%, #050505 60%);
}

.services::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(130, 36, 227, 0.15) 0%, transparent 60%);
    filter: blur(80px);
    pointer-events: none;
}

.services-slider-wrapper {
    position: relative;
    padding: 40px 0 60px 0;
    z-index: 2;
}

/* MASTER CARD DESIGN */
.service-card {
    position: relative;
    height: 100%;
    min-height: 380px;
    background: rgba(20, 20, 35, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    overflow: hidden;
    margin: 0 15px;
    /* Slight desktop spacing */
}

/* Active/Hover State */
.service-card:hover,
.swiper-slide-active .service-card {
    background: rgba(30, 30, 45, 0.9);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(130, 36, 227, 0.2);
    border-color: var(--color-primary);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon,
.swiper-slide-active .service-icon {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: scale(1.05);
}

.service-icon svg {
    width: 36px;
    height: 36px;
    stroke: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon svg,
.swiper-slide-active .service-icon svg {
    stroke: white;
}

.service-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.service-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.service-link {
    display: none !important;
}


/* ============================================
   PROCESS SECTION (MASTER)
   ============================================ */
.process {
    padding: var(--space-24) 0;
    position: relative;
    background: #050505;
    overflow: hidden;
}

.process .section-header {
    margin-bottom: 80px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.process .section-label {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid rgba(130, 36, 227, 0.4);
    background: rgba(130, 36, 227, 0.1);
    color: #b553f7;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.process .section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: white;
    font-weight: 800;
    margin-bottom: 20px;
}

.process .section-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

/* ZIGZAG GRID (Desktop) */
.process-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    padding: 40px 0;
    max-width: 1000px;
    margin: 0 auto;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: linear-gradient(180deg, transparent 0%, rgba(130, 36, 227, 0.5) 20%, rgba(130, 36, 227, 0.5) 80%, transparent 100%);
}

.process-step {
    display: flex;
    width: 50%;
    position: relative;
    padding-bottom: 80px;
}

.process-step:nth-child(odd) {
    align-self: flex-start;
    padding-right: 60px;
    flex-direction: row-reverse;
    text-align: right;
}

.process-step:nth-child(even) {
    align-self: flex-end;
    padding-left: 60px;
    text-align: left;
}

.process-number-wrapper {
    position: absolute;
    top: 0;
    width: 60px;
    height: 60px;
    background: #0a0a0f;
    border: 2px solid #2a2a40;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.4s ease;
}

.process-step:nth-child(odd) .process-number-wrapper {
    right: -30px;
}

.process-step:nth-child(even) .process-number-wrapper {
    left: -30px;
}

.process-step:hover .process-number-wrapper {
    border-color: var(--color-primary);
    box-shadow: 0 0 20px rgba(130, 36, 227, 0.6);
    transform: scale(1.1);
}

.process-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.process-number {
    display: none;
}

.process-content-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.process-title {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 10px;
    font-weight: 700;
}

.process-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}


/* ============================================
   MASTER MOBILE RESPONSIVENESS
   ============================================ */
@media (max-width: 900px) {

    /* --- SERVICES: FLOATING CARD --- */
    .services-swiper {
        padding: 0 25px 60px 25px !important;
        /* Side padding to frame the card */
    }

    .services-swiper .swiper-slide {
        width: 100% !important;
        /* Full width of padded container */
        opacity: 1 !important;
        transform: none !important;
        margin: 0 !important;
    }

    .service-card {
        margin: 0 !important;
        padding: 40px 30px !important;
        background: rgba(18, 18, 30, 0.95) !important;
        border: 1px solid rgba(130, 36, 227, 0.5) !important;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6) !important;
        min-height: 420px;
        /* Taller */
    }

    .service-title {
        font-size: 1.8rem !important;
        margin-bottom: 20px !important;
    }

    .service-description {
        font-size: 1.1rem !important;
    }

    /* --- PROCESS: LEFT TIMELINE --- */
    .process-grid {
        gap: 60px;
        padding: 40px 0;
    }

    .process-grid::before {
        left: 40px;
        /* Line fixed to left */
    }

    .process-step {
        width: 100%;
        align-self: flex-start !important;
        padding: 0 0 0 100px !important;
        /* Indent content */
        text-align: left !important;
        display: flex;
        flex-direction: column !important;
    }

    .process-step:nth-child(odd),
    .process-step:nth-child(even) {
        align-self: flex-start;
        flex-direction: column;
        justify-content: flex-start;
        text-align: left;
    }

    .process-step:nth-child(odd) .process-number-wrapper,
    .process-step:nth-child(even) .process-number-wrapper {
        left: 10px;
        /* Centered on the 40px line */
        right: auto;
        top: 0;
        transform: none;
    }

    .process-content-wrapper {
        width: 100%;
        max-width: 100%;
        align-items: flex-start !important;
        text-align: left !important;
    }
}

/* ============================================
   MOBILE RESPONSIVENESS for ABOUT ME
   ============================================ */
@media (max-width: 992px) {
    .authority-inner {
        grid-template-columns: 1fr;
        gap: var(--space-12);
        text-align: center;
    }

    .authority-label-wrapper {
        justify-content: center;
    }

    .authority-text {
        margin-left: auto;
        margin-right: auto;
    }

    .authority-actions {
        justify-content: center;
    }

    .authority-visual {
        order: -1;
        margin-bottom: var(--space-8);
        perspective: none;
    }

    .premium-image-wrapper {
        max-width: 350px;
        transform: none;
        border-radius: 30px;
    }
}

.services::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(130, 36, 227, 0.15) 0%, transparent 60%);
    filter: blur(80px);
    pointer-events: none;
}

.services-slider-wrapper {
    position: relative;
    padding: 40px 0 60px 0;
    z-index: 2;
}

/* CARD DESIGN */
.service-card {
    position: relative;
    height: 100%;
    min-height: 380px;
    background: rgba(20, 20, 35, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 50%, rgba(130, 36, 227, 0.5));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.service-card:hover,
.swiper-slide-active .service-card {
    background: rgba(30, 30, 45, 0.8);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.service-card:hover::after,
.swiper-slide-active .service-card::after {
    opacity: 1;
    background: linear-gradient(135deg, #8224e3, #b553f7);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon,
.swiper-slide-active .service-icon {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: scale(1.05);
}

.service-icon svg {
    width: 36px;
    height: 36px;
    stroke: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon svg,
.swiper-slide-active .service-icon svg {
    stroke: white;
}

.service-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.service-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.service-link {
    display: none !important;
}

/* ============================================
   PROCESS SECTION (STRICT REDESIGN)
   ============================================ */
.process {
    padding: var(--space-24) 0;
    position: relative;
    background: #050505;
    overflow: hidden;
}

.process .section-header {
    margin-bottom: 80px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.process .section-label {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid rgba(130, 36, 227, 0.4);
    background: rgba(130, 36, 227, 0.1);
    color: #b553f7;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.process .section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: white;
    font-weight: 800;
    margin-bottom: 20px;
}

.process .section-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

.process-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    padding: 40px 0;
    max-width: 1000px;
    margin: 0 auto;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: linear-gradient(180deg, transparent 0%, rgba(130, 36, 227, 0.5) 20%, rgba(130, 36, 227, 0.5) 80%, transparent 100%);
}

.process-step {
    display: flex;
    width: 50%;
    position: relative;
    padding-bottom: 80px;
}

.process-step:nth-child(odd) {
    align-self: flex-start;
    padding-right: 60px;
    flex-direction: row-reverse;
    text-align: right;
}

.process-step:nth-child(even) {
    align-self: flex-end;
    padding-left: 60px;
    text-align: left;
}

.process-number-wrapper {
    position: absolute;
    top: 0;
    width: 60px;
    height: 60px;
    background: #0a0a0f;
    border: 2px solid #2a2a40;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.4s ease;
}

.process-step:nth-child(odd) .process-number-wrapper {
    right: -30px;
}

.process-step:nth-child(even) .process-number-wrapper {
    left: -30px;
}

.process-step:hover .process-number-wrapper {
    border-color: var(--color-primary);
    box-shadow: 0 0 20px rgba(130, 36, 227, 0.6);
    transform: scale(1.1);
}

.process-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.process-number {
    display: none;
}

.process-content-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.process-title {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 10px;
    font-weight: 700;
}

.process-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* ============================================
   RESPONSIVE (STRICT MOBILE)
   ============================================ */
@media (max-width: 900px) {

    /* STRICT SERVICES CARD */
    .services-swiper {
        padding-bottom: 40px;
    }

    .services-swiper .swiper-slide {
        width: 100% !important;
        /* STRICTLY 100% */
        opacity: 1 !important;
        transform: none !important;
        margin: 0 !important;
    }

    .service-card {
        padding: 40px 25px;
        min-height: auto;
        justify-content: center;
        margin: 0 10px;
        /* Small margin for aesthetic */
    }

    /* STRICT PROCESS LAYOUT */
    .process-grid::before {
        left: 30px;
    }

    .process-step {
        width: 100%;
        align-self: flex-start !important;
        padding: 0 0 50px 80px !important;
        text-align: left !important;
        flex-direction: column !important;
    }

    .process-step:nth-child(odd) .process-number-wrapper,
    .process-step:nth-child(even) .process-number-wrapper {
        left: 0;
        right: auto;
    }

    .process-content-wrapper {
        text-align: left;
    }
}

/* Ambient Glows */
.services::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(130, 36, 227, 0.15) 0%, transparent 60%);
    filter: blur(80px);
    pointer-events: none;
}

/* Swiper Container */
.services-slider-wrapper {
    position: relative;
    padding: 40px 0 60px 0;
    /* Space for shadow/pagination */
    z-index: 2;
}

/* CARD DESIGN (Glass + Neon) */
.service-card {
    position: relative;
    height: 100%;
    min-height: 380px;
    background: rgba(20, 20, 35, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

/* Glow Border on Hover/Active */
.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 50%, rgba(130, 36, 227, 0.5));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.6;
    transition: opacity 0.4s ease;
}

/* Active State (Hover or Swiper Active) */
.service-card:hover,
.swiper-slide-active .service-card {
    background: rgba(30, 30, 45, 0.8);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(130, 36, 227, 0.2);
}

.service-card:hover::after,
.swiper-slide-active .service-card::after {
    opacity: 1;
    background: linear-gradient(135deg, #8224e3, #b553f7);
    box-shadow: 0 0 20px rgba(130, 36, 227, 0.4);
}

/* Icon */
.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon,
.swiper-slide-active .service-icon {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: scale(1.1) rotate(-3deg);
    box-shadow: 0 10px 20px rgba(130, 36, 227, 0.3);
}

.service-icon svg {
    width: 36px;
    height: 36px;
    stroke: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon svg,
.swiper-slide-active .service-icon svg {
    stroke: white;
}

/* Text */
.service-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.service-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}

/* Remove Button */
.service-link {
    display: none !important;
}


/* ============================================



/* ============================================
   RESPONSIVE (MOBILE)
   ============================================ */
@media (max-width: 900px) {

    /* SERVICES MOBILE */
    .services-swiper {
        padding-bottom: 50px;
    }

    .services-swiper .swiper-slide {
        width: 85% !important;
        /* "Peek" active */
        opacity: 0.4;
        transform: scale(0.92);
        transition: all 0.4s ease;
    }

    .services-swiper .swiper-slide-active {
        width: 85% !important;
        opacity: 1;
        transform: scale(1);
    }

    .service-card {
        padding: 40px 25px;
        min-height: 340px;
        justify-content: center;
    }

    /* PROCESS MOBILE */
    .process-grid::before {
        left: 30px;
        /* Line to Left */
    }

    .process-step {
        width: 100%;
        align-self: flex-start !important;
        padding: 0 0 50px 80px !important;
        /* Left space for line */
        text-align: left !important;
        flex-direction: column !important;
    }

    .process-step:nth-child(odd) .process-number-wrapper,
    .process-step:nth-child(even) .process-number-wrapper {
        left: 0;
        /* Align on left line */
        right: auto;
    }

    .process-content-wrapper {
        text-align: left;
    }
}

/* CARDS: The Core "Radiant" Look */
.service-card {
    background: rgba(10, 10, 20, 0.6);
    /* Very sheer dark glass */
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    /* Subtle border */
    border-radius: 32px;
    padding: 50px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center horizontally */
    text-align: center;
    /* Center text */
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

/* Inner Glow "Spotlight" (Pseudo-element for hover) */
.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(130, 36, 227, 0.15),
            transparent 40%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
    pointer-events: none;
}

.service-card:hover::before {
    opacity: 1;
}

/* Strong Border Glow on Active/Hover */
.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 32px;
    padding: 2px;
    /* Border width */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 50%, rgba(130, 36, 227, 0.5));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
    transition: opacity 0.5s ease;
}

.service-card:hover::after {
    opacity: 1;
    background: linear-gradient(135deg, rgba(130, 36, 227, 0.8), var(--color-primary), rgba(255, 255, 255, 0.2));
    box-shadow: 0 0 30px rgba(130, 36, 227, 0.3);
}

/* Card Content Styling */
.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all 0.5s ease;
    z-index: 1;
    position: relative;
}

.service-card:hover .service-icon {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 10px 30px rgba(130, 36, 227, 0.4);
}

.service-icon svg {
    width: 36px;
    height: 36px;
    stroke: rgba(255, 255, 255, 0.8);
    transition: stroke 0.3s;
}

.service-card:hover .service-icon svg {
    stroke: white;
}

.service-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    z-index: 1;
    position: relative;
}

.service-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 0;
    /* No bottom margin needed without button */
    z-index: 1;
    position: relative;
}

/* Button Removed - CSS Cleanup */
.service-link {
    display: none !important;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 900px) {

    /* Allow Swiper to handle width (remove overrides) */
    .services-swiper .swiper-slide {
        width: 100% !important;
        /* One card per slide */
        opacity: 1 !important;
        transform: scale(0.95) !important;
        /* Slight scale down for side peering */
        filter: none !important;
        transition: transform 0.3s ease !important;
    }

    .services-swiper .swiper-slide-active {
        transform: scale(1) !important;
        /* Active card full size */
    }

    .service-card {
        padding: 40px 25px !important;
        /* Balanced padding */
        min-height: 300px;
        /* Reduced height */
        background: rgba(15, 15, 25, 0.95) !important;
        margin: 0 10px;
        /* Spacing for safety */
        justify-content: center;
        /* Vertically center content */
    }

    .service-title {
        font-size: 1.5rem !important;
    }

    .service-description {
        font-size: 1rem !important;
        line-height: 1.5;
        margin-bottom: 0 !important;
    }

    /* MOBILE OPTIMIZATION */
    @media (max-width: 900px) {

        /* RADICAL FIX: Centered Slide with Spacing */
        .services-swiper {
            padding: 0 0 40px 0 !important;
        }

        .services-swiper .swiper-slide {
            width: 85% !important;
            /* Slightly less than full to show hint of next */
            margin-right: 15px !important;
            /* Gap between slides */
            opacity: 0.4 !important;
            /* Fade out inactive */
            transform: scale(0.9) !important;
            transition: all 0.4s ease !important;
        }

        .services-swiper .swiper-slide-active {
            opacity: 1 !important;
            transform: scale(1) !important;
            width: 85% !important;
        }

        .service-card {
            padding: 40px 20px !important;
            min-height: 320px;
            background: rgba(15, 15, 25, 0.95) !important;
            border: 1px solid rgba(130, 36, 227, 0.3);
            /* Distinct border */
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .service-title {
            font-size: 1.6rem !important;
            margin-bottom: 15px !important;
        }

        .service-description {
            font-size: 1rem !important;
            line-height: 1.6;
            margin-bottom: 0 !important;
            opacity: 0.9;
        }

        .service-icon {
            margin: 0 auto 20px auto;
            width: 70px;
            height: 70px;
        }

        .service-icon svg {
            width: 30px;
            height: 30px;
        }
    }

    .authority-label {
        font-size: var(--text-sm);
        font-weight: 700;
        color: var(--color-primary);
        text-transform: uppercase;
        letter-spacing: 0.15em;
    }

    .authority-title {
        font-size: clamp(2.5rem, 5vw, 4rem);
        /* Huge Title */
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: var(--space-8);
        background: linear-gradient(135deg, white 0%, rgba(255, 255, 255, 0.7) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .authority-text {
        font-size: 1.15rem;
        color: var(--text-secondary);
        line-height: 1.8;
        margin-bottom: var(--space-10);
        max-width: 550px;
    }

    /* Buttons */
    .authority-actions {
        display: flex;
        gap: var(--space-4);
        flex-wrap: wrap;
    }

    /* Visual / Image Area */
    .authority-visual {
        position: relative;
        display: flex;
        justify-content: center;
        perspective: 1000px;
    }

    .premium-image-wrapper {
        position: relative;
        width: 100%;
        max-width: 380px;
        display: block;
        border-radius: 40px;
        /* Modern large radius */
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(20, 20, 30, 0.5);
        transform: rotateY(-5deg) rotateX(2deg);
        /* 3D Tilted Look */
        transition: transform 0.5s ease;
        box-shadow:
            0 30px 60px -20px rgba(0, 0, 0, 0.8),
            0 0 40px rgba(130, 36, 227, 0.2);
        /* Purple Glow */
    }

    .premium-image-wrapper:hover {
        transform: rotateY(0) rotateX(0);
        /* Flatten on hover */
        box-shadow:
            0 40px 80px -20px rgba(0, 0, 0, 0.8),
            0 0 60px rgba(130, 36, 227, 0.3);
    }

    .premium-image-wrapper::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent 0%, rgba(130, 36, 227, 0.2) 100%);
        pointer-events: none;
        z-index: 1;
    }

    .authority-image {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.5s ease;
    }

    .premium-image-wrapper:hover .authority-image {
        transform: scale(1.05);
    }

    /* ============================================
   MOBILE RESPONSIVENESS for ABOUT ME
   ============================================ */
    @media (max-width: 992px) {
        .authority-inner {
            grid-template-columns: 1fr;
            /* Stack content */
            gap: var(--space-12);
            text-align: center;
        }

        .authority-label-wrapper {
            justify-content: center;
        }

        .authority-text {
            margin-left: auto;
            margin-right: auto;
        }

        .authority-actions {
            justify-content: center;
        }

        .authority-visual {
            order: -1;
            /* Image ON TOP for mobile (Standard Personal Brand Logic) */
            margin-bottom: var(--space-8);
            perspective: none;
            /* Remove 3D on mobile for cleaner look */
        }

        .premium-image-wrapper {
            max-width: 350px;
            transform: none;
            /* Flatten image */
            border-radius: 30px;
        }
    }

    @media (max-width: 992px) {
        .services-swiper .swiper-slide {
            width: 75% !important;
            margin: 0 auto !important;
        }
    }

    @media (max-width: 576px) {
        .services-swiper .swiper-slide {
            width: 88% !important;
            margin: 0 auto !important;
        }

        .service-card {
            padding: var(--space-8) var(--space-6) !important;
        }

        .service-title {
            font-size: var(--text-2xl) !important;
        }

        .service-description {
            font-size: var(--text-base) !important;
        }
    }
}

.authority-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: var(--font-extrabold);
    line-height: 1.1;
    margin-bottom: var(--space-6);
}

.authority-text {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-8);
}

.authority-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
}

.authority-stat {
    padding: var(--space-8) var(--space-4);
    background: var(--glass-bg);
    backdrop-filter: var(--blur-md);
    -webkit-backdrop-filter: var(--blur-md);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 180px;
}

.authority-stat:hover {
    background: var(--glass-bg-light);
    border-color: var(--color-primary-glow);
    transform: translateY(-4px);
}

.authority-stat-number {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--text-4xl);
    font-weight: var(--font-extrabold);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-2);
}

.authority-stat:nth-child(1) .authority-stat-number::after,
.authority-stat:nth-child(2) .authority-stat-number::after {
    content: '+';
    margin-left: 2px;
}

.authority-stat:nth-child(4) .authority-stat-number::after {
    content: '%';
    margin-left: 2px;
}

.authority-stat-label {
    font-size: var(--text-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    font-weight: var(--font-medium);
}

.authority-visual {
    position: relative;
}

.authority-image-wrapper {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}

.authority-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-primary-glow) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.authority-image {
    width: 100%;
    height: auto;
    display: block;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   SERVICES SECTION
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   SERVICES SECTION â€” Professional Majestic Slider
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.services {
    position: relative;
    overflow: hidden;
    padding: var(--space-20) 0;
}

.services-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(130, 36, 227, 0.05), transparent 70%);
    pointer-events: none;
}

.services-slider-wrapper {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
}

/* ============================================
   SERVICES SECTION REDESIGN (Responsive & Radiant)
   ============================================ */

.services-swiper {
    padding: var(--space-12) 0 var(--space-20) !important;
    overflow: visible !important;
}

/* Default (Desktop) Slide Style */
.services-swiper .swiper-slide {
    height: auto;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.5;
    transform: scale(0.9);
    filter: blur(2px);
}

.services-swiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
    filter: none;
    z-index: 10;
}

.services-swiper .swiper-slide-prev,
.services-swiper .swiper-slide-next {
    opacity: 0.7;
    transform: scale(0.95);
    filter: none;
}

/* CARD VISUALS */
.service-card {
    background: rgba(15, 15, 25, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.swiper-slide-active .service-card {
    background: linear-gradient(145deg, rgba(20, 20, 35, 0.95), rgba(10, 10, 15, 0.98));
    border-color: var(--color-primary);
    box-shadow:
        0 30px 60px -10px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(130, 36, 227, 0.2) inset;
}

/* MOBILE OVERRIDES (Fixed at bottom to override everything) */
@media (max-width: 900px) {
    .services-swiper .swiper-slide {
        width: 85% !important;
        /* Force fluid width */
        margin-right: 20px !important;
        opacity: 1 !important;
        /* Always visible */
        transform: none !important;
        /* No scaling issues */
        filter: none !important;
    }

    .services-swiper .swiper-slide-active {
        transform: none !important;
    }

    .service-card {
        padding: 30px 20px !important;
        min-height: 300px;
        /* Consistent height */
    }

    .service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .service-title {
        font-size: 1.5rem !important;
    }

    .service-description {
        font-size: 1rem !important;
        line-height: 1.6;
    }

    /* Hide nav buttons on mobile */
    .services-nav-buttons {
        display: none !important;
    }
}

/* Navigation Buttons (Desktop) */
.services-nav-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.services-nav {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.services-nav:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: scale(1.1);
}

.services-nav:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: 0 0 30px rgba(130, 36, 227, 0.5);
    transform: translateY(-5px);
}

.services-pagination {
    bottom: -10px !important;
}

.services-pagination .swiper-pagination-bullet {
    width: 40px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.1);
    opacity: 1;
    transition: all 0.4s ease;
}

.services-pagination .swiper-pagination-bullet-active {
    background: var(--color-primary);
    width: 60px;
    box-shadow: 0 0 15px rgba(130, 36, 227, 0.5);
}

.testimonial-card-premium {
    padding: var(--space-8) var(--space-6) !important;
}

.testimonial-stars {
    gap: 6px !important;
}

.testimonial-content {
    font-size: var(--text-base) !important;
    line-height: 1.6 !important;
}
}

.service-card {
    padding: var(--space-8);
}
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(130, 36, 227, 0.4);
    box-shadow: 0 20px 60px rgba(130, 36, 227, 0.2);
}

.swiper-slide-active .service-card {
    border-color: var(--color-primary);
    box-shadow: 0 0 30px rgba(130, 36, 227, 0.3);
    background: rgba(25, 25, 45, 0.9);
}

.service-card:hover {
    background: var(--glass-bg-light);
    border-color: var(--color-primary-glow);
    transform: translateY(-8px);
    box-shadow: var(--glass-glow);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-5);
}

.service-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--color-white);
}

.service-title {
    font-size: var(--text-xl);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-3);
}

.service-description {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-5);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--color-primary-light);
}

.service-link svg {
    width: 18px;
    height: 18px;
    transition: var(--transition-fast);
}

.service-link:hover svg {
    transform: translateX(4px);
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   TRANSFORMATION SECTION
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.transformation {
    position: relative;
}

.transformation-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--space-8);
    align-items: stretch;
}

.testimonial-card-premium {
    padding: var(--space-8) var(--space-6) !important;
}

.testimonial-stars {
    gap: 6px !important;
}

.testimonial-content {
    font-size: var(--text-base) !important;
    line-height: 1.6 !important;
}
}
}

.transformation-before,
.transformation-after {
    background: var(--glass-bg);
    backdrop-filter: var(--blur-md);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
}

.transformation-before {
    border-color: rgba(239, 68, 68, 0.2);
}

.transformation-after {
    border-color: var(--color-primary-glow);
    box-shadow: var(--glass-glow);
}

.transformation-label {
    display: inline-block;
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: var(--font-semibold);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    margin-bottom: var(--space-4);
}

.transformation-before .transformation-label {
    background: rgba(239, 68, 68, 0.1);
    color: #F87171;
}

.transformation-after .transformation-label {
    background: var(--color-primary-glow);
    color: var(--color-primary-light);
}

.transformation-title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-6);
}

.transformation-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.transformation-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
}

.transformation-list svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.transformation-before .transformation-list svg {
    stroke: #F87171;
}

.transformation-after .transformation-list svg {
    stroke: var(--color-primary-light);
}

.transformation-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--glass-bg-medium);
    backdrop-filter: var(--blur-md);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    align-self: center;
}

.transformation-arrow svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-primary-light);
}

.testimonial-card-premium {
    padding: var(--space-8) var(--space-6) !important;
}

.testimonial-stars {
    gap: 6px !important;
}

.testimonial-content {
    font-size: var(--text-base) !important;
    line-height: 1.6 !important;
}
}
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   TESTIMONIALS SECTION - Premium Neon
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.testimonials {
    position: relative;
    /* Dark background base */
    background: #050510;
    overflow: hidden;
    padding: var(--section-padding-y) 0;
}

/* Moving Neon Background */
/* unified */

/* unified */

@keyframes neonMove {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

/* Ensure premium feeling for card contents on this new background */
.testimonial-card-premium {
    background: rgba(20, 20, 35, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Pagination Dots Customization for Neon BG */
.testimonials-pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.3);
}

.testimonials-pagination .swiper-pagination-bullet-active {
    background: var(--color-primary);
    box-shadow: 0 0 15px var(--color-primary-glow);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
}

.testimonial-card-premium {
    padding: var(--space-8) var(--space-6) !important;
}

.testimonial-stars {
    gap: 6px !important;
}

.testimonial-content {
    font-size: var(--text-base) !important;
    line-height: 1.6 !important;
}
}
}

.testimonial-card {
    background: var(--glass-bg);
    backdrop-filter: var(--blur-md);
    -webkit-backdrop-filter: var(--blur-md);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    border-color: var(--glass-border-light);
    box-shadow: var(--glass-shadow);
}

.testimonial-content {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-6);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-bold);
    color: var(--color-white);
}

.testimonial-name {
    font-weight: var(--font-semibold);
    color: var(--text-primary);
    margin-bottom: var(--space-1);
}

.testimonial-role {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   CTA SECTION
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.cta {
    position: relative;
}

.cta-inner {
    position: relative;
    text-align: center;
    padding: var(--space-20) var(--space-8);
    background: rgba(15, 15, 25, 0.7);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-3xl);
    overflow: hidden;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 100px rgba(130, 36, 227, 0.1) inset;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle at center, rgba(130, 36, 227, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.cta-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: var(--glass-bg-light);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: var(--font-medium);
    color: var(--color-primary-light);
    margin-bottom: var(--space-6);
}

.cta-badge svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

.cta-title {
    position: relative;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: var(--space-6);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.cta-description {
    position: relative;
    font-size: var(--text-lg);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto var(--space-8);
}

.cta-buttons {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: nowrap;
    margin-bottom: var(--space-6);
}

.cta-buttons .btn {
    flex-shrink: 0;
    width: auto !important;
    min-width: 160px;
    max-width: 280px;
}

.cta-note {
    position: relative;
    font-size: var(--text-xs);
    color: var(--text-muted);
}

.cta-payment {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: var(--glass-bg-light);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    margin-top: var(--space-4);
}

.cta-payment span {
    font-size: var(--text-xs);
    color: var(--text-secondary);
}

.cta-payment-badge {
    padding: var(--space-1) var(--space-2);
    background: var(--glass-bg-medium);
    border-radius: var(--radius-sm);
    font-size: var(--text-xs);
    font-weight: var(--font-medium);
    color: var(--color-primary-light);
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   PROCESS SECTION
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

/* ============================================
   PROCESS SECTION: ZIGZAG REDESIGN
   ============================================ */

.process {
    position: relative;
    padding: var(--space-24) 0;
    overflow: hidden;
    background: radial-gradient(circle at 50% 0%, #0f0f1a 0%, #000 100%);
    /* New Deep BG */
}

/* Background Accents */
.process::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(130, 36, 227, 0.08) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.process::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(var(--color-secondary-rgb), 0.08) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.process-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
    /* Space between steps */
    padding: var(--space-12) 0;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

/* Process Header Specifics */
.process .section-header {
    margin-bottom: var(--space-20);
    position: relative;
    z-index: 2;
}

.process .section-label {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid rgba(130, 36, 227, 0.3);
    border-radius: 50px;
    background: rgba(130, 36, 227, 0.05);
    color: var(--color-primary-light);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: var(--space-6);
    box-shadow: 0 0 20px rgba(130, 36, 227, 0.1);
    backdrop-filter: blur(5px);
}

.process .section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: white;
    margin-bottom: var(--space-6);
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.process .section-description {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.7);
}

.process .section-label {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid rgba(130, 36, 227, 0.3);
    border-radius: 50px;
    background: rgba(130, 36, 227, 0.05);
    color: var(--color-primary-light);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: var(--space-6);
    box-shadow: 0 0 20px rgba(130, 36, 227, 0.1);
    backdrop-filter: blur(5px);
}

.process .section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: white;
    margin-bottom: var(--space-6);
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.process .section-description {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.7);
}

/* Central Line */
.process-grid::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: linear-gradient(180deg, transparent 0%, rgba(130, 36, 227, 0.3) 15%, rgba(130, 36, 227, 0.3) 85%, transparent 100%);
    z-index: 0;
}

.process-step {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 50%;
    /* Each step takes half width */
}

/* Alternating Layout */
.process-step:nth-child(odd) {
    align-self: flex-start;
    padding-right: 60px;
    /* Space for center line */
    text-align: right;
    flex-direction: row-reverse;
    /* Text left, Icon near center */
}

.process-step:nth-child(even) {
    align-self: flex-end;
    padding-left: 60px;
    /* Space for center line */
    text-align: left;
    flex-direction: row;
    /* Icon near center, Text right */
}

/* The Card/Content Styling */
.process-card-content {
    /* Virtual wrapper if needed, styling applied to step or contents directly */
}

.process-number-wrapper {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    /* Position anchors to center line */
}

.process-step:nth-child(odd) .process-number-wrapper {
    right: -40px;
    /* On the center line */
}

.process-step:nth-child(even) .process-number-wrapper {
    left: -40px;
    /* On the center line */
}

/* Icons/Numbers on the Center Line */
.process-number {
    display: none;
    /* Hide big number, focus on icon */
}

.process-icon {
    width: 80px;
    height: 80px;
    background: #0a0a12;
    border: 1px solid rgba(130, 36, 227, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    z-index: 2;
    transition: all 0.4s ease;
}

.process-step:hover .process-icon {
    border-color: var(--color-primary);
    box-shadow: 0 0 30px rgba(130, 36, 227, 0.4);
    transform: scale(1.1);
}

.process-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--color-primary-light);
}

/* Text Styling */
.process-content-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    width: 100%;
}

.process-step:hover .process-content-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(130, 36, 227, 0.2);
    transform: translateY(-5px);
}

.process-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.process-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   MOBILE RESPONSIVENESS for ZIGZAG
   ============================================ */
@media (max-width: 992px) {
    .process-grid::before {
        left: 30px;
        /* Move line to left */
    }

    .process-step {
        width: 100%;
        /* Full width */
        align-self: flex-start !important;
        /* Force left alignment */
        padding: 0 0 0 80px !important;
        /* Space for left line */
        text-align: left !important;
        flex-direction: column !important;
        /* Stack normally */
        align-items: flex-start !important;
        margin-bottom: 40px;
    }

    .process-step:nth-child(even),
    .process-step:nth-child(odd) {
        flex-direction: column !important;
    }

    .process-content-wrapper {
        text-align: left;
    }

    .process-number-wrapper {
        left: 0 !important;
        right: auto !important;
        transform: translateY(0);
        top: 0;
    }

    .process-step:nth-child(odd) .process-number-wrapper {
        right: auto;
        left: -10px;
        /* Align with left line */
    }

    .process-step:nth-child(even) .process-number-wrapper {
        left: -10px;
    }

    .process-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 0;
        /* Wrapper handles position */
    }

    .process-icon svg {
        width: 24px;
        height: 24px;
    }
}

.process-step:not(:last-child)::before {
    content: 'âœ¦';
    position: absolute;
    top: 45%;
    right: -32%;
    font-size: 1.8rem;
    color: white;
    text-shadow: 0 0 20px var(--color-primary), 0 0 40px var(--color-primary-light);
    z-index: 2;
    opacity: 0.9;
    animation: arrowMoveMajestic 4s infinite;
}
}

@keyframes arrowBeamMajestic {
    0% {
        transform: scaleX(0);
        transform-origin: left;
        opacity: 0;
    }

    50% {
        transform: scaleX(1);
        transform-origin: left;
        opacity: 1;
    }

    100% {
        transform: scaleX(0);
        transform-origin: right;
        opacity: 0;
    }
}

@keyframes arrowMoveMajestic {
    0% {
        transform: translateX(-30px) scale(0.6) rotate(0deg);
        opacity: 0;
    }

    50% {
        transform: translateX(0) scale(1.3) rotate(180deg);
        opacity: 1;
    }

    100% {
        transform: translateX(30px) scale(0.6) rotate(360deg);
        opacity: 0;
    }
}

.process-step {
    position: relative;
    background: rgba(25, 25, 45, 0.7);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-3xl);
    padding: var(--space-12) var(--space-8);
    text-align: center;
    transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* Staggered Zig-Zag Layout */
@media (min-width: 993px) {
    .process-step:nth-child(even) {
        transform: translateY(60px);
    }

    .process-step:nth-child(odd) {
        transform: translateY(-40px);
    }

    .process-step:nth-child(even):hover {
        transform: translateY(45px) scale(1.02);
    }

    .process-step:nth-child(odd):hover {
        transform: translateY(-55px) scale(1.02);
    }
}

.process-step:hover {
    border-color: var(--color-primary);
    background: rgba(35, 35, 60, 0.85);
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(130, 36, 227, 0.4);
}

.process-number-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    margin-bottom: var(--space-8);
}

.process-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 34px;
    height: 34px;
    background: var(--color-primary);
    border-radius: 50%;
    font-size: var(--text-xs);
    font-weight: 800;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 0 15px rgba(130, 36, 227, 0.4);
}

.process-icon {
    width: 80px;
    height: 80px;
    background: rgba(130, 36, 227, 0.1);
    border: 2px solid rgba(130, 36, 227, 0.2);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    position: relative;
}

.process-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--color-primary-light);
    filter: drop-shadow(0 0 8px rgba(130, 36, 227, 0.3));
}

.process-step:hover .process-icon {
    background: var(--color-primary-glow);
    border-color: var(--color-primary);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 30px rgba(130, 36, 227, 0.3);
}

.process-step:hover .process-icon svg {
    stroke: white;
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.5));
}

.process-title {
    font-size: var(--text-2xl);
    font-weight: 800;
    margin-bottom: var(--space-4);
    color: white;
    letter-spacing: -0.02em;
}

.process-text {
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   AUTHORITY PROFILE PLACEHOLDER
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.profile-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--glass-bg-medium) 0%, var(--glass-bg) 100%);
    border: 2px solid var(--glass-border);
}

.profile-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
}

.profile-icon svg {
    width: 80px;
    height: 80px;
    stroke: var(--color-primary-light);
    opacity: 0.6;
}

.profile-icon span {
    font-size: var(--text-3xl);
    font-weight: var(--font-extrabold);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   RESPONSIVE â€” HOME PAGE
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

/* Tablet */
@media (max-width: 992px) {
    .services-swiper .swiper-slide {
        width: 75% !important;
        margin: 0 auto !important;
    }
}

@media (max-width: 576px) {
    .services-swiper .swiper-slide {
        width: 88% !important;
        margin: 0 auto !important;
    }

    .service-card {
        padding: var(--space-8) var(--space-6) !important;
    }

    .service-title {
        font-size: var(--text-2xl) !important;
    }

    .service-description {
        font-size: var(--text-base) !important;
    }
}

/* Testimonials Mobile Centering Fix - Definitive */
@media (max-width: 768px) {
    .testimonials-swiper {
        width: 100% !important;
    }

    .testimonials-swiper .swiper-slide {
        width: 90% !important;
        margin: 0 auto !important;
        display: flex !important;
        justify-content: center !important;
    }

    .testimonial-card-premium {
        width: 100% !important;
        padding: var(--space-10) var(--space-6) !important;
        margin: 0 auto !important;
        text-align: center !important;
    }

    .testimonial-stars {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 8px !important;
        margin-bottom: var(--space-6) !important;
    }

    .testimonial-content {
        font-size: var(--text-base) !important;
        line-height: 1.6 !important;
        text-align: center !important;
    }
}

.process-step {
    transform: none !important;
}

.authority-stats {
    grid-template-columns: 1fr !important;
}

.authority-stat {
    flex-direction: row !important;
    justify-content: center !important;
    gap: var(--space-3) !important;
}

.authority-stat-number {
    margin-bottom: 0 !important;
}

.loader-number {
    font-size: 3.5rem !important;
}

.loader-progress {
    width: 200px !important;
}
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   TESTIMONIALS SLIDER â€” Premium Swiper
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.testimonials-swiper {
    overflow: visible !important;
}

.testimonial-card-premium {
    background: linear-gradient(135deg, rgba(20, 20, 35, 0.9) 0%, rgba(15, 15, 25, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(130, 36, 227, 0.2);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
}

.testimonial-card-premium:hover {
    border-color: rgba(130, 36, 227, 0.4);
    box-shadow: 0 20px 60px rgba(130, 36, 227, 0.2);
    transform: translateY(-5px);
}

.testimonial-stars {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    margin-bottom: var(--space-6);
}

.testimonial-card-premium .testimonial-content {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: var(--space-8);
    position: relative;
}

.testimonial-card-premium .testimonial-content::before {
    content: '"';
    font-size: 4rem;
    color: var(--color-primary);
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: serif;
}

.testimonial-card-premium .testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
}

.testimonial-card-premium .testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-bold);
    font-size: var(--text-lg);
    color: white;
    flex-shrink: 0;
}

.testimonial-card-premium .testimonial-name {
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    color: var(--text-primary);
    margin-bottom: var(--space-1);
}

.testimonial-card-premium .testimonial-role {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

/* Testimonials Navigation */
.testimonials-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg-medium);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.testimonials-nav:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: 0 8px 24px rgba(130, 36, 227, 0.4);
}

.testimonials-prev {
    left: -70px;
}

.testimonials-next {
    right: -70px;
}

/* Testimonials Pagination */
.testimonials-pagination {
    margin-top: var(--space-6);
}

.testimonials-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--glass-border);
    opacity: 1;
    transition: all 0.3s ease;
}

.testimonials-pagination .swiper-pagination-bullet-active {
    background: var(--color-primary);
    width: 30px;
    border-radius: 5px;
}

@media (max-width: 992px) {
    .services-swiper .swiper-slide {
        width: 75% !important;
        margin: 0 auto !important;
    }
}

@media (max-width: 576px) {
    .services-swiper .swiper-slide {
        width: 88% !important;
        margin: 0 auto !important;
    }

    .service-card {
        padding: var(--space-8) var(--space-6) !important;
    }

    .service-title {
        font-size: var(--text-2xl) !important;
    }

    .service-description {
        font-size: var(--text-base) !important;
    }
}
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   PORTFOLIO PREVIEW â€” Home Page Cards
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.portfolio-preview {
    position: relative;
    background: var(--bg-primary);
}

.portfolio-card-home {
    background: linear-gradient(135deg, rgba(20, 20, 35, 0.9) 0%, rgba(15, 15, 25, 0.95) 100%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.portfolio-card-home:hover {
    border-color: rgba(130, 36, 227, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(130, 36, 227, 0.2);
}

.portfolio-card-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.portfolio-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card-home:hover .portfolio-card-image img {
    transform: scale(1.08);
}

.portfolio-card-overlay {
    position: absolute;
    top: var(--space-4);
    left: var(--space-4);
    z-index: 2;
}

.portfolio-card-category {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: var(--font-semibold);
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.portfolio-card-content {
    padding: var(--space-6);
}

.portfolio-card-content h3 {
    font-size: var(--text-xl);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-2);
    color: var(--text-primary);
}

.portfolio-card-content p {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: var(--space-4);
}

.portfolio-card-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--color-primary-light);
    transition: all 0.3s ease;
}

.portfolio-card-link svg {
    transition: transform 0.3s ease;
}

.portfolio-card-link:hover {
    color: var(--color-primary);
}

.portfolio-card-link:hover svg {
    transform: translateX(4px);
}

/* Portfolio Slider Home Swiper */
.portfolio-swiper-home .swiper-slide {
    opacity: 0.6;
    transition: opacity 0.4s ease;
}

.portfolio-swiper-home .swiper-slide-active {
    opacity: 1;
}

.portfolio-pagination-home {
    margin-top: var(--space-6);
}

.portfolio-pagination-home .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--glass-border);
    opacity: 1;
    transition: all 0.3s ease;
}

.portfolio-pagination-home .swiper-pagination-bullet-active {
    background: var(--color-primary);
    width: 30px;
    border-radius: 5px;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   PORTFOLIO 3D SLIDER â€” Home Page (Same as Portfolio)
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.portfolio-slider-section-home {
    position: relative;
    perspective: 1500px;
    padding-bottom: var(--space-16);
}

.portfolio-slider-section-home::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(130, 36, 227, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.swiper-portfolio-home {
    width: 100%;
    padding: var(--space-20) 0 var(--space-12);
    overflow: visible;
    position: relative;
    z-index: 1;
}

.swiper-portfolio-home .swiper-slide {
    width: 60%;
    max-width: 800px;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
}

.testimonial-card-premium {
    padding: var(--space-8) var(--space-6) !important;
}

.testimonial-stars {
    gap: 6px !important;
}

.testimonial-content {
    font-size: var(--text-base) !important;
    line-height: 1.6 !important;
}
}
}

/* Active slide - Prominent and sharp */
.swiper-portfolio-home .swiper-slide-active {
    transform: scale(1) translateZ(100px);
    z-index: 10;
}

.swiper-portfolio-home .swiper-slide-active .project-slide {
    box-shadow:
        0 50px 100px -20px rgba(0, 0, 0, 0.5),
        0 30px 60px -30px rgba(130, 36, 227, 0.4),
        0 0 100px rgba(130, 36, 227, 0.2);
}

/* Previous and Next slides */
.swiper-portfolio-home .swiper-slide-prev,
.swiper-portfolio-home .swiper-slide-next {
    transform: scale(0.8) translateZ(-50px);
    opacity: 0.6;
    filter: brightness(0.7);
    z-index: 5;
}

/* Non-active slides */
.swiper-portfolio-home .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-prev):not(.swiper-slide-next) {
    transform: scale(0.65) translateZ(-150px);
    opacity: 0.3;
    filter: blur(4px) brightness(0.5);
    z-index: 1;
}

/* Project Card */
.project-slide {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    background: linear-gradient(145deg, rgba(30, 30, 50, 0.9) 0%, rgba(15, 15, 25, 0.95) 100%);
    border: 1px solid rgba(130, 36, 227, 0.3);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.project-slide:hover {
    border-color: rgba(130, 36, 227, 0.6);
    transform: translateY(-10px);
}

.project-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.project-slide:hover .project-image {
    transform: scale(1.08);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(3, 0, 20, 0.95) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-10);
}

.project-category {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: var(--color-primary-glow);
    border: 1px solid var(--color-primary);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: var(--font-bold);
    color: var(--color-primary-light);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    margin-bottom: var(--space-4);
    width: fit-content;
}

.project-title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: var(--font-bold);
    color: white;
    margin-bottom: var(--space-4);
    line-height: 1.2;
}

.project-description {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
    max-width: 500px;
    margin-bottom: var(--space-6);
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-6);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border-radius: var(--radius-full);
    color: white;
    font-weight: var(--font-semibold);
    transition: all 0.3s ease;
    width: fit-content;
}

.project-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--color-primary-glow);
}

.project-link svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.project-link:hover svg {
    transform: translateX(4px);
}

/* Slider Navigation Home */
.slider-navigation-home {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-6);
    margin-top: var(--space-8);
}

.slider-btn-home {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn-home:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
    box-shadow: 0 10px 30px var(--color-primary-glow);
}

.slider-btn-home svg {
    width: 24px;
    height: 24px;
}

.swiper-pagination-portfolio-home {
    position: relative !important;
    bottom: 0 !important;
    display: flex;
    justify-content: center;
    gap: var(--space-2);
}

.swiper-pagination-portfolio-home .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--glass-border);
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-portfolio-home .swiper-pagination-bullet-active {
    width: 36px;
    border-radius: var(--radius-full);
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
}

.testimonial-card-premium {
    padding: var(--space-8) var(--space-6) !important;
}

.testimonial-stars {
    gap: 6px !important;
}

.testimonial-content {
    font-size: var(--text-base) !important;
    line-height: 1.6 !important;
}
}

.project-description {
    display: none;
}

.slider-btn-home {
    width: 44px;
    height: 44px;
}
}

/* --- TIGHT FLEX TESTIMONIALS --- */
.testimonials .container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0 !important;
    padding-top: 0 !important;
}

#testimonials .section-header {
    margin-bottom: var(--space-6) !important;
}

.testimonials-slider-wrapper {
    margin-top: 0 !important;
    width: 100% !important;
    padding: 0 !important;
}

/* ============================================
   TESTIMONIALS REDESIGN — Premium Mesh Gradient
   ============================================ */

.testimonials-premium-bg {
    position: relative;
    background: #030305;
    /* Deep rich black base */
    overflow: hidden;
    padding: var(--space-24) 0;
}

/* Premium Mesh Gradient Background */
.testimonials-premium-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 15% 50%, rgba(130, 36, 227, 0.08) 0%, transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(139, 92, 246, 0.08) 0%, transparent 25%),
        radial-gradient(circle at 50% 80%, rgba(20, 184, 166, 0.05) 0%, transparent 40%);
    z-index: 0;
    pointer-events: none;
}

/* Moving Grid Overlay */
.testimonials-premium-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
    z-index: 0;
    opacity: 0.6;
}

/* Center Glow Orb */
.testimonials-glow-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(130, 36, 227, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
    animation: pulseGlow 8s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    0% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(0.8);
    }

    100% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Updated Card Styles for "Comfortable" Look */
.testimonial-card-premium {
    background: rgba(15, 15, 20, 0.6) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 24px !important;
    /* Smoother corners */
    padding: var(--space-12) var(--space-8) !important;
    /* More breathing room */
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.02) inset !important;
    margin: 20px 0;
    /* Vertical spacing */
    transition: all 0.4s ease !important;
}

.testimonial-card-premium:hover {
    transform: translateY(-5px);
    background: rgba(20, 20, 30, 0.8) !important;
    border-color: rgba(130, 36, 227, 0.3) !important;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(130, 36, 227, 0.1) !important;
}

/* Refined Typography */
.testimonial-content {
    font-size: 1.125rem !important;
    /* 18px */
    line-height: 1.8 !important;
    color: rgba(255, 255, 255, 0.85) !important;
    /* Brighter text */
    font-weight: 400 !important;
    margin-bottom: var(--space-8) !important;
    font-style: italic;
}

.testimonial-name {
    font-size: 1.25rem !important;
    /* 20px */
    font-weight: 700 !important;
    color: white !important;
    letter-spacing: -0.01em !important;
}

.testimonial-role {
    font-size: 0.95rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
    font-weight: 500 !important;
}

/* Enhanced Stars */
.testimonial-stars svg {
    fill: #FBBF24 !important;
    /* Amber-400 */
    filter: drop-shadow(0 0 4px rgba(251, 191, 36, 0.4));
}

/* Top Gradient Line */
.testimonial-card-premium::before {
    background: linear-gradient(90deg, transparent, var(--color-primary), var(--color-secondary), transparent) !important;
    height: 2px !important;
    opacity: 0.7;
}

/* ============================================
   TESTIMONIALS SLIDER OVERHAUL — "RADIANT"
   ============================================ */

.testimonials .container {
    max-width: 100% !important;
    /* Allow full width bleeding */
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    /* Force centering of children */
}

.testimonials-slider-wrapper {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
}

.testimonials-swiper {
    padding-top: 50px !important;
    padding-bottom: 80px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    overflow: visible !important;
    /* Allow glow to bleed */
}

.testimonials-swiper .swiper-slide {
    width: 850px !important;
    /* MUCH wider as requested */
    opacity: 0.4;
    /* Fade out side slides more */
    transform: scale(0.9);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    filter: none;
    /* Removed blur for safety */
}

.testimonials-swiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
    filter: none;
    z-index: 20;
}

.testimonials-swiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
    filter: blur(0) brightness(1);
    z-index: 20;
}

/* THE "RADIANT" CARD */
.testimonial-card-premium {
    background: rgba(10, 10, 15, 0.8) !important;
    /* Darker base */
    backdrop-filter: blur(30px) !important;
    border: 1px solid rgba(130, 36, 227, 0.3) !important;
    border-radius: 30px !important;
    padding: 60px 50px !important;
    /* Huge comfortable padding */
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.8),
        /* Deep shadow */
        0 0 0 1px rgba(255, 255, 255, 0.05) inset !important;
}

/* Active Glow - "Radiant" Effect */
.testimonials-swiper .swiper-slide-active .testimonial-card-premium {
    background: linear-gradient(145deg, rgba(20, 20, 35, 0.95), rgba(10, 10, 15, 0.98)) !important;
    border-color: #A855F7 !important;
    /* Purple-500 */
    box-shadow:
        0 50px 100px -20px rgba(0, 0, 0, 0.9),
        0 0 60px rgba(168, 85, 247, 0.25),
        /* Outer Glow */
        0 0 20px rgba(168, 85, 247, 0.2) inset !important;
    /* Inner Glow */
}

/* Typography Overhaul - Clear & Big */
.testimonial-content {
    font-size: 1.5rem !important;
    /* 24px */
    line-height: 1.6 !important;
    color: #ffffff !important;
    font-weight: 500 !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 40px !important;
}

.testimonial-name {
    font-size: 1.4rem !important;
    color: white !important;
}

.testimonial-role {
    font-size: 1rem !important;
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Giant Quote Icon */
.testimonial-card-premium .testimonial-content::before {
    font-size: 8rem;
    color: var(--color-primary);
    opacity: 0.15;
    /* More subtle but huge */
    top: -40px;
}

/* Navigation Arrows - Pushed Out & Glowing */
.testimonials-nav {
    width: 70px !important;
    height: 70px !important;
    background: rgba(10, 10, 20, 0.8) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
}

.testimonials-prev {
    left: 5% !important;
}

.testimonials-next {
    right: 5% !important;
}

.testimonials-nav:hover {
    background: var(--color-primary) !important;
    box-shadow:
        0 0 40px var(--color-primary-glow),
        0 0 20px var(--color-primary) !important;
    transform: translateY(-50%) scale(1.15) !important;
    border-color: white !important;
}

/* Mobile Fixes */
@media (max-width: 992px) {
    .testimonials-swiper .swiper-slide {
        width: 90% !important;
    }

    .testimonial-content {
        font-size: 1.1rem !important;
    }

    .testimonial-card-premium {
        padding: 40px 30px !important;
    }

    .testimonials-nav {
        display: none !important;
    }

    /* Hidden on mobile */
}

.testimonials-swiper .swiper-slide {
    width: 700px !important;
    /* Slightly wider for better text flow */
    opacity: 0.3;
    transform: scale(0.85);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    filter: blur(2px);
}

.testimonials-swiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
    z-index: 10;
}

.testimonials-swiper .swiper-slide-active .testimonial-card-premium {
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.6),
        0 0 50px rgba(130, 36, 227, 0.15) !important;
    border-color: rgba(130, 36, 227, 0.4) !important;
}

/* Navigation Arrows Positioning */
.testimonials-nav {
    width: 60px !important;
    height: 60px !important;
    background: rgba(25, 25, 35, 0.9) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    z-index: 50 !important;
}

.testimonials-prev {
    left: 10% !important;
    /* Move inwards from edge */
}

.testimonials-next {
    right: 10% !important;
    /* Move inwards from edge */
}

.testimonials-nav:hover {
    background: var(--color-primary) !important;
    transform: translateY(-50%) scale(1.1) !important;
    box-shadow: 0 0 30px var(--color-primary-glow) !important;
}

/* ============================================
   MOBILE RESPONSIVENESS FIXES
   ============================================ */
@media (max-width: 900px) {

    /* Fix Page Shifting/Overflow */
    .testimonials {
        overflow: hidden !important;
        /* contain the wide slider */
    }

    .testimonials .container {
        padding: 0 !important;
        width: 100% !important;
        overflow: hidden !important;
    }

    /* Restore padding for Header so text isn't edge-to-edge */
    .testimonials .section-header {
        padding: 0 20px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .testimonials-swiper {
        padding-bottom: 60px !important;
        width: 100% !important;
    }

    .testimonials-swiper .swiper-slide {
        width: 85% !important;
        /* Force fluid width on mobile */
        transform: scale(0.95) !important;
        /* Less scaling on mobile */
        opacity: 1 !important;
        /* Ensure visible */
    }

    .testimonials-swiper .swiper-slide-active {
        transform: scale(1) !important;
    }

    .testimonial-card-premium {
        padding: 40px 25px !important;
        /* Smaller padding */
        margin: 0 auto !important;
    }

    .testimonial-content {
        font-size: 1.15rem !important;
        /* Smaller text */
        margin-bottom: 24px !important;
    }

    .testimonial-card-premium .testimonial-content::before {
        font-size: 5rem !important;
        /* Smaller quote icon */
        top: -20px !important;
    }

    /* Hide arrows on mobile */
    .testimonials-nav {
        display: none !important;
    }
}

/* ============================================
   PROCESS SECTION (Redesign - Radiant Grid)
   ============================================ */
.process {
    padding: var(--space-24) 0;
    position: relative;
    background: #030305;
    /* Deepest Base */
    overflow: hidden;
}

.process-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(130, 36, 227, 0.08) 0%, transparent 70%);
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

.process .section-header {
    position: relative;
    z-index: 2;
    margin-bottom: var(--space-16);
    text-align: center;
}

.process .section-label {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid rgba(130, 36, 227, 0.4);
    background: rgba(130, 36, 227, 0.1);
    color: #b553f7;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.process .section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: white;
    font-weight: 800;
    margin-bottom: 20px;
}

.process .section-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

/* GRID LAYOUT - ZIGZAG */
.process-grid-radiant {
    display: flex;
    flex-direction: column;
    gap: 60px;
    position: relative;
    z-index: 2;
    max-width: 1000px;
    /* Narrower for zigzag flow */
    margin: 0 auto;
    padding: 40px 0;
}

/* Connecting Line (Desktop Only) */
.process-grid-radiant::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: linear-gradient(180deg, transparent 0%, rgba(130, 36, 227, 0.5) 20%, rgba(130, 36, 227, 0.5) 80%, transparent 100%);
}

.process-card-radiant {
    width: 45%;
    /* Less than half to fit on one side */
    background: rgba(20, 20, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Left align content inside card */
    text-align: left;
    position: relative;
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.process-card-radiant:hover {
    transform: translateY(-15px);
    background: rgba(25, 25, 40, 0.85);
    border-color: rgba(130, 36, 227, 0.5);
    box-shadow:
        0 30px 60px -10px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(130, 36, 227, 0.2) inset;
}

/* ODD ITEMS (1, 3) -> LEFT */
.process-card-radiant:nth-child(odd) {
    align-self: flex-start;
    margin-right: auto;
    /* Push to left */
    text-align: right;
    align-items: flex-end;
    /* Right align content inside card for left side items */
}

/* EVEN ITEMS (2, 4) -> RIGHT */
.process-card-radiant:nth-child(even) {
    align-self: flex-end;
    margin-left: auto;
    /* Push to right */
    text-align: left;
    align-items: flex-start;
}

.proc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.proc-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-primary);
    opacity: 0.2;
    line-height: 1;
    transition: all 0.4s ease;
}

.process-card-radiant:hover .proc-number {
    color: rgba(130, 36, 227, 0.15);
    transform: scale(1.1) rotate(-5deg);
}

.proc-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.process-card-radiant:hover .proc-icon {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 15px 30px rgba(130, 36, 227, 0.4);
}

.proc-icon svg {
    width: 32px;
    height: 32px;
    stroke: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.process-card-radiant:hover .proc-icon svg {
    stroke: white;
}

.proc-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.proc-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* MOBILE RESPONSIVE */
@media (max-width: 1200px) {
    .process-grid-radiant {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .process-grid-radiant {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-card-radiant {
        padding: 40px 25px;
        align-items: center;
        text-align: center;
        width: 100%;
        margin: 0;
    }

    .proc-header {
        justify-content: center;
        gap: var(--space-6);
    }

    .process .section-title {
        font-size: 2.2rem;
    }
}

/* ============================================
   SERVICES SECTION (Radiant Grid)
   ============================================ */
.services-radiant {
    position: relative;
    background: #030305;
    padding: var(--space-20) 0;
    overflow: hidden;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.service-card-radiant {
    background: rgba(15, 15, 20, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(130, 36, 227, 0.2);
    /* Visible Border */
    border-radius: 24px;
    padding: 35px 30px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* Hover Effect */
.service-card-radiant:hover {
    background: rgba(25, 25, 35, 0.8);
    border-color: var(--color-primary);
    /* Purple Border on Hover */
    transform: translateY(-8px);
    box-shadow:
        0 20px 40px -10px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(130, 36, 227, 0.15) inset;
}

.svc-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.service-card-radiant:hover .svc-icon {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 10px 20px rgba(130, 36, 227, 0.3);
}

.svc-icon svg {
    width: 28px;
    height: 28px;
    stroke: rgba(255, 255, 255, 0.8);
    transition: stroke 0.3s;
}

.service-card-radiant:hover .svc-icon svg {
    stroke: white;
}

.svc-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.svc-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
    /* Pushes button down */
}

.svc-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.svc-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s;
}

.svc-link:hover {
    color: white;
}

.svc-link:hover svg {
    transform: translateX(5px);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 Columns on Tablet */
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        display: flex;
        flex-direction: column;
        /* Vertical Stack on Mobile */
        gap: 20px;
    }

    .service-card-radiant {
        width: 100%;
        padding: 30px 20px;
    }
}

/* ============================================
   MODERN PROFILE IMAGE
   ============================================ */

.modern-profile-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modern-profile-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(3, 0, 10, 0.4) 100%);
    z-index: 1;
    pointer-events: none;
}

.modern-profile-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.modern-profile-wrapper:hover .modern-profile-image {
    transform: scale(1.03);
}

/* Responsive */
@media (max-width: 768px) {
    .modern-profile-wrapper {
        max-width: 350px;
    }
}