/* Ensure stat number and suffix stay on the same line */
.stat-number, .stat-suffix {
    display: inline-block;
    vertical-align: baseline;
}

.stat-value { white-space: nowrap; }

/* Optional small spacing between number and suffix */
.stat-suffix {
    margin-inline-start: 2px;
}

/* ============================================
   SIMPLIFIED HERO SECTION - FAST LOADING
   ============================================ */

.about-hero-simple {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0f1c 0%, #1a1f35 50%, #0f1623 100%);
    padding: 6rem 0 4rem;
    color: white;
    overflow: hidden;
}

/* Simple Background Animation */
.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Animated Gradient Wave */
.gradient-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(16, 185, 129, 0.08) 0%, transparent 50%);
    animation: waveMove 15s ease-in-out infinite;
}

@keyframes waveMove {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.8;
    }
    33% {
        transform: translate(30px, -20px) scale(1.1);
        opacity: 1;
    }
    66% {
        transform: translate(-20px, 30px) scale(0.9);
        opacity: 0.9;
    }
}

/* Floating Circles */
.floating-circles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.circle {
    position: absolute;
    border-radius: 50%;
    animation: floatCircle 10s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(96, 165, 250, 0.2);
}

.circle-1 {
    width: 12px;
    height: 12px;
    top: 15%;
    left: 8%;
    background: rgba(96, 165, 250, 0.7);
    animation-delay: 0s;
    animation-duration: 8s;
    box-shadow: 0 0 15px rgba(96, 165, 250, 0.4);
}

.circle-2 {
    width: 20px;
    height: 20px;
    top: 25%;
    right: 12%;
    background: rgba(139, 92, 246, 0.5);
    animation-delay: 1s;
    animation-duration: 12s;
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.3);
}

.circle-3 {
    width: 16px;
    height: 16px;
    bottom: 35%;
    left: 25%;
    background: rgba(16, 185, 129, 0.6);
    animation-delay: 2s;
    animation-duration: 10s;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.circle-4 {
    width: 14px;
    height: 14px;
    top: 45%;
    right: 35%;
    background: rgba(167, 139, 250, 0.6);
    animation-delay: 3s;
    animation-duration: 9s;
    box-shadow: 0 0 18px rgba(167, 139, 250, 0.3);
}

.circle-5 {
    width: 18px;
    height: 18px;
    bottom: 25%;
    right: 25%;
    background: rgba(96, 165, 250, 0.4);
    animation-delay: 4s;
    animation-duration: 11s;
    box-shadow: 0 0 22px rgba(96, 165, 250, 0.2);
}

.circle-6 {
    width: 10px;
    height: 10px;
    top: 60%;
    left: 15%;
    background: rgba(59, 130, 246, 0.8);
    animation-delay: 5s;
    animation-duration: 7s;
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.4);
}

.circle-7 {
    width: 22px;
    height: 22px;
    top: 70%;
    right: 45%;
    background: rgba(139, 92, 246, 0.3);
    animation-delay: 6s;
    animation-duration: 13s;
    box-shadow: 0 0 28px rgba(139, 92, 246, 0.2);
}

.circle-8 {
    width: 8px;
    height: 8px;
    bottom: 15%;
    left: 60%;
    background: rgba(16, 185, 129, 0.7);
    animation-delay: 7s;
    animation-duration: 6s;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
}

@keyframes floatCircle {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-25px) translateX(15px) scale(1.1);
        opacity: 1;
    }
    50% {
        transform: translateY(-15px) translateX(-20px) scale(0.9);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-35px) translateX(8px) scale(1.05);
        opacity: 0.9;
    }
}

