* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }

.banner-section {
    /*background: linear-gradient(135deg, #004febe8 0%, #2169f7 70%, #2a56af 100%);*/
     /*background: linear-gradient(135deg, #00aaff 0%, #2169f7 50%, #9eb3dd 100%);*/
     background-image: url('https://www.vaival.com/wp-content/uploads/2025/07/5479108.jpg');
     background-repeat:no-repeat;
     background-size:cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 200px 0px 80px;
    position: relative;
    overflow: hidden;
    margin-top:-110px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.content {
    color: white;
    text-align:center;
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    display: inline-flex;
    align-items: center;
    backdrop-filter: blur(10px);
}

.badge::before {
    content: "🟢";
    margin-right: 0.5rem;
}

   .main-title {
font-size: 80px;
font-weight: 700 !important;
line-height: 1.1;
margin-bottom: 1.5rem;
margin-top: 0px;
white-space: nowrap;
overflow: hidden;
/*border-right: 3px solid rgba(0, 0, 0, 0.75);  */
text-align:center;
animation: blink-caret 0.75s step-end infinite;
}

#typewriter-text {
    white-space: nowrap;
    overflow: hidden;
    /*border-right: 3px solid rgba(0, 0, 0, 0.75);*/
    animation: blink-caret 0.75s step-end infinite;
}

@keyframes blink-caret {
    50% {
        border-color: transparent;
    }
}

.subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
    margin:auto;
    width:60%;
}

.button-group {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    text-align:center;
    margin-top:40px;
    padding-top:50px;
}

.btn-primary {
    background: linear-gradient(135deg, #2169f7, #1c015a);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.4);
    color: #fff;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    font-size: 18px;
    width:200px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    margin-left:30px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.visual-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rocket-container {
    /*background: rgba(255, 255, 255, 0.1);*/
    /*border: 1px solid rgba(255, 255, 255, 0.2);*/
    /*border-radius: 20px;*/
    padding: 3rem;
    backdrop-filter: blur(10px);
    position: relative;
}

.rocket {
    font-size: 8rem;
    /*animation: float 3s ease-in-out infinite;*/
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(-10deg); }
    50% { transform: translateY(-20px) rotate(-5deg); }
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: floatRandom 4s ease-in-out infinite;
}

.floating-element:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.floating-element:nth-child(2) { top: 60%; left: 20%; animation-delay: 1s; }
.floating-element:nth-child(3) { top: 30%; right: 15%; animation-delay: 2s; }
.floating-element:nth-child(4) { bottom: 40%; right: 10%; animation-delay: 0.5s; }

@keyframes floatRandom {
    0%, 100% { transform: translateY(0px); opacity: 0.3; }
    50% { transform: translateY(-15px); opacity: 0.8; }
}


/*banner section ends here*/


/*industries section*/

.industries-section-inner {
    padding: 70px 0px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}


.section-header {
    text-align: center;
    margin-bottom: 6rem;
}

.section-badge {
    background: linear-gradient(135deg, #2169f7, #8B5CF6);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(33, 105, 247, 0.3);
}

.section-badge::before {
    /*content: "ðŸŸ¢";*/
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700 !important;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #2169f7, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.5em !important;
    font-family: "Montserrat",sans-serif;
    font-weight:700;
}

.section-subtitle {
    font-size: 2rem;
    font-weight: 600 !important;
    color: #1e293b;
    margin-bottom: 2rem;
}

.section-description {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.7;
}

.industries-hub {
    position: relative;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4rem;
}

.ai-center {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #8B5CF6, #ec4899);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    font-weight: 800;
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.4);
    z-index: 10;
    animation: pulse 3s ease-in-out infinite;
}

.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.connection-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), transparent);
    height: 2px;
    transform-origin: center;
}

.industry-card {
    position: absolute;
    background: white;
    border-radius: 20px;
    padding: 1rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.05);
    max-width: 340px;
    min-width: 280px;
    z-index: 5;
}

.industry-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.industry-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.industry-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.industry-title {
    font-size: 1.25rem !important;
    font-weight: 700;
    color: #1e293b;
    transition: color 0.3s ease;
    font-family:"Montserrat", Sans-serif;
    font-weight:600;
    line-height:1.25em !important;
}

.industry-card:hover .industry-title {
    color: #2169f7;
}

.industry-description {
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom:0px;
    font-family: "Montserrat", sans-serif;
}

/* Updated Industry Card Positions to match the reference image */
.finance { top: 0%; left: 20%; }
.healthcare { top: 0%; right: 20%; }
.real-estate { top: 25%; left: 10%; }
.retail { top: 25%; right: 10%; }
.manufacturing { top: 75%; right: 8%; }
.transportation { top: 50%; left: 2%; }
.legal { top: 75%; left: 8%; }
.janitorial { top: 85%; right: 37%; }
.hospitality { top: 50%; right: 2%; transform: translate(0, -50px); }

