:root {
    --bg-color: #0d021a;
    --accent-color: #00d4ff;
    --purple-light: #8a2be2;
    --text-color: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    padding: 20px 0;
    display: flex;
    align-items: center;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #bbb;
    font-size: 14px;
    transition: 0.3s;
}

.nav-links a:hover { color: white; }

.btn-get-started {
    background: white;
    color: black;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    margin-left: 20px;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    background: radial-gradient(circle at 80% 20%, #2a054d 0%, var(--bg-color) 60%);
}

.hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.hero-text { flex: 1; min-width: 300px; }

.hero-text h1 {
    font-size: 50px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-text p { color: #bbb; margin-bottom: 30px; }

.btn-main {
    background: var(--purple-light);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    border: none;
    font-weight: bold;
    cursor: pointer;
}

/* Rotating Graphics */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.circle-container {
    width: 350px;
    height: 350px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.static-center {
    text-align: center;
    z-index: 10;
}

.static-center .number {
    display: block;
    font-size: 48px;
    font-weight: bold;
    color: var(--accent-color);
}

.rotating-images {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotateFull 20s linear infinite;
}

.img-holder {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--accent-color);
}

.img-holder img { width: 100%; height: 100%; object-fit: cover; }

/* توزيع الصور حول الدائرة */
.item-1 { top: -30px; left: 42%; }
.item-2 { top: 20%; right: -20px; }
.item-3 { bottom: 20%; right: -20px; }
.item-4 { bottom: -30px; left: 42%; }
.item-5 { bottom: 20%; left: -20px; }
.item-6 { top: 20%; left: -20px; }

@keyframes rotateFull {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* عكس الدوران للصور عشان وشوش الناس تفضل معدولة */
.img-holder {
    animation: rotateCounter 20s linear infinite;
}

@keyframes rotateCounter {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

/* Footer */
.footer {
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-logo {
    color: var(--accent-color);
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.footer-info p {
    color: #bbb;
    margin: 5px 0;
    font-size: 14px;
}

.footer-social {
    margin: 20px 0;
}

.footer-social a {
    color: white;
    font-size: 20px;
    margin: 0 10px;
    transition: 0.3s;
}

.footer-social a:hover { color: var(--accent-color); }

.footer-bottom {
    margin-top: 30px;
    font-size: 12px;
    color: #666;
}