/* About Page Styles */

/* About Hero Section */
.about-hero {
    position: relative;
    padding: 8rem 0 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow: hidden;
}

.about-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.about-hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(29, 78, 216, 0.1) 0%, transparent 50%),
               radial-gradient(circle at 70% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
}

.about-hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.about-hero-particles .particle {
    position: absolute;
    background: linear-gradient(45deg, rgba(29, 78, 216, 0.1), rgba(59, 130, 246, 0.1));
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.about-hero-particles .particle:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.about-hero-particles .particle:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 70%;
    right: 20%;
    animation-delay: 2s;
}

.about-hero-particles .particle:nth-child(3) {
    width: 100px;
    height: 100px;
    top: 50%;
    right: 10%;
    animation-delay: 4s;
}

.about-hero-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

.about-hero-content {
    text-align: center;
    max-width: 50rem;
    margin: 0 auto;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(29, 78, 216, 0.2);
    border-radius: 9999px;
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1d4ed8;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(29, 78, 216, 0.1);
}

.about-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #1e293b;
    margin: 0 0 1.5rem 0;
}

.about-hero-title .title-highlight {
    background: linear-gradient(135deg, #1d4ed8, #3b82f6, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #475569;
    margin: 0;
}

/* Common Section Styles */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(29, 78, 216, 0.1), rgba(59, 130, 246, 0.1));
    border: 1px solid rgba(29, 78, 216, 0.2);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1d4ed8;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    margin: 0;
}

/* Story Section */
.story-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, oklch(0.99 0 0), oklch(0.97 0 0));
}

.story-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .story-grid {
        grid-template-columns: 1.2fr 1fr;
    }
}

.story-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.story-text p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #475569;
    margin: 0;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-box {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 1rem;
    border: 1px solid rgba(29, 78, 216, 0.1);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(29, 78, 216, 0.15);
    border-color: rgba(29, 78, 216, 0.3);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1d4ed8;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.story-visual {
    position: relative;
}

.story-image-wrapper {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.story-image {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.story-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
}

.overlay-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.overlay-badge i {
    font-size: 1.5rem;
    color: #fbbf24;
}

.overlay-badge span {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, oklch(0.98 0 0), oklch(0.96 0 0));
}

.mission-vision-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

.mission-card,
.vision-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(29, 78, 216, 0.15);
}

.mission-card .card-icon,
.vision-card .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1d4ed8, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 8px 24px rgba(29, 78, 216, 0.3);
}

.mission-card .card-icon i,
.vision-card .card-icon i {
    font-size: 2rem;
    color: white;
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 1rem 0;
}

.mission-card p,
.vision-card p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #475569;
    margin: 0;
}

/* Values Section */
.values-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, oklch(0.99 0 0), oklch(0.97 0 0));
}

.values-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.values-header {
    text-align: center;
    margin-bottom: 4rem;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.value-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.5rem;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(29, 78, 216, 0.15);
    border-color: rgba(29, 78, 216, 0.3);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(29, 78, 216, 0.1), rgba(59, 130, 246, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, #1d4ed8, #3b82f6);
    box-shadow: 0 8px 24px rgba(29, 78, 216, 0.3);
}

.value-icon i {
    font-size: 1.75rem;
    color: #1d4ed8;
    transition: color 0.3s ease;
}

.value-card:hover .value-icon i {
    color: white;
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 1rem 0;
}

.value-card p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

/* Team Section */
.team-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, oklch(0.98 0 0), oklch(0.96 0 0));
}

.team-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.team-header {
    text-align: center;
    margin-bottom: 4rem;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 640px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.team-member {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(29, 78, 216, 0.15);
}

.member-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.member-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image {
    transform: scale(1.1);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(29, 78, 216, 0.9), rgba(59, 130, 246, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover .member-overlay {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: white;
    color: #1d4ed8;
    transform: translateY(-2px);
}

.member-info {
    padding: 1.5rem;
    text-align: center;
}

.member-info h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.5rem 0;
}

.member-role {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1d4ed8;
    margin: 0 0 0.75rem 0;
}

.member-bio {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #64748b;
    margin: 0;
}

/* Achievements Section */
.achievements-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, oklch(0.99 0 0), oklch(0.97 0 0));
}

