
/* GenAI Consulting Page - Premium Professional Theme */
.ai-hero-section {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f4d 50%, #0f1438 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Animated Background - GenAI Neural Network Effect */
.ai-hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.ai-hero-bg-animation::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 50%, rgba(57, 50, 133, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(102, 126, 234, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(118, 75, 162, 0.25) 0%, transparent 50%);
    animation: bgShift 20s ease-in-out infinite;
}

@keyframes bgShift {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

/* Floating Text Particles - GenAI Effect */
.ai-hero-bg-animation::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(102, 126, 234, 0.15) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(118, 75, 162, 0.15) 2px, transparent 2px),
        radial-gradient(circle at 50% 50%, rgba(240, 147, 251, 0.1) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px, 80px 80px;
    animation: particleFloat 30s linear infinite;
    opacity: 0.6;
}

@keyframes particleFloat {
    0% { transform: translateY(0) translateX(0); }
    100% { transform: translateY(-100px) translateX(50px); }
}

.ai-hero-wrapper {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.ai-hero-content {
    max-width: 100%;
}

.ai-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(57, 50, 133, 0.9), rgba(102, 126, 234, 0.9));
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    margin-bottom: 35px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    box-shadow: 0 10px 40px rgba(57, 50, 133, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    animation: slideInLeft 0.8s ease-out, badgeGlow 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.ai-hero-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 10px 40px rgba(57, 50, 133, 0.4); }
    50% { box-shadow: 0 10px 50px rgba(57, 50, 133, 0.6), 0 0 60px rgba(102, 126, 234, 0.3); }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.ai-hero-badge i {
    font-size: 1.1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.ai-hero-title {
    font-size: 3.8rem;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.2;
    color: white;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.ai-hero-title .highlight {
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: gradientShift 4s ease-in-out infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

.ai-hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-weight: 400;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Trust Metrics Bar */
.ai-trust-metrics {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.trust-metric-item {
    flex: 1;
    text-align: center;
    padding: 15px;
    position: relative;
}

.trust-metric-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.trust-metric-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    display: block;
    animation: gradientShift 4s ease-in-out infinite;
    background-size: 200% 200%;
}

.trust-metric-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ai-hero-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.ai-hero-features li {
    padding: 14px 0;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
    font-weight: 500;
}

.ai-hero-features li i {
    color: #667eea;
    font-size: 1.2rem;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: rgba(102, 126, 234, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(102, 126, 234, 0.4);
}

/* Client Logos */
.ai-client-logos {
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 1s both;
    text-align: center;
}

.client-logos-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.client-logos-grid {
    display: flex;
    gap: 25px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.client-logo-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 12px 20px;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.client-logo-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.ai-hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 1.2s both;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 18px 40px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary::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;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.6);
    color: white;
    text-decoration: none;
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 18px 40px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    transition: width 0.3s ease;
}

.btn-secondary:hover::before {
    width: 100%;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
    text-decoration: none;
}

/* Remove booking card styles since we're not using it */

/* Stats Bar */
.ai-stats-bar {
    background: white;
    padding: 50px 0;
    box-shadow: 0 10px 50px rgba(57, 50, 133, 0.1);
    margin-top: -60px;
    position: relative;
    z-index: 3;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
}

.stat-item {
    text-align: center;
    padding: 20px;
    border-right: 1px solid #e9ecef;
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #393285 0%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    color: #6c757d;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services Section - Premium GenAI Theme */
.ai-services-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f4d 50%, #0f1438 100%);
    position: relative;
    overflow: hidden;
}

/* Animated AI Background - GenAI Neural Network */
.ai-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(118, 75, 162, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(240, 147, 251, 0.1) 0%, transparent 50%);
    animation: aiBackgroundShift 15s ease-in-out infinite;
}

@keyframes aiBackgroundShift {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

/* Floating Particles */
.ai-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.ai-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(102, 126, 234, 0.5);
    border-radius: 50%;
    animation: particleFloat 20s infinite linear;
}

.ai-particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.ai-particle:nth-child(2) { left: 30%; top: 60%; animation-delay: 2s; }
.ai-particle:nth-child(3) { left: 50%; top: 40%; animation-delay: 4s; }
.ai-particle:nth-child(4) { left: 70%; top: 80%; animation-delay: 6s; }
.ai-particle:nth-child(5) { left: 90%; top: 30%; animation-delay: 8s; }
.ai-particle:nth-child(6) { left: 20%; top: 70%; animation-delay: 10s; }

@keyframes particleFloat {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) translateX(50px); opacity: 0; }
}

.ai-services-section .section-badge {
    background: linear-gradient(135deg, #667eea, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.ai-services-section .section-title {
    background: linear-gradient(135deg, #ffffff 0%, #667eea 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.ai-services-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 2;
}

.services-layout-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Left Side - Services Grid */
.services-grid-left {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.service-card-compact {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(102, 126, 234, 0.2);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* GenAI Glow Effect */
.service-card-compact::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, #667eea, #764ba2, #f093fb, transparent);
    animation: aiGlowRotate 4s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

@keyframes aiGlowRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.service-card-compact::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.95), rgba(26, 31, 77, 0.95));
    border-radius: 22px;
    z-index: 0;
}

.service-card-compact:hover::before {
    opacity: 1;
}

.service-card-compact:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(102, 126, 234, 0.4);
    border-color: #667eea;
}

.service-card-compact > * {
    position: relative;
    z-index: 1;
}

/* AI Icon with Pulse - GenAI Style */
.service-icon-compact {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2rem;
    color: white;
    transition: all 0.5s ease;
    position: relative;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.service-icon-compact::before {
    content: '';
    position: absolute;
    inset: -5px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 24px;
    opacity: 0.3;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0; }
}

.service-card-compact:hover .service-icon-compact {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

.service-title-compact {
    font-size: 1.3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    transition: all 0.4s ease;
}

.service-card-compact:hover .service-title-compact {
    background: linear-gradient(135deg, #667eea, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-desc-compact {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    font-size: 0.9rem;
    margin-bottom: 20px;
    flex-grow: 1;
    transition: color 0.4s ease;
}

.service-card-compact:hover .service-desc-compact {
    color: rgba(255, 255, 255, 0.85);
}

.service-link-compact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #667eea;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px 0;
    border-top: 1px solid rgba(102, 126, 234, 0.2);
    margin-top: auto;
}

.service-link-compact i {
    transition: transform 0.3s ease;
}

.service-card-compact:hover .service-link-compact {
    color: #f093fb;
    border-top-color: rgba(240, 147, 251, 0.3);
}

.service-link-compact:hover i {
    transform: translateX(8px);
}

/* Right Side - Vertical Images with AI Theme */
.services-images-right {
    position: relative;
    height: 700px;
}

.service-image-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.service-image-item {
    position: absolute;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 4px solid rgba(102, 126, 234, 0.3);
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.8), rgba(26, 31, 77, 0.8));
}

