/* About Us Page Styling - Multi-Color & Immersive */

.about-page {
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    transition: background 0.4s, color 0.4s;
}

.section-padding {
    padding: var(--space-xl) 0;
}

/* Mouse Following Glow */
.mouse-glow {
    position: fixed;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 243, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
}

/* Hero Section */
.about-hero {
    padding: 160px 0 60px;
    text-align: left;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(3rem, 10vw, 6rem);
    font-family: var(--font-heading);
    line-height: 0.9;
    margin-bottom: var(--space-md);
    background: linear-gradient(135deg, var(--text-primary) 30%, var(--electric-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--electric-blue);
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    display: block;
}

.hero-quote {
    font-size: 1.4rem;
    color: var(--text-secondary);
    max-width: 600px;
    border-left: 2px solid var(--electric-blue);
    padding-left: var(--space-md);
    margin-top: var(--space-lg);
    line-height: 1.5;
}

/* Vision Section - Blue Theme */
.vision-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-xl);
    align-items: center;
}

.vision-text h2 {
    font-size: 3rem;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.vision-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-md);
    max-width: 650px;
}

.lottie-card {
    background: #0a0a0a !important; /* Always dark for cyber look */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: var(--space-md);
    transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.lottie-card:hover {
    transform: translateY(-10px) rotate(2deg);
    border-color: var(--electric-blue);
    box-shadow: 0 0 50px rgba(0, 243, 255, 0.2);
}

/* Values Section - Orange Theme */
.values-section h2 {
    color: var(--text-primary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.value-item h3 {
    font-size: 1.5rem;
    color: #ff8c00; /* Orange accent */
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.value-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Timeline - Multi-Color */
.timeline-container h2 {
    color: var(--text-primary);
}

.timeline-minimal {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 60px 0;
}

.timeline-minimal::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

.t-item:hover { transform: scale(1.1); }

.t-year {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-primary);
    display: block;
    margin-bottom: 15px;
    opacity: 0.3;
    transition: 0.4s;
}

.t-item:nth-child(1):hover .t-year { color: var(--magenta); opacity: 1; }
.t-item:nth-child(2):hover .t-year { color: var(--electric-blue); opacity: 1; }
.t-item:nth-child(3):hover .t-year { color: #00ff9d; opacity: 1; } /* Green */

.t-dot {
    width: 12px;
    height: 12px;
    background: var(--glass-border);
    border-radius: 50%;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.4s;
}

.t-item:nth-child(1):hover .t-dot { background: var(--magenta); box-shadow: 0 0 20px var(--magenta); }
.t-item:nth-child(2):hover .t-dot { background: var(--electric-blue); box-shadow: 0 0 20px var(--electric-blue); }
.t-item:nth-child(3):hover .t-dot { background: #00ff9d; box-shadow: 0 0 20px #00ff9d; }

.t-label {
    margin-top: 40px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Mascot Section - Green Theme */
.mascot-area h2 {
    color: var(--text-primary);
}

.mascot-visual {
    flex: 1;
    height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mascot-video {
    max-width: 100%;
    max-height: 100%;
    border-radius: 30px;
    filter: drop-shadow(0 0 30px rgba(0, 255, 157, 0.2));
}

.mascot-visual::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 255, 157, 0.15), transparent); /* Green glow */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

/* Light Mode Visibility Fixes */
body:not(.dark-mode) .hero-title {
    background: linear-gradient(135deg, #222 30%, var(--electric-blue));
    -webkit-background-clip: text;
}

body:not(.dark-mode) .section-title,
body:not(.dark-mode) .vision-text h2,
body:not(.dark-mode) .values-section h2,
body:not(.dark-mode) .mascot-area h2 {
    color: #111;
}

/* Responsive */
@media (max-width: 900px) {
    .vision-grid, .mascot-area {
        flex-direction: column;
        grid-template-columns: 1fr;
        text-align: center;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
    .timeline-minimal {
        flex-direction: column;
        gap: var(--space-xl);
        padding: 0;
    }
    .timeline-minimal::after { display: none; }
    .t-item { width: 100%; }
    .t-dot { display: none; }
}

/* CTA Section */
.about-cta {
    text-align: center;
    background: linear-gradient(to top, rgba(255, 0, 255, 0.03), transparent);
}

.cta-unboxed p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(90deg, var(--electric-blue), var(--magenta));
    color: white;
    text-decoration: none;
    border-radius: 15px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.2);
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 0, 255, 0.3);
}

/* CTA Section */
.about-cta {
    text-align: center;
    background: linear-gradient(to top, rgba(255, 0, 255, 0.03), transparent);
}

.cta-unboxed p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(90deg, var(--electric-blue), var(--magenta));
    color: white;
    text-decoration: none;
    border-radius: 15px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.2);
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 0, 255, 0.3);
}
