/* ================================================================
   hero.css  —  Lucia Associates | Hero Section ONLY
   Place in:  wwwroot/css/hero.css
   ================================================================ */

:root {
    --purple: #7B2FBE;
    --purple-light: #F3E8FF;
    --purple-mid: #9D4EDD;
    --dark: #1A0A2E;
    --text: #3D3552;
    --muted: #7A708E;
    --white: #FFFFFF;
    --bg: #FAFAFA;
}

/* ── Hero wrapper ──────────────────────────────────────────────── */
.hero-section {
    position: relative;
    min-height: 550px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /*overflow: hidden;*/
    padding: 100px 20px 100px;
}

/* ── Background image ──────────────────────────────────────────── */
.hero-bg-img {
    position: absolute;
    inset: 0;
    background: url('/websiteassets/images/homepage/hero_section/home_hero.png') center / cover no-repeat;
    z-index: 0;
}

/* ── Dark purple overlay  (matches screenshot tone) ───────────── */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgb(30 10 60 / 31%) 0%, rgb(80 30 120 / 35%) 50%, rgb(20 10 50 / 42%) 100%);
    z-index: 1;
}

/* ── Content block (sits above overlay) ───────────────────────── */
.hero-body {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 860px;
    width: 100%;
}

/* ── Small tag line ────────────────────────────────────────────── */
.hero-tag {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.55);
    color: rgba(255, 255, 255, 0.90);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 6px 20px;
    border-radius: 3px;
    margin-bottom: 22px;
    backdrop-filter: blur(4px);
}

/* ── Big bold title ────────────────────────────────────────────── */
.hero-title {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(32px, 5.5vw, 62px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.30;
    margin-bottom: 36px;
    letter-spacing: -0.5px;
    font-size: 35px;
}

/* ── Button row ────────────────────────────────────────────────── */
.hero-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Solid purple button */
.hero-btn-solid {
    background: #7b2fbe;
    color: #ffffff;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 13px 34px;
    border-radius: 5px;
    letter-spacing: 0.3px;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
    box-shadow: 0 4px 18px rgba(123, 47, 190, 0.50);
    display: inline-block;
}

    .hero-btn-solid:hover {
        background: #5c1f9a;
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(123, 47, 190, 0.65);
        text-decoration: none;
    }

/* Outline white button */
.hero-btn-outline {
    background: transparent;
    color: #ffffff;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 5px;
    border: 1.5px solid rgba(255, 255, 255, 0.75);
    letter-spacing: 0.3px;
    transition: background 0.25s, border-color 0.25s, transform 0.2s;
    display: inline-block;
}

    .hero-btn-outline:hover {
        background: rgba(255, 255, 255, 0.12);
        border-color: #ffffff;
        color: #ffffff;
        transform: translateY(-2px);
        text-decoration: none;
    }

/* ── Bottom 3 circles ──────────────────────────────────────────── */
.hero-circles {
    position: absolute;
    bottom: -30px; /* overlaps slightly into next section */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: flex-end;
    gap: 6px;
    z-index: 3;
}

.hero-circle {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.25s;
    flex-shrink: 0;
}

    .hero-circle:hover {
        transform: translateY(-5px) scale(1.06);
    }

/* Middle circle is slightly bigger (matches screenshot) */
.hero-circle--mid {
    width: 80px;
    height: 80px;
    margin-bottom: 0;
}

    .hero-circle--mid.active {
        border: 5px solid #6f42c1;
    }

.hero-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── Add breathing room to the section that follows ───────────── */
.hero-section + section {
    padding-top: 80px; /* compensates for the overhanging circles */
}

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .hero-section {
        min-height: 480px;
        padding: 80px 16px 90px;
    }

    .hero-title {
        font-size: clamp(26px, 7vw, 40px);
    }

    .hero-circles {
        bottom: -28px;
    }

    .hero-circle {
        width: 56px;
        height: 56px;
    }

    .hero-circle--mid {
        width: 68px;
        height: 68px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 420px;
        padding: 70px 14px 80px;
    }

    .hero-btns {
        flex-direction: column;
        gap: 12px;
    }

    .hero-btn-solid,
    .hero-btn-outline {
        width: 100%;
        text-align: center;
        padding: 13px 20px;
    }

    .hero-circles {
        bottom: -22px;
    }

    .hero-circle {
        width: 48px;
        height: 48px;
    }

    .hero-circle--mid {
        width: 58px;
        height: 58px;
    }
}


