/* About Page - Creative Gradient Theme */

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 800;
}

.about-hero p {
    font-size: 22px;
    opacity: 0.95;
}

.hero-decorations {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.deco {
    position: absolute;
    opacity: 0.1;
}

.deco-1 {
    width: 300px;
    height: 300px;
    background: white;
    border-radius: 50%;
    top: -50px;
    right: -50px;
    animation: float 6s ease-in-out infinite;
}

.deco-2 {
    width: 200px;
    height: 200px;
    background: white;
    top: 50%;
    left: -100px;
    animation: float 8s ease-in-out infinite reverse;
}

.deco-3 {
    width: 150px;
    height: 150px;
    background: white;
    border-radius: 50%;
    bottom: -75px;
    right: 100px;
    animation: float 7s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(30px);
    }
}

/* Mission Section */
.mission-section {
    padding: 80px 20px;
    background: white;
}

.mission-card {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 30px;
    align-items: start;
    margin-bottom: 50px;
    padding: 40px;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    border-radius: 12px;
    border-left: 5px solid #667eea;
    transition: var(--transition);
}

.mission-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.15);
}

.mission-icon {
    font-size: 60px;
}

.mission-content h2 {
    margin-top: 0;
    color: #1f2937;
    font-size: 26px;
    margin-bottom: 15px;
}

.mission-content p {
    color: #4b5563;
    line-height: 1.8;
    font-size: 16px;
}

/* Features Highlight */
.features-highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.features-highlight h2 {
    font-size: 36px;
    margin-bottom: 60px;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.highlight-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.highlight-item:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.15);
}

.highlight-number {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 10px;
}

.highlight-item p {
    font-size: 18px;
    margin: 0;
}

/* Team Section */
.team-section {
    padding: 80px 20px;
    background: white;
}

.team-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #1f2937;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.team-member {
    background: white;
    text-align: center;
    padding: 40px 25px;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
    border-color: #667eea;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
}

.member-avatar {
    font-size: 70px;
    margin-bottom: 20px;
}

.team-member h3 {
    color: #1f2937;
    font-size: 22px;
    margin-bottom: 5px;
}

.member-role {
    color: #667eea;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 15px;
}

.member-bio {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
}

/* Timeline Section */
.timeline-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.timeline-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #1f2937;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 30px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #667eea, #764ba2);
    z-index: 0;
}

.timeline-item {
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.timeline-item:nth-child(odd) {
    margin-left: 0;
    text-align: right;
    padding-right: calc(50% + 30px);
}

.timeline-item:nth-child(even) {
    margin-left: 50%;
    text-align: left;
    padding-left: 30px;
}

.timeline-date {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    display: inline-block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
}

.timeline-content {
    background: white;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.timeline-content h3 {
    margin-top: 0;
    color: #1f2937;
    font-size: 20px;
}

.timeline-content p {
    color: #6b7280;
    margin: 0;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 20px;
    background: white;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #1f2937;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial {
    background: linear-gradient(135deg, #f0f4ff 0%, #f5f3ff 100%);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #667eea;
    transition: var(--transition);
}

.testimonial:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.15);
}

.testimonial-stars {
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonial-text {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-author {
    color: #1f2937;
    font-weight: 600;
    font-size: 14px;
}

/* Statistics Section */
.stats-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.stats-section h2 {
    font-size: 36px;
    margin-bottom: 60px;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 20px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    background: white;
    padding: 80px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 40px;
    color: #1f2937;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 40px;
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero {
        padding: 60px 20px;
    }

    .about-hero h1 {
        font-size: 32px;
    }

    .mission-card {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mission-icon {
        font-size: 50px;
        text-align: center;
    }

    .timeline-section h2 {
        font-size: 28px;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        margin-left: 0;
        text-align: left;
        padding-left: 80px;
        padding-right: 0;
    }

    .timeline-date {
        left: 0;
        transform: none;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 25px;
    }

    .stats-container {
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 24px;
    }

    .mission-card {
        padding: 20px;
    }

    .mission-content h2 {
        font-size: 20px;
    }

    .mission-icon {
        font-size: 40px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-member {
        padding: 25px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 36px;
    }
}
