:root {
    --primary-blue: #0062ff;
    --soft-bg: #f8f9fc;
    --dark-text: #1a1d23;
    --body-text: #64748b;
    --border-color: #e2e8f0;
}

.ai-wrapper {
    overflow-x: hidden;
    width: 100%;
    color: var(--body-text);
    font-family: "Inter", sans-serif;
}

.section-padding {
    padding: 60px 0;
}

.h-title {
    color: var(--dark-text);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.h-subtitle {
    color: var(--primary-blue);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
}

/* Bento Cards */
.qleviq-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease-in-out;
    height: 100%;
}

.qleviq-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 98, 255, 0.08);
}

.qleviq-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 98, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.btn-qleviq-main {
    background: var(--primary-blue);
    color: #fff;
    font-weight: 600;
    border: none;
    padding: 16px 32px;
    border-radius: 10px;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-qleviq-main:hover {
    background: #004ecc;
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 98, 255, 0.2);
}

.feature-box {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-box i {
    color: var(--primary-blue);
}

/* Custom Industry Badges */
.industry-badge {
    background: #fff;
    border: 1px solid var(--border-color);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    transition: 0.3s;
}

.industry-badge:hover {
    border-color: var(--primary-blue);
    background: var(--soft-bg);
}

.faq-qleviq .accordion-item {
    border: 1px solid var(--border-color);
    margin-bottom: 15px;
    border-radius: 12px !important;
    overflow: hidden;
}

.faq-qleviq .accordion-button {
    background: #fff;
    color: var(--dark-text);
    font-weight: 700;
    padding: 20px;
    box-shadow: none;
}

.faq-qleviq .accordion-button:not(.collapsed) {
    color: var(--primary-blue);
    background: rgba(0, 98, 255, 0.02);
}

/* Container for 3D effect */
.premium-3d-card {
    position: relative;
    padding: 20px;
    background: rgba(255, 255, 255, 0.4);
    /* Glass effect */
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid rgba(0, 98, 255, 0.2);
    box-shadow:
        0 25px 50px -12px rgba(0, 98, 255, 0.25),
        /* Blue shadow */ inset 0 0 20px rgba(255, 255, 255, 0.5);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    /* 3D Tilt */
    transition: transform 0.5s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.premium-3d-card:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

/* Background Glow */
.card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: var(--primary-blue);
    filter: blur(80px);
    opacity: 0.15;
    z-index: -1;
}

/* Image Size Control */
.gif-large {
    width: 100%;
    /* Column ki puri width lega */
    max-width: 550px;
    /* Badi size ke liye limit */
    height: auto;
    border-radius: 20px;
    z-index: 2;
    /* Optional: Shadow on the image itself */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustment for small screens */
@media (max-width: 991px) {
    .premium-3d-card {
        transform: none;
        /* Mobile par tilt hata dena better hota hai */
        margin-top: 30px;
    }
}

/* why Business are adopting section */
/* Global Variables for Light Theme */
:root {
    --bg-light: #f8faff;
    --text-dark: #1a1d23;
    --text-muted: #64748b;
    --accent-blue: #0062ff;
    --accent-purple: #7000ff;
    --card-bg: #ffffff;
}

.ai-modern-section-light {
    background-color: var(--bg-light);
    padding: 60px 0;
    color: var(--text-dark);
    overflow: hidden;
    font-family: "Inter", sans-serif;
}

/* Tag & Title */
.ai-tag-light {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 98, 255, 0.08);
    border: 1px solid rgba(0, 98, 255, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    color: var(--accent-blue);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.pulse-dot-blue {
    height: 8px;
    width: 8px;
    background-color: var(--accent-blue);
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
    box-shadow: 0 0 10px rgba(0, 98, 255, 0.5);
    animation: pulse-blue 1.5s infinite;
}

.main-title-light {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.gradient-text-blue {
    background: linear-gradient(
        90deg,
        var(--accent-blue),
        var(--accent-purple)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.description-light {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.sub-description-light {
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 20px;
}

/* Feature List */
.feature-grid-light {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.feature-grid-light li {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--card-bg);
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    transition: 0.3s;
    color: #475569;
    font-weight: 500;
}

.feature-grid-light li:hover {
    background: #fff;
    transform: translateX(10px);
    border-color: var(--accent-blue);
    box-shadow: 0 10px 20px rgba(0, 98, 255, 0.1);
}

.feature-grid-light i {
    color: var(--accent-blue);
    font-size: 1.1rem;
}

/* AI Card Visual */
.ai-interactive-card-light {
    position: relative;
    padding: 40px;
    z-index: 1;
}

.card-inner-light {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 40px;
    border-radius: 30px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.card-glow-light {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: var(--accent-blue);
    filter: blur(80px);
    opacity: 0.1;
    z-index: 0;
}

.quote-icon-light {
    font-size: 2.5rem;
    color: var(--accent-blue);
    margin-bottom: 25px;
    opacity: 0.8;
}

.ai-quote-light {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #334155;
    font-style: italic;
}

.ai-quote-light strong {
    color: var(--accent-blue);
    font-style: normal;
}

.card-footer-light {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status-badge-light {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    border-left: 2px solid var(--accent-blue);
    padding-left: 10px;
    font-weight: 600;
}

/* Voice Waves Animation Blue */
.ai-waves-blue {
    display: flex;
    align-items: center;
    gap: 4px;
}

.ai-waves-blue span {
    width: 3px;
    height: 15px;
    background: var(--accent-blue);
    border-radius: 10px;
    animation: wave-blue 1s infinite ease-in-out;
}

.ai-waves-blue span:nth-child(2) {
    animation-delay: 0.2s;
    height: 25px;
}

.ai-waves-blue span:nth-child(3) {
    animation-delay: 0.4s;
    height: 18px;
}

.ai-waves-blue span:nth-child(4) {
    animation-delay: 0.6s;
    height: 12px;
}

@keyframes pulse-blue {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

@keyframes wave-blue {
    0%,
    100% {
        transform: scaleY(1);
    }

    50% {
        transform: scaleY(0.5);
    }
}

@media (max-width: 991px) {
    .main-title-light {
        font-size: 2.2rem;
    }

    .ai-interactive-card-light {
        padding: 20px;
    }
}

/* --- Bento Cards Base (White Style) --- */
.qleviq-card {
    position: relative;
    padding: 45px 30px;
    background: #ffffff;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: 100%;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease;
}

/* Static Mesh Gradients for White Cards */
.qleviq-card::before {
    content: "";
    position: absolute;
    top: -20%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(
        circle,
        rgba(0, 98, 255, 0.08) 0%,
        transparent 70%
    );
    z-index: -1;
    border-radius: 50%;
}

.qleviq-card::after {
    content: "";
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 250px;
    height: 250px;
    background: radial-gradient(
        circle,
        rgba(112, 0, 255, 0.06) 0%,
        transparent 70%
    );
    z-index: -1;
    border-radius: 50%;
}

/* --- Alternating Blue Style (Every 2nd Card) --- */
/* Ye selector 2, 4, aur 6 number ke columns/cards ko blue kar dega */
.col-lg-4:nth-child(even) .qleviq-card {
    background: linear-gradient(135deg, #0062ff 0%, #004ecc 100%);
    border: none;
}

/* Blue card ke andar text aur elements white ho jayein */
.col-lg-4:nth-child(even) .qleviq-card .h-title {
    color: #ffffff;
}

.col-lg-4:nth-child(even) .qleviq-card p {
    color: rgba(255, 255, 255, 0.8);
}

/* Blue card ka icon style */
.col-lg-4:nth-child(even) .qleviq-card .qleviq-icon {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    color: #ffffff;
    box-shadow: none;
}

/* Blue card ke mesh gradients ko subtle white glow mein badalna */
.col-lg-4:nth-child(even) .qleviq-card::before {
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.15) 0%,
        transparent 70%
    );
}

.col-lg-4:nth-child(even) .qleviq-card::after {
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 70%
    );
}

/* --- Common Icon Style --- */
.qleviq-icon {
    width: 65px;
    height: 65px;
    background: #ffffff;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 1.6rem;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(0, 98, 255, 0.1);
    transition: 0.3s;
}

/* Technology focus styling */

/* New Section Background */
.voice-ai-modern-section {
    background: #f0f4f8; /* Soft Pastel Slate */
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

/* Background Decoration */
.voice-ai-modern-section::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(0, 98, 255, 0.05) 0%,
        transparent 70%
    );
    top: -10%;
    left: -5%;
}

/* Badge Style */
.modern-badge {
    background: #ffffff;
    padding: 8px 16px;
    border-radius: 50px;
    color: #0062ff;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    display: inline-block;
}

.text-gradient-blue {
    background: linear-gradient(90deg, #0062ff, #7000ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lead-text {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.8;
}

/* Tech Pills */
.tech-stack-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.tech-stack-pills .pill {
    background: #ffffff;
    border: 1px solid rgba(0, 98, 255, 0.1);
    padding: 10px 18px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tech-stack-pills .pill i {
    color: #0062ff;
}

/* AI Console Styling (The Right Box) */
.ai-console-wrapper {
    background: #1a1d23; /* Dark Console Look */
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.console-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.console-header .dots span {
    height: 8px;
    width: 8px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
}
.console-header .dots span:nth-child(1) {
    background: #ff5f56;
}
.console-header .dots span:nth-child(2) {
    background: #ffbd2e;
}
.console-header .dots span:nth-child(3) {
    background: #27c93f;
}

.console-title {
    color: #94a3b8;
    font-size: 0.75rem;
    font-family: monospace;
    text-transform: uppercase;
}

.console-body {
    padding: 40px;
}

/* Modern Feature Items inside Console */
.feature-item-modern {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.feature-icon {
    width: 45px;
    height: 45px;
    background: rgba(0, 98, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-text h6 {
    color: #ffffff;
    margin-bottom: 4px;
    font-weight: 600;
}

.feature-text p {
    color: #94a3b8;
    font-size: 0.85rem;
    margin: 0;
}

.experience-quote {
    border-left: 4px solid #0062ff;
    padding-left: 20px;
    font-style: italic;
    color: #64748b;
}

@media (max-width: 991px) {
    .voice-ai-modern-section {
        padding: 80px 0;
    }
    .ai-console-wrapper {
        margin-top: 40px;
    }
}

/* <!-- INDUSTRY USE CASES -->*/
.industry-tech-section {
    position: relative;
    padding: 60px 0;
    background-color: #051622; /* Deep Navy Blue from 1.jpg */
    /* Pattern creation using CSS Radial Gradients */
    background-image:
        radial-gradient(
            circle at 2px 2px,
            rgba(255, 255, 255, 0.05) 1px,
            transparent 0
        ),
        linear-gradient(rgba(5, 22, 34, 0.95), rgba(5, 22, 34, 0.95));
    background-size:
        40px 40px,
        cover; /* This creates the grid dots */
    overflow: hidden;
}

/* Adding the glowing lines pattern (Pseudo-element) */
.industry-tech-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(90deg, rgba(0, 198, 255, 0.03) 1px, transparent 1px) 0
            0 / 100px 100px,
        linear-gradient(0deg, rgba(0, 198, 255, 0.03) 1px, transparent 1px) 0
            0 / 100px 100px;
    mask-image: radial-gradient(ellipse at center, black, transparent 80%);
    pointer-events: none;
}

/* Glass Cards with Border Glow */
.industry-glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 20px;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    z-index: 2;
}

/* Hover effect like the glowing nodes in 1.jpg */
.industry-glass-card:hover {
    background: rgba(0, 198, 255, 0.05);
    border-color: rgba(0, 198, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 198, 255, 0.15);
    transform: translateY(-8px);
}

.icon-wrap {
    width: 65px;
    height: 65px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 198, 255, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #00c6ff;
    transition: 0.3s;
}

.industry-glass-card:hover .icon-wrap {
    background: #00c6ff;
    color: #fff;
    box-shadow: 0 0 20px rgba(0, 198, 255, 0.5);
}

.industry-glass-card h6 {
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.industry-glass-card p {
    color: #94a3b8;
    font-size: 0.85rem;
}

/* Subtitle style */
.text-info {
    color: #00c6ff !important;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px;
}

/* marquee style */
.tech-marquee-section {
    overflow: hidden;
    position: relative;
}

.marquee-wrapper {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 20px;
    padding: 10px 0;
}

.marquee-content {
    display: flex;
    flex-shrink: 0;
    gap: 20px;
    min-width: 100%;
    animation: scroll-left 30s linear infinite; /* Speed control */
}

/* Hover par scroll pause ho jayega */
.marquee-wrapper:hover .marquee-content {
    animation-play-state: paused;
}

.tech-pill {
    padding: 12px 25px;
    border: 1px solid #e2e8f0;
    background: #f8fafc; /* Light background as per your style */
    border-radius: 50px;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.tech-pill:hover {
    border-color: #00c6ff;
    background: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 198, 255, 0.1);
}

.pill-inner {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1e293b;
    display: flex;
    align-items: center;
}

/* Animation Logic */
@keyframes scroll-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Optional: Gradients on edges for smooth entry/exit */
.marquee-wrapper::before,
.marquee-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

/* ===================================================
   BUSINESS BENEFITS SECTION
=================================================== */

.benefit-section {
    padding: 60px 0;
    background: #f4f8ff;
    position: relative;
    overflow: hidden;
}

.section-heading {
    max-width: 760px;
    margin: auto;
    margin-bottom: 70px;
}

.section-heading h2 {
    font-size: 48px;
    font-weight: 400;
    color: #111827;
    margin-bottom: 20px;
}

.section-heading p {
    font-size: 17px;
    color: #64748b;
    line-height: 1.8;
}

.mini-tag {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 100px;
    background: rgba(0, 98, 255, 0.08);
    color: #0062ff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.benefit-card {
    position: relative;
    background: #ffffff;
    border-radius: 28px;
    padding: 40px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-12px);
    border-color: #0062ff;
    box-shadow: 0 25px 50px rgba(0, 98, 255, 0.08);
}

.benefit-pattern {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(0, 98, 255, 0.08), transparent);
    border-radius: 50%;
}

.benefit-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: linear-gradient(135deg, #0062ff, #0047b3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    margin-bottom: 28px;
    box-shadow: 0 15px 35px rgba(0, 98, 255, 0.2);
}

.benefit-content h4 {
    font-size: 22px;
    line-height: 1.5;
    font-weight: 700;
    color: #111827;
    margin-bottom: 18px;
}

.benefit-content p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 0;
}

.benefit-number {
    position: absolute;
    right: 25px;
    bottom: 10px;
    font-size: 70px;
    font-weight: 900;
    color: rgba(0, 98, 255, 0.05);
}

.benefit-bottom-text {
    margin-top: 60px;
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    color: #475569;
    max-width: 950px;
    margin-inline: auto;
}

/* ===================================================
   WHY DIGIATURE SECTION
=================================================== */

.why-digiature-section {
    padding: 60px 0;
    background: #0b1120;
    position: relative;
    overflow: hidden;
}

.why-digiature-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
}

.mini-tag.dark {
    background: rgba(255, 255, 255, 0.08);
    color: #60a5fa;
}

.why-left-panel h2 {
    color: #fff;
    font-size:48px;
    font-weight:500;
    line-height: 1.2;
    margin-bottom: 25px;
}

.why-left-panel p {
    color: #94a3b8;
    font-size: 17px;
    line-height: 1.9;
}

.floating-stats {
    display: flex;
    gap: 20px;
    margin-top: 45px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px 30px;
    border-radius: 22px;
    backdrop-filter: blur(12px);
}

.stat-box h3 {
    color: #fff;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-box span {
    color: #94a3b8;
}

.why-feature-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.why-feature-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: 0.4s ease;
}

.why-feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(96, 165, 250, 0.4);
    background: rgba(255, 255, 255, 0.06);
}

.feature-icon-wrap {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    background: linear-gradient(135deg, #0062ff, #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    flex-shrink: 0;
}

.why-feature-card h5 {
    color: #fff;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ===================================================
   CTA SECTION
=================================================== */

.ai-cta-section {
    padding: 60px 0;
    background: #f8fbff;
}

.ai-cta-box {
    position: relative;
    background: linear-gradient(135deg, #0062ff, #004ecc);
    border-radius: 40px;
    padding: 70px;
    overflow: hidden;
}

.cta-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 60px 60px;
}

.mini-tag.white {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.ai-cta-box h2 {
    color: #fff;
    font-size: 52px;
    line-height: 1.2;
    font-weight:600;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.ai-cta-box p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 17px;
    line-height: 1.9;
    position: relative;
    z-index: 2;
}

.ai-contact-btn {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 34px;
    background: #fff;
    color: #0062ff;
    font-weight: 700;
    border-radius: 18px;
    text-decoration: none;
    transition: 0.4s ease;
}

.ai-contact-btn:hover {
    transform: translateY(-6px);
    color: #0062ff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* ===================================================
   RESPONSIVE
=================================================== */

@media (max-width: 991px) {
    .benefit-grid {
        grid-template-columns: 1fr;
    }

    .why-feature-wrapper {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }

    .section-heading h2,
    .why-left-panel h2,
    .ai-cta-box h2 {
        font-size: 34px;
    }

    .ai-cta-box {
        padding: 40px;
    }
}

/* FAQs */
.custom-light-faq .accordion-item {
    border-color: #f0f0f0 !important; /* Soft border */
}

.custom-light-faq .accordion-button {
    background-color: transparent;
    color: #1a1a1a;
    font-size: 1.15rem;
    font-weight: 600;
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    transition: all 0.3s ease;
}

.custom-light-faq .accordion-button::after {
    display: none; /* Default icon removed */
}

/* Arrow Box Styling (Ref: image_3a421c.png style in light mode) */
.arrow-icon {
    width: 36px;
    height: 36px;
    background: #f8f9fa;
    border: 1px solid #eee;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.8rem;
    color: #666;
}

/* Active State Styles */
.custom-light-faq .accordion-button:not(.collapsed) {
    color: #0072ff; /* Your theme primary color */
    background-color: transparent;
}

.custom-light-faq .accordion-button:not(.collapsed) .arrow-icon {
    background: #0072ff;
    border-color: #0072ff;
    color: #fff;
    transform: rotate(180deg);
}

.custom-light-faq .accordion-body {
    padding-top: 0;
    padding-bottom: 25px;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Smooth Hover */
.custom-light-faq .accordion-button:hover .q-text {
    color: #0072ff;
    transform: translateX(5px);
    transition: 0.3s;
}
