/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette from Design.json */
    --purple: #6B46C1;
    --purple-light: #8B5CF6;
    --purple-dark: #553C9A;
    --vibrant-purple: #7C3AED;
    --blue: #3B82F6;
    --blue-dark: #1E40AF;
    --blue-light: #60A5FA;
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
    --info: #3B82F6;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #6B46C1 0%, #3B82F6 100%);
    --gradient-hero: linear-gradient(135deg, #1E40AF 0%, #553C9A 50%, #6B46C1 100%);
    --gradient-card-overlay: linear-gradient(135deg, rgba(107, 70, 193, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    --gradient-button: linear-gradient(135deg, #6B46C1 0%, #553C9A 100%);
    --gradient-testimonial: linear-gradient(135deg, #5B21B6 0%, #4C1D95 50%, #3B0764 100%);

    /* Typography */
    --font-primary: 'Figtree', system-ui, -apple-system, sans-serif;
    --font-secondary: 'SF Pro Display', system-ui, sans-serif;

    /* Spacing System - Single Source of Truth */
    --section-spacing: 120px;      /* Space between major sections */
    --content-spacing-lg: 60px;    /* Large content gaps */
    --content-spacing-md: 40px;    /* Medium content gaps */
    --content-spacing-sm: 24px;    /* Small content gaps */
    --content-spacing-xs: 16px;    /* Tiny content gaps */
    
    /* ============================================
       HERO COMPONENT VARIABLES
       ============================================ */
    
    /* Spacing */
    --hero-padding-vertical: 1px;     /* Small padding for flexbox centering */
    --hero-padding-horizontal: 4rem;    /* Left and right padding */
    --hero-content-max-width: 1400px;   /* Maximum content width */
    
    /* Content Spacing */
    --hero-tag-spacing: 2rem;           /* Space below tag */
    --hero-title-spacing: 1.5rem;       /* Space below title */
    --hero-subtitle-spacing: 3rem;      /* Space below subtitle */
    
    /* Typography - Sizes */
    --hero-tag-size: 0.85rem;
    --hero-title-size: 4.5rem;
    --hero-subtitle-size: 1.3rem;
    
    /* Typography - Weights */
    --hero-tag-weight: 500;
    --hero-title-weight: 700;
    --hero-subtitle-weight: 400;
    
    /* Typography - Colors */
    --hero-tag-color: #c4b5fd;
    --hero-title-color: #ffffff;
    --hero-title-highlight-start: #7c3aed;
    --hero-title-highlight-end: #a855f7;
    --hero-subtitle-color: #ffffff;     /* Pure white for maximum contrast */
    
    /* Background */
    --hero-bg-gradient-start: rgba(15, 12, 41, 0.95);
    --hero-bg-gradient-mid: rgba(26, 19, 71, 0.95);
    --hero-bg-gradient-end: rgba(36, 36, 62, 0.95);
    --hero-bg-image: url('assets/images/hero/main-background/clouds-clean.png');
    
    /* Buttons */
    --hero-btn-spacing: 1.5rem;         /* Gap between buttons */
    
    /* Legacy spacing variables for compatibility */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 2.5rem;
    --space-3xl: 3rem;
    --space-4xl: 4rem;
    --space-5xl: 5rem;
    --space-6xl: 6rem;

    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1rem;
    --radius-3xl: 1.5rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-card: 0 4px 12px rgba(107, 70, 193, 0.15);
    --shadow-glow: 0 0 20px rgba(107, 70, 193, 0.3);

    /* Container */
    --container-max-width: 1280px;
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Navigation */
.navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    transform: translateY(0);
}

/* Hide header on scroll down */
.navigation.hidden {
    transform: translateY(-100%) !important;
    transition: transform 0.3s ease !important;
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 2px var(--space-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 150px;
    width: auto;
    max-width: 750px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}


.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-xl);
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--gray-900);
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--purple);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--gray-600);
    transition: 0.3s;
}

/* ============================================
   1. CSS VARIABLES (already defined above)
   ============================================ */

/* ============================================
   2. RESET & BASE STYLES
   ============================================ */

/* All major sections follow this pattern */
section {
    padding: var(--section-spacing) 0;
    margin: 0; /* Never use margin on sections */
}

/* ============================================
   3. LAYOUT COMPONENTS
   ============================================ */

/* 3.1 Navigation */

