/* ===== CSS Variables - Blue Theme ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Cairo:wght@400;600;700;800&display=swap');

:root {
    --primary-blue: #2563eb;
    --secondary-blue: #3b82f6;
    --light-blue: #60a5fa;
    --dark-blue: #1e3a8a;
    --deep-blue: #ffffff;
    --navy-blue: #f8fafc;
    --sky-blue: #0ea5e9;
    --accent-blue: #2563eb;
    --blue-50: #eff6ff;
    --blue-100: #dbeafe;
    --blue-200: #bfdbfe;
    --sky-50: #f0f9ff;
    --sky-100: #e0f2fe;
    --section-hero-bg: var(--sky-50);
    --section-stats-bg: var(--blue-100);
    --section-values-bg: var(--sky-100);
    --section-services-bg: var(--blue-50);
    --section-events-bg: var(--blue-200);
    --section-news-bg: var(--blue-50);
    --section-contact-bg: var(--sky-100);
    --section-business-bg: var(--blue-100);
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #60a5fa 100%);
    --gradient-secondary: linear-gradient(135deg, #eef2ff 0%, #ffffff 50%, #f8fafc 100%);
    --gradient-light: linear-gradient(135deg, #2563eb 0%, #60a5fa 50%, #0ea5e9 100%);
    --text-light: #0f172a;
    --text-gray: #475569;
    --shadow-blue: rgba(37, 99, 235, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter','Cairo',system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,'Helvetica Neue',Arial,'Noto Sans',sans-serif;
    background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 55%, #eaf4ff 100%);
    color: var(--text-light);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* ===== Navigation ===== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #3b82f6 100%);
    backdrop-filter: blur(15px);
    padding: 1rem 5%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.15);
    transition: all 0.3s ease;
}

nav.scrolled {
    padding: 0.8rem 5%;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #3b82f6 100%);
}

nav .container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-light);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInDown 0.8s ease;
    letter-spacing: -0.5px;
}
.logo img {
    display: block;
    height: 42px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 500;
    padding: 0.5rem 0;
}

.nav-links a:hover {
    color: #93c5fd;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-light);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover::after {
    width: 100%;
}

.lang-switch {
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    color: #ffffff;
}

.lang-switch:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--accent-blue);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== Hero Section with Animated Background ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--section-hero-bg);
    position: relative;
    overflow: hidden;
    padding: 0 5%;
    padding-top: 80px;
}

/* Animated Background Elements */
.hero::before,
.hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
}

.hero::before {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15), transparent);
    top: -300px;
    right: -300px;
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.3), transparent);
    bottom: -250px;
    left: -250px;
    animation: float 25s ease-in-out infinite reverse;
}

/* Additional Floating Elements */
.hero-floating {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.2);
    filter: blur(40px);
    animation: float 15s ease-in-out infinite;
}

