:root {
    --primary: #4f46e5;
    /* Indigo */
    --primary-light: #6366f1;
    --primary-dark: #3730a3;
    --secondary: #3b82f6;
    /* Blue */
    --bg-light: #f8fafc;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --gradient-main: linear-gradient(135deg, #4f46e5 0%, #3b82f6 100%);
    --gradient-purple: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --primary-hover: #4338ca;
    --gradient: linear-gradient(135deg, #4f46e5 0%, #3b82f6 100%);
    --gradient-soft: linear-gradient(135deg, rgba(79, 70, 229, 0.08) 0%, rgba(59, 130, 246, 0.08) 100%);
    --text-main: #1f2937;
    --text-muted: #6b7280;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px -4px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px -8px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 40px rgba(79, 70, 229, 0.15);

    --bg-light: #f8fafc;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --gradient-main: linear-gradient(135deg, #4f46e5 0%, #3b82f6 100%);
    --gradient-purple: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: #ffffff;
    overflow-x: hidden;
}
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    padding-right: 0;
    padding-left: 0;
}
/* Utilities */
.text-gradient {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-py {
    padding: 40px 0;
}

.bg-gray-50 {
    background-color: var(--bg-light);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Buttons */
.btn-custom {
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary-gradient {
    background: var(--gradient-main);
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.btn-primary-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(79, 70, 229, 0.4);
    color: white;
}

.btn-outline-custom {
    background: white;
    color: var(--primary);
    border: 1px solid #cbd5e1;
}

.btn-outline-custom:hover {
    border-color: var(--primary);
    background: var(--bg-light);
    color: var(--primary);
}

/* Navbar */
.navbar {
    padding: 18px 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #f1f5f9;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--text-dark);
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin: 0 12px;
}

.nav-link:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    padding: 50px 0 50px;
    background: radial-gradient(circle at top right, rgba(79, 70, 229, 0.08) 0%, rgba(255, 255, 255, 0) 50%);
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: #eef2ff;
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

/* Trust Avatars */
.avatar-stack {
    display: flex;
    align-items: center;
}

.avatar-stack img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -12px;
}

.avatar-stack img:first-child {
    margin-left: 0;
}

/* Dashboard Mockup - Pure CSS */
.mockup-wrapper {
    position: relative;
    z-index: 1;
}

.dashboard-ui {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid #f1f5f9;
    padding: 20px;
    display: flex;
    gap: 20px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

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

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

.db-sidebar {
    width: 60px;
    border-right: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-right: 10px;
}

.db-icon-active {
    width: 40px;
    height: 40px;
    background: #eef2ff;
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.db-icon {
    width: 40px;
    height: 40px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.db-main {
    flex: 1;
}

.db-header {
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 1rem;
}

.db-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.db-stat-card {
    border: 1px solid #f1f5f9;
    padding: 15px;
    border-radius: var(--radius-md);
}

.db-stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.db-stat-value {
    font-size: 1.25rem;
    font-weight: 700;
}

.db-stat-trend {
    font-size: 0.65rem;
    color: #10b981;
    display: flex;
    align-items: center;
    gap: 3px;
    margin-top: 5px;
}

.db-charts {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 15px;
}

.db-chart-box {
    border: 1px solid #f1f5f9;
    padding: 15px;
    border-radius: var(--radius-md);
}

.donut-chart {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto;
    background: conic-gradient(var(--primary) 0% 65%, #38bdf8 65% 85%, #e2e8f0 85% 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.donut-inner {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
}

/* Workflow steps below mockup */
.mini-workflow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: -20px;
    position: relative;
    z-index: 2;
    display: none;
}

.mw-step {
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 10px 15px;
    font-size: 0.7rem;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mw-icon {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 4px;
}

.mw-arrow {
    color: #cbd5e1;
    font-size: 1.2rem;
    letter-spacing: -2px;
}

/* Quick Stats Banner */
.stats-strip {
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    padding: 30px 0;
}

.stat-icon-soft {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #eef2ff;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

/* Solutions Section */
.section-badge {
    display: inline-block;
    padding: 5px 15px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.solution-card {
    background: white;
    border: 1px solid #f1f5f9;
    border-radius: var(--radius-lg);
    padding: 15px;
    text-align: center;
    transition: all 0.3s;
}

.solution-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: #cbd5e1;
    transform: translateY(-5px);
}

.sol-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.sol-link {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}

.sol-link:hover {
    color: var(--primary-dark);
}

.solution-card .img-fluid {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* How it works */
.process-card {
    text-align: center;
    position: relative;
    padding: 20px;
}

.p-icon-wrap {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    position: relative;
    z-index: 2;
    transition: all 0.3s;
}

.process-card:hover .p-icon-wrap {
    border-color: var(--primary);
    box-shadow: 0 0 0 8px #eef2ff;
}

.p-number {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 26px;
    height: 26px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media(min-width: 992px) {
    .p-connector::after {
        content: '';
        position: absolute;
        top: 60px;
        right: -50%;
        width: 100%;
        border-top: 2px dashed #cbd5e1;
        z-index: 1;
    }
}

/* Industries Section */
.industry-card {
    background: white;
    border: 1px solid #f1f5f9;
    border-radius: var(--radius-md);
    padding: 25px;
    transition: all 0.3s;
    height: 100%;
    text-align: center;
}

.industry-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.ind-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

/* Why Choose Us & Impact Banner */
.check-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.check-icon {
    color: var(--primary);
    font-size: 1.2rem;
}

.impact-banner {
    background: var(--gradient-purple);
    border-radius: var(--radius-xl);
    padding: 50px;
    color: white;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.impact-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
}

.impact-stat {
    text-align: center;
    position: relative;
    z-index: 2;
}

.impact-icon {
    font-size: 36px;
    opacity: 0.8;
    margin-bottom: 10px;
}

.impact-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.impact-label {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Featured Solution 1 Visual */
.featured-visual {
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    padding: 40px;
    border: 1px solid #e2e8f0;
    position: relative;
}

.fv-box {
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 20px;
}

.fv-ai-circle {
    width: 90px;
    height: 90px;
    background: white;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--primary);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.fv-ai-circle::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px dashed var(--primary);
    border-radius: 50%;
    animation: spin 10s linear infinite;
    opacity: 0.3;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.fv-doc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fv-doc-list li {
    padding: 10px;
    border: 1px solid #f1f5f9;
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    gap: 10px;
    align-items: center;
}

.fv-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #cbd5e1;
    height: 100%;
}

/* Featured Solution 2 Visual (Chatbot) */
.chat-visual-container {
    position: relative;
    padding-top: 24px;
    padding-left: 24px;
}

.floating-bot {
    position: absolute;
    top: -5px;
    left: -5px;
    width: 66px;
    height: 66px;
    background: var(--gradient-main);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 10;
    animation: floatBot 4s ease-in-out infinite;
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.4);
    border: 3px solid white;
}

@keyframes floatBot {

    0%,
    100% {
        transform: translateY(0) rotate(-5deg);
    }

    50% {
        transform: translateY(-12px) rotate(5deg);
    }
}

.chat-mockup {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    position: relative;
    z-index: 5;
    width: 100%;
}

.chat-header {
    background: #f8fafc;
    padding: 12px 18px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-body {
    padding: 16px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 280px;
    overflow: hidden;
}

.chat-msg {
    display: flex;
    width: 100%;
    opacity: 0;
}

.chat-bot {
    justify-content: flex-start;
}

.chat-user {
    justify-content: flex-end;
}

.msg-bubble {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 0.82rem;
    box-shadow: var(--shadow-sm);
    line-height: 1.5;
}

.chat-bot .msg-bubble {
    background: #f1f5f9;
    color: var(--text-dark);
    border-bottom-left-radius: 4px;
}

.chat-user .msg-bubble {
    background: var(--primary);
    color: white;
    border-bottom-right-radius: 4px;
}

/* Chat animation */
.msg-anim-1 {
    animation: popInMsgLoop 9s infinite;
    animation-delay: 0s;
}

.msg-anim-2 {
    animation: popInMsgLoop 9s infinite;
    animation-delay: 2s;
}

.msg-anim-3 {
    animation: popInMsgLoop 9s infinite;
    animation-delay: 4.5s;
}

.msg-anim-4 {
    animation: popInMsgLoop 9s infinite;
    animation-delay: 7s;
}

@keyframes popInMsgLoop {

    0%,
    5% {
        opacity: 0;
        transform: translateY(15px) scale(0.95);
    }

    10%,
    90% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    95%,
    100% {
        opacity: 0;
        transform: translateY(-15px) scale(0.95);
    }
}

/* Featured Solution 3 Visual (Edu GPT) */
.edu-float-mark {
    position: absolute;
    font-weight: 800;
    font-size: 1.1rem;
    animation: eduMarkFloat 3s ease-in-out infinite;
    line-height: 1;
    z-index: 3;
}

.edu-mark-1 {
    color: #22c55e;
    top: -18px;
    left: -22px;
    animation-delay: 0s;
}

.edu-mark-2 {
    color: #ef4444;
    top: -14px;
    right: -24px;
    animation-delay: 1s;
}

.edu-mark-3 {
    color: #6366f1;
    bottom: 10px;
    left: -28px;
    animation-delay: 1.8s;
}

.edu-mark-4 {
    color: #22c55e;
    bottom: 0px;
    right: -20px;
    animation-delay: 0.6s;
}

@keyframes eduMarkFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.75;
    }

    50% {
        transform: translateY(-9px) rotate(15deg);
        opacity: 1;
    }
}

.qa-item {
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
}

.qa-item:last-child {
    border-bottom: none;
}

/* Testimonials */
.testi-card {
    background: white;
    border: 1px solid #f1f5f9;
    border-radius: var(--radius-lg);
    padding: 30px;
    height: 100%;
    box-shadow: var(--shadow-sm);
}

.quote-icon {
    font-size: 2.5rem;
    color: #e2e8f0;
    line-height: 1;
    margin-bottom: 15px;
}

/* CTA Banner */
.cta-banner {
    background: var(--gradient-main);
    border-radius: var(--radius-xl);
    padding: 60px 40px;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-rocket {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--primary);
}

/* Footer */
footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 2rem  1rem 1rem;
    font-size: 0.9rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

footer h6 {
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer ul li {
    margin-bottom: 12px;
}

footer a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
}

footer a:hover {
    color: white;
}

.social-links a {
    font-size: 1.2rem;
    margin-right: 15px;
}


/* DocuSmart AI */

.section-pad {
    padding: 40px 0;
}

.bg-light-gray {
    background: #f8fafc;
}

/* Buttons */
.btn-primary-custom {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 10px 24px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.35);
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.45);
    color: white;
}

.btn-outline-custom {
    background: white;
    color: var(--primary);
    border: 1px solid #e5e7eb;
    padding: 10px 24px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    border-color: var(--primary);
    background: #f5f3ff;
    color: var(--primary);
}

/* ─── HERO ─────────────────────────────────────────────────── */
.hero-section {
    padding: 40px 0 40px;
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

/* Animated gradient blobs */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.55;
    pointer-events: none;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.25), transparent 70%);
    top: -120px;
    right: -80px;
    animation: blobPulse 8s ease-in-out infinite;
}

.blob-2 {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2), transparent 70%);
    bottom: -100px;
    right: 200px;
    animation: blobPulse 10s ease-in-out infinite reverse;
}

.blob-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15), transparent 70%);
    top: 30%;
    left: -60px;
    animation: blobPulse 7s ease-in-out infinite 2s;
}

