/* AI Business Section Custom Styles */

.section-ai-business {
    position: relative;
    overflow: hidden;
}

.section-ai-business::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: 0;
}

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

.ai-benefit-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.ai-benefit-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.15);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.ai-icon-wrapper {
    width: 60px;
    height: 60px;
    background: #FFD700;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.ai-small-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    height: 100%;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.ai-small-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.ai-cta-section {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 50px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
}

.ai-tag {
    background: rgba(255,255,255,0.2);
    padding: 15px 25px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.3);
    display: inline-block;
    margin: 5px;
}

.ai-cta-button {
    background: #FFD700;
    color: #333;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255,215,0,0.4);
    display: inline-block;
    margin: 10px;
}

.ai-cta-button:hover {
    background: #FFC107;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,215,0,0.6);
    color: #333;
    text-decoration: none;
}

.ai-secondary-button {
    background: transparent;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid rgba(255,255,255,0.5);
    transition: all 0.3s ease;
    display: inline-block;
    margin: 10px;
}

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

/* Floating Animation */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.ai-floating-element {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.ai-floating-element:nth-child(2) {
    animation-duration: 8s;
    animation-direction: reverse;
}

.ai-floating-element:nth-child(3) {
    animation-duration: 7s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ai-benefit-card {
        padding: 25px;
        margin-bottom: 20px;
    }
    
    .ai-cta-section {
        padding: 30px 20px;
    }
    
    .ai-icon-wrapper {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }
    
    .ai-tag {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .ai-cta-button,
    .ai-secondary-button {
        padding: 12px 25px;
        font-size: 14px;
        margin: 5px;
        display: block;
        text-align: center;
    }
}

/* AI Business specific improvements */
.ai-list-item {
    color: rgba(255,255,255,0.8);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.ai-list-item::before {
    content: "🤖";
    margin-right: 10px;
    font-size: 16px;
}

/* Gradient text effect */
.ai-gradient-text {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Pulse effect for important elements */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 215, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}

.ai-pulse {
    animation: pulse 2s infinite;
}