.hero-orb:nth-child(1) {
    width: 300px;
    height: 300px;
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.hero-orb:nth-child(2) {
    width: 200px;
    height: 200px;
    bottom: 30%;
    left: 15%;
    animation-delay: 5s;
}

.hero-orb:nth-child(3) {
    width: 250px;
    height: 250px;
    top: 50%;
    right: 30%;
    animation-delay: 10s;
}

.hero-content {
    max-width: 1200px;
    text-align: center;
    z-index: 1;
    animation: fadeInUp 1s ease;
    position: relative;
}

.hero-network-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.hero-rotator {
    display: block;
    margin-top: 0.2rem;
    font-size: clamp(1rem, 3vw, 1.4rem);
    background: linear-gradient(90deg, #60a5fa, #93c5fd, #38bdf8, #60a5fa);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shine 6s ease-in-out infinite;
    font-size: 40pxs;
}
.hero-rotator::after {
    content: '|';
    margin-left: 6px;
    color: #93c5fd;
    animation: blink 1s steps(1, start) infinite;
}

.hero .hero-title {
    margin-bottom: 0.25rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin-bottom: 2rem;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero p {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: var(--text-gray);
    margin-bottom: 3rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.5s both;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--gradient-light);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px var(--shadow-blue);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease 0.7s both;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px var(--shadow-blue);
}

/* ===== Stats Section with Cards ===== */
.stats {
    padding: 6rem 5%;
    background: var(--section-stats-bg);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(14, 165, 233, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    padding: 3rem 2rem;
    background: #1e40af;
    border-radius: 25px;
    border: 0;
    box-shadow: 0 15px 35px rgba(37,99,235,0.25);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.1;
    transition: left 0.5s ease;
}

.stat-card:hover::before {
    left: 0;
}

.stat-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 30px 60px rgba(37, 99, 235, 0.4);
}

.stat-number {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    background: var(--gradient-light);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    display: block;
}

.stat-label {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

/* ===== About Section with Unique Design ===== */
.about {
    padding: 8rem 5%;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.2), transparent);
    border-radius: 50%;
    top: -400px;
    left: -400px;
    animation: rotate 30s linear infinite;
}

.about-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 6vw, 3.5rem);
    margin-bottom: 1rem;
    background: var(--gradient-light);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -1px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 4rem;
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 400;
}

.about-content {
    background: #ffffff;
    padding: 4rem;
    border-radius: 30px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 30px rgba(15,23,42,0.06);
    position: relative;
    overflow: hidden;
}

.about-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-light);
    transform: scaleY(0);
    transition: transform 1s ease;
}

.about-content.scroll-animate.active::before {
    transform: scaleY(1);
}

.about-content p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 2;
    color: var(--text-gray);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.split-section {
    padding: 6rem 5%;
    position: relative;
    overflow: hidden;
}
.split-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}
.split-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(15,23,42,0.1);
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(15,23,42,0.06);
}
.split-card .bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.65);
}
.split-card .content {
    position: relative;
    padding: 3rem;
}
.split-card h3 {
    font-size: clamp(1.8rem,3vw,2.2rem);
    color: var(--accent-blue);
    margin-bottom: 1rem;
    font-weight: 800;
}
.split-card p {
    color: var(--text-gray);
    line-height: 1.9;
}

/* ===== Values Section with Cards ===== */
.values {
    padding: 8rem 5%;
    background: var(--section-values-bg);
    position: relative;
    overflow: hidden;
}

.values::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.15), transparent);
    border-radius: 50%;
    bottom: -300px;
    right: -300px;
    animation: pulse 8s ease-in-out infinite;
}

.values-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.value-card {
    padding: 3rem;
    background: #0ea5e9;
    border-radius: 25px;
    border: 0;
    box-shadow: 0 15px 35px rgba(14,165,233,0.35);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.value-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.value-card:hover::after {
    width: 300px;
    height: 300px;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(14,165,233,0.45);
}

.value-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 1;
    color: #ffffff;
}

.value-card:hover .value-icon {
    transform: scale(1.2) rotate(10deg);
}

.value-card h3 {
    font-size: clamp(1.5rem, 3vw, 1.8rem);
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.value-card p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.8;
    color: rgba(255,255,255,0.92);
    position: relative;
    z-index: 1;
}