@keyframes blobPulse {

    0%,
    100% {
        transform: scale(1) translate(0, 0);
    }

    33% {
        transform: scale(1.1) translate(20px, -15px);
    }

    66% {
        transform: scale(0.92) translate(-10px, 20px);
    }
}

/* Dot grid */
.hero-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(79, 70, 229, 0.12) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

.badge-soft {
    background: linear-gradient(135deg, #eff2ff, #e0e7ff);
    color: var(--primary);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(79, 70, 229, 0.2);
    animation: badgePop 0.6s ease both;
}

@keyframes badgePop {
    from {
        opacity: 0;
        transform: translateY(-8px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

/* Animated typing cursor on headline */
.cursor {
    display: inline-block;
    width: 3px;
    height: 0.9em;
    background: var(--primary);
    margin-left: 3px;
    vertical-align: middle;
    animation: blink 1s step-end infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0
    }
}

/* Avatar group */
.avatar-group {
    display: flex;
    align-items: center;
}

.avatar-group img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -8px;
    box-shadow: var(--shadow-sm);
}

.avatar-group img:first-child {
    margin-left: 0;
}

/* ─── MOCKUP ────────────────────────────────────────────────── */
.mockup-container {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border: 1px solid rgba(79, 70, 229, 0.12);
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
    position: relative;
}

.mockup-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

@keyframes float {

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

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

.mockup-header {
    background: linear-gradient(90deg, #f8fafc, #f1f5f9);
    padding: 12px 18px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 7px;
}

.mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot-r {
    background: #ff5f56;
}

.dot-y {
    background: #ffbd2e;
}

.dot-g {
    background: #27c93f;
}

.mockup-body {
    padding: 20px 24px;
}

.workflow-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}

.workflow-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 60%, #e2e8f0 60%);
    animation: progressLine 2.5s ease-out both 0.5s;
}

@keyframes progressLine {
    from {
        right: 92%;
    }

    to {
        right: 8%;
    }
}

.w-step {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    border: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    position: relative;
    font-size: 13px;
    color: var(--text-muted);
    transition: all 0.4s ease;
}

.w-step.active {
    border-color: var(--primary);
    background: var(--primary);
    color: white;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.18);
    animation: stepPop 0.4s ease both;
}

@keyframes stepPop {
    0% {
        transform: scale(0.7);
        opacity: 0;
    }

    80% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.doc-preview-panel {
    display: flex;
    gap: 14px;
}

.doc-skeleton {
    flex: 1;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 14px;
    background: #f8fafc;
}

.skeleton-line {
    height: 7px;
    background: #cbd5e1;
    border-radius: 4px;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
}

.skeleton-line::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.7) 50%, transparent 100%);
    animation: shimmer 1.8s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* AI scan line effect on skeleton */