/* Hero is special - it needs different spacing */
.hero-section-new {
    padding: 0; /* Hero controls its own internal spacing */
    margin: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Main Content */
.main-content {
    margin-top: 80px;
}

/* Hero section should not be affected by main-content margin */
.hero-section-new {
    margin-top: 0 !important; /* Override main-content margin for hero */
}

.section {
    display: none;
    min-height: calc(70vh - 80px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.section.active {
    display: block;
    opacity: 1;
}

/* ========================================
   HERO SECTION - ORIGINAL (for other pages)
   ======================================== */

/* Original Hero Section - for about.html, ai-service.html, industries.html, contact.html */
.hero-section {
    background-image: url('assets/images/hero/main-background/clouds-clean.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: var(--space-4xl) var(--space-xl);
    padding-top: calc(var(--space-4xl) + 80px);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(91, 33, 182, 0.3) 0%, rgba(0, 0, 0, 0.4) 30%, rgba(0, 0, 0, 0.2) 60%, rgba(75, 29, 149, 0.3) 100%);
    z-index: 1;
}

/* Original hero content - for other pages */
.hero-content {
    text-align: center;
    max-width: 4xl;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: var(--space-lg);
    line-height: 1.1;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.8), 0 2px 4px rgba(0, 0, 0, 0.6), 0 1px 2px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title-line1,
.hero-title-line2 {
    display: block;
}

.hero-subtitle {
    font-size: 1.375rem;
    color: #FFFFFF;
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 1px 4px rgba(0, 0, 0, 0.6), 0 0 2px rgba(0, 0, 0, 0.4);
    font-weight: 500;
    backdrop-filter: blur(0.5px);
}

.hero-cta {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   MODULAR HERO SECTION SYSTEM
   ============================================
   
   USAGE:
   <section class="hero-section-new">
       <!-- Optional: Animated Background Elements -->
       <div class="hero-bg-orbs">
           <div class="orb orb-1"></div>
           <div class="orb orb-2"></div>
           <div class="orb orb-3"></div>
       </div>
       
       <!-- Optional: Grid Overlay -->
       <div class="hero-grid-overlay"></div>
       
       <!-- Main Content Container -->
       <div class="hero-content-new">
           <!-- Optional: Tag Label -->
           <div class="hero-tag">
               <span>YOUR TAG</span>
           </div>
           
           <!-- Main Title -->
           <h1 class="hero-headline">
               <span class="hero-headline-line1">TITLE LINE 1</span>
               <span class="hero-headline-line2">TITLE LINE 2</span>
           </h1>
           
           <!-- Subtitle -->
           <p class="hero-subheadline">Your subtitle text</p>
           
           <!-- Optional: CTA Buttons -->
           <div class="hero-cta-buttons">
               <a href="#" class="btn-primary-new">Button 1</a>
               <a href="#" class="btn-secondary-new">Button 2</a>
           </div>
       </div>
   </section>
   
   COMPONENTS:
   - hero-section-new: Main container
   - hero-bg-orbs: Animated background (optional)
   - hero-grid-overlay: Grid overlay (optional)
   - hero-content-new: Content container
   - hero-tag: Tag label (optional)
   - hero-headline: Main title
   - hero-subheadline: Subtitle
   - hero-cta-buttons: CTA buttons (optional)
   
   CUSTOMIZATION:
   Override CSS variables in page-specific styles or via modifier classes.
   ============================================ */

/* ============================================
   MODULAR HERO SECTION - BASE CONTAINER
   ============================================ */

/* Hero Container - Clean Background Only */
.hero-section-new {
    min-height: 100vh;
    background: url('assets/images/hero/main-background/clouds-clean.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center; /* Back to center for proper vertical centering */
    padding: 0;
    margin: 0;
}

/* ============================================
   OPTIONAL HERO COMPONENTS
   ============================================ */

/* Animated Background Orbs (Optional) */
.hero-bg-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-bg-orbs .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: float 6s ease-in-out infinite;
}

.hero-bg-orbs .orb-1 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, rgba(139, 92, 246, 0.1) 50%, transparent 100%);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.hero-bg-orbs .orb-2 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.4) 0%, rgba(167, 139, 250, 0.1) 50%, transparent 100%);
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.hero-bg-orbs .orb-3 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(196, 181, 253, 0.3) 0%, rgba(196, 181, 253, 0.1) 50%, transparent 100%);
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

/* Grid Overlay (Optional) */
.hero-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 1;
}

/* Scroll Down Arrow */
.hero-scroll-arrow {
    position: absolute;
    bottom: 6rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

.scroll-arrow-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.scroll-arrow-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
    transform: translateY(-2px);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-8px);
    }
    60% {
        transform: translateX(-50%) translateY(-4px);
    }
}

/* ============================================
   SECTION TRANSITION FIX
   ============================================ */

/* First section after hero needs specific handling */
.hero-section-new + section,
.hero-section-new + * {
    margin-top: 0 !important; /* Only acceptable use of !important */
    padding-top: var(--section-spacing);
}

/* ============================================
   HERO COMPONENT - PAGE-SPECIFIC CUSTOMIZATION EXAMPLES
   ============================================ */

/* Example: About page customization */
.hero--about {
    --hero-title-size: 4rem;
    --hero-padding-vertical: 50px;
    --hero-subtitle-color: #e0e7ff;
}

/* Example: Services page customization */
.hero--services {
    --hero-subtitle-color: #cbd5e1;
    --hero-bg-image: url('assets/images/hero/services-bg.jpg');
    --hero-title-highlight-start: #3b82f6;
    --hero-title-highlight-end: #1d4ed8;
}

/* Example: Compact variant for testing */
.hero--compact {
    --hero-padding-vertical: 30px;
    --hero-title-size: 4rem;
    --hero-subtitle-spacing: 2rem;
}

/* Example: Large variant for testing */
.hero--large {
    --hero-padding-vertical: 100px;
    --hero-title-size: 5.5rem;
    --hero-subtitle-spacing: 4rem;
}

/* Case Studies Section - Professional Layout (Clouds background removed for industries.html) */

/* Welcome Section Styles */
.welcome-title {
    color: var(--gray-900);
    margin-bottom: 20px;
    font-size: 2.2rem;
    font-weight: 700;
}

