<!-- Essential Base Utility CSS Variables -- > .bg-primary-soft {
    background-color: rgba(13, 110, 253, 0.08);
}
.bg-secondary-soft {
    background-color: rgba(108, 117, 125, 0.1);
}
.tracking-wider {
    letter-spacing: 1px;
}
.max-width-md {
    max-width: 720px;
}

/* Responsive 5-column layout configuration for Industries Grid */
@media (min-width: 1200px) {
    .style-custom-5 {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

/* AI & SaaS Product Development  */
/* Dark Theme Core */
.dark-hero-section {
    background: radial-gradient(
        circle at center,
        #0a1128 0%,
        #050a1a 70%,
        #02050f 100%
    );
    color: #fff;
}

/* Position Utilities */
.pos-relative {
    position: relative;
}
.z-1 {
    z-1: 1;
}

/* Content Styling Updates */
.dark-hero-section .text-dark {
    color: #ffffff !important;
}
.text-white-70 {
    color: rgba(255, 255, 255, 0.7) !important;
}
.text-white-60 {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Typography */
.fw-extrabold {
    fw-extrabold: 800;
}
.font-secondary {
    font-secondary:
        "Inter", sans-serif; /* Assumes Inter is loaded, falls back well */
}

/* Visual Adjustments */
.bg-primary-soft {
    background-color: rgba(13, 110, 253, 0.2) !important;
}
.badge.text-primary {
    color: #80bfff !important;
}

.shadow-lg-neo {
    shadow-lg-neo:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Background Circuit Board Pattern 
       (Using a pseudo-element with a linear-gradient background data URI pattern 
       to mimic the aesthetic of the shared image without external assets.)
    */
.circuit-pattern-overlay {
    circuit-pattern-overlay: 0;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: 0.15;
    z-0: 0;

    /* Subtle diagonal grid pattern resembling circuitry */
    background-color: transparent;
    background-image:
        linear-gradient(45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.05) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.05) 75%);
    background-size: 20px 20px;
    background-position:
        0 0,
        0 10px,
        10px -10px,
        -10px 0px;

    /* Alternative: Using a masked PNG gradient data URI might be better if high complexity is needed,
           but this simple grid mimics the core look well and is lightweight. */
}

/* Small Adjustments for the caption font */
.visual-caption {
    visual-caption: "Georgia", serif;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Ensure illustration is always z-indexed correctly above pattern on small screens */
@media (max-width: 991px) {
    .isometric-visual-container {
        isometric-visual-container: 10;
    }
}

/* What Are AI & SaaS Products? */

/* Animated Gradient Text for Heading */
.animated-gradient-text {
    background: linear-gradient(135deg, #667eea, #764ba2, #ff758c, #667eea);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease infinite;
}

/* Smooth color changing animation loop */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
/* Gradient Background for the Right Column Box */
.saas-gradient-wrapper {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 24px;
    padding: 2.5rem 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(118, 75, 162, 0.15);
}

/* Soft ambient glow inside the wrapper */
.saas-gradient-wrapper::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 60%
    );
    pointer-events: none;
}

/* Clean Card Styling matching your light colors preference */
.diagram-card-v2 {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.diagram-card-v2:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    background: #ffffff;
}

/* Glowing Center Cloud Element */
.center-cloud-hub-v2 {
    width: 85px;
    height: 85px;
    background: #ffffff;
    color: #764ba2;
    border-radius: 50%;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 2;
    position: relative;
}

/* Responsive Connection Indicators for Desktop Only */
@media (min-width: 992px) {
    .left-cards-col-v2 .diagram-card-v2::after {
        content: "";
        position: absolute;
        top: 50%;
        right: -15px;
        width: 15px;
        height: 2px;
        background: rgba(255, 255, 255, 0.4);
    }
    .right-cards-col-v2 .diagram-card-v2::before {
        content: "";
        position: absolute;
        top: 50%;
        left: -15px;
        width: 15px;
        height: 2px;
        background: rgba(255, 255, 255, 0.4);
    }
}

/* Mobile Responsive Optimizations */
@media (max-width: 991px) {
    .saas-gradient-wrapper {
        padding: 2rem 1rem;
    }
    .center-cloud-hub-v2 {
        width: 70px;
        height: 70px;
        margin-top: 15px;
        margin-bottom: 15px;
    }
    /* Mobile layout displays text cleanly structured center */
    .left-cards-col-v2 .text-end,
    .right-cards-col-v2 .text-start {
        text-align: center !important;
    }
}

/* Services Section */
/* Service Card Custom Minimal Styling */
.service-diagram-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
}

.service-diagram-card:hover {
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

/* Central Interactive Hub */
.services-center-core {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2, #ff758c, #667eea);
    background-size: 300% 300%;
    animation: gradientShift 6s ease infinite;
    color: #ffffff;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(118, 75, 162, 0.3);
    z-index: 2;
    position: relative;
}

/* Connecting Pointer Lines for Desktop Only */
@media (min-width: 992px) {
    .left-services-col .service-diagram-card::after {
        content: "";
        position: absolute;
        top: 50%;
        right: -24px;
        width: 24px;
        height: 1px;
        background: #cbd5e1;
    }
    .right-services-col .service-diagram-card::before {
        content: "";
        position: absolute;
        top: 50%;
        left: -24px;
        width: 24px;
        height: 1px;
        background: #cbd5e1;
    }
}

/* Mobile Adaptability View */
@media (max-width: 991px) {
    .left-services-col .text-lg-end,
    .right-services-col .text-lg-start {
        text-align: center !important;
    }
    .services-center-core {
        width: 100px;
        height: 100px;
        margin: 1.5rem 0;
    }
}

/* Key Features */
/* Glassmorphic Style for Key Feature Cards */
.feature-card {
    background: #ffffff !important; /* Pure White Base */
    border: 1px solid rgba(102, 126, 234, 0.15) !important; /* Soft Blue Border */
    border-radius: 20px !important;
    padding: 30px !important;
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.05) !important; /* Very soft blue shadow */
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    text-align: left;
}

/* Subtle Animated Glow inside the card on hover */
.feature-card::after {
    content: "";
    position: absolute;
    top: -10px;
    right: -10px;
    width: 60px;
    height: 60px;
    background: radial-gradient(
        circle,
        rgba(13, 110, 253, 0.1) 0%,
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(13, 110, 253, 0.1) !important;
    background: rgba(255, 255, 255, 1) !important;
}

.feature-card:hover::after {
    opacity: 1;
}

/* Feature Content Styling */
.feature-content span {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: rgba(13, 110, 253, 0.4) !important; /* Faded Primary Blue */
    display: block;
    margin-bottom: 10px;
}

.feature-content h3 a {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a1a !important; /* Dark Grey/Black text for readability */
    text-decoration: none;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-content h3 a {
    color: #0d6efd !important; /* Transitions to Primary Blue on hover */
}

/* Feature Image Area Aesthetics */
.feature-img {
    margin-top: 25px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

/* Adjusting image placeholder height for consistent cards */
.shape-hover-img {
    height: 180px;
    background: rgba(
        102,
        126,
        234,
        0.03
    ); /* Soft blue background before image load */
    display: flex;
    align-items: center;
    justify-content: center;
}

.shape-hover-img img {
    max-width: 90%;
    max-height: 90%;
    transition: transform 0.5s ease;
}

.feature-card:hover .shape-hover-img img {
    transform: scale(1.05); /* Soft zoom effect */
}

/* The 'Modern AI' Gradient Heading Style */
.animated-blue-heading {
    background: linear-gradient(135deg, #0d6efd, #667eea, #a3bded, #0d6efd);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: blueGradientShift 6s ease infinite;
}

@keyframes blueGradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Why AI Integration */
.features-split-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

/* Arrow Box - By Default Coloured with Gradient Layout */
.saas-arrow-item {
    position: relative;
    background: linear-gradient(90deg, #0d6efd 0%, #3a86ff 100%);
    padding: 16px 35px 16px 20px;
    border-radius: 6px 0 0 6px;
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.15);

    /* Perfect right-pointed arrow clip-path layout */
    clip-path: polygon(
        0% 0%,
        calc(100% - 18px) 0%,
        100% 50%,
        calc(100% - 18px) 100%,
        0% 100%
    );
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    align-items: center;
}

/* Hover Interaction: Subtle lift and deep shadow instead of color changing */
.saas-arrow-item:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.25);
    background: linear-gradient(
        90deg,
        #0b5edd 0%,
        #2575fc 100%
    ); /* Slightly richer blue on hover */
}

/* White Round/Square Badge for Numbering */
.saas-arrow-item .arrow-idx {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: #0d6efd; /* Blue text inside white box */
    background: #ffffff;
    padding: 4px 10px;
    border-radius: 6px;
    margin-right: 15px;
    flex-shrink: 0;
}

/* Default White Text for Better Readability on Colored Background */
.saas-arrow-item .arrow-txt {
    color: #ffffff !important;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.4;
}

/* Gradient typography styling for right title */
.brand-gradient-title {
    background: linear-gradient(135deg, #0d6efd 0%, #3a86ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Industries We Serve */
/* Desktop 5-Column Grid Matrix */
@media (min-width: 1200px) {
    .style-custom-5 {
        flex: 0 0 20% !important;
        max-width: 20% !important;
    }
}

/* Infographic Card Base Layout */
.infographic-industry-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02) !important;
    position: relative;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 30px 20px 25px 20px !important;
}

/* Reference Image Curved Shape Header Container */
.infographic-shape-header {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #0d6efd 0%, #3a86ff 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.2);
    transition: all 0.3s ease;
    z-index: 2;
}

/* Subtle pointer dot beneath the container like image flowchart nodes */
.infographic-shape-header::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: #3a86ff;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
}

/* Hover State Match */
.infographic-industry-card:hover {
    transform: translateY(-10px);
    border-color: #0d6efd !important;
    box-shadow: 0 15px 30px rgba(13, 110, 253, 0.08) !important;
}

.infographic-industry-card:hover .infographic-shape-header {
    transform: translateX(-50%) translateY(-4px) scale(1.05);
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    box-shadow: 0 10px 24px rgba(13, 110, 253, 0.3);
}

/* Micro Node Bullet Design Matching image_7cf8db.png */
.infographic-bullets {
    margin-top: 15px;
}

.infographic-bullets li {
    position: relative;
    padding-left: 18px;
    font-size: 0.85rem !important;
    line-height: 1.5;
    color: #64748b !important;
}

.infographic-bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 6px;
    height: 6px;
    background-color: #0d6efd;
    border-radius: 50%;
}

/* Card Headline Custom Layout */
.infographic-title {
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin-top: 20px;
}

/* Technologies */
/* Full Width & Custom Subtle Theme Background Match */
.tech-split-section {
    background-color: #fdf8f5 !important; /* Premium soft tinted cream background matching reference image */
    width: 100% !important;
    position: relative;
    overflow: hidden;
}

/* Vertical Giant Text Overlay 'TECHNOLOGY' layout */
.bg-vertical-text {
    position: absolute;
    left: 45%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    font-size: 7rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.02);
    letter-spacing: 10px;
    text-transform: uppercase;
    pointer-events: none;
    white-space: nowrap;
    display: none;
}

