/* AI Automation Service Page Styles */

:root {
    --ai-dark-bg: #030d0a;
    --ai-accent: #00ffcc;
    --ai-accent-glow: rgba(0, 255, 204, 0.3);
    --ai-text-muted: #a0aec0;
}

.ai-hero-section {
    position: relative;
    background: radial-gradient(circle at center, #0a1f1a 0%, #030d0a 100%);
    padding: 40px 0;
    min-height: 45vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #ffffff;
}

.ai-hero-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.ai-welcome-badge {
    display: inline-block;
    padding: 5px 18px;
    border-radius: 30px;
    border: 1px solid rgba(0, 255, 204, 0.4);
    background: rgba(0, 255, 204, 0.05);
    color: var(--ai-accent);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.ai-hero-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 15px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.ai-hero-desc {
    font-size: 15px;
    color: var(--ai-text-muted);
    max-width: 600px;
    margin: 0 auto 25px;
    line-height: 1.6;
}

.ai-pills-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.ai-pill {
    padding: 8px 18px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    font-size: 13px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.ai-pill:hover {
    border-color: var(--ai-accent);
    background: rgba(0, 255, 204, 0.1);
}

.btn-ai-get-started {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: #ffffff;
    color: #030d0a;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-ai-get-started i {
    background: #030d0a;
    color: #ffffff;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12px;
}

.btn-ai-get-started:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 255, 204, 0.2);
    background: var(--ai-accent);
}

/* Robot Visuals */
.ai-robot-left {
    position: absolute;
    left: 40px;
    bottom: 5%;
    width: 160px;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.ai-robot-right {
    position: absolute;
    right: 40px;
    bottom: 5%;
    width: 160px;
    z-index: 1;
    animation: float 6s ease-in-out infinite reverse;
}

/* Floating Elements */
.ai-float-icon {
    position: absolute;
    z-index: 1;
    opacity: 0.6;
}

.icon-chip { top: 20%; left: 30%; width: 40px; }
.icon-bulb { top: 15%; right: 25%; width: 50px; }
.icon-ai { bottom: 25%; left: 20%; width: 45px; }
.icon-graph { bottom: 20%; right: 30%; width: 40px; }

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-15px) rotate(2deg); }
    66% { transform: translateY(5px) rotate(-1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes orbit {
    from { transform: rotate(0deg) translateX(100px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(100px) rotate(-360deg); }
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 10px var(--ai-accent-glow); }
    50% { box-shadow: 0 0 30px var(--ai-accent); }
    100% { box-shadow: 0 0 10px var(--ai-accent-glow); }
}

@keyframes scan-move {
    0% { top: -100%; }
    100% { top: 200%; }
}

.ai-scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(to bottom, transparent, var(--ai-accent), transparent);
    opacity: 0.3;
    pointer-events: none;
    z-index: 3;
    animation: scan-move 4s linear infinite;
}

.ai-orbit-node {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(0, 255, 204, 0.1);
    border: 1px solid var(--ai-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ai-accent);
    box-shadow: 0 0 15px var(--ai-accent-glow);
    z-index: 2;
}

.node-1 { animation: orbit 10s linear infinite; }
.node-2 { animation: orbit 12s linear infinite reverse; }
.node-3 { animation: orbit 15s linear infinite 2s; }

/* About Section */
.ai-about-section {
    padding: 80px 0;
    background: #ffffff;
    color: #1a202c;
    position: relative;
    overflow: hidden;
}

.ai-about-content {
    position: relative;
}

.ai-about-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.ai-about-visual {
    position: relative;
    max-width: 380px;
    margin: 0 auto;
}

.ai-main-img-wrap {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    background: #030d0a;
    animation: float 6s ease-in-out infinite;
}

.ai-main-img-wrap img {
    width: 100%;
    display: block;
}

.ai-floating-card {
    position: absolute;
    bottom: 40px;
    left: -20px;
    background: #ffffff;
    padding: 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    max-width: 250px;
    z-index: 2;
    animation: float 5s ease-in-out infinite reverse;
}

.ai-card-icon {
    width: 45px;
    height: 45px;
    background: #030d0a;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.ai-card-text strong {
    display: block;
    font-size: 20px;
    color: #1a202c;
}

.ai-card-text span {
    font-size: 13px;
    color: #718096;
}

/* About Content */
.ai-tag-red {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #e53e3e;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.ai-tag-red .dot {
    width: 6px;
    height: 6px;
    background: #e53e3e;
    border-radius: 50%;
}

.ai-about-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #030d0a;
}

