/* =============================================================================
   LANDING PAGE SPECIFIC STYLES (index.css)
   Contains: Core Layout, Hero Section, Statistics (Coming Soon)
   ============================================================================= */

/* =========================
   CORE LAYOUT & RESETS
   ========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* =========================
   HERO SECTION
   ========================= */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: var(--white);
    text-align: left;
    background-color: #000;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Side Gradient Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0.4) 40%,
            transparent 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 5% 0 8%;
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.7;
}

/* Hero CTA Buttons */
.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 16px 35px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

.hero-btn-primary {
    background: var(--primary-red);
    color: var(--white);
}

.hero-btn-primary:hover {
    background: #c31a20;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(228, 31, 38, 0.3);
}

.hero-btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

/* =========================
   ANIMATIONS
   ========================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   RESPONSIVE (HERO)
   ========================= */
@media screen and (max-width: 1024px) {
    .hero {
        justify-content: center;
        text-align: center;
    }

    .hero-overlay {
        background: linear-gradient(to bottom,
                rgba(0, 0, 0, 0.4) 0%,
                rgba(0, 0, 0, 0.7) 100%);
    }

    .hero-content {
        padding: 0 20px;
        margin-top: 150px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
        font-size: 0.95rem;
    }

    .hero-btns {
        justify-content: center;
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
}

/* ========================= FEATURED INSIGHTS SECTION (Senior Dev V2) ========================= */
.insights-section {
    width: 100%;
    padding: 80px 20px 100px;
    background: #0a0a0a;
    overflow: hidden;
}

.insights-section .container {
    max-width: 1300px;
    margin: auto;
}

.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 55px;
    color: var(--white);
}

.insights-section .cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.card {
    position: relative;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 720px;
    padding: 30px;
    border-radius: 0px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
    transition: background 0.5s ease, backdrop-filter 0.5s ease;
}

.card:hover::before {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    transition-delay: 0s;
    /* Start blurring immediately */
}

