/* Custom styles for Futurense Referral Portal */

/* General styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

/* Navbar styles */
.navbar-brand img {
    margin-right: 10px;
}

/* Hero section */
.hero-section {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    padding: 80px 0;
    border-radius: 0 0 20px 20px;
    margin-bottom: 30px;
}

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

.hero-section p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Card styles */
.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-weight: 600;
}

/* Form styles */
.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(37, 117, 252, 0.25);
    border-color: #2575fc;
}

.btn-primary {
    background-color: #2575fc;
    border-color: #2575fc;
}

.btn-primary:hover {
    background-color: #1a68e5;
    border-color: #1a68e5;
}

/* Referral form */
.referral-form {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.referral-form h2 {
    color: #2575fc;
    margin-bottom: 20px;
}

/* Dashboard stats */
.stat-card {
    text-align: center;
    padding: 20px;
}

.stat-card .stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #2575fc;
}

.stat-card .stat-label {
    font-size: 1rem;
    color: #6c757d;
}

/* Status badges */
.badge-pending {
    background-color: #ffc107;
}

.badge-contacted {
    background-color: #17a2b8;
}

.badge-enrolled {
    background-color: #28a745;
}

.badge-rejected {
    background-color: #dc3545;
}

/* Footer */
footer {
    margin-top: 50px;
}

footer a:hover {
    text-decoration: underline;
}

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