@media (min-width: 992px) {
    .bg-vertical-text {
        display: block;
    }
}

/* Dual Column Staggered Logic - Image Pattern */
.tech-stack-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Shifting the second column downward exactly like image_6fdbc6.png */
@media (min-width: 576px) {
    .stagger-down {
        margin-top: 40px;
    }
}

/* Minimal High-End Card Layout */
.tech-minimal-card {
    background: #ffffff !important;
    border: 0px solid transparent !important;
    border-radius: 12px !important;
    padding: 24px 20px !important;
    box-shadow: 0 10px 30px rgba(163, 130, 111, 0.06) !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tech-minimal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(163, 130, 111, 0.12) !important;
}

/* Custom Tech Dot Accent Indicator */
.tech-card-indicator {
    width: 32px;
    height: 32px;
    background: rgba(224, 93, 93, 0.08);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #e05d5d;
    font-size: 0.9rem;
}

/* Premium Button Style matching image gradient button */
.btn-gradient-tech {
    background: linear-gradient(90deg, #e05d5d 0%, #ef8262 100%);
    color: #ffffff !important;
    font-weight: 600;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    box-shadow: 0 6px 20px rgba(224, 93, 93, 0.25);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-gradient-tech:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(224, 93, 93, 0.35);
    opacity: 0.95;
}

/* Business Models */

.custom-dark-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    backdrop-filter: blur(12px);
}

