/* ══════════════════════════════
   VARIABLES — SCREENSHOT MATCH
   TW Prime Brand Colors
   ══════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --web-purple: #8b5cf6;
    --web-purple-dark: #7c3aed;
    --web-purple-soft: #f5f3ff;
    --web-teal: #14b8a6;
    --web-dark: #0f172a;
    --web-bg: #fcfcfd;
    --web-grid: rgba(15, 23, 42, 0.04);
    --web-border: #eef2f6;
    --web-shadow: 0 40px 100px -20px rgba(15, 23, 42, 0.08);
    --web-mid: #1e293b;
    --web-muted: #000;
    --ws-card-radius: 22px;
    --orange: #f97316;

    --bg: #f0f0f7;
    --fq-card: rgba(255, 255, 255, 0.055);
    --fq-card-border: rgba(255, 255, 255, 0.10);
    --fq-text: rgba(255, 255, 255, 0.88);
    --fq-muted: rgba(255, 255, 255, 0.52);
    --fq-line: rgba(255, 255, 255, 0.07)
}


/* ══════════════════════════════
   BASE HERO & BACKGROUND
   ══════════════════════════════ */


/* ══════════════════════════════
   HERO SECTIONS (FULL WIDTH)
   ══════════════════════════════ */
.web-hero {
    position: relative;
    padding: 40px;
    /* background: var(--web-bg); */
    overflow: hidden;
    background-image: url('https://html.kodesolution.com/2023/amiso-html/images/main-slider/bg-pattern-2.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

}

/* Status Chip */
.web-hero__status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: var(--web-purple-soft);
    border-radius: 100px;
    margin-bottom: 32px;
}

.web-hero__status-pulse {
    width: 6px;
    height: 6px;
    background: var(--web-purple);
    border-radius: 50%;
    position: relative;
}

.web-hero__status-pulse::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: var(--web-purple);
    opacity: 0.4;
    animation: webPulse 2s infinite;
}

.web-hero__status-text {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--web-purple);
}

/* Headline recreated exactly */
.web-hero__headline {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: clamp(48px, 6.5vw, 60px);
    line-height: 1;
    color: var(--web-dark);
    margin: 0;
}

.web-h-row {
    display: block;
}

.web-h-outline {
    background: linear-gradient(135deg, var(--web-purple), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff;
    /* Hollow center (matching website background) */
    background-clip: text;
    -webkit-text-stroke: 1.5px transparent;
    /* Makes the stroke follow the gradient background */
    font-weight: 800;
    /* Matching the bold design in the screenshot */
}

.web-h-purple {
    background: linear-gradient(135deg, var(--web-purple), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── 2. GALLERY ── */
.web-hero__gallery {
    position: relative;
    z-index: 10;
}

.web-gallery__item {
    aspect-ratio: 16/9;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--web-border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
    height: 100%;
}

.web-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(.19, 1, .22, 1);
}

.web-gallery__item:hover img {
    transform: scale(1.08);
}

/* ── 3. CONTENT ── */
.web-hero__content {
    position: relative;
    z-index: 10;
}

.web-hero__sub-section {

    text-align: center;
}

.web-sub-num {
    font-size: 14px;
    font-weight: 600;
    color: var(--web-dark);
    margin-top: 6px;
    white-space: nowrap;
}

.web-sub-text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--web-dark);
    margin: 0;
}

.web-hero__actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.web-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.web-btn--primary {
    background-image: linear-gradient(266deg, #f63 -1.18%, #6d2cf9 96.14%);
    color: var(--white-color);
    background-size: 150% 100%;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.web-btn--primary:hover {
    background-position: right center;
    color: #ffffff !important;
}

.web-btn--secondary {
    background: #ffffff;
    color: var(--web-dark);
    border: 1px solid var(--web-border);
}

.web-btn--secondary:hover {
    background: var(--web-off-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}


/* ══════════════════════════════
   ABOUT SECTION — ENHANCED
   ══════════════════════════════ */
/* ══════════════════════════════════════
   ABOUT SECTION — web-about.css
   Fully scoped, no body/html targeting
   ══════════════════════════════════════ */

.web-about {
    padding: 100px 0;
    background: var(--web-bg, #fcfcfd);
    position: relative;
    overflow: hidden;
}

/* Subtle dot-grid — inside section only */
.web-about__bg-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(15, 23, 42, 0.045) 1px, transparent 1px);
    background-size: 26px 26px;
    pointer-events: none;
    z-index: 0;
}

/* Purple blob top-right */
.web-about__glow-purple {
    position: absolute;
    top: -120px;
    right: -120px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.09) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

/* Teal blob bottom-left */
.web-about__glow-teal {
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.08) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.web-about .container {
    position: relative;
    z-index: 1;
}

.web-about .row {
    align-items: center;
}

/* ══════════════════════════════════════
   LEFT — VISUAL
   ══════════════════════════════════════ */
.web-about__visual {
    position: relative;
    padding-right: 40px;
}

/* Image card */
.web-about__img-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(145deg, #ede9fe 0%, #ddd6fe 100%);
    box-shadow: 0 40px 80px -20px rgba(139, 92, 246, 0.18);
}

.web-about__img-card img {
    width: 100%;
    display: block;
    object-fit: cover;
    object-position: top center;
    transition: transform 7s ease;
    position: relative;
    z-index: 1;
}

.web-about__img-card:hover img {
    transform: scale(1.03);
}

/* Bottom gradient fade on image */
.web-about__img-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 180px;
    background: linear-gradient(to top, rgba(109, 40, 217, 0.15), transparent);
    z-index: 2;
    pointer-events: none;
}

/* ── Experience badge (bottom-left, outside card) ── */
.web-about__exp-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: #fff;
    border-radius: 18px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 20px 50px -8px rgba(139, 92, 246, 0.22);
    border: 1px solid rgba(139, 92, 246, 0.1);
    z-index: 10;
    animation: wa-float 5s ease-in-out infinite;
}

@keyframes wa-float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.web-about__exp-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--web-purple, #8b5cf6), var(--web-purple-dark, #7c3aed));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
}

.web-about__exp-num {
    display: block;
    font-family: 'Syne', sans-serif;
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--web-purple, #8b5cf6), var(--web-teal, #14b8a6));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.web-about__exp-txt {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #000;
    line-height: 1.3;
    margin-top: 2px;
}

/* ── Projects pill (top-right of card) ── */
.web-about__pill {
    position: absolute;
    top: 20px;
    right: -16px;
    background: #fff;
    border: 1px solid rgba(139, 92, 246, 0.12);
    border-radius: 14px;
    padding: 14px 18px;
    text-align: center;
    box-shadow: 0 16px 40px -8px rgba(15, 23, 42, 0.1);
    z-index: 10;
    animation: wa-float 5s ease-in-out 2.5s infinite;
    min-width: 110px;
}

.web-about__pill-num {
    font-family: 'Syne', sans-serif;
    font-size: 26px;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--web-purple, #8b5cf6), var(--web-teal, #14b8a6));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.web-about__pill-lbl {
    font-family: 'Outfit', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000;
    margin-top: 4px;
    display: block;
}

/* ══════════════════════════════════════
   RIGHT — CONTENT
   ══════════════════════════════════════ */
.web-about__content {
    padding-left: 50px;
}

/* Eyebrow */
.web-about__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.web-about__eyebrow-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--web-purple, #8b5cf6), var(--web-teal, #14b8a6));
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.web-about__eyebrow-dot::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.2);
    animation: wa-pulse 2.2s ease-in-out infinite;
}

@keyframes wa-pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.web-about__eyebrow-text {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--web-purple, #8b5cf6);
}

/* Headline */
.web-about__headline {
    font-family: var(--heading-font);
    font-size: 52px;
    font-weight: 800;
    color: var(--web-dark, #0f172a);
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin-bottom: 12px;
}

.web-about__headline-accent {
    font-family: var(--heading-font);
    font-size: 52px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -1.5px;
    background: linear-gradient(135deg, var(--web-purple), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 10px;
}

/* Gradient divider bar */
.web-about__divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--web-purple, #8b5cf6), var(--web-teal, #14b8a6));
    border-radius: 2px;
    margin-bottom: 10px;
}

/* Description */
.web-about__desc {
    font-size: 16px;
    line-height: 1.8;
    color: #000;
    margin-bottom: 10px;
    max-width: 480px;
}

/* ── Feature items ── */
.web-about__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 36px;
}