.hero-content-simple {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-main {
    margin-bottom: 4rem;
}

/* Badge */
.hero-badge-simple {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 50px;
    color: #60a5fa;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #3b82f6;
    border-radius: 50%;
}

/* Title */
.hero-title-simple {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #60a5fa 50%, #a78bfa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Subtitle */
.hero-subtitle-simple {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* Buttons */
.hero-actions-simple {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-simple {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary-simple {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.btn-primary-simple:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
    color: white;
}

.btn-secondary-simple {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-secondary-simple:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-simple svg {
    transition: transform 0.3s ease;
}

.btn-simple:hover svg {
    transform: translateX(3px);
}

/* Stats Grid */
.hero-stats-simple {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 2rem 0;
}

.stat-item-simple {
    position: relative;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-item-simple:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-5px);
}

.stat-item-simple:hover .stat-number-simple {
    color: #a78bfa;
    transform: scale(1.1);
}

.stat-number-simple {
    font-size: 3rem;
    font-weight: 800;
    color: #60a5fa;
    margin-bottom: 0.5rem;
    display: block;
    transition: transform 0.3s ease, color 0.3s ease;
}

.stat-label-simple {
    font-size: 0.875rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Scroll Indicator */
.scroll-indicator-simple {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.scroll-mouse-simple {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 13px;
    position: relative;
}

.scroll-wheel-simple {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheelSimple 1.5s infinite;
}

@keyframes scrollWheelSimple {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(12px);
    }
}

.scroll-indicator-simple span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title-simple {
        font-size: 3.5rem;
    }
    
    .hero-stats-simple {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .about-hero-simple {
        min-height: auto;
        padding: 4rem 0 3rem;
    }
    
    .hero-title-simple {
        font-size: 2.5rem;
    }
    
    .hero-subtitle-simple {
        font-size: 1.125rem;
    }
    
    .hero-stats-simple {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .stat-number-simple {
        font-size: 2.5rem;
    }
    
    .hero-actions-simple {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-simple {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .about-hero-simple {
        padding: 3rem 0 2rem;
    }
    
    .hero-title-simple {
        font-size: 2rem;
    }
    
    .hero-subtitle-simple {
        font-size: 1rem;
    }
    
    .hero-stats-simple {
        grid-template-columns: 1fr;
    }
    
    .stat-item-simple {
        padding: 1.5rem 1rem;
    }
    
    .stat-number-simple {
        font-size: 2rem;
    }
    
    .btn-simple {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* ============================================
   NEW HERO SECTION - CLEAN & MODERN DESIGN
   ============================================ */

.about-hero-new {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0f1c 0%, #1a1f35 50%, #0f1623 100%);
    padding: 6rem 0 4rem;
}

/* Background Elements */
.hero-bg-new {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.gradient-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 40% 80%, rgba(16, 185, 129, 0.08) 0%, transparent 40%);
    animation: meshMove 15s ease-in-out infinite;
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: none;
    will-change: transform;
}

@keyframes meshMove {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(20px, -20px) scale(1.05);
    }
}

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

/* Animated Canvas */
.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* Mouse Effects Canvas */
.mouse-effects-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    pointer-events: none;
}

/* Cursor Glow */
.cursor-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.5) 0%, rgba(139, 92, 246, 0.4) 30%, transparent 70%);
    pointer-events: none;
    z-index: 5;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.05s ease;
    filter: blur(50px);
    mix-blend-mode: screen;
}

/* Floating Orbs */
.floating-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: floatOrb 20s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.4) 0%, transparent 70%);
    top: 10%;
    left: 10%;
    animation-duration: 25s;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.4) 0%, transparent 70%);
    top: 50%;
    right: 10%;
    animation-duration: 30s;
    animation-delay: -10s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.3) 0%, transparent 70%);
    bottom: 10%;
    left: 30%;
    animation-duration: 28s;
    animation-delay: -5s;
}

@keyframes floatOrb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(50px, -30px) scale(1.1);
        opacity: 0.4;
    }
    50% {
        transform: translate(30px, 50px) scale(0.9);
        opacity: 0.35;
    }
    75% {
        transform: translate(-40px, 20px) scale(1.05);
        opacity: 0.38;
    }
}