/* AI Scanning Effect */
.service-image-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.3), transparent);
    z-index: 5;
    animation: aiScan 3s ease-in-out infinite;
}

@keyframes aiScan {
    0% { left: -100%; }
    100% { left: 200%; }
}

.service-image-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(240, 147, 251, 0.2));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.service-image-item:hover::after {
    opacity: 1;
}

.service-image-item:hover {
    transform: scale(1.1) rotate(0deg) !important;
    box-shadow: 0 40px 100px rgba(102, 126, 234, 0.6);
    z-index: 10 !important;
    border-color: #667eea;
}

.service-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

.service-image-item:hover img {
    transform: scale(1.15);
    filter: brightness(1) contrast(1.2);
}

.service-image-item:nth-child(1) {
    width: 75%;
    height: 50%;
    top: 0;
    left: 0;
    z-index: 3;
    transform: rotate(-5deg);
}

.service-image-item:nth-child(2) {
    width: 70%;
    height: 48%;
    top: 40%;
    right: 0;
    z-index: 2;
    transform: rotate(4deg);
}

.service-image-item:nth-child(3) {
    width: 80%;
    height: 48%;
    bottom: 0;
    left: 5%;
    z-index: 1;
    transform: rotate(-3deg);
}

/* AI Tech Rings */
.ai-tech-ring {
    position: absolute;
    border: 3px solid rgba(102, 126, 234, 0.2);
    border-radius: 50%;
    animation: ringRotate 20s linear infinite;
}

.ai-tech-ring-1 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-top-color: #667eea;
    border-right-color: transparent;
}

.ai-tech-ring-2 {
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-bottom-color: #f093fb;
    border-left-color: transparent;
    animation-direction: reverse;
    animation-duration: 25s;
}

@keyframes ringRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Image Label Badges - AI Style */
.image-label-badge {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: rgba(10, 14, 39, 0.9);
    backdrop-filter: blur(15px);
    padding: 15px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s ease;
    border: 2px solid rgba(102, 126, 234, 0.3);
}

.service-image-item:hover .image-label-badge {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
    border-color: #667eea;
}

.image-label-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f4d 50%, #0f1438 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    transition: all 0.4s ease;
}

.service-image-item:hover .image-label-icon {
    transform: rotateY(360deg);
}

.image-label-text {
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    line-height: 1.4;
}

.section-badge {
    display: inline-block;
    /* background: linear-gradient(135deg, #0a0e27 0%, #1a1f4d 50%, #0f1438 100%); */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #393285 0%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: #6c757d;
    font-size: 1.15rem;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Modern Service Cards */
.ai-service-card {
    background: white;
    border-radius: 20px;
    padding: 45px 35px;
    box-shadow: 0 10px 40px rgba(57, 50, 133, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    border: 2px solid #f0f0f0;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.ai-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f4d 50%, #0f1438 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.ai-service-card:hover::before {
    opacity: 1;
}

.ai-service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(102, 126, 234, 0.3);
    border-color: #667eea;
}

.ai-service-card > * {
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.ai-service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
    color: #667eea;
    transition: all 0.4s ease;
    border: 2px solid rgba(102, 126, 234, 0.2);
}

.ai-service-card:hover .ai-service-icon {
    background: white;
    color: #667eea;
    transform: rotateY(360deg);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.ai-service-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #393285;
    margin-bottom: 15px;
    transition: color 0.4s ease;
}

.ai-service-card:hover .ai-service-title {
    color: white;
}

.ai-service-description {
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 0.95rem;
    transition: color 0.4s ease;
}

.ai-service-card:hover .ai-service-description {
    color: rgba(255, 255, 255, 0.9);
}

.ai-service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ai-service-features li {
    padding: 10px 0;
    color: #5a6c7d;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.4s ease;
}

.ai-service-card:hover .ai-service-features li {
    color: rgba(255, 255, 255, 0.9);
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.ai-service-features li:last-child {
    border-bottom: none;
}

.ai-service-features li i {
    color: #667eea;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.ai-service-card:hover .ai-service-features li i {
    color: white;
    transform: scale(1.2);
}

.ai-service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #667eea;
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: 20px;
    text-decoration: none;
    transition: all 0.4s ease;
}

.ai-service-card:hover .ai-service-link {
    color: white;
}

.ai-service-link i {
    transition: transform 0.3s ease;
}

.ai-service-link:hover i {
    transform: translateX(5px);
}

/* Process Section */
.ai-process-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

/* Clean Section Header */
.ai-process-section .section-badge {
    display: inline-block;
    padding: 10px 24px;
   
    color: #16183d;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 20px;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.ai-process-section .section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.ai-process-section .section-subtitle {
    font-size: 1.15rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Professional Process Layout */
.process-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

/* Horizontal Timeline */
.process-timeline-line {
    position: absolute;
    top: 60px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #e2e8f0;
    z-index: 0;
}

.process-timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transition: width 1s ease;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

/* Professional Process Card */
.process-step {
    position: relative;
    padding: 0;
    background: transparent;
    transition: all 0.4s ease;
}

.process-step-inner {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 40px 30px 35px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.process-step-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.process-step:hover .process-step-inner::before {
    transform: scaleX(1);
}

.process-step:hover .process-step-inner {
    border-color: #667eea;
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.15);
    transform: translateY(-8px);
}

/* Step Header with Number */
.process-step-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 25px;
}

.process-icon-wrapper {
    position: relative;
}

.process-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f4d 50%, #0f1438 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    transition: all 0.4s ease;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.25);
}

.process-step:hover .process-icon {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.35);
}

.process-number-badge {
    font-size: 3.5rem;
    font-weight: 900;
    color: #f1f5f9;
    line-height: 1;
    font-family: 'Arial', sans-serif;
}

.process-step:hover .process-number-badge {
    color: rgba(102, 126, 234, 0.15);
}

/* Content */
.process-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
    line-height: 1.4;
}

.process-description {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Professional Divider */
.process-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
    margin: 20px 0;
}

