:root {
            --logo-purple: #5300FC;
            --logo-violet: #B425BC;
            --logo-pink: #D326D6;
            --logo-coral: #E159A0;
            --logo-orange: #FEAB4C;
            --brand-purple: #5300FC;
            --brand-magenta: #D326D6;
            --text-dark: #1e293b;
            --text-light: #64748b;
            --bg-light: #f8fafc;
            --white: #ffffff;
            --border-color: #e2e8f0;
            --brand-gradient: linear-gradient(90deg, #5300FC 0%, #B425BC 25%, #D326D6 50%, #E159A0 75%, #FEAB4C 100%);
        }
        html {
            font-size: 90%;
            -webkit-text-size-adjust: 100%;
            scroll-behavior: smooth;
        }
        *, html, body, button, input, textarea, select { 
            font-family: 'Plus Jakarta Sans', 'Ubuntu', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; 
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-size: 1rem; line-height: 1.6; color: var(--text-dark); background-color: var(--white); overflow-x: hidden; }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
        h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; font-family: 'Plus Jakarta Sans', 'Ubuntu', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; }
        h2 { font-size: 2.5rem; margin-bottom: 3rem; text-align: center; }
        section { padding: 80px 0; position: relative; }
        a { text-decoration: none; color: inherit; }
        .btn-outline { 
            display: inline-flex; 
            align-items: center; 
            justify-content: center; 
            gap: 10px;
            padding: 12px 28px; 
            border: 1.5px solid rgba(197, 22, 241, 0.3); 
            border-radius: 50px; 
            color: var(--text-dark); 
            font-weight: 600; 
            font-size: 0.95rem;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(4px);
            transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
            cursor: pointer;
        }
        .btn-outline:hover { 
            background: linear-gradient(135deg, #6000ED, #C516F1); 
            color: var(--white) !important; 
            border-color: transparent; 
            transform: translateY(-3px) scale(1.02); 
            box-shadow: 0 10px 25px rgba(197, 22, 241, 0.35); 
        }
        .btn-outline i { 
            margin-left: 0; 
            font-size: 0.9rem;
            transition: transform 0.3s ease; 
        }
        .btn-outline:hover i {
            transform: translateX(4px);
        }
        .animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.4s ease-out, transform 0.4s ease-out; }
        .animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
        .hero {  min-height: 100vh; padding: 0; position: relative; }
        .hero-image-container { position: absolute;  top: 0;  left: 0; width: 100%; height: 100%; overflow: hidden; z-index: -2;}
        .hero-image-container img {width: 100%;height: 100%; object-fit: cover; object-position: center; }
        .hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.4); z-index: -1; }
        .hero-content {
            color: var(--white);
            max-width: 820px;
            opacity: 0;
            transform: translateY(calc(-50% + 40px));
            animation: fadeInUp 1s ease-out 0.5s forwards;
            position: absolute;
            top: 50%;
            left: 5%;
            background: rgba(18, 26, 38, 0.78);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 48px 52px;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
        }
        @keyframes fadeInUp {
            to { 
                opacity: 1; 
                transform: translateY(-50%);
            } 
        }
        .hero-content h1 {
            font-size: 2.75rem;
            font-weight: 700;
            margin-bottom: 22px;
            text-align: left;
            line-height: 1.25;
            letter-spacing: -0.5px;
            color: #ffffff;
        }
        .hero-content p {
            font-size: 1.12rem;
            margin-top: 0;
            margin-bottom: 30px;
            font-weight: 300;
            color: rgba(226, 232, 240, 0.9);
            line-height: 1.65;
        }
        .hero-cta-btns {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 18px;
            margin-top: 0;
        }
        .hero-btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 15px 32px;
            font-size: 1.05rem;
            font-weight: 700;
            color: #ffffff !important;
            background: linear-gradient(90deg, #5300FC 0%, #B425BC 35%, #E159A0 70%, #FE7B42 100%);
            border-radius: 12px;
            box-shadow: none;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .hero-btn-primary:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: none !important;
            color: #ffffff !important;
        }
        .hero-btn-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 14px 30px;
            font-size: 1.05rem;
            font-weight: 700;
            color: #ffffff !important;
            background: transparent;
            border: 1.5px solid rgba(255, 255, 255, 0.85);
            border-radius: 12px;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            box-shadow: none;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .hero-btn-secondary i {
            font-size: 0.95rem;
            transition: transform 0.3s ease;
        }
        .hero-btn-secondary:hover {
            background: linear-gradient(90deg, #5300FC 0%, #B425BC 25%, #D326D6 50%, #E159A0 75%, #FEAB4C 100%) !important;
            border-color: transparent !important;
            transform: translateY(-3px) scale(1.02);
            box-shadow: none !important;
            color: #ffffff !important;
        }
        .hero-btn-secondary:hover i {
            transform: translateX(5px);
        }
        /* ================= SECTION 2: TRUST BAR (PREMIUM EYE-FRIENDLY UI) ================= */
        .trust-bar-section {
            background: #fafbfd;
            padding: 55px 0 48px;
            border-top: 1px solid #f1f5f9;
            border-bottom: 1px solid #f1f5f9;
            position: relative;
            z-index: 5;
            overflow: hidden;
            width: 100%;
        }
        .trust-bar-section .trust-bar-container,
        .trust-bar-container {
            width: 100% !important;
            max-width: 100% !important;
            margin: 0 auto;
            padding: 0 32px !important;
            box-sizing: border-box;
        }
        .trust-bar-header-clean {
            text-align: center;
            max-width: 820px;
            margin: 0 auto 36px auto;
        }
        .trust-bar-header-clean h3 {
            font-size: 2.75rem;
            font-weight: 800;
            color: #0f172a;
            letter-spacing: -0.5px;
            margin: 0;
            line-height: 1.25;
        }
        .trust-bar-header-clean h3 .highlight-text {
            background: linear-gradient(90deg, #5300FC 0%, #B425BC 30%, #D326D6 60%, #FEAB4C 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .industry-trust-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 16px;
            margin-bottom: 34px;
            width: 100%;
            box-sizing: border-box;
        }
        .industry-card {
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 14px;
            padding: 16px 18px;
            display: flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
            transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
            cursor: default;
            position: relative;
            overflow: hidden;
            min-height: 72px;
            box-sizing: border-box;
            justify-content: flex-start;
            width: 100%;
        }
        .industry-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #5300FC 0%, #B425BC 25%, #D326D6 50%, #E159A0 75%, #FEAB4C 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .industry-card:hover {
            transform: translateY(-4px);
            border-color: #5300FC;
            box-shadow: 0 12px 28px rgba(83, 0, 252, 0.09);
        }
        .industry-card:hover::before {
            opacity: 1;
        }
        .industry-icon-box {
            width: 42px;
            height: 42px;
            min-width: 42px;
            flex-shrink: 0;
            border-radius: 10px;
            background: rgba(83, 0, 252, 0.06);
            border: 1px solid rgba(83, 0, 252, 0.14);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #5300FC;
            font-size: 1.15rem;
            transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .industry-card:hover .industry-icon-box {
            background: linear-gradient(135deg, #5300FC 0%, #B425BC 50%, #FEAB4C 100%);
            color: #ffffff;
            border-color: transparent;
            transform: scale(1.06);
            box-shadow: 0 6px 16px rgba(83, 0, 252, 0.25);
        }
        .industry-name {
            font-size: 0.94rem;
            font-weight: 700;
            color: #0f172a;
            line-height: 1.2;
            white-space: nowrap;
        }
        .trust-tech-scroll-wrap {
            margin-top: 32px;
            padding-top: 26px;
            border-top: 1px solid #e2e8f0;
            width: 100%;
            position: relative;
            overflow: hidden;
            box-sizing: border-box;
        }
        .trust-tech-scroll-wrap .tech-scroll {
            overflow: hidden;
            width: 100%;
            position: relative;
            padding: 8px 0;
            -webkit-mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
            mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
        }
        .trust-tech-scroll-wrap .tech-track {
            display: flex;
            gap: 14px;
            width: max-content;
            animation: scroll-left 50s linear infinite;
        }
        .trust-tech-scroll-wrap .tech-scroll:hover .tech-track {
            animation-play-state: paused;
        }
        .trust-tech-scroll-wrap .tech-track span {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #ffffff;
            border: 1px solid #e2e8f0;
            padding: 10px 22px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 600;
            color: #1e293b;
            box-shadow: 0 2px 10px rgba(15, 23, 42, 0.03);
            white-space: nowrap;
            transition: all 0.3s ease;
        }
        .trust-tech-scroll-wrap .tech-track span i {
            color: #5300FC;
            font-size: 1.05rem;
            transition: transform 0.3s ease;
        }
        .trust-tech-scroll-wrap .tech-track span:hover {
            border-color: #5300FC;
            color: #5300FC;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(83, 0, 252, 0.1);
        }
        @keyframes scroll-left {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        @media (max-width: 1300px) {
            .industry-trust-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 16px;
            }
            .industry-name {
                font-size: 0.95rem;
            }
        }
        @media (max-width: 768px) {
            .trust-bar-section {
                padding: 42px 0 36px;
            }
            .trust-bar-section .trust-bar-container,
            .trust-bar-container {
                padding: 0 16px !important;
            }
            .trust-bar-header-clean h3 {
                font-size: 2.1rem;
            }
            .industry-trust-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            .industry-card {
                padding: 14px 12px;
                gap: 10px;
                min-height: 64px;
            }
            .industry-name {
                font-size: 0.85rem;
            }
            .industry-icon-box {
                width: 36px;
                height: 36px;
                min-width: 36px;
                font-size: 1rem;
            }
        }
        @media (max-width: 480px) {
            .industry-trust-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            .industry-name {
                font-size: 0.92rem;
            }
        }
        .feature-section { display: grid; grid-template-columns: 1fr 1.2fr; align-items: stretch; gap: 4rem; }
        .feature-image img { width: 100%; height: auto; display: block; border-radius: 8px; }
        
        
        
        .insights-section { background-color: var(--bg-light); padding-bottom: 40px; }
        .insights-grid { position: relative; min-height: 800px; }
        .insight-card { position: absolute; padding: 35px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); max-width: 480px; }
        .insight-card .tag { font-size: 0.9rem; margin-bottom: 10px; display: block; color: var(--text-light); }
        .insight-card h3 { margin-bottom: 20px; }
        .insight-card .link { font-weight: 700; color: var(--brand-magenta); }
        .insight-bg-image { position: absolute; }
        .insight-bg-1 { top: 0; left: 0; width: 50%; height: 420px; }
        .insight-bg-2 { bottom: 0; right: 0; width: 50%; height: 420px; }
        .insight-bg-image img { width: 100%; height: 100%; object-fit: cover; }
        .insight-card-1 { background-color: var(--white); top: 100px; right: 10%; }
        .insight-card-2 { background: var(--brand-purple); color: var(--white); top: 380px; left: 5%; }
        .insight-card-2 .tag { color: rgba(255, 255, 255, 0.7); }
        .insight-card-2 .link { color: var(--brand-magenta); text-decoration; text-decoration-color: var(--brand-magenta); }
        .insight-card-3 { background-color: var(--white); top: 550px; right: 15%; z-index: 3; }
        .more-insights-btn { margin-top: 60px; margin-bottom: 50px; text-align: center; }
        .slider-container { position: relative; }
        .slider-container .slides { display: grid; }
        .slider-container .slide { grid-area: 1 / 1; opacity: 0; transition: opacity 0.5s ease-in-out; visibility: hidden; z-index: 1; }
        .slider-container .slide.active { opacity: 1; visibility: visible; z-index: 2; }
        .slider-nav { display: none; align-items: center; gap: 20px; }
        .slider-arrows button { 
            background: #ffffff; 
            border: 1px solid rgba(0,0,0,0.1); 
            width: 44px; 
            height: 44px; 
            border-radius: 50%; 
            cursor: pointer; 
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        .slider-arrows button:hover { 
            background: linear-gradient(135deg, #6000ED, #C516F1); 
            color: var(--white); 
            border-color: transparent;
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(197, 22, 241, 0.3);
        }
        .slider-dots { display: flex; align-items: center; gap: 8px; }
        .slider-dots .dot { 
            width: 10px; 
            height: 10px; 
            background-color: #cbd5e1; 
            border-radius: 10px; 
            border: none;
            cursor: pointer; 
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1); 
        }
        .slider-dots .dot.active { 
            width: 28px; 
            background: linear-gradient(90deg, #6000ED, #C516F1); 
            border-radius: 10px;
        }
        .client-slider { padding-top: 60px; padding-bottom: 60px; }
        .client-slide { display: grid; grid-template-columns: 1fr 1.25fr; align-items: center; position: relative; }
        .client-slide .feature-content-box { 
            min-height: 420px; 
            display: flex; 
            flex-direction: column;
            justify-content: center;
            padding: 48px 44px;
            border-radius: 16px;
            background: #ffffff;
            border: 1px solid rgba(0, 0, 0, 0.06);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
            position: relative;
            z-index: 3;
            margin-right: -80px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .client-slide .feature-content-box:hover {
            transform: translateY(-4px);
            box-shadow: 0 30px 70px rgba(0, 0, 0, 0.16);
        }
        .client-slide .feature-image { 
            order: 2; 
            height: 100%; 
            min-height: 520px;
            border-radius: 0; 
            overflow: hidden; 
            position: relative;
            z-index: 1;
            box-shadow: none;
            border: none;
            display: flex;
            align-items: center;
        }
        .client-slide .feature-image img {
            width: 100%;
            height: 100%;
            min-height: 520px;
            border-radius: 0;
            border: none;
            object-fit: cover;
            background-color: var(--bg-light);
            transition: transform 0.5s ease;
        }
        .client-slide:hover .feature-image img {
            transform: scale(1.025);
        }
        
        .client-slide .btn-outline {
            padding: 12px 24px; 
            border-radius: 30px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            width: fit-content;
        }

        .client-slide .slider-nav {
            margin-top: auto;
            padding-top: 2rem;
            justify-content: flex-start;
        }
        
        .news-section { 
            background: var(--bg-light);
            padding-top: 20px; 
            padding-bottom: 40px;
        }
        .news-grid { display: grid; grid-template-columns: 0.8fr 2fr; gap: 5rem; align-items: center; }
        .news-image-column img { width: 100%; height: 100%; max-height: 500px; object-fit: cover; display: block; border-radius: 8px; }
        .news-content-wrapper h2 { margin-bottom: 2rem; }
        .news-list-item { padding: 2rem 0; border-bottom: 1px solid var(--border-color); }
        .news-list-item:first-child { padding-top: 0; }
        .news-list-item .tag { font-size: 0.9rem; margin-bottom: 10px; display: block; color: var(--text-light); }
        
        .news-list-item h3 { font-size: 1.5rem; font-weight: 500; margin-bottom: 1rem; }
        .news-list-item .date { font-size: 0.9rem; color: var(--text-light); }
        .all-news-btn { margin-top: 40px; }

        .stories-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 2rem; align-items: flex-start; }
        .story-large-card { position: relative; color: var(--white); overflow: hidden; border-radius: 8px; }
        .story-large-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
        .story-large-card:hover img { transform: scale(1.05); }
        .story-large-card-content { position: absolute; bottom: 0; left: 0; padding: 40px; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); width: 100%; }
        .story-large-card .tag { font-size: 0.9rem; margin-bottom: 10px; display: block; }
        .story-large-card .tag::before { content: '— '; }
        .story-large-card h3 { font-size: 2rem; }
        .story-large-card p { margin-top: 10px; font-weight: 300; }
        .stories-small-list { display: flex; flex-direction: column; gap: 2rem; }
        .story-small-card img { width: 100%; height: 200px; object-fit: cover; border-radius: 8px; margin-bottom: 1rem; }
        .story-small-card .tag { font-size: 0.9rem; color: var(--text-light); }
        
        .story-small-card h3 { font-size: 1.5rem; margin: 0.5rem 0; }
        .story-small-card p { color: var(--text-light); }

        .report-slider { padding: 0; }
        .report-slide {
            min-height: 500px; 
            color: var(--white); 
            display: flex; 
            align-items: center; 
            background-size: cover; 
            background-position: center; 
            padding: 80px 0;
        }
        .report-slide-content { 
            padding: 40px; 
            background: linear-gradient(90deg, rgba(42, 0, 101, 0.9), rgba(230, 0, 122, 0.9)); 
            max-width: 50%; 
            border-radius: 8px; 
        }
        .report-slide-content h2 { font-size: 3rem; margin-bottom: 1rem; text-align: left; }
        .report-slide-content p { font-size: 1.2rem; font-weight: 300; margin-bottom: 2rem; }
        .report-slide-content .btn-outline { border-color: var(--white); color: var(--white); }
        .report-slide-content .btn-outline:hover { background-color: var(--white); color: var(--brand-purple); }
        
        #report-slider .slide {
            transition: none;
        }
        
        .report-slide .slider-nav {
            display: flex;
            margin-top: 2rem;
        }
        .report-slide .slider-arrows button { border-color: rgba(255, 255, 255, 0.5); color: var(--white); }
        .report-slide .slider-arrows button:hover { background-color: var(--white); color: var(--brand-purple); }
        .report-slide .slider-dots .dot { background-color: rgba(255, 255, 255, 0.4); }
        .report-slide .slider-dots .dot.active { background-color: var(--white); }
        
        /* Leadership Section Styles */
        .leadership-section {
            background: linear-gradient(180deg, var(--white), var(--bg-light));
            padding: 80px 0;
        }

        .section-intro-text {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem auto;
            font-size: 1.1rem;
            color: var(--text-light);
        }

        .leadership-grid-new {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 3rem;
            align-items: flex-start;
        }

        .leader-showcase {
            background: var(--white);
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 20px 50px rgba(0,0,0,.08);
            position: sticky;
            top: 120px;
            transition: all .4s ease;
            display: grid;
            grid-template-columns: 2fr 3fr;
            align-items: center;
            gap: 40px;
        }

        #showcase-image {
            width: 100%;
            height: auto;
            aspect-ratio: 1/1;
            object-fit: cover;
            border-radius: 12px;
            border: 4px solid var(--bg-light);
            box-shadow: 0 5px 15px rgba(0,0,0,.1);
        }

        .showcase-content {
            display: flex;
            flex-direction: column;
        }

        #showcase-name {
            font-size: 2.2rem;
            line-height: 1.2;
            margin-bottom: .25rem;
            color: var(--text-dark);
        }

        #showcase-title {
            font-size: 1.1rem;
            font-weight: 500;
            color: var(--brand-purple);
            margin-bottom: 1.5rem;
        }

        #showcase-bio {
            font-size: 1.05rem;
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 25px;
        }

        #showcase-socials a {
            color: var(--text-light);
            font-size: 1.5rem;
            margin-right: 20px;
            text-decoration: none;
            transition: color .3s ease, transform .3s ease;
        }

        #showcase-socials a:hover {
            color: var(--brand-purple);
            transform: scale(1.1);
        }

        .leader-selector {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .selector-card {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            border-radius: 12px;
            cursor: pointer;
            background: var(--white);
            border: 1px solid var(--border-color);
            transition: all .3s ease;
        }

        .selector-card:hover {
            transform: translateX(5px);
            box-shadow: 0 8px 20px rgba(0,0,0,.07);
            border-color: var(--brand-purple);
        }

        .selector-card.active {
            background: var(--bg-light);
            border-color: var(--brand-purple);
            box-shadow: 0 8px 20px rgba(42, 0, 101, 0.1);
        }

        .selector-card img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
        }

        .selector-card .selector-name {
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--text-dark);
        }

        .selector-card .selector-title {
            font-size: .9rem;
            color: var(--text-light);
        }
        
        @media (max-width: 1200px) {
            .insights-grid { min-height: auto; position: static; display: flex; flex-direction: column; gap: 2rem; padding-top: 2rem; }
            .insight-card { position: static; max-width: 100%; }
            .insight-bg-image { display: none; }
            .report-slide-content { max-width: 60%; }
        }
        @media (max-width: 992px) {
            h2 { 
                font-size: 2.2rem;
            }
            .container { padding: 0 30px; }
            .feature-section, .news-grid, .stories-grid, .client-slide { grid-template-columns: 1fr; gap: 3rem; }
            .feature-content-box { box-shadow: none; padding: 30px; }
            .client-slide .feature-image { 
                order: 1; 
                height: auto;
                max-height: 400px;
            }
            .client-slide .feature-content-box { 
                order: 2;
                min-height: auto;
                margin-right: 0;
            }
            .news-image-column { max-height: 400px; }
            .news-content-wrapper h2 {
                margin-top: 4rem;
            }
            .report-slide-content { max-width: 75%; background: linear-gradient(90deg, rgba(42, 0, 101, 0.95), rgba(230, 0, 122, 0.95)); }
            .stories-small-list { gap: 1.5rem; }
            
            .leadership-grid-new {
                grid-template-columns: 1fr;
            }
            
            .leader-showcase {
                position: static;
            }
        }
        @media (max-width: 768px) {
            h2 { font-size: 1.8rem; margin-bottom: 2rem; }
            .container { padding: 0 20px; }
            
            .hero-content { 
                position: relative;
                top: auto;
                left: auto;
                transform: none;
                animation: none;
                opacity: 1;
                width: 100%; 
                max-width: 100%; 
                padding: 36px 24px; 
                text-align: center; 
                margin: 20px 15px;
                border-radius: 14px;
            }
            .hero {
                display: flex;
                align-items: center;
                justify-content: center;
            }
            .hero-content h1 { font-size: 2.2rem; text-align: center; }
            .hero-content p { font-size: 1rem; }
            .hero-cta-btns {
                justify-content: center;
            }
            .hero-cta-btns a {
                width: 100%;
                max-width: 320px;
            }
            .report-slide { min-height: auto; padding: 60px 0; background-image: none !important; background-color: var(--brand-purple); }
            .report-slide-content { max-width: 100%; padding: 40px 20px; text-align: center; background: none; }
            .report-slide-content h2 { text-align: center; }
            .report-slide .slider-nav { justify-content: center; }
            
            
            
            
            
            .leader-showcase {
                grid-template-columns: 1fr;
                gap: 25px;
                padding: 30px;
                text-align: center;
            }
            
            .showcase-content {
                align-items: center;
            }
            
            #showcase-name {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 576px) {
            h3 { font-size: 1.5rem; }
            .container { padding: 0 15px; }
            .hero-content h1 { font-size: 2.2rem; }
            .insight-card { padding: 25px; } .insight-card h3 { font-size: 1.6rem; }
            .news-list-item h3 { font-size: 1.3rem; }
            .story-large-card-content { padding: 25px; } .story-large-card h3 { font-size: 1.6rem; } .story-small-card h3 { font-size: 1.3rem; }
            .report-slide-content h2 { font-size: 2rem; }
            .stories-small-list { gap: 1.2rem; }
            
            
            
            
        }
        .whatsapp-float {
          position: fixed;
          bottom: 25px;
          right: 25px;
          width: 60px;
          height: 60px;
          background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
          color: #ffffff !important;
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 32px;
          box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
          z-index: 9999;
          transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
          text-decoration: none;
        }

        .whatsapp-float:hover {
          transform: translateY(-4px) scale(1.08);
          box-shadow: 0 10px 25px rgba(37, 211, 102, 0.65);
          color: #ffffff !important;
        }
/* ===== HERO CTA BUTTON ===== */

/* ADD > ARROW */

/* Hover effect */

/* Arrow moves right on hover */

/* Container to keep buttons side-by-side */

/* Ensure buttons don't have individual top margins anymore */


/* =========================================
   FEATURE SECTION – UPDATED & MODERN
========================================= */

.feature-section-wrapper {
    background: linear-gradient(135deg, #0b071a, #1a0533, #071526, #2a0845, #081d33, #150036);
    background-size: 350% 350%;
    animation: techBgGradientFlow 10s ease infinite;
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

/* Ambient Glowing Light Orbs */
.feature-section-wrapper::before {
    content: "";
    position: absolute;
    top: -10%;
    left: 5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(128, 51, 245, 0.38) 0%, rgba(217, 43, 151, 0.22) 40%, rgba(0, 0, 0, 0) 70%);
    filter: blur(85px);
    animation: ambientGlowDrift1 9s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

.feature-section-wrapper::after {
    content: "";
    position: absolute;
    bottom: -10%;
    right: 5%;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.32) 0%, rgba(254, 171, 76, 0.28) 45%, rgba(0, 0, 0, 0) 75%);
    filter: blur(90px);
    animation: ambientGlowDrift2 11s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

@keyframes techBgGradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes ambientGlowDrift1 {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translate(120px, 80px) scale(1.2);
        opacity: 0.8;
    }
}

