:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --danger-color: #dc3545;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.btn-cta {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-cta-primary {
    background: #ff6b6b;
    border: none;
    color: white;
}

.btn-cta-primary:hover {
    background: #ff5252;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
}

.btn-cta-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-cta-secondary:hover {
    background: white;
    color: #667eea;
}

.service-card {
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.service-card .card-title {
    color: #1a1a1a;
    font-weight: 600;
}

.blog-card {
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.table-dashboard {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.table-dashboard th {
    background: linear-gradient(135deg, var(--primary-color), #0b5ed7);
    color: white;
    border: none;
    font-weight: 600;
}

.status-paid {
    background: #d4edda;
    color: var(--success-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.mt-5-custom {
    margin-top: 5rem;
}

.section-padding {
    padding: 80px 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .btn-cta {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .service-card .card-img-top {
        height: 180px;
    }
}


/* Add to existing style.css */

.bg-gradient-primary {
    background: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
}

.service-highlight {
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15) !important;
}

.display-1 {
    font-size: 3.5rem !important;
    font-weight: 700;
}

@media (max-width: 768px) {
    .service-highlight {
        margin-bottom: 2rem !important;
    }
}



/* ========================================
   AI SERVICES - FIXED "WHY START" SECTION
========================================= */
.ai-why-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    position: relative;
    overflow: hidden;
}

.ai-why-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.95) 0%, rgba(118, 75, 162, 0.95) 100%);
    z-index: 0;
}

.ai-why-section > .container {
    position: relative;
    z-index: 1;
}

.ai-stats-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.ai-stat-card {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.ai-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.ai-stat-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.ai-stat-card:hover::before {
    left: 100%;
}

.ai-stat-number {
    font-size: 4rem !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    display: block;
}

.ai-stat-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    opacity: 0.95;
}

.ai-stat-desc {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.4;
}

.hindi-highlight {
    font-size: 1.3rem;
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    display: block;
    margin-bottom: 1rem;
}

/* Hindi Text Fix */
.ai-why-section h2 {
    font-size: 2.8rem !important;
    font-weight: 800 !important;
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
    letter-spacing: -0.02em;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .ai-stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .ai-stat-number {
        font-size: 3rem !important;
    }
    
    .ai-why-section h2 {
        font-size: 2rem !important;
    }
    
    .ai-stat-card {
        padding: 2rem 1rem;
    }
}

@media (max-width: 576px) {
    .ai-stat-number {
        font-size: 2.5rem !important;
    }
    
    .service-highlight {
        padding: 1.5rem !important;
    }
}

/* Ensure Bootstrap override */
.ai-why-section * {
    color: white !important;
}

.ai-why-section .text-muted,
.ai-why-section .text-light-50 {
    color: rgba(255,255,255,0.85) !important;
}