/* Feature List - Professional */
.process-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.process-features li {
    padding: 10px 0;
    font-size: 0.9rem;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.process-features li:last-child {
    border-bottom: none;
}

.process-features li i {
    color: #667eea;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.process-features li:hover {
    color: #667eea;
    padding-left: 8px;
}

/* Connector Dots */
.process-connector {
    position: absolute;
    top: 60px;
    right: -15px;
    width: 30px;
    height: 30px;
    background: white;
    border: 3px solid #667eea;
    border-radius: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-connector::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #667eea;
    border-radius: 50%;
}

.process-step:last-child .process-connector {
    display: none;
}

/* FAQ Section - White Background */
.ai-faq-section {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
}

.ai-faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.ai-faq-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f4d 50%, #0f1438 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.ai-faq-icon-wrapper i {
    font-size: 32px;
    color: white;
}

.ai-faq-title {
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.2;
    margin-bottom: 16px;
}

.ai-gradient-text {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f4d 50%, #0f1438 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-faq-subtitle {
    font-size: 16px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.ai-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.ai-faq-item {
    border-bottom: 1px solid #e2e8f0;
    padding: 0;
}

.ai-faq-item:nth-child(odd) { padding-right: 40px; }
.ai-faq-item:nth-child(even) { padding-left: 40px; border-left: 1px solid #e2e8f0; }

.ai-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 26px 0;
    cursor: pointer;
}

.ai-faq-question span {
    font-size: 15px;
    font-weight: 600;
    color: #475569;
    line-height: 1.5;
    transition: color 0.3s ease;
    flex: 1;
}

.ai-faq-item.active .ai-faq-question span { color: #667eea; }

.ai-faq-toggle {
    width: 36px; height: 36px;
    flex-shrink: 0;
    border-radius: 50%;
    background: none;
    border: 1.5px solid #cbd5e1;
    color: #64748b;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.ai-faq-item.active .ai-faq-toggle {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f4d 50%, #0f1438 100%);
    border-color: #667eea;
    color: white;
    transform: rotate(180deg);
}

.ai-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease, padding 0.3s ease;
}

.ai-faq-item.active .ai-faq-answer {
    max-height: 300px;
    padding-bottom: 24px;
}

.ai-faq-answer p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.75;
    margin: 0;
}

.ai-faq-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.ai-faq-icon i {
    font-size: 18px;
    color: #667eea;
}

.ai-faq-item.active .ai-faq-icon {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f4d 50%, #0f1438 100%);
    border-color: #667eea;
}

.ai-faq-item.active .ai-faq-icon i {
    color: white;
}

.ai-faq-toggle i {
    transition: transform 0.3s ease;
}

.ai-faq-item.active .ai-faq-toggle i {
    transform: rotate(45deg);
}

@media (max-width: 768px) {
    .ai-faq-grid {
        grid-template-columns: 1fr;
    }
    
    .ai-faq-item:nth-child(odd),
    .ai-faq-item:nth-child(even) {
        padding: 0;
        border-left: none;
    }
    
    .ai-faq-container {
        padding: 0 20px;
    }
    
    .ai-faq-section {
        padding: 80px 0;
    }
}

/* CTA Banner Section - White Background Premium Design */
.ai-cta-banner {
    padding: 0;
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

/* Background Decorations */
.cta-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.cta-bg-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.03), rgba(118, 75, 162, 0.03));
}

.cta-bg-circle-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
    animation: ctaBgFloat 20s ease-in-out infinite;
}

.cta-bg-circle-2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -100px;
    animation: ctaBgFloat 25s ease-in-out infinite reverse;
}

@keyframes ctaBgFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.05); }
}

.cta-bg-dots {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(102, 126, 234, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
}

.cta-banner-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

/* Left Content */
.cta-banner-content {
    color: #1a1a2e;
}

.cta-banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border: 2px solid #667eea;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.15);
    animation: ctaBadgePulse 3s ease-in-out infinite;
}

.cta-banner-badge i {
    font-size: 1rem;
    color: #667eea;
    animation: ctaBoltFlash 2s ease-in-out infinite;
}

@keyframes ctaBadgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(102, 126, 234, 0); }
}

@keyframes ctaBoltFlash {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.cta-banner-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #1a1a2e;
    line-height: 1.2;
    margin-bottom: 25px;
}

.cta-banner-title span {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f4d 50%, #0f1438 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-banner-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 40px;
    max-width: 90%;
}

/* Buttons */
.cta-banner-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.cta-banner-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px 18px 35px;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f4d 50%, #0f1438 100%);
    color: white;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.cta-banner-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.cta-banner-btn-primary:hover::before {
    left: 100%;
}

.cta-banner-btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.4);
}

.btn-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.btn-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    line-height: 1.2;
}

.btn-text span:first-child {
    font-weight: 800;
    font-size: 1.05rem;
}

.btn-subtext {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.9;
}

.cta-banner-btn-primary > i:last-child {
    transition: transform 0.3s ease;
    font-size: 1.1rem;
    margin-left: auto;
}

.cta-banner-btn-primary:hover > i:last-child {
    transform: translateX(6px);
}

.cta-banner-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 35px;
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
    border-radius: 16px;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s ease;
}

.cta-banner-btn-secondary .btn-icon {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
}

.cta-banner-btn-secondary:hover {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f4d 50%, #0f1438 100%);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.cta-banner-btn-secondary:hover .btn-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Stats */
.cta-banner-stats {
    display: flex;
    align-items: center;
    gap: 30px;
}

.cta-stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.cta-stat-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-stat:hover .cta-stat-icon {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f4d 50%, #0f1438 100%);
    color: white;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.cta-stat-number {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f4d 50%, #0f1438 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.cta-stat-label {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 600;
}

.cta-stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, #e2e8f0, transparent);
}

/* Right Visual */
.cta-banner-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-visual-card {
    position: relative;
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.15);
    animation: ctaVisualFloat 6s ease-in-out infinite;
    padding: 20px;
}

@keyframes ctaVisualFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.cta-visual-main-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-visual-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 15px 40px rgba(102, 126, 234, 0.25));
    transition: transform 0.4s ease;
}

.cta-visual-card:hover .cta-visual-main-image img {
    transform: scale(1.05);
}

/* Rotating Rings */
.cta-visual-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 520px;
    height: 520px;
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 50%;
    animation: ctaRingRotate 15s linear infinite;
}

.cta-visual-ring::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: #667eea;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.8);
}

.cta-visual-ring-2 {
    width: 570px;
    height: 570px;
    animation-direction: reverse;
    animation-duration: 20s;
    border-style: dashed;
}

@keyframes ctaRingRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Floating Badges */
.cta-float-badge {
    position: absolute;
    background: white;
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 12px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.15);
    font-size: 0.85rem;
    font-weight: 700;
    color: #667eea;
    animation: ctaBadgeFloat 4s ease-in-out infinite;
    z-index: 10;
}

