/* ===== ABOUT PAGE STYLES ===== */

/* Page Header */
.page-header {
    padding: 10rem 0 6rem;
    text-align: center;
    position: relative;
}

.page-title {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
}

.page-title.aos-animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease-out;
}

.page-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    opacity: 0;
    transform: translateY(20px);
}

.page-subtitle.aos-animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease-out 0.2s;
}

/* Company Overview */
.company-overview {
    padding: 4rem 0;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-content {
    opacity: 0;
    transform: translateX(-50px);
}

.overview-content.aos-animate {
    opacity: 1;
    transform: translateX(0);
    transition: all 1s ease-out;
}

.overview-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.overview-highlights {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.highlight-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--electric-blue), var(--neon-cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: var(--primary-dark);
    flex-shrink: 0;
}

.highlight-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: var(--electric-blue);
}

.highlight-text p {
    font-size: 0.95rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

/* Tech Illustration */
.overview-visual {
    opacity: 0;
    transform: translateX(50px);
}

.overview-visual.aos-animate {
    opacity: 1;
    transform: translateX(0);
    transition: all 1s ease-out;
}

.tech-illustration {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circuit-board {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(0, 194, 255, 0.1), rgba(157, 78, 221, 0.1));
    border: 2px solid var(--electric-blue);
    border-radius: 20px;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 60px rgba(0, 194, 255, 0.3);
    animation: boardPulse 4s ease-in-out infinite;
}

@keyframes boardPulse {

    0%,
    100% {
        box-shadow: 0 0 60px rgba(0, 194, 255, 0.3);
    }

    50% {
        box-shadow: 0 0 100px rgba(0, 194, 255, 0.5);
    }
}

.circuit-node {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--electric-blue);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--electric-blue);
    animation: nodePulse 2s ease-in-out infinite;
}

.circuit-node:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.circuit-node:nth-child(2) {
    top: 20%;
    right: 20%;
    animation-delay: 0.5s;
}

.circuit-node:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 1s;
}

.circuit-node:nth-child(4) {
    bottom: 20%;
    right: 20%;
    animation-delay: 1.5s;
}

@keyframes nodePulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

.circuit-path {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    border: 2px solid var(--neon-cyan);
    border-radius: 10px;
    animation: pathGlow 3s ease-in-out infinite;
}

@keyframes pathGlow {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

/* Mission & Vision */
.mission-vision {
    padding: 6rem 0;
    background: linear-gradient(180deg, transparent, rgba(0, 194, 255, 0.05), transparent);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.mv-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 2px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    transition: var(--transition-smooth);
    opacity: 0;
    transform: scale(0.9);
}

.mv-card.aos-animate {
    opacity: 1;
    transform: scale(1);
}

.mv-card:hover {
    transform: scale(1.05);
    border-color: var(--electric-blue);
    box-shadow: 0 30px 80px rgba(0, 194, 255, 0.4);
}

.mv-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 0 30px var(--electric-blue));
}

.mv-icon svg {
    width: 80px;
    height: 80px;
    stroke: var(--electric-blue);
    animation: iconRotate 10s linear infinite;
}

@keyframes iconRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.mv-card h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--electric-blue);
}

.mv-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

/* Why Choose Detailed */
.why-choose-detailed {
    padding: 6rem 0;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.reason-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    transition: var(--transition-smooth);
    opacity: 0;
    transform: translateY(30px);
}

.reason-card.aos-animate {
    opacity: 1;
    transform: translateY(0);
}

.reason-card:hover {
    transform: translateY(-10px);
    border-color: var(--electric-blue);
    box-shadow: 0 20px 60px rgba(0, 194, 255, 0.3);
}

.reason-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--electric-blue), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
}

.reason-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #ffffff;
}

.reason-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Timeline */
.timeline-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, transparent, rgba(157, 78, 221, 0.05), transparent);
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--electric-blue), var(--neon-cyan));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    opacity: 0;
}

.timeline-item.aos-animate {
    opacity: 1;
}

.timeline-item:nth-child(odd) {
    padding-right: 50%;
    text-align: right;
    transform: translateX(-50px);
}

.timeline-item:nth-child(odd).aos-animate {
    transform: translateX(0);
    transition: all 0.8s ease-out;
}

.timeline-item:nth-child(even) {
    padding-left: 50%;
    text-align: left;
    transform: translateX(50px);
}

.timeline-item:nth-child(even).aos-animate {
    transform: translateX(0);
    transition: all 0.8s ease-out;
}

.timeline-dot {
    position: absolute;
    top: 0;
    left: 50%;
    width: 20px;
    height: 20px;
    background: var(--electric-blue);
    border: 4px solid var(--primary-dark);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 20px var(--electric-blue);
    z-index: 2;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {

    0%,
    100% {
        box-shadow: 0 0 20px var(--electric-blue);
    }

    50% {
        box-shadow: 0 0 40px var(--electric-blue);
    }
}

.timeline-content {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 2rem;
    transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-content {
    border-color: var(--electric-blue);
    box-shadow: 0 15px 40px rgba(0, 194, 255, 0.3);
}

.timeline-year {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--electric-blue), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #ffffff;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Core Values */
.core-values {
    padding: 6rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition-smooth);
    opacity: 0;
}

.value-card.aos-animate {
    opacity: 1;
    animation: flipIn 0.6s ease-out;
}

@keyframes flipIn {
    from {
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }

    to {
        transform: perspective(400px) rotateY(0);
        opacity: 1;
    }
}

.value-card:hover {
    transform: translateY(-10px) rotateY(5deg);
    border-color: var(--electric-blue);
    box-shadow: 0 20px 60px rgba(0, 194, 255, 0.4);
}

.value-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 0 20px var(--electric-blue));
}

.value-icon svg {
    width: 70px;
    height: 70px;
    stroke: var(--electric-blue);
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--electric-blue);
}

.value-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(0, 194, 255, 0.1), rgba(157, 78, 221, 0.1));
}

.cta-content {
    text-align: center;
    padding: 4rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 2px solid var(--glass-border);
    border-radius: 30px;
    opacity: 0;
    transform: scale(0.9);
}

.cta-content.aos-animate {
    opacity: 1;
    transform: scale(1);
    transition: all 0.8s ease-out;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, var(--electric-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1024px) {
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .tech-illustration {
        height: 400px;
    }

    .circuit-board {
        width: 300px;
        height: 300px;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding-left: 80px;
        padding-right: 0;
        text-align: left;
    }

    .timeline-dot {
        left: 30px;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 3rem;
    }

    .page-subtitle {
        font-size: 1.1rem;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .cta-content {
        padding: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 2.5rem;
    }

    .reason-card {
        flex-direction: column;
        text-align: center;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding-left: 60px;
    }

    .timeline-year {
        font-size: 1.5rem;
    }
}