/* About Section Styles */
.about-container {
    width: 100%;
    min-height: 85vh;
    position: relative;
    overflow: hidden;
    background-color: #f8f9fa;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0.95));
    z-index: 1;
}

.about-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: 85vh;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.about-text-wrapper {
    flex: 1;
    padding-right: 3rem;
}

.about-heading {
    margin-bottom: 2rem;
}

.about-badge {
    display: inline-block;
    color: #004AAD;
    background-color: rgba(0, 74, 173, 0.1);
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.about-heading h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #004AAD;
    margin: 0;
    position: relative;
}

.about-heading h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #004AAD, #5991e6);
    border-radius: 2px;
}

.about-description {
    margin-top: 2rem;
}

.about-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 1.5rem;
}

.about-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.about-features li {
    display: flex;
    align-items: center;
    font-weight: 500;
    color: #333;
}

.about-features li i {
    color: #004AAD;
    margin-right: 0.8rem;
    font-size: 1.1rem;
}

.about-btn {
    display: inline-block;
    padding: 0.7rem 2.5rem;
    background-color: transparent;
    color: #004AAD;
    border: 1px solid #004AAD;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    border-radius: 4px;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    margin-top: 1rem;
}

.about-btn:hover {
    background-color: #004AAD;
    color: white;
}

.about-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.about-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.about-image-main {
    width: 85%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.about-image-secondary {
    width: 50%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    position: absolute;
    bottom: -15%;
    right: 0;
    z-index: 3;
    background-color: white;
    padding: 10px;
}

/* Responsive styles */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
        padding: 3rem 1.5rem;
    }
    
    .about-text-wrapper {
        width: 100%;
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .about-image-wrapper {
        width: 100%;
    }
    
    .about-heading h2 {
        font-size: 2.3rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .about-heading h2 {
        font-size: 1.8rem;
    }
    
    .about-description p {
        font-size: 1rem;
    }
    
    .about-image-main {
        width: 100%;
    }
    
    .about-image-secondary {
        width: 60%;
    }
}
