/* Unique Background for Computer Vision Page */
.cv-main-wrapper {
    overflow: hidden;
    background: #ffffff;
}

/* Ink Spread / Liquid Animation for Hero & CTA */
.pa-liquid-bg {
    position: absolute;
    z-index: 1;
    filter: blur(70px);
    opacity: 0.4;
    animation: cvLiquidFlow 20s infinite alternate ease-in-out;
}

.l-1 {
    width: 500px;
    height: 500px;
    background: #2563eb;
    top: -10%;
    right: -5%;
}

.l-2 {
    width: 400px;
    height: 400px;
    background: #93c5fd;
    bottom: 5%;
    left: -5%;
}

@keyframes cvLiquidFlow {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    100% {
        transform: translate(60px, 120px) scale(1.3) rotate(180deg);
    }
}

/* What Is Computer Vision? */

/* Arrow Steps Wrapper */
.cv-arrow-container {
    padding: 60px 0;
    background: #ffffff;
}

.arrow-steps-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

/* Individual Arrow Step */
.arrow-step {
    position: relative;
    background: #f1f5f9; /* Default Light Gray */
    color: #475569;
    padding: 20px 30px 20px 45px;
    margin-right: 5px;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    clip-path: polygon(90% 0%, 100% 50%, 90% 100%, 0% 100%, 10% 50%, 0% 0%);
    transition: 0.3s all ease;
    min-width: 220px;
    height: 80px;
    cursor: pointer;
    text-align: center;
}

/* Color variations like the slide */
.arrow-step:nth-child(1) {
    background: #dbeafe;
    color: #1e40af;
}
.arrow-step:nth-child(2) {
    background: #bfdbfe;
    color: #1e40af;
}
.arrow-step:nth-child(3) {
    background: #93c5fd;
    color: #1e3a8a;
}
.arrow-step:nth-child(4) {
    background: #60a5fa;
    color: #ffffff;
}
.arrow-step:nth-child(5) {
    background: #2563eb;
    color: #ffffff;
}

