/* خلفية عامة */
body {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Hero */
.hero-section {
    height: 300px;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1586773860418-d37222d8fce3');
    background-size: cover;
    background-position: center;
}

/* الكروت */
.fancy-card {
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    transition: 0.3s;
}

    .fancy-card:hover {
        transform: translateY(-5px);
    }

/* العناوين */
h1, h2, h3 {
    color: #2a5298;
}

/* الأزرار */
.btn-success {
    background: #28a745;
    border: none;
}

.btn-warning {
    background: #ffc107;
    border: none;
}

/* Navbar */
.navbar {
    backdrop-filter: blur(10px);
}

/* نص أبيض */
.text-white {
    color: white !important;
}
