:root {
    /* Core Branding Colors */
    --primary: #84bcdd;
    --primary-dark: #2c7bac;
    --primary-light: #A3D4EE;
    --secondary: #00E5D4;
    --accent: #FFC107;
    --dark: #000000;
    --light: #FFFFFF;
    --bg-light: #f1f2f4;
    --bg-white: #ffffff;

    /* Text Colors */
    --text-dark: #212121;
    --text-main: #424242;
    --text-medium: #555555;
    --text-light: #757575;
    --text-muted: rgba(255, 255, 255, 0.7);
    --text-white: #ffffff;
    --heading-color: var(--text-white);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #84bcdd 0%, #6BA4C5 100%);
    --gradient-secondary: linear-gradient(90deg, #212121 0%, #424242 100%);
    --gradient-hero: linear-gradient(135deg, #1a2980 0%, #26d0ce 100%);
    --gradient-cta: linear-gradient(135deg, #1a2980 0%, #26d0ce 100%);
    --gradient-blue: linear-gradient(135deg, #3949ab, #5c6bc0);

    /* Layout & Spacing */
    --container-max-width: 1400px;
    --section-padding-large: 100px 0;
    --section-padding-medium: 80px 0;
    --section-padding-small: 50px 0;

    /* UI Elements */
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --border-radius-full: 50px;
    --shadow-soft: 0 5px 15px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.12);
    --shadow-text: 0 2px 4px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s ease;
    --transition-slow: all 0.6s ease;
}

/* AI INTEGRATION SERVICE PAGE STYLES */
.ai-integration-hero {
    background: url('/static/assets/hero.jpeg') center 40% / cover no-repeat;
    position: relative;
    text-align: center;
    overflow: hidden;
    padding: 5rem 0 0 0;
    min-height: 95vh;
    display: flex;
    align-items: center;
}

.ai-integration-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(147,112,219,0.03)" stroke-width="1"/></pattern></defs><rect width="1200" height="600" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

/* Dark overlay for better text readability */
.ai-integration-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.ai-integration-hero .container {
    position: relative;
    z-index: 10;
}

.ai-integration-hero h1 {
    font-size: 56px;
    color: var(--text-white);
    margin-bottom: 20px;
    font-weight: 700;
    animation: fadeInDown 0.8s ease-out;
    letter-spacing: -1px;
}

.ai-integration-hero p {
    color: var(--text-white);
    animation: fadeInUp 0.8s ease-out 0.2s both;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.ai-integration-services {
    padding: 80px 0;
    background: #ffffff;
}

.aii-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.aii-service-card {
    background: white;
    border: 1px solid #251a53;
    border-radius: 12px;
    padding: 40px 30px;

    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.aii-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(147, 112, 219, 0.1) 0%, rgba(75, 0, 130, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.aii-service-card:hover {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);

    border-color: #9370db;
    color: #fff;
    transform: translateY(-10px);

}

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

.aii-icon {
    font-size: 48px;
    color: #9370db;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.aii-service-card:hover .aii-icon {
    transform: scale(1.1);
}

.aii-service-card h3 {
    color: #556;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.aii-service-card:hover h3 {
    color: #fff;
}

.aii-service-card:hover {
    color: #fff;
    font-size: 22px;
    /* margin-bottom: 15px; */
    font-weight: 600;
}

.aii-service-card p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.6;
}

.ai-integration-features {
    padding: 80px 0;
    background: linear-gradient(180deg, #050505 0%, #0a0a0a 100%);
}

.aii-features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.aii-features-list li {
    color: #ddd;
    font-size: 16px;
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.aii-features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #9370db;
    font-weight: bold;
    font-size: 20px;
}

.aii-cta-btn {
    display: inline-block;
    padding: 15px 40px;
    background: #9370db;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #9370db;
    margin-top: 20px;
}

.aii-cta-btn:hover {
    background: transparent;
    color: #9370db;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(147, 112, 219, 0.3);
}


/* CTA Section */
.ai-integration-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a2980 0%, #26d0ce 100%);
    text-align: center;
}

.ai-integration-cta h2 {
    color: white;
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 900;
}

.ai-integration-cta p {
    color: #bbb;
    font-size: 18px;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.cta-btn {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #84bcdd;
    font-size: 16px;
    margin: 0 10px;
}

.cta-btn.primary {
    background: #84bcdd;
    color: white;
}

.cta-btn.secondary {
    background: transparent;
    color: #84bcdd;
}

.cta-btn.primary:hover {
    background: transparent;
    color: #84bcdd;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(132, 188, 221, 0.3);
}

.cta-btn.secondary:hover {
    background: #84bcdd;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(132, 188, 221, 0.3);
}

@media (max-width: 768px) {
    .ai-integration-hero {
        background: url('/static/assets/Snapchat-1933929992.jpeg') no-repeat center 40%;
        background-size: cover;
        min-height: 95vh;
        padding: 180px 0 100px;
        text-align: center;
        position: relative;
    }

    .ai-integration-hero h1 {
        font-size: 36px;
    }

    .aii-features-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .aii-services-grid {
        grid-template-columns: 1fr;
    }
}

/* Hero Text Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

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

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