.welcome-description {
    margin: 0;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* No gradient overlay - just the clean background image */

/* Background elements removed to avoid interference */

/* Hero content container - symmetric padding */
.hero-content-new {
    width: 100%;
    max-width: var(--hero-content-max-width);
    margin: 0 auto;
    padding: var(--hero-padding-vertical) var(--hero-padding-horizontal);
    position: relative;
    z-index: 10;
    /* Ensure padding is actually applied */
    box-sizing: border-box;
}

/* ============================================
   CONTENT ELEMENTS - Professional Spacing Reset
   ============================================ */

/* Reset all heading margins within hero */
.hero-content-new h1,
.hero-content-new h2,
.hero-content-new p,
.hero-content-new .hero-tag,
.hero-content-new .hero-subheadline {
    margin-top: 0; /* Never use top margin */
}

/* Tag label */
.hero-tag {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 50px;
    color: var(--hero-tag-color);
    font-size: var(--hero-tag-size);
    font-weight: var(--hero-tag-weight);
    letter-spacing: 0.5px;
    margin-bottom: var(--hero-tag-spacing);
    backdrop-filter: blur(10px);
    margin-top: 0;
}

/* Main title */
.hero-content-new h1 {
    font-size: var(--hero-title-size);
    font-weight: var(--hero-title-weight);
    color: var(--hero-title-color);
    line-height: 1.15;
    letter-spacing: -2px;
    margin-top: 0;
    margin-bottom: var(--hero-title-spacing);
}

.hero-headline-line1,
.hero-headline-line2 {
    display: block;
}

/* Title highlight (AI text) */
.ai-highlight {
    background: linear-gradient(135deg, 
        var(--hero-title-highlight-start) 0%, 
        var(--hero-title-highlight-end) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subheadline */
.hero-subheadline {
    font-size: var(--hero-subtitle-size);
    font-weight: var(--hero-subtitle-weight);
    color: #ffffff !important; /* Force pure white for maximum contrast */
    line-height: 1.7;
    max-width: 800px;
    margin-top: 0;
    margin-bottom: var(--hero-subtitle-spacing);
}

/* CTA Buttons container */
.hero-cta-buttons {
    display: flex;
    gap: var(--hero-btn-spacing);
    margin-top: 0;
    margin-bottom: 0; /* Last element, no bottom margin */
}

.btn-primary-new {
    background: #7c3aed;
    color: #ffffff;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary-new:hover {
    background: #6d28d9;
    transform: translateY(-2px);
}

.btn-secondary-new {
    background: transparent;
    color: #ffffff;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.btn-secondary-new:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

/* Animations removed to avoid interference */


/* Old hero-content removed - using hero-content-new */

/* Old hero-title removed - using hero-headline */

/* Old hero-title-line rules removed - using hero-headline-line */

/* Old hero-subtitle removed - using hero-subheadline */

/* Old hero-cta removed - using hero-cta-buttons */

/* Buttons */
.btn-primary {
    background: var(--gradient-button);
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--purple);
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: var(--space-4xl) var(--space-xl);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.section-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-lg);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray-900);
    max-width: 600px;
    margin: 0 auto var(--space-3xl) auto;
    text-align: center;
    text-align-last: center;
    line-height: 1.6;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-4xl);
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--gray-200);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: var(--space-lg);
}

.service-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-md);
}

.service-description {
    font-size: 1.125rem;
    color: var(--gray-900);
    line-height: 1.6;
    text-align: justify;
}

/* Industries Grid */
.industries-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    margin-top: var(--space-4xl);
    align-items: start;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.industry-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: var(--space-lg);
}

.industry-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-md);
}

.industry-description {
    font-size: 1.25rem;
    color: var(--gray-900);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
    text-align: justify;
}

.case-study {
    background: var(--gradient-card-overlay);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--purple);
}

.case-study h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-sm);
}

.case-study p {
    color: var(--gray-900);
    font-size: 0.875rem;
    text-align: justify;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    margin-top: var(--space-4xl);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--gray-200);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-sm);
}

.contact-card p {
    color: var(--gray-900);
    margin-bottom: var(--space-md);
    line-height: 1.6;
    text-align: justify;
}

.contact-link {
    color: var(--purple);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--purple-dark);
}

/* Schedule Button */
.schedule-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--gradient-button);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: var(--space-md);
}

.schedule-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    color: var(--white);
}

.schedule-btn .btn-icon {
    font-size: 1.1rem;
}

/* Contact Form */
.contact-form-container {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-xl);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: var(--space-sm);
}

.form-group input,
.form-group select,
.form-group textarea {
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-lg);
    padding: 0.75rem var(--space-md);
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}




/* General contact text styling for non-footer uses */
.contact-text {
    font-size: 0.9rem;
}

.footer-tagline {
    font-size: 1.25rem;
}

/* Info Section (What is AI) */
.info-section {
    background-color: #F9FAFB;
    padding: var(--space-6xl) 0;
    position: relative;
    overflow: hidden;
}

.info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 1;
}

.info-section .container {
    position: relative;
    z-index: 2;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-4xl);
}

.content-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--gray-200);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.content-icon {
    font-size: 3rem;
    margin-bottom: var(--space-lg);
}

.content-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-md);
}

.content-description {
    font-size: 1.125rem;
    color: var(--gray-900);
    line-height: 1.6;
    margin-bottom: 0.75rem;
    text-align: justify;
}

.content-cta {
    text-align: center;
    padding-top: var(--space-md);
}

.paper-link {
    color: var(--white);
    text-decoration: underline;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
    z-index: 4;
    pointer-events: auto;
    cursor: pointer;
}

.paper-link:hover {
    color: var(--white);
    text-decoration: underline;
    opacity: 0.8;
}

.content-image {
    height: 150px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: var(--space-lg) 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.content-image:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.content-image-content {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease;
}

.content-image:hover .content-image-content {
    transform: scale(1.05);
}

/* All content images use cover to fill the entire box */
.content-image .content-image-content {
    object-fit: cover;
    object-position: center;
}

.content-image-placeholder {
    height: 120px;
    background: linear-gradient(135deg, #F3F4F6 0%, #E5E7EB 100%);
    border-radius: var(--radius-lg);
    border: 2px dashed var(--gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.content-image-placeholder:hover {
    border-color: var(--purple-light);
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--gray-200);
}

.stats-title {
    grid-column: 1 / -1;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: var(--space-lg);
    line-height: 1.3;
}

.stat-item {
    text-align: center;
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(107, 70, 193, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    min-height: 140px;
}

.stat-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(107, 70, 193, 0.15);
    border-color: rgba(107, 70, 193, 0.2);
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-sm);
    line-height: 1.1;
    text-align: center;
    width: 100%;
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: var(--space-sm);
    line-height: 1.4;
    text-align: center;
    width: 100%;
}

.read-more-link {
    font-size: 0.875rem;
    color: var(--purple);
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    display: block;
    transition: all 0.3s ease;
    opacity: 0.8;
    margin-top: var(--space-xs);
}

.read-more-link:hover {
    opacity: 1;
    color: var(--purple-dark);
    text-decoration: underline;
    transform: translateY(-1px);
}

/* Case Studies Section - Clean Implementation */

.case-studies-decorative {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}


.case-studies-section .container {
    position: relative;
    z-index: 2;
}

/* Case studies section styling */

/* Add more vertical margin to case studies title */
.case-studies-section .section-title {
    margin-top: 2rem; /* Additional top margin for the title */
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(350px, 1fr));
    gap: var(--space-xl);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.case-study-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border-radius: var(--radius-2xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-xl);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 16px;
    cursor: pointer;
    position: relative;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 1);
    border-color: var(--purple-light);
}