.ai-about-desc {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 25px;
}

.ai-feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #edf2f7;
}

.ai-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ai-feat-icon {
    width: 40px;
    height: 40px;
    background: #fff5f5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e53e3e;
    font-size: 18px;
}

.ai-feat-text {
    font-size: 14px;
    font-weight: 700;
    color: #1a202c;
    line-height: 1.3;
}

.ai-checklist-about {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.ai-checklist-about li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #4a5568;
    font-size: 15px;
    font-weight: 500;
}

.ai-checklist-about li i {
    color: #e53e3e;
    font-size: 18px;
}

.btn-ai-red {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e53e3e;
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-ai-red:hover {
    background: #c53030;
    transform: translateY(-2px);
}

.ai-side-robot-new {
    position: absolute;
    right: -80px;
    bottom: -10px;
    width: 130px;
    z-index: 1;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

@media (max-width: 992px) {
    .ai-about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .ai-side-robot-new {
        display: none;
    }
}

.ai-reaching-hand-clean {
    position: absolute;
    right: -10px;
    bottom: -10px;
    width: 180px;
    opacity: 0.8;
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: multiply;
    filter: contrast(1.1) brightness(1.1);
}

@media (max-width: 992px) {
    .ai-transform-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .ai-reaching-hand-clean {
        display: none;
    }
}

.btn-ai-gradient {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #7c3aed 0%, #db2777 100%);
    color: #ffffff;
    padding: 14px 30px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(124, 58, 237, 0.2);
}

.btn-ai-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(124, 58, 237, 0.3);
    color: #fff;
}

/* Transform Section - Balanced Version */
.ai-transform-section {
    padding: 100px 0;
    background: #f8fafc;
    color: #1a202c;
    overflow: hidden;
    position: relative;
}

.ai-transform-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.ai-transform-visual {
    position: relative;
    max-width: 380px;
    margin: 0 auto;
}

.ai-main-img-transform {
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    position: relative;
    background: #030d0a;
}

.ai-main-img-transform::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: inset 0 0 100px rgba(0, 255, 204, 0.05);
    pointer-events: none;
}

.ai-main-img-transform img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

.ai-transform-overlay {
    position: absolute;
    bottom: 20px;
    right: -30px;
    width: 180px;
    border: 6px solid #ffffff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    z-index: 2;
}

.ai-transform-overlay img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}


.ai-transform-content {
    position: relative;
    z-index: 2;
}

.ai-transform-content .ai-about-title {
    font-size: 38px;
    font-weight: 800;
    color: #030d0a;
}

.ai-transform-content .ai-about-desc {
    color: #4a5568;
}

.ai-transform-content .ai-checklist-about li i {
    color: #7c3aed;
}

@media (max-width: 992px) {
    .ai-transform-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .ai-reaching-hand {
        display: none;
    }
}




/* Advanced 3D Services Grid Section - Compact & Contrast Version */
.ai-services-grid-section {
    padding: 100px 0;
    background-color: #f1f5f9; /* Distinct light grey-blue tint */
    background-image: 
        radial-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px), /* Dot pattern */
        radial-gradient(at 0% 0%, rgba(0, 255, 204, 0.05) 0px, transparent 40%),
        radial-gradient(at 100% 100%, rgba(229, 62, 62, 0.04) 0px, transparent 40%);
    background-size: 30px 30px, 100% 100%, 100% 100%;
    border-top: 1px solid rgba(148, 163, 184, 0.15);
    position: relative;
    overflow: hidden;
}

