/* Additional styles for About section */

.about-section {
    padding: 6rem 0;
    background: rgba(5, 10, 20, 0.85);
    position: relative;
}

.about-heading-small {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    text-transform: uppercase;
}

.about-heading-large {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-right: 2rem;
}

.about-badge {
    display: inline-block;
    background-color: rgba(139, 0, 0, 0.1);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    border: 1px solid rgba(139, 0, 0, 0.2);
}

.about-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.about-separator {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin-bottom: 2rem;
    border-radius: 2px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(139, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.feature-text h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.feature-text p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.8);
}

.about-image-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 2rem;
}

.about-image-wrapper {
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-radius: 1rem;
    overflow: hidden;
    max-width: 80%;
    margin: 0 auto;
}

.about-image {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.05);
}

.about-image-decoration {
    position: absolute;
    border-radius: 1rem;
    z-index: 1;
}

.about-decoration-1 {
    width: 60%;
    height: 60%;
    background: rgba(139, 0, 0, 0.05);
    top: 5%;
    left: 5%;
}

.about-decoration-2 {
    width: 40%;
    height: 40%;
    background: rgba(5, 10, 20, 0.05);
    bottom: 5%;
    right: 5%;
}

.about-image-floating-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(139, 0, 0, 0.3);
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .about-content {
        padding-right: 0;
        margin-bottom: 3rem;
        text-align: center;
    }
    
    .about-separator {
        margin-left: auto;
        margin-right: auto;
    }
    
    .about-feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .feature-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .about-image-container {
        padding-top: 0;
    }
}