.cta-float-badge i {
    font-size: 1rem;
}

.cta-float-badge-1 {
    top: 20px;
    right: -20px;
    animation-delay: 0s;
}

.cta-float-badge-2 {
    bottom: 40px;
    left: -30px;
    animation-delay: -1.5s;
}

.cta-float-badge-3 {
    top: 50%;
    right: -40px;
    animation-delay: -3s;
}

@keyframes ctaBadgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Responsive Design */

/* Large Desktop */
@media (max-width: 1400px) {
    .cta-visual-card {
        width: 420px;
        height: 420px;
    }
    
    .cta-visual-ring {
        width: 490px;
        height: 490px;
    }
    
    .cta-visual-ring-2 {
        width: 540px;
        height: 540px;
    }
}

/* Medium Desktop / Tablet Landscape */
@media (max-width: 1200px) {
    .cta-visual-card {
        width: 380px;
        height: 380px;
    }
    
    .cta-visual-ring {
        width: 450px;
        height: 450px;
    }
    
    .cta-visual-ring-2 {
        width: 500px;
        height: 500px;
    }
}

/* Tablet Portrait */
@media (max-width: 1024px) {
    .cta-banner-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 60px 0;
    }
    
    .cta-banner-visual {
        order: -1;
    }
    
    .cta-visual-card {
        width: 350px;
        height: 350px;
        padding: 25px;
    }
    
    .cta-visual-ring {
        width: 420px;
        height: 420px;
    }
    
    .cta-visual-ring-2 {
        width: 470px;
        height: 470px;
    }
    
    .cta-float-badge {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
    
    .cta-float-badge-1 {
        right: -10px;
    }
    
    .cta-float-badge-2 {
        left: -10px;
    }
    
    .cta-float-badge-3 {
        right: -20px;
    }
    
    .cta-banner-title {
        font-size: 2.8rem;
    }
}

/* Large Mobile / Small Tablet */
@media (max-width: 768px) {
    .cta-banner-grid {
        padding: 50px 0;
        gap: 40px;
    }
    
    .cta-banner-title {
        font-size: 2.2rem;
    }
    
    .cta-banner-description {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .cta-banner-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-banner-btn-primary,
    .cta-banner-btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 16px 25px;
    }
    
    .btn-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .btn-subtext {
        font-size: 0.7rem;
    }
    
    .cta-banner-stats {
        display: none !important; /* Hide stats on mobile */
    }
    
    .cta-visual-card {
        width: 320px;
        height: 320px;
        padding: 20px;
    }
    
    .cta-visual-ring {
        width: 390px;
        height: 390px;
    }
    
    .cta-visual-ring-2 {
        width: 440px;
        height: 440px;
    }
}

/* Medium Mobile */
@media (max-width: 576px) {
    .cta-banner-grid {
        padding: 40px 0;
        gap: 35px;
    }
    
    .cta-banner-title {
        font-size: 1.9rem;
    }
    
    .cta-banner-description {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .cta-banner-badge {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .cta-banner-btn-primary,
    .cta-banner-btn-secondary {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    
    .btn-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    
    .btn-subtext {
        font-size: 0.65rem;
    }
    
    .cta-stat-number {
        font-size: 1.7rem;
    }
    
    .cta-stat-label {
        font-size: 0.8rem;
    }
    
    .cta-stat-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .cta-visual-card {
        width: 280px;
        height: 280px;
        padding: 18px;
    }
    
    .cta-visual-ring,
    .cta-visual-ring-2 {
        display: none;
    }
    
    .cta-float-badge {
        display: none;
    }
    
    .cta-bg-circle-1,
    .cta-bg-circle-2 {
        display: none;
    }
}

/* Small Mobile */
@media (max-width: 400px) {
    .container {
        padding: 0 15px;
    }
    
    .cta-banner-grid {
        padding: 35px 0;
        gap: 30px;
    }
    
    .cta-banner-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .cta-banner-description {
        font-size: 0.9rem;
    }
    
    .cta-banner-badge {
        padding: 8px 16px;
        font-size: 0.75rem;
        margin-bottom: 20px;
    }
    
    .cta-banner-btn-primary,
    .cta-banner-btn-secondary {
        padding: 13px 18px;
        font-size: 0.9rem;
        gap: 12px;
    }
    
    .btn-icon {
        width: 35px;
        height: 35px;
        font-size: 0.95rem;
    }
    
    .cta-stat-number {
        font-size: 1.5rem;
    }
    
    .cta-stat-label {
        font-size: 0.75rem;
    }
    
    .cta-stat-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .cta-visual-card {
        width: 250px;
        height: 250px;
        padding: 15px;
    }
}

/* Subtle Background Pattern */
.ai-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(118, 75, 162, 0.03) 0%, transparent 50%);
}

/* Floating Shapes */
.cta-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    border-radius: 50%;
}

.cta-shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
    animation: floatShape 15s ease-in-out infinite;
}

.cta-shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
    animation: floatShape 12s ease-in-out infinite reverse;
}

.cta-shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 20%;
    animation: floatShape 18s ease-in-out infinite;
}

@keyframes floatShape {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Icon with Pulse */
.cta-icon-wrapper {
    margin-bottom: 40px;
}

.cta-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f4d 50%, #0f1438 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2.5rem;
    color: white;
    position: relative;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
    animation: ctaIconPulse 3s ease-in-out infinite;
}

@keyframes ctaIconPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 20px 50px rgba(102, 126, 234, 0.5);
    }
}

.cta-icon::before {
    content: '';
    position: absolute;
    inset: -10px;
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 50%;
    animation: ctaRingExpand 3s ease-in-out infinite;
}

@keyframes ctaRingExpand {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0; }
}

/* Title */
.cta-title {
    font-size: 3.2rem;
    font-weight: 900;
    color: #1a1a2e;
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn-cta-primary {
    padding: 20px 50px;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f4d 50%, #0f1438 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-cta-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-cta-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-cta-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.4);
}

.btn-cta-primary i {
    transition: transform 0.3s ease;
}

.btn-cta-primary:hover i {
    transform: translateX(5px);
}

.btn-cta-secondary {
    padding: 20px 50px;
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s ease;
}

.btn-cta-secondary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
}

.btn-cta-secondary i {
    transition: transform 0.3s ease;
}

.btn-cta-secondary:hover i {
    transform: rotate(360deg);
}

/* Trust Badges */
.cta-trust {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.cta-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #475569;
    font-size: 0.95rem;
    font-weight: 600;
}