.web-about__feat {
    background: #fff;
    border: 1px solid var(--web-border, #eef2f6);
    border-radius: 16px;
    padding: 22px 18px;
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.web-about__feat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--web-purple, #8b5cf6), var(--web-teal, #14b8a6));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
    border-radius: 2px 2px 0 0;
}

.web-about__feat:hover {
    border-color: rgba(139, 92, 246, 0.18);
    box-shadow: 0 16px 40px -10px rgba(139, 92, 246, 0.14);
    transform: translateY(-5px);
}

.web-about__feat:hover::before {
    transform: scaleX(1);
}

.web-about__feat-icon {
    width: 46px;
    height: 46px;
    background: var(--web-purple-soft, #f5f3ff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--web-purple, #8b5cf6);
    margin-bottom: 14px;
    transition: all 0.3s ease;
}

.web-about__feat:hover .web-about__feat-icon {
    background: linear-gradient(135deg, var(--web-purple, #8b5cf6), var(--web-purple-dark, #7c3aed));
    color: #fff;
    transform: rotate(8deg) scale(1.08);
}

.web-about__feat-title {
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--web-dark, #0f172a);
    margin-bottom: 6px;
}

.web-about__feat-text {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    color: #000;
    line-height: 1.6;
    margin: 0;
}

/* ── Checklist ── */
.web-about__checks {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.web-about__checks li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #000;
}

.web-about__check-icon {
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, var(--web-purple, #8b5cf6), var(--web-teal, #14b8a6));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    font-size: 9px;
}

/* ── CTA Buttons ── */
.web-about__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.web-about__btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 38px;
    background: var(--web-dark, #0f172a);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.3px;
    border-radius: 100px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.38s ease;
    box-shadow: 0 16px 40px -8px rgba(15, 23, 42, 0.22);
}

.web-about__btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(266deg, #f63 -1.18%, #6d2cf9 96.14%);
    opacity: 0;
    transition: opacity 0.38s ease;
}

.web-about__btn-primary span,
.web-about__btn-primary i {
    position: relative;
    z-index: 1;
}

.web-about__btn-primary:hover {
    transform: translateY(-3px);
    color: #fff;
}

.web-about__btn-primary:hover::before {
    opacity: 1;
}

.web-about__btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 30px;
    background: transparent;
    color: var(--web-dark, #0f172a);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 14px;
    border-radius: 100px;
    text-decoration: none;
    border: 1.5px solid var(--web-border, #eef2f6);
    transition: all 0.3s ease;
}

.web-about__btn-ghost:hover {
    border-color: var(--web-purple, #8b5cf6);
    color: var(--web-purple, #8b5cf6);
    background: var(--web-purple-soft, #f5f3ff);
    transform: translateY(-3px);
}

.web-about__btn-ghost i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.web-about__btn-ghost:hover i {
    transform: translateX(4px);
}

/* ══════════════════════════════════════
   ANIMATIONS — prefixed wa- to avoid clashes
   ══════════════════════════════════════ */
.wa-fade-left {
    opacity: 0;
    transform: translateX(-36px);
    animation: wa-fadeLeft 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.wa-fade-up {
    opacity: 0;
    transform: translateY(28px);
    animation: wa-fadeUp 0.75s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes wa-fadeLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes wa-fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wa-d1 {
    animation-delay: 0.05s;
}

.wa-d2 {
    animation-delay: 0.15s;
}

.wa-d3 {
    animation-delay: 0.25s;
}

.wa-d4 {
    animation-delay: 0.35s;
}

.wa-d5 {
    animation-delay: 0.45s;
}

.wa-d6 {
    animation-delay: 0.55s;
}

.wa-d7 {
    animation-delay: 0.65s;
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 991px) {
    .web-about {
        padding: 70px 0;
    }

    .web-about__visual {
        padding-right: 0;
        margin-bottom: 90px;
    }

    .web-about__exp-badge {
        left: 10px;
        bottom: -30px;
    }

    .web-about__pill {
        right: 10px;
    }

    .web-about__content {
        padding-left: 0;
    }
}

@media (max-width: 767px) {

    .web-about__headline,
    .web-about__headline-accent {
        font-size: 36px;
        letter-spacing: -0.5px;
    }

    .web-about__features {
        grid-template-columns: 1fr;
    }

    .web-about__pill {
        display: none;
    }

    .web-about__exp-badge {
        left: 0;
        right: 0;
        bottom: -28px;
        justify-content: center;
        border-radius: 14px;
    }

    .web-about__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .web-about__btn-primary,
    .web-about__btn-ghost {
        justify-content: center;
    }
}

/* ══════════════════════════════════════
   SERVICES CARDS
   ══════════════════════════════════════ */

.web-services {
    position: relative;
    padding: 100px 0 80px;
    background: var(--web-bg, #fcfcfd);
    overflow: hidden;
}

.web-services::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('https://img.freepik.com/free-vector/modern-elegant-geometric-hexagon-pattern-background_1017-51790.jpg?semt=ais_rp_progressive&w=740&q=80');
    background-repeat: repeat;
    background-size: auto;
    opacity: 0.18;
    pointer-events: none;
    z-index: 0;
}

.web-services .container {
    position: relative;
    z-index: 1;
}

.web-services__bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(139, 92, 246, 0.22), transparent 55%),
        radial-gradient(circle at 80% 30%, rgba(20, 184, 166, 0.22), transparent 55%);
    pointer-events: none;
    opacity: 0.85;
}

.web-services__header {
    max-width: 680px;
    margin: 0;
    position: relative;
    z-index: 1;
}

.web-services__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-family: var(--body-font);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(15, 23, 42, 0.7);
}

.web-services__eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--web-purple, #8b5cf6), var(--web-teal, #14b8a6));
    box-shadow: 0 0 0 6px rgba(139, 92, 246, 0.12);
}

.web-services__header::before {
    content: "";
    position: absolute;
    top: -40px;
    left: -40px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle at 20% 20%, rgba(139, 92, 246, 0.35), transparent 55%);
    filter: blur(40px);
    z-index: -1;
}

.web-services__header::after {
    content: "";
    position: absolute;
    bottom: -40px;
    left: -80px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle at 30% 30%, rgba(20, 184, 166, 0.35), transparent 55%);
    filter: blur(40px);
    z-index: -1;
}

.web-services__title {
    font-family: var(--heading-font);
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 18px;
    color: var(--web-dark, #0f172a);
}

.web-services__title-accent {
    display: block;
    background: linear-gradient(135deg, var(--web-purple), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.web-services__subtitle {
    font-family: var(--body-font);
    font-size: 17px;
    color: #000;
    max-width: 560px;
    margin: 0;
}

.web-services__highlights {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.web-services__highlight {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 14px 40px -26px rgba(15, 23, 42, 0.25);
    backdrop-filter: blur(14px);
    font-family: var(--body-font);
    font-size: 15px;
    /* font-weight: 600; */
    color: #000;
}

.web-services__highlight i {
    color: var(--web-purple, #8b5cf6);
}

.web-services__why {
    margin: 22px 0 0;
    padding-left: 0;
    list-style: none;
    max-width: 520px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.web-services__why li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #000;
    font-family: var(--body-font);
    font-size: 15px;
    line-height: 1.6;
}

.web-services__why-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--web-purple), var(--web-teal));
    margin-top: 6px;
}

.web-services__actions {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.web-services__actions .web-btn {
    margin-top: 0 !important;
    padding: 16px 34px;
    min-width: 200px;
    justify-content: center;
}

.web-services__note {
    margin-top: 14px;
    font-family: var(--body-font);
    font-size: 13px;
    color: #000;
}

.web-services__divider {
    width: 64px;
    height: 4px;
    margin: 18px 0px 26px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--web-purple, #8b5cf6), var(--web-teal, #14b8a6));
}

.web-services__cards {
    position: relative;
    padding: 1px 1px 0 1px;
    /* keep the divider visible */
    margin-top: 8px;
}

.web-services__cards::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: 28px;
    background-image: radial-gradient(circle, rgba(15, 23, 42, 0.06) 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: 0.65;
}

.web-service-card {
    position: relative;
    background: rgba(255, 255, 255, 0.72);
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 36px 58px -26px rgba(15, 23, 42, 0.18);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(18px);
    /* min-height: 360px; */
    height: 100%;
}

.web-service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--web-purple, #8b5cf6), var(--web-teal, #14b8a6));
}

.web-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 42px 110px -22px rgba(15, 23, 42, 0.22);
}

.web-service-card__img {
    position: relative;
    height: 120px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.web-service-card__img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.6s ease;
}

.web-service-card:hover .web-service-card__img img {
    transform: scale(1.06);
}

.web-service-card__body {
    padding: 0px 22px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.web-service-card__body h3 {
    font-family: var(--heading-font);
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 10px;
    color: var(--web-dark, #0f172a);
}

.web-service-card__body p {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.7;
    color: #000;
    margin: 0;
    flex: 1;
}

@media (max-width: 991px) {
    .web-services {
        padding: 70px 0 60px;
    }

    .web-services__header {
        margin: 0 auto;
    }

    .web-services__subtitle {
        margin: 0 auto;
    }

    .web-services__why {
        margin-left: auto;
        margin-right: auto;
    }

    .web-services__highlights {
        justify-content: center;
    }

    .web-services__actions {
        justify-content: center;
    }

    .web-services__divider {
        margin-left: auto;
        margin-right: auto;
    }

    .web-services__title {
        font-size: 44px;
    }

    .web-services__subtitle {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .web-services {
        padding: 60px 0 40px;
    }

    .web-service-card {
        min-height: 320px;
    }
}



/* ── Section wrapper ── */
.web-tech {
    padding: 110px 0;
    background: var(--web-bg, #fcfcfd);
    position: relative;
    overflow: hidden;
    font-family: 'Outfit', sans-serif;
}

/* Dot-grid texture */
.web-tech__grid-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(15, 23, 42, 0.045) 1px, transparent 1px);
    background-size: 26px 26px;
    pointer-events: none;
    z-index: 0;
}

/* Purple glow — top left */
.web-tech__glow-a {
    position: absolute;
    top: -140px;
    left: -100px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.07) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

/* Teal glow — bottom right */
.web-tech__glow-b {
    position: absolute;
    bottom: -120px;
    right: -80px;
    width: 440px;
    height: 440px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.07) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.web-tech .container {
    position: relative;
    z-index: 1;
}

/* ── Section header ── */
.web-tech__header {
    text-align: center;
    margin-bottom: 56px;
}

.web-tech__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(20, 184, 166, 0.08));
    border: 1px solid rgba(139, 92, 246, 0.18);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--web-purple, #8b5cf6);
    margin-bottom: 20px;
}

.web-tech__eyebrow-dot {
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, var(--web-purple, #8b5cf6), var(--web-teal, #14b8a6));
    border-radius: 50%;
    animation: wt-pulse 2.2s ease-in-out infinite;
}

@keyframes wt-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.6);
        opacity: 0.5;
    }
}

.web-tech__title {
    font-family: var(--heading-font);
    font-size: clamp(34px, 4.5vw, 56px);
    font-weight: 800;
    color: var(--web-dark, #0f172a);
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
}

.web-tech__title-accent {
    background: linear-gradient(135deg, var(--web-purple), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.web-tech__subtitle {
    font-size: 17px;
    color: #000;
    line-height: 1.75;
    max-width: 520px;
    margin: 0 auto;
}

/* ── Tab switcher ── */
.web-tech__tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.web-tech__tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 24px;
    border-radius: 100px;
    border: 1.5px solid var(--web-border, #eef2f6);
    background: #fff;
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 600;
    color: #000;
    cursor: pointer;
    transition: all 0.28s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
}

.web-tech__tab::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(266deg, #f63 -1.18%, #6d2cf9 96.14%);
    opacity: 0;
    transition: opacity 0.28s ease;
    border-radius: 100px;
}

.web-tech__tab span,
.web-tech__tab i {
    position: relative;
    z-index: 1;
    transition: color 0.28s ease;
}

.web-tech__tab:hover {
    border-color: rgba(139, 92, 246, 0.3);
    color: var(--web-purple, #8b5cf6);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px -6px rgba(139, 92, 246, 0.18);
}

.web-tech__tab.active {
    border-color: transparent;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px -8px rgba(139, 92, 246, 0.35);
}

.web-tech__tab.active::before {
    opacity: 1;
}

.web-tech__tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: rgba(139, 92, 246, 0.12);
    color: var(--web-purple, #8b5cf6);
    border-radius: 50%;
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    position: relative;
    z-index: 1;
    transition: all 0.28s ease;
}

.web-tech__tab.active .web-tech__tab-count {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

/* ── Panel ── */
.web-tech__panel {
    display: none;
    animation: wt-fadeIn 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.web-tech__panel.active {
    display: block;
}

@keyframes wt-fadeIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Category label strip ── */
.web-tech__cat-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.web-tech__cat-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.25), transparent);
}

.web-tech__cat-text {
    font-family: 'Syne', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--web-purple, #8b5cf6);
    white-space: nowrap;
}

/* ── Cards grid ── */
.web-tech__cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

/* ── Individual tech card ── */
.web-tech__card {
    background: #fff;
    border: 1px solid var(--web-border, #eef2f6);
    border-radius: 20px;
    padding: 28px 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    text-align: center;
}

/* Gradient top border on hover */
.web-tech__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 20px 20px 0 0;
    opacity: 0;
    transition: opacity 0.35s ease;
}

/* Glow effect */
.web-tech__card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.web-tech__card:hover {
    transform: translateY(-8px);
    border-color: transparent;
    box-shadow: 0 24px 60px -12px rgba(139, 92, 246, 0.18);
}

.web-tech__card:hover::before {
    opacity: 1;
}

.web-tech__card:hover::after {
    opacity: 1;
}

/* Per-category card color overrides */
/* Frontend — purple/violet */
.web-tech__card--frontend::before {
    background: linear-gradient(90deg, #8b5cf6, #06b6d4);
}

.web-tech__card--frontend::after {
    background: linear-gradient(160deg, rgba(139, 92, 246, 0.04) 0%, transparent 60%);
}

.web-tech__card--frontend:hover {
    box-shadow: 0 24px 60px -12px rgba(139, 92, 246, 0.2);
}

/* Backend — teal/emerald */
.web-tech__card--backend::before {
    background: linear-gradient(266deg, #f63 -1.18%, #6d2cf9 96.14%);
}

.web-tech__card--backend::after {
    background: linear-gradient(160deg, rgba(20, 184, 166, 0.05) 0%, transparent 60%);
}

.web-tech__card--backend:hover {
    box-shadow: 0 24px 60px -12px rgba(20, 184, 166, 0.2);
}

/* Database — amber/orange */
.web-tech__card--database::before {
    background: linear-gradient(90deg, #f59e0b, #ef4444);
}

.web-tech__card--database::after {
    background: linear-gradient(160deg, rgba(245, 158, 11, 0.05) 0%, transparent 60%);
}

.web-tech__card--database:hover {
    box-shadow: 0 24px 60px -12px rgba(245, 158, 11, 0.2);
}

/* ── Card icon ── */
.web-tech__card-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: transform 0.35s ease;
}

.web-tech__card:hover .web-tech__card-icon {
    transform: scale(1.1) rotate(-4deg);
}

.web-tech__card-icon--frontend {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(6, 182, 212, 0.08));
    border: 1px solid rgba(139, 92, 246, 0.15);
}

.web-tech__card-icon--backend {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), rgba(139, 92, 246, 0.08));
    border: 1px solid rgba(20, 184, 166, 0.15);
}

.web-tech__card-icon--database {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(239, 68, 68, 0.08));
    border: 1px solid rgba(245, 158, 11, 0.15);
}

/* SVG icon inside */
.web-tech__card-icon img,
.web-tech__card-icon svg {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

/* ── Card info ── */
.web-tech__card-name {
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--web-dark, #0f172a);
    position: relative;
    z-index: 1;
    transition: color 0.28s;
}

.web-tech__card-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
    position: relative;
    z-index: 1;
}

.web-tech__card-tag--frontend {
    background: rgba(139, 92, 246, 0.08);
    color: var(--web-purple, #8b5cf6);
}

.web-tech__card-tag--backend {
    background: rgba(20, 184, 166, 0.08);
    color: var(--web-teal, #14b8a6);
}

.web-tech__card-tag--database {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

/* ── "All" panel — show all 3 categories stacked ── */
.web-tech__all-category {
    margin-bottom: 48px;
}

.web-tech__all-category:last-child {
    margin-bottom: 0;
}

/* ── Progress bar on cards (optional proficiency) ── */
.web-tech__card-bar {
    width: 100%;
    height: 3px;
    background: rgba(15, 23, 42, 0.06);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.web-tech__card-bar-fill {
    height: 100%;
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.web-tech__card:hover .web-tech__card-bar-fill {
    transform: scaleX(1);
}

.web-tech__card-bar-fill--frontend {
    background: linear-gradient(266deg, #f63 -1.18%, #6d2cf9 96.14%);
}

.web-tech__card-bar-fill--backend {
    background: linear-gradient(266deg, #f63 -1.18%, #6d2cf9 96.14%);
}

.web-tech__card-bar-fill--database {
    background: linear-gradient(266deg, #f63 -1.18%, #6d2cf9 96.14%);
}

/* ── Bottom CTA strip ── */
.web-tech__cta-strip {
    margin-top: 64px;
    padding: 40px 48px;
    background: #fff;
    border: 1px solid var(--web-border, #eef2f6);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    flex-wrap: wrap;
}

.web-tech__cta-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--web-purple, #8b5cf6), var(--web-teal, #14b8a6));
    border-radius: 4px 0 0 4px;
}

.web-tech__cta-text h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--web-dark, #0f172a);
    margin-bottom: 6px;
}

.web-tech__cta-text p {
    font-size: 15px;
    color: #000;
}

.web-tech__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 36px;
    background: var(--web-dark, #0f172a);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 14px;
    border-radius: 100px;
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 16px 40px -8px rgba(15, 23, 42, 0.2);
    flex-shrink: 0;
}

.web-tech__cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(266deg, #f63 -1.18%, #6d2cf9 96.14%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.web-tech__cta-btn span,
.web-tech__cta-btn i {
    position: relative;
    z-index: 1;
}

.web-tech__cta-btn:hover {
    transform: translateY(-3px);
    color: #fff;
    box-shadow: 0 24px 50px -8px rgba(139, 92, 246, 0.38);
}

.web-tech__cta-btn:hover::before {
    opacity: 1;
}

/* ── Entry animations ── */
.wt-fade-up {
    opacity: 0;
    transform: translateY(24px);
    animation: wt-fadeUp 0.65s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes wt-fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wt-d1 {
    animation-delay: 0.05s;
}

.wt-d2 {
    animation-delay: 0.12s;
}

.wt-d3 {
    animation-delay: 0.19s;
}

.wt-d4 {
    animation-delay: 0.26s;
}

.wt-d5 {
    animation-delay: 0.33s;
}

.wt-d6 {
    animation-delay: 0.40s;
}

.wt-d7 {
    animation-delay: 0.47s;
}

.wt-d8 {
    animation-delay: 0.54s;
}

.wt-d9 {
    animation-delay: 0.61s;
}

.wt-d10 {
    animation-delay: 0.68s;
}

.wt-d11 {
    animation-delay: 0.75s;
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 991px) {
    .web-tech {
        padding: 80px 0;
    }

    .web-tech__cards {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
}

@media (max-width: 767px) {
    .web-tech {
        padding: 60px 0;
    }

    .web-tech__title {
        font-size: 34px;
        letter-spacing: -0.5px;
    }

    .web-tech__cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .web-tech__cta-strip {
        padding: 28px 24px;
        flex-direction: column;
        align-items: flex-start;
    }

    .web-tech__cta-btn {
        width: 100%;
        justify-content: center;
    }

    .web-tech__tabs {
        gap: 6px;
    }

    .web-tech__tab {
        padding: 9px 16px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .web-tech__cards {
        grid-template-columns: 1fr 1fr;
    }

    .web-tech__card {
        padding: 20px 14px 18px;
    }

    .web-tech__card-icon {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }
}



/* === Font overrides (match main site) === */
.web-services,
.web-about,
.web-tech,
.web-showcase {
    font-family: var(--body-font) !important;
}

.web-services__title,
.web-about__headline,
.web-about__headline-accent,
.web-tech__title,
.web-service-card__body h3,
.web-showcase__title {
    font-family: var(--heading-font) !important;
}

.web-tech__tab,
.web-services__subtitle,
.web-service-card__body p,
.web-about__desc {
    font-family: var(--body-font) !important;
}

section#services {
    background-image: url('../../website-development.png');

    background-repeat: repeat;
    background-size: auto;
}




/* ══════════════════════════════
           SECTION
        ══════════════════════════════ */
.hire-section {
    padding: 110px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.hire-section--webdev {
    background: #ffffff;
}

/* subtle bg gradient */
.hire-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 70% at 0% 50%, rgba(139, 92, 246, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 45% 60% at 100% 50%, rgba(20, 184, 166, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hire-section--webdev::before {
    display: none;
}

.hire-section--webdev .deco-ring {
    display: none;
}

.hire-section--webdev .hire-eyebrow {
    color: rgba(15, 23, 42, 0.65);
}

.hire-section--webdev .hire-title {
    color: #0f172a;
}

.hire-section--webdev .hire-title__accent {
    display: inline-block;
    color: var(--web-purple, #8b5cf6);
    background: linear-gradient(135deg, var(--web-purple), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hire-section--webdev .hire-title em {
    font-style: normal;
}

.hire-section--webdev .hire-right {
    padding: 18px;
    border-radius: 24px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.06);
    position: relative;
    overflow: hidden;
}

.hire-section--webdev .hire-right::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.10), rgba(20, 184, 166, 0.10));
    opacity: 0.35;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    padding: 1px;
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.hire-section--webdev .step-row {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 20px;
    padding: 18px 20px;
    box-shadow: 0 14px 40px -30px rgba(15, 23, 42, 0.28);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    align-items: center;
    gap: 18px;
}

.hire-section--webdev .icon-wrap {
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.40)),
        var(--icon-bg, #f3f0ff);
    border: 1px solid var(--icon-border, rgba(15, 23, 42, 0.10));
    box-shadow: 0 12px 26px -18px var(--icon-shadow, rgba(15, 23, 42, 0.18));
}

.hire-section--webdev .step-badge {
    width: 24px;
    height: 24px;
    font-size: 11px;
    top: -10px;
    right: -10px;
    border: 2px solid #ffffff;
    box-shadow: 0 10px 22px -14px rgba(15, 23, 42, 0.35);
}

.hire-section--webdev .step-body {
    padding-top: 0;
}

.hire-section--webdev .step-title {
    line-height: 1.15;
}

.hire-section--webdev .step-row:hover {
    transform: translateY(-2px);
    border-color: rgba(139, 92, 246, 0.18);
    box-shadow: 0 22px 60px -34px rgba(15, 23, 42, 0.32);
}

.hire-section--webdev .s1 {
    --badge-color: var(--web-purple, #8b5cf6);
    --hover-color: var(--web-purple, #8b5cf6);
    --icon-border: rgba(139, 92, 246, 0.18);
    --icon-shadow: rgba(139, 92, 246, 0.22);
}

.hire-section--webdev .s2 {
    --badge-color: var(--web-teal, #14b8a6);
    --hover-color: var(--web-teal, #14b8a6);
    --icon-border: rgba(20, 184, 166, 0.18);
    --icon-shadow: rgba(20, 184, 166, 0.22);
}

.hire-section--webdev .s3 {
    --badge-color: #f97316;
    --hover-color: #f97316;
    --icon-border: rgba(249, 115, 22, 0.18);
    --icon-shadow: rgba(249, 115, 22, 0.20);
}

.hire-section--webdev .step-row:not(:last-child) {
    margin-bottom: 14px;
}

.hire-section--webdev .step-row:not(:last-child) .icon-wrap::after {
    display: none;
}

.hire-section--webdev .step-row {
    border-bottom: none;
}

.hire-section--webdev .step-count {
    margin-top: 34px;
    padding: 14px 16px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.06);
    display: inline-flex;
}

.hire-section--webdev .sc-num {
    font-size: 44px;
    letter-spacing: -2px;
    opacity: 1;
    background: linear-gradient(135deg, var(--web-purple, #8b5cf6), var(--web-teal, #14b8a6));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hire-section--webdev .sc-text {
    max-width: 220px;
    color: rgba(15, 23, 42, 0.62);
}

.hire-section--webdev .step-title {

    color: #000;
}



.hire-section--webdev .step-title-wrap::after {
    background: linear-gradient(135deg, var(--web-purple, #8b5cf6), var(--web-teal, #14b8a6));
}

/* floating decorative ring top-left */
.deco-ring {
    position: absolute;
    top: -80px;
    left: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 1.5px dashed rgba(139, 92, 246, 0.18);
    pointer-events: none;
}

.deco-ring::after {
    content: "";
    position: absolute;
    inset: 30px;
    border-radius: 50%;
    border: 1px dashed rgba(249, 115, 22, 0.12);
}

/* ══════════════════════════════
           LAYOUT — 2 col grid
        ══════════════════════════════ */
.hire-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hire-section--webdev .hire-grid {
    align-items: center;
    gap: 70px;
}



.hire-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--web-teal);
    margin-bottom: 18px;
}

.hire-eyebrow::before {
    content: "";
    width: 22px;
    height: 2px;
    background: linear-gradient(90deg, var(--web-teal), var(--web-purple));
    border-radius: 2px;
}

.hire-title {
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 900;
    color: var(--web-dark);
    letter-spacing: -2px;
    line-height: 1.08;
    margin-bottom: 22px;
}

.hire-title em {
    font-style: italic;
    background: linear-gradient(135deg, var(--web-purple), var(--web-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hire-desc {
    font-size: 15.5px;
    line-height: 1.80;
    color: var(--web-muted);
    max-width: 420px;
    margin-bottom: 40px;
}

.hire-section--webdev .hire-desc {
    max-width: 520px;
    margin-bottom: 26px;
}

.hire-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.hire-section--webdev .hire-actions .web-btn {
    padding: 16px 30px;
}

.hire-desc strong {
    color: var(--web-dark);
    font-weight: 700;
}

/* CTA Button */
.hire-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--web-teal), #0d9488);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.35s ease;
    box-shadow: 0 10px 30px rgba(20, 184, 166, 0.35);
    letter-spacing: 0.2px;
}

.hire-cta .arr {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: transform 0.3s;
}

.hire-cta:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--web-purple), var(--web-purple-dark));
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.40);
    transform: translateY(-3px);
}

.hire-cta:hover .arr {
    transform: rotate(45deg);
}

/* left decorative number */
.step-count {
    margin-top: 48px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.sc-num {
    font-size: 64px;
    font-weight: 900;
    color: var(--web-dark);
    letter-spacing: -4px;
    line-height: 1;
    opacity: 0.06;
}

.sc-text {
    font-size: 13px;
    color: var(--web-muted);
    font-weight: 600;
    line-height: 1.5;
    max-width: 140px;
}

/* ══════════════════════════════
           RIGHT COLUMN — Steps
        ══════════════════════════════ */
.hire-right {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Step row */
.step-row {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid #f0f0f7;
    position: relative;
    transition: all 0.35s ease;
    cursor: default;
}



.step-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.step-row:not(:last-child) .icon-wrap::after {
    content: "";
    position: absolute;
    left: 31px;
    top: 64px;
    width: 2px;
    height: calc(100% - 20px);
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.2), rgba(20, 184, 166, 0.1));
    border-radius: 2px;
    z-index: 0;
}

/* icon wrap */
.icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: var(--icon-bg, #f3f0ff);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    border: 1px solid var(--icon-border, rgba(139, 92, 246, 0.12));
    z-index: 1;
}

.step-row:hover .icon-wrap {
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 12px 28px var(--icon-shadow, rgba(139, 92, 246, 0.20));
}

.icon-wrap img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    transition: filter 0.35s ease;
}

/* step number badge */
.step-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--badge-color, var(--web-purple));
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    z-index: 2;
}

/* step text */
.step-body {
    flex: 1;
    padding-top: 4px;
}

.step-title {
    font-size: 19px;
    font-weight: 800;
    color: var(--web-dark);
    letter-spacing: -0.4px;
    margin-bottom: 7px;
    line-height: 1.2;
    transition: color 0.3s;
}



.step-desc {
    font-size: 14px;
    line-height: 1.72;
    color: var(--web-muted);
}

/* accent underline on hover */
.step-title-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 7px;
}

.step-title-wrap::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: var(--hover-color, var(--web-purple));
    border-radius: 2px;
    transition: width 0.4s ease;
}

.step-row:hover .step-title-wrap::after {
    width: 100%;
}

.s1 {
    --icon-bg: #f3f0ff;
    --icon-border: rgba(139, 92, 246, 0.15);
    --icon-shadow: rgba(139, 92, 246, 0.22);
    --badge-color: var(--web-purple);
    --hover-color: var(--web-purple);
}

.s2 {
    --icon-bg: #f0fdfa;
    --icon-border: rgba(20, 184, 166, 0.15);
    --icon-shadow: rgba(20, 184, 166, 0.22);
    --badge-color: var(--web-teal);
    --hover-color: var(--web-teal);
}

.s3 {
    --icon-bg: #fff7ed;
    --icon-border: rgba(249, 115, 22, 0.15);
    --icon-shadow: rgba(249, 115, 22, 0.22);
    --badge-color: var(--orange);
    --hover-color: var(--orange);
}

.s4 {
    --icon-bg: #f0f9ff;
    --icon-border: rgba(59, 130, 246, 0.15);
    --icon-shadow: rgba(59, 130, 246, 0.22);
    --badge-color: #3b82f6;
    --hover-color: #3b82f6;
}

.s5 {
    --icon-bg: #fdf2f8;
    --icon-border: rgba(236, 72, 153, 0.15);
    --icon-shadow: rgba(236, 72, 153, 0.18);
    --badge-color: #ec4899;
    --hover-color: #ec4899;
}

.s6 {
    --icon-bg: #f8fafc;
    --icon-border: rgba(15, 23, 42, 0.10);
    --icon-shadow: rgba(15, 23, 42, 0.12);
    --badge-color: rgba(15, 23, 42, 0.78);
    --hover-color: rgba(15, 23, 42, 0.78);
}

/* ══════════════════════════════
           RESPONSIVE
        ══════════════════════════════ */
@media (max-width: 991px) {
    .hire-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .hire-desc {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .hire-section {
        padding: 70px 0;
    }

    .hire-title {
        letter-spacing: -1px;
    }

    .step-row {
        gap: 18px;
    }

    .hire-section--webdev .hire-actions .web-btn {
        width: 100%;
        justify-content: center;
    }
}


.cta-wrap.smm_expert {
    text-align: left !important;
    position: relative;
    z-index: 2;
}

/******* showcase section **********/

/* ════════════════════════════════
           SECTION
        ════════════════════════════════ */
.ws_section {
    padding: 120px 0 100px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Left blurred hero bg */
.ws_section::before {
    content: '';
    position: absolute;
    inset: 0 50% 0 0;
    background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=900&q=80') center/cover no-repeat;
    z-index: 1;
}

.ws_blur_overlay {
    position: absolute;
    inset: 0 50% 0 0;
    background: rgba(10, 12, 25, 0.52);
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
    z-index: 2;
}

/* Right dot grid */
.ws_dot_grid {
    position: absolute;
    inset: 0 0 0 50%;
    background-image: radial-gradient(circle, rgba(15, 23, 42, 0.055) 1px, transparent 1px);
    background-size: 26px 26px;
    pointer-events: none;
    z-index: 1;
}

/* Soft gradient blobs for depth */
.ws_blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.ws_blob_1 {
    width: 420px;
    height: 420px;
    right: -80px;
    top: -100px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.07) 0%, transparent 70%);
}

.ws_blob_2 {
    width: 320px;
    height: 320px;
    right: 30%;
    bottom: -80px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.07) 0%, transparent 70%);
}

.ws_section .container {
    position: relative;
    z-index: 10;
}

/* ════════════════════════════════
           HEADER — pushed right 50%
        ════════════════════════════════ */
.ws_header {
    margin-left: 50%;
    padding-left: 40px;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
}

.ws_header_top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}

.ws_eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--web-purple);
    margin-bottom: 14px;
}

.ws_eyebrow_line {
    width: 28px;
    height: 2px;
    background: linear-gradient(135deg, var(--web-purple), var(--orange));
    border-radius: 2px;
    flex-shrink: 0;
}

.ws_title {
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 800;
    color: var(--web-dark);
    letter-spacing: -2.5px;
    line-height: 1.04;
    margin: 0;
}

.ws_title span {
    background: linear-gradient(135deg, var(--web-purple), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ws_meta {
    display: flex;
    gap: 10px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.ws_pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border-radius: 100px;
    background: #fff;
    border: 1px solid var(--web-border);
    font-size: 12px;
    font-weight: 600;
    color: var(--web-dark);
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.06);
}

.ws_pill i {
    color: var(--web-purple);
    font-size: 11px;
}

/* ── Nav arrows ── */
.ws_nav {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.ws_nav_btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1.5px solid var(--web-border);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 15px;
    color: var(--web-dark);
    transition: all 0.3s ease;
    box-shadow: 0 4px 18px -4px rgba(15, 23, 42, 0.10);
    outline: none;
}

.ws_nav_btn:hover {
    background: linear-gradient(135deg, var(--web-purple), var(--web-teal));
    border-color: transparent;
    color: #fff;
    transform: scale(1.08);
    box-shadow: 0 8px 24px -6px rgba(139, 92, 246, 0.38);
}

/* ════════════════════════════════
           SWIPER — full-bleed
        ════════════════════════════════ */
.ws_swiper_wrap {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding-left: max(calc(50vw - 660px), 20px);
    overflow: visible;
}

.ws_swiper {
    overflow: visible !important;
    cursor: grab;
}

.ws_swiper:active {
    cursor: grabbing;
}

/* ════════════════════════════════
           CARD
        ════════════════════════════════ */
.ws_card {
    position: relative;
    border-radius: var(--ws-card-radius);
    overflow: hidden;
    background: #e2e8f0;
    box-shadow: 0 20px 50px -16px rgba(15, 23, 42, 0.18);
    transition: transform 0.42s cubic-bezier(0.25, 1, 0.5, 1),
        box-shadow 0.42s ease;
    cursor: pointer;
    user-select: none;
}

.ws_card:hover {
    transform: translateY(-10px) scale(1.015);
    box-shadow: 0 40px 80px -20px rgba(139, 92, 246, 0.28);
}

/* Image wrap */
.ws_img_wrap {
    position: relative;
    padding-top: 128%;
    overflow: hidden;
}

.ws_img_wrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    pointer-events: none;
}

.ws_card:hover .ws_img_wrap img {
    transform: scale(1.08);
}

/* Gradient scrim at bottom */
.ws_img_wrap::after {
    content: '';
    position: absolute;
    inset: 40% 0 0 0;
    background: linear-gradient(to top, rgba(10, 12, 25, 0.88) 0%, transparent 100%);
    pointer-events: none;
    z-index: 2;
}

/* Card footer */
.ws_card_footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 22px 22px 20px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    z-index: 5;
    transition: opacity 0.3s ease;
}

.ws_card:hover .ws_card_footer {
    opacity: 0;
}

.ws_footer_cat {
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--web-teal);
    display: block;
    margin-bottom: 5px;
}

.ws_footer_name {
    font-family: 'Syne', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.ws_go_btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

/* Hover overlay */
.ws_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(155deg,
            rgba(109, 40, 217, 0.96) 0%,
            rgba(139, 92, 246, 0.94) 40%,
            rgba(20, 184, 166, 0.90) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 28px 26px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.38s ease, visibility 0.38s ease;
    z-index: 10;
}

.ws_card:hover .ws_overlay {
    opacity: 1;
    visibility: visible;
}

.ws_overlay_inner {
    transform: translateY(18px);
    transition: transform 0.38s cubic-bezier(0.25, 1, 0.5, 1);
}

.ws_card:hover .ws_overlay_inner {
    transform: translateY(0);
}

.ws_ov_cat {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 10px;
    display: block;
}

.ws_ov_title {
    font-family: 'Syne', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 10px;
    display: block;
}

.ws_ov_desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.62;
    margin-bottom: 22px;
    display: block;
}

.ws_ov_btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(6px);
    cursor: pointer;
}

.ws_ov_btn:hover {
    background: #fff;
    color: var(--web-purple);
    border-color: #fff;
}

/* ════════════════════════════════
           PAGINATION
        ════════════════════════════════ */
.ws_pagination_wrap {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}


/* ════════════════════════════════
           POPUP MODAL
        ════════════════════════════════ */
.ws_popup_backdrop {
    position: fixed;
    inset: 0;
    background: rgba(8, 10, 20, 0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.ws_popup_backdrop.ws_open {
    opacity: 1;
    visibility: visible;
}

/* Modal box */
.ws_popup {
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    width: 100%;
    max-width: 960px;
    max-height: 90vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 50px 120px -20px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    transform: scale(0.88) translateY(30px);
    transition: transform 0.42s cubic-bezier(0.34, 1.56, 0.64, 1),
        opacity 0.4s ease;
    opacity: 0;
}

.ws_popup_backdrop.ws_open .ws_popup {
    transform: scale(1) translateY(0);
    opacity: 1;
}

/* Image side */
.ws_popup_img_side {
    position: relative;
    overflow: hidden;
}

.ws_popup_img_side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 6s ease;
}

.ws_popup_backdrop.ws_open .ws_popup_img_side img {
    transform: scale(1.06);
}

/* Color ribbon on top of image */
.ws_popup_img_ribbon {
    position: absolute;
    inset: 0;
    background: linear-gradient(155deg,
            rgba(109, 40, 217, 0.38) 0%,
            transparent 55%,
            rgba(20, 184, 166, 0.25) 100%);
    pointer-events: none;
}

/* Tag on image */
.ws_popup_img_tag {
    position: absolute;
    top: 22px;
    left: 22px;
    padding: 7px 16px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #fff;
}

/* Info side */
.ws_popup_info {
    padding: 44px 40px 40px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Close btn */
.ws_popup_close {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f1f5f9;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    color: var(--web-mid);
    transition: all 0.25s ease;
    z-index: 10;
}

.ws_popup_close:hover {
    background: var(--web-dark);
    color: #fff;
    transform: rotate(90deg);
}

.ws_popup_eyebrow {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--web-purple);
    margin-bottom: 12px;
    display: block;
}

.ws_popup_title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(22px, 2.8vw, 30px);
    font-weight: 800;
    color: var(--web-dark);
    letter-spacing: -1.2px;
    line-height: 1.15;
    margin-bottom: 16px;
}

.ws_popup_desc {
    font-size: 14.5px;
    color: var(--web-muted);
    line-height: 1.75;
    margin-bottom: 28px;
}

/* Tags row */
.ws_popup_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.ws_popup_tag {
    padding: 5px 14px;
    border-radius: 100px;
    background: #f3f0ff;
    border: 1px solid rgba(139, 92, 246, 0.15);
    font-size: 12px;
    font-weight: 600;
    color: var(--web-purple);
}

.ws_popup_tag.teal {
    background: #f0fdfa;
    border-color: rgba(20, 184, 166, 0.15);
    color: var(--web-teal);
}

/* Stats row */
.ws_popup_stats {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    padding: 18px 0;
    border-top: 1px solid var(--web-border);
    border-bottom: 1px solid var(--web-border);
}

.ws_stat_item {}

.ws_stat_num {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--web-dark);
    letter-spacing: -1px;
    line-height: 1;
    background: linear-gradient(135deg, var(--web-purple), var(--web-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ws_stat_label {
    font-size: 11.5px;
    color: var(--web-muted);
    font-weight: 600;
    margin-top: 4px;
}

/* CTA buttons */
.ws_popup_actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: auto;
}

.ws_popup_btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    outline: none;
}

.ws_popup_btn_primary {
    background: linear-gradient(135deg, var(--web-purple), var(--web-purple-dark));
    color: #fff;
    box-shadow: 0 8px 24px -6px rgba(139, 92, 246, 0.36);
}

.ws_popup_btn_primary:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 32px -8px rgba(139, 92, 246, 0.48);
}

.ws_popup_btn_secondary {
    background: #f1f5f9;
    color: var(--web-dark);
}

.ws_popup_btn_secondary:hover {
    background: var(--web-dark);
    color: #fff;
}

/* Animated number ticker */
.ws_stat_num[data-target] {
    transition: none;
}

/* ════════════════════════════════
           REVEAL ANIMATIONS
        ════════════════════════════════ */
.ws_reveal {
    opacity: 0;
    transform: translateY(28px);
    animation: ws_fadeup 0.75s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.ws_d1 {
    animation-delay: 0.10s;
}

.ws_d2 {
    animation-delay: 0.22s;
}

.ws_d3 {
    animation-delay: 0.34s;
}

@keyframes ws_fadeup {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ════════════════════════════════
           RESPONSIVE
        ════════════════════════════════ */
@media (max-width: 991px) {

    .ws_section::before,
    .ws_blur_overlay {
        right: 0;
        inset-inline-end: 0;
        width: 100%;
    }

    .ws_dot_grid {
        display: none;
    }

    .ws_header {
        margin-left: 0;
        padding-left: 0;
    }

    .ws_swiper_wrap {
        width: 100%;
        margin-left: 0;
        padding-left: 15px;
        overflow: hidden;
    }
}

@media (max-width: 767px) {
    .ws_section {
        padding: 70px 0 60px;
    }

    .ws_header_top {
        flex-direction: column;
        align-items: flex-start;
    }

    .ws_popup {
        grid-template-columns: 1fr;
        max-height: 94vh;
    }

    .ws_popup_img_side {
        height: 220px;
    }

    .ws_popup_info {
        padding: 30px 24px;
    }
}

@media (max-width: 480px) {
    .ws_popup_stats {
        gap: 16px;
    }

    .ws_popup_btn {
        padding: 12px 20px;
        font-size: 13px;
    }
}


/* ══════════════════════════════════
           SECTION
        ══════════════════════════════════ */
.testi-section {
    padding: 100px 0px;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* pattern-23 — top-left decorative shape */
.testi-section .shape-23 {
    position: absolute;
    top: 0;
    left: 0;
    width: 520px;
    height: 520px;
    background-image: url('https://expert-themes.com/html/ithub/ithub/assets/images/background/pattern-23.png');
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 0;
    opacity: 0.55;
}

/* ══════════════════════════════════
           TOP ROW — heading LEFT | lets-talk RIGHT
        ══════════════════════════════════ */
.top-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 44px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

/* eyebrow */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: var(--web-purple);
    margin-bottom: 12px;
}

.eyebrow .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--web-purple);
}

.eyebrow .dot2 {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--orange);
}

.eyebrow .dot3 {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #e5e7eb;
}

/* main title */
.main-title {
    font-size: clamp(30px, 3.5vw, 50px);
    font-weight: 900;
    color: var(--web-dark);
    letter-spacing: -2px;
    line-height: 1.08;
}

.main-title em {
    font-style: italic;
    background: linear-gradient(135deg, var(--web-purple), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* right: lets talk */
.lets-talk-col {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    padding-top: 6px;
}

/* arc + arrow svg above lets talk */
.arc-row {
    display: flex;
    justify-content: flex-end;
    margin-bottom: -4px;
}

.arc-row svg {
    width: 68px;
    opacity: 0.40;
}

/* lets talk + button inline */
.lets-talk-line {
    display: flex;
    align-items: center;
    gap: 14px;
}

.lets-talk-text {
    font-size: 24px;
    font-weight: 800;
    font-style: italic;
    color: var(--web-purple);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lets-talk-text .handshake {
    font-style: normal;
    font-size: 26px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    background: var(--web-dark);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s;
}

.contact-btn:hover {
    color: #fff;
    background: var(--web-purple);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.35);
    transform: translateY(-2px);
}

.lets-desc {
    font-size: 13px;
    line-height: 1.65;
    color: var(--web-muted);
    max-width: 320px;
    text-align: right;
}

/* ══════════════════════════════════
           MAIN CONTENT GRID
        ══════════════════════════════════ */
.testi-grid {
    display: grid;
    grid-template-columns: 270px 1fr;
    gap: 22px;
    align-items: start;
    position: relative;
    z-index: 2;
}

/* ── LEFT: Rating Card ── */
.rating-card {
    background: linear-gradient(160deg, #f3f0ff 0%, #ede9fe 100%);
    border-radius: 24px;
    padding: 40px 30px 36px;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    border: 1px solid rgba(139, 92, 246, 0.10);
}

/* pattern-20 inside rating card */
.rating-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('https://expert-themes.com/html/ithub/ithub/assets/images/background/pattern-20.png');
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 180px;
    opacity: 0.20;
    pointer-events: none;
}

.big-rating {
    font-size: 96px;
    font-weight: 900;
    color: var(--web-dark);
    letter-spacing: -6px;
    line-height: 1;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

/* stacked avatars */
.avatar-stack {
    display: flex;
    align-items: center;
    margin-bottom: 4px;
    position: relative;
    z-index: 1;
}

.av {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2.5px solid #fff;
    margin-right: -11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.av1 {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    z-index: 4;
}

.av2 {
    background: linear-gradient(135deg, #f97316, #fb923c);
    z-index: 3;
}

.av3 {
    background: linear-gradient(135deg, #14b8a6, #0d9488);
    z-index: 2;
}

.av4 {
    background: linear-gradient(135deg, #f43f5e, #e11d48);
    z-index: 1;
}

.client-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--web-dark);
    margin-top: 14px;
    position: relative;
    z-index: 1;
}

.client-sub {
    font-size: 12px;
    color: var(--web-muted);
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.rating-tagline {
    font-size: 15.5px;
    font-weight: 800;
    color: var(--web-dark);
    line-height: 1.35;
    margin-bottom: 30px;
    flex: 1;
    position: relative;
    z-index: 1;
}

.book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 30px;
    background: linear-gradient(135deg, var(--web-purple), var(--web-purple-dark));
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    width: fit-content;
    transition: all 0.35s;
    box-shadow: 0 8px 22px rgba(139, 92, 246, 0.35);
    position: relative;
    z-index: 1;
}

.book-btn:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--orange), #fb923c);
    box-shadow: 0 8px 22px rgba(249, 115, 22, 0.4);
    transform: translateY(-2px);
}

/* ── RIGHT: Cards Area ── */
.testi-right {
    background-image: url('https://expert-themes.com/html/ithub/ithub/assets/images/background/pattern-23.png');
    background-repeat: no-repeat;
    background-position: top left;
    background-size: cover;
    border-radius: 24px;
    padding: 36px 32px 40px;
    position: relative;
    overflow: hidden;
}





/* swiper */
.testi-swiper {
    overflow: visible !important;
    position: relative;
    z-index: 2;
}

.swiper-slide {
    height: auto;
}

/* ── testimonial card ── */
.testi-card {
    background: rgba(255, 255, 255, 0.70);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px 26px 26px;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.80);
    box-shadow: 0 4px 24px rgba(139, 92, 246, 0.08);
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.testi-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(139, 92, 246, 0.16);
}

/* vertical separator between cards */
.swiper-slide:not(:last-child) .testi-card::after {
    content: "";
    position: absolute;
    right: -12px;
    top: 15%;
    bottom: 15%;
    width: 1px;
    background: rgba(139, 92, 246, 0.15);
}

/* small dot indicator */
.card-indicator {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--web-purple);
    margin-bottom: 16px;
    position: relative;
}

.card-indicator::after {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 1.5px solid rgba(139, 92, 246, 0.25);
}

.card-indicator.teal {
    background: var(--web-teal);
}

.card-indicator.teal::after {
    border-color: rgba(20, 184, 166, 0.25);
}

.card-indicator.orange {
    background: var(--orange);
}

.card-indicator.orange::after {
    border-color: rgba(249, 115, 22, 0.25);
}

/* quote text */
.card-quote {
    font-size: 14px;
    line-height: 1.80;
    color: #374151;
    flex: 1;
    margin-bottom: 24px;
}

/* author row */
.card-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.c-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2.5px solid rgba(139, 92, 246, 0.2);
}

.c-avatar-fb {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 800;
    color: #fff;
}

/* right-side avatar (Smith Gordon style) */
.card-author.right-author {
    flex-direction: row-reverse;
    text-align: right;
}

.card-author.right-author .author-info {
    text-align: right;
}

.c-name {
    font-size: 15px;
    font-weight: 800;
    color: var(--web-purple);
    letter-spacing: -0.3px;
    margin-bottom: 2px;
}

.c-role {
    font-size: 12px;
    color: var(--web-muted);
}

/* rating row */
.card-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.r-num {
    font-size: 20px;
    font-weight: 900;
    color: var(--web-dark);
    letter-spacing: -0.5px;
}

.stars {
    display: flex;
    gap: 3px;
}

.st {
    width: 16px;
    height: 16px;
    background: var(--orange);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.st.dim {
    background: rgba(249, 115, 22, 0.25);
}

/* vertical divider between 2 cards */
.cards-divider {
    width: 1px;
    align-self: stretch;
    background: rgba(139, 92, 246, 0.18);
    margin: 0 2px;
    flex-shrink: 0;
    display: none;
    /* shown only on desktop */
}

/* nav buttons */
.nav-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--web-dark);
    border: none;
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.nav-btn:hover {
    background: var(--web-purple);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.40);
    transform: scale(1.08);
}

/* ══════════════════════════════════
           RESPONSIVE
        ══════════════════════════════════ */
@media (max-width: 1100px) {
    .testi-grid {
        grid-template-columns: 240px 1fr;
    }
}

@media (max-width: 900px) {
    .testi-grid {
        grid-template-columns: 1fr;
    }

    .rating-card {
        min-height: auto;
    }

    .lets-talk-col {
        display: none;
    }
}

@media (max-width: 576px) {
    .testi-section {
        padding: 70px 0 0;
    }

    .big-rating {
        font-size: 72px;
    }

    .main-title {
        letter-spacing: -1px;
    }
}

/* =========================================
   FAQ + CTA (Website Development)
   ========================================= */
/* ════════════════════════════════
           SECTION
        ════════════════════════════════ */
.fq_section {
    padding: 100px 0 110px;
    background: linear-gradient(160deg, #080d1f 0%, #0a1130 50%, #07101e 100%);
    position: relative;
    /* keep sticky working (avoid overflow hidden on ancestors) */
    overflow: visible;

}

/* ── Background mesh grid ── */
.fq_section::before {
    content: '';
    position: absolute;
    inset: 0;

    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;

    background-image: url('../../images/faq-bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    filter: saturate(1.05) contrast(1.05);
}

/* Overlay for readability */
.fq_section::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background:
        radial-gradient(circle at 20% 20%, rgba(139, 92, 246, 0.30), transparent 55%),
        radial-gradient(circle at 85% 30%, rgba(20, 184, 166, 0.26), transparent 55%),
        linear-gradient(180deg, rgba(8, 13, 31, 0.86) 0%, rgba(8, 13, 31, 0.68) 45%, rgba(8, 13, 31, 0.86) 100%);
}




.fq_section .container {
    position: relative;
    z-index: 2;
}

/* Glass parent panel (left side) */
.fq_left_panel {
    position: relative;
    border-radius: 26px;
    padding: 28px 26px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow:
        0 40px 100px -62px rgba(0, 0, 0, 0.65),
        inset 0 1px 0 rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    overflow: hidden;
}

.fq_left_panel::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.22), rgba(20, 184, 166, 0.18));
    opacity: 0.35;
    pointer-events: none;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    padding: 1px;
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* ════════════════════════════════
           LEFT — FAQ
        ════════════════════════════════ */

/* Eyebrow pill */
.fq_eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 18px;
    border-radius: 50px;
    border: 1px solid rgba(139, 92, 246, 0.28);
    background: rgba(139, 92, 246, 0.10);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--fq-text);
    margin-bottom: 22px;
}

