* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Heebo', sans-serif;
}

body {
    background: #0b0b0b;
    color: white;
    overflow-x: hidden;
    direction: rtl; /* Ensure global RTL */
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    padding: 30px 50px;
    position: fixed;
    width: 100%;
    z-index: 100;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-title {
    font-size: clamp(3rem, 10vw, 6rem); /* Fluid typography */
    font-weight: 900;
}

.hero-title span {
    color: #00e5ff;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin: 25px 0;
    opacity: 0.8;
}

.cta-btn {
    padding: 15px 40px;
    background: #00e5ff;
    border: none;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 50px;
}

/* Cards Section */
.services {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-container {
    display: flex;
    gap: 30px;
}

.card {
    width: 280px;
    height: 380px;
    background: linear-gradient(145deg, #1a1a1a, #000);
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 2rem;
}