/* ════════════════════════════════════════════════════
   ELMANHAG — ABOUT PAGE  |  Premium Dark Theme
   Font: Cairo + Tajawal (Arabic)
════════════════════════════════════════════════════ */

:root {
    --gold:    #D97706;
    --gold-l:  #F59E0B;
    --indigo:  #6366f1;
    --emerald: #10b981;
    --bg:      #07070f;
    --bg2:     #0d0d1a;
    --bg3:     #12121f;
    --glass:   rgba(255,255,255,0.03);
    --glass-b: rgba(255,255,255,0.06);
    --text:    #e8e8f0;
    --muted:   #8888a8;
    --radius:  20px;
    --radius-l:32px;
    --shadow:  0 30px 80px rgba(0,0,0,0.6);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Cairo', 'Tajawal', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

.text-gold { color: var(--gold); }

/* ════════ CUSTOM CURSOR ════════ */
.custom-cursor,
.cursor-follower {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
}
.custom-cursor {
    width: 10px; height: 10px;
    background: var(--gold);
    transition: transform 0.05s;
}
.cursor-follower {
    width: 36px; height: 36px;
    border: 2px solid rgba(217,119,6,0.5);
    margin-top: -18px; margin-left: -18px;
    background: transparent;
}

/* ════════ PARTICLES ════════ */
.particles-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.particle {
    position: absolute;
    background: var(--gold);
    border-radius: 50%;
    animation: floatParticle linear infinite;
}
@keyframes floatParticle {
    0%   { transform: translateY(0) rotate(0deg); opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

/* ════════ NAV ════════ */
.main-nav {
    position: fixed; top: 0; inset-inline: 0;
    z-index: 1000;
    padding: 18px 40px;
    transition: all 0.4s ease;
}
.main-nav.scrolled {
    background: rgba(7,7,15,0.92);
    backdrop-filter: blur(20px);
    padding: 12px 40px;
    border-bottom: 1px solid rgba(217,119,6,0.15);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
}
.nav-brand { flex-shrink: 0; text-decoration: none; }
.nav-links {
    list-style: none;
    display: flex;
    gap: 8px;
    margin: 0 auto;
}
.nav-links a {
    text-decoration: none;
    color: var(--muted);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 10px;
    transition: all 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active {
    color: #fff;
    background: rgba(255,255,255,0.06);
}
.nav-links a.active { color: var(--gold); }
.nav-auth { display: flex; gap: 10px; flex-shrink: 0; }
.btn-ghost {
    padding: 8px 20px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-gold {
    padding: 8px 20px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--gold), var(--gold-l));
    color: #000;
    font-weight: 900;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(217,119,6,0.35); color: #000; }
.nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
.nav-burger span { display: block; width: 26px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ════════ REVEAL ANIMATIONS ════════ */
.reveal-up, .reveal-left, .reveal-right {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--delay, 0s);
}
.reveal-up    { transform: translateY(50px); }
.reveal-left  { transform: translateX(-60px); }
.reveal-right { transform: translateX(60px); }
.reveal-up.visible, .reveal-left.visible, .reveal-right.visible {
    opacity: 1;
    transform: none;
}

/* ════════ HERO ════════ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 160px 0 100px;
    overflow: hidden;
    z-index: 1;
}
.hero-container { position: relative; z-index: 2; text-align: center; }

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}
.hero-orb-1 {
    width: 600px; height: 600px;
    background: rgba(217,119,6,0.12);
    top: -200px; right: -200px;
    animation: orbFloat 12s ease-in-out infinite;
}
.hero-orb-2 {
    width: 400px; height: 400px;
    background: rgba(99,102,241,0.08);
    bottom: -100px; left: -100px;
    animation: orbFloat 16s ease-in-out infinite reverse;
}
.hero-orb-3 {
    width: 300px; height: 300px;
    background: rgba(16,185,129,0.06);
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    animation: orbFloat 20s ease-in-out infinite;
}
@keyframes orbFloat {
    0%,100% { transform: translate(0,0) scale(1); }
    50%      { transform: translate(30px,-30px) scale(1.1); }
}

.hero-grid-lines {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(217,119,6,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(217,119,6,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridShift 30s linear infinite;
}
@keyframes gridShift {
    0%   { background-position: 0 0; }
    100% { background-position: 60px 60px; }
}

.breadcrumb-bar {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 28px;
}
.breadcrumb-bar a { color: var(--muted); text-decoration: none; transition: color 0.3s; }
.breadcrumb-bar a:hover { color: var(--gold); }
.sep { font-size: 0.7rem; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(217,119,6,0.1);
    border: 1px solid rgba(217,119,6,0.25);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--gold);
    margin-bottom: 28px;
    animation: pulse-glow 3s ease-in-out infinite;
}
@keyframes pulse-glow {
    0%,100% { box-shadow: 0 0 0 0 rgba(217,119,6,0); }
    50%      { box-shadow: 0 0 20px 4px rgba(217,119,6,0.15); }
}

.hero-title {
    font-size: clamp(4rem, 12vw, 9rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 28px;
    font-family: 'Tajawal', sans-serif;
}
.line-gold {
    display: block;
    background: linear-gradient(135deg, var(--gold), var(--gold-l), #fff5c2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s linear infinite;
    background-size: 200% auto;
}
@keyframes shimmer {
    to { background-position: 200% center; }
}
.line-white {
    display: block;
    color: #fff;
    text-shadow: 0 0 80px rgba(217,119,6,0.3);
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--muted);
    line-height: 2;
    max-width: 680px;
    margin: 0 auto 40px;
}
.hero-desc strong { color: var(--gold-l); }

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.stat-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--glass);
    border: 1px solid var(--glass-b);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    backdrop-filter: blur(8px);
    transition: all 0.3s;
}
.stat-pill:hover { border-color: rgba(217,119,6,0.3); background: rgba(217,119,6,0.07); }
.stat-pill i { color: var(--gold); }
.stat-pill strong { color: #fff; }

.hero-scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 0.8rem;
    animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(8px); }
}
.scroll-mouse {
    width: 22px; height: 36px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}
.scroll-wheel {
    width: 4px; height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: wheelScroll 2s ease-in-out infinite;
}
@keyframes wheelScroll {
    0%   { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(14px); opacity: 0; }
}

/* ════════ SHARED SECTION STYLES ════════ */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(217,119,6,0.1);
    border: 1px solid rgba(217,119,6,0.2);
    color: var(--gold);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 16px;
}
.section-heading {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
    font-family: 'Tajawal', sans-serif;
}
.section-sub {
    color: var(--muted);
    font-size: 1.05rem;
    margin-bottom: 60px;
    max-width: 580px;
}

/* ════════ SERVICES ════════ */
.services-section {
    position: relative;
    z-index: 1;
    padding: 120px 0;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    position: relative;
    background: var(--glass);
    border: 1px solid var(--glass-b);
    border-radius: var(--radius-l);
    padding: 40px 32px;
    overflow: hidden;
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
}
.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(217,119,6,0.06), transparent);
    opacity: 0;
    transition: opacity 0.4s;
    border-radius: inherit;
}
.service-card:hover {
    transform: translateY(-12px);
    border-color: rgba(217,119,6,0.3);
    box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.service-card:hover::before { opacity: 1; }
.svc-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, rgba(217,119,6,0.15), rgba(217,119,6,0.04));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--ic, var(--gold));
    margin-bottom: 24px;
    transition: transform 0.4s ease;
}
.service-card:hover .svc-icon {
    transform: rotate(10deg) scale(1.1);
}
.service-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    transition: color 0.3s;
}
.service-card:hover h3 { color: var(--gold); }
.service-card p { color: var(--muted); line-height: 1.8; font-size: 0.95rem; }
.svc-number {
    position: absolute;
    bottom: 20px; left: 28px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255,255,255,0.03);
    font-family: 'Tajawal', sans-serif;
    line-height: 1;
    transition: color 0.4s;
}
.service-card:hover .svc-number { color: rgba(217,119,6,0.06); }

