.about-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 120px 30px;
    background-color: #f8f8f8;
}

.about-container {
    display: flex;
    max-width: 1500px;
    align-items: flex-start;
    gap: 80px;
    padding: 60px 20px;
}

.about-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    animation: about-fadeInLeft 1s ease-in-out;
}

.about-image-wrapper img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.about-text-wrapper {
    flex: 1;
    text-align: left;
    animation: about-fadeInRight 1s ease-in-out;
}

.about-text-wrapper h1 {
    font-size: 3rem;
    margin-bottom: 25px;
    line-height: 1.3;
font-weight: 500;
}

.about-text-wrapper p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #333;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 0;
}


.about-list li {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-align: left;
}

.about-list i {
    font-size: 1.8rem;
    width: 40px;   
    height: 40px; 
    margin-right: 20px;
    color: #1D4F77;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-list li:hover i {
    color: #215b8a;
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
}

.badge{

    background-color:#1d4f77 ;
    border-radius: 20px;
  padding-right: 15px;
  font-weight: 600;
  padding-left: 15px;
  padding-top: 5px;
  padding-bottom: 5px;
  color: white !important;
  
}

@keyframes about-fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes about-fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 1024px) {
    .about-container {
        gap: 40px;
    }

	.badge{
		line-height: 2;
	}
    .about-text-wrapper h1 {
        font-size: 2.5rem;

    }

    .about-text-wrapper p {
        font-size: 1.1rem;
       
    }

    .about-list li {
        font-size: 1.1rem;
    }

    .about-list i {
        font-size: 1.6rem;
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: left;
        gap: 40px;
    }

    .about-image-wrapper {
        justify-content: center;
    }
	
	.about-section{
		padding: 60px 30px;
	}

    .about-text-wrapper h1 {
        font-size: 2rem;
        line-height: 1.7;
        text-align: left;
    }

    .about-text-wrapper p {
        text-align: left;
    }

    .about-list li {
        justify-content: flex-start;
        text-align: left;
        margin-bottom: 15px;
    }

    .about-list i {
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .about-text-wrapper h1 {
        font-size: 1.8rem;
    }

    .about-list li {
        font-size: 1rem;
    }

    .about-list i {
        font-size: 1.3rem;
        width: 30px;
        height: 30px;
    }
}