.fq_eyebrow_icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.22);
    border: 1px solid rgba(139, 92, 246, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--web-purple);
}

.fq_title {

    font-size: clamp(36px, 5vw, 58px);
    font-weight: 900;
    line-height: 1.06;
    color: #ffffff;
    letter-spacing: -2px;
    margin-bottom: 40px;
}

.fq_title_grad {
    background: linear-gradient(135deg, var(--web-purple), var(--web-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* FAQ items */
.fq_grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fq_item {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    padding: 4px;
    transition: border-color 0.28s ease, background 0.28s ease,
        transform 0.25s ease, box-shadow 0.25s ease;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow:
        0 18px 54px -44px rgba(0, 0, 0, 0.60),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.fq_item:hover {
    transform: translateY(-2px);
    border-color: rgba(139, 92, 246, 0.22);
    box-shadow:
        0 24px 70px -50px rgba(0, 0, 0, 0.70),
        0 14px 50px -28px rgba(139, 92, 246, 0.22);
}

.fq_item.fq_active {
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.18) 0%, rgba(255, 255, 255, 0.06) 100%);
    border-color: rgba(139, 92, 246, 0.34);
    box-shadow:
        0 28px 80px -56px rgba(0, 0, 0, 0.75),
        0 18px 56px -36px rgba(139, 92, 246, 0.26);
}

.fq_question {
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
    gap: 16px;
}

.fq_question span {
    font-size: 16.5px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}

.fq_toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.90);
    font-size: 13px;
    flex-shrink: 0;
    transition: all 0.28s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.fq_item.fq_active .fq_toggle {
    background: linear-gradient(135deg, var(--web-purple), var(--web-teal));
    border-color: transparent;
    color: #fff;
    transform: rotate(45deg);
    box-shadow: 0 4px 16px -4px rgba(139, 92, 246, 0.5);
}

.fq_answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s ease, padding 0.28s ease;
    padding: 0 22px;
}