/* Content */
.hero-content-new {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-main {
    margin-bottom: 4rem;
}

/* Badge */
.hero-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 50px;
    color: #60a5fa;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #3b82f6;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

/* Title */
.hero-title-new {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #60a5fa 50%, #a78bfa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Subtitle */
.hero-subtitle-new {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto 3rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Buttons */
.hero-actions-new {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.btn-new {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-new:hover::before {
    left: 100%;
}

.btn-primary-new {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.btn-primary-new:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.btn-secondary-new {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-secondary-new:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-new svg {
    transition: transform 0.3s ease;
}

.btn-new:hover svg {
    transform: translateX(3px);
}

/* Stats Grid */
.hero-stats-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 2rem 0;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.stat-item-new {
    position: relative;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: none;
    will-change: transform;
}

.stat-item-new:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-5px);
}

.stat-number-new {
    font-size: 3rem;
    font-weight: 800;
    color: #60a5fa;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label-new {
    font-size: 0.875rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.stat-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    transition: width 0.3s ease;
}

.stat-item-new:hover .stat-line {
    width: 60%;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: fadeIn 1s ease-out 1.5s both;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 13px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(12px);
    }
}

.scroll-indicator span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title-new {
        font-size: 3.5rem;
    }
    
    .hero-stats-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .about-hero-new {
        min-height: auto;
        padding: 4rem 0 3rem;
    }
    
    .hero-title-new {
        font-size: 2.5rem;
    }
    
    .hero-subtitle-new {
        font-size: 1.125rem;
    }
    
    .hero-stats-new {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .stat-number-new {
        font-size: 2.5rem;
    }
    
    .hero-actions-new {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-new {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    /* Reduce animation intensity on tablets */
    .orb {
        opacity: 0.2;
        filter: blur(50px);
    }
    
    /* Tablet-Only Subtle Background Effect */
    .hero-bg-new::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
        background: 
            radial-gradient(circle at 30% 40%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
        animation: tabletPulse 10s ease-in-out infinite;
    }
    
    @keyframes tabletPulse {
        0%, 100% {
            opacity: 0.4;
            transform: scale(1);
        }
        50% {
            opacity: 0.7;
            transform: scale(1.05);
        }
    }
}

@media (max-width: 480px) {
    .about-hero-new {
        padding: 3rem 0 2rem;
    }
    
    .hero-title-new {
        font-size: 2rem;
    }
    
    .hero-subtitle-new {
        font-size: 1rem;
    }
    
    .hero-stats-new {
        grid-template-columns: 1fr;
    }
    
    .stat-item-new {
        padding: 1.5rem 1rem;
    }
    
    .stat-number-new {
        font-size: 2rem;
    }
    
    .btn-new {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Hide canvas on mobile for better performance */
    .hero-canvas,
    .mouse-effects-canvas,
    .cursor-glow {
        display: none;
    }
    
    /* Reduce orb size on mobile */
    .orb-1, .orb-2, .orb-3 {
        width: 250px;
        height: 250px;
        opacity: 0.15;
        filter: blur(40px);
    }
    
    /* Mobile-Only Animated Background */
    .hero-bg-new::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
        background: 
            radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
        animation: mobilePulse 8s ease-in-out infinite;
    }
    
    .hero-bg-new::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        background: 
            linear-gradient(45deg, transparent 30%, rgba(59, 130, 246, 0.05) 50%, transparent 70%);
        background-size: 200% 200%;
        animation: mobileShine 6s linear infinite;
    }
    
    @keyframes mobilePulse {
        0%, 100% {
            opacity: 0.5;
            transform: scale(1);
        }
        50% {
            opacity: 1;
            transform: scale(1.1);
        }
    }
    
    @keyframes mobileShine {
        0% {
            background-position: 0% 0%;
        }
        100% {
            background-position: 200% 200%;
        }
    }
    
    /* Mobile Stars Effect */
    .floating-orbs::before,
    .floating-orbs::after {
        content: '';
        position: absolute;
        width: 4px;
        height: 4px;
        background: rgba(255, 255, 255, 0.8);
        border-radius: 50%;
        animation: twinkle 3s ease-in-out infinite;
        box-shadow: 
            0 0 10px rgba(255, 255, 255, 0.5),
            0 0 20px rgba(59, 130, 246, 0.3);
    }
    
    .floating-orbs::before {
        top: 20%;
        left: 15%;
        animation-delay: 0s;
    }
    
    .floating-orbs::after {
        top: 60%;
        right: 20%;
        animation-delay: 1.5s;
    }
    
    @keyframes twinkle {
        0%, 100% {
            opacity: 0.3;
            transform: scale(1);
        }
        50% {
            opacity: 1;
            transform: scale(1.5);
        }
    }
}

@media (max-width: 360px) {
    .hero-title-new {
        font-size: 1.75rem;
    }
    
    .hero-subtitle-new {
        font-size: 0.9rem;
    }
    
    .stat-number-new {
        font-size: 1.75rem;
    }
    
    .stat-label-new {
        font-size: 0.75rem;
    }
}

/* RTL Support */
[dir="rtl"] .hero-badge-new {
    flex-direction: row-reverse;
}

[dir="rtl"] .btn-new {
    flex-direction: row-reverse;
}

[dir="rtl"] .btn-new:hover svg {
    transform: translateX(-3px);
}
/* About Page - Modern Hero Section Styles */

/* Modern Hero Section */
.about-hero-modern {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #014fb6 0%, #9857eb 100%);
}

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

/* Geometric Shapes Animation */
.geometric-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 20s infinite linear;
}

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

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

.triangle-1 {
    width: 0;
    height: 0;
    border-left: 75px solid transparent;
    border-right: 75px solid transparent;
    border-bottom: 130px solid rgba(255, 255, 255, 0.1);
    top: 30%;
    right: 30%;
    border-radius: 0;
    animation-delay: -10s;
}

.square-1 {
    width: 100px;
    height: 100px;
    top: 70%;
    left: 20%;
    border-radius: 20px;
    animation-delay: -15s;
}

.hexagon-1 {
    width: 120px;
    height: 120px;
    top: 20%;
    right: 50%;
    background: rgba(255, 255, 255, 0.1);
    clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
    animation-delay: -7s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(120deg); }
    66% { transform: translateY(30px) rotate(240deg); }
}

/* Gradient Overlays */
.gradient-overlay-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(1, 79, 182, 0.8) 0%, rgba(152, 87, 235, 0.6) 100%);
    z-index: 2;
}

.gradient-overlay-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 3;
}