/* ===== Services Section ===== */
.services {
    padding: 8rem 5%;
    background: var(--section-services-bg);
    position: relative;
    overflow: hidden;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.service-card {
    padding: 3rem;
    background: #2563eb;
    border-radius: 25px;
    border: 0;
    box-shadow: 0 15px 35px rgba(37,99,235,0.35);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    transform: translate(50%, -50%);
    opacity: 0.1;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.service-card:hover::before {
    transform: translate(0, 0) scale(3);
    opacity: 0.2;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(37, 99, 235, 0.45);
}

.service-card h3 {
    font-size: clamp(1.5rem, 3vw, 1.8rem);
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.service-card ul {
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 1;
}

.service-card li {
    padding: 1rem 0;
    color: rgba(255,255,255,0.9);
    font-size: clamp(1rem, 2vw, 1.1rem);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    padding-right: 2rem;
}

[dir="rtl"] .service-card li {
    padding-right: 0;
    padding-left: 2rem;
}

.service-card li:hover {
    color: #ffffff;
    transform: translateX(5px);
}

[dir="rtl"] .service-card li:hover {
    transform: translateX(-5px);
}

.service-card li:before {
    content: "✓ ";
    color: #ffffff;
    font-weight: bold;
    margin-left: 0.5rem;
    position: absolute;
    right: 0;
}

[dir="rtl"] .service-card li:before {
    margin-left: 0;
    margin-right: 0.5rem;
    right: auto;
    left: 0;
}

/* ===== Events Section with Slider ===== */
.events {
    padding: 8rem 5%;
    background: var(--section-events-bg);
    position: relative;
    overflow: hidden;
}

.events-slider {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.events-slider-wrapper {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 2rem 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(59, 130, 246, 0.5) transparent;
}

.events-slider-wrapper::-webkit-scrollbar {
    height: 8px;
}

.events-slider-wrapper::-webkit-scrollbar-track {
    background: rgba(30, 41, 59, 0.5);
    border-radius: 10px;
}

.events-slider-wrapper::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 10px;
}

.event-card {
    min-width: 350px;
    background: #3b82f6;
    border-radius: 25px;
    overflow: hidden;
    border: 0;
    box-shadow: 0 15px 35px rgba(59,130,246,0.35);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    scroll-snap-align: start;
    position: relative;
    color: #ffffff;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.event-card:hover::before {
    opacity: 0.1;
}

.event-card:hover {
    transform: scale(1.05);
    border-color: var(--light-blue);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.4);
}

.event-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 1;
}

.event-card:hover img {
    transform: scale(1.1);
}

.event-content {
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.event-content h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.event-date, .event-location {
    color: rgba(255,255,255,0.85);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-content p {
    color: rgba(255,255,255,0.92);
    line-height: 1.6;
    margin-top: 1rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(15, 23, 42, 0.1);
    background: #ffffff;
    color: var(--accent-blue);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.slider-btn:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: scale(1.1);
}

/* ===== News Section with Grid ===== */
.news {
    padding: 8rem 5%;
    background: var(--section-news-bg);
    position: relative;
    overflow: hidden;
}

.news-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.news-card {
    background: #1e3a8a;
    border-radius: 25px;
    overflow: hidden;
    border: 0;
    box-shadow: 0 15px 35px rgba(37,99,235,0.35);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.news-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.news-card:hover::after {
    transform: scaleX(1);
}

.news-card:hover {
    transform: translateY(-10px);
    border-color: var(--light-blue);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.3);
}

.news-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover img {
    transform: scale(1.1);
}

.news-content {
    padding: 2rem;
}

.news-date {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-content h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.news-content p {
    color: rgba(255,255,255,0.92);
    line-height: 1.6;
}

/* ===== Contact Section ===== */
.contact {
    padding: 8rem 5%;
    background: var(--section-contact-bg);
    position: relative;
    overflow: hidden;
}

.business {
    padding: 8rem 5%;
    background: var(--section-business-bg);
    position: relative;
    overflow: hidden;
}
.business-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}
.business-card {
    border-radius: 20px;
    background: #1d4ed8;
    box-shadow: 0 15px 35px rgba(29,78,216,0.25);
    overflow: hidden;
    color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.business-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(29,78,216,0.35);
}
.business-logo {
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.business-logo img {
    max-height: 64px;
    max-width: 100%;
}
.logo-placeholder {
    font-size: 2.2rem;
    color: rgba(255,255,255,0.85);
}
.business-info {
    padding: 1.5rem 2rem;
}
.business-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #ffffff;
}
.visit-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.95);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.5);
    padding-bottom: 2px;
}
.visit-link:hover {
    color: #ffffff;
    border-bottom-color: #ffffff;
}