.fq_item.fq_active .fq_answer {
    max-height: 400px;
    padding-bottom: 20px;
}

.fq_answer p {
    font-size: 14.5px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.80);
    margin: 0;
}

/* footer link */
.fq_footer {
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.fq_footer p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.48);
    font-weight: 600;
}

.fq_footer_link {
    color: var(--web-purple);
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    transition: gap 0.25s ease, color 0.25s ease;
}

.fq_footer_link:hover {
    gap: 12px;
    color: #a78bfa;
}

/* ════════════════════════════════
           RIGHT — CTA Card
        ════════════════════════════════ */
.fq_cta_card {
    position: relative;
    border-radius: 26px;
    padding: 36px 30px 32px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow:
        0 40px 100px -30px rgba(0, 0, 0, 0.60),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 16px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

/* gradient border glow */
.fq_cta_card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.40), rgba(20, 184, 166, 0.30));
    opacity: 0.5;
    pointer-events: none;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    padding: 1px;
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}


/* Badge */
.fq_badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.80);
    position: relative;
    z-index: 1;
    width: fit-content;
}

.fq_badge i {
    color: #fbbf24;
    font-size: 10px;
}

.fq_cta_title {

    font-size: 24px;
    font-weight: 900;
    line-height: 1.22;
    color: #ffffff;
    position: relative;
    z-index: 1;
    margin: 0;
}