.unique-diagram-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
}

/* Center Glass Nodes */
.unique-center-node {
    width: 125px;
    height: 125px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    z-index: 3;
}

/* Tech Pill Badges */
.unique-tech-pill {
    display: flex;
    align-items: center;
    border-radius: 50px;
    padding: 10px 20px 10px 10px;
    color: #ffffff;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.unique-tech-pill:hover {
    transform: translateX(5px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}
@media (min-width: 576px) {
    .pill-left:hover {
        transform: translateX(-5px) scale(1.02);
    }
}

/* Glowing Neon Icons */
.unique-icon-box {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    box-shadow: 0 0 15px currentColor;
}

/* Custom Unique Theme Accents */
.accent-orange {
    color: #ff9f43;
    background: rgba(255, 159, 67, 0.15);
    border: 1px solid rgba(255, 159, 67, 0.3);
}
.accent-teal {
    color: #00d2d3;
    background: rgba(0, 210, 211, 0.15);
    border: 1px solid rgba(0, 210, 211, 0.3);
}
.accent-blue {
    color: #54a0ff;
    background: rgba(84, 160, 255, 0.15);
    border: 1px solid rgba(84, 160, 255, 0.3);
}
.accent-yellow {
    color: #feca57;
    background: rgba(254, 202, 87, 0.15);
    border: 1px solid rgba(254, 202, 87, 0.3);
}
.accent-red {
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.15);
    border: 1px solid rgba(255, 107, 107, 0.3);
}
.accent-purple {
    color: #a55eea;
    background: rgba(165, 94, 234, 0.15);
    border: 1px solid rgba(165, 94, 234, 0.3);
}

