/* About Us Section Styles */
.about-us-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    overflow: hidden;
}

.about-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(var(--theme-color-rgb), 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(var(--theme-color-rgb), 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.about-us-content {
    position: relative;
    z-index: 2;
}

.about-us-badge {
    display: inline-block;
    padding: 8px 24px;
    background: #0e56a2;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(14, 86, 162, 0.3);
    animation: fadeInUp 0.6s ease-out;
}

.about-us-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--title-color);
    margin-bottom: 24px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out;
}

.about-us-title .highlight {
    color: #0e56a2;
    position: relative;
}

.about-us-description {
    font-size: 17px;
    line-height: 1.8;
    color: var(--body-color);
    margin-bottom: 0;
    animation: fadeInUp 1s ease-out;
}

.about-us-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    animation: fadeInLeft 1s ease-out;
}

.about-us-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-us-image:hover img {
    transform: scale(1.05);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .about-us-title {
        font-size: 36px;
    }

    .about-us-image {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .about-us-section {
        padding: 60px 0;
    }

    .about-us-title {
        font-size: 28px;
    }

    .about-us-description {
        font-size: 16px;
    }
}