    /* ==========================================
    01. CSS VARIABLES
    Central palette + design tokens used
    throughout the stylesheet.
    ========================================== */
    :root {
        /* Brand colors */
        --andura-green:        #16a34a;
        --andura-green-dark:   #15803d;
        --andura-green-light:  #22c55e;
        --andura-green-pale:   #f0fdf4;
        --andura-dark:         #0f172a;

        /* Neutrals */
        --color-text-muted:    #64748b;
        --color-text-soft:     #94a3b8;
        --color-border:        #e5e7eb;
        --color-surface:       #f8fafc;
        --color-white:         #ffffff;
        --color-black:         #0a0a0a;

        /* Talent / dark navy section */
        --talent-navy-start:   #071d49;
        --talent-navy-end:     #0b2e73;

        /* Fonts */
        --font-primary: 'Inter', sans-serif;
    }

    /* ==========================================
    02. RESET
    ========================================== */
    *, *::before, *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    html {
        overflow-x: hidden;
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Inter', sans-serif;
        background: #f8fafc;
        color: #0f172a;
        overflow-x: hidden;
    }

    img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    a { text-decoration: none; }

    .container {
        width: 1200px;
        max-width: 95%;
        margin: auto;
    }


    /* ══════════════════════════════════════════
    03. ANIMATIONS / KEYFRAMES
    ══════════════════════════════════════════ */
    @keyframes fadeUp {
        from { opacity: 0; transform: translateY(30px); }
        to   { opacity: 1; transform: translateY(0); }
    }

    @keyframes scrollBounce {
        0%, 100% { transform: translateY(0); }
        50%       { transform: translateY(8px); }
    }

    @keyframes badgePulse {
        0%, 100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.35); }
        50%       { box-shadow: 0 0 0 10px rgba(22, 163, 74, 0); }
    }

    @keyframes dotBlink {
        0%, 100% { opacity: 1; }
        50%       { opacity: 0.3; }
    }

    @keyframes cardReveal {
        from { opacity: 0; transform: translateY(24px); }
        to   { opacity: 1; transform: translateY(0); }
    }

    @keyframes gridShift {
        0%   { background-position: 0 0; }
        100% { background-position: 40px 40px; }
    }

    @keyframes wordSlideIn {
        0%   { opacity: 0; transform: translateY(20px) scale(0.95); }
        100% { opacity: 1; transform: translateY(0) scale(1); }
    }

    @keyframes wordSlideOut {
        0%   { opacity: 1; transform: translateY(0) scale(1); }
        100% { opacity: 0; transform: translateY(-20px) scale(0.95); }
    }

    @keyframes floatDot {
        0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.4; }
        33%       { transform: translateY(-18px) translateX(8px); opacity: 0.7; }
        66%       { transform: translateY(-8px) translateX(-6px); opacity: 0.5; }
    }

    @keyframes floatParticle {
        0%   { transform: translateY(0); opacity: 0; }
        10%  { opacity: 0.6; }
        100% { transform: translateY(-500px); opacity: 0; }
    }


    /* ══════════════════════════════════════════
    04. HEADER
    ══════════════════════════════════════════ */
    .header {
        background: rgba(255, 255, 255, .92);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        padding: 16px 0;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        border-bottom: 1px solid rgba(0, 0, 0, .07);
    }

    .navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
    }

    .logo img {
        height: 44px;
        width: auto;
    }

    .logo-text {
        font-size: 22px;
        font-weight: 700;
        color: #0f172a;
        line-height: 1;
        white-space: nowrap;
    }

    .logo-text span { color: #16a34a; }


    /* ── Navigation ── */
    .nav-menu {
        margin-left: auto;
        margin-right: 40px;
    }

    .nav-menu ul {
        display: flex;
        align-items: center;
        gap: 32px;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .nav-menu li { position: relative; }

    .nav-menu a {
        color: #374151;
        font-weight: 500;
        font-size: 15px;
        text-decoration: none;
        transition: .3s;
    }

    .nav-menu a:hover,
    .nav-menu a.active { color: #16a34a; }


    /* ── Dropdown ── */
    .dropdown { position: relative; }

    .dropdown > a {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 220px;
        background: #fff;
        border-radius: 12px;
        list-style: none;
        padding: 10px 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
        z-index: 99999;
    }

    .dropdown-menu li { width: 100%; }

    .dropdown-menu a {
        display: block;
        padding: 12px 18px;
        color: #111827;
        transition: background 0.3s, color 0.3s;
    }

    .dropdown-menu a:hover {
        background: #f3f4f6;
        color: #16a34a;
    }

    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }


    /* ── CTA button ── */
    .consult-btn {
        background: #16a34a;
        color: #fff;
        padding: 11px 24px;
        border-radius: 10px;
        font-weight: 600;
        font-size: 15px;
        text-decoration: none;
        transition: .3s;
    }

    .consult-btn:hover {
        background: #15803d;
        transform: translateY(-2px);
    }


    /* ── Accessibility focus ── */
    a:focus-visible,
    button:focus-visible {
        outline: 2px solid #16a34a;
        outline-offset: 3px;
        border-radius: 4px;
    }

    /* ── Skip link (visually hidden until focused) ── */
    .skip-link {
        position: absolute;
        top: -48px;
        left: 8px;
        z-index: 100000;
        background: var(--andura-green);
        color: #fff;
        padding: 12px 20px;
        border-radius: 8px;
        font-weight: 600;
        font-size: 14px;
        transition: top 0.2s ease;
    }

    .skip-link:focus {
        top: 8px;
    }


    /* ══════════════════════════════════════════
    04a. HERO PARTICLES
    ══════════════════════════════════════════ */
    .particles {
        position: absolute;
        inset: 0;
        overflow: hidden;
        pointer-events: none;
    }

    .dot {
        position: absolute;
        width: 6px;
        height: 6px;
        background: #22c55e;
        border-radius: 50%;
        opacity: 0.6;
        animation: floatParticle 12s linear infinite;
    }

    .dot:nth-child(1)  { left: 10%; top: 80%; animation-duration: 12s; }
    .dot:nth-child(2)  { left: 20%; top: 60%; animation-duration: 15s; }
    .dot:nth-child(3)  { left: 35%; top: 90%; animation-duration: 10s; }
    .dot:nth-child(4)  { left: 50%; top: 70%; animation-duration: 18s; }
    .dot:nth-child(5)  { left: 65%; top: 85%; animation-duration: 14s; }
    .dot:nth-child(6)  { left: 75%; top: 50%; animation-duration: 11s; }
    .dot:nth-child(7)  { left: 85%; top: 75%; animation-duration: 16s; }
    .dot:nth-child(8)  { left: 30%; top: 40%; animation-duration: 13s; }
    .dot:nth-child(9)  { left: 55%; top: 95%; animation-duration: 17s; }
    .dot:nth-child(10) { left: 90%; top: 65%; animation-duration: 12s; }

    /* Larger glowing dots */
    .dot:nth-child(2),
    .dot:nth-child(5),
    .dot:nth-child(8) {
        width: 10px;
        height: 10px;
        box-shadow: 0 0 20px #22c55e;
    }


    /* ══════════════════════════════════════════
    05. HERO
    ══════════════════════════════════════════ */
    .hero-dark {
        min-height: 85vh;
        background: #ffffff;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 55px;
    }

    /* Soft green radial glow */
    .hero-dark::before {
        content: '';
        position: absolute;
        width: 900px;
        height: 600px;
        background: radial-gradient(ellipse at center top, rgba(22, 163, 74, 0.09) 0%, transparent 65%);
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        pointer-events: none;
    }

    /* Dot-grid overlay */
    .hero-dark::after {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(rgba(34, 197, 94, 0.15) 1px, transparent 1px);
        background-size: 30px 30px;
        opacity: .5;
    }

    /* Animated dot-grid */
    .grid-overlay {
        position: absolute;
        inset: 0;
        pointer-events: none;
        background-image: radial-gradient(circle, rgba(22, 163, 74, 0.18) 1px, transparent 1px);
        background-size: 32px 32px;
        animation: gridShift 18s linear infinite;
    }

    .hero-container {
        position: relative;
        z-index: 2;
        text-align: center;
        padding: 80px 0 100px;
    }

    /* Entrance animations */
    .animate-up {
        opacity: 0;
        animation: fadeUp 0.7s ease forwards;
    }

    .delay-1 { animation-delay: 0.1s; }
    .delay-2 { animation-delay: 0.3s; }
    .delay-3 { animation-delay: 0.55s; }
    .delay-4 { animation-delay: 0.75s; }
    .delay-5 { animation-delay: 1s; }

    /* Badge */
    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #f0fdf4;
        border: 1px solid #bbf7d0;
        color: #15803d;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1px;
        padding: 8px 20px;
        border-radius: 100px;
        margin-bottom: 36px;
        animation: fadeUp 0.7s ease 0.1s forwards, badgePulse 3s ease-in-out 1.5s infinite;
    }

    .badge-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #22c55e;
        animation: dotBlink 1.8s ease-in-out infinite;
    }

    /* Main title */
    .hero-title {
        font-size: clamp(40px, 6.5vw, 82px);
        font-weight: 900;
        line-height: 1.08;
        letter-spacing: -1.5px;
        color: #000000;
        margin-bottom: 28px;
        text-transform: uppercase;
    }

    /* Cycling word pill */
    .title-highlight-wrap {
        display: block;
        margin-top: 10px;
    }

    .title-highlight-pill {
        display: inline-block;
        background: #16a34a;
        color: #fff;
        padding: 10px 48px;
        border-radius: 18px;
        font-style: italic;
        font-weight: 900;
        font-size: clamp(36px, 5.5vw, 72px);
        letter-spacing: -1px;
        min-width: 380px;
        text-align: center;
        position: relative;
        overflow: hidden;
        box-shadow: 0 0 40px rgba(34, 197, 94, .4);
    }

    .title-highlight-pill.word-exit  { animation: wordSlideOut 0.3s ease forwards; }
    .title-highlight-pill.word-enter { animation: wordSlideIn  0.4s ease forwards; }

    /* Subtitle */
    .hero-sub {
        font-size: clamp(15px, 1.6vw, 18px);
        color: #64748b;
        line-height: 1.8;
        max-width: 680px;
        margin: 0 auto 44px;
        font-weight: 400;
    }

    /* CTA buttons */
    .hero-cta {
        display: flex;
        gap: 16px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .cta-primary {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: #16a34a;
        color: #fff;
        padding: 17px 36px;
        border-radius: 14px;
        font-weight: 700;
        font-size: 16px;
        transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
    }

    .cta-primary:hover {
        background: #15803d;
        transform: translateY(-3px);
        box-shadow: 0 12px 36px rgba(22, 163, 74, 0.3);
    }

    .cta-secondary {
        display: inline-flex;
        align-items: center;
        border: 1.5px solid #d1d5db;
        color: #374151;
        background: #fff;
        padding: 17px 36px;
        border-radius: 14px;
        font-weight: 600;
        font-size: 16px;
        transition: border-color 0.25s, color 0.25s, background 0.25s, transform 0.25s;
    }

    .cta-secondary:hover {
        border-color: #16a34a;
        color: #15803d;
        transform: translateY(-3px);
    }

    /* Scroll indicator */
    .scroll-indicator {
        position: absolute;
        bottom: 32px;
        left: 50%;
        transform: translateX(-50%);
        width: 28px;
        height: 48px;
        border: 2px solid #d1d5db;
        border-radius: 14px;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        padding-top: 8px;
        z-index: 2;
    }

    .scroll-dot {
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: #16a34a;
        animation: scrollBounce 1.6s ease-in-out infinite;
    }


    /* ══════════════════════════════════════════
    SCROLL REVEAL
    ══════════════════════════════════════════ */
    .reveal-card {
        opacity: 0;
        transform: translateY(24px);
        transition: none;
    }

    .reveal-card.revealed { animation: cardReveal 0.6s ease forwards; }


    /* ══════════════════════════════════════════
    07. AI SERVICES (intro block)
    ══════════════════════════════════════════ */
    .additional-services {
        padding: 60px 0 0;
        background: #f8fafc;
        overflow: visible;
    }

    .services-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
        overflow: hidden;
    }

    /* ══════════════════════════════════════════
    06. TALENT SECTION
    ══════════════════════════════════════════ */
    .talent-section {
        background: linear-gradient(135deg, #071d49 0%, #0b2e73 100%);
        padding: 100px 0 0;
        color: white;
        position: relative;
        overflow: hidden;
    }

    .talent-section::before {
        content: '';
        position: absolute;
        top: -60px;
        left: 0;
        width: 100%;
        height: 60px;
        background: linear-gradient(to bottom, #ffffff, #08255c);
    }

    .talent-section::after {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
        background-size: 28px 28px;
        pointer-events: none;
    }

    .talent-grid {
        display: grid;
        grid-template-columns: 0.85fr 1.6fr;
        gap: 80px;
        align-items: start;
        position: relative;
        z-index: 2;
    }

    .talent-tag {
        color: #22c55e;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        display: block;
        margin-bottom: 20px;
    }

    .talent-heading {
        font-size: 50px;
        line-height: 1.1;
        font-weight: 800;
        color: white;
        margin: 0 0 20px;
    }

    .talent-highlight { color: #22c55e; }

    .talent-desc {
        color: #cbd5e1;
        line-height: 1.8;
        font-size: 16px;
        margin-bottom: 36px;
    }

    .talent-features {
        display: flex;
        gap: 14px;
        margin-bottom: 36px;
    }

    .feature-box {
        flex: 1;
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(12px);
        border-radius: 18px;
        padding: 22px 16px;
        text-align: center;
        border: 1px solid rgba(255, 255, 255, 0.10);
        transition: background 0.3s, transform 0.3s;
    }

    .feature-box:hover {
        background: rgba(255, 255, 255, 0.14);
        transform: translateY(-4px);
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto 14px;
    }

    .feature-icon i { font-size: 20px; color: white; }

    .green-feature  { background: #16a34a; }
    .blue-feature   { background: #2563eb; }
    .purple-feature { background: #6d28d9; }

    .feature-box h4 {
        margin: 0;
        font-size: 15px;
        font-weight: 700;
        color: white;
        line-height: 1.4;
    }

    .popular-roles {
        position: relative;
        z-index: 2;
    }

    .popular-roles h3 {
        font-size: 28px;
        font-weight: 700;
        color: white;
        margin-bottom: 6px;
    }

    .popular-roles h3::after {
        content: '';
        display: block;
        width: 44px;
        height: 3px;
        background: #22c55e;
        border-radius: 2px;
        margin-top: 8px;
        margin-bottom: 24px;
    }

    .roles-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }

    .role-card {
        background: #fff;
        border-radius: 20px;
        padding: 24px 20px;
        color: #0f172a;
        transition: transform 0.35s, box-shadow 0.35s;
        border: 1px solid #e5e7eb;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        min-height: 190px;
    }

    .role-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
    }


    .orange-role { background: #f97316; }
    .green-role  { background: #22c55e; }
    .yellow-role { background: #f59e0b; }
    .indigo-role { background: #4f46e5; }
    .blue-role   { background: #2563eb; }
    .purple-role { background: #7c3aed; }

    .role-icon-wrap {
        width: 60px;
        height: 60px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 16px;
    }

    .role-icon-wrap i { color: white; font-size: 26px; }

    .role-card h4 {
        margin: 14px 0 0;
        font-size: 15px;
        font-weight: 700;
        color: #0f172a;
        line-height: 1.3;
    }

    .role-divider {
        width: 32px;
        height: 2px;
        background: #22c55e;
        border-radius: 2px;
        margin: 10px auto;
    }

    .role-card p {
        color: #64748b;
        font-size: 13px;
        line-height: 1.6;
        margin: 0;
    }

    /* Trust bar */
    .trust-bar {
        margin-top: 60px;
        padding: 30px 0 50px;
        border-top: 1px solid rgba(255, 255, 255, 0.10);
        display: flex;
        justify-content: center;
        gap: 60px;
        flex-wrap: wrap;
        color: #dbeafe;
        position: relative;
        z-index: 2;
    }

    .trust-bar div {
        display: flex;
        align-items: center;
        gap: 10px;
        font-weight: 500;
        font-size: 15px;
    }

    .trust-bar i { color: #22c55e; font-size: 20px; }

    .node-wrap .ai-node {
        will-change: transform;
    }


    /* ══════════════════════════════════════════
    08. SALESFORCE SERVICES
    ══════════════════════════════════════════ */
    .salesforce-services {
        margin-top: 0;            /* ensure no extra top margin */
        padding-top: 80px;
    }

    /* ── Shared section header ── */
    .section-header {
        text-align: center;
        max-width: 900px;
        margin: 0 auto 60px;
        padding: 0 20px;
    }

    .section-header h2 {
        font-size: 48px;
        margin: 15px 0;
        color: #0f172a;
    }

    .section-header p {
        color: #64748b;
        line-height: 1.8;
    }

    .salesforce-title-logo {
        display: block;
        width: 170px;
        height: auto;
        margin: 0 auto 15px;
    }

    .salesforce-services-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }

    .sf-service-card {
        background: #fff;
        border-radius: 24px;
        padding: 35px;
        border: 2px solid #16a34a;
        transition: transform 0.35s, box-shadow 0.35s;
    }

    .sf-service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    }

    .sf-icon {
        width: 70px;
        height: 70px;
        border-radius: 18px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 25px;
    }

    .sf-icon i { color: white; font-size: 28px; }

    .dev-icon     { background: #2563eb; }
    .qa-icon      { background: #f97316; }
    .ai-icon      { background: #6d28d9; }
    .support-icon { background: #16a34a; }

    .sf-service-card h3 {
        font-size: 22px;
        margin-bottom: 15px;
        color: #0f172a;
    }

    .sf-service-card p {
        color: #64748b;
        line-height: 1.8;
    }


    /* ══════════════════════════════════════════
    09. INDUSTRIES
    ══════════════════════════════════════════ */
    .industries-section {
        padding: 100px 40px;
        background: #fff;
    }

    .industries-header {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 60px;
    }

    .industries-header h2 {
        font-size: 48px;
        margin: 15px 0;
        color: #0f172a;
    }

    .industries-header p {
        color: #64748b;
        line-height: 1.8;
        font-size: 17px;
    }

    .industries-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        max-width: 1400px;
        margin: 0 auto;
    }

    .industry-card {
        background: #fff;
        border: 1px solid #e5e7eb;
        border-radius: 22px;
        padding: 30px;
        text-align: center;
        min-height: 220px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        transition: transform .35s, box-shadow .35s, border-color .35s;
    }

    .industry-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 45px rgba(0, 0, 0, .08);
        border-color: #16a34a;
    }

    .industry-card i {
        font-size: 32px;
        color: #16a34a;
        margin-bottom: 16px;
    }

    .industry-card h3 {
        font-size: 18px;
        font-weight: 700;
        color: #0f172a;
        margin: 0;
    }

    .industry-card p {
        margin-top: 12px;
        color: #64748b;
        font-size: 14px;
        line-height: 1.6;
    }


    /* ══════════════════════════════════════════
    10. CONTACT
    ══════════════════════════════════════════ */
    .contact-field input,
    .contact-field textarea {
        background: rgba(255, 255, 255, 0.04) !important;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 10px;
        color: #f1f5f9;
        font-size: 15px;
        font-family: 'Inter', sans-serif;
        padding: 14px 16px;
        outline: none;
        width: 100%;
        resize: none;
        transition: border-color 0.25s ease, background 0.25s ease;
        box-sizing: border-box;
    }

    .contact-field input::placeholder,
    .contact-field textarea::placeholder {
        color: rgba(148, 163, 184, 0.45);
        font-style: italic;
        font-size: 14px;
    }

    .contact-field input:focus,
    .contact-field textarea:focus {
        background: rgba(34, 197, 94, 0.04) !important;
        border-color: #22c55e;
        color: #ffffff !important;
        box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.08);
        outline: none;
    }

    .contact-field input:-webkit-autofill,
    .contact-field input:-webkit-autofill:hover,
    .contact-field input:-webkit-autofill:focus {
        -webkit-box-shadow: 0 0 0px 1000px #111111 inset !important;
        -webkit-text-fill-color: #ffffff !important;
        transition: background-color 5000s ease-in-out 0s;
    }

    .contact-section {
        padding: 100px 0;
        background: #0a0a0a;
    }

    .contact-tag {
        display: inline-block;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 2px;
        color: #22c55e;
        margin-bottom: 16px;
    }

    .contact-heading {
        font-size: 42px;
        font-weight: 800;
        color: #ffffff;
        line-height: 1.2;
        margin-bottom: 16px;
    }

    .contact-desc {
        color: #94a3b8;
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 40px;
    }

    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: start;
    }

    .contact-info-items {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .contact-info-item {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 24px;
    }

    .contact-info-icon {
        flex-shrink: 0;
        width: 44px;
        height: 44px;
        background: rgba(34, 197, 94, 0.1);
        border: 1px solid rgba(34, 197, 94, 0.25);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #22c55e;
        font-size: 16px;
    }

    .contact-info-item h4 {
        font-size: 13px;
        font-weight: 700;
        color: #94a3b8;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 4px;
    }

    .contact-info-item a,
    .contact-info-item p {
        color: #f1f5f9;
        font-size: 15px;
        line-height: 1.6;
        text-decoration: none;
    }

    .contact-info-item a:hover { color: #22c55e; }

    .contact-form-card {
        background: #111111;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 20px;
        padding: 40px;
    }

    .contact-form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        margin-bottom: 24px;
    }

    .contact-field {
        display: flex;
        flex-direction: column;
        margin-bottom: 24px;
    }

    .contact-field label {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 1.5px;
        color: #64748b;
        margin-bottom: 8px;
    }

    .contact-field label span { color: #22c55e; }

    .contact-submit-btn {
        width: 100%;
        padding: 16px 32px;
        background: linear-gradient(135deg, #16a34a, #22c55e);
        color: #ffffff;
        font-size: 16px;
        font-weight: 700;
        border: none;
        border-radius: 12px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        transition: opacity 0.2s ease, transform 0.2s ease;
        margin-top: 8px;
    }

    .contact-submit-btn:hover {
        opacity: 0.9;
        transform: translateY(-2px);
    }

    @media (max-width: 900px) {
        .contact-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .contact-form-row {
            grid-template-columns: 1fr;
            gap: 0;
        }

        .contact-heading { font-size: 32px; }
    }

    /* Success / Error Messages */
    .success-box {
        margin-top: 20px;
        padding: 16px 20px;
        background: rgba(34, 197, 94, 0.12);
        border: 1px solid rgba(34, 197, 94, 0.35);
        border-radius: 12px;
        color: #dcfce7;
        font-size: 15px;
        font-weight: 600;
        line-height: 1.6;
        display: flex;
        align-items: center;
        gap: 10px;
        animation: fadeIn .4s ease;
    }

    .error-box {
        margin-top: 20px;
        padding: 16px 20px;
        background: rgba(239, 68, 68, 0.12);
        border: 1px solid rgba(239, 68, 68, 0.35);
        border-radius: 12px;
        color: #fecaca;
        font-size: 15px;
        font-weight: 600;
        line-height: 1.6;
        display: flex;
        align-items: center;
        gap: 10px;
        animation: fadeIn .4s ease;
    }

    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(10px); }
        to   { opacity: 1; transform: translateY(0); }
    }


    /* ══════════════════════════════════════════
    11. FOOTER
    ══════════════════════════════════════════ */
    .footer {
        background: #0a0a0a;
        color: white;
        padding: 45px 0 30px;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 2.5fr 1fr 1fr;
        gap: 150px;
        align-items: start;
    }

    .footer-brand {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 18px;
    }

    .footer-logo { height: 42px; }

    .footer-logo-text {
        font-size: 22px;
        font-weight: 700;
        color: #fff;
    }

    .footer-logo-text span { color: #22c55e; }

    .footer-about p {
        color: #9ca3af;
        line-height: 1.8;
        margin-bottom: 25px;
    }

    .footer-col h4 { margin-bottom: 20px; font-size: 18px; }

    .footer-col ul { list-style: none; }

    .footer-col li { margin-bottom: 14px; color: #9ca3af; }

    .footer-col a { color: #9ca3af; transition: color 0.3s; }

    .footer-col a:hover { color: #22c55e; }

    .social-links { display: flex; gap: 12px; }

    .social-links a {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: #1a1a1a;
        display: flex;
        justify-content: center;
        align-items: center;
        color: white;
        transition: background 0.3s, transform 0.3s;
        border: 1px solid #2a2a2a;
    }

    .social-links a:hover {
        background: #16a34a;
        transform: translateY(-3px);
    }

    .footer-bottom {
        margin-top: 50px;
        padding-top: 25px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .footer-bottom p { color: #6b7280; margin: 0; }

    .footer-links { display: flex; gap: 25px; }

    .footer-links a { color: #6b7280; }

    .footer-links a:hover { color: #22c55e; }


    /* ══════════════════════════════════════════
    11a. MOBILE NAVIGATION
    ══════════════════════════════════════════ */
    .menu-toggle {
        display: none;
        font-size: 28px;
        cursor: pointer;
        color: #0f172a;
    }

    .mobile-contact { display: none; }


    /* ══════════════════════════════════════════
    13. RESPONSIVE - 1024px (Tablet)
    ══════════════════════════════════════════ */
    @media (max-width: 1024px) {
        .hero-title { font-size: 56px; }

        .title-highlight-pill {
            font-size: 48px;
            min-width: 280px;
            padding: 8px 36px;
        }

        .services-intro { grid-column: 1 / -1; }

        .talent-grid {
            grid-template-columns: 1fr;
            gap: 50px;
        }

        .talent-heading { font-size: 40px; }

        .talent-left { text-align: center; }

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

        .roles-grid              { grid-template-columns: repeat(4, 1fr); }
        .salesforce-services-grid { grid-template-columns: repeat(2, 1fr); }
        .industries-grid         { grid-template-columns: repeat(2, 1fr); }
        .industries-section      { padding: 80px 30px; }

        .footer-grid {
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .contact-grid {
            grid-template-columns: 1fr;
            gap: 50px;
        }

        .contact-heading { font-size: 36px; }
    }


    /* ══════════════════════════════════════════
    13. RESPONSIVE - 768px (Mobile)
    ══════════════════════════════════════════ */
    @media (max-width: 768px) {
        .menu-toggle {
            display: block;
            margin-left: auto;
        }

        .consult-btn { display: none; }

        .nav-menu {
            display: none;
            position: absolute;
            top: 80px;
            left: 0;
            width: 100%;
            background: #ffffff;
            padding: 20px 0;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            z-index: 999;
            margin: 0;
        }

        .nav-menu.active { display: block; }

        .nav-menu ul {
            flex-direction: column;
            flex-wrap: nowrap;
            justify-content: center;
            gap: 18px;
            text-align: center;
        }

        .navbar {
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            gap: 0;
        }

        .mobile-contact { display: block; }

        /* Hero */
        .hero-title {
            font-size: 36px;
            letter-spacing: -0.5px;
        }

        .title-highlight-pill {
            font-size: 34px;
            min-width: 220px;
            padding: 8px 24px;
            border-radius: 12px;
        }

        .hero-cta { flex-direction: column; align-items: center; }

        .cta-primary,
        .cta-secondary {
            width: 100%;
            max-width: 320px;
            justify-content: center;
        }

        /* Sections */
        .talent-heading      { font-size: 34px; }
        .talent-features     { flex-direction: column; align-items: center; }
        .feature-box         { width: 100%; max-width: 260px; }
        .roles-grid          { grid-template-columns: repeat(2, 1fr); }
        .salesforce-services-grid { grid-template-columns: 1fr; }
        .industries-grid     { grid-template-columns: 1fr; }
        .industries-section  { padding: 70px 20px; }
        .section-header h2   { font-size: 36px; }
        .salesforce-title-logo { width: 80px; }

        /* Footer */
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .footer-bottom {
            flex-direction: column;
            gap: 14px;
            text-align: center;
        }

        /* Contact */
        .contact-form-card   { padding: 28px 20px; }
        .contact-form-row    { grid-template-columns: 1fr; }

        /* Trust bar */
        .trust-bar {
            gap: 24px;
            flex-direction: column;
            align-items: center;
        }

    }


    /* ══════════════════════════════════════════
    13. RESPONSIVE - 480px (Small Mobile)
    ══════════════════════════════════════════ */
    @media (max-width: 480px) {
        .hero-title { font-size: 28px; }

        .title-highlight-pill {
            font-size: 26px;
            min-width: 180px;
            border-radius: 10px;
        }

        .roles-grid { grid-template-columns: 1fr; }

        .industries-header h2,
        .section-header h2,
        .services-intro h2 { font-size: 30px; }
    }


    /* ══════════════════════════════════════════
    07a. AI NETWORK ANIMATION
    — sits inside .services-intro, matches
        Inter font + #16a34a / #f8fafc theme
    ══════════════════════════════════════════ */
    /* =====================================================
    AI SERVICES SECTION
    ===================================================== */

    .services-intro{
        max-width:520px;
    }

    .section-tag {
        display: inline-block;
        color: #16a34a; /* Updated to Andura Green */
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 18px;
    }

    .services-intro h2{
        font-size:64px;
        line-height:1.08;
        font-weight:800;
        color:#0f172a;
        margin-bottom:24px;
    }

    .services-description{
        color:#64748b;
        font-size:18px;
        line-height:1.8;
        margin-bottom:34px;
    }

    .view-services {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        color: #16a34a; /* Updated to Andura Green */
        font-size: 18px;
        font-weight: 700;
        text-decoration: none;
        transition: .3s;
    }

    .view-services:hover{
        gap:18px;
    }
    /* =====================================================
    AI NETWORK
    ===================================================== */
    #ai-services {
        padding: 80px 0;
        background: #f8fafc;
        overflow: hidden;
    }

    #ai-services .container {
        overflow: visible;
    }

    .ai-network {
        position: relative;
        width: 520px;
        height: 520px;
        margin: auto;
        flex-shrink: 0;
        overflow: visible;
    }

    /* SVG lines layer */
    .connector-lines {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
        pointer-events: none;
    }

    /* Base dashed lines */
    .dash-line {
        stroke: #d1d5db;
        stroke-width: 1.8;
        stroke-dasharray: 6, 5;
        fill: none;
        animation: dashFlow 2.5s linear infinite;
    }

    @keyframes dashFlow {
        from { stroke-dashoffset: 0;   }
        to   { stroke-dashoffset: -44; }
    }

    /* Glowing moving dots */
    .glow-dot {
        filter: blur(0.5px);
    }

    .glow-green  { fill: #16a34a; filter: drop-shadow(0 0 5px #22c55e) drop-shadow(0 0 10px #22c55e); }
    .glow-purple { fill: #7c3aed; filter: drop-shadow(0 0 5px #a855f7) drop-shadow(0 0 10px #a855f7); }
    .glow-orange { fill: #ea580c; filter: drop-shadow(0 0 5px #f97316) drop-shadow(0 0 10px #f97316); }
    .glow-red    { fill: #dc2626; filter: drop-shadow(0 0 5px #ef4444) drop-shadow(0 0 10px #ef4444); }
    .glow-lime   { fill: #65a30d; filter: drop-shadow(0 0 5px #84cc16) drop-shadow(0 0 10px #84cc16); }

    /* Center Hub */
    .ai-center {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 20;
        text-align: center;
    }

    .ai-center-logo {
        width: 105px;
        height: 105px;
        border-radius: 50%;
        background: linear-gradient(135deg, #10b981, #16a34a);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        box-shadow:
            0 0 0 12px rgba(16,185,129,0.10),
            0 0 0 24px rgba(16,185,129,0.05),
            0 8px 32px rgba(16,185,129,0.30);
    }

    .ai-center-logo i {
        font-size: 38px;
        color: #fff;
    }

    .center-text {
        display: block;
        margin-top: 14px;
        font-size: 18px;
        font-weight: 800;
        color: #0f172a;
    }

    /* Node wrapper */
    .node-wrap {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        z-index: 10;
    }

    /* Individual nodes */
    .ai-node {
        position: absolute;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        transform: translate(-50%, -50%);
        text-align: center;
    }

    /* Node positions — pushed far out to match line endpoints */
    .n-auto      { left: 0px;    top: -205px; }
    .n-agents    { left: 212px;  top: -120px; }
    .n-chat      { left: 212px;  top:  120px; }
    .n-analytics { left: 0px;    top:  205px; }
    .n-content   { left: -212px; top:  120px; }
    .n-vision    { left: -212px; top: -120px; }

    /* Float animations */
    .n-auto      { animation: nodeFloat 3.8s ease-in-out infinite 0.0s; }
    .n-agents    { animation: nodeFloat 4.2s ease-in-out infinite 0.5s; }
    .n-chat      { animation: nodeFloat 3.6s ease-in-out infinite 1.0s; }
    .n-analytics { animation: nodeFloat 4.5s ease-in-out infinite 1.5s; }
    .n-content   { animation: nodeFloat 3.9s ease-in-out infinite 0.8s; }
    .n-vision    { animation: nodeFloat 4.1s ease-in-out infinite 0.3s; }

    @keyframes nodeFloat {
        0%, 100% { transform: translate(-50%, -50%) translateY(0px);   }
        50%       { transform: translate(-50%, -50%) translateY(-10px); }
    }

    /* Icon circles */
    .ai-icon {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 3px solid #fff;
        box-shadow: 0 8px 24px rgba(0,0,0,0.10);
        transition: transform 0.3s ease;
    }

    .ai-icon:hover { transform: scale(1.15); }
    .ai-icon i { font-size: 28px; }

    /* Node labels */
    .ai-node span {
        display: inline-block;
        padding: 6px 16px;
        border-radius: 20px;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.8px;
        color: #fff;
        white-space: nowrap;
        font-family: 'Inter', sans-serif;
    }

    /* Color themes */
    .automation       { background: #dcfce7; }
    .automation i     { color: #16a34a; }
    .n-auto span      { background: #16a34a; }

    .agents           { background: #d1fae5; }
    .agents i         { color: #059669; }
    .n-agents span    { background: #059669; }

    .chatbot          { background: #ede9fe; }
    .chatbot i        { color: #7c3aed; }
    .n-chat span      { background: #7c3aed; }

    .analytics        { background: #ffedd5; }
    .analytics i      { color: #ea580c; }
    .n-analytics span { background: #ea580c; }

    .content          { background: #fee2e2; }
    .content i        { color: #dc2626; }
    .n-content span   { background: #dc2626; }

    .vision           { background: #ecfccb; }
    .vision i         { color: #65a30d; }
    .n-vision span    { background: #65a30d; }


    /* =====================================================
    RESPONSIVE
    ===================================================== */
    @media (max-width: 1200px) {
        .ai-network { width: 540px; height: 540px; }
        .n-auto      { left: 0px;    top: -215px; }
        .n-agents    { left: 224px;  top: -126px; }
        .n-chat      { left: 224px;  top:  126px; }
        .n-analytics { left: 0px;    top:  215px; }
        .n-content   { left: -224px; top:  126px; }
        .n-vision    { left: -224px; top: -126px; }
    }

    @media (max-width: 1024px) {
        .services-layout { grid-template-columns: 1fr; gap: 60px; }
        .ai-network { width: 480px; height: 480px; margin: 0 auto; }
        .n-auto      { left: 0px;    top: -190px; }
        .n-agents    { left: 198px;  top: -111px; }
        .n-chat      { left: 198px;  top:  111px; }
        .n-analytics { left: 0px;    top:  190px; }
        .n-content   { left: -198px; top:  111px; }
        .n-vision    { left: -198px; top: -111px; }
    }

    @media (max-width: 768px) {
        .ai-network { width: 360px; height: 360px; }
        .ai-center-logo { width: 88px; height: 88px; }
        .ai-center-logo i { font-size: 32px; }
        .center-text { font-size: 14px; margin-top: 10px; }
        .ai-icon { width: 52px; height: 52px; }
        .ai-icon i { font-size: 20px; }
        .ai-node span { font-size: 9px; padding: 4px 10px; }
        .n-auto      { left: 0px;    top: -142px; }
        .n-agents    { left: 148px;  top: -83px;  }
        .n-chat      { left: 148px;  top:  83px;  }
        .n-analytics { left: 0px;    top:  142px; }
        .n-content   { left: -148px; top:  83px;  }
        .n-vision    { left: -148px; top: -83px;  }
    }