@keyframes ambientGlowDrift2 {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translate(-100px, -70px) scale(1.18);
        opacity: 0.85;
    }
}

.feature-section-wrapper .container {
    max-width: 1320px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.feature-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto;
}

/* Content Card - Glossy Black Glass UI */
.feature-content-box {
    background-color: #0b0d18;
    background: linear-gradient(145deg, rgba(22, 24, 36, 0.95) 0%, rgba(8, 9, 15, 0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 44px 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.85), 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 5;
    margin-right: -130px;
    margin-top: 35px;
    align-self: center;
    overflow: hidden;
}

/* Top Accent Line */
.feature-content-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #5300FC 0%, #B425BC 25%, #D326D6 50%, #E159A0 75%, #FEAB4C 100%);
    border-radius: 0;
}

.feature-badge {
    display: inline-block;
    padding: 5px 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.25);
    border-radius: 4px;
    margin-bottom: 12px;
}

/* Heading */
.feature-content-box h2 {
    font-size: 2.15rem;
    font-weight: 800;
    color: #ffffff;
    display: block;
    margin: 0 0 10px 0;
    letter-spacing: -0.5px;
    line-height: 1.25;
}

.feature-content-box h2 .highlight-text {
    background: linear-gradient(90deg, #5300FC 0%, #B425BC 25%, #D326D6 50%, #E159A0 75%, #FEAB4C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-content-box h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #f1f5f9;
    margin: 0 0 12px 0;
    text-align: left;
}

.feature-content-box p {
    font-size: 0.96rem;
    color: #cbd5e1;
    font-weight: 400;
    line-height: 1.65;
    margin-bottom: 22px;
}

/* Feature Grid for Bullet Points */
.feature-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (max-width: 640px) {
    .feature-points {
        grid-template-columns: 1fr;
    }
}

.feature-points li {
    position: relative;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.05);
    padding: 14px 16px;
    border-radius: 8px;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.point-icon-box {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(128, 51, 245, 0.22);
    border: 1px solid rgba(168, 85, 247, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #c084fc;
    margin-bottom: 10px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-points li:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}

.feature-points li:hover .point-icon-box {
    transform: scale(1.1) translateY(-2px);
    background: linear-gradient(135deg, #5300FC 0%, #B425BC 40%, #D326D6 70%, #FEAB4C 100%);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(83, 0, 252, 0.35);
    border-color: transparent;
}

.feature-points li strong {
    display: block;
    margin-bottom: 3px;
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 700;
}

.feature-points li p {
    font-size: 0.82rem;
    color: #ffffff;
    font-weight: 400;
    line-height: 1.45;
    margin: 0;
}

.feature-points li br {
    display: none;
}

.feature-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 1;
    margin-top: -35px;
}

/* Image Card Frame - Expanded Clean Proportions */
.feature-image-card {
    position: relative;
    background: #0c1017;
    border-radius: 0;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
    height: 100%;
    min-height: 580px;
    display: flex;
    flex-direction: column;
}

.feature-image-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #6000ED 0%, #A100DB 25%, #D92B97 50%, #F55B7A 75%, #FF9C45 100%);
    z-index: 2;
}

.feature-image-card img {
    width: 100%;
    height: 100%;
    min-height: 580px;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
    display: block;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.7s ease;
    filter: brightness(0.95) contrast(1.02);
}

.feature-image-card:hover {
    box-shadow: 0 30px 75px rgba(0, 0, 0, 0.7), 0 0 35px rgba(96, 0, 237, 0.18);
    border-color: rgba(161, 0, 219, 0.35);
}

.feature-image-card:hover img {
    transform: scale(1.06);
    filter: brightness(1.06) contrast(1.05);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1200px) {
    .feature-section {
        grid-template-columns: 1fr 1fr;
    }
    .feature-content-box {
        margin-right: -80px;
        padding: 36px 30px;
    }
    .feature-image-card,
    .feature-image-card img {
        min-height: 500px;
    }
}

@media (max-width: 992px) {
    .feature-section-wrapper {
        padding: 50px 0;
    }

    .feature-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-content-box {
        margin-right: 0;
        margin-top: 0;
        padding: 32px 22px;
    }

    .feature-image {
        margin-top: 0;
    }

    .feature-image-card,
    .feature-image-card img {
        height: auto;
        min-height: 320px;
    }

    .feature-content-box h2{
        font-size: 1.85rem;
    }
}

@media (max-width: 576px) {
    .feature-section-wrapper {
        padding: 50px 0;
    }

    .feature-content-box {
        padding: 28px 18px;
        border-radius: 14px;
    }

    .feature-content-box h2 {
        font-size: 1.7rem;
        line-height: 1.3;
    }

    .feature-content-box h4 {
        font-size: 1rem;
        text-align: left;
    }

    .feature-content-box p {
        font-size: 0.92rem;
        margin-bottom: 18px;
    }

    .feature-points {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .feature-points li {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 14px 16px;
        border-radius: 10px;
        margin-bottom: 0;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    }
}

.who-we-work-with,
.services-overview,
.our-process,

h2 {
  text-align: center;
  margin-bottom: 25px;
}

.section-intro,
.section-note,
.process-note,

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,.08);
}

/* ================= STRONG CTA ================= */
.strong-cta {
  width: 100%;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: #0b0f19;
  background: 
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(83, 0, 252, 0.25) 0%, rgba(11, 15, 25, 0) 70%),
    radial-gradient(circle at 15% 100%, rgba(211, 38, 214, 0.15) 0%, rgba(11, 15, 25, 0) 50%),
    radial-gradient(circle at 85% 100%, rgba(99, 102, 241, 0.15) 0%, rgba(11, 15, 25, 0) 50%),
    linear-gradient(180deg, #0d121f 0%, #080c14 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.strong-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 900px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #5300FC 25%, #D326D6 50%, #FEAB4C 75%, transparent);
  pointer-events: none;
  z-index: 1;
}

.strong-cta-box {
  background: transparent;
  border-radius: 0;
  padding: 0;
  text-align: center;
  color: #ffffff;
  position: relative;
  z-index: 2;
  box-shadow: none;
  max-width: 860px;
  margin: 0 auto;
}

.strong-cta-box::before {
  display: none;
}

.strong-cta-box h2 {
  font-size: 2.75rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  line-height: 1.25;
  position: relative;
  z-index: 1;
}

.strong-cta-box h2 .highlight-text {
  background: linear-gradient(90deg, #a855f7 0%, #d946ef 35%, #ec4899 70%, #f97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.strong-cta-desc {
  font-size: 1.15rem;
  color: #cbd5e1;
  line-height: 1.75;
  max-width: 720px;
  margin: 0 auto 30px;
  font-weight: 400;
  position: relative;
  z-index: 1;
}

.strong-cta .cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px 44px;
  margin: 8px auto 26px auto;
  background: #ffffff;
  color: #0b0f19;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.2px;
  text-decoration: none;
  border: 2px solid #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), 0 0 25px rgba(255, 255, 255, 0.18);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 2;
  cursor: pointer;
}