.doc-skeleton::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(79, 70, 229, 0.6), transparent);
    animation: scanLine 2s linear infinite;
    pointer-events: none;
}

.doc-skeleton {
    position: relative;
    overflow: hidden;
}

@keyframes scanLine {
    0% {
        top: 0;
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    95% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

.data-extraction-panel {
    flex: 1;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 14px;
}

.extracted-field {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.8rem;
    animation: fieldSlide 0.3s ease both;
}

.extracted-field:nth-child(1) {
    animation-delay: 0.8s;
}

.extracted-field:nth-child(2) {
    animation-delay: 1.0s;
}

.extracted-field:nth-child(3) {
    animation-delay: 1.2s;
}

.extracted-field:nth-child(4) {
    animation-delay: 1.4s;
}

@keyframes fieldSlide {
    from {
        opacity: 0;
        transform: translateX(10px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.field-label {
    color: var(--text-muted);
}

.field-value {
    font-weight: 600;
    color: var(--text-main);
}

.status-badge {
    background: #dcfce7;
    color: #166534;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    display: inline-block;
    animation: fieldSlide 0.3s ease both 1.6s;
}

/* ─── PROBLEM / SOLUTION ───────────────────────────────────── */
.compare-card {
    padding: 15px 30px;
    border-radius: var(--radius-lg);
    height: 100%;
    transition: transform 0.3s ease;
}

.compare-card:hover {
    transform: translateY(-4px);
}

.card-problem {
    background: #ffe2e2;
    border: 1px solid #fee2e2;
}

.card-solution {
    background: #d3f7de;
    border: 1px solid #dcfce7;
}

.compare-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 0.95rem;
}

.arrow-circle {
    width: 46px;
    height: 46px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: var(--shadow-md);
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: var(--shadow-md);
    }

    50% {
        transform: scale(1.08);
        box-shadow: 0 0 20px rgba(79, 70, 229, 0.4);
    }
}

/* ─── HOW IT WORKS ─────────────────────────────────────────── */
.step-card {
    position: relative;
    background: white;
    border: 1px solid rgb(241, 245, 249);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    transition: 0.3s;
    height: 100%;
}

.step-icon-wrapper {
    width: 100px;
    height: 100px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 2.5rem;
    color: var(--primary);
    position: relative;
    z-index: 2;
    transition: all 0.35s ease;
}

.step-card:hover .step-icon-wrapper {
    background: var(--primary);
    color: white;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 10px 24px rgba(79, 70, 229, 0.3);
}

.step-number {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 24px;
    height: 24px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    border: 2px solid white;
}

@media (min-width: 992px) {
    .step-connector::after {
        content: '';
        position: absolute;
        top: 35px;
        right: -50%;
        width: 100%;
        border-top: 2px dashed #c7d2fe;
        z-index: 1;
    }
}

/* ─── BENEFITS ─────────────────────────────────────────────── */
.benefit-card {
    background: white;
    border: 1px solid #f3f4f6;
    border-radius: var(--radius-md);
    padding: 22px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
}

.benefit-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: rgba(79, 70, 229, 0.2);
}

.benefit-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #eff2ff;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

/* ─── STATS BANNER ─────────────────────────────────────────── */
.stats-banner {
    background: var(--gradient);
    color: white;
    border-radius: var(--radius-lg);
    padding: 30px 0 !important;
    position: relative;
    overflow: hidden;
}

.stats-banner h2 {
    line-height: 1.5;
}

.stats-banner::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -8%;
    width: 420px;
    height: 420px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    filter: blur(60px);
    animation: orb 8s ease-in-out infinite;
}

.stats-banner::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    filter: blur(50px);
    animation: orb 10s ease-in-out infinite reverse;
}