/* ── About SECTION ── */
.about {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* ── LEFT – image collage ── */
.collage {
    position: relative;
    height: 560px;
}

.collage-img {
    position: absolute;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(123, 47, 190, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

    .collage-img:hover {
        transform: translateY(-6px) scale(1.02);
        box-shadow: 0 32px 80px rgba(123, 47, 190, 0.25);
    }

.img-blueprint {
    width: 295px;
    height: 285px;
    top: 0;
    right: 0;
    z-index: 2;
}

.img-desk {
    width: 235px;
    height: 200px;
    top: 130px;
    left: 0;
    z-index: 1;
}

.img-sketch {
    width: 310px;
    height: 230px;
    bottom: 0;
    left: 50%;
    transform: translateX(-30%);
    z-index: 3;
    background: var(--white);
    border: 1.5px solid #E6DFF5;
}

.collage::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--purple-light) 0%, transparent 70%);
    bottom: 50px;
    left: 40px;
    z-index: 0;
}

/* ── RIGHT – content ── */
.about .content {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.about .eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--purple);
}

    .about .eyebrow::after {
        content: '';
        flex: 0 0 40px;
        height: 2px;
        background: var(--purple);
        border-radius: 2px;
    }

.about .heading {
    font-family: 'Raleway', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.18;
}

.about .description {
    font-size: 0.97rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--muted);
    max-width: 440px;
}

/* ── Checklist ── */
.about .checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

    .about .checklist li {
        display: flex;
        align-items: center;
        gap: 14px;
        font-size: 0.95rem;
        font-weight: 400;
        color: var(--text);
    }

        .about .checklist li .tick {
            flex-shrink: 0;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: var(--purple-light);
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .about .checklist li .tick svg {
                width: 12px;
                height: 12px;
            }

/* ── Stat Card ── */
.about .stat-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--white);
    border: 1px solid #EDE6F8;
    border-radius: 16px;
    padding: 18px 22px;
    box-shadow: 0 4px 24px rgba(123, 47, 190, 0.07);
    transition: box-shadow 0.3s;
}

    .about .stat-card:hover {
        box-shadow: 0 8px 36px rgba(123, 47, 190, 0.14);
    }

.about .stat-badge {
    width: 72px;
    height: 72px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--purple), var(--purple-mid));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

    .about .stat-badge .num {
        font-family: 'Raleway', serif;
        font-size: 1.6rem;
        font-weight: 800;
        line-height: 1;
    }

    .about .stat-badge .label {
        font-size: 0.6rem;
        font-weight: 500;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        opacity: 0.85;
        margin-top: 2px;
    }