/* Particles Container */
.particles-container {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 4;
}

/* Hero Content */
.hero-content-modern {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 100vh;
    padding: 2rem 0;
}

/* Hero Text */
.hero-text-modern {
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    animation: slideInLeft 1s ease-out;
}

.badge-icon {
    font-size: 1.2rem;
}


.hero-title-modern {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: slideInLeft 1s ease-out 0.2s both;
}

.title-line-1 {
    display: block;
    background: linear-gradient(45deg, #ffffff, #f0f8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle-modern {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: #ffffff;
    opacity: 0.9;
    animation: slideInLeft 1s ease-out 0.4s both;
}

/* Enhanced Stats */
.hero-stats-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
    animation: slideInLeft 1s ease-out 0.6s both;
}

.stat-card-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-card-modern:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 500;
}

/* Action Buttons */
.hero-actions-modern {
    display: flex;
    gap: 1rem;
    animation: slideInLeft 1s ease-out 0.8s both;
}

.btn-primary-modern,
.btn-secondary-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary-modern {
    background: #ffffff;
    color: #1a202c;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #e2e8f0;
}

.btn-primary-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    background: #f8fafc;
    border-color: #cbd5e1;
}

.btn-secondary-modern {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary-modern:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-3px);
}

.btn-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-primary-modern:hover .btn-icon,
.btn-secondary-modern:hover .btn-icon {
    transform: translateX(5px);
}

/* Hero Visual */
.hero-visual-modern {
    position: relative;
    animation: slideInRight 1s ease-out 0.4s both;
}

.visual-container {
    position: relative;
    height: 500px;
}

.main-visual {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.visual-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    min-width: 300px;
    animation: cardFloat 6s ease-in-out infinite;
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.card-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27ca3f; }