.ai-services-grid-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
    position: relative;
    z-index: 2;
}

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

.ai-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px; /* Reduced gap */
    perspective: 2000px;
}

.ai-service-card {
    background: #ffffff; /* Pure white card for contrast */
    border-radius: 24px;
    padding: 35px 30px;
    text-align: left;
    position: relative;
    border: 1px solid rgba(148, 163, 184, 0.1); 
    border-top: 4px solid #e53e3e; /* Stronger red top border */
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    cursor: pointer;
}

.ai-service-card:hover {
    transform: translateY(-10px) rotateX(4deg) rotateY(-4deg);
    box-shadow: 
        0 20px 40px -10px rgba(0, 102, 255, 0.1),
        0 0 0 1px rgba(0, 255, 204, 0.4);
    background: #ffffff; /* Revert to white on hover for "lighting up" effect */
}

/* Floating Number */
.ai-service-number {
    font-size: 13px; /* Smaller */
    font-weight: 900;
    color: #94a3b8; /* Muted color for better contrast */
    margin-bottom: 25px;
    display: block;
    letter-spacing: 2px;
    transform: translateZ(20px);
}

/* Iconic Container */
.ai-service-icon {
    width: 55px; /* Smaller */
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px; /* Smaller icon */
    color: #1e293b;
    margin-bottom: 20px;
    background: #f1f5f9; /* Tinted icon bg */
    border-radius: 16px;
    transition: all 0.4s ease;
    transform: translateZ(40px);
}

.ai-service-card:hover .ai-service-icon {
    background: #e53e3e; /* Use the brand red for pop */
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(229, 62, 62, 0.2);
    transform: translateZ(60px) scale(1.1);
}

.ai-service-title {
    font-size: 20px; /* Smaller title */
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
    line-height: 1.2;
    transform: translateZ(30px);
}

.ai-service-desc {
    font-size: 14px; /* Smaller text */
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 500;
    transform: translateZ(15px);
}

.ai-service-readmore {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 14px;
    color: #0f172a;
    text-decoration: none;
    transition: all 0.3s ease;
    transform: translateZ(40px);
    position: relative;
}

.ai-service-readmore i {
    font-size: 18px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ai-service-readmore:hover {
    color: #e53e3e;
}

.ai-service-readmore:hover i {
    transform: translateX(8px) rotate(-45deg);
}

/* Premium Curved Pattern Background */
.ai-card-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.ai-card-bg-pattern::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at center, rgba(0, 255, 204, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
}

/* The "Fan" pattern from the image */
.ai-card-grid-lines {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 250px;
    height: 250px;
    opacity: 0.15;
    z-index: 0;
    background-image: 
        repeating-radial-gradient(circle at 100% 0%, transparent 0, transparent 20px, #1e293b 21px, transparent 22px);
    mask-image: linear-gradient(to bottom left, black, transparent);
    transition: all 0.8s ease;
}

.ai-service-card:hover .ai-card-grid-lines {
    opacity: 0.3;
    transform: scale(1.2) rotate(10deg);
}

/* Floating Particle Animation */
.ai-card-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--ai-accent);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.5s ease;
}

.ai-service-card:hover .ai-card-particle {
    opacity: 0.4;
    animation: particle-float 3s infinite linear;
}

@keyframes particle-float {
    0% { transform: translate(0, 0); opacity: 0; }
    50% { opacity: 0.5; }
    100% { transform: translate(-100px, -100px); opacity: 0; }
}

/* Responsive Overrides */
@media (max-width: 1100px) {
    .ai-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .ai-services-grid {
        grid-template-columns: 1fr;
    }
    .ai-service-card {
        padding: 40px 30px;
    }
    .ai-about-title {
        font-size: 32px !important;
    }
}