/* ════════ MISSION / VISION ════════ */
.mv-section {
    position: relative;
    z-index: 1;
    padding: 120px 0;
    overflow: hidden;
}
.mv-bg-pattern {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 0% 50%, rgba(217,119,6,0.06) 0%, transparent 60%),
        radial-gradient(ellipse 80% 50% at 100% 50%, rgba(99,102,241,0.05) 0%, transparent 60%);
    pointer-events: none;
}
.mv-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: center;
}
.mv-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
    border: 1px solid rgba(217,119,6,0.15);
    border-radius: var(--radius-l);
    padding: 50px 44px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    backdrop-filter: blur(12px);
}
.mv-card:hover {
    transform: translateY(-12px);
    border-color: rgba(217,119,6,0.4);
    box-shadow: 0 30px 70px rgba(0,0,0,0.5);
}
.mv-vision {
    border-color: rgba(99,102,241,0.15);
}
.mv-vision:hover { border-color: rgba(99,102,241,0.45); }

.mv-ribbon {
    display: inline-block;
    background: linear-gradient(90deg, var(--gold), var(--gold-l));
    color: #000;
    font-weight: 900;
    font-size: 0.85rem;
    padding: 5px 18px;
    border-radius: 50px;
    margin-bottom: 30px;
}
.mv-ribbon-blue {
    background: linear-gradient(90deg, #6366f1, #818cf8);
    color: #fff;
}
.mv-big-icon {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 24px;
    display: inline-block;
    transition: transform 0.5s ease;
}
.mv-card:hover .mv-big-icon { transform: scale(1.15) rotate(8deg); }
.mv-big-icon-blue { color: var(--indigo); }
.mv-card h3 {
    font-size: 1.7rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
    font-family: 'Tajawal', sans-serif;
}
.mv-card p { color: var(--muted); line-height: 1.9; margin-bottom: 24px; }
.mv-points { list-style: none; }
.mv-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.95rem;
}
.mv-points li i { color: var(--gold); font-size: 0.8rem; }
.mv-vision .mv-points li i { color: var(--indigo); }