.about .stat-info .title {
    font-family: 'Raleway', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.about .stat-info p {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.6;
}

/* ── CTA Row ── */
.about .cta-row {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.about .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    background: var(--purple);
    color: var(--white);
    font-size: 0.93rem;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
    box-shadow: 0 6px 24px rgba(123, 47, 190, 0.35);
}

    .about .btn-primary:hover {
        background: #6521A8;
        transform: translateY(-2px);
        box-shadow: 0 10px 32px rgba(123, 47, 190, 0.45);
    }

    .about .btn-primary svg {
        transition: transform 0.25s;
    }

    .about .btn-primary:hover svg {
        transform: translateX(4px);
    }

.about .phone {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.93rem;
    font-weight: 400;
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s;
}

    .about .phone:hover {
        color: var(--purple);
    }

.about .phone-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--purple-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .about .phone-icon svg {
        width: 16px;
        height: 16px;
    }

/* ── ANIMATIONS ── */
@keyframes aboutFadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about > * {
    animation: aboutFadeUp 0.7s ease both;
}

    .about > *:nth-child(1) {
        animation-delay: 0.05s;
    }

    .about > *:nth-child(2) {
        animation-delay: 0.18s;
    }

.about .content > * {
    animation: aboutFadeUp 0.65s ease both;
}

    .about .content > *:nth-child(1) {
        animation-delay: 0.20s;
    }

    .about .content > *:nth-child(2) {
        animation-delay: 0.28s;
    }

    .about .content > *:nth-child(3) {
        animation-delay: 0.36s;
    }

    .about .content > *:nth-child(4) {
        animation-delay: 0.44s;
    }

    .about .content > *:nth-child(5) {
        animation-delay: 0.52s;
    }

    .about .content > *:nth-child(6) {
        animation-delay: 0.60s;
    }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .about {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .collage {
        height: 400px;
    }

    .img-blueprint {
        width: 220px;
        height: 210px;
    }

    .img-desk {
        width: 180px;
        height: 155px;
    }

    .img-sketch {
        width: 240px;
        height: 180px;
    }
}

@media (max-width: 480px) {
    .collage {
        height: 320px;
    }

    .img-blueprint {
        width: 170px;
        height: 165px;
    }

    .img-desk {
        width: 140px;
        height: 120px;
    }

    .img-sketch {
        width: 190px;
        height: 150px;
    }
}

/* ── Section wrapper ───────────────────────────────────────── */
.services-section {
    padding: 80px 0 90px;
    background: #f7f7f9;
    text-align: center;
    font-family: 'Raleway', sans-serif;
}

/* ── Sub title with lines ──────────────────────────────────── */
.sub-title {
    color: #7b2fbe;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

    .sub-title::before,
    .sub-title::after {
        content: '';
        width: 44px;
        height: 2px;
        background: #7b2fbe;
        display: inline-block;
        border-radius: 2px;
    }

/* ── Main title ────────────────────────────────────────────── */
.main-title {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 50px;
    line-height: 1.15;
}

/* ── Cards layout ──────────────────────────────────────────── */
.service-cards {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: stretch;
}

/* ── Single card ───────────────────────────────────────────── */
.svc-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    width: calc(33.333% - 18px);
    min-width: 280px;
    max-width: 380px;
    text-align: left;
    display: block;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #eeecf5;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

    .svc-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 14px 40px rgba(123, 47, 190, 0.13);
        border-color: rgba(123, 47, 190, 0.2);
        color: inherit;
        text-decoration: none;
    }

/* ── Card image ────────────────────────────────────────────── */
.svc-card-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

    .svc-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.45s ease;
    }

.svc-card:hover .svc-card-img img {
    transform: scale(1.06);
}

/* ── Card body ─────────────────────────────────────────────── */
.svc-card-body {
    padding: 22px 22px 24px;
}

    /* ── Card title + arrow ────────────────────────────────────── */
    .svc-card-body h3 {
        font-family: 'Raleway', sans-serif;
        font-size: 16px;
        font-weight: 700;
        color: #1a1a2e;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
        line-height: 1.3;
    }

/* Arrow icon */
.svc-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f3eafd;
    color: #7b2fbe;
    transition: background 0.25s ease, transform 0.25s ease, color 0.25s ease;
}

.svc-card:hover .svc-arrow {
    background: #7b2fbe;
    color: #ffffff;
    transform: translateX(4px);
}

/* ── Card description ──────────────────────────────────────── */
.svc-card-body p {
    font-size: 13.5px;
    color: #666677;
    line-height: 1.7;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
}

/* ── View all button ───────────────────────────────────────── */
.svc-view-btn {
    margin-top: 44px;
}

.svc-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #7b2fbe;
    color: #ffffff;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    box-shadow: 0 6px 22px rgba(123, 47, 190, 0.38);
    letter-spacing: 0.2px;
}

    .svc-btn-primary:hover {
        background: #5c1f9a;
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 10px 32px rgba(123, 47, 190, 0.48);
        text-decoration: none;
    }

    .svc-btn-primary svg {
        transition: transform 0.25s ease;
    }

    .svc-btn-primary:hover svg {
        transform: translateX(4px);
    }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 992px) {
    .svc-card {
        width: calc(50% - 14px);
    }
}

@media (max-width: 640px) {
    .services-section {
        padding: 60px 0 70px;
    }

    .service-cards {
        flex-direction: column;
        align-items: center;
    }

    .svc-card {
        width: 100%;
        max-width: 420px;
        min-width: unset;
    }
}