.fq_cta_sub {
    font-size: 14.5px;
    line-height: 1.75;
    color: #fff;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Points */
.fq_points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.fq_points li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14.5px;
    font-weight: 600;
    color: #fff
}

.fq_points li .fq_pt_icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(20, 184, 166, 0.14);
    border: 1px solid rgba(20, 184, 166, 0.28);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fq_points li .fq_pt_icon i {
    font-size: 11px;
    color: var(--web-teal);
}

.fq_points li:first-child .fq_pt_icon {
    background: rgba(139, 92, 246, 0.14);
    border-color: rgba(139, 92, 246, 0.28);
}

.fq_points li:first-child .fq_pt_icon i {
    color: var(--web-purple);
}

/* Buttons */
.fq_actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.fq_btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 15px 26px;
    border-radius: 50px;
    font-size: 14.5px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    outline: none;
    white-space: nowrap;
}

.fq_btn_primary {
    background: linear-gradient(135deg, var(--web-purple), var(--web-purple-d));
    color: #fff;
    box-shadow: 0 8px 28px -6px rgba(139, 92, 246, 0.55);
}

.fq_btn_primary:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 36px -6px rgba(139, 92, 246, 0.65);
}

.fq_btn_secondary {
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(6px);
}

.fq_btn_secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    transform: translateY(-2px);
}