.case-study-link:hover .case-study-title {
    color: var(--purple);
}

.case-study-link:focus {
    outline: 2px solid var(--purple);
    outline-offset: 2px;
}

.case-study-cta {
    margin-top: var(--space-lg);
    text-align: center;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(107, 70, 193, 0.1);
}

.learn-more-btn {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(107, 70, 193, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 10;
}

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

.case-study-card:hover .learn-more-btn {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(107, 70, 193, 0.3);
    background: linear-gradient(135deg, #6B46C1 0%, #5B21B6 50%, #4C1D95 100%);
}

.case-study-card:hover .learn-more-btn::before {
    left: 100%;
}

.case-study-card:hover .learn-more-btn {
    color: var(--white);
}

.case-study-header {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.case-study-icon {
    font-size: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.case-study-meta {
    flex: 1;
}

.case-study-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-xs);
}

.case-study-industry {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--purple);
    background: rgba(107, 70, 193, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
}

.case-study-description {
    font-size: 1.25rem;
    color: var(--gray-900);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
    text-align: justify;
}

.business-value {
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
    border-left: 4px solid var(--purple);
    padding: var(--space-lg);
    margin: var(--space-lg) 0;
    border-radius: var(--radius-md);
    position: relative;
}

.business-value::before {
    content: "💡";
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    font-size: 1.5rem;
    opacity: 0.7;
}

.business-value h5 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--purple);
    margin: 0 0 var(--space-sm) 0;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.business-value h5::before {
    content: "→";
    color: var(--purple);
    font-weight: 700;
}

.business-value p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-700);
    margin: 0;
    font-weight: 500;
    text-align: justify;
}

/* Flip Card Styles */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 1000px;
    perspective: 1000px;
    cursor: pointer;
    margin-bottom: var(--space-2xl);
    transition: all 0.3s ease;
    border-radius: var(--radius-xl);
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.flip-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(107, 70, 193, 0.15);
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg) !important;
}

.flip-card.flipped {
    border-radius: var(--radius-xl) !important;
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.flip-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.flip-hint {
    font-size: 1rem;
    color: var(--white);
    font-weight: 700;
    text-align: center;
    margin-top: var(--space-lg);
    padding: 12px 24px;
    background: linear-gradient(135deg, #6B46C1 0%, #5B21B6 50%, #4C1D95 100%);
    border-radius: 25px;
    box-shadow: 0 4px 12px rgba(107, 70, 193, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 20;
    pointer-events: auto;
    user-select: none;
}

.flip-card-front .case-study-results {
    margin-top: var(--space-lg);
    margin-bottom: 0;
    padding: var(--space-lg);
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
    border-radius: var(--radius-md);
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.flip-card:hover .flip-hint {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(107, 70, 193, 0.4);
    background: linear-gradient(135deg, #5B21B6 0%, #4C1D95 50%, #3B0764 100%);
}

.flip-card-front .case-study {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
    margin-bottom: var(--space-lg);
}

.flip-card-back .business-value {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
    overflow-y: auto;
    margin-bottom: var(--space-lg);
}

.flip-card-back .case-study-results {
    margin-top: var(--space-lg);
    margin-bottom: 0;
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-md);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

/* Ensure proper spacing in flip cards */
.flip-card-front .industry-title,
.flip-card-back .industry-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-sm);
}

.flip-card-front .industry-description {
    font-size: 1.1rem;
    color: var(--gray-900);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
    text-align: justify;
}

.flip-card-front .case-study h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.flip-card-front .case-study p {
    font-size: 1.1rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
    text-align: justify;
}

.flip-card-back .business-value h5 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--purple);
    margin-bottom: var(--space-xl);
    line-height: 1.6;
}

.flip-card-back .business-value p {
    font-size: 1.1rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin: 0;
    text-align: justify;
}

/* Case Study Images */
.case-study-image {
    width: 100%;
    max-width: 300px;
    height: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin: var(--space-md) auto;
    flex-shrink: 0;
}

.case-study-image:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.case-study-image-content {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease;
}

.case-study-image:hover .case-study-image-content {
    transform: scale(1.05);
}

.case-study-results {
    display: flex;
    gap: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 3px solid var(--purple);
}

.result-item {
    text-align: center;
    flex: 1;
}

.result-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--purple);
    margin-bottom: var(--space-xs);
}

.result-label {
    font-size: 0.875rem;
    color: var(--gray-900);
    font-weight: 500;
}

/* Page Sections */
.page-section {
    padding: var(--space-2xl) 0;
    min-height: calc(70vh - 80px);
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-lg);
    text-align: center;
}