/* Industrial Excellence */
/* ================================================================
   SECTION 1 — WHY US
   ================================================================ */

.whyus-sec {
    padding: 90px 0 80px;
    background: #ffffff;
}

/* ── Tag line ── */
.wu-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #7b2fbe;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

    .wu-tag::after {
        content: '';
        display: block;
        width: 36px;
        height: 2px;
        background: #7b2fbe;
        border-radius: 2px;
    }

/* ── Title ── */
.wu-title {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.2;
    margin-bottom: 16px;
}

/* ── Description ── */
.wu-desc {
    font-size: 14px;
    color: #666677;
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 460px;
}

/* ── Feature points ── */
.wu-points {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.wu-point {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

/* Icon circle */
.wu-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: #f3eafd;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s, transform 0.25s;
}

.wu-point:hover .wu-icon {
    background: #7b2fbe;
    transform: scale(1.08);
}

    .wu-point:hover .wu-icon svg {
        stroke: #ffffff;
    }

.wu-point-text h4 {
    font-family: 'Raleway', sans-serif;
    font-size: 15.5px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 5px;
}

.wu-point-text p {
    font-size: 13.5px;
    color: #666677;
    line-height: 1.7;
    margin: 0;
}

/* ── 4 stat cards grid ── */
.whyus-right {
    padding-left: 40px;
}

.wu-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.wu-stat-card {
    background: #ffffff;
    border: 1px solid #8b309173;
    border-radius: 2px;
    padding: 30px 22px 24px;
    text-align: center;
    transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
    background: url('/websiteassets/images/homepage/whyus_section/why_bg_01.svg') center / cover no-repeat;
}

    .wu-stat-card:hover {
        box-shadow: 0 10px 36px rgba(123, 47, 190, 0.12);
        transform: translateY(-4px);
        border-color: rgba(123, 47, 190, 0.25);
    }

.wu-stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.wu-stat-num {
    font-family: 'Raleway', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #7b2fbe;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.wu-stat-lbl {
    font-size: 13px;
    color: #555566;
    font-weight: 600;
    letter-spacing: 0.2px;
}

/* ================================================================
   SECTION 2 — WORK PROCESS
   ================================================================ */

.process-sec {
    padding: 90px 0 80px;
    background: #f8f7fc;
    position: relative;
    overflow: hidden;
}

/* Blueprint watermark background */
.process-bg-watermark {
    position: absolute;
    inset: 0;
    background: url('/websiteassets/images/homepage/whyus_section/home_workbg_img.png') center / cover no-repeat;
    opacity: 0.8;
    pointer-events: none;
    z-index: 0;
}

/* ── Section heading ── */
.process-head {
    text-align: center;
    margin-bottom: 52px;
}

.process-tag {
    display: inline-flex;
    align-items: center;
    gap: 0;
    margin-bottom: 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

    .process-tag span:first-child {
        color: #999aaa;
        padding-right: 8px;
        border-right: 2px solid #ddd;
        margin-right: 8px;
    }

.process-tag-active {
    background: #7b2fbe;
    color: #ffffff;
    padding: 3px 10px;
    border-radius: 3px;
    letter-spacing: 1.5px;
}

.process-title {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    color: #1a1a2e;
    margin: 0;
}

/* ── 2×2 steps grid ── */
.process-steps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.process-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 26px 22px 22px;
    border: 1px solid #ece8f5;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}

    .process-card:hover {
        box-shadow: 0 8px 28px rgba(123, 47, 190, 0.10);
        transform: translateY(-3px);
        border-color: rgba(123, 47, 190, 0.2);
    }

/* Big watermark step number inside card */
.process-step-num {
    position: absolute;
    top: 10px;
    right: 14px;
    font-family: 'Raleway', sans-serif;
    font-size: 52px;
    font-weight: 800;
    color: rgba(123, 47, 190, 0.07);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.process-card-icon {
    width: 46px;
    height: 46px;
    background: #f3eafd;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    transition: background 0.25s;
}

.process-card:hover .process-card-icon {
    background: #7b2fbe;
}

    .process-card:hover .process-card-icon svg {
        stroke: #ffffff;
    }

.process-card h4 {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 7px;
}

.process-card p {
    font-size: 13px;
    color: #666677;
    line-height: 1.7;
    margin: 0;
}

/* ── Right side images ── */
.process-imgs {
    position: relative;
    height: 420px;
    margin-left: 20px;
}

.process-img-main {
    width: 100%;
    height: 310px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.16);
}

    .process-img-main img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.4s ease;
    }

    .process-img-main:hover img {
        transform: scale(1.04);
    }

/* Smaller overlapping thumbnail */
.process-img-thumb {
    position: absolute;
    bottom: 0;
    left: 20px;
    width: 160px;
    height: 140px;
    border-radius: 10px;
    overflow: hidden;
    border: 4px solid #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

    .process-img-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.4s ease;
    }

    .process-img-thumb:hover img {
        transform: scale(1.06);
    }

/* ================================================================
   RESPONSIVE
   ================================================================ */

@media (max-width: 992px) {
    .whyus-right {
        padding-left: 0;
        margin-top: 48px;
    }

    .process-imgs {
        margin-left: 0;
        margin-top: 40px;
        height: 320px;
    }

    .process-img-main {
        height: 240px;
    }

    .process-img-thumb {
        width: 130px;
        height: 110px;
    }
}

@media (max-width: 768px) {
    .whyus-sec,
    .process-sec {
        padding: 64px 0;
    }

    .wu-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .process-steps-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
}

@media (max-width: 480px) {
    .wu-stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .process-steps-grid {
        grid-template-columns: 1fr;
    }

    .process-imgs {
        height: 260px;
    }

    .process-img-main {
        height: 200px;
    }

    .process-img-thumb {
        width: 110px;
        height: 90px;
        left: 10px;
    }
}


/* ── shared helpers ─────────────────────────────────────────── */
.sec-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #7b2fbe;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
}

    .sec-tag::before,
    .sec-tag::after {
        content: '';
        width: 36px;
        height: 2px;
        background: #7b2fbe;
        border-radius: 2px;
        display: inline-block;
    }

