/* General Styling */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f8f9fa; /* Light neutral background */
    color: #334155;
    line-height: 1.6;
}

/* Button Styles */
.btn-custom-blue {
    color: #fff;
    background: linear-gradient(to right, #6d28d9, #8b5cf6); /* Purple gradient */
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-custom-blue:hover {
    background: linear-gradient(to right, #8b5cf6, #6d28d9);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-custom-blue:active {
    transform: translateY(1px);
}

/* Card Styling */
.card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Form Controls */
.form-control {
    border-radius: 10px;
    padding: 12px;
    border: 1px solid #e0f2fe;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #8b5cf6; /* Purple */
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.25);
}

/* Links */
a {
    color: #6d28d9; /* Purple */
    transition: color 0.3s ease;
}

a:hover {
    color: #5b21b6; /* Darker purple */
    text-decoration: none;
}

/* Utility Classes */
.text-primary {
    color: #6d28d9 !important; /* Purple */
}

.bg-primary {
    background-color: #6d28d9 !important; /* Purple */
}

.text-secondary {
    color: #06b6d4 !important; /* Teal */
}

.bg-secondary {
    background-color: #06b6d4 !important; /* Teal */
}

.text-accent {
    color: #f59e0b !important; /* Amber */
}

.bg-accent {
    background-color: #f59e0b !important; /* Amber */
}

/* Shadows */
.shadow-sm {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05) !important;
}

.shadow {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1) !important;
}

.shadow-lg {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
}

/* Animations */
.animate-fade-in {
    animation: fade-in 1s ease-in-out;
}

.animate-slide-up {
    animation: slide-up 0.8s ease-in-out;
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Typography */
h1, .h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fafafa; 
}

h2, .h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #6d28d9; /* Purple */
}

h3, .h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #7c3aed; /* Medium purple */
}

h4, .h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #06b6d4; /* Teal */
}

h5, .h5 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0891b2; /* Darker teal */
}

@media (max-width: 768px) {
    h1, .h1 {
        font-size: 2rem;
    }
    
    h2, .h2 {
        font-size: 1.75rem;
    }
    
    h3, .h3 {
        font-size: 1.5rem;
    }
    
    h4, .h4 {
        font-size: 1.25rem;
    }
    
    h5, .h5 {
        font-size: 1.1rem;
    }
}