/* Additional custom styles for DeepAnalyze.ai landing page */

/* You can add custom styles here that extend the inline styles in index.html */

/* Example: Custom animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Example: Hover effects for cards — no layout shift (no translate) */
.card:hover {
    /* avoid translate/position changes so cards/forms don't move */
    transform: none;
    transition: box-shadow 0.22s ease, transform 0.22s ease;
    box-shadow: 0 10px 24px rgba(16, 24, 40, 0.06);
}

/* Example: Custom button styles */
.btn-custom {
    background: linear-gradient(45deg, #007BFF, #0056B3);
    border: none;
    color: white;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background: linear-gradient(45deg, #0056B3, #003875);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 60px 0;
    }
}

/* Site-level styles moved from index.html */
html, body {
    height: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-wrap {
    flex: 1 0 auto;
}

.hero {
    background: linear-gradient(120deg, #001F3F, #007BFF);
    color: white;
    padding: 100px 0;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
}

.card-icon {
    font-size: 2rem;
    color: #0d6efd;
    margin-bottom: 1rem;
}

.section-title {
    font-weight: 600;
    font-size: 2rem;
}

footer {
    background: #f8f9fa;
}

/* Feature cards styling for product pages */
.feature-card {
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.feature-card .card-body {
    flex: 1 1 auto;
}

.feature-card .card-title {
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.feature-card .card-text {
    color: #495057;
}

/* Subtle hover for feature cards without moving layout */
.feature-card:hover {
    box-shadow: 0 12px 30px rgba(16,24,40,0.08);
}

/* Pricing card styles */
.pricing-card {
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(16,24,40,0.12);
}

.pricing-card .price {
    color: #0d6efd;
    font-weight: 700;
}

.pricing-card .list-unstyled li {
    padding: 0.25rem 0;
}

.pricing-card .border-primary {
    border-width: 2px !important;
}