body {
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    background: #030303;
    color: white;
}

.orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: 50%;
    transform-origin: center;
    transition: border 0.3s ease;
}

.message {
    position: absolute;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    max-width: fit-content;
    font-size: 0.9rem;
    transform-origin: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(23, 23, 23, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.message:hover {
    transform: scale(1.1) translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5), 0 0 60px rgba(79, 70, 229, 0.1);
}

@keyframes orbit {
    from {
        transform: rotate(0deg) translateX(var(--radius)) rotate(0deg);
    }
    to {
        transform: rotate(360deg) translateX(var(--radius)) rotate(-360deg);
    }
}

.nav-gradient-text {
    background: linear-gradient(90deg, #fff, #a0a0a0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.glass-nav {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mobile-sidebar {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(40px) saturate(200%);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.2);
}

.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 0;
    height: 1px;
    background: white;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.service-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.5s ease;
    overflow: hidden;
}

.card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.1);
}

.service-card:hover .card-glow {
    opacity: 1;
}

.icon-container {
    width: 56px;
    height: 56px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon {
    width: 24px;
    height: 24px;
    color: white;
    transition: transform 0.3s ease;
}

.service-card:hover .icon {
    transform: scale(1.1);
}

.card-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.service-content p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.75rem;
    padding-right: 1.5rem;
    position: relative;
    transition: color 0.3s ease;
}

.feature-list li::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: linear-gradient(45deg, #fff, rgba(255, 255, 255, 0.5));
    border-radius: 50%;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.service-card:hover .feature-list li {
    color: rgba(255, 255, 255, 0.7);
}

.service-card:hover .feature-list li::before {
    opacity: 0.6;
    width: 8px;
    height: 8px;
}

.project-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.project-image img {
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-content {
    padding: 1.5rem;
}

.project-content h3 {
    color: white;
    transition: color 0.3s ease;
}

.project-card:hover .project-content h3 {
    color: #fff;
}

.project-tags {
    margin-top: 1rem;
}

.tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.project-card:hover .tag {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.news-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.5s ease;
}

.news-item:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.news-date {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.news-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.news-item:hover .news-title {
    color: #fff;
}

.news-excerpt {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.news-item:hover .tag {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.dots-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.5;
    animation: gridFloat 20s linear infinite;
}

.gradient-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient( circle at 50% 50%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.95) 100%);
}

.tech-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.glow-title {
    font-size: 4.5rem;
    font-weight: 700;
    background: linear-gradient(to right, #fff, #999);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3), 0 0 20px rgba(255, 255, 255, 0.2), 0 0 30px rgba(255, 255, 255, 0.1);
    animation: titlePulse 3s ease-in-out infinite;
    margin-top: 0.75rem;
}

.about-text {
    color: #a3a3a3;
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-card {
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #a3a3a3;
}

.visual-container {
    position: relative;
    height: 500px;
}

.central-svg {
    width: 100%;
    height: 100%;
}

.primary-circle {
    fill: none;
    stroke: white;
    stroke-width: 1;
    opacity: 0.1;
}

.secondary-circle {
    fill: none;
    stroke: white;
    stroke-width: 0.5;
    opacity: 0.05;
}

.tech-card {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 0.75rem;
    backdrop-filter: blur(10px);
    text-align: center;
}

.tech-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.social-icon {
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: white;
    transform: scale(1.2);
}

.footer-link {
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: white;
    padding-right: 10px;
}

.footer-contact {
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-contact svg {
    margin-left: 0.5rem;
}

.footer-contact:hover {
    color: white;
}

.gradient-text {
    background: linear-gradient(90deg, #fff, #999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-icon {
    background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
}

#hero {
    position: relative;
    overflow: hidden;
    height: 100vh;
}

@keyframes gridFloat {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-24px);
    }
}

@keyframes titlePulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes cardFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.float-element {
    position: absolute;
    animation: float 3s ease-in-out infinite;
}

.float-element.delay-0 {
    animation-delay: 0s;
}

.float-element.delay-100 {
    animation-delay: -0.5s;
}

.float-element.delay-200 {
    animation-delay: -1s;
}

.float-element.delay-300 {
    animation-delay: -1.5s;
}

.float-element.delay-400 {
    animation-delay: -2s;
}

.float-element.delay-500 {
    animation-delay: -2.5s;
}

.reveal-text {
    animation: revealText 0.8s ease-out forwards;
}

@keyframes revealText {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.info-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.5s ease;
}

.info-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.primary-button {
    background: #fff;
    color: #000;
    transition: all 0.3s ease;
}

.primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.secondary-button {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.orbital-group {
    animation: rotate 20s linear infinite;
    transform-origin: 200px 200px;
}

.orbital-dot {
    fill: white;
    filter: url(#glow);
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

.grid-dots {
    background-image: radial-gradient(circle, white 1px, transparent 1px);
    background-size: 30px 30px;
}

.section-bg {
    background-color: #030303;
    color: white;
    position: relative;
    overflow: hidden;
}

.animated-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.animated-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    filter: blur(80px);
    animation: float 10s infinite alternate;
}

.timeline-item {
    position: relative;
    padding-right: 20px;
    border-right: 2px solid rgba(255, 255, 255, 0.1);
}

.timeline-item:before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: linear-gradient(45deg, #fff, #a0a0a0);
    border-radius: 50%;
    right: -7px;
    top: 8px;
}

.team-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.team-avatar {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

@keyframes float {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(20px);
    }
}

@media (max-width: 768px) {
    .timeline-item {
        padding-right: 10px;
    }
}

.price-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.price-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.price-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.price-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    color: white;
    width: 40px;
    height: 40px;
}

.feature-list {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.feature-list li {
    position: relative;
    padding-right: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.feature-list li::before {
    position: absolute;
    right: 0;
    color: #4ade80;
}

.cta-button {
    background: white;
    color: black;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(77, 224, 128, 0.3);
}

.news-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.filter-section {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    gap: 1rem;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active {
    background: white;
    color: black;
}

.news-list {
    display: grid;
    gap: 2rem;
}

.news-item {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 2rem;
    transition: all 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
}

.news-date {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.news-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.news-excerpt {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.news-tags {
    display: flex;
    gap: 0.5rem;
}

.tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
}