.case-studies-intro {
    text-align: center;
    margin: 0;
    padding: var(--space-6xl) 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.case-studies-content {
    padding: var(--space-6xl) 0;
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.case-studies-content::before {
    /* Overlay removed - using clean background from parent section */
    display: none;
}

.case-studies-content .container {
    position: relative;
    z-index: 2;
}

.case-studies-content .intro-title {
    color: var(--white) !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: var(--white) !important;
    background-clip: unset !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.intro-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-lg);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.centered-title {
    text-align: center;
    margin: var(--space-4xl) 0 var(--space-2xl) 0;
}

.intro-text {
    font-size: 1.25rem;
    color: var(--gray-900);
    line-height: 1.7;
    font-weight: 500;
    text-align: justify;
}

/* AI Navigation Buttons */
.ai-navigation-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
    flex-wrap: wrap;
}

.ai-nav-btn {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(107, 70, 193, 0.2);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

.ai-nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(107, 70, 193, 0.3);
    background: linear-gradient(135deg, #6B46C1 0%, #5B21B6 50%, #4C1D95 100%);
}

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

.ai-nav-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(107, 70, 193, 0.2);
}

.ai-nav-btn {
    width: 100%;
    max-width: 200px;
    text-align: center;
}

/* Common Utility Classes */
.full-width-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    background-attachment: fixed;
    margin-bottom: 0;
}

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

.container-1200 {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.content-card-white {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.1);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.white-text-shadow {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.btn-gradient {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(107, 70, 193, 0.3);
    position: relative;
    z-index: 10;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(107, 70, 193, 0.4);
}

/* AI Service Page Styles */
.ai-intro {
    text-align: center;
    margin: var(--space-2xl) 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: var(--space-3xl) var(--space-xl);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.ai-intro .intro-title,
.ai-intro .intro-text,
.ai-intro .text-separator,
.ai-intro .ai-navigation-buttons {
    position: relative;
    z-index: 2;
}

.page-section .ai-intro .intro-text {
    color: var(--gray-900) !important;
    text-shadow: none !important;
}

/* AI Service Page Section Background */
.page-section {
    background-image: url('assets/images/hero/main-background/clouds-clean.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: var(--space-6xl) 0;
}

.page-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.page-section .container {
    position: relative;
    z-index: 2;
}

.page-section .page-title {
    color: var(--white) !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-section .section-subtitle {
    color: var(--white) !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-section .intro-text {
    color: var(--white) !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.ai-intro .intro-image-placeholder {
    height: 200px;
    background: linear-gradient(135deg, #F3F4F6 0%, #E5E7EB 100%);
    border-radius: var(--radius-lg);
    border: 2px dashed var(--gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: var(--space-xl);
    transition: all 0.3s ease;
}

/* Dynamic Content Section */
.dynamic-content-section {
    margin: var(--space-4xl) 0;
}

.content-box {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
    margin: var(--space-3xl) 0;
    padding: var(--space-2xl);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.content-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.content-box.left-box {
    flex-direction: row;
}

.content-box.right-box {
    flex-direction: row-reverse;
}

.box-content {
    flex: 1;
    padding: var(--space-lg);
}

.box-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin: 0;
}

.box-image-placeholder {
    flex: 1;
    height: 200px;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.box-image-placeholder::before {
    content: "📷";
    font-size: 2rem;
    color: var(--gray-400);
    opacity: 0.6;
}

.box-image-placeholder:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Use Cases Grid Styles */
.subsection-title {
    font-size: 1.625rem;
    font-weight: 600;
    color: var(--gray-800);
    margin: var(--space-3xl) 0 var(--space-xl) 0;
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--purple-light);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.use-case-item {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.use-case-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--purple), var(--blue));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.use-case-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--purple-light);
}

.use-case-icon {
    font-size: 2rem;
    margin-bottom: var(--space-md);
    display: block;
}

.use-case-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-800);
    margin: 0 0 var(--space-sm) 0;
}

.use-case-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-600);
    margin: 0;
}

.ai-intro .intro-image-placeholder:hover {
    border-color: var(--purple-light);
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
}

.ai-types-section {
    background: var(--white);
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
    margin: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.ai-types-section::before {
    display: none;
}

.ai-types-section .container {
    position: relative;
    z-index: 2;
}

.ai-types-section .intro-title,
.ai-types-section .section-subtitle,
.ai-types-section .centered-title {
    color: var(--gray-900) !important;
    text-align: center;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.ai-type-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    text-align: center;
}

.ai-type-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.type-icon {
    font-size: 3rem;
    margin-bottom: var(--space-lg);
}

.type-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-md);
}

.type-description {
    color: var(--gray-900);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
    text-align: justify;
}

.type-image {
    height: 180px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.type-image:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.type-image-content {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease;
}

.type-image:hover .type-image-content {
    transform: scale(1.05);
}

/* Real World Applications Section */
.real-world-applications-section {
    background-image: url('assets/images/hero/main-background/clouds-clean.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: var(--space-3xl) 0;
    margin: var(--space-xl) 0;
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.real-world-applications-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 1;
}

.real-world-applications-section .container {
    position: relative;
    z-index: 2;
    background: transparent;
}

.real-world-applications-section .intro-title {
    color: var(--white) !important;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: var(--white);
    background-clip: unset;
    position: relative;
    z-index: 3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.real-world-applications-section .ai-details-section {
    background: transparent;
    position: relative;
    z-index: 3;
}

.real-world-applications-section .intro-text {
    position: relative;
    z-index: 3;
    pointer-events: auto;
}

.real-world-applications-section .detail-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.ai-details-section {
    background: var(--white);
    padding: var(--space-6xl) 0;
    margin: 0;
}

.detail-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--gray-200);
}

.detail-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-xl);
}

.detail-icon {
    font-size: 2.5rem;
    margin-right: var(--space-lg);
}

.detail-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
    text-align: center;
}

.detail-text {
    color: var(--gray-900);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    font-size: 1.125rem;
    text-align: justify;
}

.detail-image {
    height: 180px;
    width: 60%;
    margin: var(--space-xl) auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.detail-image:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.detail-image-content {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease;
}

.detail-image:hover .detail-image-content {
    transform: scale(1.03);
}

.analytical-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.feature-item {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border-left: 4px solid var(--purple);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-sm);
}

.feature-text {
    color: var(--gray-900);
    line-height: 1.6;
    font-size: 0.95rem;
    text-align: justify;
}