.mv-divider {
    display: flex;
    align-items: center;
    justify-content: center;
}
.mv-divider-circle {
    width: 70px; height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(217,119,6,0.15), rgba(99,102,241,0.1));
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--gold);
    animation: spin-slow 20s linear infinite;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }
@keyframes border-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(217,119,6,0.2); transform: scale(1); }
    50% { box-shadow: 0 0 40px rgba(217,119,6,0.4); transform: scale(1.02); }
}

/* ════════ TEAM SECTION ════════ */
.team-section {
    position: relative;
    z-index: 1;
    padding: 120px 0;
    text-align: center;
}
.team-section .section-sub { margin: 0 auto 60px; }

/* FOUNDER */
.founder-wrapper { margin-bottom: 80px; }
.founder-card {
    position: relative;
    background: linear-gradient(145deg, #111118, #1a1a28);
    border: 1px solid rgba(217,119,6,0.25);
    border-radius: 40px;
    padding: 60px 50px;
    display: flex;
    align-items: center;
    gap: 60px;
    text-align: right;
    overflow: hidden;
    transition: all 0.6s ease;
    box-shadow: 0 40px 100px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.05);
}
.founder-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 50px 120px rgba(217,119,6,0.2), inset 0 1px 0 rgba(255,255,255,0.07);
}
.founder-glow {
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(217,119,6,0.1), transparent 70%);
    top: 50%; left: 40%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: orbFloat 8s ease-in-out infinite;
}
.founder-crown {
    position: absolute;
    top: 24px; left: 30px;
    font-size: 1.4rem;
    color: var(--gold);
    animation: crownFloat 3s ease-in-out infinite;
}
@keyframes crownFloat {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}

.founder-photo-ring { flex-shrink: 0; position: relative; }
.ring-outer {
    width: 220px; height: 220px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-l), #fff7d6);
    padding: 6px;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 30px rgba(217,119,6,0.3);
    animation: border-pulse 4s ease-in-out infinite;
}
.ring-inner {
    width: 100%; height: 100%;
    border-radius: 50%;
    background: #111118;
    padding: 8px;
}
.founder-img {
    width: 100%; height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}
