 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background: #343C43;
            overflow-x: hidden;
        }

        .about-section {
            position: relative;
            min-height: 100vh;
            padding: 100px 0;
            background: linear-gradient(180deg, #343C43 0%, #1D4ED8 50%, #343C43 100%);
        }

        /* Animated Background Grid */
        .grid-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.1;
            z-index: 1;
        }

        .grid-line {
            position: absolute;
            background: #5EC6FF;
            animation: gridPulse 4s ease-in-out infinite;
        }

        .grid-line.horizontal {
            width: 100%;
            height: 1px;
            animation-delay: var(--delay);
        }

        .grid-line.vertical {
            width: 1px;
            height: 100%;
            animation-delay: var(--delay);
        }

        @keyframes gridPulse {
            0%, 100% { opacity: 0.1; transform: scale(1); }
            50% { opacity: 0.3; transform: scale(1.02); }
        }

        /* Morphing Shapes */
        .morph-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
        }

        .morphing-shape {
            position: absolute;
            background: linear-gradient(45deg, #5EC6FF, #1D4ED8);
            border-radius: 50%;
            filter: blur(1px);
            opacity: 0.6;
            animation: morph 8s ease-in-out infinite;
        }

        .shape-morph-1 {
            width: 200px;
            height: 200px;
            top: 15%;
            left: 5%;
            animation-delay: 0s;
        }

        .shape-morph-2 {
            width: 150px;
            height: 150px;
            top: 60%;
            right: 8%;
            animation-delay: 3s;
        }

        .shape-morph-3 {
            width: 100px;
            height: 100px;
            top: 80%;
            left: 15%;
            animation-delay: 6s;
        }

        @keyframes morph {
            0%, 100% {
                border-radius: 50%;
                transform: rotate(0deg) scale(1);
            }
            25% {
                border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
                transform: rotate(90deg) scale(1.1);
            }
            50% {
                border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
                transform: rotate(180deg) scale(0.9);
            }
            75% {
                border-radius: 40% 60% 60% 40% / 60% 40% 40% 60%;
                transform: rotate(270deg) scale(1.2);
            }
        }

        /* Main Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 10;
        }

        /* Section Header */
        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-title {
            font-size: 3.5rem;
            font-weight: 800;
            color: white;
            position: relative;
            display: inline-block;
            animation: slideInFromTop 1s ease-out;
        }

        .section-title::before {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 4px;
            background: linear-gradient(90deg, #5EC6FF, #1D4ED8);
            border-radius: 2px;
            animation: expandLine 1.5s ease-out 0.5s forwards;
        }

        .section-subtitle {
            font-size: 1.3rem;
            color: #5EC6FF;
            margin-top: 20px;
            opacity: 0;
            animation: fadeInUp 1s ease-out 1s forwards;
        }

        /* Content Grid */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 80px;
        }

        /* Text Content */
        .about-text {
            animation: slideInFromLeft 1s ease-out 0.5s both;
        }

        .about-text h3 {
            font-size: 2.2rem;
            color: white;
            margin-bottom: 25px;
            position: relative;
        }

        .about-text h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 0;
            height: 3px;
            background: #5EC6FF;
            border-radius: 2px;
            animation: expandLineLeft 1s ease-out 1.5s forwards;
        }

        .about-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 20px;
            opacity: 0;
            transform: translateY(20px);
            animation: textReveal 0.8s ease-out forwards;
        }

        .about-text p:nth-child(3) { animation-delay: 1.8s; }
        .about-text p:nth-child(4) { animation-delay: 2.1s; }
        .about-text p:nth-child(5) { animation-delay: 2.4s; }

        /* Interactive Stats */
        .interactive-stats {
            animation: slideInFromRight 1s ease-out 0.8s both;
        }

        .stat-card {
            background: rgba(94, 198, 255, 0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(94, 198, 255, 0.3);
            border-radius: 20px;
            padding: 30px;
            margin-bottom: 25px;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(94, 198, 255, 0.2), transparent);
            transition: left 0.6s ease;
        }

        .stat-card:hover::before {
            left: 100%;
        }

        .stat-card:hover {
            transform: translateY(-10px) scale(1.02);
            background: rgba(94, 198, 255, 0.15);
            box-shadow: 0 20px 40px rgba(94, 198, 255, 0.2);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #5EC6FF;
            margin-bottom: 10px;
            counter-reset: num var(--num);
        }

        .stat-number::after {
            content: counter(num);
            animation: countUp 2s ease-out 3s both;
        }

        .stat-label {
            font-size: 1.1rem;
            color: white;
            font-weight: 500;
        }

        .stat-description {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.7);
            margin-top: 8px;
            line-height: 1.5;
        }

        /* Team Section */
        .team-showcase {
            text-align: center;
            margin-top: 100px;
        }

        .team-title {
            font-size: 2.5rem;
            color: white;
            margin-bottom: 50px;
            animation: slideInFromBottom 1s ease-out 2s both;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .team-member {
            position: relative;
            padding: 30px 20px;
            background: rgba(29, 78, 216, 0.1);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(29, 78, 216, 0.3);
            border-radius: 25px;
            transition: all 0.4s ease;
            animation: popIn 0.6s ease-out both;
            animation-delay: calc(2.5s + var(--index) * 0.2s);
        }

        .team-member:hover {
            transform: rotateY(10deg) rotateX(5deg) translateZ(20px);
            background: rgba(29, 78, 216, 0.2);
            box-shadow: 0 25px 50px rgba(29, 78, 216, 0.3);
        }

        .member-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, #5EC6FF, #1D4ED8);
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            animation: spin360 2s ease-in-out infinite;
        }

        .member-name {
            font-size: 1.3rem;
            color: white;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .member-role {
            color: #5EC6FF;
            font-size: 1rem;
            font-weight: 500;
        }

        /* Wave Animation */
        .wave-divider {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,120 C300,80 600,40 1200,80 L1200,120 Z' fill='%235EC6FF' fill-opacity='0.1'/%3E%3C/svg%3E") repeat-x;
            animation: wave 3s ease-in-out infinite;
        }

        /* Keyframe Animations */
        @keyframes slideInFromTop {
            from { opacity: 0; transform: translateY(-50px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes slideInFromLeft {
            from { opacity: 0; transform: translateX(-100px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes slideInFromRight {
            from { opacity: 0; transform: translateX(100px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes slideInFromBottom {
            from { opacity: 0; transform: translateY(50px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes textReveal {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes expandLine {
            from { width: 0; }
            to { width: 200px; }
        }

        @keyframes expandLineLeft {
            from { width: 0; }
            to { width: 60px; }
        }

        @keyframes popIn {
            from { opacity: 0; transform: scale(0.8) rotateY(-90deg); }
            to { opacity: 1; transform: scale(1) rotateY(0deg); }
        }

        @keyframes spin360 {
            0%, 100% { transform: rotate(0deg); }
            50% { transform: rotate(180deg); }
        }

        @keyframes wave {
            0%, 100% { transform: translateX(0); }
            50% { transform: translateX(-25px); }
        }

        @keyframes countUp {
            from { --num: 0; }
            to { --num: var(--target); }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .about-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .about-text h3 {
                font-size: 1.8rem;
            }
            
            .team-grid {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
                gap: 20px;
            }
            
            .morphing-shape {
                display: none;
            }
        }

        /* Scroll-triggered animations */
        .scroll-reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease-out;
        }

        .scroll-reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }