/* about.css - Enhanced About Page Styles */
@import url('home.css');

/* About-specific overrides and enhancements */
:root {
    --gradient-hero: linear-gradient(135deg, #D4AF37 0%, #B8941F 50%, #E6C158 100%);
    --gradient-card: linear-gradient(135deg, rgba(42, 42, 42, 0.8) 0%, rgba(42, 42, 42, 0.5) 100%);
    --timeline-color: var(--primary-color);
}

/* About Hero Section (Matches Home Page) */
.about-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-lighter) 50%, rgba(212, 175, 55, 0.1) 100%);
    padding: 8rem 0 4rem;
}

.about-hero .hero-bg-particles {
    background-image: 
        radial-gradient(3px 3px at 30px 50px, rgba(212, 175, 55, 0.4), transparent),
        radial-gradient(2px 2px at 60px 90px, rgba(212, 175, 55, 0.3), transparent),
        radial-gradient(1px 1px at 120px 60px, rgba(212, 175, 55, 0.3), transparent),
        radial-gradient(2px 2px at 200px 120px, rgba(212, 175, 55, 0.2), transparent);
    background-size: 150px 150px;
    animation: particleFloat 25s linear infinite, particleGlow 8s ease-in-out infinite alternate;
}

.about-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.about-hero-title .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(50px) rotateX(90deg);
    animation: wordReveal 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.about-hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.6;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.about-hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.about-hero-stats .stat-item {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: statsReveal 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.about-hero-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.about-hero-stats .stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.2s both;
}

/* Running Numbers Section */
.running-numbers {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-lighter) 100%);
    position: relative;
}

.running-numbers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.number-card {
    background: var(--gradient-card);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    opacity: 0;
    transform: translateY(60px) scale(0.9);
    animation: cardReveal 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.number-card[data-delay="100"] { animation-delay: 0.1s; }
.number-card[data-delay="200"] { animation-delay: 0.3s; }
.number-card[data-delay="300"] { animation-delay: 0.5s; }
.number-card[data-delay="400"] { animation-delay: 0.7s; }

.number-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.number-card:hover::before {
    left: 0;
}

.number-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.number-card:hover::after {
    opacity: 1;
}

.number-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.25);
    border-color: var(--border-glow);
}

.number-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.number-card:hover .number-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: var(--shadow-glow);
}

.number-content {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
    margin-bottom: 1rem;
}

.number-prefix,
.number-suffix {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.number-value {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1;
}

.number-label {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.numbers-footer {
    text-align: center;
    margin-top: 4rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.numbers-note {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-style: italic;
    opacity: 0.8;
}

/* Our Story Section */
.our-story {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-lighter) 100%);
    position: relative;
}

.our-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

.story-text {
    margin-bottom: 3rem;
}

.story-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInStory 0.8s ease-out both;
}

.story-paragraph:nth-child(1) { animation-delay: 0.3s; }
.story-paragraph:nth-child(2) { animation-delay: 0.5s; }
.story-paragraph:nth-child(3) { animation-delay: 0.7s; }

.highlight-paragraph {
    font-size: 1.3rem;
    color: var(--text-primary);
    font-weight: 500;
    position: relative;
    padding-left: 2rem;
}

.highlight-paragraph::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
}

@keyframes slideInStory {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Timeline */
.timeline-container {
    position: relative;
    width: 100%;
}

.timeline-line {
    position: absolute;
    left: 30px;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--accent-gold) 100%);
    border-radius: 1px;
    opacity: 0;
    animation: timelineGrow 1.5s ease-out 1s both;
}

@keyframes timelineGrow {
    0% {
        opacity: 0;
        height: 0;
    }
    100% {
        opacity: 1;
        height: 100%;
    }
}

.timeline-items {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding-left: 2rem;
}

.timeline-item {
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    animation: slideInTimeline 0.6s ease-out both;
}

.timeline-item:nth-child(1) { animation-delay: 1.2s; }
.timeline-item:nth-child(2) { animation-delay: 1.4s; }
.timeline-item:nth-child(3) { animation-delay: 1.6s; }
.timeline-item:nth-child(4) { animation-delay: 1.8s; }

