/* =========================
   GLOBAL THEME
========================= */
:root {
    --bg: #0b0f19;
    --card: #121a2a;
    --text: #ffffff;
    --muted: rgba(255, 255, 255, 0.65);
    --accent: #00d4ff;
    --accent2: #0066ff;
    --radius: 16px;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Cairo', sans-serif;
}



/* =========================
    NAVBAR
========================= */
.u-navbar {
    background: rgba(10, 15, 25, 0.85);
    backdrop-filter: blur(10px);
    
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.u-brand .site-title {
    font-weight: 700;
    color: var(--accent);
}

/* =========================
    HEADER HERO
========================= */
header {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

a.nav-link{
    color: var(--text);
}
a.nav-link:hover {
    color: var(--text);
}

.header-bg {
    position: absolute;
    inset: 0;
    background: url("logo2.jpg") center/cover no-repeat;
    filter: brightness(0.3);
    transform: scale(1.05);
}

.header-content {
    position: relative;
    z-index: 2;
}

.header-content h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
}

.header-content p {
    color: var(--muted);
    max-width: 600px;
    margin: auto;
}

/* CTA Button */
.btn-cta {
    background: linear-gradient(45deg, var(--accent), var(--accent2));
    border: none;
    color: #fff;
    border-radius: 50px;
    padding: 12px 30px;
    transition: 0.3s;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
    -webkit-transform: translateY(-3px);
    -moz-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    -o-transform: translateY(-3px);
}

/* =========================
   CARDS
========================= */
.card {
    background: var(--card);
    border: none;
    border-radius: var(--radius);
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.card:hover {
    transform: translateY(-8px);
}

.card-img-top {
    height: 220px;
    object-fit: cover;
}

/* Price badge */
.badge {
    background: linear-gradient(45deg, var(--accent), var(--accent2));
    padding: 8px 14px;
    border-radius: 50px;
}

/* Text */
.card-title {
    color: #fff;
}

.text-secondary {
    color: var(--muted) !important;
}

/* Button */
.btn-custom {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    border-radius: 50px;
    transition: 0.3s;
}

.btn-custom:hover {
    background: var(--accent);
    color: #000;
}

/* =========================
   FOOTER
========================= */
footer {
    background: #070a12;
    padding: 60px 0;
    margin-top: 60px;
}

footer h5 {
    color: var(--accent);
    margin-bottom: 15px;
}

footer a {
    color: var(--muted);
    text-decoration: none;
}

footer a:hover {
    color: var(--accent);
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width:768px) {
    .header-content h1 {
        font-size: 2rem;
    }
}