.lifecycle-section {
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
    margin: 0;
    border-radius: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.lifecycle-section::before {
    display: none;
}

.lifecycle-section .container {
    position: relative;
    z-index: 2;
}

.lifecycle-section .lifecycle-steps,
.lifecycle-section .lifecycle-step,
.lifecycle-section .step-content,
.lifecycle-section .step-description,
.lifecycle-section .step-image,
.lifecycle-section .step-image-content {
    position: relative;
    z-index: 2;
}

.lifecycle-section .intro-title,
.lifecycle-section .section-subtitle,
.lifecycle-section .centered-title {
    color: var(--gray-900) !important;
    text-align: center;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lifecycle-steps {
    margin-top: var(--space-2xl);
}

.lifecycle-step {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: var(--space-xl);
    align-items: start;
    margin-bottom: var(--space-3xl);
    padding: var(--space-xl);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(107, 70, 193, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(107, 70, 193, 0.3);
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-md);
}

.step-description {
    color: var(--gray-900);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    font-size: 1.125rem;
    text-align: justify;
}

.step-features {
    list-style: none;
    padding: 0;
}

.step-features li {
    color: var(--gray-900);
    margin-bottom: var(--space-sm);
    padding-left: var(--space-lg);
    position: relative;
    text-align: justify;
}

.step-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--purple);
    font-weight: bold;
}

.step-content-row {
    display: flex;
    align-items: flex-start;
    gap: var(--space-xl);
    margin-top: var(--space-lg);
}

.step-features {
    flex: 1;
    margin: 0;
}

.step-image {
    width: auto;
    height: auto;
    max-width: 450px;
    max-height: 320px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
    background: var(--white);
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.step-image::before {
    display: none;
}

.step-image:hover::before {
    display: none;
}

.step-image:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.step-image-content {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease;
    display: block;
    position: relative;
    z-index: 1;
}

.step-image-content::after {
    display: none;
}

.step-image:hover .step-image-content {
    transform: scale(1.05);
}

/* Service Features */
.service-features {
    list-style: none;
    padding: 0;
    margin-top: var(--space-lg);
}

.service-features li {
    padding: var(--space-sm) 0;
    color: var(--gray-900);
    position: relative;
    padding-left: var(--space-lg);
    text-align: justify;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--purple);
    font-weight: bold;
}

/* Lifecycle Bullet Points */
.lifecycle-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lifecycle-bullets li {
    padding: 8px 0;
    color: var(--gray-700);
    position: relative;
    padding-left: 25px;
    display: flex;
    align-items: flex-start;
}

.lifecycle-bullets li .bullet-dot {
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--gradient-primary);
    border-radius: 50%;
    flex-shrink: 0;
}

.lifecycle-bullets li .bullet-text {
    padding-left: 5px;
    flex: 1;
}

/* Process Steps */
.process-section {
    margin-top: var(--space-6xl);
    padding: var(--space-4xl) 0;
    background: var(--gradient-card-overlay);
    border-radius: var(--radius-2xl);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-4xl);
}

.process-step {
    text-align: center;
    padding: var(--space-xl);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto var(--space-lg);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-md);
}

.step-description {
    color: var(--gray-900);
    line-height: 1.6;
    text-align: justify;
}

/* Success Metrics */
.success-metrics {
    margin: 0;
    padding: var(--space-6xl) 0;
    background: var(--white);
    border-radius: 0;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-4xl);
}

.metric-card {
    text-align: center;
    padding: var(--space-xl);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.metric-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-sm);
}

.metric-label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-600);
}

/* FAQ Section */
.faq-section {
    margin-top: var(--space-6xl);
    padding: var(--space-4xl) 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-4xl);
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--gray-200);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.faq-question {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-md);
}

.faq-answer {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Active Navigation Link */
.nav-link.active {
    color: var(--purple);
}

.nav-link.active::after {
    width: 100%;
}

/* About Page Styles */
.about-overview {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-4xl);
    margin: var(--space-4xl) 0;
    align-items: start;
}

/* About Call to Action */
.about-cta {
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-top: var(--space-xl);
    text-align: center;
    border: 1px solid rgba(107, 70, 193, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.about-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(107, 70, 193, 0.15);
    border-color: rgba(107, 70, 193, 0.2);
}

.cta-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    display: block;
}

.cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.cta-text {
    font-size: 1rem;
    color: var(--gray-700);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(107, 70, 193, 0.2);
    position: relative;
    overflow: hidden;
}

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

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(107, 70, 193, 0.3);
    background: linear-gradient(135deg, #6B46C1 0%, #5B21B6 50%, #4C1D95 100%);
}

.cta-button:hover::before {
    left: 100%;
}

/* Scroll-triggered paragraph animations */
.paragraph-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-bottom: var(--space-3xl);
}

.paragraph-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.paragraph-content {
    position: relative;
    padding: var(--space-2xl);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 250, 252, 0.9) 100%);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(107, 70, 193, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.6s ease;
}

.paragraph-content:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(107, 70, 193, 0.15);
    border-color: rgba(107, 70, 193, 0.2);
}

.paragraph-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.paragraph-section.animate-in .paragraph-content::before {
    transform: scaleX(1);
}

/* Enhanced scroll separators */
.scroll-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: var(--space-4xl) 0;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.scroll-separator.animate-in {
    opacity: 1;
    transform: scale(1);
}

.separator-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--purple-light) 50%, transparent 100%);
    opacity: 0;
    transform: scaleX(0);
    transition: all 0.8s ease;
}

.scroll-separator.animate-in .separator-line {
    opacity: 1;
    transform: scaleX(1);
}


.overview-content {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--gray-200);
}

.overview-text {
    color: var(--gray-900);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
    text-align: justify;
}

.text-separator {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: var(--space-xl) 0;
}

.text-separator .separator-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--purple-light) 50%, transparent 100%);
    opacity: 1;
    transform: scaleX(1);
}