@keyframes slideInTimeline {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.timeline-dot {
    position: absolute;
    left: -45px;
    top: 8px;
    width: 20px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    border: 3px solid var(--bg-light);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    cursor: pointer;
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.timeline-content {
    background: var(--gradient-card);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-item:hover .timeline-content {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
    background: rgba(212, 175, 55, 0.05);
}

.timeline-content h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    position: relative;
}

.timeline-item::before {
    content: attr(data-year);
    position: absolute;
    right: 0;
    top: 0;
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
    background: rgba(212, 175, 55, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Values Section */
.values {
    padding: 8rem 0;
    background: var(--bg-lighter);
    position: relative;
}

.values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.value-card {
    background: var(--gradient-card);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    opacity: 0;
    transform: translateY(60px) scale(0.9);
    animation: cardReveal 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.value-card[data-delay="100"] { animation-delay: 0.1s; }
.value-card[data-delay="200"] { animation-delay: 0.3s; }
.value-card[data-delay="300"] { animation-delay: 0.5s; }
.value-card[data-delay="400"] { animation-delay: 0.7s; }
.value-card[data-delay="500"] { animation-delay: 0.9s; }
.value-card[data-delay="600"] { animation-delay: 1.1s; }

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card:hover::before {
    left: 0;
}

.value-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.value-card:hover::after {
    opacity: 1;
}

.value-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.25);
    border-color: var(--border-glow);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: var(--shadow-glow);
}

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

.value-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.value-highlight {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.value-card:hover .value-highlight {
    background: var(--primary-color);
    color: #121212;
    transform: translateY(-2px);
}

/* Leadership Section */
.leadership {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-lighter) 100%);
    position: relative;
}

.leadership::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.leader-card {
    background: var(--gradient-card);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(15px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    animation: cardReveal 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.leader-card[data-delay="100"] { animation-delay: 0.1s; }
.leader-card[data-delay="200"] { animation-delay: 0.3s; }
.leader-card[data-delay="300"] { animation-delay: 0.5s; }

.leader-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.leader-card:hover::before {
    left: 0;
}

.leader-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.25);
    border-color: var(--border-glow);
}

.leader-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.photo-placeholder {
    color: #121212;
    opacity: 0.8;
}

.leader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 18, 18, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.leader-photo:hover .leader-overlay {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 0.5rem;
}

.social-link {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.social-link:hover {
    background: var(--primary-color);
    transform: scale(1.1) translateY(-2px);
}

.leader-card:hover .leader-photo {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.leader-info {
    text-align: center;
}

.leader-name {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.leader-title {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.leader-bio {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.leader-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.leader-stats .stat-item {
    text-align: center;
}

.leader-stats .stat-number {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.leader-stats .stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.leadership-cta {
    text-align: center;
    margin-top: 4rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.cta-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Mission Section */
.mission {
    padding: 8rem 0;
    background: var(--bg-lighter);
    position: relative;
}

.mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.mission-statement {
    display: grid;
    gap: 2rem;
}

.statement-card {
    background: var(--gradient-card);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.statement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
    border-color: var(--border-glow);
}

.statement-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.statement-card:hover .statement-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-glow);
}

.statement-card h3 {
    color: var(--text-primary);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.statement-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.mission-stats {
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    width: 100%;
}

.stat-item-large {
    background: var(--gradient-card);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.stat-item-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
    border-color: var(--border-glow);
}

.stat-item-large .stat-number {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.stat-unit {
    font-size: 1.5rem;
    color: var(--accent-gold);
}

.stat-item-large .stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

/* Strategic Partnership Section */
.partnership {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-lighter) 100%);
    position: relative;
}

.partnership::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.partnership-content {
    position: relative;
    z-index: 2;
}

.partnership-card {
    background: var(--gradient-card);
    border-radius: 25px;
    padding: 4rem 3rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(15px);
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    animation: cardReveal 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.partnership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.partnership-card:hover::before {
    left: 0;
}

.partnership-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.25);
    border-color: var(--border-glow);
}

.partnership-logo {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.partnership-card:hover .partnership-logo {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-glow);
}

.partnership-info {
    flex: 1;
}

.partnership-info h3 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 600;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.partnership-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    position: relative;
    padding-left: 2rem;
}

.partnership-description::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.partnership-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight {
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.highlight:hover::before {
    left: 100%;
}

.highlight:hover {
    background: rgba(212, 175, 55, 0.12);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateX(10px);
}

.highlight strong {
    color: var(--primary-color);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.highlight:not(:has(strong)) {
    padding-left: 2rem;
    position: relative;
}

.highlight:not(:has(strong))::after {
    content: '•';
    position: absolute;
    left: 1rem;
    top: 1.5rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* Investment Process Section */
.investment-process {
    padding: 8rem 0;
    background: var(--bg-lighter);
    position: relative;
}

.investment-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.process-step {
    background: var(--gradient-card);
    border-radius: 20px;
    padding: 3rem 2rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(15px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    animation: cardReveal 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.process-step[data-delay="100"] { animation-delay: 0.1s; }
.process-step[data-delay="200"] { animation-delay: 0.3s; }
.process-step[data-delay="300"] { animation-delay: 0.5s; }
.process-step[data-delay="400"] { animation-delay: 0.7s; }
.process-step[data-delay="500"] { animation-delay: 0.9s; }
.process-step[data-delay="600"] { animation-delay: 1.1s; }

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step:hover::before {
    left: 0;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.process-step:hover::after {
    opacity: 1;
}

.process-step:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.25);
    border-color: var(--border-glow);
}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.step-number::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step:hover .step-number::after {
    width: 80px;
}

.step-title {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.step-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

/* Founder Section */
.founder {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-lighter) 100%);
    position: relative;
}

.founder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.founder-content {
    position: relative;
    z-index: 2;
}

.founder-card {
    background: var(--gradient-card);
    border-radius: 25px;
    padding: 4rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(15px);
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    animation: cardReveal 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.founder-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.founder-card:hover::before {
    left: 0;
}

.founder-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.25);
    border-color: var(--border-glow);
}

.founder-photo {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.founder-card:hover .founder-photo {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.4);
}

.founder-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 18, 18, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.founder-photo:hover .founder-overlay {
    opacity: 1;
}

.founder-info {
    flex: 1;
}

.founder-name {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.founder-title {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.founder-bio {
    margin-bottom: 2.5rem;
}

.bio-paragraph {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.bio-paragraph:last-child {
    margin-bottom: 0;
}

.founder-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.founder-stats .stat-item {
    text-align: center;
    flex: 1;
}

.founder-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.founder-stats .stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.founder-expertise h4 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.expertise-tag {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 25px;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.expertise-tag:hover {
    background: var(--primary-color);
    color: #121212;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Responsive Design for Founder Section */
@media (max-width: 1024px) {
    .founder-card {
        flex-direction: column;
        text-align: center;
        padding: 3rem 2rem;
    }
    
    .founder-photo {
        margin: 0 auto;
    }
    
    .founder-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .founder {
        padding: 6rem 0;
    }
    
    .founder-card {
        padding: 2.5rem 1.5rem;
    }
    
    .founder-name {
        font-size: 2rem;
    }
    
    .founder-title {
        font-size: 1.1rem;
    }
    
    .founder-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .expertise-tags {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .founder-card {
        padding: 2rem 1rem;
    }
    
    .founder-photo {
        width: 150px;
        height: 150px;
    }
    
    .founder-name {
        font-size: 1.8rem;
    }
    
    .bio-paragraph {
        font-size: 1rem;
    }
    
    .expertise-tag {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}
/* Responsive Design for About Page */
@media (max-width: 1024px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .mission-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .stat-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .leadership-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .numbers-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
    
    .partnership-card {
        flex-direction: column;
        text-align: center;
        padding: 3rem 2rem;
    }
    
    .partnership-logo {
        margin: 0 auto;
    }
    
    .partnership-description::before {
        display: none;
    }
    
    .process-steps {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 60vh;
        padding: 6rem 0 3rem;
    }
    
    .about-hero-stats {
        gap: 2rem;
    }
    
    .about-hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .running-numbers,
    .our-story,
    .values,
    .leadership,
    .mission,
    .partnership,
    .investment-process,
    .cta-section {
        padding: 6rem 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
    }
    
    .numbers-grid {
        grid-template-columns: 1fr;
    }
    
    .number-content {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .number-value {
        font-size: 3rem;
    }
    
    .number-prefix,
    .number-suffix {
        font-size: 1.5rem;
    }
    
    .leader-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .partnership-card {
        padding: 2.5rem 1.5rem;
    }
    
    .partnership-info h3 {
        font-size: 1.6rem;
    }
    
    .partnership-description {
        font-size: 1.1rem;
        padding-left: 0;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .process-step {
        padding: 2.5rem 1.5rem;
    }
    
    .step-number {
        font-size: 3rem;
    }
    
    .step-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .about-hero-title {
        font-size: 2.2rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about-hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .value-card {
        padding: 2rem 1.5rem;
    }
    
    .leader-card {
        padding: 2rem 1.5rem;
    }
    
    .leader-photo {
        width: 100px;
        height: 100px;
    }
    
    .statement-card {
        padding: 1.5rem;
    }
    
    .stat-item-large {
        padding: 1.5rem;
    }
    
    .stat-item-large .stat-number {
        font-size: 2rem;
    }
    
    .number-card {
        padding: 2rem 1.5rem;
    }
    
    .number-value {
        font-size: 2.5rem;
    }
    
    .number-label {
        font-size: 1.2rem;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .partnership-card {
        padding: 2rem 1rem;
        gap: 2rem;
    }
    
    .partnership-logo {
        width: 80px;
        height: 80px;
    }
    
    .partnership-info h3 {
        font-size: 1.4rem;
    }
    
    .highlight {
        padding: 1.25rem;
    }
    
    .process-step {
        padding: 2rem 1rem;
    }
    
    .step-number {
        font-size: 2.5rem;
    }
}

/* Critical missing animations */
@keyframes wordReveal {
    0% {
        opacity: 0;
        transform: translateY(50px) rotateX(90deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cardReveal {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes statsReveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

/* Ensure page content is visible after loader */
body.page-loaded {
    overflow: visible;
}