.cta-trust-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #667eea;
}

@media (max-width: 768px) {
    .ai-cta-section {
        padding: 80px 0;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .cta-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 18px 40px;
        font-size: 1rem;
        justify-content: center;
    }
    
    .cta-trust {
        gap: 30px;
    }
    
    .cta-shape-1,
    .cta-shape-2,
    .cta-shape-3 {
        display: none;
    }
}

/* Industries Section - AI Futuristic Design */
.ai-industries-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f4d 40%, #0f1438 100%);
    position: relative;
    overflow: hidden;
}

/* Neural Network Background */
.ai-industries-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(118, 75, 162, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(240, 147, 251, 0.05) 0%, transparent 60%);
    z-index: 0;
}

/* Floating AI Orbs */
.industry-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.3), transparent);
    filter: blur(40px);
    animation: orbFloat 15s ease-in-out infinite;
    z-index: 0;
}

.industry-orb-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.industry-orb-2 {
    width: 250px;
    height: 250px;
    top: 60%;
    right: 10%;
    animation-delay: -5s;
}

.industry-orb-3 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 30%;
    animation-delay: -10s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

/* Section Title - AI Style */
.ai-industries-section .section-title {
    background: linear-gradient(135deg, #fff, #a5b4fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.ai-industries-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1;
}

.ai-industries-section .section-badge {
    
    border: 1px solid rgba(102, 126, 234, 0.4);
    position: relative;
    z-index: 1;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 70px;
    position: relative;
    z-index: 1;
}

/* Holographic Industry Card */
.industry-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 40px 30px;
    border: 1px solid rgba(102, 126, 234, 0.2);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Rotating Conic Gradient Border */
.industry-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent,
        rgba(102, 126, 234, 0.5),
        transparent,
        rgba(118, 75, 162, 0.5),
        transparent,
        rgba(240, 147, 251, 0.5),
        transparent
    );
    animation: holoRotate 6s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.industry-card:hover::before {
    opacity: 1;
}

@keyframes holoRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Inner Card Background */
.industry-card::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.95), rgba(26, 31, 77, 0.95));
    border-radius: 22px;
    z-index: 0;
}

.industry-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(102, 126, 234, 0.3),
        0 0 100px rgba(102, 126, 234, 0.1);
    border-color: rgba(102, 126, 234, 0.5);
}

.industry-card > * {
    position: relative;
    z-index: 1;
}

/* Neural Network Icon */
.industry-icon-wrapper {
    position: relative;
    margin-bottom: 25px;
    display: inline-block;
}

.industry-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    border: 2px solid rgba(102, 126, 234, 0.4);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #a5b4fc;
    transition: all 0.5s ease;
    position: relative;
    backdrop-filter: blur(5px);
}

/* Tech Circuit Lines */
.industry-icon::before,
.industry-icon::after {
    content: '';
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.6), transparent);
}

.industry-icon::before {
    width: 100%;
    height: 1px;
    top: 50%;
    left: -30px;
    animation: circuitFlow 2s ease-in-out infinite;
}

.industry-icon::after {
    width: 1px;
    height: 100%;
    left: 50%;
    top: -30px;
    animation: circuitFlow 2s ease-in-out infinite reverse;
}

@keyframes circuitFlow {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 1; transform: scale(1); }
}

.industry-card:hover .industry-icon {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f4d 50%, #0f1438 100%);
    color: white;
    border-color: #667eea;
    transform: rotateY(360deg);
    box-shadow: 
        0 10px 30px rgba(102, 126, 234, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

/* AI Node Dots */
.industry-node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #667eea;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(102, 126, 234, 0.8);
    animation: nodePulse 2s ease-in-out infinite;
}

.industry-node-1 {
    top: -4px;
    right: -4px;
    animation-delay: 0s;
}

.industry-node-2 {
    bottom: -4px;
    left: -4px;
    animation-delay: -1s;
}

@keyframes nodePulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

.industry-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    transition: all 0.4s ease;
}

.industry-card:hover .industry-title {
    background: linear-gradient(135deg, #a5b4fc, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.industry-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 0.9rem;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Holographic Divider */
.industry-divider {
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(102, 126, 234, 0.5), 
        rgba(118, 75, 162, 0.5), 
        transparent
    );
    margin: 20px 0;
    position: relative;
}

.industry-divider::before {
    content: '◆';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #667eea;
    font-size: 0.6rem;
    background: rgba(10, 14, 39, 0.95);
    padding: 0 10px;
}

/* Feature List - AI Style */
.industry-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.industry-features li {
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
}

.industry-features li:last-child {
    border-bottom: none;
}

.industry-features li i {
    width: 22px;
    height: 22px;
    background: rgba(102, 126, 234, 0.15);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: #a5b4fc;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
}

.industry-features li i::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 8px;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f4d 50%, #0f1438 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.industry-card:hover .industry-features li i {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f4d 50%, #0f1438 100%);
    border-color: transparent;
    color: white;
    box-shadow: 0 0 15px rgba(102, 126, 234, 0.6);
}

/* AI CTA Link */
.industry-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #a5b4fc;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    padding-top: 20px;
    border-top: 1px solid rgba(102, 126, 234, 0.2);
    margin-top: auto;
    position: relative;
}

.industry-cta::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transition: width 0.4s ease;
}

.industry-cta:hover::before {
    width: 100%;
}

.industry-cta i {
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.industry-card:hover .industry-cta {
    color: #f093fb;
}

.industry-cta:hover i {
    transform: translateX(8px);
    color: #f093fb;
}

@media (max-width: 1024px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ai-industries-section {
        padding: 80px 0;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .industry-card {
        padding: 35px 25px;
    }
}

/* About AI Consulting Section - Premium Redesign */
.ai-about-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

/* Animated Background */
.ai-about-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.ai-about-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.ai-about-gradient-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #667eea, transparent);
    top: -200px;
    left: -100px;
    animation: orbFloat1 20s ease-in-out infinite;
}

.ai-about-gradient-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #764ba2, transparent);
    bottom: -150px;
    right: -100px;
    animation: orbFloat2 25s ease-in-out infinite;
}

.ai-about-gradient-orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #f093fb, transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orbFloat3 30s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, 30px) scale(1.1); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-40px, -50px) scale(1.15); }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
}

/* Header Section */
.ai-about-header-section {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 70px;
    position: relative;
    z-index: 1;
}

.ai-about-header-section .section-badge {
    display: inline-block;
    margin-bottom: 20px;
}

.ai-about-main-description {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #64748b;
    margin-top: 25px;
}