.strong-cta .cta-btn i {
  font-size: 1.05rem;
  color: #5300FC;
  transition: transform 0.3s ease, color 0.3s ease;
}

.strong-cta .cta-btn:hover {
  background: #ffffff;
  color: #5300FC;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45), 0 0 40px rgba(180, 37, 188, 0.4);
}

.strong-cta .cta-btn:hover i {
  transform: translateX(6px);
  color: #B425BC;
}

.strong-cta .cta-trust {
  margin-top: 0;
  font-size: 0.95rem;
  color: #94a3b8;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  z-index: 2;
}

.strong-cta .cta-trust i {
  color: #38bdf8;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .strong-cta {
    padding: 60px 0;
  }
  .strong-cta-box {
    padding: 0 10px;
  }
  .strong-cta-box h2 {
    font-size: 1.9rem;
    margin-bottom: 16px;
  }
  .strong-cta-desc {
    font-size: 1rem;
    margin-bottom: 24px;
  }
  .strong-cta .cta-btn {
    width: 100%;
    max-width: 420px;
    padding: 16px 24px;
    font-size: 1rem;
    margin: 8px auto 20px auto;
  }
}

/* ================= OUR PROCESS ================= */

.our-process {
  background: linear-gradient(180deg, #ffffff, #f6f7fb);
  padding: 100px 0;
}

.our-process h2 {
  text-align: center;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.process-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 80px rgba(0,0,0,0.15);
}

.process-card .step {
  font-size: 2.2rem;
  font-weight: 700;
  color: #7c2cff;
  margin-bottom: 15px;
  display: block;
}

.process-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.process-card p {
  color: #555;
  line-height: 1.7;
}

.process-note {
  text-align: center;
  margin-top: 50px;
  color: #666;
  font-size: 1rem;
}

/* ================= WHY WEBARCLIGHT ================= */

/* =========================================
   CORE SERVICES UPDATED STYLES
========================================= */
/* =========================================
   CORE SERVICES & INDUSTRIES WE SUPPORT
========================================= */
.services-overview {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafd 0%, #f4f2ff 100%);
    position: relative;
    overflow: hidden;
}

.services-overview .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.services-overview h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 12px 0;
    letter-spacing: -0.5px;
}

.services-overview h2 .highlight-text {
    background: linear-gradient(90deg, #5300FC 0%, #B425BC 30%, #D326D6 60%, #FEAB4C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-subheading {
    text-align: center;
    font-size: 1.1rem;
    color: #1e293b;
    font-weight: 600;
    margin: 0 auto 55px auto;
    display: block;
    max-width: 750px;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    text-align: left;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.services-grid .service-card {
    background: #ffffff;
    padding: 36px 30px;
    border-radius: 20px;
    border: 1px solid rgba(128, 51, 245, 0.12);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04), 0 2px 6px rgba(0, 0, 0, 0.02);
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.services-grid .service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #6000ED 0%, #A100DB 25%, #D92B97 50%, #F55B7A 75%, #FF9C45 100%);
    opacity: 0.85;
    transition: height 0.3s ease, opacity 0.3s ease;
}

.services-grid .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 45px rgba(128, 51, 245, 0.16);
    border-color: rgba(128, 51, 245, 0.3);
}

.services-grid .service-card:hover::before {
    height: 6px;
    opacity: 1;
}

.industry-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 112, 173, 0.08) 0%, rgba(128, 51, 245, 0.14) 100%);
    border: 1px solid rgba(128, 51, 245, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #8033f5;
    margin-bottom: 22px;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.services-grid .service-card:hover .industry-icon {
    transform: scale(1.1) rotate(-4deg);
    background: linear-gradient(135deg, #8033f5 0%, #D93BC8 100%);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(128, 51, 245, 0.3);
    border-color: transparent;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 10px 0;
}

.service-card p {
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.6;
    font-weight: 500;
    margin: 0;
}
/* Mini CTA Buttons Row */
.service-card-btns {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.btn-mini {
    font-size: 0.8rem;
    font-weight: 700;
    padding: 8px 12px;
    border-radius: 6px;
    text-transform: uppercase;
    transition: all 0.2s ease;
    border: 1px solid #eee;
    background: #f8f9fa;
    color: var(--text-dark);
    flex: 1;
    text-align: center;
}

.btn-mini:hover {
    background: var(--brand-purple);
    color: #fff;
    border-color: var(--brand-purple);
}

.btn-mini.primary-mini {
    background: #fff;
    border: 1px solid var(--brand-magenta);
    color: var(--brand-magenta);
}

.btn-mini.primary-mini:hover {
    background: var(--brand-magenta);
    color: #fff;
}

@media (max-width: 576px) {
    .service-card-btns {
        flex-direction: column;
    }
}
/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .our-process,
  

  .process-card {
    padding: 28px;
  }
}
/* ================= WHO WE WORK WITH ================= */

.who-we-work-with {
  padding: 110px 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(96, 0, 237, 0.05) 0%, rgba(254, 171, 76, 0.03) 50%, transparent 80%), #f8fafc;
  position: relative;
  overflow: hidden;
}

.who-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
  position: relative;
}