/* Industry-specific colors */
.finance .industry-icon { background: linear-gradient(135deg, #3b82f6, #1d4ed8); color: white; }
.healthcare .industry-icon { background: linear-gradient(135deg, #ec4899, #be185d); color: white; }
.real-estate .industry-icon { background: linear-gradient(135deg, #8B5CF6, #7c3aed); color: white; }
.retail .industry-icon { background: linear-gradient(135deg, #10b981, #059669); color: white; }
.manufacturing .industry-icon { background: linear-gradient(135deg, #f59e0b, #d97706); color: white; }
.transportation .industry-icon { background: linear-gradient(135deg, #ec4899, #be185d); color: white; }
.legal .industry-icon { background: linear-gradient(135deg, #6b7280, #4b5563); color: white; }
.janitorial .industry-icon { background: linear-gradient(135deg, #06b6d4, #0891b2); color: white; }
.hospitality .industry-icon { background: linear-gradient(135deg, #f43f5e, #e11d48); color: white; }

.cta-section {
    text-align: center;
    /*background: linear-gradient(135deg, #f8fafc, #e2e8f0);*/
    /*padding: 3rem;*/
    padding-top:3rem;
    border-radius: 25px;
    /*box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);*/
}

.cta-text {
    font-size: 1.5rem;
    color: #475569;
    margin-bottom: 2rem;
    font-weight: 600;
}

.cta-button {
    background: linear-gradient(135deg, #2169f7, #8B5CF6);
    color: white;
    padding: 1.25rem 3rem;
    border: none;
    border-radius: 25px;
    font-size: 1.25rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(33, 105, 247, 0.3);
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}
.main-cta-button {
    background: linear-gradient(135deg, #2169f7, #1c015a);
    color: white;
    padding: 1rem 3rem;
    border: none;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(33, 105, 247, 0.3);
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}
.main-cta-button:hover{
    color:#fff;
}
.primary-cta-button{
    background-color: #fff;
    padding: 16px 24px;
    border-radius: 40px;
    color: #2169f7;
    font-size: 18px;
    font-weight: 700;
    border: 1px solid #2169f7;
    /*width: 250px;*/
    /*font-size: 1.25rem;*/
}
.primary-cta-button:hover{
    background-color: #2169f7;
    padding: 16px 24px;
    border-radius: 30px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    /*border: 1px solid #fff;*/
    
}
.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(33, 105, 247, 0.4);
    color:#fff;
}

.cta-button:hover::after {
    transform: translateX(5px);
}

/* Animations */
@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.05); }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .industries-hub {
        min-height: 700px;
    }
    
    .ai-center {
        width: 150px;
        height: 150px;
        font-size: 2.5rem;
    }
    
    .industry-card {
        max-width: 260px;
        min-width: 240px;
        padding: 1.5rem;
    }
}

        
        /*industries section ends here*/

    /*ai solutions section starts here*/
    
    .ai-usecase-row{
        padding: 20px 0px 0px;
        
    }
    /* (Optional) Demo Flex layout if not already defined */
    .ai-usecase-row {
      /*display: flex;*/
      /*flex-wrap: wrap;*/
      gap: 1.5rem;
    }
    #useCasesContainer{
        display:flex;
            justify-content: space-between;
    }
    .ai-usecaseContainer-left{
        width:50%;
    }
    .ai-usecaseContainer-right{
        width:50%;
        padding-left: 70px;
    }
    .ai-usecase-row:first-child {
      padding-top: 0 !important;
    }
                
    .ai-solutions-block {
      background: white;
      position: relative;
      padding: 70px 0px 70px;
      overflow: hidden;
      font-family: Arial, sans-serif;
      color: #1f2937;
    }

    .ai-container {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
    }

    .ai-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .ai-header h2 {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 20px;
      line-height: 3rem !important;
      font-family: "Montserrat", Sans-serif;
    }

    .ai-gradient-text {
      background: linear-gradient(to right, #7e22ce, #ec4899);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .ai-header p {
      color: #6b7280;
      font-size: 18px;
      max-width: 700px;
      margin: 0 auto;
      font-family: "Montserrat", Sans-serif;
    }


    
    .ai-card-inner {
      display: flex;
      align-items: center;
    }
    
    
    .ai-usecase-row .ai-card:nth-child(2) {
      /*transform: translateY(80px);*/
      margin-top:20px;
    }
    
      .slide-in-right {
      opacity: 0;
      transform: translateX(100%);
      will-change: transform, opacity;
    }

    .slide-in-right.visible {
      opacity: 1;
      transform: translateX(0);
      transition: transform 1.4s ease-out, opacity 1.4s ease-out;
    }

    


    .ai-card {
      display: flex;
      align-items: center;
      padding: 15px 20px;
      background: linear-gradient(to right, #f9fafb, #ffffff);
      border-radius: 40px;
      border: 1px solid #e5e7eb;
      box-shadow: 0 2px 10px rgba(0,0,0,0.06);
      transition: all 0.3s ease;
      width: 500px;
    }

    .ai-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.1);
      border-color: #d8b4fe;
    }

    .ai-icon {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: linear-gradient(to bottom right, #a855f7, #7c3aed);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      color: white;
      margin-right: 24px;
      padding:10px;
    }

    .ai-card h3 {
      margin: 0 0 6px;
      font-size: 18px;
      font-weight: bold;
      line-height:1.5rem;
    }

    .ai-card p {
      margin: 0;
      color: #6b7280;
      font-size: 14px;
    }

    .ai-decorative-curve svg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      opacity: 0.2;
      pointer-events: none;
    }


/*styles for cta banner*/

 .ai-cta-wrapper {
      /*background: linear-gradient(135deg, #00aaff 0%, #2169f7 50%, #9eb3dd 100%);*/
    /*background-image: linear-gradient(135deg, rgb(0 0 0) 0%, rgb(0 0 0 / 50%) 50%, rgb(0 0 0) 100%), url(https://www.vaival.com/wp-content/uploads/2025/06/Screenshot-from-2025-06-30-15-12-45.png);*/
    background-image: url('https://www.vaival.com/wp-content/uploads/2025/07/banner-01-1-scaled.png');
    background-position: center right;
    background-repeat: no-repeat;
    background-size: inherit;
      padding: 80px 20px;
    }

    .cta-banner {
      color: white;
      text-align: center;
      font-family: Arial, sans-serif;
      border-radius: 12px;
    }

    .cta-container {
      /*max-width: 900px;*/
      margin: 0 auto;
    }

    .cta-heading {
      font-size: 3rem !important;
      font-weight: 700 !important;
      margin-bottom: 30px !important;
      line-height:40px !important;
      color: #000;
    }

    .cta-subheading {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 20px;
    }

    .cta-description {
      font-size: 20px;
      line-height: 1.6;
      width:50%;
      margin: 40px auto 20px auto;
      padding:0px 50px;
      color: #2e2b2b;
      font-family: "Montserrat",sans-serif;
    }
    
    .book-strategy{
        margin-top:10px;
        font-weight:700;
        color: #000;
        font-size: 24px;
        font-family: 'Montserrat', Arial-Sans;
    }

    .cta-buttons {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 16px;
    }

    .cta-button {
      text-decoration: none;
      padding: 16px 24px;
      border-radius: 30px;
      font-size: 16px;
      transition: background 0.3s ease, transform 0.2s ease;
      display: inline-block;
    }

    .cta-button.primary {
      background-color: #fff;
      color: #7e22ce;
      font-weight: bold;
    }

    .cta-button.primary:hover {
      background-color: #f3e8ff;
      transform: translateY(-2px);
    }

    .cta-button.secondary {
      background-color: rgba(255, 255, 255, 0.15);
      border: 1px solid #fff;
      color: #fff;
    }

    .cta-button.secondary:hover {
      background-color: rgba(255, 255, 255, 0.3);
      transform: translateY(-2px);
    }

  


     .services-section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .services-section-title {
            font-size: 2.5rem !important;
            font-weight: 700 !important;
            background: linear-gradient(135deg, #2169f7, #8B5CF6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
            line-height:60px !important;
            text-align:left;
        }

        .services-section-subtitle {
            font-size: 1.25rem;
            color: #64748b;
            margin-bottom: 20px;
            text-align:left;
        }

        .services-process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
            position: relative;
        }

        .services-step-card {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            padding: 30px;
            text-align: center;
            border: 1px rgba(255, 255, 255, 0.2);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            position: relative;
            opacity: 0;
            transform: translateY(20px);
        }

        .services-step-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .services-step-icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            transition: transform 0.3s ease;
        }

        .services-step-card:hover .services-step-icon {
            transform: scale(1.1);
        }


        .services-step-icon.strategy {
            background: linear-gradient(135deg, #f59e0b, #ea580c);
        }

        .services-step-icon.design {
            background: linear-gradient(135deg, #3b82f6, #8b5cf6);
        }

        .services-step-icon.integration {
            background: linear-gradient(135deg, #10b981, #14b8a6);
        }

        .services-step-icon.deployment {
            background: linear-gradient(135deg, #8b5cf6, #ec4899);
        }

        .services-step-icon svg {
            width: 32px;
            height: 32px;
            fill: white;
        }

        .services-step-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 12px;
            line-height: 25px !important;
        }

        .services-step-description {
            color: #64748b;
            line-height: 1.5;
        }

        .pilot-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
            padding: 12px 24px;
            border-radius: 50px;
            font-weight: 600;
            margin: 40px 0px 0px ;
            text-decoration: none;
            transition: transform 0.3s ease;
        }

        .pilot-badge:hover {
            transform: scale(1.05);
        }
            .comparison-container {
            display: flex;
            gap: 24px;
            max-width: 1100px;
            width: 100%;
            position: relative;
            align-items: flex-start;
            margin:60px 0px !important;
        }

        .comparison-card {
            flex: 1;
            background: white;
            border-radius: 16px;
            padding: 32px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
            position: relative;
            min-height: 500px;
                transition: all 0.3s ease;

        }
        .comparison-card:hover{
             box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
    transform: translateY(-15px);

        }

        .card-badge {
            display: inline-block;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 24px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .problems-card .card-badge {
            background: #fecaca;
            color: #dc2626;
        }

        .solutions-card .card-badge {
            background: #ddd6fe;
            color: #2169f7;
        }

        .card-title {
            font-size: 24px;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 32px;
            line-height: 2rem !important;
        }

        .bullet-list {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .bullet-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
        }

        .bullet-icon {
            width: 20px;
            height: 20px;
            margin-top: 2px;
            flex-shrink: 0;
        }

        .problems-card .bullet-icon {
            color: #dc2626;
        }

        .solutions-card .bullet-icon {
            color: #2169f7;
        }

        .bullet-content h3 {
            font-size: 16px;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 4px;
            line-height: 1.4;
            color: #dc2626;
        }

        .bullet-content p {
            font-size: 14px;
            color: #6b7280;
            line-height: 1.5;
        }
        .bullet-content-solutions h3{
        
            color: #2169f7 !important;
        }

        .center-arrow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #2169f7, #2169f7);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .center-arrow:hover {
            transform: translate(-50%, -50%) scale(1.1);
            box-shadow: 0 12px 32px rgba(139, 92, 246, 0.4);
        }

        .center-arrow svg {
            width: 20px;
            height: 20px;
            color: white;
        }

        .problems-card::before {
            content: '';
            position: absolute;
            top: 16px;
            right: 16px;
            width: 24px;
            height: 24px;
            background: #dc2626;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .problems-card::after {
            content: '×';
            position: absolute;
            top: 16px;
            right: 16px;
            width: 24px;
            height: 24px;
            color: white;
            font-size: 16px;
            font-weight: bold;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: #dc2626;
        }

        .solutions-card::before {
            content: '';
            position: absolute;
            top: 16px;
            right: 16px;
            width: 24px;
            height: 24px;
            background: #7c3aed;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .solutions-card::after {
            content: '✓';
            position: absolute;
            top: 16px;
            right: 16px;
            width: 24px;
            height: 24px;
            color: white;
            font-size: 14px;
            font-weight: bold;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: #2169f7;
        }

        

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #2169f7, #1c015a);
            color: white;
            padding: 16px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.125rem;
            /*margin-top: 60px;*/
            transition: all 0.3s ease;
        }

        .cta-button:hover {
            transform: scale(1.05);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

    

        .fade-in {
            opacity: 1 !important;
            transform: translateY(0) !important;
        }
        
        .services{
            padding:80px 0px;
        }

    .guesswork{
        background:linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        
    }
    .guesswork .container{
        display: block;
    }


/*trust section*/

   .trust-section {
      position: relative;
      display: flex;
      min-height: 100vh;
      align-items: center;
      justify-content: space-between;
      padding: 80px 100px;
      background: linear-gradient(to right, #0a0215 48%, #fff 47%);
      flex-wrap: wrap;
      overflow: hidden;
    }

.trust-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 48%;
  height: 100%;
  /*background-image: url('https://as1.ftcdn.net/jpg/06/09/15/30/1000_F_609153053_LpblsnbXkQqqCLosIOAmg8McKj9XJsG1.jpg');*/
    background-image: url('https://www.vaival.com/wp-content/uploads/2025/07/Untitled-1-2.jpg');
    /*transform: scaleX(-1);*/
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  opacity:0.90;
}

.trust-section > * {
  position: relative;
  z-index: 2; /* ensure your content appears above the background image */
}

    .trust-left {
      flex: 1;
      /*padding-right: 50px;*/
      color: white;
      min-width: 280px;
      position:relative;
      bottom:20px;
    }

    .trust-left h2 {
      font-size: 48px;
      font-weight: bold;
      line-height: 1.2;
      color: #000;
    }

    .trust-left h2 span {
      color: #4e8aff;
    }

    .line {
      width: 120px;
      height: 4px;
      background-color: #4e8aff;
      margin: 20px 0;
    }

    .trust-left p {
      font-size: 18px;
      color: #3e3e3e;
    }

    .trust-right {
      flex: 1;
      /*padding-left: 50px;*/
      background-color: #fff;
      color: #000;
      min-width: 280px;
    }

    .trust-item {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 20px 24px;
    border-radius: 50px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    border: 1px solid #f3f4f;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
    }
    
    .trust-item:hover {
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
      transform: translateY(-1px);
    }
    .trust-item::nth-child(5){
        margin-bottom:0px;
        
    }

    .icon {
      width: 55px;
      height: 55px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 10px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      font-size: 24px;
      color: #fff;
    }

    .icon.purple {
      background: linear-gradient(135deg, #7100ff, #a159ff);
      color: #fff;
    }

    .icon.green {
      background-color: #2ecc71;
      color: #fff;
    }

    .icon.white {
      background-color: #f1f1f1;
      color: #333;
    }

    .icon.red {
      background-color: #ff4b2b;
      color: #fff;
    }

    .icon.gray {
      background-color: #888;
      color: #fff;
    }

    .text h3 {
      font-size: 24px !important;
      font-weight: 600 !important;
      line-height:30px !important;
      
    }

    .text p {
      margin: 0;
      font-size: 17px;
      color: #666;
    }
    .icon-blue {
    background-color: #007bff;
}


    
    /*advanced ai models section*/
    
    
        .ai-models-section {
            padding: 6rem 2rem;
            text-align: center;
             font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background-color: #f8fafc;
        }

        .ai-section-header {
            margin-bottom: 4rem;
        }

        .section-badge {
            background: linear-gradient(135deg, #8B5CF6, #EC4899);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 1.5rem;
        }

        .ai-section-title {
            font-size: 3rem;
            font-weight: 700 !important;
            margin-bottom: 1rem;
            line-height: 60px !important;
        }

        .ai-section-title .ai-highlight {
            background: linear-gradient(135deg, #8B5CF6, #EC4899);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .ai-section-subtitle {
            font-size: 1.125rem;
            color: #64748b;
            max-width: 600px;
            margin: 0 auto 2rem;
            line-height: 1.6;
        }

        .ai-models-container {
            position: relative;
            overflow: hidden;
            padding: 2rem 0;
        }

        .ai-models-track {
            display: flex;
            gap: 2rem;
            animation: scroll 30s linear infinite;
            width: max-content;
        }

        .ai-model-item {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
            align-items: center;
            min-width: 200px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .ai-model-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .ai-model-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            font-size: 2rem;
            font-weight: 700;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .ai-model-name {
            font-size: 1.125rem;
            font-weight: 600;
            color: #1e293b;
        }

        /* Model-specific colors */
        .gpt { background: linear-gradient(135deg, #10B981, #059669); }
        .vertex { background: linear-gradient(135deg, #3B82F6, #1D4ED8); }
        .llama { background: linear-gradient(135deg, #F59E0B, #D97706); }
        .claude { background: linear-gradient(135deg, #8B5CF6, #7C3AED); }
        .bert { background: linear-gradient(135deg, #059669, #047857); }
        .yolo { background: linear-gradient(135deg, #DC2626, #B91C1C); }
        .whisper { background: linear-gradient(135deg, #EC4899, #BE185D); }

        .pagination-dots {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 2rem;
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #e2e8f0;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: linear-gradient(135deg, #8B5CF6, #EC4899);
            transform: scale(1.2);
        }

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

        .ai-models-track:hover {
            animation-play-state: paused;
        }

        /* Duplicate items for seamless loop */
        .ai-models-track {
            display: flex;
            gap: 2rem;
        }

    
    
    .ai-wrapper-two{

    /*background-image: linear-gradient(135deg, rgb(0 0 0) 0%, rgb(0 0 0 / 50%) 50%, rgb(0 0 0) 100%), url(https://www.vaival.com/wp-content/uploads/2025/07/3d-render-modern-network-communications-low-poly-plexus-design.jpg);*/
    background-image: url('https://www.vaival.com/wp-content/uploads/2025/07/BG2.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 20px;
    }
    .ai-middle{
        width:50%;
        margin:auto;
    }

    .ai-middle p {
      position: absolute;
      top: 35%;
      left: 0;
      right: 0;
      margin: auto;
      text-align: center;
      font-size: 24px;
      font-weight: 600;
      max-width: 400px;
    
      background: linear-gradient(to right, #7e22ce, #ec4899);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: transparent;
      white-space: nowrap;
      overflow: hidden;
    }   



/*MObile responsive */


@media (max-width: 768px) {
    .banner-section{
        padding: 150px 0px 60px;
        min-height:auto;
    }
    .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    
    #default-text, #typewriter-text {
        font-size:30px;
    }
    .subtitle{
        font-size:16px;
        width:90%;
    }
    .main-title {
        font-size: 2.5rem;
    }
    
    .button-group {
        justify-content: center;
    }
    .btn-primary{
        font-size:16px;
    }
    .btn-secondary{
        width:50%;
        font-size:16px;
        margin-top:20px;
        margin-left:0px;
    }

/*industries section*/
    .industries-section-inner {
        padding: 50px 20px;
    }

    .section-title {
        font-size: 30px !important;
    }

    .section-subtitle {
        font-size: 18px !important;
        line-height: 40px !important;
        margin-bottom: 10px;
    }
    
    .section-subtitle-resposnive{
        font-size: 22px !important;
        line-height: 40px !important;
        margin-bottom: 10px;
        font-weight: 700 !important;
    }

    .industries-hub {
        min-height: 600px;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        margin-bottom:1rem;
    }
    .ai-middle , .ai-center, .typing-text{
        display:none;
    }
    .section-header{
        margin-bottom: 2.5rem;
    }
    .section-badge{
        font-size:12px;
    }
    .section-description{
        font-size: 16px !important;
        margin-bottom:0px;
    }

    .industry-card {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        transform: none;
        max-width: 100%;
        width: 100%;
    }

    .connection-lines {
        display: none;
    }

    .cta-section {
        padding: 2rem 1.5rem;
        padding-bottom:0rem;
    }

    .cta-text {
        font-size: 18px;
        color: #000;
        margin-bottom:20px;
    }

    .cta-button {
        padding: 1rem 1rem;
        font-size: 16px !important;
        display:block !important;
    }
    
    .cta-container .cta-buttons .main-cta-button{
        padding: 1rem 2rem !important;
    }
    .industry-title{
        font-size:18px !important;
        line-height:30px !important;
        margin-bottom:0px !important;
        margin-top:10px;
    }
    .industry-icon{
        font-size:1rem;
        width:30px;
        height:30px;
        border-radius:5px;
        margin-right:0px;
    }
    #useCasesContainer{
        display:block;
    }
    
    #useCasesContainer .ai-usecaseContainer-left{
        width:100%;
    } 
    #useCasesContainer .ai-usecaseContainer-right{
    
        display:none;
    }
    .ai-solutions-block{
        padding:50px 20px;
    }
    .ai-solutions-block .ai-header{
        margin-bottom:30px;
    }
    .ai-solutions-block .ai-header h2{
        font-size: 30px;
        line-height: 40px !important;
    }
    .ai-solutions-block .ai-header p{
    font-size:16px;
        
    }
    .ai-icon{
        width: 40px;
    height: 40px;
    font-size: 18px;
    color: white;
    margin-right: 10px;
    padding: 8px
    }
    
    .ai-card{
        width:auto;
        display:block;
        padding:10px;
        
    }
    .ai-card h3{
        font-size:16px;
        font-weight:600;
        line-height:1.2rem;
        margin-bottom:0px;
    }
    .ai-cta-wrapper{
        padding:50px 20px;
    }
    
    .cta-heading{
        font-size: 30px !important;
        font-weight: 700 !important;
    }
    
      .cta-subheading {
        font-size: 20px;
      }
      .cta-description{
          font-size: 16px;
          width:100%;
          margin: 20px auto;
          padding:0px;
          
      }
      .book-strategy{
          font-size: 18px;
      }

    .main-cta-button{
        font-size:16px;
        text-decoration: none;
        width: max-content;
        margin: auto;
        padding:1rem 1rem;
    }
    .primary-cta-button{
        width: max-content;
        margin: auto;
        padding: 1rem 2rem;
        font-size: 16px;
        font-weight: 600;
    }
    
    .services{
        padding:50px 20px;
    }
    
    .services-process-steps {
        grid-template-columns: 1fr;
        gap:20px;
        margin-bottom:30px;
    }
    
    .comparison-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .services-section-header{
        margin-bottom:10px;
    }
    .services-step-card{
        padding: 20px;
    }
    
    .services-section-title{
        font-size: 30px !important;
        line-height: 40px !important;
        text-align: center;
    }
    .services-section-subtitle{
        font-size: 16px;
        text-align: center;
        margin-bottom:0px;
    }
    .services-step-title{
        font-size: 18px;
        width: 50%;
        text-align: center;
        margin: auto;
        line-height: 20px !important;
        margin-bottom: 10px;
    }
    .services-step-icon{
        width: 40px;
        height: 40px;
        margin: 0 auto 15px;
    }
    .services-step-icon svg {
        width: 26px;
        height: 26px;
    }
    .services .main-cta-button{
        width: 100%;
        display: block;
        padding:1rem 1rem;
    }
    .services .container{
        gap: 20px;

    }

    .comparison-container {
        flex-direction: column;
        gap: 32px;
        margin:30px 0px !important;
    }

    .center-arrow {
     display:none;    
        
    }

    /*.center-arrow:hover {*/
    /*    transform: scale(1.1) rotate(90deg);*/
    /*}*/

    .comparison-card {
        padding: 24px;
    }

    .card-title {
        font-size: 18px;
        text-align: left;
        line-height: 30px !important;
        margin-bottom: 20px;    
        font-weight:600 !important;
    }
    .bullet-content h3{
        text-align:left;
    }
    .bullet-item {
        gap:10px;
    }
    .bullet-content p{
        text-align:left;
    }
    .bullet-list{
        gap:20px;
    }
      .trust-section {
        flex-direction: column;
        padding: 50px 20px;
      }
      .trust-section .container{
          padding:0px;
      }
      .trust-left{
          position:static;
      }

      .trust-left, .trust-right {
        padding: 0;
        width: 100%;
      }
      .trust-left .line{
          margin: 0px auto 20px auto;
      }
    .trust-left h2{
        text-align: center;
        font-size:30px;
        line-height:50px;
    }
    
    .trust-left p{
        text-align:center;
        margin-bottom:0px;
    }
    
    .trust-item{
        display:flex;
        align-items:start;
        padding:20px;
        border: 1px solid #f3f4ff;
        margin-bottom:30px;
    }
    
    .trust-item .text h3 {
        font-size: 16px !important;
        font-weight: 600 !important;
        line-height: 30px !important;
        text-align: left;
        line-height: 24px !important;
    }
    .trust-item .icon{
        width: 40px;
        height: 40px;
        font-size: 18px;
        margin-right:0px;
        padding:5px;
        border-radius:40px;
    }
    .trust-right{
        background-color: transparent;
    }
    .trust-section::before{
        background-image: none;
    background-color: #fff;
    opacity: 1;
    }
    .trust-section .container{
        gap: 2rem;
    }
    .trust-item .text p{
        text-align:left;
    }
    
    .trust-right .trust-item:last-child {
      margin-bottom: 0;
    }
    .ai-models-section{
        padding:50px 20px;
    }
    .ai-section-title {
        font-size: 30px;
        line-height:30px !important;
    }
    
    .ai-model-item {
    min-width: 150px;
     width: 60px;
    height: 225px;
    font-size: 1.5rem;
    }
    .ai-section-subtitle{
        font-size:16px;
        margin-bottom:0px;
    }
    .ai-section-header{
        margin-bottom:1rem;
    }
    .ai-wrapper-two{
        background-position: center right;
        padding:50px 20px;
    }
     
      .cta-buttons {
        flex-direction: column;
        margin-top:30px;
      }

      .cta-button {
        width: 100%;
        text-align: center;
      }
    .guesswork .container{
        padding:0px;
    }
    
    .industry-header{
        flex-direction:column;
    }
    .c-break{
        display:none;
    }
    .industry-description{
        padding: 0px 20px;
        text-align:center;
    }
    
}

/*Data into dollars*/
            .data-to-dollrs{
                padding:70px 0px;
            }
            .main-data-sec{
                display:flex;
                gap:60px;
            }
      
        .main-heading {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1a202c;
            margin-bottom: 24px;
            line-height: 1.2;
        }
        
        .left-content{
            margin-bottom:0px !important;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: center;
            gap:10px;
        }
        
        .left-content h2{
            text-align:left;
        }
        .left-content .description {
            font-size: 1.125rem;
            color: #000 !important;
            margin-bottom: 32px;
            line-height: 1.7;
            text-align:left !important;
        }

        .insight-box {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 32px;
            border-radius: 16px;
            margin-bottom: 32px;
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
            position: relative;
            overflow: hidden;
            display:flex;
            gap:10px;
        }

        .insight-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
            pointer-events: none;
        }

        .chart-icon {
            width: 32px;
            height: 32px;
            margin-bottom: 16px;
            opacity: 0.9;
        }

        .insight-text {
            font-size: 1.125rem;
            font-weight: 500;
            position: relative;
            z-index: 1;
            color: #fff !important;
            text-align: left !important;
            /*margin: 10px 0px !important;*/
        }


        .right-content {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .benefit-card {
            background: white;
            border-radius: 16px;
            padding: 32px 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border-left: 4px solid transparent;
            transition: all 0.3s ease;
            position: relative;
        }

        .benefit-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        }

        .revenue-card {
            border-left-color: #10b981;
        }

        .cost-card {
            border-left-color: #ef4444;
        }

        .card-header {
            display: flex;
            align-items: center;
            margin-bottom: 24px;
        }

        .card-icon {
            width: 30px;
            height: 30px;
            margin-right: 12px;
        }

        .revenue-icon {
            color: #10b981;
        }

        .cost-icon {
            color: #ef4444;
        }

        .card-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: #1a202c;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .benefit-item {
            background: #f7fafc;
            padding: 20px 10px;
            border-radius: 12px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .revenue-card .benefit-item {
            background: #f0fdf4;
        }

        .cost-card .benefit-item {
            background: #fef2f2;
        }

        .benefit-item:hover {
            transform: translateY(-2px);
        }

        .benefit-text {
            font-size: 0.875rem;
            color: #4a5568;
            line-height: 1.5;
            margin-bottom:0px;
        }
        .right-content .card-title{
            margin-bottom:0px;
            font-weight:600;
        }
        .drive-revenue{
            color: #10b981;
        } 
        .reduce-cost{
            color:#ef4444;
        }
        .cta-responsive-screens{
            display:none;
        }
        /* Responsive Design */
        @media (max-width: 1024px) {
            .container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .main-heading {
                font-size: 2rem;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
        }

        @media (max-width: 768px) {
          .main-heading {
                font-size: 1.75rem;
            }

            .insight-box {
                padding: 24px;
                margin-bottom:0px;
            }

            .benefit-card {
                padding: 24px;
            }

            .cta-button {
                width: 100%;
                padding: 14px 24px;
            }
            .cta-responsive-screens{
                display:block;
            }
            .cta-responsive{
                display:none !important;
            }
        }

        /* Animation for cards */
        .benefit-card {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.6s ease forwards;
        }

        .revenue-card {
            animation-delay: 0.1s;
        }

        .cost-card {
            animation-delay: 0.2s;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Hover effects for benefit items */
        .benefit-item {
            position: relative;
            overflow: hidden;
        }

        .benefit-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: left 0.5s;
        }

        .benefit-item:hover::before {
            left: 100%;
        }
        
        
        /*smart business*/
        
        
.numbers-section {
  padding: 70px 0px;
  text-align:center;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  text-align:center;
}
.numbers-section .container{
    display:block !important;
}
.numbers-section .title {
  color: #2169f7;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 3rem !important;
    font-family: "Montserrat", Sans-serif;
}


/* AI center circle with glow animation */
.ai-animation-wrapper {
    display:none;
  /*display: flex;*/
  justify-content: center;
  margin: 40px 0px;
}

.glow-circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(to right, #7e22ce, #ec4899);
  color: white;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 0 20px rgba(236, 72, 153, 0.6), 0 0 40px rgba(126, 34, 206, 0.4);
  animation: pulse-glow 2s infinite ease-in-out;
  margin: 20px 0px;
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.6), 0 0 30px rgba(126, 34, 206, 0.4);
  }
  50% {
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.9), 0 0 60px rgba(126, 34, 206, 0.7);
  }
  100% {
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.6), 0 0 30px rgba(126, 34, 206, 0.4);
  }
}


/* Industry blocks with lines between */
.industries-with-lines {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
  margin-top:40px;
}

.industry {
  flex: 0 0 auto;
  max-width: 250px;
  text-align: center;
}

.industry h3 {
  font-weight: 600;
  margin:20px 0px;
  line-height:30px;
  font-size:22px;
}

.industry p {
  color: #555;
  font-size: 0.9rem;
  margin: 0 auto;
  max-width: 250px;
}

/* Colored Circles */
.industries-with-lines .industry .circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  color: #fff;
}

.industries-with-lines .industry .blue {
  background: linear-gradient(to bottom right, #4a6cf7, #5a67d8);
}

.industries-with-lines .industry .green {
  background: linear-gradient(to bottom right, #34d399, #10b981);
}

.industries-with-lines .industry .purple {
  background: linear-gradient(to bottom right, #a855f7, #d946ef);
}

/* Horizontal line */
.industries-with-lines .horizontal-line {
  height: 4px;
  width: 140px;
  background: linear-gradient(to right, #7e22ce, #ec4899);
  border-radius: 4px;
}

/* Callout box */
.consult-box {
  /* background: white; */
  padding: 25px 20px;
  border-radius: 12px;
  /*max-width: 900px;*/
  margin: 0 auto 20px;
  /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); */
  text-align:center;
}



/* CTA button */
.button-wrapper {
  margin: 10px auto;
  max-width:max-content;
}



/* Responsive Design */
@media (max-width: 992px) {
  .industries-with-lines {
    flex-wrap: wrap;
    gap: 20px 10px;
  }

  .horizontal-line {
    display: none;
  }
}

@media (max-width: 600px) {
  .title {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 0.95rem;
  }

  .glow-circle {
    width: 70px;
    height: 70px;
    font-size: 1rem;
  }

  .circle {
    width: 70px;
    height: 70px;
    font-size: 1rem;
  }

  .consult-box h2 {
    font-size: 1.1rem;
  }

  .consult-box p {
    font-size: 0.85rem;
  }

}

  @media (max-width: 768px) {

      .main-data-sec{
          flex-direction:column;
      }
      .left-content h2{
      font-size: 28px;  
        text-align: center;
        line-height: 30px !important;
      }
      .insight-text{
          font-size:16px !important;
      }
      .numbers-section .title{
          font-size:28px;
          line-height:30px;
      }
    .data-to-dollrs{
        padding: 40px 0px;
    }
    
    .numbers-section{
        padding: 40px 0px;
    }
    .numbers-section .title{
        font-size:28px;
    }
    .industries-with-lines{
        display:block;
    }
    .industry{
        max-width:100%;
        text-align:center;
        margin-bottom:20px;
    }
    
}