/* Benefits Grid */
.ai-about-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.ai-about-benefit-card {
    background: white;
    border-radius: 24px;
    padding: 35px 30px;
    border: 2px solid #f1f5f9;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.ai-about-benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.ai-about-benefit-card:hover::before {
    transform: scaleX(1);
}

.ai-about-benefit-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.3);
}

.ai-about-benefit-card.featured {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f4d 50%, #0f1438 100%);
    border-color: transparent;
    color: white;
}

.benefit-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f093fb;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.benefit-card-header {
    margin-bottom: 20px;
}

.benefit-icon-wrapper {
    position: relative;
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
}

.benefit-icon {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f4d 50%, #0f1438 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.ai-about-benefit-card.featured .benefit-icon {
    background: white;
    color: #667eea;
}

.benefic-icon-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 24px;
    animation: benefitRingPulse 3s ease-in-out infinite;
}

@keyframes benefitRingPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0; }
}

.ai-about-benefit-card:hover .benefit-icon {
    transform: rotateY(360deg) scale(1.1);
}

.benefit-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0;
}

.ai-about-benefit-card.featured .benefit-title {
    color: white;
}

.benefit-description {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
}

.ai-about-benefit-card.featured .benefit-description {
    color: rgba(255, 255, 255, 0.9);
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 0.9rem;
    color: #64748b;
    border-top: 1px solid #f1f5f9;
}

.ai-about-benefit-card.featured .benefit-list li {
    color: rgba(255, 255, 255, 0.9);
    border-top-color: rgba(255, 255, 255, 0.2);
}

.benefit-list li i {
    color: #667eea;
    font-size: 0.8rem;
}

.ai-about-benefit-card.featured .benefit-list li i {
    color: white;
}

/* Stats Section */
.ai-about-stats-visual {
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}

.ai-about-stats-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 50px;
    background: white;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.1);
    border: 2px solid #f1f5f9;
}

.ai-about-stat-item {
    text-align: center;
}

.stat-circle {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
}

.stat-circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.stat-circle-bg {
    fill: none;
    stroke: #f1f5f9;
    stroke-width: 8;
}

.stat-circle-progress {
    fill: none;
    stroke: url(#purpleGradient);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 283;
    transition: stroke-dashoffset 1.5s ease;
}

.stat-circle-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.stat-circle-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f4d 50%, #0f1438 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-item-label {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
}

/* CTA Section */
.ai-about-cta-section {
    position: relative;
    z-index: 1;
}

.ai-about-cta-card {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f4d 50%, #0f1438 100%);
    border-radius: 30px;
    padding: 50px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.ai-about-cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-card-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.cta-card-title {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin: 0 0 15px;
}

.cta-card-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.cta-card-action {
    position: relative;
    z-index: 1;
}

.cta-card-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    background: white;
    color: #667eea;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-card-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cta-card-button i {
    font-size: 1.2rem;
}

/* Technologies Section */
.ai-technologies-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f4d 50%, #0f1438 100%);
    position: relative;
    overflow: hidden;
}

/* Technologies Section Title - White */
.ai-technologies-section .section-title {
    color: #ffffff;
}

.ai-technologies-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.tech-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(102, 126, 234, 0.2);
    text-align: center;
    transition: all 0.4s ease;
}

.tech-card:hover {
    transform: translateY(-10px);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
}

.tech-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.2rem;
    color: #a5b4fc;
    transition: all 0.4s ease;
}

.tech-card:hover .tech-icon {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f4d 50%, #0f1438 100%);
    color: white;
    transform: rotateY(360deg);
}

.tech-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.tech-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

/* Testimonials Section */
.ai-testimonials-section {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    border: 2px solid #f1f5f9;
    transition: all 0.4s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
}

.testimonial-card.featured {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f4d 50%, #0f1438 100%);
    border-color: transparent;
    color: white;
}

.testimonial-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #f093fb;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-card.featured .testimonial-text {
    color: rgba(255, 255, 255, 0.95);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f4d 50%, #0f1438 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}

.testimonial-card.featured .testimonial-avatar {
    background: white;
    color: #667eea;
}

.testimonial-info h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.testimonial-card.featured .testimonial-info h4 {
    color: white;
}

.testimonial-info p {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
}

.testimonial-card.featured .testimonial-info p {
    color: rgba(255, 255, 255, 0.8);
}

/* Stats Section */
.ai-stats-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f4d 50%, #0f1438 100%);
    position: relative;
    overflow: hidden;
}

.ai-stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

/* Benefits Section - Professional Design */
.ai-benefits-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f4d 50%, #0f1438 100%);
    position: relative;
    overflow: hidden;
}

/* Section Header */
.benefits-header {
    text-align: center;
    margin-bottom: 80px;
}

.benefits-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.ai-benefits-section .section-badge {
    background: linear-gradient(135deg, #667eea, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    margin-bottom: 20px;
}

.ai-benefits-section .section-title {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 2.8rem;
}

.ai-benefits-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

/* Benefits Layout */
.benefits-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    align-items: start;
}

/* Main Feature Card */
.benefits-main {
    position: sticky;
    top: 100px;
}

.benefit-main-card {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 30px;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.benefit-main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
}

.benefit-main-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 3rem;
    color: white;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.benefit-main-card h3 {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.benefit-main-card > p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.benefit-main-highlights {
    display: grid;
    gap: 15px;
    margin-bottom: 35px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(102, 126, 234, 0.15);
}

.highlight-item i {
    color: #667eea;
    font-size: 1rem;
    flex-shrink: 0;
}

.highlight-item span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    line-height: 1.5;
}

.benefit-main-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-top: 30px;
    border-top: 2px solid rgba(102, 126, 234, 0.2);
}

.main-stat {
    text-align: center;
}

.main-stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
}

.main-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Benefits List */
.benefits-list {
    display: grid;
    gap: 25px;
}

