/*
  ========================================
  Modern Styles for About Us Page
  ========================================
*/

.about-hero {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    color: white;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(23, 37, 84, 0.8); /* Dark blue overlay */
}

.hero-content {
    position: relative;
    z-index: 10;
}

.stat-item {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 0.75rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #60a5fa; /* light blue */
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    color: #d1d5db; /* gray-300 */
}

.feature-card {
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.05), 0 4px 6px -4px rgb(0 0 0 / 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.feature-icon {
    background-color: #dbeafe; /* blue-100 */
    color: #2563eb; /* blue-600 */
    border-radius: 50%;
    padding: 1rem;
    display: inline-flex;
    margin-bottom: 1rem;
}

.global-reach-bg {
    background-color: #f0f9ff; /* blue-50 */
}

.region-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    text-align: center;
    font-weight: 600;
    color: #334155; /* slate-700 */
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.cta-section {
    background: linear-gradient(to right, #1e3a8a, #3b82f6);
}

/* Premium Animations & Utilities */
    .fade-up { animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; opacity: 0; transform: translateY(20px); }
    .delay-100 { animation-delay: 100ms; }
    .delay-200 { animation-delay: 200ms; }
    .delay-300 { animation-delay: 300ms; }
    
    @keyframes fadeUp {
        to { opacity: 1; transform: translateY(0); }
    }

    /* Ambient Glows */
    @keyframes pulse-slow {
        0%, 100% { opacity: 0.4; transform: scale(1); }
        50% { opacity: 0.7; transform: scale(1.05); }
    }
    .ambient-glow { animation: pulse-slow 8s infinite ease-in-out; }

    /* Bento Card Hover Engine */
    .bento-card {
        transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .bento-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.05), 0 15px 25px -10px rgba(0, 0, 0, 0.02);
    }