/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Modern Healthcare & AI Theme */
    --primary-color: #0066cc;
    --primary-dark: #004499;
    --primary-light: #3399ff;
    --secondary-color: #00cc99;
    --accent-color: #ff6b35;
    --background-color: #ffffff;
    --surface-color: #f8fafc;
    --text-primary: #1a202c;
    --text-secondary: #4a5568;
    --text-muted: #718096;
    --border-color: #e2e8f0;
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.2);
    
    /* Typography */
    --font-primary: 'Cairo', 'Tajawal', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    
    /* Animation */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition-normal);
    border-bottom: 1px solid var(--border-color);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-light);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.company-logo {
    width: 50px;
    height: 50px;
    transition: var(--transition-normal);
}

.nav-logo:hover .company-logo {
    transform: scale(1.05);
}

.company-logo .pulse-wave,
.company-logo .pulse-wave-2,
.company-logo .pulse-wave-3 {
    animation: pulse-animation 3s ease-in-out infinite;
}

.company-logo .pulse-wave-2 {
    animation-delay: 0.5s;
}

.company-logo .pulse-wave-3 {
    animation-delay: 1s;
}

.company-logo .ai-circle,
.company-logo .human-circle {
    animation: rotate 20s linear infinite;
}

.company-logo .human-circle {
    animation-direction: reverse;
}

.logo-text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    font-family: var(--font-primary);
}

.logo-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-family: var(--font-secondary);
    font-weight: 500;
}

/* Logo animations */
@keyframes pulse-animation {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-fast);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: var(--transition-fast);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-light), var(--secondary-color));
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 200px;
    height: 200px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.circle-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.main-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.sub-title {
    font-size: 1.5rem;
    font-family: var(--font-secondary);
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 1rem;
}

.tagline {
    font-size: 1.3rem;
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.tagline-en {
    font-size: 1.1rem;
    font-family: var(--font-secondary);
    color: var(--text-muted);
    font-weight: 400;
}

.hero-description {
    margin-bottom: 3rem;
}

.main-description {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.sub-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-normal);
    border: 2px solid transparent;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.ai-brain {
    width: 300px;
    height: 300px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brain-core {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    position: relative;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

.neural-network {
    position: absolute;
    width: 100%;
    height: 100%;
}

.neural-line {
    position: absolute;
    background: linear-gradient(45deg, var(--primary-light), var(--secondary-color));
    border-radius: 2px;
    animation: neural-pulse 2s ease-in-out infinite;
}

.line-1 {
    width: 200px;
    height: 3px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    animation-delay: 0s;
}

.line-2 {
    width: 200px;
    height: 3px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    animation-delay: 0.5s;
}

.line-3 {
    width: 200px;
    height: 3px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    animation-delay: 1s;
}

.line-4 {
    width: 200px;
    height: 3px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    animation-delay: 1.5s;
}

@keyframes neural-pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.data-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: particle-float 4s ease-in-out infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 30%;
    right: 25%;
    animation-delay: 1s;
}

.particle:nth-child(3) {
    bottom: 25%;
    left: 30%;
    animation-delay: 2s;
}

.particle:nth-child(4) {
    bottom: 35%;
    right: 20%;
    animation-delay: 3s;
}

@keyframes particle-float {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.7; }
    50% { transform: translateY(-15px) scale(1.2); opacity: 1; }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    z-index: 2;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: var(--primary-color);
    margin-bottom: 0.5rem;
    position: relative;
    animation: scroll-bounce 2s ease-in-out infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    transform: rotate(45deg);
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateY(0px); opacity: 0.5; }
    50% { transform: translateY(10px); opacity: 1; }
}

/* Section Styles */
section {
    padding: 5rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-family: var(--font-secondary);
    font-weight: 500;
}

/* About Section */
.about {
    background: var(--surface-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    margin-bottom: 2rem;
}

.about-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.1rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.integration-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.human-side, .health-side, .ai-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    width: 140px;
    height: 140px;
    flex-shrink: 0;
    transition: var(--transition-normal);
}

.human-side:hover, .health-side:hover, .ai-center:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 102, 204, 0.1);
}

.human-side i, .health-side i, .ai-center i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.human-side span, .health-side span, .ai-center span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.3;
}