.fq_trust {
    font-size: 12.5px;
    color: #fff;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    position: relative;
    z-index: 1;
}

/* Sticky on desktop */
@media (min-width: 992px) {
    .fq_cta_col .fq_cta_card {
        position: -webkit-sticky;
        position: sticky;
        top: 110px;
        z-index: 3;
    }
}

/* ════════════ RESPONSIVE ════════════ */
@media (max-width: 991px) {
    .fq_section {
        padding: 80px 0;
    }

    .fq_title {
        font-size: 40px;
    }

    .fq_section::before {
        background-attachment: scroll;
    }
}

@media (max-width: 767px) {
    .fq_section {
        padding: 60px 0;
    }

    .fq_title {
        font-size: 34px;
        letter-spacing: -1.5px;
    }

    .fq_btn {
        width: 100%;
        justify-content: center;
    }

    .fq_actions {
        flex-direction: column;
    }

    .fq_globe_wrap {
        display: none;
    }

    .fq_left_panel {
        padding: 22px 18px;
    }
}

@media (max-width: 480px) {
    .fq_cta_card {
        padding: 26px 20px;
    }
}

/* =========================================
   Requirement Form (Website Development)
   ========================================= */
.wd-req {
    padding: 110px 0;
    background: #ffffff;
}

.wd-req__header {
    margin-bottom: 34px;
}