/* AI Journey Section - Ultra Compact Version */
.ai-journey-section {
    padding: 30px 0; /* Reduced space */
    background: #ffffff;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.ai-journey-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.ai-journey-desc {
    color: #64748b;
    max-width: 500px;
    margin: 0 auto 40px;
    font-size: 13px;
    line-height: 1.5;
}

.ai-journey-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    padding: 10px 0;
}

/* Ultra Compact Pink Journey Cards */
.ai-journey-card {
    background: linear-gradient(to bottom, #fef2f2, #fee2e2);
    border-radius: 24px;
    padding: 20px 15px;
    width: 160px;
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 5px 15px rgba(229, 62, 62, 0.03);
    border: none;
    flex-shrink: 0;
}

.ai-journey-card i {
    font-size: 28px;
    color: #1e293b;
    margin-bottom: 12px;
}

.ai-journey-card h3 {
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
}

/* Ultra Compact Central Overlapping Container */
.ai-journey-center {
    position: relative;
    border: 1px dashed #a78bfa;
    border-radius: 24px;
    padding: 30px 15px;
    width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: transparent;
    flex-shrink: 0;
}

.ai-circle-step {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    position: relative;
}

.ai-circle-top {
    background: linear-gradient(145deg, #fff5f5 0%, #ffdee2 100%);
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.ai-circle-top i {
    font-size: 24px;
    color: #1e293b;
    margin-bottom: 8px;
}

.ai-circle-top h3 {
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
}

.ai-circle-bottom {
    background: linear-gradient(135deg, #6d28d9 0%, #7c3aed 30%, #ef4444 100%);
    margin-top: -40px;
    color: #ffffff;
    z-index: 1;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.3;
    padding: 40px 20px 20px;
    box-shadow: 0 10px 20px rgba(109, 40, 217, 0.1);
}

/* Ultra Compact Connectors */
.ai-journey-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    gap: 8px;
    position: relative;
}

.ai-journey-arrow span {
    font-size: 10px;
    color: #94a3b8;
    text-align: center;
    font-weight: 500;
}

.arrow-line {
    width: 100%;
    height: 1px;
    border-top: 1px dashed #cbd5e1;
}

.arrow-line::after {
    content: '>';
    position: absolute;
    right: -2px;
    top: -7px;
    font-family: monospace;
    color: #cbd5e1;
    font-size: 11px;
}

/* Robotic Hand Visual - Ultra Small */
.ai-journey-hand {
    position: absolute;
    right: 0;
    bottom: -10px;
    width: 200px; /* Even smaller */
    pointer-events: none;
    z-index: 10;
    opacity: 0.9;
    mix-blend-mode: multiply; /* Removes white background if present */
}

@media (max-width: 850px) {
    .ai-journey-flex {
        flex-direction: column;
        gap: 30px;
    }
    .ai-journey-arrow {
        transform: rotate(90deg);
        height: 50px;
    }
    .ai-journey-hand {
        display: none;
    }
}

/* AI Experience Section - Animated Background Version */
@keyframes aiGradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.ai-experience-section {
    padding: 80px 0;
    /* Moving pastel tech gradient */
    background: linear-gradient(-45deg, #f5f3ff, #f0fdfa, #fdf4ff, #eff6ff); 
    background-size: 400% 400%;
    animation: aiGradientShift 12s ease infinite;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(148, 163, 184, 0.1);
}

/* Subtle Animated Pattern Overlay */
.ai-experience-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(124, 58, 237, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 0;
    animation: backgroundFloat 20s linear infinite;
}

@keyframes backgroundFloat {
    0% { background-position: 0 0; }
    100% { background-position: 60px 60px; }
}

.ai-experience-container {
    position: relative;
    z-index: 1; /* Keep above the pattern overlay */
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 50px; /* Reduced gap */
}

/* Left Side - Visual Composition */
.ai-visual-composition {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai-main-image-wrapper {
    position: relative;
    border-radius: 30px;
    z-index: 2;
    padding: 15px;
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.08);
}

.ai-exp-main-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/5;
}

/* Floating Glass Badge */
.ai-glass-badge-exp {
    position: absolute;
    bottom: -20px;
    left: -30px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    z-index: 3;
    animation: float 4s ease-in-out infinite;
}

.badge-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #7c3aed 0%, #3b82f6 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.3);
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-title {
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
}

.badge-sub {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
}

/* Decorative Shapes */
.ai-exp-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    filter: blur(40px);
}

.shape-1 {
    width: 150px;
    height: 150px;
    background: rgba(99, 102, 241, 0.3);
    top: -30px;
    right: -30px;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: rgba(236, 72, 153, 0.2);
    bottom: -50px;
    right: 20px;
}

/* Right Side - Content */
.ai-experience-content {
    flex: 1.5;
    text-align: left;
}

.ai-tag-purple {
    color: #6366f1;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ai-tag-purple::before {
    content: '';
    width: 5px;
    height: 5px;
    background: #6366f1;
    border-radius: 50%;
}

.ai-exp-title {
    font-size: 34px; /* Scaled down heading */
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.ai-exp-desc {
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.ai-exp-checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 20px;
    margin-bottom: 35px;
}

.ai-exp-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 800;
    color: #1e293b;
}

.ai-exp-item i {
    width: 20px;
    height: 20px;
    background: #f5f3ff;
    color: #6366f1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.ai-exp-footer-text {
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 30px;
    line-height: 1.5;
}

.btn-ai-purple {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #6366f1;
    color: #ffffff;
    padding: 14px 35px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-ai-purple:hover {
    transform: translateY(-3px);
    background: #4f46e5;
}

@media (max-width: 850px) {
    .ai-experience-container {
        flex-direction: column;
        gap: 40px;
    }
    .ai-experience-content {
        text-align: center;
    }
    .ai-exp-checklist {
        justify-content: center;
        grid-template-columns: 1fr;
    }
    .ai-visual-composition {
        justify-content: center;
        margin-bottom: 30px;
    }
    .ai-exp-main-img {
        max-width: 100%;
    }
    .ai-glass-badge-exp {
        left: 10px;
        bottom: 10px;
    }
}

/* ==========================================================================
   FAQ & Contact Section - Ultra Compact
   ========================================================================== */
.ai-faq-contact-section {
    padding: 90px 0; /* Increased top/bottom padding to give space */
    background: #f8fafc;
    position: relative;
}

.ai-fc-container {
    max-width: 1150px; /* Increased width to allow more space between left and right */
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 80px; /* Increased gap to separate left and right */
    align-items: flex-start;
}

/* Left: Contact Form Card */
.ai-contact-card-wrapper {
    flex: 1;
}

.ai-contact-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.ai-card-tag {
    color: #dc2626;
    font-weight: 800;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ai-card-tag .dot {
    width: 5px;
    height: 5px;
    background: #dc2626;
    border-radius: 50%;
}

.ai-card-title {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.ai-card-desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 25px;
}

/* Form Styles */
.ai-contact-form .form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.ai-contact-form .form-group {
    flex: 1;
    margin-bottom: 15px;
}

.ai-contact-form input,
.ai-contact-form textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #e2e8f0;
    padding: 8px 0;
    font-size: 13px;
    color: #0f172a;
    background: transparent;
    outline: none;
    transition: all 0.3s ease;
}

.ai-contact-form input:focus,
.ai-contact-form textarea:focus {
    border-bottom-color: #dc2626;
}

.ai-contact-form input::placeholder,
.ai-contact-form textarea::placeholder {
    color: #94a3b8;
}

/* Custom Checkbox */
.form-check-group {
    text-align: left;
}

.ai-checkbox-container {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    font-size: 13px;
    color: #64748b;
    cursor: pointer;
    margin-bottom: 25px;
}

/* Form Footer */
.ai-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.support-person {
    display: flex;
    align-items: center;
    gap: 10px;
}

.support-person img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
}

.support-info h4 {
    font-size: 13px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 2px 0;
}

.support-info p {
    font-size: 11px;
    color: #64748b;
    margin: 0;
}

.btn-ai-red {
    background: #dc2626;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-ai-red:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

/* Right: FAQ Wrapper */
.ai-faq-wrapper {
    flex: 1.2;
    padding-top: 10px;
}

.ai-faq-title {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.ai-faq-desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 25px;
}

/* Custom Tabs */
.ai-custom-tabs {
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 20px;
    gap: 20px;
}

.ai-custom-tabs .nav-item {
    margin-bottom: -1px;
}

.ai-custom-tabs .nav-link {
    color: #64748b;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 0;
    border: none !important;
    border-bottom: 2px solid transparent !important;
    background: transparent !important;
}

.ai-custom-tabs .nav-link:hover {
    color: #0f172a;
}

.ai-custom-tabs .nav-link.active {
    color: #dc2626;
    border-bottom: 2px solid #dc2626 !important;
}

/* Custom Accordion */
.ai-custom-accordion .accordion-item {
    border: none;
    border-bottom: 1px solid #e2e8f0;
    background: transparent;
    border-radius: 0;
}

.ai-custom-accordion .accordion-item:last-child {
    border-bottom: none;
}

.ai-custom-accordion .accordion-button {
    background: transparent;
    color: #0f172a;
    font-weight: 600;
    font-size: 14px;
    padding: 15px 0;
    box-shadow: none !important;
}

.ai-custom-accordion .accordion-button:not(.collapsed) {
    color: #0f172a;
    background: transparent;
}

/* Custom Icons (+ / -) */
.ai-custom-accordion .accordion-button::after {
    display: none; /* Hide default icon */
}

.ai-custom-accordion .accordion-button::before {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 20px;
    font-weight: 400;
    color: #0f172a;
    transition: all 0.3s ease;
}

.ai-custom-accordion .accordion-button:not(.collapsed)::before {
    content: '-';
    color: #dc2626;
}

.ai-custom-accordion .accordion-body {
    padding: 0 0 15px 0;
    color: #64748b;
    font-size: 13px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 991px) {
    .ai-fc-container {
        flex-direction: column;
    }
    .ai-faq-wrapper {
        padding-top: 0;
    }
}
@media (max-width: 576px) {
    .ai-contact-form .form-row {
        flex-direction: column;
        gap: 0;
    }
    .ai-form-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .ai-contact-card {
        padding: 20px 15px;
    }
}

/* ==========================================================================
   Latest Blog Section - Compact
   ========================================================================== */
.ai-latest-blog-section {
    padding: 80px 0;
    background: #ffffff;
}

.ai-blog-container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 20px;
}

.ai-blog-header {
    margin-bottom: 40px;
}

.ai-blog-title {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.5px;
    margin-top: 10px;
}

.ai-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ai-blog-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ai-blog-card:hover {
    transform: translateY(-5px);
}

.blog-img-wrapper {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 20px;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ai-blog-card:hover .blog-img-wrapper img {
    transform: scale(1.05);
}

.blog-content {
    padding: 0 5px; /* Slight padding to align with image visually */
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.meta-item {
    font-size: 12px;
    color: #dc2626; /* Red */
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.meta-separator {
    color: #cbd5e1;
    font-size: 10px;
}

.blog-card-title {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.4;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.ai-blog-card:hover .blog-card-title {
    color: #dc2626;
}

.blog-read-more {
    font-size: 13px;
    color: #64748b;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.blog-read-more i {
    font-size: 11px;
}

.blog-read-more:hover {
    color: #dc2626;
}

/* Responsive */
@media (max-width: 991px) {
    .ai-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ai-blog-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .ai-blog-title {
        font-size: 26px;
    }
}