.card-content {
    /* 1. Layout */
    position: relative;
    z-index: 5;
    /* 4. Interaction */
    transform: translateY(80px);
    transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover .card-content {
    /* 4. Interaction */
    transform: translateY(-10px);
}

.card .tag {
    /* 1. Layout */
    display: inline-block;
    /* 2. Box Model */
    padding: 4px 12px;
    margin-bottom: 12px;
    border-radius: 4px;
    /* 3. Visuals */
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    /* 4. Interaction */
    transition: opacity 0.4s ease;
}

.card h3 {
    /* 3. Visuals */
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0;
    color: var(--white);
    /* 4. Interaction */
    transition: transform 0.6s ease;
}

/* Premium Description Reveal */
.card-description {
    /* 1. Layout */
    visibility: hidden;
    /* 2. Box Model */
    margin-top: 15px;
    /* 3. Visuals */
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    opacity: 0;
    /* 4. Interaction */
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover .card-description {
    /* 1. Layout */
    visibility: visible;
    /* 3. Visuals */
    opacity: 1;
    /* 4. Interaction */
    transform: translateY(0);
    transition-delay: 0.2s;
}

/* Premium Read More Link */
.card-link {
    /* 1. Layout */
    display: inline-flex;
    align-items: center;
    visibility: hidden;
    /* 2. Box Model */
    gap: 10px;
    margin-top: 25px;
    /* 3. Visuals */
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    /* 4. Interaction */
    transform: translateX(-20px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-link i {
    /* 4. Interaction */
    transition: transform 0.3s ease;
}

.card:hover .card-link {
    /* 1. Layout */
    visibility: visible;
    /* 3. Visuals */
    opacity: 1;
    /* 4. Interaction */
    transform: translateX(0);
    transition-delay: 0.4s;
}

.card-link:hover i {
    /* 4. Interaction */
    transform: translateX(5px);
}

/* --- Card 1 Logic --- */
.card1 {
    background: url('../images/portfolio/ideas-exhibition.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.card1 .shape1 {
    position: absolute;
    right: -50px;
    bottom: -40px;
    z-index: 0;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff9cc6, #ff4f87);
    opacity: .9;
}

.card1 .shape2 {
    position: absolute;
    top: 40px;
    left: -40px;
    z-index: 0;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

/* --- Card 2 Logic --- */
.card2 {
    /* background: linear-gradient(180deg, rgba(77, 0, 168, 0.6), rgba(179, 0, 255, 0.6)), */
    background: url('../images/portfolio/itcn-asia-generated.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.card2 .glass {
    position: absolute;
    top: 70px;
    left: 50%;
    z-index: 0;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    transform: translateX(-50%);
}

.card2 .ring {
    position: absolute;
    top: -40px;
    right: -40px;
    z-index: 0;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 25px solid rgba(255, 255, 255, 0.08);
}

/* --- Card 3 Logic --- */
.card3 {
    /* background: radial-gradient(circle at top, rgba(214, 143, 255, 0.6), rgba(112, 77, 255, 0.6), rgba(56, 36, 94, 0.6)), */
    background: url('../images/portfolio/bxss-powerhouse-generated.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.card3 .blob {
    position: absolute;
    right: -20px;
    bottom: -40px;
    z-index: 0;
    width: 260px;
    height: 260px;
    background: rgba(255, 255, 255, 0.13);
    border-radius: 58% 42% 70% 30% / 30% 52% 48% 70%;
    backdrop-filter: blur(10px);
}

.card3 .small-circle {
    position: absolute;
    top: 40px;
    left: 40px;
    z-index: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

/* --- Card 4 Logic --- */
.card4 {
    /* background: linear-gradient(180deg, rgba(0, 82, 255, 0.6), rgba(7, 25, 93, 0.6)), */
    background: url('../images/portfolio/my-karachi-generated.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.card4 .wave {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 150px;
    background: rgba(255, 255, 255, 0.08);
    clip-path: ellipse(70% 100% at 50% 100%);
}

.card4 .circle {
    position: absolute;
    top: 30px;
    right: -40px;
    z-index: 0;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

/* --- Card 5 Logic --- */
.card5 {
    /* background: linear-gradient(180deg, rgba(2, 4, 15, 0.6), rgba(77, 94, 168, 0.6)), */
    background: url('../images/portfolio/b2b-industrial-generated.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.card5 .lines {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: repeating-linear-gradient(135deg, transparent 0, transparent 12px, rgba(255, 255, 255, 0.06) 13px, rgba(255, 255, 255, 0.06) 15px);
}

.card5 .glow {
    position: absolute;
    right: -60px;
    bottom: -80px;
    z-index: 0;
    width: 220px;
    height: 220px;
    background: #8f9cff;
    filter: blur(90px);
    opacity: .35;
}

/* --- Card 6 Logic --- */
.card6 {
    /* background: linear-gradient(180deg, rgba(13, 31, 82, 0.6), rgba(31, 79, 146, 0.6)), */
    background: url('../images/portfolio/textile-asia-generated.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.card6 .diamond {
    position: absolute;
    top: 60px;
    right: -60px;
    z-index: 0;
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.08);
    transform: rotate(45deg);
    border-radius: 20px;
}

.card6 .circle2 {
    position: absolute;
    bottom: 30px;
    left: -30px;
    z-index: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}

@media(max-width:992px) {
    .insights-section .cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:768px) {
    .section-title {
        font-size: 32px;
    }

    .insights-section .cards {
        grid-template-columns: 1fr;
    }

    .card {
        min-height: 450px;
    }

    .card h3 {
        font-size: 18px;
        line-height: 1.4;
    }

    .card .tag {
        font-size: 10px;
        padding: 4px 10px;
        margin-bottom: 8px;
    }

    .card-description {
        font-size: 13px;
        line-height: 1.5;
        margin-top: 10px;
    }
}

/* MOBILE: Horizontal Carousel Mode for Featured Insights */
@media (max-width: 1024px) {
    .insights-section .cards {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory;
        padding: 20px 15px !important;
        gap: 20px !important;
        -ms-overflow-style: none;
        scrollbar-width: none;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    .insights-section .cards::-webkit-scrollbar {
        display: none;
    }

    .insights-section .card {
        flex: 0 0 85% !important;
        min-width: 85%;
        scroll-snap-align: center;
        margin-bottom: 0 !important;
    }
}

/* =============================================================================
   STATISTICS SECTION (DEVELOPER PROVIDED)
   ============================================================================= */
.stats-section {
    width: 100%;
    padding: 120px 20px;
    background: #fdfdfd;
}

/* TOP AREA */
.testi-top-area {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 90px;
    flex-wrap: wrap;
}

/* BUTTONS */
.testi-btns {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 10px;
}

.testi-btn {
    border: none;
    outline: none;
    cursor: pointer;
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    height: 58px;
    padding: 0 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-btn {
    background: #fff;
    border: 1.5px solid #d6d6d6;
    color: #172033;
    gap: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.demo-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: #172033;
}

.testi-play-icon {
    width: 22px;
    height: 22px;
    border: 1.5px solid #172033;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
    padding-left: 2px;
}

.start-btn {
    background: #2d3a52;
    color: #fff;
    box-shadow: 0 10px 20px rgba(45, 58, 82, 0.18);
}

.start-btn:hover {
    transform: translateY(-3px);
    background: #1f2a3d;
    box-shadow: 0 14px 30px rgba(45, 58, 82, 0.25);
}

/* STATS GRID */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 55px;
}

.stat-box {
    position: relative;
    padding-top: 25px;
}

.stat-number {
    font-size: 45px;
    font-weight: 650;
    color: #e21d24;
    line-height: 1;
    margin-bottom: 18px;
    letter-spacing: -3px;
}

.stat-title {
    font-size: 24px;
    font-weight: 700;
    color: #1d2433;
    margin-bottom: 12px;
}

.stat-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #6e6e6e;
}

/* TOP LINE ANIMATION */
.stat-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: #2d3a52;
    border-radius: 10px;
    transition: 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.stat-box.active::before {
    width: 70px;
}

/* RESPONSIVE */
@media(max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px 40px;
    }
}

@media(max-width: 768px) {
    .stats-section {
        padding: 80px 20px;
    }

    .testi-top-area {
        margin-bottom: 60px;
    }

    .stat-number {
        font-size: 62px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }
}

/* ========================= PLATFORM FEATURES SHOWCASE ========================= */
:root {
    --pfs-bg: #d7d7d7;
    --pfs-text: #0b0b0b;
    --pfs-muted: #3a3a3a;
    --pfs-card-radius: 8px;
}

.pfs-section {
    background: var(--pfs-bg);
    color: var(--pfs-text);
    padding: 80px 0;
    overflow-x: hidden;
}

.pfs-wrapper {
    width: min(96vw, 1840px);
    margin: 0 auto;
}

.pfs-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    margin-bottom: 70px;
    padding: 0 10px;
}

.pfs-title {
    font-size: 3.85rem;
    font-weight: 400;
    letter-spacing: -2px;
    line-height: 1;
}

.pfs-lead {
    max-width: 560px;
    font-size: 17px;
    line-height: 1.35;
    margin-top: 6px;
    color: #111;
}

/* Viewport that clips the scrolling card track */
.pfs-cards-slider-wrap {
    position: relative;
    overflow: hidden;
}

/* The scrolling track — flex row, never wraps */
.pfs-cards {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.pfs-card {
    /* Fixed card width: 4 visible + partial peek of next */
    flex: 0 0 calc((100% - 3 * 24px) / 4);
    height: 585px;
    border-radius: var(--pfs-card-radius);
    position: relative;
    overflow: hidden;
    background: #222;
    /* CSS-driven hover lift (replaces JS inline styles) */
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
}

.pfs-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.pfs-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.pfs-card .pfs-card-content {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 18px;
    z-index: 3;
    color: #fff;
}

.pfs-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.pfs-card p {
    font-size: 12px;
    line-height: 1.35;
    max-width: 280px;
    opacity: .95;
}

.pfs-arrow {
    position: absolute;
    right: 18px;
    bottom: 14px;
    font-size: 34px;
    color: #f5f5f5;
    font-weight: 300;
    z-index: 10;
}

.pfs-contacts {
    background:
        radial-gradient(circle at 55% 70%, rgba(255, 255, 255, .15), transparent 22%),
        linear-gradient(180deg, #0b0305 0%, #080305 38%, #2e2626 100%);
}

.pfs-contacts .pfs-sphere {
    position: absolute;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 35%, #d8d8d8, #bcbcbc 50%, #8e8e8e 75%, #6d6d6d 100%);
    left: 120px;
    bottom: 55px;
    filter: drop-shadow(0 28px 12px rgba(0, 0, 0, .45));
}

.pfs-contacts .pfs-shadow {
    position: absolute;
    width: 260px;
    height: 42px;
    background: rgba(0, 0, 0, .6);
    border-radius: 50%;
    left: 70px;
    bottom: 42px;
    filter: blur(10px);
}

.pfs-panel {
    position: absolute;
    background: #f0f0f0;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
}

.pfs-subscribers {
    left: 36px;
    top: 223px;
    width: 108px;
    padding: 12px 14px;
}

.pfs-subscribers .pfs-sub-t {
    font-size: 10px;
    font-weight: 600;
    margin-bottom: 10px;
}

.pfs-subscribers .pfs-sub-n {
    font-size: 22px;
}

.pfs-subscribers .pfs-sub-g {
    font-size: 9px;
    color: #4fa96b;
    margin-top: 6px;
}

.pfs-newsletter {
    left: 72px;
    top: 262px;
    width: 252px;
    height: 118px;
    background: #b291bd;
    color: #f7edf8;
    padding: 16px;
}

.pfs-newsletter .pfs-news-tiny {
    font-size: 10px;
    text-align: center;
    opacity: .8;
}

.pfs-newsletter .pfs-news-big {
    font-family: Georgia, serif;
    font-size: 25px;
    text-align: center;
    margin-top: 2px;
}

.pfs-newsletter .pfs-news-field {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    height: 26px;
    background: #efe6f0;
    border-radius: 4px;
}

.pfs-newsletter .pfs-news-btn {
    position: absolute;
    right: 21px;
    bottom: 21px;
    height: 20px;
    width: 70px;
    border-radius: 3px;
    background: #4c155c;
    font-size: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pfs-email-pill {
    position: absolute;
    right: 32px;
    width: 118px;
    height: 26px;
    border-radius: 30px;
    background: #ececec;
    font-size: 10px;
    display: flex;
    align-items: center;
    padding: 0 10px;
}

.pfs-p1 {
    bottom: 170px;
}

.pfs-p2 {
    bottom: 136px;
}

.pfs-p3 {
    bottom: 102px;
}

.pfs-campaigns {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, 0)),
        linear-gradient(180deg, #655f61 0%, #5d5758 100%);
}

.pfs-campaigns .pfs-mail {
    position: absolute;
    width: 54px;
    height: 24px;
    border-radius: 30px;
    background: #ececec;
    left: 32px;
    top: 360px;
    font-size: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pfs-news-card {
    position: absolute;
    left: 110px;
    top: 220px;
    width: 245px;
    height: 250px;
    background: #ece7e2;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
    overflow: hidden;
}

.pfs-news-card .pfs-news-head {
    font-size: 8px;
    font-weight: 700;
    text-align: center;
    padding-top: 14px;
}

.pfs-news-card .pfs-news-title {
    font-family: Georgia, serif;
    font-size: 18px;
    text-align: center;
    margin-top: 18px;
    line-height: 1.15;
    color: #2d2d2d;
}

.pfs-news-card .pfs-news-img {
    width: 155px;
    height: 82px;
    margin: 18px auto 0;
    background:
        repeating-linear-gradient(90deg, #474747 0 8px, #d3d3d3 8px 16px);
    border-radius: 2px;
}

.pfs-metric {
    position: absolute;
    right: 36px;
    width: 96px;
    height: 54px;
    background: #ededed;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.pfs-metric small {
    font-size: 7px;
    opacity: .6;
    font-weight: 700;
}

.pfs-metric strong {
    font-size: 18px;
}

.pfs-m1 {
    top: 186px;
}

.pfs-m2 {
    top: 244px;
}

.pfs-extensions {
    background:
        radial-gradient(circle at 75% 20%, rgba(255, 255, 255, .18), transparent 18%),
        linear-gradient(90deg, #17191d 0%, #1e2125 48%, #434446 100%);
}

.pfs-icon {
    position: absolute;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
}

.pfs-i1 {
    width: 64px;
    height: 64px;
    background: #2faa4e;
    left: 118px;
    top: 245px;
    font-size: 38px;
}

.pfs-i2 {
    width: 78px;
    height: 78px;
    background: #3774ff;
    left: 154px;
    top: 315px;
    font-size: 40px;
}

.pfs-i3 {
    width: 46px;
    height: 46px;
    background: #f26c22;
    left: 88px;
    top: 353px;
    font-size: 24px;
}

.pfs-i4 {
    width: 54px;
    height: 54px;
    background: #58d083;
    left: 288px;
    top: 390px;
    font-size: 28px;
}

.pfs-i5 {
    width: 42px;
    height: 42px;
    background: #1729b4;
    left: 224px;
    top: 430px;
    font-size: 18px;
}

.pfs-blur {
    filter: blur(5px);
    opacity: .55;
}

.pfs-i6 {
    width: 48px;
    height: 48px;
    background: #22374e;
    left: 250px;
    top: 278px;
}

.pfs-i7 {
    width: 42px;
    height: 42px;
    background: #dedede;
    left: 325px;
    top: 205px;
    color: #999;
}

.pfs-payments {
    background:
        linear-gradient(180deg, #8f8f8f 0%, #9d9d9d 70%, #b0b0b0 100%);
}

.pfs-payments::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 35% 120%, rgba(255, 255, 255, .25) 0 35%, transparent 36%),
        radial-gradient(circle at 65% 130%, rgba(255, 255, 255, .18) 0 35%, transparent 36%);
}

.pfs-logo-grid {
    position: absolute;
    left: 104px;
    top: 222px;
    display: grid;
    grid-template-columns: repeat(3, 68px);
    gap: 14px;
}

.pfs-logo {
    height: 48px;
    background: #efefef;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    color: #222;
}

.pfs-logo.pfs-logo-pink {
    background: #f2b8c8;
}

.pfs-logo.pfs-logo-green {
    background: #c9f1e2;
}

.pfs-logo.pfs-logo-blue {
    color: #16398d;
}

.pfs-controls {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    padding: 32px 12px 0;
}

.pfs-dots {
    display: flex;
    gap: 7px;
    margin-right: auto;
    margin-left: 48%;
}

.pfs-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #8d8d8d;
    cursor: pointer;
    transition: width 0.3s ease, background 0.3s ease;
}

.pfs-dot.pfs-dot-active {
    width: 28px;
    border-radius: 20px;
    background: #6b6b6b;
}

.pfs-navbtn {
    width: 32px;
    height: 32px;
    border: 1.5px solid #9a9a9a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 18px;
    cursor: pointer;
    transition: opacity 0.25s ease, border-color 0.25s ease, background 0.25s ease;
    user-select: none;
}

.pfs-navbtn:hover {
    background: #e0e0e0;
    border-color: #666;
}

@media (max-width: 1200px) {
    .pfs-top {
        grid-template-columns: 1fr;
    }

    .pfs-lead {
        margin-top: 20px;
    }

    /* Show 2 cards at a time on tablet */
    .pfs-card {
        flex: 0 0 calc((100% - 24px) / 2);
    }
}

@media (max-width: 768px) {
    .pfs-wrapper {
        width: 94vw;
    }

    .pfs-title {
        font-size: 2.7rem;
    }

    /* Show 1 card at a time on mobile */
    .pfs-card {
        flex: 0 0 100%;
        height: 520px;
    }

    .pfs-dots {
        margin-left: 0;
    }
}

/* =============================================================================
   ABOUT US SECTION
   ============================================================================= */
.about {
    padding: 120px 0;
    background: var(--white);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-content {
    flex: 1;
}

.section-tag {
    display: inline-block;
    color: var(--primary-red);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.about-content h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.about-content p {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.about-features {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.feat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 15px;
    color: var(--text-dark);
}

.feat i {
    color: var(--primary-red);
}

.btn-primary-red {
    background: var(--primary-red);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 50px;
    border: none;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(228, 31, 38, 0.2);
}

.btn-primary-red:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(228, 31, 38, 0.3);
}

.about-visual {
    flex: 1;
}

.visual-box {
    position: relative;
}

.visual-box img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary-red);
    color: var(--white);
    padding: 30px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(228, 31, 38, 0.3);
    animation: float 4s ease-in-out infinite;
}

.experience-badge .years {
    display: block;
    font-size: 40px;
    font-weight: 800;
}

.experience-badge .exp-text {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* =============================================================================
   CORPORATE SERVICES SHOWCASE (Editorial Split-Screen)
   ============================================================================= */
.what-we-do-split {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
    overflow-x: clip;
}

.what-we-do-split .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.split-header {
    margin-bottom: 60px;
    padding: 0 40px;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.split-header h2 {
    font-size: 42px;
    color: #111;
    margin-top: 10px;
    font-weight: 700;
}

.split-subtitle {
    font-size: 18px;
    color: #555;
    margin-top: 15px;
    max-width: 600px;
    line-height: 1.6;
}

.split-container {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    box-sizing: border-box;
}

/* Base styles */
.split-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.split-nav-btn {
    width: 100%;
    text-align: left;
    background: #fff;
    border: none;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    cursor: pointer;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.split-nav-btn:hover {
    background: #fdfdfd;
}

.nav-num {
    font-size: 14px;
    font-weight: 700;
    color: #aaa;
    margin-right: 20px;
    min-width: 25px;
}

.nav-title {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    flex: 1;
}

.nav-arrow {
    color: #888;
    transition: transform 0.3s ease;
}

.split-nav-btn.active {
    background: #0a1128;
    border-left-color: var(--primary-red);
}

.split-nav-btn.active .nav-num {
    color: rgba(255, 255, 255, 0.5);
}

.split-nav-btn.active .nav-title,
.split-nav-btn.active .nav-arrow {
    color: #fff;
}

.split-visuals {
    flex: 1;
}

.split-panel {
    background: #0a1128;
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
}

.panel-inner {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.panel-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.4s ease;
}

.panel-inner img.fading-out {
    opacity: 0;
}

.panel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 17, 40, 0.95) 0%, rgba(10, 17, 40, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
}

.panel-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 30px;
    color: #fff;
    width: 100%;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.panel-content.fading-out {
    opacity: 0;
    transform: translateY(10px);
}

.panel-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-red);
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.panel-headline {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

.panel-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
    max-width: 90%;
}

.panel-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.panel-cta:hover {
    gap: 12px;
    color: var(--primary-red);
}

/* Desktop Split Screen */
@media screen and (min-width: 992px) {
    .what-we-do-split {
        height: 250vh;
        padding: 0;
    }

    .split-sticky-wrapper {
        position: sticky;
        top: 0;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: clamp(40px, 8vh, 100px);
        box-sizing: border-box;
    }

    .split-header {
        margin-bottom: clamp(30px, 4vh, 60px);
    }

    .split-container {
        flex-direction: row;
        gap: clamp(30px, 4vw, 50px);
        align-items: center;
    }

    .split-nav {
        flex: 3.5;
    }

    .split-visuals {
        flex: 6.5;
    }

    .split-nav-btn {
        border-radius: 0;
        background: transparent;
        border-left: 3px solid rgba(0, 0, 0, 0.08);
        box-shadow: none;
        padding: clamp(15px, 2vh, 30px) 0 clamp(15px, 2vh, 30px) 25px;
        position: relative;
    }

    .split-nav-btn::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 25px;
        right: 0;
        height: 1px;
        background: rgba(0, 0, 0, 0.06);
    }

    .split-nav-btn:hover {
        background: transparent;
        padding-left: 35px;
    }

    .nav-arrow {
        color: var(--primary-red);
        opacity: 0;
        transform: translateX(-10px);
        transition: all 0.3s ease;
    }

    .split-nav-btn.active {
        background: transparent;
        border-left: 3px solid var(--primary-red);
        padding-left: 35px;
    }

    .split-nav-btn.active .nav-num,
    .split-nav-btn.active .nav-title {
        color: #0a1128;
    }

    .split-nav-btn.active .nav-arrow {
        opacity: 1;
        transform: translateX(0);
    }

    .split-panel {
        background: transparent;
        padding: 0;
    }

    .panel-inner {
        height: min(550px, calc(100vh - 250px));
        min-height: 350px;
        border-radius: 20px;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    }

    .panel-content {
        padding: clamp(20px, 4vh, 50px);
    }

    .panel-headline {
        font-size: clamp(24px, 3vw, 36px);
    }

    .panel-desc {
        font-size: 16px;
        max-width: 500px;
    }
}

@media screen and (max-width: 768px) {
    .split-header h2 {
        font-size: 32px;
    }

    .split-container {
        padding: 0 20px;
    }

    .split-header {
        padding: 0 20px;
    }
}

/* --- Responsive Layouts --- */
@media screen and (max-width: 1024px) {
    .about-container {
        flex-direction: column;
        gap: 60px;
        text-align: center;
    }

    .about-features {
        justify-content: center;
    }

    .experience-badge {
        right: 0;
        bottom: -20px;
    }
}

/* =============================================================================
   SCROLL TO TOP BUTTON
   ============================================================================= */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(228, 31, 38, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(228, 31, 38, 0.4);
    color: var(--primary-red);
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: var(--primary-red);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(228, 31, 38, 0.3);
}

/* =============================================================================
   EVENTS SHOWCASE SLIDER
   ============================================================================= */
/* ========================= EVENTS SHOWCASE SLIDER ========================= */
.evt-slider-section {
    background: transparent;
    padding: 80px 0 60px;
    overflow: hidden;
    position: relative;
}

.evt-slider-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.evt-slider-header h2 {
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 800;
    color: #050404;
    max-width: 700px;
    margin: 10px auto 0;
    line-height: 1.3;
}

.evt-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    color: var(--primary-red);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition-fast);
}

.evt-view-all i {
    font-size: 12px;
    transition: var(--transition-fast);
}

.evt-view-all:hover {
    gap: 12px;
}

.evt-slider-wrapper {
    width: 100%;
    position: relative;
}

/* SLIDER WINDOW */
.evt-slider {
    width: 100%;
    overflow: hidden;
    /* Hide the track outside this window */
    position: relative;
    padding: 40px 0;
}

/* SLIDER TRACK — The moving part */
.evt-slider-track {
    display: flex;
    align-items: center;
    gap: 30px;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    /* We'll use JS for the smooth movement, so no CSS transition here to avoid conflict with Lerp */
}

.evt-slider::-webkit-scrollbar {
    display: none;
}

/* CARD — ultra-large LED-screen size */
.evt-card {
    position: relative;
    flex: 0 0 1100px;
    height: 600px;
    border-radius: 30px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.55);
    flex-shrink: 0;
}

/* ACTIVE CARD — maximum cinematic view */
.evt-card.active {
    flex: 0 0 1200px;
    height: 650px;
    filter: brightness(1);
    /* box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4); */
}

/* IMAGE */
.evt-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* DARK GRADIENT OVERLAY — Softened to be less "muddy" */
.evt-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 50%);
}

/* TAG */
.evt-tag {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 2;
    background: rgba(180, 26, 31, 0.9);
    color: #fff;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* CONTENT */
.evt-content {
    position: absolute;
    left: 28px;
    bottom: 35px;
    z-index: 2;
    color: #fff;
    width: 70%;
}

.evt-content h3 {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 14px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    /* better readability */
}

.evt-arrow {
    font-size: 28px;
    color: rgba(255, 255, 255, 0.7);
}

/* NAVIGATION BAR */
.evt-navigation {
    position: relative;
    margin: 35px auto 0;
    width: fit-content;
    background: #1a1a1a;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 12px 28px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.evt-nav-btn {
    font-size: 26px;
    cursor: pointer;
    user-select: none;
    color: #aaa;
    transition: color 0.2s;
    line-height: 1;
}

.evt-nav-btn:hover {
    color: #fff;
}

.evt-counter {
    font-size: 16px;
    color: #ccc;
}

/* RESPONSIVE */
@media (max-width: 950px) {
    .evt-slider {
        padding: 20px 20px;
    }

    .evt-card {
        flex: 0 0 85vw;
        height: 420px;
    }

    .evt-card.active {
        flex: 0 0 90vw;
        height: 450px;
    }

    .evt-content h3 {
        font-size: 15px;
    }
}



/* ========================= SERVICES STICKY CAROUSEL ========================= */
.services-scroll-track {
    position: relative;
    height: 300vh;
    /* Determines the duration of the horizontal scroll */
}

.new-services-carousel.sticky-section {
    position: sticky;
    top: 0;
    height: 100vh;
    background: #151515;
    color: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nsc-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.nsc-header-center {
    text-align: center;
    margin-bottom: 50px;
}

.nsc-header-center h4 {
    letter-spacing: 4px;
    font-size: 14px;
    color: #aaa;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.nsc-header-center h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--primary-red);
}

.nsc-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}

.nsc-left h2 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
    color: #fff;
}

.nsc-highlight {
    background: linear-gradient(90deg, #b41a1f, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.nsc-right p {
    max-width: 500px;
    color: #ccc;
    line-height: 1.6;
    font-size: 15px;
    margin: 0;
}

/* CAROUSEL WRAPPER */
.svc-cards-wrapper {
    width: 100%;
    overflow: hidden;
    /* Hide overflow since we transform */
}

/* CARDS ROW (HORIZONTAL) */
.svc-cards {
    display: flex;
    gap: 25px;
    padding-bottom: 40px;
    will-change: transform;
    /* Hardware acceleration for JS animation */
}

/* Spacer to align first item with container while allowing it to scroll to screen edge */
.svc-cards::before,
.svc-cards::after {
    content: '';
    flex-shrink: 0;
    width: max(15px, calc((100vw - 1300px) / 2 + 15px));
    /* Account for 25px flex gap to equal 40px total */
}

/* CARD */
.svc-card {
    width: 320px;
    background-image: url('https://img.magnific.com/free-photo/excited-audience-watching-confetti-fireworks-having-fun-music-festival-night-copy-space_637285-559.jpg?semt=ais_hybrid&w=740&q=80');
    min-width: 320px;
    height: 360px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    border-radius: 15px;
    transition: 0.3s ease;
    overflow: hidden;
    padding-bottom: 70px;
    /* extra room to avoid overlap */
}

.svc-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.78) 0%,
        rgba(0, 0, 0, 0.28) 70%,
        rgba(0, 0, 0, 0.08) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.svc-card:hover {
    /* Hover effect disabled */
}



/* Colors */
.svc-pink {
    background: #B83F6E;
    /* Deep raspberry – upscale vibe */
}

.svc-blue {
    background: #1A5276;
    /* Dark navy – sophisticated */
}

.svc-yellow {
    background: #B7950B;
    /* Rich gold – premium accent */
}

/* Icon */
.svc-icon {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 40px;
}

/* Text */
.svc-card h3 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    margin: 0;
    text-align: left;
    position: relative;
    z-index: 2;
}

.svc-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    text-align: left;
    margin: 8px 0 0 0;
    line-height: 1.4;
    font-weight: 400;

    /* Strictly limit the text to 3 lines so it never ruins the card size */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

/* Read More button inside cards */
.read-more-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid #fff;
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 2;
    /* ensure button stays on top */
}

.read-more-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.read-more-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media(max-width: 1000px) {
    .nsc-top {
        flex-direction: column;
        gap: 20px;
    }

    .svc-card {
        min-width: 280px;
        height: 320px;
    }
}

@media(max-width: 600px) {
    .svc-card {
        min-width: 260px;
        height: 300px;
    }
}

/* =============================================================================
   TESTIMONIALS SECTION (DEVELOPER PROVIDED)
   ============================================================================= */
.testimonial-section {
    width: 100%;
    padding: 120px 20px;
    background: #f9f9f9;
    text-align: center;
    overflow-x: hidden;
}

.testi-container {
    max-width: 1400px;
    margin: 0 auto;
}

.testi-small-heading {
    color: #e41f26;
    /* Adjusted to project brand red */
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.testi-main-heading {
    font-size: clamp(32px, 5vw, 46px);
    line-height: 1.2;
    font-weight: 800;
    color: #111;
    margin-bottom: 90px;
}

.testi-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.testi-slider-window {
    width: 100%;
    max-width: 1240px;
    /* 4 cards (285) + 3 gaps (32) = 1236px approx */
    overflow: hidden;
    padding: 60px 0 30px;
    /* Increased top padding to accommodate overflowing profile images */
}

.testi-cards-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 32px;
    flex-wrap: nowrap;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform;
}

/* NAVIGATION BUTTONS */
.testi-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    flex-shrink: 0;
}

.testi-nav-btn:hover {
    background: #e41f26;
    color: #fff;
    border-color: #e41f26;
    box-shadow: 0 5px 15px rgba(228, 31, 38, 0.3);
}

.testi-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* CARD */
.testimonial-card {
    position: relative;
    width: 285px;
    flex: 0 0 285px;
    /* Fixed width for carousel */
    background: #fff;
    border-radius: 20px;
    padding: 80px 32px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}

/* TOP IMAGE */
.testi-profile-wrapper {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fff;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testi-profile-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.testi-client-name {
    font-size: 19px;
    font-weight: 700;
    color: #111;
    margin-bottom: 6px;
}

.testi-client-role {
    font-size: 14px;
    color: #888;
    margin-bottom: 22px;
    font-weight: 500;
}

.testi-review-text {
    font-size: 14.5px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
}

.testi-stars {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
}

.testi-star {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e41f26;
    /* Project Red */
}

/* SECOND CARD BLUE STARS */
.testi-blue .testi-star {
    background: #5138ff;
}

@media(max-width: 1200px) {
    .testi-cards-wrapper {
        gap: 80px 25px;
    }
}

@media(max-width: 768px) {
    .testimonial-section {
        padding: 80px 20px;
    }

    .testimonial-card {
        width: 100%;
        max-width: 350px;
    }
}

/* KEYBOARD ACCESSIBILITY: Visible Focus States */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[role="button"]:focus-visible,
.filter-btn:focus-visible,
.read-more-btn:focus-visible,
.pfs-navbtn:focus-visible,
.evt-nav-btn:focus-visible,
.testi-nav-btn:focus-visible,
.split-nav-btn:focus-visible {
    outline: 3px solid var(--primary-red, #e41f26) !important;
    outline-offset: 3px !important;
}