.arrow-step:hover {
    transform: translateY(-5px);
    filter: brightness(0.95);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.arrow-step i {
    margin-right: 12px;
    font-size: 18px;
}

/* Responsive for Mobile */
@media (max-width: 991px) {
    .arrow-step {
        clip-path: none;
        border-radius: 12px;
        margin-bottom: 10px;
        width: 100%;
        justify-content: center;
        padding: 20px;
    }
}

/* Technologies & Use Cases */

/* 1. Main Outer Wrapper for spacing */
.dg-cv-wrapper {
    padding: 50px 0;
    background-color: #fcfdfe; /* Subtle light background to pop the white cards */
}

/* 2. Style for the Two Main Sections */
.dg-cv-main-card {
    background: #ffffff;
    border-radius: 25px; /* Rounded corners for the section */
    padding: 40px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* Soft shadow to separate from background */
    border: 1px solid #f0f0f0;
}

/* 3. Tech Pills (Left Side) */
.dg-cv-pill {
    display: inline-block;
    background: #f1f6ff;
    color: #0d6efd;
    padding: 8px 20px;
    border-radius: 50px;
    margin: 5px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #e1e9f5;
}

/* 4. Use Case Nodes (Right Side) */
.dg-cv-usecase-node {
    background: #f8faff;
    border-radius: 15px;
    padding: 20px;
    height: 100%;
    border-left: 4px solid #0d6efd; /* Blue accent line on the side */
    transition: transform 0.2s ease;
}

.dg-cv-usecase-node:hover {
    transform: translateY(-5px);
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.dg-cv-usecase-node h6 {
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}
/* AI-Powered Automation with Computer Vision */
/* CSS to match the uploaded image style */
.automation-card {
    border-radius: 20px 20px 50px 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.automation-card:hover {
    transform: translateY(-10px);
}

.card-header-custom {
    padding: 40px 20px;
    text-align: center;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 24px;
    border: 2px solid white;
}

.card-body-custom {
    padding: 30px 25px;
    background: white;
}

.card-body-custom li {
    margin-bottom: 12px;
    color: #444;
    font-weight: 500;
}

/* Color Themes */
.card-green .card-header-custom {
    background: #16a085;
}
.card-green {
    background: #e8f6f3;
}

.card-blue .card-header-custom {
    background: #2980b9;
}
.card-blue {
    background: #ebf5fb;
}

.card-orange .card-header-custom {
    background: #d35400;
}
.card-orange {
    background: #fef5e7;
}

/* why choose & future */
/* Utilities */
/* Custom Utility Classes */
.pa-section-space {
    padding:50px 0;
}
.transition {
    transition: all 0.3s ease;
}
.hover-shadow-sm:hover {
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.1) !important; /* Subtle blue shadow */
    border-color: #0d6efd !important;
    transform: translateY(-5px);
}
.blur-3xl {
    filter: blur(250px);
    z-index: 0;
}

/* Light Theme Enhancements */
.bg-light-subtle {
    background-color: #f8f9fa !important;
}
.bullet-point {
    width: 10px;
    height: 10px;
    background: #0d6efd;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(13, 110, 253, 0.4);
}
.mt-n4 {
    margin-top: -2.5rem !important; /* Increased for better visual stagger */
}

/* Image matching UI fix */
.bg-white.shadow-sm {
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

@media (max-width: 991.98px) {
    .mt-n4,
    .mt-4 {
        margin-top: 0 !important;
    }
}

/* CTA */
/* Slim CTA Design - Dark Blue & Cream */
.pa-cta-wrapper {
    max-width: 950px; /* Width kam karne ke liye */
    margin: 0 auto;
}

.pa-animated-bg-container.slim-cta {
    position: relative;
    background-color: #0a192f; /* Dark Blue */
    border-radius: 30px;
    overflow: hidden;
    color: #fdf5e6; /* Cream */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(253, 245, 230, 0.1);
}

/* Cream Ripples - Right Aligned */
.pa-moving-gradient.slim-cta {
    position: absolute;
    top: 0;
    right: -10%;
    bottom: 0;
    width: 50%;
    background: radial-gradient(
        circle at center right,
        rgba(253, 245, 230, 0.03) 0%,
        rgba(253, 245, 230, 0.06) 20%,
        rgba(253, 245, 230, 0.09) 40%,
        rgba(253, 245, 230, 0.12) 60%,
        transparent 70%
    );
    background-size: 150% 150%;
    animation: paRipplesRight 10s ease-in-out infinite;
}

@keyframes paRipplesRight {
    0%,
    100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-20px);
    }
}

.pa-glass-content.slim-cta {
    position: relative;
    z-index: 2;
    padding: 50px 60px; /* Vertical padding kam ki gayi hai slim look ke liye */
}

.pa-h2.slim-cta {
    font-size: 2.2rem; /* Size adjust kiya slim container ke liye */
    font-weight: 700;
    color: #fdf5e6 !important;
    margin-bottom: 15px;
}

.pa-glass-content.slim-cta p {
    color: rgba(253, 245, 230, 0.8);
    font-size: 0.95rem;
    max-width: 550px; /* Content width restriction */
    margin-bottom: 25px;
}

/* Capsule Buttons */
.btn.slim-cta-btn {
    background-color: #000 !important;
    color: #fdf5e6 !important;
    border-radius: 50px !important;
    padding: 12px 25px !important;
    font-weight: 600 !important;
    font-size: 0.9rem;
    border: 1px solid rgba(253, 245, 230, 0.2);
    display: inline-flex;
    align-items: center;
    transition: 0.3s ease;
}

.btn.slim-cta-btn:hover {
    transform: translateY(-3px);
    border-color: #fdf5e6;
}

.pa-btn-glow {
    width: 15px;
    height: 15px;
    background-color: #fdf5e6;
    border-radius: 50%;
    margin-left: 12px;
    box-shadow: 0 0 8px rgba(253, 245, 230, 0.6);
}

@media (max-width: 768px) {
    .pa-glass-content.slim-cta {
        padding: 40px 30px;
        text-align: center;
    }
    .pa-glass-content.slim-cta p {
        margin-left: auto;
        margin-right: auto;
    }
    .d-flex.gap-3 {
        justify-content: center;
        flex-direction: column;
    }
}

/* FAQ */
/* FAQ Section Background with Pastel Gradients */
.faq-wrapper {
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(255, 192, 203, 0.2) 0%,
            transparent 40%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(173, 216, 230, 0.2) 0%,
            transparent 40%
        ),
        radial-gradient(circle at 50% 50%, rgba(230, 230, 250, 0.2) 100%);
    padding: 60px 0;
    font-family: "Inter", sans-serif;
}

/* Main Glass Card */
.faq-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 40px;
    padding: 60px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.05);
}

.faq-title {
    font-weight: 800;
    color: #1a2b3c;
    margin-bottom: 15px;
}

.faq-subtitle {
    color: #64748b;
    max-width: 600px;
    margin: 0 auto 50px;
}

/* Left Side Navigation Tabs */
.faq-nav-item {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 18px 25px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #475569;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-nav-item:hover,
.faq-nav-item.active {
    background: #fff;
    transform: translateX(5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

/* Right Side Accordion Styling */
.accordion-item {
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    margin-bottom: 10px;
}

.accordion-button {
    background: transparent !important;
    color: #1e293b !important;
    font-weight: 600 !important;
    padding: 20px 0 !important;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: #0ea5e9 !important; /* Blue accent when open */
}

.accordion-button::after {
    content: "+";
    background-image: none !important;
    font-size: 20px;
    font-weight: 400;
    transform: none !important;
}

.accordion-button:not(.collapsed)::after {
    content: "×";
    font-size: 25px;
}

.faq-answer {
    color: #64748b;
    padding-bottom: 20px;
    line-height: 1.6;
}

/* Dots like in image */
.decor-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    opacity: 0.3;
}

/* Service & Feature Cards */
/* .cv-feature-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.cv-feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.15);
    border-color: #2563eb;
}


.industry-node {
    background: #f8fafc;
    border-radius: 15px;
    padding: 25px;
    border-left: 5px solid #2563eb;
    margin-bottom: 20px;
    transition: 0.3s;
}

.industry-node:hover {
    background: #eff6ff;
}


.tech-pill {
    background: rgba(37, 99, 235, 0.05);
    border: 1px solid rgba(37, 99, 235, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-block;
    margin: 5px;
    font-weight: 600;
    color: #1e40af;
} */