.card-title {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.card-content {
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
}

.code-line {
    margin-bottom: 0.5rem;
}

.code-keyword { color: #d73a49; font-weight: 600; }
.code-variable { color: #6f42c1; }
.code-operator { color: #d73a49; }
.code-string { color: #032f62; }
.code-function { color: #6f42c1; font-weight: 600; }
.code-bracket { color: #d73a49; }

@keyframes cardFloat {
    0%, 100% { transform: translate(-50%, -50%) translateY(0px); }
    50% { transform: translate(-50%, -50%) translateY(-10px); }
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: floatIcon 4s ease-in-out infinite;
    transition: all 0.3s ease;
}

.floating-icon:hover {
    transform: translateY(-5px) scale(1.1);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.icon-1 {
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
    color: #ff6b6b;
    z-index: 4;
}

.icon-2 {
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: -1s;
    color: #4ecdc4;
    z-index: 3;
}

.icon-3 {
    top: 35%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: -2s;
    color: #45b7d1;
    z-index: 2;
}

.icon-4 {
    top: 45%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: -3s;
    color: #f9ca24;
    z-index: 1;
}

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

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero-modern {
        min-height: 100vh;
        padding: 2rem 0;
    }
    
    .hero-content-modern {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 1rem 0;
    }
    
    .hero-text-modern {
        order: 1;
    }
    
    
    .hero-title-modern {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .hero-subtitle-modern {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-stats-modern {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .stat-card-modern {
        padding: 1rem;
        text-align: center;
    }
    
    .stat-icon {
        width: 20px;
        height: 20px;
        margin-bottom: 0.5rem;
    }
    
    .stat-value {
        font-size: 1.5rem;
        font-weight: 700;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .hero-actions-modern {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .visual-container {
        height: 300px;
        order: 2;
    }
    
    .visual-card {
        min-width: 250px;
        padding: 1.5rem;
    }
    
    /* Mobile floating icons adjustments */
    .floating-icon {
        width: 40px;
        height: 40px;
    }
    
    .icon-1 {
        top: 20%;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .icon-2 {
        top: 30%;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .icon-3 {
        top: 40%;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .icon-4 {
        top: 50%;
        left: 50%;
        transform: translateX(-50%);
    }
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .hero-subtitle-modern {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-stats-modern {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .stat-card-modern {
        padding: 1rem;
        text-align: center;
    }
    
    .stat-icon {
        width: 20px;
        height: 20px;
        margin-bottom: 0.5rem;
    }
    
    .stat-value {
        font-size: 1.5rem;
        font-weight: 700;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .hero-actions-modern {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .visual-container {
        height: 300px;
        order: 2;
    }
    
    .visual-card {
        min-width: 250px;
        padding: 1.5rem;
    }
    
    /* Mobile floating icons adjustments */
    .floating-icon {
        width: 40px;
        height: 40px;
    }
    
    .icon-1 {
        top: 20%;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .icon-2 {
        top: 30%;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .icon-3 {
        top: 40%;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .icon-4 {
        top: 50%;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .about-hero-modern {
        min-height: 100vh;
        padding: 1.5rem 0;
    }
    
    .hero-content-modern {
        gap: 1.5rem;
        padding: 0.5rem 0;
    }
    
    .hero-title-modern {
        font-size: 2rem;
        line-height: 1.1;
        margin-bottom: 0.75rem;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .hero-subtitle-modern {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        max-width: 95%;
    }
    
    .hero-stats-modern {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .stat-card-modern {
        padding: 0.75rem;
        border-radius: 12px;
    }
    
    .stat-icon {
        width: 18px;
        height: 18px;
        margin-bottom: 0.4rem;
    }
    
    .stat-value {
        font-size: 1.25rem;
        font-weight: 700;
    }
    
    .stat-label {
        font-size: 0.7rem;
        line-height: 1.2;
    }
    
    .hero-actions-modern {
        gap: 0.75rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        border-radius: 8px;
    }
    
    .visual-container {
        height: 250px;
    }
    
    .visual-card {
        min-width: 200px;
        padding: 1rem;
        border-radius: 12px;
    }
    
    /* Small mobile floating icons adjustments */
    .floating-icon {
        width: 36px;
        height: 36px;
    }
    
    .icon-1 {
        top: 25%;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .icon-2 {
        top: 35%;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .icon-3 {
        top: 45%;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .icon-4 {
        top: 55%;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 360px) {
    .about-hero-modern {
        min-height: 100vh;
        padding: 1rem 0;
    }
    
    .hero-content-modern {
        gap: 1.25rem;
        padding: 0.25rem 0;
    }
    
    .hero-title-modern {
        font-size: 1.75rem;
        line-height: 1.1;
        margin-bottom: 0.5rem;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .hero-subtitle-modern {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 1.25rem;
        max-width: 100%;
    }
    
    .hero-stats-modern {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
        margin-bottom: 1.25rem;
    }
    
    .stat-card-modern {
        padding: 0.6rem;
        border-radius: 10px;
    }
    
    .stat-icon {
        width: 16px;
        height: 16px;
        margin-bottom: 0.3rem;
    }
    
    .stat-value {
        font-size: 1.1rem;
        font-weight: 700;
    }
    
    .stat-label {
        font-size: 0.65rem;
        line-height: 1.1;
    }
    
    .hero-actions-modern {
        gap: 0.5rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 0.6rem 1.25rem;
        font-size: 0.85rem;
        border-radius: 6px;
    }
    
    .visual-container {
        height: 200px;
    }
    
    .visual-card {
        min-width: 180px;
        padding: 0.75rem;
        border-radius: 10px;
    }
    
    /* Extra small mobile floating icons adjustments */
    .floating-icon {
        width: 32px;
        height: 32px;
    }
    
    .icon-1 {
        top: 30%;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .icon-2 {
        top: 40%;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .icon-3 {
        top: 50%;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .icon-4 {
        top: 60%;
        left: 50%;
        transform: translateX(-50%);
    }
}

/* RTL Support for About Hero Mobile */
@media (max-width: 768px) {
    .rtl .hero-content-modern {
        text-align: center;
    }
    
    .rtl .hero-text-modern {
        text-align: center;
    }
    
    
    .rtl .hero-title-modern {
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .rtl .hero-subtitle-modern {
        text-align: center;
    }
    
    .rtl .hero-stats-modern {
        text-align: center;
    }
    
    .rtl .stat-card-modern {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .rtl .hero-content-modern {
        text-align: center;
    }
    
    .rtl .hero-text-modern {
        text-align: center;
    }
    
    .rtl .hero-title-modern {
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .rtl .hero-subtitle-modern {
        text-align: center;
    }
    
    .rtl .hero-stats-modern {
        text-align: center;
    }
    
    .rtl .stat-card-modern {
        text-align: center;
    }
}

@media (max-width: 360px) {
    .rtl .hero-content-modern {
        text-align: center;
    }
    
    .rtl .hero-text-modern {
        text-align: center;
    }
    
    .rtl .hero-title-modern {
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .rtl .hero-subtitle-modern {
        text-align: center;
    }
    
    .rtl .hero-stats-modern {
        text-align: center;
    }
    
    .rtl .stat-card-modern {
        text-align: center;
    }
}

/* About Page - Clean Styles */

/* Our Story Section */
.about-story {
    padding: 6rem 0;
    background: #f8fafc;
}

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

.section-badge {
    display: inline-block;
    background: linear-gradient(45deg, #014fb6, #9857eb);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.story-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 2rem;
}

/* Arabic-only description styling */
.arabic-description {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    border-radius: 12px;
    border-right: 4px solid #3b82f6;
    position: relative;
}

.arabic-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #1e293b;
    font-weight: 500;
    margin: 0;
    text-align: right;
    direction: rtl;
}

/* RTL support for Arabic description */
[dir="rtl"] .arabic-description {
    border-right: none;
    border-left: 4px solid #3b82f6;
}

[dir="rtl"] .arabic-text {
    text-align: left;
}

.story-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.highlight-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.highlight-text h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.highlight-text p {
    color: #4a5568;
    line-height: 1.5;
}

.story-visual {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.story-image {
    width: 100%;
    height: 400px;
    object-fit: contain;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 2rem;
}

.image-container:hover .story-image {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Mission & Vision Section */
.mission-vision {
    padding: 6rem 0;
    background: white;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.mission-card,
.vision-card {
    padding: 3rem;
    border-radius: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #014fb6, #9857eb);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 2rem;
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.mission-card p,
.vision-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
}

/* Values Section */
.about-values {
    padding: 6rem 0;
    background: #f8fafc;
}

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

.section-subtitle {
    font-size: 1.1rem;
    color: #4a5568;
    margin-top: 1rem;
}

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

.value-card {
    position: relative;
    padding: 2.5rem;
    background: white;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(45deg, #014fb6, #9857eb);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #014fb6, #9857eb);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1.5rem;
}

.value-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.value-card p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.value-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    font-weight: 800;
    color: #e2e8f0;
    line-height: 1;
}

/* Mobile responsive for value numbers */
@media screen and (max-width: 768px) {
    .value-number {
        font-size: 2rem !important;
        top: 1.5rem !important;
        right: 1.5rem !important;
    }
}

@media screen and (max-width: 480px) {
    .value-number {
        font-size: 1.5rem !important;
        top: 1rem !important;
        right: 1rem !important;
    }
}

/* RTL Support for Values Section */
[dir="rtl"] .value-number {
    right: 2rem;
    left: auto;
}

[dir="rtl"] .value-card {
    text-align: right;
}

[dir="rtl"] .value-icon {
    margin-left: 0;
    margin-right: auto;
    margin-bottom: 1.5rem;
}


/* Call to Action */
.about-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #014fb6 0%, #9857eb 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: #ffffff;
    opacity: 1;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: white;
    color: #667eea;
    border: 2px solid white;
}

.btn-primary:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 2rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Clean Hero Section */
.about-hero-fixed {
    min-height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #8b5cf6 100%) !important;
    color: white !important;
    position: relative !important;
    overflow: hidden !important;
}

.hero-background-fixed {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

/* Interactive Background */
.interactive-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

/* Particle System */
.particle-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(96, 165, 250, 0.6);
    border-radius: 50%;
    pointer-events: none;
    transition: all 0.1s ease-out;
}

.particle.trail {
    background: rgba(96, 165, 250, 0.3);
    width: 2px;
    height: 2px;
}

/* Mouse Trail */
.mouse-trail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.trail-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: trailFade 1s ease-out forwards;
}

/* Gradient Waves */
.gradient-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.wave {
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.05) 0%, transparent 50%);
    border-radius: 50%;
    animation: wavePulse 8s ease-in-out infinite;
    transform-origin: center;
}

.wave-1 {
    top: -50%;
    left: -50%;
    animation-delay: 0s;
}

.wave-2 {
    top: -50%;
    left: -50%;
    animation-delay: 2.5s;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
}

.wave-3 {
    top: -50%;
    left: -50%;
    animation-delay: 5s;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.04) 0%, transparent 50%);
}

/* Floating Elements */
.floating-elements-about {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    background: rgba(96, 165, 250, 0.1);
    animation: floatShape 12s ease-in-out infinite;
    transition: all 0.3s ease;
    cursor: pointer;
}

.floating-shape:hover {
    background: rgba(96, 165, 250, 0.2);
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(96, 165, 250, 0.3);
}

.shape-1 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

.shape-3 {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    top: 40%;
    left: 85%;
    animation-delay: 6s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    border-radius: 30px;
    top: 80%;
    left: 20%;
    animation-delay: 9s;
}

.shape-5 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    top: 10%;
    right: 30%;
    animation-delay: 12s;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.9) 0%, rgba(59, 130, 246, 0.8) 50%, rgba(139, 92, 246, 0.9) 100%);
}

.hero-content-fixed {
    position: relative !important;
    z-index: 2 !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 5rem !important;
    align-items: center !important;
    min-height: 100vh !important;
    padding: 4rem 0 !important;
}

.hero-text-fixed {
    max-width: 650px;
}

/* Badge removed */

.hero-title-fixed {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #60a5fa 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
}

/* Fade In Up Animation */
.animate-fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
}

.hero-title-fixed.animate-fade-in-up {
    animation-delay: 0.2s;
}

.hero-subtitle-fixed.animate-fade-in-up {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle-fixed {
    font-size: 1.375rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.hero-stats-fixed {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-item-fixed {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.stat-item-fixed:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number-fixed {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #60a5fa;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label-fixed {
    font-size: 0.875rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.hero-actions-fixed {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary-fixed {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(96, 165, 250, 0.3);
    border: none;
    cursor: pointer;
}

.btn-primary-fixed:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(96, 165, 250, 0.4);
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.btn-secondary-fixed {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background: transparent;
    color: white;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.btn-secondary-fixed:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-visual-fixed {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 400px;
}

/* Visual content removed - background elements provide the visual interest */

@keyframes trailFade {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.5);
    }
}

@keyframes wavePulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.1) rotate(180deg);
        opacity: 0.2;
    }
}

@keyframes floatShape {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
    }
    25% { 
        transform: translateY(-20px) rotate(90deg) scale(1.1); 
    }
    50% { 
        transform: translateY(-40px) rotate(180deg) scale(0.9); 
    }
    75% { 
        transform: translateY(-20px) rotate(270deg) scale(1.1); 
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content-fixed {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title-fixed {
        font-size: 2.5rem;
    }
    
    .hero-subtitle-fixed {
        font-size: 1.125rem;
    }
    
    .hero-stats-fixed {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-actions-fixed {
        justify-content: center;
    }
    
    .hero-image-container {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title-fixed {
        font-size: 2rem;
    }
    
    .hero-actions-fixed {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-fixed,
    .btn-secondary-fixed {
        width: 100%;
        max-width: 250px;
    }
}
