/* About Page Styles */
:root {
    --indigo-600: #4f46e5;
    --purple-600: #7c3aed;
    --pink-600: #ec4899;
    --sky-400: #38bdf8;
    --emerald-500: #10b981;
    --amber-500: #f59e0b;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f9fafb;
    color: #0f172a;
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #ec4899 100%);
    color: white;
    padding: 8rem 1rem;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
}

.hero-blur-elements {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    overflow: hidden;
}

.blur-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.blur-circle-1 {
    top: 5rem;
    left: 10%;
    width: 18rem;
    height: 18rem;
    background: white;
}

.blur-circle-2 {
    bottom: 5rem;
    right: 10%;
    width: 24rem;
    height: 24rem;
    background: #38bdf8;
}

.hero-container {
    position: relative;
    z-index: 10;
    max-width: 72rem;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 2rem;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge-text {
    color: #bae6fd;
    font-weight: 600;
    font-size: 1rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-description {
    font-size: 1.25rem;
    color: #c7d2fe;
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.5rem;
    }
}

/* Stats Section */
.stats-section {
    background: white;
    padding: 4rem 0;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    margin-top: -3rem;
    position: relative;
    z-index: 20;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    text-align: center;
    transition: transform 0.3s ease;
    padding: 1rem;
}

.stat-item:hover {
    transform: scale(1.1);
}

.stat-icon {
    font-size: 3rem;
    color: #4f46e5;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.stat-label {
    color: #64748b;
    font-size: 1rem;
}

/* Who We Are Section */
.who-we-are-section {
    padding: 5rem 1rem;
}

.section-header {
    text-align: center;
    max-width: 72rem;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #4f46e5, #7c3aed);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-description {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.7;
    max-width: 48rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .section-description {
        font-size: 1.25rem;
    }
}

/* Vision & Mission Grid */
.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .vision-mission-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

.vision-card,
.mission-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.vision-card:hover,
.mission-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.vision-card {
    border-color: #c7d2fe;
}

.mission-card {
    border-color: #bae6fd;
}

.card-header {
    padding: 2rem;
    color: white;
}

.vision-header {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
}

.mission-header {
    background: linear-gradient(135deg, #38bdf8, #4f46e5);
}

.card-header-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.vision-card:hover .card-header-icon,
.mission-card:hover .card-header-icon {
    transform: scale(1.1);
}

.card-header-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.header-divider {
    width: 4rem;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 1px;
}

.card-content {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(199, 210, 254, 0.1), rgba(186, 230, 253, 0.1));
}

.card-content p {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.7;
}

/* Values Section */
.values-section {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    color: white;
    padding: 5rem 1rem;
}

.section-icon {
    font-size: 4rem;
    color: #38bdf8;
    margin-bottom: 1.5rem;
    display: block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 72rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-0.5rem);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.value-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}

.value-icon i {
    font-size: 1.75rem;
    color: white;
}

.value-icon.innovation {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
}

.value-icon.integrity {
    background: linear-gradient(135deg, #7c3aed, #ec4899);
}

.value-icon.inclusivity {
    background: linear-gradient(135deg, #38bdf8, #4f46e5);
}

.value-icon.excellence {
    background: linear-gradient(135deg, #10b981, #0d9488);
}

.value-icon.empowerment {
    background: linear-gradient(135deg, #f59e0b, #ea580c);
}

.value-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.value-description {
    font-size: 0.875rem;
    color: #cbd5e1;
    line-height: 1.5;
}

/* Impact Section */
.impact-section {
    background: linear-gradient(to right, #4f46e5, #7c3aed, #ec4899);
    padding: 5rem 1rem;
    text-align: center;
    color: white;
}

.impact-content {
    max-width: 72rem;
    margin: 0 auto;
}

.impact-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.impact-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .impact-title {
        font-size: 3rem;
    }
}

.impact-description {
    font-size: 1.25rem;
    color: #c7d2fe;
    max-width: 48rem;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.impact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .impact-buttons {
        flex-direction: row;
    }
}

.btn-impact-primary,
.btn-impact-secondary {
    padding: 1rem 2rem;
    font-weight: 700;
    border-radius: 9999px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1rem;
    border: none;
    cursor: pointer;
}

.btn-impact-primary {
    background: white;
    color: #4f46e5;
}

.btn-impact-primary:hover {
    background: #f8fafc;
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.btn-impact-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-impact-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

/* Commitment Section */
.commitment-section {
    padding: 5rem 1rem;
}

.commitment-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid #c7d2fe;
    max-width: 72rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .commitment-card {
        padding: 3rem;
    }
}

.commitment-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: #1e293b;
    text-align: center;
    margin-bottom: 2rem;
}

.commitment-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .commitment-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

.commitment-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.75rem;
    transition: background-color 0.3s ease;
}

.commitment-item:hover {
    background-color: #f8fafc;
}

.commitment-check {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4f46e5;
    min-width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.check-purple {
    color: #7c3aed;
}

.check-sky {
    color: #38bdf8;
}

.check-emerald {
    color: #10b981;
}

.commitment-item-title {
    color: #1e293b;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    display: block;
}

.commitment-item-description {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .impact-title {
        font-size: 2rem;
    }
    
    .impact-description {
        font-size: 1.125rem;
    }
}

/* Body padding for fixed navbar */
body {
    padding-top: 64px;
}

@media (max-width: 768px) {
    body {
        padding-top: 64px;
    }
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth transitions for interactive elements */
.stat-item,
.value-card,
.commitment-item,
.btn-impact-primary,
.btn-impact-secondary {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover effects for cards */
.vision-card,
.mission-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}