
       .about-container{
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 5rem;
       }

       .about {
            background-color: rgb(0, 0, 0);
            
            max-width: 100%;
            text-align: center;
        }

        .about h2 {
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            margin-bottom: 30px;
            font-weight: 700;
        }

        .about h2 .highlight {
            color: #4a90ff;
        }

        .about-text {
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 60px;
            max-width: 1100px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.9;
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }

        .stat-item {
            text-align: center;
            opacity: 0;
            animation: slideUp 0.8s ease forwards;
        }

        .stat-item:nth-child(1) { animation-delay: 0.2s; }
        .stat-item:nth-child(2) { animation-delay: 0.4s; }
        .stat-item:nth-child(3) { animation-delay: 0.6s; }
        .stat-item:nth-child(4) { animation-delay: 0.8s; }

        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: #4a90ff;
            display: block;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 1.1rem;
            opacity: 0.8;
        }

        .learn-more-btn {
            background: linear-gradient(135deg, #4a90ff, #6366f1);
            color: white;
            padding: 15px 40px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(74, 144, 255, 0.3);
        }

        .learn-more-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 30px rgba(74, 144, 255, 0.4);
        }

      @media screen and (max-width: 768px) {

        .about-text {
            font-size: 18px;
            width: 90%;
            font-weight: 200;
            
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 20px;
            margin-bottom: 60px;
        }
      }