.contact::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(14, 165, 233, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.contact-card {
    padding: 3rem;
    background: #0ea5e9;
    border-radius: 25px;
    border: 0;
    box-shadow: 0 15px 35px rgba(59,130,246,0.35);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1), transparent);
    transform: rotate(45deg);
    transition: transform 0.6s ease;
}

.contact-card:hover::before {
    transform: rotate(45deg) scale(1.2);
}

.contact-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(59, 130, 246, 0.5);
}

.contact-card h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #ffffff;
    margin-bottom: 2rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.contact-info {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: rgba(255,255,255,0.92);
    line-height: 2;
    position: relative;
    z-index: 1;
}

.contact-info a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.contact-info a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: rgba(255,255,255,0.8);
    transition: width 0.3s ease;
}

.contact-info a:hover::after {
    width: 100%;
}

.contact-info a:hover {
    color: var(--sky-blue);
}

/* ===== Footer ===== */
footer {
    padding: 3rem 5%;
    background: var(--deep-blue);
    text-align: center;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
}

footer p {
    color: var(--text-gray);
    font-size: 1rem;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Scroll Animation */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Mobile Responsive ===== */
@media (max-width: 1024px) {
    .nav-links {
        gap: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem 3%;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 3rem 2rem;
        gap: 2rem;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        border-top: 1px solid rgba(59, 130, 246, 0.2);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-links a {
        display: block;
        width: 100%;
        padding: 1rem;
        font-size: 1.2rem;
        border-radius: 10px;
        transition: all 0.3s ease;
    }
    
    .nav-links a:hover {
        background: rgba(59, 130, 246, 0.1);
        transform: translateX(5px);
    }
    
    [dir="rtl"] .nav-links a:hover {
        transform: translateX(-5px);
    }
    
    .hero {
        padding: 2rem 3%;
        padding-top: 100px;
        min-height: 90vh;
    }
    
    .stats-container,
    .values-grid,
    .services-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .event-card {
        min-width: 85vw;
    }
    
    .about-content {
        padding: 2rem;
    }
    
    .stat-card,
    .value-card,
    .service-card {
        padding: 2rem;
    }
    
    section {
        padding: 4rem 3% !important;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.5rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .event-card {
        min-width: 90vw;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
}
.hero-title {
    display: inline-block;
    color: transparent;
    background: #3592f5;
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shine 6s ease-in-out infinite, sway 8s ease-in-out infinite;
}


.hero-title .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px) rotate(-3deg);
    animation: charIn 0.6s cubic-bezier(0.4,0,0.2,1) forwards;
    background: inherit;
    background-size: inherit;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.hero-title .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(12px) scale(0.96);
    animation: wordIn 0.6s cubic-bezier(0.4,0,0.2,1) var(--d, 0s) forwards, swayScale 6s ease-in-out calc(var(--d, 0s) + 0.8s) infinite;
    background: inherit;
    background-size: inherit;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin-right: 0.25em;
}
.hero-title .rotator {
    display: inline-block;
    margin-left: 0.3em;
    white-space: nowrap;
    background: inherit;
    background-size: inherit;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.hero-title .rotator::after {
    content: '|';
    margin-left: 4px;
    color: var(--light-blue);
    animation: blink 1s steps(1, start) infinite;
}
@keyframes shine {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes sway {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-3px) rotate(-0.2deg); }
    100% { transform: translateY(0) rotate(0deg); }
}
@keyframes wordIn {
    0% { opacity: 0; transform: translateY(12px) scale(0.96); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes swayScale {
    0% { transform: translateY(0) rotate(0deg) scale(1); }
    50% { transform: translateY(-2px) rotate(-0.3deg) scale(1.04); }
    100% { transform: translateY(0) rotate(0deg) scale(1); }
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
@keyframes charIn {
    0% { opacity: 0; transform: translateY(20px) rotate(-3deg); }
    100% { opacity: 1; transform: translateY(0) rotate(0deg); }
}
