/* style.css - محدث لتصميم أكثر حداثة (flat design, smooth, no clutter) */
:root {
    --primary: #0866ff;
    --secondary: #0d47a1;
    --success: #42b883;
    --danger: #ff5722;
    --warning: #ffc107;
    --info: #17a2b8;
    --light: #f8f9fa;
    --dark: #343a40;
    --bg: #f0f2f5;
    --white: #fff;
    --text: #1c1e21;
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
    --transition: 0.3s ease;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
    background: var(--bg);
    color: var(--text);
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
}

/* Top Nav */
.top-nav {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.nav-logo {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--primary);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
}

.nav-links li a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.nav-links li a:hover {
    color: var(--primary);
}

/* Side Bar */
.side-bar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    left: 0;
    top: 60px;  /* تحت الـ nav */
    width: 250px;
    height: calc(100vh - 60px);
    padding: 20px;
    overflow-y: auto;
    transition: var(--transition);
}

.side-bar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.side-bar li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
}

.side-bar li a:hover {
    background: var(--light);
    color: var(--primary);
}

/* Main Content */
.main-content {
    margin-left: 250px;  /* مساحة للـ sidebar */
    padding-top: 60px;  /* تحت الـ nav */
}

.container {
    max-width: calc(1200px - 250px);
    margin: 0 auto;
    padding: 20px;
}

/* باقي الستايل كما هو في الرسالة السابقة، مع تعديلات خفيفة للحداثة (زي border-radius أكبر، fonts smoother) */
.info-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
    border-radius: 16px;
    padding: 24px;
        background: rgba(20, 20, 40, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(100, 200, 255, 0.2);
    border-radius: 24px;
    padding: 50px 40px;
    width: 400px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

h2 {
    border-radius: 12px;
    padding: 12px 20px;
}

button {
    border-radius: 12px;
    padding: 12px 24px;
}

textarea, input, select {
    border-radius: 12px;
    padding: 12px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Segoe UI', sans-serif;
    min-height: 100vh;
    background: #0f0f1e;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.container {
    background: rgba(20, 20, 40, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(100, 200, 255, 0.2);
    border-radius: 24px;
    padding: 50px 40px;
    width: 400px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}
h1, h2 {
    text-align: center;
    font-weight: 600;
    margin-bottom: 30px;
    color: #ff9b00;
}
input {
    width: 100%;
    padding: 16px 20px;
    margin: 10px 0;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(100, 200, 255, 0.3);
    border-radius: 16px;
    color: white;
    font-size: 16px;
    transition: 0.3s;
}
input:focus {
    outline: none;
    border-color: #ff9b00;
    box-shadow: 0 0 0 3px rgba(100, 200, 255, 0.2);
}
input::placeholder { color: rgba(255,255,255,0.5); }
button, .btn {
    width: 100%;
    padding: 16px;
    margin-top: 20px;
    background: linear-gradient(135deg, #ff9b00, #d4840d);
    border: none;
    border-radius: 16px;
    color: white;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}
button:hover, .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(100, 200, 255, 0.4);
}
p { text-align: center; margin-top: 25px; }
a { color: #ff9b00; text-decoration: none; font-weight: 500; }
a:hover { text-decoration: underline; }




nav.navbar.navbar-expand-lg.navbar-dark {
    background: #000 !important;
}

nav {
    background: #000 !important;
}.btn-primary {
    --bs-btn-color: #fff !important;
    --bs-btn-bg: #ff9b00 !important;
    --bs-btn-border-color: #ff9b00 !important;
    --bs-btn-hover-color: #fff !important;
    --bs-btn-hover-bg: #d4840d !important;
    --bs-btn-hover-border-color: #d4840d !important;
    --bs-btn-focus-shadow-rgb: 49, 132, 253 !important;
    --bs-btn-active-color: #fff !important;
    --bs-btn-active-bg: #d4840d !important;
    --bs-btn-active-border-color: #ff9b00 !important;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125) !important;
    --bs-btn-disabled-color: #fff !important;
    --bs-btn-disabled-bg: #ff9b00 !important;
    --bs-btn-disabled-border-color: #d4840d !important;
}

.navbar {
    background: #000;
}
input {
   width: 100% !important;
    padding: 11px 15px !important;
    margin: 10px 0 !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(100, 200, 255, 0.3) !important;
    border-radius: 16px !important;
    color: white !important;
    font-size: 16px !important;
    transition: 0.3s !important;
}
.form-label {
    margin-bottom: .5rem;
    color: #fff !important;
}.mqf{
        margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 600;
    line-height: 1.2;
    font-size: 12px;
    color: #c1cbcd;
    margin: 0px;
    padding: 0px;
}
@media (max-width: 768px) {
    .side-bar {
        width: 100%;
        height: auto;
        position: static;
        top: 0;
    }
    .main-content {
        margin-left: 0;
    }
}