@keyframes orb {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2) translate(15px, -10px);
    }
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.stat-icon {
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    backdrop-filter: blur(4px);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    display: inline-block;
}

/* ─── DOC TYPE CARDS ───────────────────────────────────────── */
.doc-type-card {
    background: white;
    border: 1px solid #f3f4f6;
    border-radius: var(--radius-md);
    padding: 22px 16px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.doc-type-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(79, 70, 229, 0.3);
    transform: translateY(-4px);
}

.icon-box-soft {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 24px;
}

/* ─── VIDEO / ACTION ───────────────────────────────────────── */
.video-mockup {
    background: white;
    border-radius: var(--radius-lg);
    padding: 18px;
    box-shadow: var(--shadow-lg);
    border: 1px solid #f3f4f6;
    position: relative;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 62px;
    height: 62px;
    background: rgba(31, 41, 55, 0.75);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(4px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.play-button:hover {
    background: var(--primary);
    transform: translate(-50%, -50%) scale(1.1);
}

.feature-list-item {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
}

.feature-list-icon {
    width: 38px;
    height: 38px;
    background: #eff2ff;
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

/* ─── USE CASE ─────────────────────────────────────────────── */
.use-case-visual {
    position: relative;
}

.before-box {
    background: linear-gradient(135deg, #1f2937, #111827);
    border-radius: var(--radius-md);
    padding:0 18px 18px;
    color: white;
    width: 50%;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

.after-box {
    background: white;
    border-radius: var(--radius-md);
    padding: 18px;
    width: 65%;
    box-shadow: var(--shadow-lg);
    position: absolute;
    bottom: -25px;
    right: 0;
    z-index: 2;
    border: 1px solid #e5e7eb;
}

.floating-badge {
    position: absolute;
    top: -18px;
    right: 10%;
    background: var(--gradient);
    color: white;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: bold;
    box-shadow: var(--shadow-md);
    z-index: 3;
    animation: float 4s ease-in-out infinite;
    font-size: 0.85rem;
    line-height: 1.4;
}

/* ─── TESTIMONIALS ─────────────────────────────────────────── */
.testimonial-card {
    background: white;
    border: 1px solid #f3f4f6;
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.quote-icon {
    color: #c7d2fe;
    font-size: 34px;
    margin-bottom: 10px;
    line-height: 1;
}

/* ─── FOOTER ───────────────────────────────────────────────── */
footer h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 1rem;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.9rem;
}

footer ul li a:hover {
    color: white;
}

.footer-social a {
    color: #94a3b8;
    font-size: 18px;
    margin-right: 14px;
    transition: color 0.2s;
}

.footer-social a:hover {
    color: white;
}

/* ─── GRADIENT CARD BORDER (glow on hover) ─────────────────── */
.glow-card {
    position: relative;
    transition: all 0.3s ease;
}

.glow-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: calc(var(--radius-md) + 1px);
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.glow-card:hover::before {
    opacity: 0.5;
}

/* ─── ANIMATED GRADIENT TEXT ───────────────────────────────── */
.text-animated-gradient {
    background: linear-gradient(270deg, #4f46e5, #8b5cf6, #3b82f6, #4f46e5);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* ─── PARTICLE DOTS (CSS only) ──────────────────────────────── */
.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.p1 {
    width: 6px;
    height: 6px;
    background: rgba(79, 70, 229, 0.4);
    top: 15%;
    left: 8%;
    animation: particleFloat 7s ease-in-out infinite;
}

.p2 {
    width: 4px;
    height: 4px;
    background: rgba(59, 130, 246, 0.5);
    top: 40%;
    left: 15%;
    animation: particleFloat 9s ease-in-out infinite 1s reverse;
}

.p3 {
    width: 8px;
    height: 8px;
    background: rgba(139, 92, 246, 0.3);
    top: 70%;
    left: 5%;
    animation: particleFloat 6s ease-in-out infinite 2s;
}

.p4 {
    width: 5px;
    height: 5px;
    background: rgba(79, 70, 229, 0.35);
    top: 25%;
    right: 5%;
    animation: particleFloat 8s ease-in-out infinite 0.5s;
}

.p5 {
    width: 7px;
    height: 7px;
    background: rgba(59, 130, 246, 0.4);
    top: 60%;
    right: 8%;
    animation: particleFloat 10s ease-in-out infinite 3s reverse;
}

@keyframes particleFloat {

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

    33% {
        transform: translateY(-18px) translateX(8px);
        opacity: 1;
    }

    66% {
        transform: translateY(10px) translateX(-6px);
        opacity: 0.4;
    }
}

/* Counter animation class */
.counter {
    display: inline-block;
}

@media handheld,
only screen and (max-width: 1400px) {
    .solutions-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }

    .h5,
    h5 {
        font-size: 1rem;
    }

    .process-card {
        padding: 5px;
    }
}

.baranch-office h4 {
    font-size: 18px;
    color: #89a9f3;
}

.baranch-office p {
    text-align: left;
    font-size: 14px;
}

.contact-wrapper .contact-form-items-area h2 {
    font-size: 30px;
    color: var(--white);
    margin-bottom: 30px;
}

.contact-wrapper .contact-form-items-area small {
    font-size: 20px;
}

.contact-wrapper .contact-form-items-area .contact-form-items .form-clt {
    position: relative;
}

.contact-wrapper .contact-form-items-area .contact-form-items .form-clt input,
.contact-wrapper .contact-form-items-area .contact-form-items .form-clt textarea {
    color: #ccc;
    padding: 18px 20px;
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(207, 208, 212, 0.5);
    background: #FFF;
    font-weight: 500;
    font-size: 16px;
}

.contact-wrapper .contact-form-items-area .contact-form-items .form-clt input::placeholder,
.contact-wrapper .contact-form-items-area .contact-form-items .form-clt textarea::placeholder {
    color: var(--text);
}

.contact-wrapper .contact-form-items-area .contact-form-items .form-clt .icon {
    position: absolute;
    top: 20px;
    right: 25px;
    color: var(--theme);
}

.contact-wrapper .contact-form-items-area .contact-form-items .form-clt textarea {
    padding-bottom: 100px;
}

.contact-wrapper .contact-form-items-area .contact-form-items .form-clt .nice-select {
    border-radius: 10px;
    border: 1px solid rgba(207, 208, 212, 0.2);
    background: #222226;
    padding: 18px 20px;
    z-index: 9;
}

.contact-wrapper .contact-form-items-area .contact-form-items .form-clt .nice-select::after {
    height: 8px;
    width: 8px;
    right: 25px;
    top: 30px;
    border-color: var(--theme);
    border-bottom: 2px solid var(--theme);
    border-right: 2px solid var(--theme);
}

.contact-wrapper .contact-form-items-area .contact-form-items .form-clt .nice-select span {
    color: #cdcdcd;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
}

.contact-wrapper .contact-form-items-area .contact-form-items .form-clt .nice-select .list {
    background-color: var(--bg);
    right: 0;
}

.contact-wrapper .contact-form-items-area .contact-form-items .form-clt .nice-select .option {
    background-color: transparent;
    font-size: 16px;
    line-height: 150%;
    padding: 10px 10px;
    min-height: initial;
    font-weight: 500;
    border: none;
}

.contact-wrapper .contact-form-items-area .contact-form-items .theme-btn {
    background-color: var(--theme);
    color: var(--header);
}

footer .text-muted {
    color: rgb(146 177 207 / 75%) !important;
}

.contact-form-items-area h5 {
    font-size: 1rem;
}

.contact-form-items-area p {
    text-align: justify;
}



/*Health Care Chatbot*/

/* Hero Section */
.hero {
    padding: 50px 0 50px;
    background: radial-gradient(circle at top left, rgba(79, 70, 229, 0.05) 0%, rgba(255, 255, 255, 0) 50%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background-image: radial-gradient(#e2e8f0 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    opacity: 0.4;
    z-index: -1;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: #eef2ff;
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

/* Trust Avatars */
.avatar-stack {
    display: flex;
    align-items: center;
}

.avatar-stack img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -12px;
}

.avatar-stack img:first-child {
    margin-left: 0;
}

/* Phone & Chat Mockup (Pure CSS) */
.hero-visual-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 600px;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: #ffffff;
    border-radius: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 0 10px #f1f5f9, 0 0 0 11px #e2e8f0;
    position: relative;
    overflow: hidden;
    z-index: 5;
    display: flex;
    flex-direction: column;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

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

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

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 28px;
    background: #f1f5f9;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    z-index: 10;
}

.pm-header {
    padding: 40px 20px 15px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pm-avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.pm-body {
    padding: 20px;
    flex: 1;
    background: #f8fafc;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pm-bot-msg {
    background: white;
    padding: 12px;
    border-radius: 12px;
    border-bottom-left-radius: 4px;
    box-shadow: var(--shadow-sm);
    font-size: 0.85rem;
    max-width: 90%;
}

.pm-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pm-option-btn {
    background: white;
    border: 1px solid #e2e8f0;
    padding: 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
}

.pm-option-btn i {
    font-size: 1.1rem;
}

.pm-input {
    padding: 15px 20px;
    background: white;
    border-top: 1px solid #f1f5f9;
    display: flex;
    gap: 10px;
}

.pm-input-box {
    flex: 1;
    background: #f1f5f9;
    border-radius: 20px;
    padding: 10px 15px;
    font-size: 0.8rem;
    color: #94a3b8;
}

.pm-send {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Floating Elements */
.float-el {
    position: absolute;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 10;
    animation: floatObj 8s ease-in-out infinite;
}

.float-1 {
    top: 10%;
    right: 5%;
    width: 70px;
    height: 70px;
    font-size: 30px;
    color: #ef4444;
    animation-delay: 0s;
}

.float-2 {
    top: 40%;
    right: -15%;
    width: 50px;
    height: 50px;
    font-size: 20px;
    color: #3b82f6;
    animation-delay: 2s;
}

.float-3 {
    bottom: 25%;
    right: -5%;
    width: 60px;
    height: 60px;
    font-size: 24px;
    color: #8b5cf6;
    animation-delay: 4s;
}

@keyframes floatObj {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-10px, -20px) scale(1.05);
    }
}

.hero-robot-badge {
    position: absolute;
    bottom: 10%;
    left: 0%;
    background: white;
    border-radius: var(--radius-lg);
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-xl);
    z-index: 10;
    animation: float 6s ease-in-out infinite;
    animation-delay: 1s;
}

.hrb-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-main);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

/* Challenges vs Solution */
.compare-section {
    position: relative;
}

.comp-card {
    border-radius: var(--radius-lg);
    padding: 40px;
    height: 100%;
    box-shadow: var(--shadow-sm);
}

.comp-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comp-list li {
    margin-bottom: 5px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-weight: 500;
    font-size: 0.95rem;
}

.c-icon-red {
    color: #ef4444;
    font-size: 1.2rem;
    margin-top: -2px;
}

.c-icon-green {
    color: #10b981;
    font-size: 1.2rem;
    margin-top: -2px;
}

.comp-arrow-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.comp-arrow {
    width: 60px;
    height: 60px;
    background: var(--gradient-main);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: var(--shadow-lg);
    z-index: 5;
}

/* Features */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.feat-card {
    background: white;
    border: 1px solid #f1f5f9;
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
}

.feat-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
    transform: translateY(-5px);
}

.feat-icon-wrap {
    width: 100px;
    height: 100px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 2.5rem;
    color: var(--primary);
    position: relative;
    z-index: 2;
    transition: all 0.35s ease;
}

.feat-card:hover .feat-icon-wrap {
    background: var(--primary);
    color: white;
}

/* How it Works Horizontal */
.hw-container {
    position: relative;
    padding: 40px 0;
}

.hw-line {
    position: absolute;
    top: 80px;
    left: 10%;
    right: 10%;
    height: 2px;
    border-top: 2px dashed #cbd5e1;
    z-index: 1;
}

.hw-step {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 15px;
}

.hw-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary);
    position: relative;
    transition: all 0.3s;
}

.hw-step:hover .hw-icon {
    border-color: var(--primary);
    box-shadow: 0 0 0 8px #eef2ff;
}

.hw-num {
    position: absolute;
    top: 0;
    left: 0;
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    border: 2px solid white;
}

@media (max-width: 768px) {
    .hw-line {
        display: none;
    }

    .hw-step {
        margin-bottom: 40px;
    }
}

/* Impact Banner */
.impact-banner {
    background: var(--gradient-main);
    border-radius: var(--radius-xl);
    padding: 60px 40px;
    color: white;
    position: relative;
    overflow: hidden;
}

.impact-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
}

.impact-stat-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.is-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.is-num {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2px;
}

.is-label {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Benefit Cards */
.benefit-card {
    background: white;
    border: 1px solid #f1f5f9;
    border-radius: var(--radius-md);
    padding: 30px;
    /* text-align: center; */
    height: 100%;
    transition: all 0.3s;
}

.benefit-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.ben-img {
    font-size: 48px;
    margin-bottom: 15px;
    line-height: 1;
}

/* Testimonials */
.testi-card {
    background: white;
    border: 1px solid #f1f5f9;
    border-radius: var(--radius-lg);
    padding: 30px;
    height: 100%;
    box-shadow: var(--shadow-sm);
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--primary);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 15px;
}

/* Bottom CTA Banner */
.cta-banner {
    background: var(--gradient-main);
    border-radius: var(--radius-xl);
    padding: 50px;
    color: white;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-bot-img {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: var(--primary);
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }
}


.bc__ {
    display: block;
}

/* Challenges vs Solution */
.compare-section {
    position: relative;
}

.comp-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px;
    height: 100%;
    border: 1px solid #f1f5f9;
    box-shadow: var(--shadow-sm);
}