/* Why Choose us */
.minimal-sub {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #00a8cc;
    font-weight: 700;
}

.clean-title {
    font-size: 2.25rem;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.minimal-card {
    background: transparent;
    border: none;
    padding: 10px;
    position: relative;
}

/* Reference Style Circular Icon Wrapper */
.minimal-icon-wrap {
    width: 54px;
    height: 54px;
    border: 1px solid rgba(0, 168, 204, 0.4);
    background: rgba(0, 168, 204, 0.02);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00a8cc;
    margin-bottom: 20px;
    position: relative;
    box-shadow: 3px 3px 0px rgba(0, 168, 204, 0.1);
}

.card-serial {
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

/* Tiny Arrow link at bottom of each card */
.card-arrow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 32px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    color: #334155;
    background: #ffffff;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-top: 15px;
}

.minimal-card:hover .card-arrow-btn {
    border-color: #00a8cc;
    color: #00a8cc;
    background: rgba(0, 168, 204, 0.02);
}

/* Soft abstract circles in background just like image */
.bg-circle-dec {
    position: absolute;
    background: rgba(0, 0, 0, 0.015);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* Future of AI & SaaS Products */
.future-trends-infographic {
    position: relative;
    width: 100%;
    max-width: 540px;
    height: 520px;
    margin: 0 auto;
}

/* Central Pinwheel SVG Graphic matching the image perfectly */
.pinwheel-center-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 320px;
    height: 320px;
    transform: translate(-50%, -50%);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath fill='%2354b2a6' opacity='0.85' d='M100,100 C100,44.8 144.8,0 200,0 C144.8,55.2 100,100 100,100 Z'/%3E%3Cpath fill='%2354b2a6' opacity='0.85' d='M100,100 C155.2,100 200,144.8 200,200 C144.8,144.8 100,100 100,100 Z'/%3E%3Cpath fill='%2354b2a6' opacity='0.85' d='M100,100 C100,155.2 55.2,200 0,200 C55.2,144.8 100,100 100,100 Z'/%3E%3Cpath fill='%2354b2a6' opacity='0.85' d='M100,100 C44.8,100 0,55.2 0,0 C55.2,55.2 100,100 100,100 Z'/%3E%3Ccircle cx='100' cy='100' r='55' fill='%23ffffff' stroke='%2354b2a6' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

/* Pure Inner Core Text Ring */
.pinwheel-inner-text {
    text-align: center;
    max-width: 90px;
}

/* Precise Node Placements corresponding to the visual target */
.trend-pin-node {
    position: absolute;
    z-index: 2;
    width: 200px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.trend-pin-icon {
    width: 38px;
    height: 38px;
    background: #ffffff;
    border: 1px solid #54b2a6;
    color: #2c3e50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

/* Coordinates setting exact radial alignment */
@media (min-width: 992px) {
    .node-pos-1 {
        top: 12%;
        left: -2%;
        text-align: right;
        flex-direction: row-reverse;
    }

    /* Top Left */
    .node-pos-2 {
        bottom: 24%;
        left: -8%;
        text-align: right;
        flex-direction: row-reverse;
    }

    /* Bottom Left */
    .node-pos-3 {
        bottom: 2%;
        left: 34%;
        text-align: center;
        flex-direction: column;
        width: 160px;
    }

    /* Bottom Center */
    .node-pos-4 {
        bottom: 14%;
        right: -5%;
        text-align: left;
    }

    /* Bottom Right */
    .node-pos-5 {
        top: 14%;
        right: -2%;
        text-align: left;
    }

    /* Top Right */
}

/* Clean stacked mobile view so things stay legible and flawless */
@media (max-width: 991.98px) {
    .future-trends-infographic {
        height: auto;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        gap: 15px;
        background: #f8fafc;
        padding: 24px;
        border-radius: 20px;
    }

    .pinwheel-center-bg {
        position: relative;
        transform: none;
        top: 0;
        left: 0;
        margin: 0 auto 20px auto;
        width: 200px;
        height: 200px;
    }

    .trend-pin-node {
        position: static;
        width: 100%;
        background: #ffffff;
        padding: 12px 16px;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    }
}

/* CTA */
   /* Main Wrapper Background */
    .cta-wrapper {
        background: radial-gradient(circle at 50% 50%, #3e444a 0%, #1a1c1e 100%);
        min-height: 450px;
        display: flex;
        align-items: center;
    }

    /* Central Box with proper responsiveness */
    .cta-box {
        background: linear-gradient(135deg, #16181c 0%, #2b3036 100%);
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
        max-width: 850px;
        width: 100%;
        backdrop-filter: blur(10px);
    }
    
    .max-width-md { max-width: 700px; }
    .max-width-sm { max-width: 550px; }

    /* Custom Buttons styling */
    .btn-primary-custom {
        background-color: #00a2ff !important;
        border: none !important;
        color: white !important;
        box-shadow: 0 4px 15px rgba(0, 162, 255, 0.3);
        transition: all 0.3s ease;
    }
    .btn-primary-custom:hover {
        background-color: #008be0 !important;
        transform: translateY(-2px);
    }

    .btn-light-custom {
        background-color: #ffffff !important;
        border: none !important;
        color: #16181c !important;
        transition: all 0.3s ease;
    }
    .btn-light-custom:hover {
        background-color: #f0f0f0 !important;
        transform: translateY(-2px);
    }

    /* --- Responsive 3D Spheres Base Styles --- */
    .sphere {
        position: absolute;
        border-radius: 50%;
    }

    /* Big Blue Sphere (Bottom Left) */
    .sphere-blue-large {
        width: 140px;
        height: 140px;
        left: 5%;
        bottom: -20px;
        background: radial-gradient(circle at 30% 30%, #00bfff, #0056b3);
        box-shadow: inset -10px -10px 30px rgba(0,0,0,0.5), 10px 20px 30px rgba(0,0,0,0.3);
        z-index: 4;
    }

    /* Small Blue Sphere (Top Right) */
    .sphere-blue-small {
        width: 25px;
        height: 25px;
        right: 32%;
        top: 12%;
        background: radial-gradient(circle at 30% 30%, #00d2ff, #0066cc);
        box-shadow: inset -2px -2px 5px rgba(0,0,0,0.4);
        z-index: 2;
    }

    /* Dark Sphere (Top Left) */
    .sphere-dark-top {
        width: 65px;
        height: 65px;
        left: 22%;
        top: 8%;
        background: radial-gradient(circle at 30% 30%, #555960, #111315);
        box-shadow: inset -5px -5px 15px rgba(0,0,0,0.6), 5px 10px 15px rgba(0,0,0,0.4);
        z-index: 4;
    }

    /* Dark Sphere (Bottom Right) */
    .sphere-dark-bottom {
        width: 80px;
        height: 80px;
        right: 20%;
        bottom: -15px;
        background: radial-gradient(circle at 30% 30%, #444850, #111315);
        box-shadow: inset -8px -8px 20px rgba(0,0,0,0.6), 5px 15px 20px rgba(0,0,0,0.4);
        z-index: 4;
    }

    /* Tiny White Sphere (Left Side) */
    .sphere-white-left {
        width: 30px;
        height: 30px;
        left: 2%;
        top: 40%;
        background: radial-gradient(circle at 30% 30%, #ffffff, #b0b5bc);
        box-shadow: inset -3px -3px 8px rgba(0,0,0,0.3), 2px 5px 10px rgba(0,0,0,0.2);
        z-index: 2;
    }

    /* Large White/Grey Sphere (Right Edge) */
    .sphere-white-large-right {
        width: 120px;
        height: 120px;
        right: 3%;
        top: 10%;
        background: radial-gradient(circle at 30% 30%, #ffffff, #999ea5);
        box-shadow: inset -10px -10px 25px rgba(0,0,0,0.3), 15px 20px 35px rgba(0,0,0,0.4);
        z-index: 4;
    }

    /* --- MOBILE RESPONSIVE MEDIA QUERY --- */
    @media (max-width: 767.98px) {
        .cta-wrapper {
            min-height: auto;
            padding: 40px 10px;
        }
        
        /* Repositioning spheres to prevent text overlapping on mobile */
        .sphere-blue-large {
            width: 70px;
            height: 70px;
            left: -15px;
            bottom: -15px;
        }
        
        .sphere-white-large-right {
            width: 65px;
            height: 65px;
            right: -15px;
            top: -15px;
        }

        .sphere-dark-top {
            width: 40px;
            height: 40px;
            left: 10%;
            top: -10px;
        }

        .sphere-dark-bottom {
            width: 45px;
            height: 45px;
            right: 15px;
            bottom: -20px;
        }

        .sphere-white-left {
            width: 20px;
            height: 20px;
            left: -5px;
            top: 45%;
        }
    }

    /* FAQ */
        .nav-pills .nav-link {
        color: #495057;
        transition: all 0.3s ease;
    }
    .nav-pills .nav-link.active, .nav-pills .show > .nav-link {
        background-color: #0d6efd; /* Aap apne brand color ke hisab se ise badal sakte hain */
        color: #fff;
    }
    @media (max-width: 768px) {
        .nav-pills {
            border-radius: 1rem !important;
            flex-direction: column;
        }
        .nav-link {
            border-radius: 0.5rem !important;
        }
    }