.about-banner{
    height: 300px;
    background-image: linear-gradient(rgba(0,0,0,0.1),rgba(0,0,0,0.5)),url('../img/about-banner.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
}
.about-h1{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 2rem;
    animation: fadeup 1s;
}
@keyframes fadeup {
    0%{
        opacity: 0;
        transform: translateY(20px);
    }
    100%{
        opacity: 1;
        transform: translateY(0px);
    }
}

.about-container{
    color: #000;
    width: 70%;
    border-radius: 40px;
    background: #ebebeb;
    margin: 0px auto;
    margin-top: -50px;
    padding: 16px 0;
}

.about-container h2{
    text-align:center;
    padding: 20px;
}

.about-h1 h1 {
    background: linear-gradient(to top, var(--main-color), #0058a4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text{
    font-size: 1rem;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    background: #ffffff;
    padding: 5px 10px;
    border-radius: 10px;
}

.content-container{
    background-image: url('../img/abt.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 80px 0;
}

.about-content{
    width: 80%;
    margin: 0 auto;
    color: #000;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    border-radius: 40px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    align-items: center;
    position: relative;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px); 
    z-index: 1;
}

.left-content img{
    width: 100%;
    border-radius: 40px 0px 0px 40px;
    padding: 20px;
}

.right-content {
    z-index: 1;
    border-radius: 0px 40px 40px 0;
    padding: 10px 20px;
    font-weight: 500;
    text-align: justify;
}

.right-content h1 {
    font-size: 2.5rem;
    margin-top: 0;
    position: relative;
    z-index: 2; 
}

.right-content p{
    line-height: 25px;
}

.right-content .flex{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
}

.right-content .flex p{
    font-size: 0.9rem;
    line-height: 18px;
    text-align: left;
}

.abt-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
    color: #000;
}

.main-heading {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.icon {
    font-size: 2rem;
    color: #007BFF;
    margin-bottom: 15px;
}

.feature-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.feature-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 1200px) {
    .about-container {
        width: 80%;
        margin-top: -80px;
    }
    .text{
        font-size: 1.2rem;
        gap: 0;
    }
    .about-content{
        grid-template-columns: repeat(1, 1fr);
        gap: 0;
    }
    .left-content img{
        width: 95%;
    }
    .content-container{
        padding-bottom: 0;
    }
    .features-grid {
        width: 80%;
        margin: 0 auto;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about{
        flex-direction: column;
    }
}

@media (max-width: 500px) {
    .about-banner{
        height: 300px;
    }
    .about-h1{
        font-size: 2rem;
    }
    .about-container h2{
        font-size: 1.2rem;
        margin: 0;
    }
    .about-content {
        width: 90%;
        background: transparent;
    }
    .left-content img {
        width: 88%;
    }
    .right-content h1 {
        font-size: 2rem;
        text-align: left;
    }
    .right-content h2{
        font-size: 1.1rem;
    }
    .main-heading {
        font-size: 2rem;
    }
    .features-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}