.wd-req__title {
    font-family: var(--heading-font);
    font-size: clamp(32px, 3.5vw, 44px);
    font-weight: 900;
    letter-spacing: -1px;
    color: #0f172a;
    margin: 0 0 8px;
}

.wd-req__subtitle {
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 700;
    color: rgba(15, 23, 42, 0.65);
    margin: 0;
}

.wd-req__divider {
    width: 52px;
    height: 4px;
    border-radius: 999px;
    margin: 16px auto 0;
    background: linear-gradient(90deg, var(--web-purple, #8b5cf6), var(--web-teal, #14b8a6));
}

.wd-req__card {
    max-width: 980px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 26px;
    padding: 34px 34px;
    box-shadow: 0 40px 100px -70px rgba(15, 23, 42, 0.45);
}

.wd-req__label {
    display: block;
    font-family: var(--body-font);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: rgba(15, 23, 42, 0.78);
    margin-bottom: 10px;
}

.wd-req__control {
    width: 100%;
    border-radius: 14px;
    padding: 16px 16px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: #0f172a;
    font-family: var(--body-font);
    font-size: 15px;
    outline: none;
    transition: box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.wd-req__control::placeholder {
    color: rgba(15, 23, 42, 0.45);
}

.wd-req__control:focus {
    background: #ffffff;
    border-color: rgba(139, 92, 246, 0.35);
    box-shadow: 0 0 0 5px rgba(139, 92, 246, 0.14);
}

.wd-req__textarea {
    resize: vertical;
    min-height: 140px;
}

.wd-req__select {
    position: relative;
}

.wd-req__select::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 16px;
    width: 10px;
    height: 10px;
    border-right: 2px solid rgba(15, 23, 42, 0.55);
    border-bottom: 2px solid rgba(15, 23, 42, 0.55);
    transform: translateY(-70%) rotate(45deg);
    pointer-events: none;
}

.wd-req__select select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 44px;
    cursor: pointer;
}

.wd-req__submit {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: none;
    border-radius: 16px;
    padding: 18px 18px;
    background-image: linear-gradient(266deg, #ff6633 -1.18%, #6d2cf9 55%, #14b8a6 120%);
    background-size: 160% 100%;
    color: #ffffff;
    font-family: var(--heading-font);
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0.02em;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-position 0.35s ease;
    box-shadow: 0 20px 60px -35px rgba(109, 44, 249, 0.55);
}

.wd-req__submit:hover {
    transform: translateY(-2px);
    background-position: right center;
    box-shadow: 0 26px 70px -38px rgba(109, 44, 249, 0.65);
}

.wd-req__note {
    margin-top: 12px;
    text-align: center;
    font-family: var(--body-font);
    font-size: 13px;
    color: rgba(15, 23, 42, 0.55);
}

@media (max-width: 767px) {
    .wd-req {
        padding: 80px 0;
    }

    .wd-req__card {
        padding: 24px 18px;
    }
}