/* Reset & Basic Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    outline: none;
}

body {
    background: url('img.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #f8fafc;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* طبقة شفافة فوق الصورة عشان تبرز التصميم */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.85); 
    z-index: -1;
}

.container {
    width: 90%;
    max-width: 1200px;
    text-align: center;
    padding: 40px 20px;
}

header h1 {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: #fff;
    text-shadow: 0 0 10px #0070cc, 0 0 20px #0070cc;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.subtitle {
    font-size: 1.2rem;
    color: #38bdf8;
    letter-spacing: 2px;
    margin-bottom: 50px;
    text-transform: uppercase;
    font-weight: bold;
}

/* Grid System */
.grid-menu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

/* Cards (Store Style) */
.card {
    background: rgba(30, 41, 59, 0.85);
    backdrop-filter: blur(8px);
    border: 2px solid #334155;
    border-radius: 12px;
    padding: 25px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.card:hover, .card:focus {
    transform: translateY(-5px);
    background: rgba(15, 23, 42, 0.95);
    border-color: #0070cc;
    box-shadow: 0 0 15px rgba(0, 112, 204, 0.5);
}

.card-content h2 {
    font-size: 1.8rem;
    margin: 10px 0 5px;
    font-weight: 700;
}

.card-content p {
    font-size: 0.95rem;
    color: #94a3b8;
}

.fw-tag {
    background-color: #0070cc;
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: inline-block;
}

/* Contact Info Box */
.contact-box {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(5px);
    border: 2px solid #38bdf8;
    border-radius: 12px;
    padding: 20px;
    max-width: 500px;
    margin: 0 auto 20px;
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.2);
}

.contact-box h3 {
    color: #38bdf8;
    font-size: 1.1rem;
    margin-bottom: 10px;
    margin-top: 15px;
}

.contact-box h3:first-child {
    margin-top: 0;
}

.contact-box p {
    font-size: 1.1rem;
    font-weight: bold;
    line-height: 1.6;
    letter-spacing: 1px;
}

.copyright {
    font-size: 0.95rem;
    color: #94a3b8;
    margin-top: 20px;
    font-weight: bold;
}

@media (max-width: 600px) {
    header h1 {
        font-size: 2.5rem;
    }
    .grid-menu {
        grid-template-columns: 1fr;
    }
}