.benefit-item {
    display: flex;
    gap: 25px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(102, 126, 234, 0.15);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

.benefit-item-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #667eea;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.benefit-item:hover .benefit-item-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-color: transparent;
    transform: rotateY(360deg);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.benefit-item-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.benefit-item-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .ai-hero-section {
        padding: 90px 0 60px;
        min-height: auto;
    }
    
    .ai-hero-wrapper {
        max-width: 100%;
    }
    
    .ai-hero-title {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
        margin-bottom: 20px !important;
    }
    
    .ai-hero-subtitle {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        margin-bottom: 25px !important;
    }
    
    .ai-hero-badge {
        font-size: 0.7rem !important;
        padding: 8px 16px !important;
        margin-bottom: 20px !important;
    }
    
    /* Center buttons on mobile */
    .ai-hero-cta {
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        gap: 12px !important;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 14px 24px !important;
        font-size: 0.9rem !important;
        width: 100% !important;
        max-width: 320px !important;
        justify-content: center !important;
    }
    
    .client-logos-grid {
        gap: 15px;
    }
    
    .client-logo-item {
        padding: 10px 15px;
        font-size: 0.8rem;
    }
    
    .section-title,
    .cta-title {
        font-size: 1.8rem !important;
    }
    
    .services-layout-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .services-images-right {
        height: 450px;
        order: -1;
    }
    
    .ai-tech-ring {
        display: none;
    }
    
    .services-grid-left {
        gap: 20px;
        grid-template-columns: 1fr !important; /* Single column on mobile */
    }
    
    .service-card-compact {
        padding: 30px 25px;
    }
    
    .service-icon-compact {
        width: 60px;
        height: 60px;
        font-size: 1.7rem;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .process-timeline-line {
        display: none;
    }
    
    .process-connector {
        display: none !important;
    }
    
    .process-step-inner {
        padding: 35px 25px 30px;
    }
    
    .process-icon {
        width: 65px;
        height: 65px;
        font-size: 1.6rem;
    }
    
    .process-number-badge {
        font-size: 2.5rem;
    }
    
    .ai-process-section .section-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-item {
        border-right: none;
        border-bottom: 1px solid #e9ecef;
    }
    
    .stat-item:last-child {
        border-bottom: none;
    }
}

/* ========================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   ======================================== */

/* Tablet Landscape (1024px) */
@media (max-width: 1024px) {
    /* About Section */
    .ai-about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .ai-about-visual {
        order: -1;
    }
    
    .ai-about-image {
        height: 400px;
    }
    
    /* Benefits Grid (Why Choose Us) */
    .benefits-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .benefits-main {
        position: static;
    }
    
    .benefit-main-card {
        padding: 40px 30px;
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    /* Stats Grid */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    /* Technologies */
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet Portrait (768px) */
@media (max-width: 768px) {
    /* Global */
    .container {
        padding: 0 20px;
    }
    
    .section-title {
        font-size: 2.2rem !important;
    }
    
    .section-subtitle {
        font-size: 1rem !important;
    }
    
    /* About Section */
    .ai-about-section {
        padding: 80px 0;
    }
    
    .ai-about-benefits-grid {
        grid-template-columns: 1fr !important; /* Single column on mobile */
        gap: 20px !important;
    }
    
    .ai-about-stats-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .ai-about-stat-divider {
        width: 100%;
        height: 1px;
    }
    
    .ai-about-features {
        gap: 15px;
    }
    
    .ai-about-feature {
        padding: 20px;
    }
    
    .ai-about-float-card {
        display: none;
    }
    
    .ai-about-ring {
        display: none;
    }
    
    /* Technologies Section */
    .ai-technologies-section {
        padding: 80px 0;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Industries Section */
    .ai-industries-section {
        padding: 80px 0;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Testimonials */
    .ai-testimonials-section {
        padding: 80px 0;
    }
    
    .testimonials-grid {
        gap: 20px;
    }
    
    /* Stats Section */
    .ai-stats-section {
        padding: 80px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    /* Benefits (Why Choose Us) */
    .ai-benefits-section {
        padding: 80px 0;
    }
    
    .benefit-main-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .main-stat {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .benefit-item {
        padding: 25px;
    }
    
    .benefit-item-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    /* FAQ Section */
    .ai-faq-section {
        padding: 80px 0;
    }
    
    .ai-faq-container {
        padding: 0;
    }
}

/* Mobile Large (576px) */
@media (max-width: 576px) {
    /* Global */
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 1.8rem !important;
    }
    
    .section-subtitle {
        font-size: 0.95rem !important;
    }
    
    .section-badge {
        font-size: 0.75rem !important;
        padding: 8px 16px !important;
    }
    
    /* About Section */
    .ai-about-section {
        padding: 60px 0;
    }
    
    .ai-about-image {
        height: 300px;
    }
    
    .ai-about-stat-number {
        font-size: 1.8rem;
    }
    
    .ai-about-feature-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .ai-about-feature-content h4 {
        font-size: 1rem;
    }
    
    /* Technologies */
    .ai-technologies-section {
        padding: 60px 0;
    }
    
    .tech-card {
        padding: 30px 25px;
    }
    
    .tech-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    /* Industries */
    .ai-industries-section {
        padding: 60px 0;
    }
    
    .industry-card {
        padding: 30px 25px;
    }
    
    .industry-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
    
    /* Testimonials */
    .ai-testimonials-section {
        padding: 60px 0;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    /* Stats */
    .ai-stats-section {
        padding: 60px 0;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Benefits */
    .ai-benefits-section {
        padding: 60px 0;
    }
    
    .benefit-main-card {
        padding: 30px 25px;
    }
    
    .benefit-main-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .benefit-main-card h3 {
        font-size: 1.5rem;
    }
    
    .main-stat-number {
        font-size: 2rem;
    }
    
    .benefit-item {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
    
    .benefit-item-icon {
        width: 50px;
        height: 50px;
    }
    
    /* FAQ */
    .ai-faq-section {
        padding: 60px 0;
    }
    
    .ai-faq-question {
        padding: 18px 15px;
        font-size: 0.95rem;
    }
    
    .ai-faq-answer {
        padding: 0 15px 18px;
    }
}

/* Mobile Small (400px) */
@media (max-width: 400px) {
    /* Global */
    .section-title {
        font-size: 1.6rem !important;
    }
    
    /* About Section */
    .ai-about-image {
        height: 250px;
    }
    
    .ai-about-stats-row {
        padding: 20px;
    }
    
    /* Cards */
    .tech-card,
    .industry-card,
    .testimonial-card {
        padding: 25px 20px;
    }
    
    /* Benefits */
    .benefit-main-card {
        padding: 25px 20px;
    }
    
    .benefit-main-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .benefit-item {
        padding: 18px;
    }
    
    /* Stats */
    .stat-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
}
/* ==========================================
   AI Automation Process - Compact Single Screen Design
   ========================================== */

.ai-automation-process {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.process-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.process-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.process-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.process-subtitle {
    font-size: 1.05rem;
    color: #6b7280;
    line-height: 1.5;
}

/* Process Steps Grid */
.process-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 40px;
}

.process-step-item {
    position: relative;
}

/* Connector Arrow between cards */
.process-step-item:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #667eea;
    font-size: 1.5rem;
    font-weight: 700;
    z-index: 1;
}

.step-card {
    background: white;
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.15);
    border-color: #667eea;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.step-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.step-desc {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.step-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    flex-grow: 1;
}

.step-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0;
    color: #4b5563;
    font-size: 0.85rem;
}

.step-list li i {
    color: #10b981;
    font-size: 0.9rem;
}

.step-time {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: #f3f4f6;
    padding: 0.4rem 0.75rem;
    border-radius: 50px;
    color: #6b7280;
    font-weight: 600;
    font-size: 0.8rem;
    align-self: flex-start;
}

.step-time i {
    color: #667eea;
}

/* CTA Bar */
.process-cta-bar {
    background: white;
    border-radius: 16px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 2px solid rgba(102, 126, 234, 0.1);
}

.cta-bar-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 0.25rem 0;
}

.cta-bar-content p {
    font-size: 0.95rem;
    color: #6b7280;
    margin: 0;
}

.cta-bar-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.85rem 1.75rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    white-space: nowrap;
}

.cta-bar-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .process-steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .process-step-item:not(:last-child)::after {
        display: none;
    }
    
    .process-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .ai-automation-process {
        padding: 60px 0;
    }
    
    .process-title {
        font-size: 1.6rem;
    }
    
    .process-subtitle {
        font-size: 0.95rem;
    }
    
    .process-steps-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .step-card {
        padding: 1.5rem;
    }
    
    .process-cta-bar {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .cta-bar-button {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================
   AI Automation Use Cases by Industry
   ========================================== */

.ai-automation-use-cases {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.use-cases-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.use-cases-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.use-cases-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.use-cases-subtitle {
    font-size: 1.05rem;
    color: #6b7280;
    line-height: 1.5;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.use-case-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.use-case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.use-case-card:hover::before {
    transform: scaleX(1);
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.2);
}

.use-case-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
    color: #667eea;
    transition: all 0.3s ease;
}

.use-case-card:hover .use-case-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: scale(1.1);
}

.use-case-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.use-case-desc {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.use-case-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.use-case-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.45rem 0;
    color: #4b5563;
    font-size: 0.85rem;
}

.use-case-list li i {
    color: #10b981;
    font-size: 0.9rem;
}

.use-case-metric {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.metric-number {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.25rem;
}

.metric-text {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .use-cases-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .ai-automation-use-cases {
        padding: 60px 0;
    }
    
    .use-cases-title {
        font-size: 1.6rem;
    }
    
    .use-cases-subtitle {
        font-size: 0.95rem;
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .use-case-card {
        padding: 1.75rem;
    }
}

/* ============================================
   AI DEVELOPMENT - UNIQUE HERO SECTION
   ============================================ */

.ai-dev-hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.neural-network-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.3;
}

#neuralCanvasDev {
    width: 100%;
    height: 100%;
}

.ai-dev-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Badge Design */
.ai-dev-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    border: 2px solid rgba(102, 126, 234, 0.4);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: slideInLeft 0.8s ease;
}

.badge-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

.ai-dev-badge span {
    color: #667eea;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 1px;
}

/* Title */
.ai-dev-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: white;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.gradient-text {
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

/* Subtitle */
.ai-dev-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

/* Metrics Cards */
.ai-dev-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.metric-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 126, 234, 0.4);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.metric-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.metric-value {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* CTA Buttons */
.ai-dev-cta-group {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.ai-dev-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.ai-dev-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

.ai-dev-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.ai-dev-btn-secondary:hover {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.1);
    transform: translateY(-3px);
}

/* Trust Badges */
.ai-dev-trust-badges {
    display: flex;
    gap: 2rem;
    animation: fadeInUp 0.8s ease 1s both;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.trust-badge i {
    color: #667eea;
}

/* Code Editor Window */
.ai-dev-code-demo {
    position: relative;
    animation: slideInRight 0.8s ease 0.4s both;
}

.code-editor-window {
    background: #1e1e1e;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.editor-titlebar {
    background: #2d2d2d;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.titlebar-dots {
    display: flex;
    gap: 0.5rem;
}

.titlebar-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.titlebar-dots .red { background: #ff5f56; }
.titlebar-dots .yellow { background: #ffbd2e; }
.titlebar-dots .green { background: #27c93f; }

.titlebar-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.editor-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Code Sections */
.code-section {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.section-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.section-label i {
    color: #667eea;
}

.section-label.success {
    color: #4ec9b0;
}

.section-label.success i {
    color: #4ec9b0;
}

.problem-text {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
}

/* Code Content */
.code-content {
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    line-height: 1.8;
    color: #d4d4d4;
}

.code-line {
    display: flex;
    gap: 1rem;
    padding: 0.15rem 0;
}

.code-line.indent {
    padding-left: 1.5rem;
}

.line-number {
    color: #858585;
    min-width: 25px;
    text-align: right;
    user-select: none;
}

.code-keyword {
    color: #569cd6;
}

.code-comment {
    color: #6a9955;
    font-style: italic;
}

.code-number {
    color: #b5cea8;
}

.code-string {
    color: #ce9178;
}

/* Results Section */
.results-section {
    background: rgba(78, 201, 176, 0.05);
    border-color: rgba(78, 201, 176, 0.2);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.result-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.result-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
}

.result-item.warning {
    border-color: rgba(255, 189, 46, 0.3);
    background: rgba(255, 189, 46, 0.05);
}

.result-item.success {
    border-color: rgba(78, 201, 176, 0.3);
    background: rgba(78, 201, 176, 0.05);
}

.result-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.result-item.warning .result-icon {
    background: linear-gradient(135deg, #ffbd2e, #ff9f43);
}

.result-item.success .result-icon {
    background: linear-gradient(135deg, #4ec9b0, #38b2ac);
}

.result-content {
    flex: 1;
}

.result-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.result-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Insight Box */
.insight-box {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 10px;
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.insight-box i {
    color: #ffbd2e;
    font-size: 1.2rem;
    margin-top: 0.1rem;
}

.insight-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.5;
}

.insight-text strong {
    color: #667eea;
    font-weight: 700;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .ai-dev-hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .ai-dev-hero-title {
        font-size: 2.5rem;
    }
    
    .ai-dev-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .ai-dev-hero-section {
        padding: 100px 0 60px;
    }
    
    .ai-dev-hero-title {
        font-size: 2rem;
    }
    
    .ai-dev-metrics {
        grid-template-columns: 1fr;
    }
    
    .ai-dev-cta-group {
        flex-direction: column;
    }
    
    .ai-dev-trust-badges {
        flex-direction: column;
        gap: 1rem;
    }
    
    .code-editor-window {
        margin: 0 -1rem;
    }
}
