	
    .about-section2{
       display: flex;   
    
    }

    .about-section2 .about-imagee{
    width:50%;
    }

    .about-section2 .about-contentt{
    width:50%;
    padding: 0 0 0 20px;
    }
    .about-section2 .about-contentt p{
    color: #000;
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    }
    
       
           
    /* Mission Section */
        .mission {
            padding: 100px 0;
            background: white;
        }

        .mission-content {
            display: flex;
            gap: 50px;
            align-items: center;
        }

        .mission-text {
            flex: 1;
        }

		.mission-text p{
        color: #000;
        font-size: 16px;
        font-weight: 500;
        line-height: 28px;
		}

       
        .mission-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        .stat-card {
			
            background:#fff;
            border-radius: 15px;
            padding: 25px;
            text-align: center;
            box-shadow: 0 10px 25px #fff;
            transition:0.4s ease;
        }
        .stat-card{
            transform: translateY(-5px);
            background: linear-gradient(135deg, var(--light), white);
            box-shadow: 0 10px 25px #ee763c;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            background: linear-gradient(135deg, var(--light), white);
            box-shadow: 0 10px 25px #3ba1dd;
        }

        .stat-card i {
            font-size: 40px;
            color: #ee763c;
            margin-bottom: 15px;
        }

        .stat-card h4 {
            font-size:24px;
            margin-bottom: 10px;
            color: var(--dark);
        }

        .mission-image {
            flex: 1;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .mission-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