.text-separator:first-of-type {
    justify-content: flex-end;
}

.text-separator:last-of-type {
    justify-content: flex-start;
}

.separator-icon {
    font-size: 2rem;
    padding: var(--space-sm);
    background: var(--gradient-primary);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(107, 70, 193, 0.3);
    transition: all 0.3s ease;
}

.separator-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(107, 70, 193, 0.4);
}

/* Removed unused overview-stats CSS - not used in any HTML files */

.values-section {
    background-color: var(--white);
    padding: var(--space-6xl) 0;
    position: relative;
    overflow: hidden;
    margin: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.values-section::before {
    display: none;
}

.values-section .container {
    position: relative;
    z-index: 2;
}

.values-section .section-title,
.values-section .section-subtitle {
    color: var(--gray-900);
    text-align: center;
}

.case-studies-cta {
    text-align: center;
    margin-top: var(--space-2xl);
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.cta-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 var(--space-sm) 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-subtext {
    font-size: 1rem;
    color: var(--white);
    margin: 0;
    opacity: 0.9;
    font-style: italic;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-4xl);
}

.value-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: var(--space-lg);
}

.value-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-md);
}

.value-description {
    color: var(--gray-900);
    line-height: 1.6;
    text-align: justify;
}

.ceo-section {
    margin: var(--space-6xl) 0;
}

.ceo-section .section-title {
    color: var(--white) !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.ceo-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: var(--space-xl);
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--gray-200);
    margin-top: var(--space-4xl);
}

.ceo-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ceo-placeholder {
    width: 150px;
    height: 150px;
    background: var(--gradient-card-overlay);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.ceo-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-md);
}

.ceo-bio {
    color: var(--gray-900);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
    text-align: justify;
}

.ceo-credentials {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.credential-item {
    display: flex;
    gap: var(--space-sm);
}

.credential-label {
    font-weight: 600;
    color: var(--gray-700);
    min-width: 120px;
}

.credential-value {
    color: var(--gray-900);
    text-align: justify;
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin: var(--space-6xl) 0;
}

/* Removed unused mission-card and vision-card CSS - not used in any HTML files */

/* AI Tech Stack Styles */
.tech-category {
    margin: 0;
    padding: var(--space-6xl) 0;
}

/* Cloud background for all tech categories */
.tech-category {
    background-image: url('assets/images/hero/main-background/clouds-clean.png') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.tech-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.tech-category .container {
    position: relative;
    z-index: 2;
}

.tech-category .category-title {
    color: var(--white) !important;
}

/* White boxes for all tech grids */
.tech-grid {
    background: var(--white) !important;
    border-radius: var(--radius-xl) !important;
    padding: var(--space-4xl) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    margin: var(--space-2xl) 0 !important;
}

.category-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-4xl);
    text-align: center;
    position: relative;
}


.category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.tech-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--gray-200);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.tech-icon {
    font-size: 3rem;
    margin-bottom: var(--space-lg);
}

.tech-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-md);
}

.tech-description {
    color: var(--gray-900);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
    text-align: justify;
}

