 /* Animated Background */
        #about {
            padding: 120px 0;
            position: relative;
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
            width: 100%;
            overflow: hidden;
        }

        #about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(29, 78, 216, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(29, 78, 216, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(29, 78, 216, 0.05) 0%, transparent 40%);
            animation: backgroundPulse 15s ease-in-out infinite;
        }

        @keyframes backgroundPulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        /* Particles Canvas */
        #particles-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            opacity: 0.3;
        }

        .about-container {
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        /* Section Header */
        .about-header {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
        }

        .about-title {
             font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    line-height: 1.2;
        }

        @keyframes titleGlow {
            0%, 100% { filter: drop-shadow(0 0 20px rgba(29, 78, 216, 0.3)); }
            50% { filter: drop-shadow(0 0 40px rgba(29, 78, 216, 0.5)); }
        }

        .about-subtitle {
       font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
        }

        /* About Cards Grid */
        .about-cards {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-bottom: 80px;
            perspective: 1000px;
        }

        .about-card {
            background: #ffffff;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 2px solid #e2e8f0;
            border-radius: 24px;
            padding: 45px 35px;
            text-align: center;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 4px 6px rgba(29, 78, 216, 0.05);
        }

        .about-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Glassmorphism Glow Effect */
        .about-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                45deg,
                transparent,
                rgba(29, 78, 216, 0.08),
                transparent
            );
            transform: rotate(45deg);
            transition: all 0.6s ease;
        }

        .about-card:hover::before {
            animation: shimmer 2s linear infinite;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }

        /* Gradient Border Animation */
        .about-card::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 24px;
            padding: 2px;
            background: linear-gradient(135deg, #1d4ed8, #2563eb, #1d4ed8);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .about-card:hover::after {
            opacity: 1;
            animation: rotateBorder 3s linear infinite;
        }

        @keyframes rotateBorder {
            0% { filter: hue-rotate(0deg); }
            100% { filter: hue-rotate(360deg); }
        }

        .about-card:hover {
            transform: translateY(-15px) scale(1.03);
            background: #ffffff;
            border-color: #1d4ed8;
            box-shadow: 
                0 25px 50px rgba(29, 78, 216, 0.2),
                0 0 100px rgba(29, 78, 216, 0.1),
                inset 0 0 50px rgba(29, 78, 216, 0.03);
        }

        /* Card Icon with 3D Effect */
        .card-icon {
            margin-bottom: 30px;
            position: relative;
            transition: all 0.5s ease;
            transform-style: preserve-3d;
            filter: drop-shadow(0 10px 20px rgba(29, 78, 216, 0.2));
        }

        .about-card:hover .card-icon {
            transform: rotateY(360deg) scale(1.15);
            filter: drop-shadow(0 15px 30px rgba(29, 78, 216, 0.4));
        }

        .card-icon svg {
            filter: drop-shadow(0 0 20px currentColor);
        }

        /* Card Content */
        .card-title {
            font-size: 1.6rem;
            font-weight: 700;
            color: #1d4ed8;
            margin-bottom: 18px;
            line-height: 1.3;
            letter-spacing: -0.01em;
        }

        .card-desc {
            color: #64748b;
            line-height: 1.7;
            margin-bottom: 28px;
            font-size: 1rem;
            font-weight: 400;
        }

        /* Card Features List with Modern Design */
        .card-features {
            list-style: none;
            padding: 0;
            margin: 0;
            text-align: left;
        }

        .card-features li {
            padding: 10px 0;
            position: relative;
            padding-left: 30px;
            color: #475569;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .about-card:hover .card-features li {
            color: #1d4ed8;
            transform: translateX(5px);
        }

        .card-features li:before {
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 18px;
            height: 18px;
            background: #1d4ed8;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 15px rgba(29, 78, 216, 0.3);
        }

        .card-features li:after {
            content: "✓";
            position: absolute;
            left: 4px;
            top: 50%;
            transform: translateY(-50%);
            color: white;
            font-weight: bold;
            font-size: 0.75rem;
        }

        /* Stats Section with Advanced Design */
        .about-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .stat-box {
            background: #ffffff;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 2px solid #e2e8f0;
            border-radius: 20px;
            padding: 50px 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(50px) scale(0.9);
            transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 4px 6px rgba(29, 78, 216, 0.05);
        }

        .stat-box.visible {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        /* Animated Gradient Background */
        .stat-box::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                45deg,
                transparent 30%,
                rgba(29, 78, 216, 0.05) 50%,
                transparent 70%
            );
            animation: statGlow 3s linear infinite;
        }

        @keyframes statGlow {
            0% { transform: translate(0, 0) rotate(0deg); }
            100% { transform: translate(50%, 50%) rotate(360deg); }
        }

        .stat-box:hover {
            transform: translateY(-10px) scale(1.05);
            background: #ffffff;
            border-color: #1d4ed8;
            box-shadow: 
                0 20px 60px rgba(29, 78, 216, 0.2),
                0 0 80px rgba(29, 78, 216, 0.15),
                inset 0 0 30px rgba(29, 78, 216, 0.03);
        }

        /* Stat Content */
        .stat-icon {
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
            transition: all 0.4s ease;
            filter: drop-shadow(0 5px 15px rgba(29, 78, 216, 0.2));
        }

        .stat-box:hover .stat-icon {
            transform: scale(1.2) rotateY(180deg);
            filter: drop-shadow(0 10px 30px rgba(29, 78, 216, 0.4));
        }

        .stat-icon svg {
            filter: drop-shadow(0 0 15px currentColor);
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: #1d4ed8;
            margin-bottom: 12px;
            line-height: 1;
            position: relative;
            z-index: 1;
            letter-spacing: -0.02em;
        }

        .stat-label {
            font-size: 1.1rem;
            color: #64748b;
            font-weight: 500;
            position: relative;
            z-index: 1;
            letter-spacing: 0.02em;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .about-cards,
            .about-stats {
                grid-template-columns: repeat(2, 1fr);
            }

            .about-title {
                font-size: 3rem;
            }
        }

        @media (max-width: 768px) {
            #about {
                padding: 80px 0;
            }
            
            .about-title {
                font-size: 2.5rem;
            }
            
            .about-subtitle {
                font-size: 1.1rem;
            }
            
            .about-cards,
            .about-stats {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .about-card,
            .stat-box {
                padding: 35px 25px;
            }
            
            .stat-number {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 480px) {
            .about-title {
                font-size: 2rem;
            }
            
            .stat-number {
                font-size: 2.2rem;
            }
        }