﻿:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --text-color: #333;
    --light-bg: #f8f9fa;
}

/* Bootstrap Overrides - Minimal */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    }

.nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 600;
}

/* Card hover effect - Bootstrap classes के साथ */
.card {
    transition: all 0.3s ease;
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 .5rem 2rem rgba(0,0,0,.15) !important;
    }