.achievements-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.achievements-header {
    text-align: center;
    margin-bottom: 4rem;
}

.achievements-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px) {
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .achievements-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.achievement-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.achievement-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(251, 191, 36, 0.2);
    border-color: rgba(251, 191, 36, 0.3);
}

.achievement-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 8px 24px rgba(251, 191, 36, 0.3);
}

.achievement-icon i {
    font-size: 1.75rem;
    color: white;
}

.achievement-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.75rem 0;
}

.achievement-card p {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #64748b;
    margin: 0;
}

/* Timeline Section */
.timeline-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, oklch(0.98 0 0), oklch(0.96 0 0));
}

.timeline-container {
    max-width: 60rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.timeline-header {
    text-align: center;
    margin-bottom: 4rem;
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #1d4ed8, #3b82f6);
    transform: translateX(-50%);
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    justify-content: flex-start;
}

.timeline-item:nth-child(even) {
    justify-content: flex-end;
}

@media (max-width: 768px) {
    .timeline-item {
        justify-content: flex-start;
        padding-left: 60px;
    }
}

.timeline-marker {
    position: absolute;
    left: 50%;
    width: 20px;
    height: 20px;
    background: #1d4ed8;
    border: 4px solid white;
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 12px rgba(29, 78, 216, 0.3);
    z-index: 10;
}

@media (max-width: 768px) {
    .timeline-marker {
        left: 20px;
    }
}

.timeline-content {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    max-width: 45%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .timeline-content {
        max-width: 100%;
    }
}

.timeline-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(29, 78, 216, 0.15);
}

.timeline-year {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, #1d4ed8, #3b82f6);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    margin-bottom: 0.75rem;
}

.timeline-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.5rem 0;
}

.timeline-content p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

/* CTA Section */
.about-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1d4ed8, #3b82f6);
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
               radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.cta-container {
    max-width: 60rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin: 0 0 1rem 0;
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 2.5rem 0;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-large,
.btn-secondary-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary-large {
    color: #1d4ed8;
    background: white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.btn-secondary-large {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

.btn-secondary-large:hover {
    background: white;
    color: #1d4ed8;
    transform: translateY(-2px);
}

/* Dark Mode */
.dark .about-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.dark .about-badge,
.dark .section-badge {
    background: rgba(15, 23, 42, 0.9);
    border-color: rgba(59, 130, 246, 0.3);
    color: #93c5fd;
}

.dark .about-hero-title,
.dark .section-title {
    color: #f1f5f9;
}

.dark .about-hero-description,
.dark .section-subtitle {
    color: #cbd5e1;
}

.dark .story-section,
.dark .values-section,
.dark .achievements-section {
    background: linear-gradient(135deg, oklch(0.16 0 0), oklch(0.13 0 0));
}

.dark .mission-vision-section,
.dark .team-section,
.dark .timeline-section {
    background: linear-gradient(135deg, oklch(0.15 0 0), oklch(0.12 0 0));
}

.dark .story-text p,
.dark .mission-card p,
.dark .vision-card p,
.dark .value-card p,
.dark .member-bio,
.dark .achievement-card p,
.dark .timeline-content p {
    color: #cbd5e1;
}

.dark .stat-box,
.dark .mission-card,
.dark .vision-card,
.dark .value-card,
.dark .team-member,
.dark .achievement-card,
.dark .timeline-content {
    background: rgba(24, 24, 27, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
}

.dark .mission-card h3,
.dark .vision-card h3,
.dark .value-card h3,
.dark .member-info h4,
.dark .achievement-card h4,
.dark .timeline-content h4 {
    color: #f1f5f9;
}

.dark .stat-number {
    color: #60a5fa;
}

.dark .stat-label,
.dark .member-role {
    color: #94a3b8;
}

.dark .overlay-badge {
    background: rgba(24, 24, 27, 0.95);
}

.dark .overlay-badge span {
    color: #f1f5f9;
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero {
        padding: 6rem 0 3rem 0;
    }

    .story-stats {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1rem;
    }
}
