/* About Hero Section */
.about-hero {
    padding-top: 8rem;
    /* Adjust based on header height */
    padding-bottom: 4rem;
    background: linear-gradient(180deg, var(--neutral-light) 0%, var(--background) 100%);
    text-align: center;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-hero-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Founder Section */
.about-founder {
    padding: 5rem 0;
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.founder-image {
    position: relative;
}

.founder-img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.founder-img:hover {
    transform: scale(1.02);
}

.founder-content {
    padding-left: 2rem;
}

.founder-badge {
    display: inline-block;
    background-color: var(--primary-color-light);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.founder-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.founder-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.founder-cta-btn {
    background: var(--gradient-accent);
    color: white;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.3);
}

.founder-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.4);
    color: white;
}

/* Stats Section */
.about-stats {
    padding: 4rem 0;
    background-color: var(--neutral-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    animation: fadeUp 0.6s ease forwards;
}

.stat-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 1rem;
}

/* Timeline Section */
.about-timeline {
    padding: 5rem 0;
}

.timeline-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.timeline-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.timeline-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.timeline-container {
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-milestones {
    position: relative;
}

.timeline-milestones::before {
    content: '';
    position: absolute;
    left: 2.5rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.milestone-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
    animation: fadeUp 0.6s ease forwards;
}

.milestone-year {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background-color: var(--primary-color-light);
    border: 4px solid var(--primary-color-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-color);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.milestone-content {
    flex: 1;
    padding-left: 1.5rem;
    padding-bottom: 2rem;
    border-left: 2px solid var(--border-color);
    margin-left: -2px;
}

.milestone-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.milestone-description {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Values Section */
.about-values {
    padding: 5rem 0;
    background-color: var(--neutral-light);
}

.values-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.values-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.values-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background-color: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeUp 0.6s ease forwards;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.value-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background-color: var(--primary-color-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
}

.value-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.value-description {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* CTA Section */
.about-cta {
    padding: 5rem 0;
}

.cta-card {
    background: var(--gradient-primary);
    border: none;
    border-radius: 1rem;
    padding: 3rem;
    text-align: center;
    color: white;
    box-shadow: 0 8px 32px rgba(0, 196, 154, 0.3);
    animation: fadeUp 0.6s ease forwards;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.cta-primary-btn {
    background: var(--gradient-accent);
    color: white;
    border: none;
    font-size: 1.25rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.3);
}

.cta-primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.4);
    color: white;
}

.cta-secondary-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.cta-secondary-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-item:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.3s;
}

.stat-item:nth-child(4) {
    animation-delay: 0.4s;
}

.milestone-item:nth-child(1) {
    animation-delay: 0.1s;
}

.milestone-item:nth-child(2) {
    animation-delay: 0.2s;
}

.milestone-item:nth-child(3) {
    animation-delay: 0.3s;
}

.milestone-item:nth-child(4) {
    animation-delay: 0.4s;
}

.value-card:nth-child(1) {
    animation-delay: 0.1s;
}

.value-card:nth-child(2) {
    animation-delay: 0.2s;
}

.value-card:nth-child(3) {
    animation-delay: 0.3s;
}

.value-card:nth-child(4) {
    animation-delay: 0.4s;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background-color: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 1rem 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
    max-width: 400px;
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.notification i {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.notification-success i {
    color: var(--primary-color);
}

.notification-error i {
    color: #dc3545;
}

.notification-info i {
    color: var(--accent-color);
}

.notification-close {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.25rem;
    margin-left: auto;
    border-radius: 0.25rem;
    transition: color 0.3s ease;
}

.notification-close:hover {
    color: var(--text-dark);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero {
        padding-top: 6rem;
        padding-bottom: 3rem;
    }

    .about-hero-title {
        font-size: 2.5rem;
    }

    .about-hero-description {
        font-size: 1.1rem;
    }

    .founder-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .founder-content {
        padding-left: 0;
    }

    /* Reduce founder image size on mobile */
    .founder-img {
        max-height: 300px;
        /* Reduced size for mobile */
        object-fit: cover;
    }

    .founder-title {
        font-size: 2rem;
    }

    .founder-description {
        font-size: 1rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-value {
        font-size: 2.5rem;
    }

    .timeline-title {
        font-size: 2.5rem;
    }

    .timeline-description {
        font-size: 1.1rem;
    }

    .milestone-item {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .milestone-year {
        width: 4rem;
        height: 4rem;
        font-size: 1rem;
        margin: 0 auto;
    }

    .milestone-content {
        padding-left: 0;
        border-left: none;
        border-top: 2px solid var(--border-color);
        padding-top: 1rem;
        margin-left: 0;
    }

    .timeline-milestones::before {
        display: none;
    }

    .values-title {
        font-size: 2.5rem;
    }

    .values-description {
        font-size: 1.1rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-card {
        padding: 2rem;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .cta-description {
        font-size: 1.1rem;
    }

    .cta-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .cta-primary-btn,
    .cta-secondary-btn {
        font-size: 1.1rem;
        padding: 0.875rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .about-hero-title {
        font-size: 2rem;
    }

    .about-hero-description {
        font-size: 1rem;
    }

    .founder-title {
        font-size: 1.75rem;
    }

    .founder-description {
        font-size: 0.95rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-value {
        font-size: 2rem;
    }

    .timeline-title {
        font-size: 2rem;
    }

    .values-title {
        font-size: 2rem;
    }

    .value-card {
        padding: 1.5rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-description {
        font-size: 1rem;
    }
}