.founder-info { flex: 1; }
.founder-badge {
    display: inline-block;
    background: rgba(217,119,6,0.12);
    border: 1px solid rgba(217,119,6,0.3);
    color: var(--gold);
    padding: 5px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 16px;
}
.founder-name {
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
    font-family: 'Tajawal', sans-serif;
}
.founder-name span { color: var(--gold); }
.founder-bio { color: var(--muted); line-height: 1.9; margin-bottom: 24px; font-size: 1rem; }
.founder-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.founder-tags span {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 5px 14px;
    border-radius: 8px;
    font-size: 0.82rem;
    color: var(--muted);
}
.founder-tags span i { color: var(--gold); margin-left: 5px; }
.founder-socials { display: flex; gap: 10px; }
.soc-btn {
    width: 42px; height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: #fff;
}
.soc-btn:hover { transform: translateY(-3px); }
.soc-linkedin:hover { background: #0a66c2; border-color: #0a66c2; color: #fff; }
.soc-github:hover  { background: #333; border-color: #555; color: #fff; }
.soc-web:hover     { background: var(--gold); border-color: var(--gold); color: #000; }
.soc-wa:hover      { background: #25d366; border-color: #25d366; color: #fff; }

/* TEAM DIVIDER */
.team-divider {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 70px 0 50px;
}
.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(217,119,6,0.2), transparent);
}
.divider-title {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-weight: 800;
    font-size: 1.05rem;
    white-space: nowrap;
    padding: 8px 22px;
    background: rgba(217,119,6,0.07);
    border: 1px solid rgba(217,119,6,0.2);
    border-radius: 50px;
}

/* TEACHERS GRID */
.teachers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 20px;
}
.teacher-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-l);
    overflow: hidden;
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.teacher-card:hover {
    transform: translateY(-16px);
    border-color: rgba(217,119,6,0.35);
    box-shadow: 0 28px 70px rgba(0,0,0,0.5);
}
.tc-photo-wrap {
    position: relative;
    height: 260px;
    overflow: hidden;
}
.tc-photo-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.teacher-card:hover .tc-photo-wrap img { transform: scale(1.07); }
.tc-subject-badge {
    position: absolute;
    top: 16px; right: 16px;
    background: var(--bc, var(--gold));
    color: #000;
    font-weight: 900;
    font-size: 0.8rem;
    padding: 5px 14px;
    border-radius: 50px;
}
.tc-info { padding: 24px 28px 28px; text-align: right; }
.tc-info h4 {
    font-size: 1.25rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 8px;
    transition: color 0.3s;
}
.teacher-card:hover .tc-info h4 { color: var(--gold); }
.nick { color: var(--gold); font-size: 0.9rem; }
.tc-info p { color: var(--muted); font-size: 0.9rem; margin-bottom: 16px; line-height: 1.6; }
.tc-socials { display: flex; gap: 8px; }
.tc-socials a {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s;
}
.tc-socials a:hover { background: var(--gold); border-color: var(--gold); color: #000; }

/* CONTENT TEAM GRID */
.content-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.mini-card {
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-l);
    padding: 40px 24px 32px;
    text-align: center;
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    cursor: default;
}
.mini-card:hover {
    transform: translateY(-16px);
    border-color: rgba(217,119,6,0.35);
    background: rgba(217,119,6,0.05);
    box-shadow: 0 28px 70px rgba(0,0,0,0.5);
}
.mini-card img {
    width: 100px; height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.1);
    margin-bottom: 20px;
    transition: all 0.4s;
}
.mini-card:hover img { border-color: var(--gold); transform: scale(1.1); }
.mini-card-info h6 {
    font-size: 0.9rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}
.mini-card-info span { color: var(--muted); font-size: 0.8rem; }
.mini-card-hover {
    position: absolute;
    inset: 0;
    background: rgba(217,119,6,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: rgba(217,119,6,0.15);
    transition: all 0.4s;
    pointer-events: none;
}
.mini-card:hover .mini-card-hover { color: rgba(217,119,6,0.08); }

/* HOSTING */
.hosting-intro {
    max-width: 820px;
    margin: -20px auto 34px;
    text-align: center;
}

.hosting-intro p {
    color: rgba(232, 232, 240, 0.72);
    font-size: 1.02rem;
    line-height: 1.9;
    margin: 0;
}

.hosting-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    align-items: stretch;
}

.hosting-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(2,132,199,0.1), rgba(217,119,6,0.07)),
        rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 36px 30px;
    text-align: center;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    width: 100%;
    min-height: 100%;
}

.hosting-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(245,158,11,0.16), transparent 38%);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: -1;
}

.hosting-card:hover {
    transform: translateY(-8px);
    border-color: rgba(217,119,6,0.38);
    box-shadow: 0 28px 70px rgba(0,0,0,0.46);
}

.hosting-card:hover::before { opacity: 1; }

.hosting-icon-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 22px;
}
.hosting-icon-wrap img {
    width: 150px;
    height: 150px;
    border-radius: 22px;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 18px 45px rgba(0,0,0,0.38);
    transition: transform 0.45s ease, border-color 0.45s ease;
}
.hosting-card:hover .hosting-icon-wrap img { transform: scale(1.035); border-color: rgba(217,119,6,0.5); }
.hosting-badge {
    position: absolute;
    bottom: -10px;
    left: -10px;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--gold), #0284c7);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    border: 4px solid var(--bg);
}

.hosting-role {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 7px 14px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: rgba(217,119,6,0.1);
    border: 1px solid rgba(217,119,6,0.22);
    color: #fbbf24;
    font-size: 0.8rem;
    font-weight: 900;
}

.hosting-card h4 {
    font-size: 1.4rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
}
.hosting-card p {
    color: var(--muted);
    line-height: 1.8;
    margin: 0 auto 22px;
    max-width: 440px;
}
.hosting-skills { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.hosting-skills span {
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(232,232,240,0.86);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 6px 13px;
    border-radius: 50px;
}

/* ════════ CTA SECTION ════════ */
.cta-section {
    position: relative;
    z-index: 1;
    padding: 140px 0;
    overflow: hidden;
    text-align: center;
}
.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}
.cta-orb-1 {
    width: 500px; height: 500px;
    background: rgba(217,119,6,0.1);
    top: -200px; right: -100px;
}
.cta-orb-2 {
    width: 400px; height: 400px;
    background: rgba(99,102,241,0.07);
    bottom: -150px; left: -100px;
}
.cta-content {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, rgba(217,119,6,0.08), rgba(99,102,241,0.05), rgba(7,7,15,0.9));
    border: 1px solid rgba(217,119,6,0.2);
    border-radius: 48px;
    padding: 100px 60px;
    max-width: 900px;
    margin: 0 auto;
    backdrop-filter: blur(12px);
    transition: all 0.5s ease;
}
.cta-content:hover {
    border-color: rgba(217,119,6,0.4);
    box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 80px rgba(217,119,6,0.07);
}
.cta-icon-big {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 28px;
    animation: rocketFloat 2.5s ease-in-out infinite;
}
@keyframes rocketFloat {
    0%,100% { transform: translateY(0) rotate(-10deg); }
    50%      { transform: translateY(-10px) rotate(10deg); }
}
.cta-content h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 18px;
    font-family: 'Tajawal', sans-serif;
}
.cta-content p { color: var(--muted); font-size: 1.1rem; margin-bottom: 44px; }
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold), var(--gold-l));
    color: #000;
    font-weight: 900;
    font-size: 1.05rem;
    padding: 16px 40px;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.35s ease;
    box-shadow: 0 8px 30px rgba(217,119,6,0.3);
}
.cta-primary:hover { transform: translateY(-4px) scale(1.04); box-shadow: 0 16px 40px rgba(217,119,6,0.45); color: #000; }
.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 16px 40px;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.35s ease;
}
.cta-secondary:hover { border-color: var(--gold); color: var(--gold); background: rgba(217,119,6,0.07); transform: translateY(-4px); }

/* ════════ FOOTER ════════ */
.site-footer {
    background: var(--bg2);
    border-top: 1px solid rgba(255,255,255,0.04);
    padding: 70px 0 30px;
    position: relative;
    z-index: 1;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 50px;
}
.footer-brand p { color: var(--muted); margin-top: 18px; line-height: 1.8; }
.footer-links-col h5,
.footer-contact-col h5 {
    color: #fff;
    font-weight: 800;
    margin-bottom: 20px;
    font-size: 1rem;
}
.footer-links-col ul { list-style: none; }
.footer-links-col ul li { margin-bottom: 10px; }
.footer-links-col ul a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.92rem;
    transition: all 0.3s;
}
.footer-links-col ul a:hover { color: var(--gold); padding-right: 6px; }
.footer-contact-col { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-col a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
}
.footer-contact-col a:hover { color: var(--gold); }
.footer-contact-col a i { color: var(--gold); width: 16px; text-align: center; }
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.04);
    color: var(--muted);
    font-size: 0.88rem;
}

/* ════════ RESPONSIVE ════════ */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .mv-grid { grid-template-columns: 1fr; }
    .mv-divider { display: none; }
    .teachers-grid { grid-template-columns: repeat(2, 1fr); }
    .content-team-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .main-nav { padding: 14px 20px; }
    .nav-links {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(7,7,15,0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        font-size: 1.2rem;
    }
    .nav-links.open { display: flex; }
    .nav-auth { display: none; }
    .nav-burger { display: flex; }
    .founder-card { flex-direction: column; text-align: center; padding: 40px 24px; gap: 36px; }
    .founder-tags, .founder-socials { justify-content: center; }
    .services-grid { grid-template-columns: 1fr; }
    .teachers-grid { grid-template-columns: 1fr; }
    .content-team-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .cta-content { padding: 60px 24px; }
    .hero-stats { flex-direction: column; align-items: center; }
    .tc-photo-wrap { height: 220px; }
    .custom-cursor, .cursor-follower { display: none; }
    body { cursor: auto; }
}

@media (max-width: 480px) {
    .content-team-grid { grid-template-columns: 1fr; }
}