.who-header h2 {
  font-size: 2.75rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.who-header h2 .highlight-text {
  background: linear-gradient(90deg, #5300FC 0%, #B425BC 30%, #D326D6 60%, #FEAB4C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.who-header p {
  font-size: 1.12rem;
  color: #1e293b;
  font-weight: 500;
  line-height: 1.7;
  max-width: 740px;
  margin: 0 auto;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-bottom: 45px;
  position: relative;
}

@media (max-width: 1100px) {
  .who-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .who-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.who-card.approach-card {
  padding: 38px 28px;
  border-radius: 20px;
  border: 1.5px solid #eef2f7;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.who-card.approach-card.step-1 {
  background: linear-gradient(155deg, #ffffff 0%, #f7f4ff 60%, #efeaff 100%);
  border-color: rgba(83, 0, 252, 0.16);
}

.who-card.approach-card.step-2 {
  background: linear-gradient(155deg, #ffffff 0%, #faf4fc 60%, #f5e7f9 100%);
  border-color: rgba(180, 37, 188, 0.16);
}

.who-card.approach-card.step-3 {
  background: linear-gradient(155deg, #ffffff 0%, #fdf4f9 60%, #fae5f2 100%);
  border-color: rgba(211, 38, 214, 0.16);
}

.who-card.approach-card.step-4 {
  background: linear-gradient(155deg, #ffffff 0%, #fff7ee 60%, #fdead6 100%);
  border-color: rgba(254, 171, 76, 0.22);
}

.who-card.approach-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

.who-card.approach-card.step-1::before {
  background: linear-gradient(90deg, #5300FC, #7c3aed);
}

.who-card.approach-card.step-2::before {
  background: linear-gradient(90deg, #7c3aed, #B425BC);
}

.who-card.approach-card.step-3::before {
  background: linear-gradient(90deg, #B425BC, #E159A0);
}

.who-card.approach-card.step-4::before {
  background: linear-gradient(90deg, #E159A0, #FEAB4C);
}

.who-card.approach-card:hover {
  transform: translateY(-10px);
}

.who-card.approach-card:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.who-card.approach-card.step-1:hover {
  border-color: rgba(83, 0, 252, 0.4);
  background: linear-gradient(155deg, #ffffff 0%, #f2ecff 100%);
  box-shadow: 0 24px 50px rgba(83, 0, 252, 0.18), 0 4px 12px rgba(0, 0, 0, 0.02);
}

.who-card.approach-card.step-2:hover {
  border-color: rgba(180, 37, 188, 0.4);
  background: linear-gradient(155deg, #ffffff 0%, #f7e4fb 100%);
  box-shadow: 0 24px 50px rgba(180, 37, 188, 0.18), 0 4px 12px rgba(0, 0, 0, 0.02);
}

.who-card.approach-card.step-3:hover {
  border-color: rgba(211, 38, 214, 0.4);
  background: linear-gradient(155deg, #ffffff 0%, #fbe1f0 100%);
  box-shadow: 0 24px 50px rgba(211, 38, 214, 0.18), 0 4px 12px rgba(0, 0, 0, 0.02);
}

.who-card.approach-card.step-4:hover {
  border-color: rgba(254, 171, 76, 0.45);
  background: linear-gradient(155deg, #ffffff 0%, #fde4cb 100%);
  box-shadow: 0 24px 50px rgba(254, 171, 76, 0.2), 0 4px 12px rgba(0, 0, 0, 0.02);
}

.who-card.approach-card .icon-box {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 24px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.who-card.approach-card.step-1 .icon-box {
  background: linear-gradient(135deg, #5300FC 0%, #7c3aed 100%);
  box-shadow: 0 10px 24px rgba(83, 0, 252, 0.28);
}

.who-card.approach-card.step-2 .icon-box {
  background: linear-gradient(135deg, #9333ea 0%, #B425BC 100%);
  box-shadow: 0 10px 24px rgba(180, 37, 188, 0.28);
}

.who-card.approach-card.step-3 .icon-box {
  background: linear-gradient(135deg, #D326D6 0%, #E159A0 100%);
  box-shadow: 0 10px 24px rgba(211, 38, 214, 0.28);
}

.who-card.approach-card.step-4 .icon-box {
  background: linear-gradient(135deg, #E159A0 0%, #FEAB4C 100%);
  box-shadow: 0 10px 24px rgba(254, 171, 76, 0.32);
}

.who-card.approach-card:hover .icon-box {
  transform: scale(1.12) translateY(-2px) rotate(-4deg);
}

.who-card.approach-card h4 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 12px 0;
  letter-spacing: -0.3px;
  transition: color 0.35s ease;
}

.who-card.approach-card.step-1:hover h4 { color: #5300FC; }
.who-card.approach-card.step-2:hover h4 { color: #B425BC; }
.who-card.approach-card.step-3:hover h4 { color: #D326D6; }
.who-card.approach-card.step-4:hover h4 { color: #ea580c; }

.who-card.approach-card p {
  font-size: 0.96rem;
  color: #475569;
  line-height: 1.65;
  font-weight: 450;
  margin: 0;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .who-we-work-with {
    padding: 70px 0;
  }

  .who-header h2 {
    font-size: 1.9rem;
  }
}

/* ================= VALUE / DIFFERENTIATOR ================= */

.our-value-highlight {
  padding: 120px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f6f7fb 100%);
}

.value-wrapper {
  max-width: 900px;
  margin: auto;
  text-align: center;
  background: #ffffff;
  padding: 70px 60px;
  border-radius: 22px;
  box-shadow: 0 35px 90px rgba(0,0,0,0.1);
  position: relative;
}

/* Accent bar */
.value-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 5px;
  background: linear-gradient(90deg, #7c2cff, #e6007a);
  border-radius: 0 0 10px 10px;
}

.value-wrapper h2 {
  font-size: 2.75rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 25px;
  letter-spacing: -0.5px;
}

.value-wrapper h2 .highlight-text {
  background: linear-gradient(90deg, #5300FC 0%, #B425BC 30%, #D326D6 60%, #FEAB4C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.value-lead {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 20px;
}

.value-text {
  font-size: 1.05rem;
  color: #666;
  line-height: 1.8;
  max-width: 750px;
  margin: 0 auto 40px;
}

.value-points {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.value-point {
  background: #f9f9ff;
  padding: 16px 28px;
  border-radius: 50px;
  font-weight: 500;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  color: #333;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .our-value-highlight {
    padding: 80px 0;
  }

  .value-wrapper {
    padding: 45px 30px;
  }

  .value-wrapper h2 {
    font-size: 2rem;
  }

  .value-points {
    gap: 15px;
  }
}

/* =========================================
   GLOBAL GRADIENT BORDER FOR SMALL BOXES
========================================= */

/* Common card base */
.gradient-border-card {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  padding: 30px 28px;
  box-shadow: 0 22px 55px rgba(0,0,0,0.08);
  overflow: hidden;
}

/* Left gradient border */
.gradient-border-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(
    180deg,
    #7c2cff,
    #a855f7,
    #e6007a
  );
  border-radius: 6px 0 0 6px;
}

/* Hover polish */
.gradient-border-card:hover {
  transform: translateY(-6px);
  transition: all 0.35s ease;
  box-shadow: 0 40px 90px rgba(0,0,0,0.14);
}
/* ===============================
   GLOBAL GRADIENT BORDER CARD
================================ */

.gradient-border-card {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  padding: 30px 28px;
  box-shadow: 0 22px 55px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: all 0.35s ease;
}

.gradient-border-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(
    180deg,
    #6000ED 0%,
    #A100DB 25%,
    #D92B97 50%,
    #F55B7A 75%,
    #FF9C45 100%
  );
  border-radius: 5px 0 0 5px;
}

.gradient-border-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 90px rgba(0,0,0,0.14);
}

/* Small cards variant */
.gradient-border-card.thin::before {
  width: 4px;
}
/* =========================================
   TRUST PROOF BAR (AREA #2)
========================================= */

/* ===== TRUST BAR MOBILE FINAL ===== */

.process-cta-bottom {
    text-align: center;
    margin-top: 50px;
}

.process-cta-bottom .btn-outline {
    border: 2px solid var(--brand-purple);
    color: var(--brand-purple);
    font-weight: 700;
    padding: 15px 35px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.process-cta-bottom .btn-outline:hover {
    background: var(--brand-purple);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(42, 0, 101, 0.2);
}

/* =========================================
   SECTION 7: FEATURED WORK (WHAT WE'VE BUILT - EYE-FRIENDLY NAVY THEME)
========================================= */
.home-case-studies {
    padding: 100px 0 95px;
    background: #0f172a;
    border-top: 1px solid #1e293b;
    border-bottom: 1px solid #1e293b;
    position: relative;
    overflow: hidden;
}

.featured-work-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 52px auto;
    position: relative;
}

.featured-work-header h2 {
    font-size: 2.85rem;
    font-weight: 800;
    color: #f8fafc;
    margin-bottom: 0;
    letter-spacing: -0.5px;
}

.featured-work-header h2 .highlight-text {
    background: linear-gradient(90deg, #a855f7 0%, #d946ef 35%, #ec4899 70%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.featured-work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.featured-work-card {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 20px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.featured-work-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #5300FC 0%, #B425BC 25%, #D326D6 50%, #E159A0 75%, #FEAB4C 100%);
    opacity: 0.35;
    transition: opacity 0.35s ease;
}

.featured-work-card:hover {
    transform: translateY(-6px);
    border-color: #64748b;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35), 0 0 20px rgba(83, 0, 252, 0.12);
}

.featured-work-card:hover::before {
    opacity: 1;
}

.featured-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.featured-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(99, 102, 241, 0.12);
    border: 1px solid rgba(99, 102, 241, 0.22);
    color: #a5b4fc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    transition: all 0.35s ease;
}

.featured-work-card:hover .featured-card-icon {
    background: linear-gradient(135deg, #5300FC 0%, #B425BC 50%, #FEAB4C 100%);
    color: #ffffff;
    border-color: transparent;
    transform: scale(1.06);
    box-shadow: 0 6px 18px rgba(83, 0, 252, 0.25);
}

.featured-tag {
    font-size: 0.8rem;
    font-weight: 600;
    color: #cbd5e1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4px 13px;
    border-radius: 20px;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.featured-work-card:hover .featured-tag {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.2);
    color: #f1f5f9;
}

.featured-work-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.featured-work-card p {
    font-size: 0.98rem;
    line-height: 1.68;
    color: #94a3b8;
    font-weight: 400;
    margin-bottom: 0;
}

.featured-work-cta {
    text-align: center;
    margin-top: 50px;
}

@media (max-width: 768px) {
    .home-case-studies {
        padding: 65px 0;
    }
    .featured-work-header h2 {
        font-size: 2.1rem;
    }
    .featured-work-grid {
        grid-template-columns: 1fr;
    }
    .featured-work-card {
        padding: 30px 24px;
    }
}

/* =========================================
   SECTION 8: INDUSTRIES (BALANCED SYMMETRICAL UI)
========================================= */
.industries-serve-section {
    padding: 95px 0 90px;
    background: #fafbfd;
    border-top: 1px solid #eef2f6;
    border-bottom: 1px solid #eef2f6;
    position: relative;
    overflow: hidden;
}

.industries-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 52px auto;
    position: relative;
}

.industries-header h2 {
    font-size: 2.85rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0;
    letter-spacing: -0.5px;
}

.industries-header h2 .highlight-text {
    background: linear-gradient(90deg, #5300FC 0%, #B425BC 30%, #D326D6 60%, #FEAB4C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 28px;
    max-width: 1140px;
    margin: 0 auto;
}

.industry-serve-card {
    grid-column: span 2;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 34px 28px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.03);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

/* Center the bottom 2 cards in the 6-col grid */
.industry-serve-card:nth-child(4) {
    grid-column: 2 / span 2;
}

.industry-serve-card:nth-child(5) {
    grid-column: 4 / span 2;
}

.industry-serve-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3.5px;
    background: linear-gradient(90deg, #5300FC 0%, #B425BC 25%, #D326D6 50%, #E159A0 75%, #FEAB4C 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.industry-serve-card:hover {
    transform: translateY(-6px);
    border-color: #5300FC;
    box-shadow: 0 18px 40px rgba(83, 0, 252, 0.08), 0 2px 6px rgba(0, 0, 0, 0.02);
}

.industry-serve-card:hover::before {
    opacity: 1;
}

.industry-card-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.industry-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(83, 0, 252, 0.06);
    border: 1px solid rgba(83, 0, 252, 0.14);
    color: #5300FC;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.industry-serve-card:hover .industry-icon-box {
    background: linear-gradient(135deg, #5300FC 0%, #B425BC 40%, #D326D6 70%, #FEAB4C 100%);
    color: #ffffff;
    border-color: transparent;
    transform: scale(1.06);
    box-shadow: 0 8px 20px rgba(83, 0, 252, 0.25);
}

.industry-card-num {
    font-size: 0.85rem;
    font-weight: 700;
    color: #94a3b8;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.industry-serve-card:hover .industry-card-num {
    color: #5300FC;
    border-color: rgba(83, 0, 252, 0.2);
    background: rgba(83, 0, 252, 0.05);
}

.industry-serve-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.industry-serve-card p {
    font-size: 0.96rem;
    line-height: 1.65;
    color: #475569;
    font-weight: 400;
    margin-bottom: 0;
}

.industries-note-bar {
    margin-top: 48px;
    text-align: center;
}

.industries-note-bar p {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #334155;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.03);
    margin: 0;
}

.industries-note-bar p i {
    color: #5300FC;
}

@media (max-width: 1024px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }
    .industry-serve-card {
        grid-column: span 1 !important;
    }
    .industry-serve-card:nth-child(5) {
        grid-column: 1 / span 2 !important;
        max-width: 520px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .industries-serve-section {
        padding: 65px 0;
    }
    .industries-header h2 {
        font-size: 2.1rem;
    }
    .industries-grid {
        grid-template-columns: 1fr;
    }
    .industry-serve-card:nth-child(5) {
        grid-column: span 1 !important;
        max-width: 100%;
    }
}

/* =========================================
   SECTION 9: FINAL CTA SECTION (MATCHED TO SCREENSHOT UI)
========================================= */
.final-streamline-cta-section {
    width: 100%;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 100px 32px;
    background: linear-gradient(180deg, #0e0a1a 0%, #130e24 50%, #0a0814 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.final-streamline-cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #5300FC 0%, #B425BC 35%, #D326D6 70%, #FEAB4C 100%);
}

.final-streamline-wrapper {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.final-streamline-wrapper h2 {
    font-size: 2.85rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    line-height: 1.25;
}

.final-streamline-wrapper h2 .highlight-text {
    background: linear-gradient(90deg, #d326d6 0%, #feab4c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.final-streamline-wrapper p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #94a3b8;
    font-weight: 400;
    max-width: 880px;
    margin: 0 auto 30px auto;
}

.final-streamline-wrapper .streamline-trust {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    font-weight: 500;
    color: #cbd5e1;
    margin-bottom: 38px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 22px;
    border-radius: 50px;
}

.final-streamline-wrapper .streamline-trust i {
    color: #feab4c;
    font-size: 0.95rem;
}

.final-streamline-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.btn-primary-cta {
    background: linear-gradient(90deg, #5300FC 0%, #B425BC 40%, #E159A0 75%, #FEAB4C 100%);
    color: #ffffff !important;
    padding: 15px 38px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 8px 24px rgba(180, 37, 188, 0.35);
}

.btn-primary-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(180, 37, 188, 0.5);
    color: #ffffff !important;
}

.btn-secondary-cta {
    background: rgba(255, 255, 255, 0.05);
    color: #f1f5f9 !important;
    padding: 15px 34px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.16);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-secondary-cta:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff !important;
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .final-streamline-cta-section {
        padding: 70px 20px;
    }
    .final-streamline-wrapper h2 {
        font-size: 2.1rem;
    }
    .final-streamline-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    .btn-primary-cta, .btn-secondary-cta {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 0.96rem;
    }
}

/* RESPONSIVE PROOF BAR */

/* ================= MOBILE VIEW (LEADERSHIP) ================= */

@media (max-width: 992px) {
  .leader-showcase {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 35px 30px;
  }

  #showcase-image {
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
    display: block;
  }

  .showcase-content {
    text-align: center;
  }

  #showcase-name {
    font-size: 1.9rem;
  }

  #showcase-title {
    font-size: 1.05rem;
  }

  #showcase-bio {
    font-size: 1rem;
  }

  #showcase-socials {
    justify-content: center;
  }
}

/* ================= SMALL MOBILE ================= */

@media (max-width: 576px) {
  .leader-showcase {
    padding: 28px 22px;
    border-radius: 18px;
  }

  /* Softer animation on mobile */
  .leader-showcase.animate {
    animation: slideFadeMobile 0.4s ease;
  }

  @keyframes slideFadeMobile {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  #showcase-image {
    max-width: 220px;
    border-radius: 14px;
  }

  #showcase-name {
    font-size: 1.7rem;
  }

  #showcase-bio {
    font-size: 0.95rem;
  }

  /* Selector list becomes horizontal */
  .leader-selector {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .leader-selector::-webkit-scrollbar {
    display: none;
  }

  .selector-card {
    min-width: 220px;
    flex-shrink: 0;
  }

  .selector-card:hover {
    transform: none;
  }
}

/* =========================================
   SECTION 6: WHY WEBARCLIGHT
========================================= */
.why-power-section {
    padding: 95px 0 90px;
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    position: relative;
}

.why-power-section .who-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 55px auto;
    position: relative;
}

.why-power-section h2 {
    font-size: 2.85rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0;
    letter-spacing: -0.5px;
}

.why-power-section h2 .highlight-text {
    background: linear-gradient(90deg, #5300FC 0%, #B425BC 30%, #D326D6 60%, #FEAB4C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-power-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 0;
}

.why-power-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 34px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.why-power-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3.5px;
    background: linear-gradient(90deg, #5300FC 0%, #B425BC 25%, #D326D6 50%, #E159A0 75%, #FEAB4C 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.why-power-card:hover {
    transform: translateY(-6px);
    border-color: #5300FC;
    box-shadow: 0 18px 40px rgba(83, 0, 252, 0.09), 0 2px 6px rgba(0, 0, 0, 0.02);
}

.why-power-card:hover::before {
    opacity: 1;
}

.why-power-card .icon-box {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(83, 0, 252, 0.07);
    border: 1px solid rgba(83, 0, 252, 0.14);
    color: #5300FC;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 22px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-power-card:hover .icon-box {
    background: linear-gradient(135deg, #5300FC 0%, #B425BC 40%, #D326D6 70%, #FEAB4C 100%);
    color: #ffffff;
    border-color: transparent;
    transform: scale(1.06);
    box-shadow: 0 8px 20px rgba(83, 0, 252, 0.25);
}

.why-power-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.why-power-card p {
    font-size: 0.98rem;
    line-height: 1.65;
    color: #475569;
    font-weight: 500;
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .why-power-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }
}

@media (max-width: 768px) {
    .why-power-section {
        padding: 65px 0;
    }
    .why-power-section h2 {
        font-size: 2.1rem;
    }
    .why-power-grid {
        grid-template-columns: 1fr;
    }
}

/* ================= OUR ACHIEVEMENTS (CLEAN EYE-FRIENDLY UI) ================= */
.achievements-section {
    padding: 95px 0 90px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.achievements-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #5300FC;
    background: rgba(83, 0, 252, 0.06);
    border: 1px solid rgba(83, 0, 252, 0.16);
    border-radius: 30px;
    padding: 6px 18px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.achievements-title {
    font-size: 2.85rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 52px;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 2;
}

.achievements-title .highlight-text {
    background: linear-gradient(90deg, #5300FC 0%, #B425BC 30%, #D326D6 60%, #FEAB4C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    position: relative;
    z-index: 2;
}

.achievement-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 38px 24px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 220px;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.achievement-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3.5px;
    background: linear-gradient(90deg, #5300FC 0%, #B425BC 25%, #D326D6 50%, #E159A0 75%, #FEAB4C 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.achievement-card:hover {
    transform: translateY(-6px);
    border-color: #5300FC;
    box-shadow: 0 16px 36px rgba(83, 0, 252, 0.09), 0 2px 6px rgba(0, 0, 0, 0.02);
}

.achievement-card:hover::before {
    opacity: 1;
}

.achievement-number {
    font-size: 3.2rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    letter-spacing: -1px;
}

.achievement-number .symbol {
    background: linear-gradient(135deg, #5300FC 0%, #D326D6 50%, #FEAB4C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    margin-left: 4px;
}

.achievement-label {
    font-size: 1rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 22px;
    letter-spacing: 0.2px;
}

.achievement-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(83, 0, 252, 0.06);
    color: #5300FC;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    margin-top: auto;
}

.achievement-card:hover .achievement-icon {
    background: linear-gradient(135deg, #5300FC 0%, #B425BC 50%, #FEAB4C 100%);
    color: #ffffff;
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(83, 0, 252, 0.25);
}

@media (max-width: 1024px) {
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }
    .achievements-title {
        font-size: 2.3rem;
        margin-bottom: 40px;
    }
}

@media (max-width: 600px) {
    .achievements-section {
        padding: 65px 0;
    }
    .achievements-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
    }
    .achievements-title {
        font-size: 1.85rem;
    }
    .achievement-number {
        font-size: 2.7rem;
    }
}

/* ================= COMMON CHALLENGES WE SOLVE ================= */
.challenges-section {
    padding: 95px 0 85px;
    background: radial-gradient(circle at 50% 20%, rgba(83, 0, 252, 0.03) 0%, transparent 60%), linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.challenges-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 55px auto;
    position: relative;
}

.challenges-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.challenges-header h2 .highlight-text {
    background: linear-gradient(90deg, #5300FC 0%, #D326D6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.challenges-lead {
    font-size: 1.12rem;
    line-height: 1.7;
    color: #475569;
    font-weight: 400;
    margin: 0 auto;
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.challenge-card {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 20px;
    padding: 34px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03), 0 1px 3px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.challenge-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3.5px;
    background: linear-gradient(90deg, #5300FC 0%, #D326D6 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.challenge-card:hover {
    transform: translateY(-7px) scale(1.01);
    border-color: rgba(83, 0, 252, 0.3);
    box-shadow: 0 18px 40px rgba(83, 0, 252, 0.08), 0 6px 18px rgba(0, 0, 0, 0.03);
}

.challenge-card:hover::before {
    opacity: 1;
}

.challenge-icon-box {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(83, 0, 252, 0.08);
    color: #5300FC;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 20px;
    transition: all 0.35s ease;
}

.challenge-card:hover .challenge-icon-box {
    background: linear-gradient(135deg, #5300FC 0%, #D326D6 100%);
    color: #ffffff;
    transform: rotate(-5deg) scale(1.06);
    box-shadow: 0 10px 22px rgba(83, 0, 252, 0.25);
}

.challenge-card h3 {
    font-size: 1.28rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.challenge-card p {
    font-size: 0.96rem;
    line-height: 1.65;
    color: #64748b;
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .challenges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .challenges-section {
        padding: 70px 0 50px;
    }
    .challenges-header h2 {
        font-size: 2.1rem;
    }
    .challenges-grid {
        grid-template-columns: 1fr;
    }
}

/* ================= SOLUTIONS WE DELIVER (SECTION 4: WHAT WE BUILD - PRYPCO STYLE STACKING CARDS) ================= */
.solutions-deliver-section {
    padding: 90px 0 120px;
    background: #f8fafc;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    position: relative;
    overflow: visible;
}

.solutions-deliver-section.animate-on-scroll.visible {
    transform: none;
}

.solutions-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 58px auto;
    position: relative;
}

.solutions-header h2 {
    font-size: 2.85rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0;
    letter-spacing: -0.5px;
}

.solutions-header h2 .highlight-text {
    background: linear-gradient(90deg, #5300FC 0%, #B425BC 30%, #D326D6 60%, #FEAB4C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.solutions-stack-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    position: relative;
}

.solution-card {
    width: 100%;
    min-height: 460px;
    border-radius: 28px;
    padding: 48px 52px;
    position: sticky;
    top: calc(85px + (var(--card-index, 1) * 16px));
    margin-bottom: 75px;
    box-shadow: 0 24px 50px rgba(59, 40, 246, 0.22), 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
    overflow: hidden;
    color: #ffffff;
    display: flex;
    align-items: center;
}

/* Card Themes - Rich vibrant colors (not fully white & not fully dark) */
.solution-card--indigo,
.solution-card:nth-child(1) {
    --card-index: 1;
    background: linear-gradient(135deg, #3c2fe8 0%, #4f46e5 100%);
    box-shadow: 0 24px 50px rgba(60, 47, 232, 0.25), 0 6px 20px rgba(0, 0, 0, 0.08);
}

.solution-card--violet,
.solution-card:nth-child(2) {
    --card-index: 2;
    background: linear-gradient(135deg, #5b21b6 0%, #6d28d9 100%);
    box-shadow: 0 24px 50px rgba(109, 40, 217, 0.25), 0 6px 20px rgba(0, 0, 0, 0.08);
}

.solution-card--blue,
.solution-card:nth-child(3) {
    --card-index: 3;
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
    box-shadow: 0 24px 50px rgba(37, 99, 235, 0.25), 0 6px 20px rgba(0, 0, 0, 0.08);
}

.solution-card--purple,
.solution-card:nth-child(4) {
    --card-index: 4;
    background: linear-gradient(135deg, #701a75 0%, #86198f 100%);
    box-shadow: 0 24px 50px rgba(134, 25, 143, 0.25), 0 6px 20px rgba(0, 0, 0, 0.08);
}

.solution-card--cyan,
.solution-card:nth-child(5) {
    --card-index: 5;
    background: linear-gradient(135deg, #0369a1 0%, #0284c7 100%);
    box-shadow: 0 24px 50px rgba(2, 132, 199, 0.25), 0 6px 20px rgba(0, 0, 0, 0.08);
}

.solution-card--darkviolet,
.solution-card:nth-child(6) {
    --card-index: 6;
    background: linear-gradient(135deg, #3730a3 0%, #4338ca 100%);
    box-shadow: 0 24px 50px rgba(67, 56, 202, 0.25), 0 6px 20px rgba(0, 0, 0, 0.08);
}

.solution-card:last-child {
    margin-bottom: 30px;
}

.solution-card-body {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 48px;
    align-items: center;
    width: 100%;
}

.solution-card-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.solution-badge {
    display: inline-block;
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 0.2px;
    color: #0f172a;
    background: #d4ff32;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 22px;
}

.solution-card h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.solution-card p {
    font-size: 1.12rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 400;
    margin-bottom: 0;
    max-width: 520px;
}

.solution-card-right {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-card-image-wrap {
    width: 100%;
    height: 330px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.15);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.solution-card:hover .solution-card-image-wrap img {
    transform: scale(1.04);
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .solution-card {
        min-height: 400px;
        padding: 38px 32px;
        top: calc(75px + (var(--card-index, 1) * 14px));
        margin-bottom: 50px;
    }
    .solution-card-body {
        gap: 30px;
    }
    .solution-card h3 {
        font-size: 2rem;
    }
    .solution-card p {
        font-size: 1rem;
    }
    .solution-card-image-wrap {
        height: 270px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .solutions-deliver-section {
        padding: 60px 0 80px;
    }
    .solutions-header h2 {
        font-size: 2.1rem;
    }
    .solutions-header {
        margin-bottom: 35px;
    }
    .solution-card {
        min-height: auto;
        padding: 28px 22px;
        top: calc(70px + (var(--card-index, 1) * 10px));
        margin-bottom: 40px;
        border-radius: 20px;
    }
    .solution-card-body {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .solution-badge {
        font-size: 0.8rem;
        padding: 5px 14px;
        margin-bottom: 14px;
    }
    .solution-card h3 {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }
    .solution-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    .solution-card-image-wrap {
        height: 200px;
        border-radius: 14px;
    }
}

/* ================= SECTION 5: OUTCOMES SECTION ================= */
.outcomes-section {
    padding: 85px 0 80px;
    background: #fafbfd;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.outcomes-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 48px auto;
    position: relative;
}

.outcomes-header h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0;
    letter-spacing: -0.5px;
}

.outcomes-header h2 .highlight-text {
    background: linear-gradient(90deg, #5300FC 0%, #B425BC 30%, #D326D6 60%, #FEAB4C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.outcome-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.outcome-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3.5px;
    background: linear-gradient(90deg, #5300FC 0%, #B425BC 25%, #D326D6 50%, #E159A0 75%, #FEAB4C 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.outcome-card:hover {
    transform: translateY(-5px);
    border-color: #5300FC;
    box-shadow: 0 16px 36px rgba(83, 0, 252, 0.09), 0 2px 6px rgba(0, 0, 0, 0.02);
}

.outcome-card:hover::before {
    opacity: 1;
}

.outcome-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(83, 0, 252, 0.07);
    border: 1px solid rgba(83, 0, 252, 0.14);
    color: #5300FC;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 20px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.outcome-card:hover .outcome-icon-box {
    background: linear-gradient(135deg, #5300FC 0%, #B425BC 40%, #D326D6 70%, #FEAB4C 100%);
    color: #ffffff;
    border-color: transparent;
    transform: scale(1.06);
    box-shadow: 0 8px 20px rgba(83, 0, 252, 0.25);
}

.outcome-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.outcome-card p {
    font-size: 0.98rem;
    line-height: 1.6;
    color: #475569;
    font-weight: 500;
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .outcomes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }
}

@media (max-width: 768px) {
    .outcomes-section {
        padding: 65px 0;
    }
    .outcomes-header h2 {
        font-size: 2.1rem;
    }
    .outcomes-grid {
        grid-template-columns: 1fr;
    }
}

/* ================= TESTIMONIALS ================= */

.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f9f9ff, #ffffff);
}

.testimonial-card-new {
    background: #fff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.3s ease;
    border-left: 5px solid #25D366; /* WhatsApp green */
}

.testimonial-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 80px rgba(0,0,0,0.12);
}

.testimonial-text-new {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-user strong {
    display: block;
    color: var(--brand-purple);
    font-size: 1.1rem;
}

.testimonial-user span {
    font-size: 0.85rem;
    color: #777;
}
/* ================= REVIEWS DASHBOARD (MODERNIZED) ================= */
.reviews-dashboard {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
}

/* SUMMARY CARD */
.review-summary {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(42, 0, 101, 0.07);
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(42, 0, 101, 0.05);
}

/* Vertical Accent on Summary */
.review-summary::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--brand-purple), var(--brand-magenta));
}

.rating-score {
    text-align: center;
    border-right: 1px solid #eee;
    padding-right: 20px;
}

.rating-score h3 {
    font-size: 4rem;
    font-weight: 700;
    color: var(--brand-purple);
    line-height: 1;
    margin-bottom: 10px;
}

.stars {
    color: #FFB800; /* High quality Gold */
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.rating-score p {
    font-weight: 600;
    color: var(--text-light);
    font-size: 1rem;
}

/* PROGRESS BARS */
.rating-bars .bar-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.bar-row span {
    font-weight: 700;
    color: var(--brand-purple);
    min-width: 30px;
    font-size: 0.9rem;
}

.bar {
    flex: 1;
    height: 12px;
    background: #f0f0f5;
    border-radius: 20px;
    overflow: hidden;
}

.fill {
    height: 100%;
    /* Updated to Brand Gradient */
    background: linear-gradient(90deg, var(--brand-purple), var(--brand-magenta));
    border-radius: 20px;
    transition: width 1s ease-in-out;
}

/* REVIEW LIST ITEMS */

.review-item { display: flex; gap: 20px; padding: 30px; background: #fff; border-radius: 18px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); transition: all 0.3s ease; border: 1px solid #f0f0f0; }
.review-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(42, 0, 101, 0.1);
    border-color: var(--brand-purple); }
.review-avatar { width: 55px; height: 55px; border-radius: 50%; background: linear-gradient(135deg, var(--brand-purple), var(--brand-magenta)); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 1.2rem; flex-shrink: 0; }
.review-content h4 { margin: 0 0 5px 0; font-size: 1.1rem; font-weight: 700; color: var(--text-dark); }
.review-content p { font-size: 1rem; color: #444; line-height: 1.6; margin-bottom: 12px; font-style: italic; }
.review-meta { display: flex; justify-content: space-between; align-items: center; margin-top: 10px; }
.review-meta span { font-size: 0.85rem; color: #888; font-weight: 500; }
.stars.small { font-size: 0.9rem; color: #FFB800; }
/* Review Slider Specific Adjustments */
#reviews-slider .slides { display: grid; }
.review-grid-row { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; padding: 10px; }

/* Individual Review Item Polish */
.review-item { background: #fff; border-radius: 18px; padding: 30px; display: flex; gap: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.04); border: 1px solid #f0f0f0; transition: all 0.3s ease; height: 100%; }
.review-item:hover { border-color: var(--brand-purple);transform: translateY(-5px); box-shadow: 0 15px 35px rgba(42, 0, 101, 0.1); }
#reviews-slider .slider-dots .dot.active { background-color: var(--brand-purple); }
#reviews-slider .slider-arrows button { border: 1px solid var(--brand-purple); color: var(--brand-purple); }
/* Responsive: 1 card per slide on smaller screens */
@media (max-width: 992px) {
    .review-grid-row {
        grid-template-columns: 1fr;
    }
}

/* MOBILE RESPONSIVENESS */

@media(max-width: 768px) {
    .review-summary {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .rating-score {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding-right: 0;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
}

/* MOBILE */
@media(max-width:768px){
    .review-summary {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
/* Testimonial Slider Modern UI & 2-Box Layout */
#testimonial-slider {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-pair-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    padding: 10px 4px;
}

@media (max-width: 768px) {
    .testimonial-pair-grid {
        grid-template-columns: 1fr;
    }
}

.testimonial-card-new {
    background: #ffffff;
    padding: 36px 32px 32px 32px;
    border-radius: 22px;
    border: 1px solid rgba(128, 51, 245, 0.12);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.04), 0 2px 6px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.testimonial-card-new::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0070AD 0%, #8033f5 50%, #D93BC8 100%);
    opacity: 0.85;
    transition: height 0.3s ease, opacity 0.3s ease;
}

.testimonial-card-new:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(128, 51, 245, 0.15);
    border-color: rgba(128, 51, 245, 0.28);
}

.testimonial-card-new:hover::before {
    height: 6px;
    opacity: 1;
}

.quote-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.quote-icon-badge {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 112, 173, 0.08) 0%, rgba(128, 51, 245, 0.12) 100%);
    border: 1px solid rgba(128, 51, 245, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #8033f5;
}

.star-rating {
    color: #f59e0b;
    font-size: 13px;
    letter-spacing: 2px;
}

.testimonial-text-new {
    font-size: 1rem;
    line-height: 1.7;
    color: #334155;
    font-style: italic;
    margin-bottom: 24px;
    flex-grow: 1;
}

.testimonial-user {
    display: flex;
    flex-direction: column;
    padding-top: 18px;
    border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.testimonial-user strong {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 3px;
}

.testimonial-user span {
    font-size: 0.86rem;
    color: #334155;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.testimonial-user span i {
    color: #25D366;
}

#testimonial-slider .slider-arrows button,
#case-study-slider .slider-arrows button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(128, 51, 245, 0.25);
    background: #ffffff;
    color: #8033f5;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.25s ease;
    cursor: pointer;
}

#testimonial-slider .slider-arrows button:hover,
#case-study-slider .slider-arrows button:hover {
    background: #8033f5;
    color: #ffffff;
    border-color: #8033f5;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(128, 51, 245, 0.25);
}

#testimonial-slider .slider-dots .dot,
#case-study-slider .slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(128, 51, 245, 0.2);
    border: none;
    margin: 0 5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

#testimonial-slider .slider-dots .dot.active,
#case-study-slider .slider-dots .dot.active {
    width: 28px;
    border-radius: 10px;
    background: linear-gradient(90deg, #0070AD, #8033f5);
}
.wa-tech-collab-zone{
    width: 100%;
    padding: 70px 8%;
    box-sizing: border-box;

    background: linear-gradient(135deg,#120022,#22003f,#35005e);
    text-align: center;
    overflow: hidden;
}

.wa-tech-collab-zone h2{
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.wa-tech-collab-zone h2 span{
    color: #c77dff;
    text-shadow: 0 0 15px rgba(199,125,255,.25);
}

.wa-tech-collab-zone p{
    max-width: 900px;
    margin: auto;
    margin-bottom: 40px;

    color: rgba(255,255,255,.78);
    font-size: 17px;
    line-height: 1.8;
}

.wa-tech-client-grid{
    list-style: none;
    padding: 0;
    margin: 0;

    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}

.wa-tech-client-grid li{
    position: relative;
    text-align: left;

    padding: 22px 20px 22px 58px;

    color: white;
    font-size: 15px;
    line-height: 1.6;

    background: rgba(255,255,255,.05);

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;

    backdrop-filter: blur(12px);

    box-shadow: 0 10px 25px rgba(0,0,0,.20);

    transition: all .4s ease;
}

.wa-tech-client-grid li:hover{
    transform: translateY(-8px) scale(1.02);

    border-color: #c77dff;

    box-shadow:
        0 15px 35px rgba(123,44,191,.28);
}

.wa-tech-client-grid li::before{
    content: "✓";

    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);

    width: 28px;
    height: 28px;

    border-radius: 50%;

    background: linear-gradient(135deg,#7b2cbf,#c77dff);

    display: flex;
    justify-content: center;
    align-items: center;

    color: white;
    font-size: 13px;
    font-weight: bold;
}

@media(max-width:768px){

    .wa-tech-collab-zone h2{
        font-size: 28px;
    }

    .wa-tech-client-grid{
        grid-template-columns: 1fr;
    }

}

/* ================= NVIDIA ================= */

.nvidia-membership{
    padding:80px 0;
    background:#fff;
    text-align:center;
}

.nvidia-membership h2{
    color:#2A0065;
    font-size:2.4rem;
    font-weight:700;
}

.nvidia-text{
    max-width:800px;
    margin:20px auto 40px;
    color:#666;
}

.nvidia-badge-wrap img{
    max-width:350px;
    width:100%;
    height:auto;
}
/* ===== TECHNOLOGY SERVICE SLIDER ===== */

@keyframes techScroll{
    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }
}

/* ================= CTA SECTION ================= */
/* ================= CTA SECTION ================= */
  
.cta-section {
  padding: 80px 20px;
  text-align: center;
  color: #fff;

  /* 🔥 Gradient background */
  background: linear-gradient(135deg, #1a0033, #2a0065, #e6007a);

  /* Optional smooth animation (premium feel) */
  background-size: 200% 200%;
  animation: gradientMove 8s ease infinite;
}

/* CONTAINER */
.cta-container {
  max-width: 900px;
  margin: auto;
}

/* HEADING */
.cta-section h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  font-weight: 600;
}

/* TEXT */
.cta-section p {
  font-size: 1rem;
  margin-bottom: 40px;
  color: #ddd;
  line-height: 1.6;
}

/* ================= BUTTONS ================= */

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 0;          /* Left space removed */
  margin-top: 20px;
  gap: 20px;
}

/* BASE BUTTON */
  .btn{display:inline-block; padding:14px 28px;border-radius:var(--radius); font-weight:600;font-size:15px;cursor:pointer;border:none;}
  .btn-primary{background:var(--blue);color:#fff;}
  .btn-primary:hover{background:var(--blue-dark);}
  .btn-outline{background:transparent;border:1px solid #d7dce3;color:var(--navy);}
  .btn-outline:hover{border-color:var(--blue);color:var(--blue);}

  .btn-portfolio-accent {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 38px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff !important;
    background: linear-gradient(90deg, #6000ED 0%, #A100DB 25%, #D92B97 50%, #F55B7A 75%, #FF9C45 100%);
    box-shadow: 0 8px 25px rgba(217, 43, 151, 0.35);
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    position: relative;
    overflow: hidden;
  }

  .btn-portfolio-accent i {
    font-size: 15px;
    transition: transform 0.3s ease;
  }

  .btn-portfolio-accent:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 14px 38px rgba(128, 51, 245, 0.55);
    color: #ffffff !important;
  }

  .btn-portfolio-accent:hover i {
    transform: translateX(6px);
  }

/* BUTTON COLORS (MATCH YOUR UI) */
.btn-purple {
  background: linear-gradient(90deg, #6000ED 0%, #A100DB 25%, #D92B97 50%, #F55B7A 75%, #FF9C45 100%);
}

.btn-blue {
  background: linear-gradient(135deg,#1e3a8a,#0ea5e9);
}

.btn-green {
  background: linear-gradient(90deg, #6000ED 0%, #A100DB 25%, #D92B97 50%, #F55B7A 75%, #FF9C45 100%);
}

/* HOVER EFFECT */
.btn:hover {
  transform: translateY(-4px);
}

/* INDIVIDUAL GLOW */
.btn-purple:hover {
  box-shadow: 0 12px 30px rgba(217, 43, 151, 0.5);
}

.btn-blue:hover {
  box-shadow: 0 12px 30px rgba(14, 165, 233, 0.5);
}

.btn-green:hover {
  box-shadow: 0 12px 30px rgba(217, 43, 151, 0.5);
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){

  .cta-section {
    padding: 60px 15px;
  }

  .cta-section h2 {
    font-size: 1.6rem;
  }

  .cta-section p {
    font-size: 0.9rem;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }

}
@media (max-width:768px){

  .hero-content{
      text-align:center;
  }

  .cta-buttons{
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
  }

  .cta-buttons a{
      width:100%;
      max-width:300px;
      text-align:center;
  }

}
/* ================= ANIMATION ================= */
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
  
}
.floating-enquiry{
    position:fixed;
    top:120px;
    right:40px;

    width:320px;

    background:#fff;
    border-radius:18px;

    padding:22px;

    box-shadow:0 15px 45px rgba(0,0,0,.18);

    z-index:9999;

    animation:slideIn .4s ease;
}

@keyframes slideIn{
    from{
        opacity:0;
        transform:translateX(40px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

.floating-enquiry h3{
    margin:0;
    font-size:24px;
    font-weight:700;
    color:#222;
}

.floating-enquiry p{
    margin:8px 0 20px;
    color:#666;
    font-size:14px;
}

.floating-enquiry input{
    width:100%;
    height:48px;

    margin-bottom:14px;

    padding:0 15px;

    border:1px solid #ddd;
    border-radius:10px;

    font-size:15px;

    outline:none;
}

.floating-enquiry input:focus{
    border-color:#7c2cff;
}

.floating-enquiry button[type="submit"]{

    width:100%;
    height:48px;

    border:none;
    border-radius:10px;

    color:#fff;

    font-size:16px;
    font-weight:600;

    cursor:pointer;

    background:linear-gradient(135deg,#2f66ff,#355cff);

    transition:.3s;
}

.floating-enquiry button[type="submit"]:hover{
    transform:translateY(-2px);
}

.close-enquiry{

    position:absolute;
    top:10px;
    right:12px;

    background:none;
    border:none;

    font-size:28px;

    cursor:pointer;

    color:#888;
}

.close-enquiry:hover{
    color:#000;
}

@media(max-width:768px){

.floating-enquiry{

    right:15px;
    left:15px;

    width:auto;

    top:auto;
    bottom:20px;

}

}
.tech-scroll-section{
    padding:10px 0 80px 0;
    background: radial-gradient(circle at 50% 50%, rgba(217, 43, 151, 0.05) 0%, transparent 70%), linear-gradient(180deg, #f4f2ff 0%, #f9f8fe 100%);
    position:relative;
    overflow:hidden;
}

.tech-scroll-section .container{
    max-width:1400px;
    margin:0 auto;
    padding:0 20px;
    text-align:center;
}

.tech-scroll{
    overflow:hidden;
    width:100%;
    position:relative;
    padding:12px 0;
    -webkit-mask-image:linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    mask-image:linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.tech-scroll + .tech-scroll{
    margin-top:16px;
}

.tech-track{
    display:flex;
    gap:16px;
    width:max-content;
    animation:scroll-left 70s linear infinite;
}

.tech-track.reverse{
    animation:scroll-right 38s linear infinite;
}

.tech-scroll:hover .tech-track{
    animation-play-state:paused;
}

.tech-track span{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:rgba(255, 255, 255, 0.95);
    backdrop-filter:blur(8px);
    padding:14px 26px;
    border-radius:50px;
    white-space:nowrap;
    font-size:15px;
    font-weight:600;
    color:#0f172a;
    border:1px solid rgba(161, 0, 219, 0.16);
    box-shadow:0 10px 30px rgba(96, 0, 237, 0.07);
    transition:all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor:pointer;
}

.tech-track span i{
    font-size:18px;
    background: linear-gradient(90deg, #6000ED 0%, #A100DB 30%, #D92B97 60%, #F55B7A 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent !important;
    display: inline-block;
    transition:transform 0.3s ease;
}

.tech-track span:hover{
    background:#ffffff;
    border-color:rgba(217, 43, 151, 0.4);
    box-shadow:0 16px 36px rgba(96, 0, 237, 0.16), 0 4px 14px rgba(217, 43, 151, 0.12);
    transform:translateY(-5px) scale(1.04);
    color:#6000ED;
}

.tech-track span:hover i{
    transform:scale(1.2) rotate(-5deg);
}

.tech-track span:hover i{
    transform:scale(1.2) rotate(6deg);
    color:#D93BC8;
}

@keyframes scroll-left{
    from{ transform:translateX(0); }
    to{ transform:translateX(-50%); }
}

@keyframes scroll-right{
    from{ transform:translateX(-50%); }
    to{ transform:translateX(0); }
}

/* ================= COLLAB SECTION ================= */
/* SECTION */
.collab-section {
    text-align: center;
    padding: 60px 20px;
    background: white;
}

/* SMALL TITLE */
.collab-section h5 {
    color: #5300FC;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    margin-bottom: 12px;
}

/* MAIN TITLE */
.collab-section h2, .collab-section h1 {
    font-size: 2.75rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.5px;
    margin: 0 0 15px 0;
}

.collab-section .highlight-text {
    background: linear-gradient(90deg, #5300FC 0%, #B425BC 30%, #D326D6 60%, #FEAB4C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* UNDERLINE */
.underline {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #5300FC, #D326D6);
    margin: 15px auto;
    border-radius: 5px;
}

/* CARD CONTAINER */
.card-container {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* CARD */
.card {
  
}

/* HOVER EFFECT */
.card:hover {
    transform: translateY(-6px);
}

/* IMAGE */
.card img {
    width: 200px;
    max-width: 100%;
}

/* RESPONSIVE */

/* MOBILE */
@media (max-width: 600px) {
    .collab-section h2, .collab-section h1 {
        font-size: 2.1rem;
    }
    .card {
        padding: 25px;
    }
}

/* TABLET */
@media (max-width: 900px) {
    .collab-section h2, .collab-section h1 {
        font-size: 2.4rem;
    }
}

/* LARGE SCREEN */
@media (min-width: 1200px) {
    .collab-section h2, .collab-section h1 {
        font-size: 2.75rem;
    }
}