.comp-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.c-icon-red {
    color: #ef4444;
    font-size: 1.2rem;
    margin-top: -2px;
}

.c-icon-green {
    color: #10b981;
    font-size: 1.2rem;
    margin-top: -2px;
}

.comp-arrow-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.comp-arrow {
    width: 60px;
    height: 60px;
    background: var(--gradient-main);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: var(--shadow-lg);
    z-index: 5;
}

.youTub {
  border: 4px solid #2196f3;
  border-radius: 10px;
  margin: 0 0%;
  width: 100%;
  background: #fff;
  height: 358px;
}

.youtube-video-iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: 350px;
}

.after-box span {
    color: #2196F3;
}

.before-box img.img-thumbnail {
    width: 175px;
    height: 175px;
    object-fit: cover;
}

.captcha-container {
  display: flex !important;
  align-items: center !important;
  position: relative;
  background: #ffffff;
  border: 1px solid #e2e5e8;
  border-radius: 5px;
  padding: 0;
  height: 60px;
  overflow: hidden;
}
.captcha-container .icon {
  position: static !important;
  width: 60px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--theme);
  color: var(--black) !important;
}
.captcha-question-box {
  padding: 0 10px;
  font-weight: 700;
  font-size: 18px;
  color: #333;
  white-space: nowrap;
  background: #f8f9fa;
  height: 100%;
  display: flex;
  align-items: center;
  border-right: 1px solid #eee;
}
.captcha-container .captcha-input {
  border: none !important;
  height: 100% !important;
  padding-left: 15px !important;
  width: 100%;
  outline: none;
  background: transparent;
}
.captcha-input::-webkit-outer-spin-button,
.captcha-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.captcha-input {
  -moz-appearance: textfield;
}