.sec-title {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.2;
}

/* ================================================================
   SECTION 1 — OUR PROJECTS
   ================================================================ */
.projects-sec {
    padding: 70px 0 80px;
    background: #ffffff;
}


.projects-grid-home {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.proj-card-home {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 260px;
    display: block;
    cursor: pointer;
}

    .proj-card-home img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .5s ease;
    }

    .proj-card-home:hover img {
        transform: scale(1.07);
    }

.proj-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20,5,40,.85) 0%, rgba(20,5,40,.1) 60%, transparent 100%);
    transition: background .3s;
}

.proj-card-home:hover .proj-overlay {
    background: linear-gradient(to top, rgba(123,47,190,.9) 0%, rgba(123,47,190,.3) 60%, transparent 100%);
}

.proj-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 22px;
    transform: translateY(10px);
    transition: transform .3s;
}

.proj-card-home:hover .proj-info {
    transform: translateY(0);
}

.proj-cat {
    display: inline-block;
    background: rgba(255,255,255,.2);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 8px;
    backdrop-filter: blur(4px);
}

.proj-info h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.projects-cta {
    text-align: center;
    margin-top: 36px;
}

/* CTA button */
.proj-cta {
    text-align: center;
    margin-top: 40px;
}

.proj-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #7b2fbe;
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 13px 30px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
    box-shadow: 0 6px 22px rgba(123,47,190,0.35);
}

    .proj-btn:hover {
        background: #5c1f9a;
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(123,47,190,0.45);
        text-decoration: none;
    }

    .proj-btn svg {
        transition: transform 0.25s;
    }

    .proj-btn:hover svg {
        transform: translateX(4px);
    }

/* ================================================================
   SECTION 2 — CLIENT LOGOS
   ================================================================ */
.clients-sec {
    padding: 52px 0 56px;
    background: #ffffff;
    border-top: 1px solid #f0edf8;
    border-bottom: 1px solid #f0edf8;
    overflow: hidden;
}

