/* About Section */
#about { 
    background: linear-gradient(180deg, #f9f9f9, #fff4e6);
    padding-bottom: 120px; 
}

.about-container { 
    display: flex; 
    align-items: center; 
    gap: 3rem; 
    max-width: 1200px; 
    margin: 0 auto;
}

.about-image { 
    flex: 1; 
}

.about-image img { 
    width: 100%; 
    border-radius: 10px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); 
}

.about-content { 
    flex: 1.2; 
    text-align: left; 
    position: relative; 
    overflow: hidden; /* Fix for background text overflow */
}

.about-title-background { 
    position: absolute; 
    top: -50px; 
    left: -20px; 
    font-size: 6rem; 
    font-weight: 800; 
    color: #e9ecef; 
    opacity: 0.8; 
    z-index: 1; 
    white-space: nowrap; 
}

.about-text-wrapper { 
    position: relative; 
    z-index: 2; 
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.about-text-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.about-text-wrapper h3 { 
    margin-top: 0; 
    font-size: 1.8rem; 
}

.values-container { 
    display: flex; 
    justify-content: space-around;
    flex-wrap: wrap; 
    gap: 2rem; 
    max-width: 1200px; 
    margin: 4rem auto 0;
}

.value-item { 
    flex: 1; 
    text-align: center; 
    padding: 2.5rem 2rem; 
    background: #fff; 
    border-radius: 10px; 
    border: 1px solid #e9ecef; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); 
    transition: transform 0.3s, box-shadow 0.3s; 
}

.value-item:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 15px 30px rgba(0,0,0,0.1); 
}

.value-icon { 
    width: 70px; 
    height: 70px; 
    margin: 0 auto 1.5rem; 
    background: #f39c12; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 2rem; 
    color: #fff; 
}

.value-item h3 { 
    font-size: 1.2rem; 
    margin-bottom: 0.5rem; 
}

/* --- MOBILE STYLES START HERE --- */
@media (max-width: 900px) {
    .about-container {
        flex-direction: column; /* Stacks the image and content vertically */
    }
    .values-container {
        flex-direction: column; /* Stacks the value cards vertically */
    }
}
/* --- MOBILE STYLES END HERE --- */