.connection-line {
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
}

/* Vision Section - Modern Design */
.vision-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Vision Hero */
.vision-hero {
    margin-bottom: 5rem;
}

.vision-statement-card {
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 50%, #0f1419 100%);
    border-radius: 32px;
    padding: 4rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 4rem;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.vision-statement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 204, 153, 0.05) 100%);
    pointer-events: none;
}

.vision-icon-wrapper {
    position: relative;
    flex-shrink: 0;
}

.vision-main-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 102, 204, 0.3);
}

.vision-main-icon i {
    font-size: 3rem;
    color: white;
}

.icon-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.ring {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: pulse-ring 3s ease-in-out infinite;
}

.ring-1 {
    width: 160px;
    height: 160px;
    animation-delay: 0s;
}

.ring-2 {
    width: 200px;
    height: 200px;
    animation-delay: 0.5s;
}

.ring-3 {
    width: 240px;
    height: 240px;
    animation-delay: 1s;
}

.vision-text-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.vision-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff, #e0f2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vision-main-text {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-weight: 500;
    margin: 0;
}

/* Vision Description Modern */
.vision-description-modern {
    margin-bottom: 5rem;
}

.description-container {
    background: white;
    padding: 4rem;
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border-left: 6px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.description-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05), rgba(0, 204, 153, 0.05));
    border-radius: 0 28px 0 100px;
}

.description-text {
    font-size: 1.3rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

/* Vision Pillars Modern */
.vision-pillars-modern {
    margin-bottom: 5rem;
}

.pillars-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pillars-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 800;
}

.header-line {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto;
    border-radius: 2px;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.pillar-modern {
    position: relative;
    background: white;
    border-radius: 28px;
    padding: 3rem 2.5rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    transition: var(--transition-normal);
    border: 1px solid rgba(0, 102, 204, 0.1);
    overflow: hidden;
}

.pillar-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.pillar-modern:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 80px rgba(0, 102, 204, 0.15);
}

.pillar-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(0, 102, 204, 0.1);
    font-family: var(--font-secondary);
}

.pillar-content {
    position: relative;
    z-index: 2;
}

.pillar-icon-modern {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.2);
}

.pillar-icon-modern i {
    font-size: 2.2rem;
    color: white;
}

.pillar-modern h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.pillar-modern p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.1rem;
    margin: 0;
}

/* English Version Modern */
.vision-english-modern {
    background: linear-gradient(135deg, var(--surface-color), rgba(255, 255, 255, 0.8));
    border-radius: 28px;
    padding: 4rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 204, 153, 0.2);
}

.english-container {
    position: relative;
}

.english-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.language-badge {
    background: linear-gradient(135deg, var(--secondary-color), #00cc99);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: var(--font-secondary);
}

.english-header h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 0;
    font-weight: 700;
    font-family: var(--font-secondary);
}

.english-text {
    font-family: var(--font-secondary);
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.2rem;
    font-style: italic;
    margin: 0;
}

/* Animations */
@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0;
    }
}


/* Mission Section */
.mission {
    background: var(--surface-color);
}

.mission-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    margin-bottom: 3rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.mission-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-icon i {
    font-size: 2rem;
    color: white;
}

.mission-text h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.mission-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.mission-goal {
    background: var(--surface-color);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.mission-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.feature-content h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition-normal);
    border-top: 4px solid var(--primary-color);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(45deg, var(--primary-light), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Identity Section */
.identity {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.identity-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.identity-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
}

.identity-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(0, 102, 204, 0.03), rgba(0, 204, 153, 0.03));
    animation: identity-float 12s ease-in-out infinite;
}

.identity-circle.circle-1 {
    width: 400px;
    height: 400px;
    top: -10%;
    left: -5%;
    animation-delay: 0s;
}

.identity-circle.circle-2 {
    width: 300px;
    height: 300px;
    bottom: -15%;
    right: -10%;
    animation-delay: 6s;
}

.identity-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 102, 204, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 102, 204, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

.identity .container {
    position: relative;
    z-index: 2;
}

.identity-header-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.identity-intro {
    margin-top: 1.5rem;
}

.identity-intro p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-weight: 400;
}