.tech-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.feature-tag {
    background: var(--gradient-card-overlay);
    color: var(--purple);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Footer Styles */
.footer {
    background: var(--gradient-hero);
    color: var(--white);
    padding: var(--space-6xl) 0 var(--space-xl);
    margin-top: var(--space-6xl);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr 1fr;
    gap: var(--space-6xl);
    margin-bottom: var(--space-4xl);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    display: inline-block;
    margin-bottom: var(--space-lg);
}

.footer-logo-image {
    height: 150px;
    width: auto;
    max-width: 750px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.footer-logo:hover .footer-logo-image {
    transform: scale(1.05);
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.footer-tagline {
    font-size: 1.5rem;
    font-weight: normal;
    margin: 0;
    background: linear-gradient(45deg, #ffffff, #a78bfa, #60a5fa, #ffffff);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
}

.footer-tagline::after {
    content: " →";
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-tagline:hover {
    transform: scale(1.05);
    animation-duration: 1s;
}

.footer-tagline:hover::after {
    opacity: 1;
    transform: translateX(3px);
}

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

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-lg);
    color: var(--white);
}

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

.footer-nav li {
    margin-bottom: var(--space-sm);
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-link::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-link:hover::before {
    opacity: 1;
    left: -15px;
}

/* Footer Contact Section - Clean Implementation */
.footer-contact {
    display: flex;
    flex-direction: column;
}

.footer-contact .contact-item {
    display: block;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact .contact-label {
    display: block;
    font-weight: 600;
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.footer-contact .contact-text {
    display: block;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.footer-social {
    display: flex;
    flex-direction: column;
}

.social-link {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    margin-bottom: var(--space-md);
}

.social-link:hover {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-link:hover .linkedin-svg {
    fill: var(--white);
    transform: scale(1.1);
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
}

.social-icon {
    font-size: 1.2rem;
}

.linkedin-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.linkedin-svg {
    width: 100%;
    height: 100%;
    fill: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.social-text {
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: var(--space-xl);
    text-align: center;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Section transition */
.section.active {
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ========================================
   CASE STUDIES SECTION - PROFESSIONAL LAYOUT
   ======================================== */

/* Case Studies Section Container - MAIN RULE - DO NOT OVERRIDE */
.case-studies-section {
    padding: 60px 0;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    background: white url('assets/images/hero/main-background/clouds-clean.png') center/cover no-repeat;
    background-attachment: fixed;
}

/* Ensure case study cards maintain their appearance */
.case-studies-section .case-study-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
}

/* Ensure animated node background covers full section width */
.case-studies-section .ai-node-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    transform: translateX(calc(-50vw + 50%));
}

/* Case Studies Content Container */
.case-studies-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

/* Animated Background */
.case-studies-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background: transparent;
}

/* Industries Grid - Clean Layout */
.industries-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    margin: 20px 0 30px 0;
    position: relative;
    z-index: 10;
    align-items: center;
}

/* Case Study Cards - Professional Styling - REMOVED DUPLICATE */

.case-study-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(107, 70, 193, 0.2);
}

/* Expandable Card Styles */
.expandable-card {
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-collapsed {
    display: block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-expanded {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.expandable-card.expanded .card-collapsed {
    display: none;
}

.expandable-card.expanded .card-expanded {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Expand/Collapse Button Styles */
.expand-button, .collapse-button {
    background: linear-gradient(135deg, #6B46C1 0%, #5B21B6 50%, #4C1D95 100%);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 20px auto 0 auto;
    box-shadow: 0 4px 12px rgba(107, 70, 193, 0.3);
    position: relative;
    overflow: hidden;
}

.expand-button:hover, .collapse-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 70, 193, 0.4);
    background: linear-gradient(135deg, #5B21B6 0%, #4C1D95 50%, #3B0764 100%);
}

.button-icon {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.expandable-card.expanded .button-icon {
    transform: rotate(180deg);
}

/* Collapse button specific styling */
.collapse-button {
    background: linear-gradient(135deg, #6B7280 0%, #4B5563 50%, #374151 100%);
    margin-top: 30px;
}

.collapse-button:hover {
    background: linear-gradient(135deg, #4B5563 0%, #374151 50%, #1F2937 100%);
}

/* Title Card Specific Styling */
.title-card {
    text-align: center;
}

.title-card-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.title-card-description {
    color: var(--gray-700);
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 20px 0 0 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Card Specific Styling */
.cta-card {
    text-align: center;
    background: white;
    background-color: white;
    background-image: none;
    position: relative;
    z-index: 3;
    opacity: 1;
    padding: 30px;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cta-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-title {
    color: var(--gray-900);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description {
    color: var(--purple);
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(107, 70, 193, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 70, 193, 0.4);
    color: white;
}

/* ========================================
   UTILITY CLASSES - CONSOLIDATED PATTERNS
   ======================================== */

/* Card Base Styles */
.card-base {
    background: white;
    border: 1px solid rgba(139, 92, 246, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.card-base-large {
    background: white;
    border: 1px solid rgba(139, 92, 246, 0.1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Card Radius Variants */
.card-radius-sm {
    border-radius: 8px;
}

.card-radius-md {
    border-radius: 12px;
}

.card-radius-lg {
    border-radius: 16px;
}

/* Card Padding Variants */
.card-padding-sm {
    padding: 20px;
}

.card-padding-md {
    padding: 30px;
}

.card-padding-lg {
    padding: 40px 30px;
}

/* Gradient Text Utility */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Button Base Styles */
.btn-base {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(107, 70, 193, 0.3);
    cursor: pointer;
}

.btn-base:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(107, 70, 193, 0.4);
    color: white;
}

/* Section Divider */
.section-divider {
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
}

/* AI Section Container */
.ai-section-container {
    padding: 60px 20px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

/* AI Node Background */
.ai-node-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* AI Content Grid */
.ai-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 30px auto;
}

/* Case Study Card Spacing - Integrated into main .case-study-card rule */

/* Additional spacing for case study elements */
.case-study-icon {
    margin-bottom: 8px;
}

.case-study-title {
    margin-bottom: 8px;
    color: var(--gray-900) !important;
}

.case-study-industry {
    margin-bottom: 16px;
    display: block;
}

.case-study-description {
    margin-bottom: 20px;
    flex-grow: 1;
}

.case-study-results {
    margin-bottom: 20px;
}

.learn-more-btn {
    margin-top: auto;
    align-self: center;
}

/* ========================================
   AI SERVICE PAGE - EXTRACTED STYLES
   ======================================== */

/* Hero Section Styles */
.ai-hero-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    background-attachment: fixed;
    margin-bottom: 0;
}

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

.ai-hero-title {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.ai-hero-subtitle {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.ai-hero-cta {
    margin-top: 30px;
}

/* Main Content Container */
.ai-main-container {
    padding: 60px 20px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

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

.ai-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Services Section */
.ai-services-section {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.1);
    margin-bottom: 30px;
}

.ai-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    text-align: center;
}

.ai-section-description {
    font-size: 1.1rem;
    color: var(--gray-700);
    line-height: 1.6;
    margin: 0;
}

/* Service Cards Grid */
.ai-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.ai-2x2-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

/* Service Card Styles */
.ai-service-card {
    /* Using utility classes - compose with multiple classes */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ai-card-icon {
    margin-bottom: 20px;
}

.ai-card-icon-emoji {
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
    line-height: 1.3;
    /* Using gradient text utility */
}

.ai-card-description {
    font-size: 1.1rem;
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.ai-card-button {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(107, 70, 193, 0.3);
}

.ai-card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(107, 70, 193, 0.4);
    color: white;
}

/* Section Headers */
.ai-section-header {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    /* Using gradient text utility */
}

.ai-section-emoji {
    font-size: 2.2rem;
    color: #6B46C1;
}

.ai-section-divider {
    margin-bottom: 25px;
    /* Using section-divider utility class */
}

/* Learn More Button */
.ai-learn-more-container {
    text-align: center;
    margin-bottom: 20px;
}

.ai-learn-more-button {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(107, 70, 193, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
}

.ai-learn-more-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(107, 70, 193, 0.4);
}

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

/* Expandable Content */
.ai-expandable-content {
    display: none;
    margin-bottom: 25px;
}

.ai-expandable-content.expanded {
    display: block;
}

/* Removed duplicate ai-content-grid rule - using the main one above */

/* ai-content-item inherits styles from parent - no specific rules needed */

.ai-content-text {
    color: var(--gray-700);
    line-height: 1.6;
    margin: 0;
}

.ai-content-strong {
    color: var(--gray-900);
}

/* Image Styles */
.ai-content-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Responsive Design */

