/* Style CSS for About Page */

/* Global Styles */
body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

.text-indigo-primary { 
    color: #4F46E5; 
}

.bg-indigo-primary { 
    background-color: #4F46E5; 
}

.border-indigo-primary { 
    border-color: #4F46E5; 
}

/* Fixed Navbar Enhancement */
#navbar {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

#navbar.scroll-down {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Global Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Card Styling */
.card-hover {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #E2E8F0;
    background: #FFFFFF;
}

.card-hover:hover {
    border-color: #4F46E5;
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.15);
    transform: translateY(-8px);
}

.stat-item:hover {
    transform: scale(1.05);
    transition: all 0.3s ease;
}

/* About Hero Section */
.about-hero h1 {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: #0F172A;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

/* Our Story Section */
.story-section h2 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 30px;
    text-transform: uppercase;
    color: #0F172A;
}

.story-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 20px;
    font-weight: 500;
}

/* Mission Vision Cards */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.mission-card,
.vision-card {
    padding: 40px;
    border-radius: 22px;
    border: 2px solid #E2E8F0;
    transition: all 0.3s ease;
}

.mission-card {
    background: linear-gradient(135deg, #E0E7FF 0%, rgba(79, 70, 229, 0.1) 100%);
}

.vision-card {
    background: linear-gradient(135deg, #F1F5F9 0%, rgba(15, 23, 42, 0.05) 100%);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: #0F172A;
}

.mission-card p,
.vision-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: #475569;
    font-weight: 500;
}

/* Why Choose Section */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.why-item {
    background: white;
    padding: 30px;
    border-radius: 20px;
    border: 2px solid #E2E8F0;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.why-item:hover {
    border-color: #4F46E5;
    box-shadow: 0 15px 30px rgba(79, 70, 229, 0.12);
    transform: translateY(-5px);
}

.why-item-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.8rem;
}

.why-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0F172A;
}

.why-item p {
    font-size: 0.95rem;
    color: #64748B;
    font-weight: 500;
    line-height: 1.5;
}

/* Stats Box */
.stats-box {
    background: white;
    border: 2px solid #E2E8F0;
    border-radius: 22px;
    padding: 30px;
    transition: all 0.3s ease;
}

.stats-box:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.stat-box-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.stat-box-item:last-child {
    margin-bottom: 0;
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon.indigo {
    background: #EEF2FF;
    color: #4F46E5;
}

.stat-icon.green {
    background: #DCFCE7;
    color: #16A34A;
}

.stat-icon.amber {
    background: #FEF3C7;
    color: #D97706;
}

.stat-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 5px;
}

.stat-content p {
    font-size: 0.9rem;
    color: #64748B;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #4F46E5 0%, #4338CA 100%);
    padding: 60px 20px;
    border-radius: 22px;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
    font-weight: 500;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #4F46E5;
    padding: 15px 40px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    font-size: 1rem;
}

.cta-button:hover {
    background: #F8FAFC;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.2rem;
    }
    
    .story-section h2 {
        font-size: 1.8rem;
    }
    
    .mission-card h3,
    .vision-card h3 {
        font-size: 1.4rem;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
}