/* Main Logo Showcase */
.identity-main-showcase {
    margin-bottom: 4rem;
}

.logo-presentation {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem;
    background: white;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 800px;
}

.company-logo-large {
    flex-shrink: 0;
}

.large-logo-svg {
    width: 120px;
    height: 120px;
    filter: drop-shadow(0 10px 20px rgba(0, 102, 204, 0.2));
}

.large-logo-svg .pulse-large-1,
.large-logo-svg .pulse-large-2,
.large-logo-svg .pulse-large-3 {
    animation: identity-pulse 4s ease-in-out infinite;
}

.large-logo-svg .pulse-large-2 {
    animation-delay: 1s;
}

.large-logo-svg .pulse-large-3 {
    animation-delay: 2s;
}

.large-logo-svg .ai-circle-large,
.large-logo-svg .human-circle-large {
    animation: identity-rotate 30s linear infinite;
}

.large-logo-svg .human-circle-large {
    animation-direction: reverse;
}

.logo-text-showcase {
    flex: 1;
}

.brand-name {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1.1;
    font-family: var(--font-primary);
}

.brand-name-en {
    font-size: 2rem;
    font-family: var(--font-secondary);
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 2rem;
}

.brand-tagline-section {
    border-top: 2px solid var(--surface-color);
    padding-top: 1.5rem;
}

.brand-tagline-ar {
    font-size: 1.4rem;
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.brand-tagline-en {
    font-size: 1.1rem;
    font-family: var(--font-secondary);
    color: var(--text-muted);
    font-weight: 500;
    font-style: italic;
}

/* Identity Elements Grid */
.identity-elements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.identity-card {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.identity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.identity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 102, 204, 0.15);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--surface-color);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon i {
    font-size: 1.5rem;
    color: white;
}

.card-header h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 0;
}

.card-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-family: var(--font-secondary);
    font-weight: 500;
    display: block;
    margin-top: 0.3rem;
}

.card-content {
    position: relative;
}

/* Core Statement Card */
.statement-text {
    font-size: 1.2rem;
    color: var(--text-primary);
    line-height: 1.8;
    font-weight: 500;
    text-align: center;
    padding: 1rem;
    background: var(--surface-color);
    border-radius: 12px;
    border-right: 4px solid var(--primary-color);
}

/* Essence Card */
.essence-formula-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.formula-line {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05), rgba(0, 204, 153, 0.05));
    border-radius: 16px;
    border: 2px solid rgba(0, 102, 204, 0.1);
}

.formula-component {
    background: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-family: var(--font-secondary);
    font-weight: 700;
    color: var(--primary-color);
    border: 2px solid var(--primary-light);
    font-size: 1rem;
}

.formula-plus {
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-weight: 800;
}

.formula-equals {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 800;
}

.formula-result {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-family: var(--font-secondary);
    font-weight: 800;
    font-size: 1.1rem;
}

.essence-arabic {
    text-align: center;
    padding: 1rem;
}

.essence-arabic p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 600;
    font-style: italic;
}

/* Marketing Card */
.marketing-messages {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
}

.marketing-arabic {
    font-size: 1.4rem;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.4;
    padding: 1rem;
    background: var(--surface-color);
    border-radius: 12px;
    border-right: 4px solid var(--secondary-color);
}

.marketing-english {
    font-size: 1rem;
    font-family: var(--font-secondary);
    color: var(--text-muted);
    font-weight: 500;
    font-style: italic;
}

/* Tone Card */
.tone-attributes {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tone-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    background: var(--surface-color);
    border-radius: 12px;
    border-right: 3px solid var(--primary-color);
    transition: var(--transition-fast);
}

.tone-item:hover {
    background: white;
    border-color: var(--secondary-color);
}

.tone-label {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.tone-desc {
    font-size: 0.9rem;
    font-family: var(--font-secondary);
    color: var(--text-muted);
    font-weight: 500;
}

/* Animations */
@keyframes identity-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-15px) rotate(120deg); }
    66% { transform: translateY(5px) rotate(240deg); }
}

@keyframes identity-pulse {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

@keyframes identity-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.contact-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(0, 102, 204, 0.05), rgba(0, 204, 153, 0.05));
    animation: float 8s ease-in-out infinite;
}