.clients-track-outer {
    width: 100%;
    overflow: hidden;
    position: relative;
}

    /* fade edges */
    .clients-track-outer::before,
    .clients-track-outer::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 80px;
        z-index: 2;
        pointer-events: none;
    }

    .clients-track-outer::before {
        left: 0;
        background: linear-gradient(to right, #fff, transparent);
    }

    .clients-track-outer::after {
        right: 0;
        background: linear-gradient(to left, #fff, transparent);
    }

.clients-row {
    overflow: hidden;
}

.clients-track {
    display: flex;
    gap: 20px;
    width: max-content;
    align-items: center;
}

/* left-to-right */
.clients-track--ltr {
    animation: scroll-ltr 26s linear infinite;
}

/* right-to-left */
.clients-track--rtl {
    animation: scroll-rtl 26s linear infinite;
}

.clients-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-ltr {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes scroll-rtl {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

.cl-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    padding: 8px 20px;
    border: 1px solid #ece8f5;
    border-radius: 8px;
    background: #faf8fe;
    flex-shrink: 0;
    opacity: 0.7;
    transition: opacity 0.25s, border-color 0.25s, box-shadow 0.25s;
}

    .cl-logo:hover {
        opacity: 1;
        border-color: rgba(123,47,190,0.35);
        box-shadow: 0 4px 16px rgba(123,47,190,0.1);
    }

    .cl-logo img {
        height: 32px;
        width: auto;
        object-fit: contain;
        filter: grayscale(1);
        transition: filter 0.25s;
    }

    .cl-logo:hover img {
        filter: grayscale(0);
    }

.cl-text {
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #7b2fbe;
    min-width: 90px;
    white-space: nowrap;
}

/* ================================================================
   SECTION 3 — TESTIMONIALS
   ================================================================ */
.testi-sec {
    padding: 80px 0 90px;
    background: #f7f7f9;
}

/* slider wrapper */
.testi-slider-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
}

/* viewport clips overflow */
.testi-viewport {
    overflow: hidden;
    flex: 1;
}

/* track slides horizontally */
.testi-track {
    display: flex;
    gap: 0px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── single testimonial card ── */
.testi-card {
    flex: 0 0 calc(50% - 10px); /* 2 visible on desktop */
    border-radius: 0px;
    padding: 30px 45px;
    box-sizing: border-box;
    transition: transform 0.3s, box-shadow 0.3s;
}

    .testi-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 36px rgba(0,0,0,0.10);
    }

/* white variant */
.testi-card--white {
    background: #ffffff;
    border: 1px solid #ece8f5;
}

/* purple variant */
.testi-card--purple {
    background: #e9d5f7;
    border: 1px solid #d4b0f0;
}

/* author row */
.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.testi-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7b2fbe, #5c1f9a);
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2.5px solid rgba(255,255,255,0.6);
}

.testi-author strong {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.2;
}

.testi-author span {
    font-size: 12.5px;
    color: #888899;
    font-weight: 500;
}

/* quote text */
.testi-text {
    font-size: 14px;
    color: #444455;
    line-height: 1.8;
    margin-bottom: 18px;
    font-style: italic;
}

.testi-card--purple .testi-text {
    color: #3a1a5e;
}

/* stars */
.testi-stars {
    color: #f59e0b;
    font-size: 16px;
    letter-spacing: 2px;
}

.testi-card--purple .testi-stars {
    color: #7b2fbe;
}

/* ── arrows ── */
.testi-arrow {
    width: 40px;
    height: 40px;
    border-radius: 8%;
    border: 1.5px solid #ddd;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #555;
    flex-shrink: 0;
    transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.2s;
    position: absolute;
    left: 47%;
    z-index: 2;
}

    .testi-arrow:hover {
        background: #7b2fbe;
        border-color: #7b2fbe;
        color: #fff;
        transform: scale(1.08);
    }

.testi-arrow--prev {
    left: 47%;
    top: 30%;
}

.testi-arrow--next {
    bottom: 30%;
}
/* ── dots ── */
.testi-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.testi-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d4c4e8;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    padding: 0;
}

    .testi-dot.active {
        background: #7b2fbe;
        transform: scale(1.25);
    }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 992px) {

    .projects-grid-home {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .testi-card {
        flex: 0 0 100%; /* 1 visible on mobile */
    }

    .testi-arrow {
        display: none;
    }
}

@media (max-width: 480px) {
    .testi-sec {
        padding: 56px 0 60px;
    }

    .projects-grid-home {
        grid-template-columns: 1fr;
    }
}
