/* Import Almarai Font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&display=swap');

:root {
    /* Brand Colors */
    --primary: #0b3f59;      /* Deep Navy */
    --accent: #b4dc02;       /* Lime Green */
    --accent-hover: #9ec202;
    
    /* Apple-like Palette */
    --bg-off-white: #fbfbfd;
    --text-dark: #1d1d1f;
    --text-light: #86868b;
    --white: #ffffff;
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.72);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-blur: blur(20px);
    --shadow-subtle: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
    
    /* Typography & Spacing */
    --font-main: 'Almarai', sans-serif;
    --container-width: 1200px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-off-white);
    color: var(--text-dark);
    direction: rtl; /* Force Arabic layout */
    text-align: right;
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- Aurora Effect Background --- */
.aurora-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 50% 50%, #fff, #f4f7f8);
    overflow: hidden;
}

.aurora-wrapper::before,
.aurora-wrapper::after {
    content: "";
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.35;
    animation: aurora-move 25s infinite alternate ease-in-out;
}

.aurora-wrapper::before {
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    top: -200px;
    right: -200px;
}

.aurora-wrapper::after {
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    bottom: -300px;
    left: -200px;
    animation-delay: -10s;
}

@keyframes aurora-move {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(15%, 10%) scale(1.2); }
}

/* --- Global Elements --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3 {
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 30%, #1a6d96 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--accent-soft);
    color: var(--primary);
    border: 1px solid var(--accent);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
}