/* About section styles */

.about {
    padding: 80px 0;
    background: #f8f9fa;
}

.abo {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 50px;
}

.about .left {
    flex: 1;
    text-align: center;
}

.about .right {
    flex: 1;
}

#abt {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

#para {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.8;
}

.about .right p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 15px;
    opacity: 0.8;
}

#pica {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Video styles for About section */
#about-video {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

#about-video:hover {
    transform: scale(1.02);
}

/* Dark theme adjustments */
body[style*="rgb(40, 40, 40)"] .about {
    background: rgb(50, 50, 50);
}

body[style*="rgb(40, 40, 40)"] #abt {
    color: white;
}

/* Mobile styles */
@media (max-width: 768px) {
    .about {
        padding: 40px 0;
    }
    
    .abo {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    #abt {
        font-size: 2rem;
    }
    
    #para, .about .right p {
        font-size: 1rem;
    }
    
    #about-video {
        width: 100%;
        max-width: 100%;
    }
}