/* About Us Page Styles */

/* Override text colors for better readability on white backgrounds */
:root {
    --color-text-dark: #333333;
    --color-text-light: #666666;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: calc(100vh - 200px);
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-title {
    font-size: 3rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.about-intro {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    background: linear-gradient(135deg, rgba(104, 75, 255, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(104, 75, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.logo-container {
    flex-shrink: 0;
}

.logo-box {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(104, 75, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-large {
    width: 250px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.intro-text {
    flex: 1;
}

.intro-text .about-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #ffffff;
    margin: 0;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}


.vision-section {
    background: linear-gradient(135deg, rgba(104, 75, 255, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(104, 75, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.section-title {
    font-size: 2.2rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.vision-text {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #ffffff;
    margin: 0;
    font-style: italic;
}

.features-section {
    background: linear-gradient(135deg, rgba(104, 75, 255, 0.9) 0%, rgba(59, 130, 246, 0.9) 100%);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(104, 75, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.features-section .section-title {
    color: white;
}

.features-section .feature-title {
    color: rgb(0, 0, 0);
}

.features-section .feature-description {
    color: rgba(0, 0, 0, 0.9);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #684bff 0%, #3b82f6 100%);
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(104, 75, 255, 0.3);
}

.feature-icon-img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.feature-title {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.feature-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-dark);
    margin: 0;
}


/* Responsive Design */
@media screen and (max-width: 768px) {
    .about-container {
        padding: 20px 15px;
    }
    
    .about-title {
        font-size: 2.2rem;
    }
    
    .logo-large {
        width: 150px;
        height: auto;
    }
    
    .about-intro {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 25px 20px;
    }
    
    .logo-box {
        padding: 20px;
    }
    
    .logo-large {
        width: 200px;
    }
    
    .intro-text .about-text {
        font-size: 1.1rem;
    }
    
    .vision-section,
    .features-section {
        padding: 25px 20px;
    }
    
    .about-text,
    .vision-text {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-item {
        padding: 20px 15px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon-img {
        width: 30px;
        height: 30px;
    }
    
}

@media screen and (max-width: 480px) {
    .about-title {
        font-size: 1.8rem;
    }
    
    .logo-large {
        width: 120px;
        height: auto;
    }
    
    .about-intro {
        padding: 20px 15px;
    }
    
    .logo-box {
        padding: 15px;
    }
    
    .logo-large {
        width: 150px;
    }
    
    .intro-text .about-text {
        font-size: 1rem;
    }
    
    .vision-section,
    .features-section {
        padding: 20px 15px;
    }
    
    .about-text,
    .vision-text {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    
    .feature-icon {
        width: 45px;
        height: 45px;
    }
    
    .feature-icon-img {
        width: 25px;
        height: 25px;
    }
}