.deco-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.deco-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    right: -5%;
    animation-delay: 3s;
}

.deco-line {
    position: absolute;
    top: 30%;
    right: 10%;
    width: 2px;
    height: 400px;
    background: linear-gradient(180deg, transparent, var(--primary-light), transparent);
    opacity: 0.3;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact-header-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.contact-intro {
    margin-top: 1.5rem;
}

.contact-intro p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-weight: 400;
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: start;
}

/* Contact Info Section */
.contact-info-section {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    max-width: 1200px;
    width: 100%;
}


.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-card {
    background: var(--surface-color);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 102, 204, 0.15);
    border-color: rgba(0, 102, 204, 0.2);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.3);
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.card-header h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}


.contact-number,
.contact-email {
    display: flex;
    align-items: center;
}

.contact-number a,
.contact-email a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 12px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-normal);
    border: 1px solid var(--border-color);
    width: 100%;
}

.contact-number a:hover,
.contact-email a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.3);
}

.contact-number a i,
.contact-email a i {
    font-size: 1.1rem;
    color: var(--primary-color);
    width: 20px;
    transition: var(--transition-fast);
}

.contact-number a:hover i,
.contact-email a:hover i {
    color: white;
}




/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 3rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-light);
}

.footer-logo p {
    color: #ccc;
    margin-bottom: 0.3rem;
}

.en-subtitle {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    color: #999;
}

.footer-info {
    text-align: right;
}

.footer-info p {
    color: #ccc;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}


/* Responsive Design */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .vision-statement-card {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
        padding: 3rem;
    }
    
    .vision-title {
        font-size: 2.8rem;
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .description-container {
        padding: 3rem;
    }
    
    .mission-card {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: var(--transition-normal);
        box-shadow: var(--shadow-medium);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .integration-diagram {
        flex-direction: column;
        gap: 1rem;
    }
    
    .human-side, .health-side, .ai-center {
        width: 120px;
        height: 120px;
    }
    
    .connection-line {
        width: 2px;
        height: 20px;
    }
    
    .mission-features {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .identity-elements-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .logo-container {
        flex-direction: column;
        gap: 2.5rem;
        text-align: center;
    }
    
    .brand-name {
        font-size: 3rem;
    }
    
    .formula-line {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-info-section {
        padding: 2rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-info {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .about-card,
    .statement-card,
    .mission-card {
        padding: 1.5rem;
    }
    
    .vision-statement-card {
        padding: 2rem;
        gap: 2rem;
    }
    
    .vision-title {
        font-size: 2.2rem;
    }
    
    .vision-main-text {
        font-size: 1.2rem;
    }
    
    .vision-main-icon {
        width: 100px;
        height: 100px;
    }
    
    .vision-main-icon i {
        font-size: 2.5rem;
    }
    
    .description-container {
        padding: 2rem;
    }
    
    .description-text {
        font-size: 1.1rem;
    }
    
    .pillars-header h2 {
        font-size: 2rem;
    }
    
    .pillar-modern {
        padding: 2rem;
    }
    
    .pillar-number {
        font-size: 3rem;
        top: 1.5rem;
        right: 1.5rem;
    }
    
    .pillar-icon-modern {
        width: 80px;
        height: 80px;
    }
    
    .pillar-icon-modern i {
        font-size: 2rem;
    }
    
    .pillar-modern h3 {
        font-size: 1.3rem;
    }
    
    .vision-english-modern {
        padding: 2rem;
    }
    
    .english-text {
        font-size: 1.1rem;
    }
    
    .identity-main-showcase {
        margin-bottom: 2rem;
    }
    
    .logo-presentation {
        padding: 2rem;
    }
    
    .brand-name {
        font-size: 2.5rem;
    }
    
    .brand-name-en {
        font-size: 1.5rem;
    }
    
    .identity-card {
        padding: 2rem;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .formula-line {
        padding: 1.5rem;
    }
    
    .formula-component,
    .formula-result {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .contact-info-section {
        padding: 1.5rem;
    }
    
    .contact-header-content {
        margin-bottom: 2rem;
    }
    
    .contact-intro p {
        font-size: 1rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
