 /* ── HERO (light blue + animated graphic) ── */
        .profile-hero-lite {
            position: relative;
            overflow: hidden;
            padding: 150px 0 90px;
            background:
                radial-gradient(70% 80% at 85% 18%, rgba(140,190,240,.45) 0%, transparent 60%),
                radial-gradient(60% 70% at 8% 92%, rgba(180,210,245,.5) 0%, transparent 60%),
                linear-gradient(180deg, #EBF4FF 0%, #D8E9FB 55%, #CFE3F8 100%);
        }
        .profile-hero-lite .container { position: relative; z-index: 2; }
        .profile-hero-lite .phl-blob { position:absolute; border-radius:50%; filter:blur(60px); pointer-events:none; z-index:0; }
        .profile-hero-lite .phl-blob.o {
            width:360px; height:360px; top:-60px; right:6%;
            background: radial-gradient(circle, rgba(242,107,33,.28) 0%, transparent 70%);
            animation: phlDriftA 16s ease-in-out infinite;
        }
        .profile-hero-lite .phl-blob.g {
            width:300px; height:300px; bottom:-40px; left:4%;
            background: radial-gradient(circle, rgba(22,169,124,.22) 0%, transparent 70%);
            animation: phlDriftB 20s ease-in-out infinite;
        }
        @keyframes phlDriftA { 0%,100%{transform:translate(0,0) scale(1);} 50%{transform:translate(-40px,30px) scale(1.1);} }
        @keyframes phlDriftB { 0%,100%{transform:translate(0,0) scale(1);} 50%{transform:translate(40px,-25px) scale(1.08);} }

        .phl-eyebrow {
            font-family: 'Poppins', sans-serif;
            font-size: .78rem; font-weight: 700; letter-spacing: 3px;
            text-transform: uppercase; color: var(--orange); margin-bottom: 12px;
        }
        .phl-title {
            font-family: 'Poppins', sans-serif;
            font-size: clamp(2rem, 4.4vw, 3.2rem); font-weight: 800;
            color: var(--ink); line-height: 1.15; margin-bottom: 18px;
        }
        .phl-title span { color: var(--orange); }
        .phl-subtitle {
            font-size: 1.05rem; color: var(--ink-soft); max-width: 500px;
            line-height: 1.7; margin-bottom: 34px;
        }
        .phl-pills { display: flex; flex-wrap: wrap; gap: 12px; }
        .phl-pill {
            background: rgba(255,255,255,.7); backdrop-filter: blur(8px);
            border: 1px solid rgba(27,20,112,.10); border-radius: 50px;
            padding: 10px 22px; display: flex; align-items: center; gap: 10px;
            color: var(--ink); box-shadow: 0 8px 20px -12px rgba(27,20,112,.3);
        }
        .phl-pill .pill-num { font-family:'Poppins',sans-serif; font-size:1.15rem; font-weight:700; color: var(--orange); }
        .phl-pill .pill-label { font-size:.8rem; color: var(--text-muted, #5A7A9B); line-height:1.3; }

        .phl-graphic { position: relative; display: grid; place-items: center; min-height: 360px; }
        .phl-card {
            position: relative; width: 450px; max-width: 100%; background: #fff; border-radius: 20px;
            box-shadow: 0 30px 60px -25px rgba(27,20,112,.35); border: 1px solid rgba(27,20,112,.08);
            padding: 24px; animation: phlFloat 6s ease-in-out infinite; z-index: 2;
        }
        .phl-card svg { display:block; width:100%; height:auto; }
        @keyframes phlFloat { 0%,100%{transform:translateY(0) rotate(-1deg);} 50%{transform:translateY(-14px) rotate(.6deg);} }
        .phl-badge {
            position:absolute; background:#fff; border-radius:14px; padding:10px 14px;
            box-shadow:0 18px 40px -18px rgba(27,20,112,.4); display:flex; align-items:center; gap:8px;
            font-family:'Poppins',sans-serif; font-weight:700; font-size:.92rem; color: var(--ink); z-index:3; white-space:nowrap;
        }
        .phl-badge i { color: var(--orange); }
        .phl-badge.b-top { top: 2%; left: -6px; animation: phlFloat 7s ease-in-out infinite .4s; }
        .phl-badge.b-bot { bottom: 8%; right: -6px; animation: phlFloat 8s ease-in-out infinite 1s; }
        .phl-badge.b-bot i { color: var(--green, #16A97C); }
        @media (max-width: 991px){ .phl-graphic { margin-top: 46px; } }
        @media (max-width: 575px){ .profile-hero-lite { padding: 120px 0 70px; } }
        @media (prefers-reduced-motion: reduce){
            .profile-hero-lite .phl-blob, .phl-card, .phl-badge { animation: none !important; }
        }
        
        /* ── INTRO / LEAD CARD ────────────────────── */
        .lead-card {
            position: relative;
            overflow: hidden;
            border-radius: 22px;
            padding: 40px 44px 40px 40px;
            margin-bottom: 40px;
            background:
                radial-gradient(120% 120% at 0% 0%, rgba(242,107,33,.08) 0%, transparent 42%),
                radial-gradient(120% 120% at 100% 100%, rgba(22,169,124,.10) 0%, transparent 42%),
                linear-gradient(160deg, #fff 0%, #F3F7FD 100%);
            border: 1px solid rgba(27,20,112,.08);
            box-shadow: 0 24px 55px -30px rgba(27,20,112,.4);
            display: flex;
            align-items: flex-start;
            gap: 26px;
        }
        .lead-card::after {
            content: '';
            position: absolute;
            top: -60px; right: -60px;
            width: 200px; height: 200px; border-radius: 50%;
            background: radial-gradient(circle, rgba(242,107,33,.10) 0%, transparent 70%);
            pointer-events: none;
        }
        .lead-icon {
            flex-shrink: 0;
            width: 72px; height: 72px; border-radius: 18px;
            display: grid; place-items: center;
            background: linear-gradient(135deg, var(--orange), var(--orange-deep));
            color: #fff; font-size: 1.7rem;
            box-shadow: 0 14px 30px -10px rgba(242,107,33,.6);
        }
        .lead-body { position: relative; z-index: 1; }
        .lead-tag {
            display: inline-flex; align-items: center; gap: 8px;
            font-family: 'Poppins', sans-serif; font-size: .68rem; font-weight: 700;
            letter-spacing: .14em; text-transform: uppercase; color: var(--orange);
            background: rgba(242,107,33,.10); border-radius: 100px;
            padding: 6px 14px; margin-bottom: 14px;
        }
        .lead-tag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }
        .profile-lead {
            font-family: 'Poppins', sans-serif;
            font-size: 1.22rem;
            font-weight: 600;
            color: var(--ink);
            line-height: 1.65;
            margin: 0;
        }
        .profile-lead b { color: var(--orange); font-weight: 700; }
        @media (max-width: 575px){
            .lead-card { flex-direction: column; padding: 30px 24px; gap: 18px; }
        }

        .profile-header-text {
            font-size: 1.15rem;
            line-height: 1.9;
            color: var(--ink-soft);
            margin-bottom: 25px;
        }

        .highlight-box {
            background: linear-gradient(135deg, var(--orange), var(--orange-deep));
            color: white;
            padding: 40px;
            border-radius: 15px;
            text-align: center;
            font-weight: 700;
            font-size: 1.3rem;
            box-shadow: 0 20px 50px -20px rgba(242,107,33,.5);
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease;
        }
        .highlight-box:hover {
            transform: translateY(-5px);
        }
        
        .service-card {
            background: #fff;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            border-left: 4px solid transparent;
            display: flex;
            align-items: center;
        }
        .service-card:hover {
            transform: translateX(10px);
            border-left-color: var(--orange);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }
        .service-icon {
            color: var(--orange);
            font-size: 1.5rem;
            margin-right: 15px;
            width: 30px;
            text-align: center;
        }
        .service-text {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            color: var(--ink);
            font-size: 1.05rem;
            margin: 0;
        }
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem; /* match your existing card gap */
}
@media (max-width: 767px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}
        .process-section {
            background-color: #f8f9fa;
            padding: 80px 0;
            border-top: 1px solid #eaeaea;
        }
        
        .process-title-wrapper {
            text-align: center;
            margin-bottom: 50px;
        }
        .process-title {
            display: inline-block;
            font-family: 'Poppins', sans-serif;
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--ink);
            position: relative;
            padding-bottom: 15px;
            text-transform: uppercase;
        }
        .process-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--orange);
            border-radius: 2px;
        }

        .process-container {
            display: flex;
            flex-wrap: nowrap;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }
        
        .process-step {
            flex: 1;
            text-align: center;
            padding: 20px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            position: relative;
            z-index: 2;
            transition: all 0.4s ease;
            min-height: 140px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid transparent;
        }
        
        .process-step:hover {
            transform: translateY(-10px);
            border-color: var(--orange);
            box-shadow: 0 15px 40px rgba(242, 107, 33, 0.2);
        }

        .process-step h5 {
            font-size: 0.95rem;
            font-weight: 700;
            margin: 0;
            color: var(--ink);
            text-transform: uppercase;
            line-height: 1.5;
        }
        
        .process-arrow-container {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            z-index: 1;
        }
        
        .process-arrow-icon {
            color: #bdc3c7;
            font-size: 1.5rem;
            animation: pulse-arrow 2s infinite;
        }
        
        @keyframes pulse-arrow {
            0% { transform: scale(1); color: #bdc3c7; }
            50% { transform: scale(1.2); color: var(--orange); }
            100% { transform: scale(1); color: #bdc3c7; }
        }

        @media (max-width: 991px) {
            .process-container {
                flex-direction: column;
            }
            .process-step {
                width: 100%;
                margin-bottom: 15px;
                min-height: 100px;
            }
            .process-arrow-container {
                width: 100%;
                height: 50px;
                transform: rotate(90deg);
            }
        }
        .consultancy-section {
            padding: 60px 0;
            background-color: #fff;
        }
        
        .consultancy-card {
            background: linear-gradient(135deg, #EBF4FF, #D8E9FB); /* Light blue modern gradient */
            border-radius: 20px;
            padding: 50px 40px;
            box-shadow: 0 15px 35px rgba(27, 20, 112, 0.12);
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            border: 1px solid rgba(27, 20, 112, 0.12);
        }

        .consultancy-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 45px rgba(27, 20, 112, 0.2);
        }
        
        .consultancy-card::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 150px;
            height: 150px;
            background: rgba(255, 255, 255, 0.4);
            border-radius: 50%;
            z-index: 1;
        }
        
        .consultancy-card::after {
            content: '';
            position: absolute;
            bottom: -30px;
            left: -30px;
            width: 100px;
            height: 100px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            z-index: 1;
        }
        
        .consultancy-icon-wrapper {
            width: 80px;
            height: 80px;
            background-color: var(--navy);
            color: white;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            position: relative;
            z-index: 2;
            box-shadow: 0 10px 20px rgba(27, 20, 112, 0.3);
            animation: bounce-slow 3s infinite;
        }

        .consultancy-icon {
            font-size: 2rem;
        }

        .consultancy-title {
            font-family: 'Poppins', sans-serif;
            color: var(--ink);
            font-weight: 800;
            font-size: 2rem;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }

        .consultancy-text {
            color: var(--ink-soft);
            font-size: 1.25rem;
            line-height: 1.8;
            font-weight: 500;
            position: relative;
            z-index: 2;
            margin: 0;
        }
        
        @keyframes bounce-slow {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }