:root {
    --primary-blue: #0027f2;
    --deep-dark: #0a0e1a;
    --text-gray: #4a5568;
    --card-shadow: 0 10px 30px -5px rgba(0, 39, 242, 0.1);
}

.ai-wrapper {
    font-family: "Inter", sans-serif;
    background: #ffffff;
    color: var(--deep-dark);
    overflow-x: hidden;
}

/* --- DYNAMIC GRADIENT HEADING ANIMATION --- */
@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* --- Hero Heading Responsive Styling --- */
.hero-h1 {
    font-size: 3rem; /* डेस्कटॉप के लिए साइज */
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 30px;
    background: linear-gradient(-45deg, #0a0e1a, #0027f2, #6366f1, #0a0e1a);
    background-size: 300% 300%;
    animation: gradientFlow 6s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

@media (max-width: 768px) {
    .hero-h1 {
        font-size: 2.2rem !important; /* मोबाइल पर फिट आने के लिए साइज कम किया */
        line-height: 1.2 !important;
        padding: 0 10px;
    }
}

/* Rest of the Premium Styling preserved */
.hero-canvas {
    position: relative;
    /* padding: 140px 0 100px; */
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(0, 39, 242, 0.03) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(0, 39, 242, 0.03) 0%,
            transparent 50%
        );
}

.section-header {
    font-weight: 600;
    font-size: 2.2rem;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-header i {
    color: var(--primary-blue);
    background: rgba(0, 39, 242, 0.1);
    padding: 15px;
    border-radius: 12px;
    font-size: 1.5rem;
}

.feature-card {
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px -12px rgba(0, 39, 242, 0.15);
    border-color: var(--primary-blue);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 25px;
    display: block;
    transition: transform 0.5s ease;
}

.feature-card:hover i {
    transform: scale(1.1) rotate(5deg);
}

.industry-box {
    border-left: 4px solid #e2e8f0;
    padding-left: 25px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.industry-box:hover {
    border-left-color: var(--primary-blue);
    background: rgba(0, 39, 242, 0.02);
}

.faq-accordion .accordion-item {
    border: none;
    border-bottom: 1px solid #e2e8f0;
    background: transparent;
}

.faq-accordion .accordion-button {
    padding: 30px 10px;
    font-weight: 700;
    font-size: 1.2rem;
    background: transparent !important;
    box-shadow: none !important;
    color: var(--deep-dark);
}

.faq-accordion .accordion-button::after {
    content: "\f067";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    background-image: none;
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    content: "\f068";
    transform: rotate(180deg);
}

.tech-pill {
    display: inline-flex;
    align-items: center;
    background: #f8faff;
    border: 1px solid #e2e8f0;
    padding: 12px 24px;
    border-radius: 100px;
    margin: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tech-pill:hover {
    background: var(--primary-blue);
    color: #fff;
    transform: scale(1.05);
}

.tech-pill i {
    margin-right: 10px;
    color: var(--primary-blue);
}

.tech-pill:hover i {
    color: #fff;
}

/* Key benefits styling */

.benefit-card-premium {
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    transition: transform 0.4s ease;
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        rgba(235, 244, 255, 0.8) 50%,
        #ffffff 100%
    );
}

/* Moving Smoke Layer */
.benefit-card-premium::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 400%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 163, 255, 0.1),
        rgba(0, 39, 242, 0.05),
        transparent
    );
    z-index: -1;
    animation: continuousSmoke 12s linear infinite;
}

/* Floating Glow Bubble */
.benefit-card-premium::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(
        circle,
        rgba(0, 163, 255, 0.15) 0%,
        transparent 70%
    );
    top: -50px;
    right: -50px;
    z-index: -1;
    animation: floatGlow 6s ease-in-out infinite alternate;
}

/* Keyframes for the Moving Effect */
@keyframes continuousSmoke {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0%);
    }
}

@keyframes floatGlow {
    0% {
        transform: translate(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: translate(-20px, 20px);
        opacity: 1;
    }
}

.benefit-card-premium:hover {
    transform: translateY(-8px);
    border-color: var(--primary-blue) !important;
    box-shadow: 0 20px 40px rgba(0, 39, 242, 0.1);
}

@media (max-width: 768px) {
    /* Key Benefits हेडिंग और आइकन के लिए */
    .section-header {
        display: flex !important;
        flex-direction: column !important; /* आइकन और टेक्स्ट को ऊपर-नीचे करने के लिए */
        align-items: center !important;
        text-align: center !important;
        font-size: 1.8rem !important; /* साइज छोटा किया */
        gap: 10px;
    }

    .section-header i {
        margin-bottom: 10px;
        font-size: 2rem; /* आइकन का साइज */
    }

    /* नीचे के कार्ड्स की पैडिंग और अलाइनमेंट */
    .benefit-card-premium {
        padding: 1.5rem !important;
        text-align: left;
    }
}

/* --- What Are AI Agents Section with Light Purple Circles --- */
.ai-agents-section {
    position: relative;
    overflow: hidden;
    background-color: #fdfbff;
    z-index: 1;
    border: 1px solid rgba(111, 66, 193, 0.05);
}

.ai-agents-section::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: rgba(111, 66, 193, 0.07);
    border-radius: 50%;
    top: -150px;
    left: -150px;
    z-index: -1;
}

.ai-agents-section::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(102, 16, 242, 0.05);
    border-radius: 50%;
    bottom: -100px;
    right: -100px;
    z-index: -1;
}

/* CTA */

  /* =========================================
        AI CTA SECTION
    ========================================= */

    .ai-cta-section {
        background:
            radial-gradient(circle at top left,
                rgba(0, 39, 242, 0.05),
                transparent 35%),
            radial-gradient(circle at bottom right,
                rgba(106, 17, 203, 0.06),
                transparent 35%),
            #f7f8ff;
    }

    .ai-cta-card {
        background:
            linear-gradient(135deg,
                #12003a 0%,
                #24005f 35%,
                #2f00a3 100%);
        border-radius: 28px;
        padding: 90px 50px;
        box-shadow:
            0 20px 60px rgba(16, 0, 80, 0.18),
            inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }

    /* Floating Glows */

    .ai-cta-glow {
        position: absolute;
        border-radius: 50%;
        filter: blur(70px);
        z-index: 1;
    }

    .glow-1 {
        width: 220px;
        height: 220px;
        background: rgba(0, 102, 255, 0.25);
        top: -60px;
        left: -50px;
    }

    .glow-2 {
        width: 250px;
        height: 250px;
        background: rgba(132, 0, 255, 0.22);
        bottom: -80px;
        right: -80px;
    }

    /* Floating Shapes */

    .ai-shape {
        position: absolute;
        display: block;
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(5px);
        transform: rotate(25deg);
        z-index: 1;
    }

    .shape-1 {
        width: 70px;
        height: 70px;
        top: 45px;
        left: 60px;
    }

    .shape-2 {
        width: 45px;
        height: 45px;
        right: 90px;
        top: 70px;
    }

    .shape-3 {
        width: 55px;
        height: 55px;
        bottom: 50px;
        right: 140px;
    }

    /* Badge */

    .ai-cta-badge {
        background: rgba(255, 255, 255, 0.12);
        color: #d7d7ff;
        padding: 10px 22px;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.5px;
        border: 1px solid rgba(255, 255, 255, 0.15);
    }

    /* Text */

    .ai-cta-card h2 {
        font-size: 48px;
        line-height: 1.2;
    }

    .ai-cta-text {
        color: rgba(255, 255, 255, 0.78);
        font-size: 18px;
        line-height: 1.8;
        max-width: 760px;
        margin-inline: auto;
    }

    .ai-cta-card h4 {
        font-size: 24px;
        line-height: 1.6;
        color: #ffffff;
    }

    /* Button */

    .ai-cta-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background: linear-gradient(135deg, #9eff00, #d6ff65);
        color: #111;
        padding: 18px 38px;
        border-radius: 60px;
        font-weight: 700;
        text-decoration: none;
        font-size: 17px;
        transition: all 0.35s ease;
        box-shadow: 0 10px 30px rgba(185, 255, 64, 0.25);
    }

    .ai-cta-btn:hover {
        transform: translateY(-4px);
        color: #111;
        box-shadow: 0 15px 40px rgba(185, 255, 64, 0.35);
    }

    /* Responsive */

    @media(max-width: 991px) {

        .ai-cta-card {
            padding: 70px 30px;
        }

        .ai-cta-card h2 {
            font-size: 36px;
        }

        .ai-cta-card h4 {
            font-size: 21px;
        }
    }

    @media(max-width: 576px) {

        .ai-cta-card {
            padding: 60px 20px;
            border-radius: 22px;
        }

        .ai-cta-card h2 {
            font-size: 30px;
        }

        .ai-cta-text {
            font-size: 16px;
        }

        .ai-cta-card h4 {
            font-size: 19px;
        }

        .ai-cta-btn {
            width: 100%;
            padding: 16px 24px;
        }

        .shape-1,
        .shape-2,
        .shape-3 {
            display: none;
        }
    }