:root {
    --base-clr: #11121a;
    --line-clr: #42434a;
    --hover-clr: #222533;
    --text-clr: #e6e6ef;
    --accent-clr: #5e63ff;
    --secondary-text-clr: #b0b3c1;
}

/* Hero Section */
.hero {
    padding: 5rem 5%;
    background: linear-gradient(135deg, rgba(94, 99, 255, 0.1) 0%, rgba(17, 18, 26, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(94, 99, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-50px, 50px);
    }
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-clr) 0%, var(--accent-clr) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero .subtitle {
    font-size: 1.3rem;
    color: var(--secondary-text-clr);
    max-width: 800px;
    margin: 0 auto;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

/* About Section */
.about-section {
    padding: 5rem 5%;
    background: var(--base-clr);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--accent-clr);
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--secondary-text-clr);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-image {
    height: 400px;
    background: var(--hover-clr);
    border: 1px solid var(--line-clr);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10rem;
    position: relative;
    overflow: hidden;
}

.about-image::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(94, 99, 255, 0.05) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Mission Vision */
.mission-section {
    padding: 5rem 5%;
    background: var(--hover-clr);
}

.section-title2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-clr);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.mission-card {
    background: var(--base-clr);
    border: 1px solid var(--line-clr);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-clr), #7b7fff);
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(94, 99, 255, 0.3);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-clr), #7b7fff);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(94, 99, 255, 0.4);
}

.mission-card h3 {
    font-size: 2rem;
    color: var(--text-clr);
    margin-bottom: 1.5rem;
}

.mission-card p {
    color: var(--secondary-text-clr);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Values Section */
.values-section {
    padding: 5rem 5%;
    background: var(--base-clr);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.value-card {
    background: var(--hover-clr);
    border: 1px solid var(--line-clr);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-clr);
    transform: scaleY(0);
    transition: transform 0.3s;
}

.value-card:hover::before {
    transform: scaleY(1);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(94, 99, 255, 0.3);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: rgba(94, 99, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
}

.value-card h3 {
    font-size: 1.5rem;
    color: var(--text-clr);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--secondary-text-clr);
    line-height: 1.7;
}

/* Team Section */
.team-section {
    padding: 5rem 5%;
    background: var(--hover-clr);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.team-card {
    background: var(--base-clr);
    border: 1px solid var(--line-clr);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-clr);
    box-shadow: 0 15px 40px rgba(94, 99, 255, 0.3);
}

.team-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--accent-clr), #7b7fff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(94, 99, 255, 0.4);
}

.team-card h3 {
    font-size: 1.5rem;
    color: var(--text-clr);
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--accent-clr);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-card p {
    color: var(--secondary-text-clr);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Timeline Section */
.timeline-section {
    padding: 5rem 5%;
    background: var(--base-clr);
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--line-clr);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(even) .timeline-content {
    order: -1;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--accent-clr);
    border-radius: 50%;
    border: 5px solid var(--base-clr);
    box-shadow: 0 0 0 4px rgba(94, 99, 255, 0.3);
    z-index: 1;
}

.timeline-content {
    background: var(--hover-clr);
    border: 1px solid var(--line-clr);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s;
}

.timeline-content:hover {
    border-color: var(--accent-clr);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(94, 99, 255, 0.2);
}

.timeline-year {
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent-clr);
    margin-bottom: 1rem;
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: var(--text-clr);
    margin-bottom: 1rem;
}

.timeline-content p {
    color: var(--secondary-text-clr);
    line-height: 1.7;
}

/* Stats Section */
.stats-section2 {
    padding: 5rem 5%;
    background: var(--hover-clr);
}

.stats-grid3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.stat-card4 {
    background: var(--base-clr);
    border: 1px solid var(--line-clr);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    transition: all 0.3s;
}

.stat-card4:hover {
    transform: translateY(-10px);
    border-color: var(--accent-clr);
    box-shadow: 0 15px 40px rgba(94, 99, 255, 0.3);
}

.stat-number5 {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--accent-clr);
    margin-bottom: 0.5rem;
}

.stat-label6 {
    color: var(--secondary-text-clr);
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    padding: 5rem 5%;
    background: var(--base-clr);
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(94, 99, 255, 0.2) 0%, rgba(123, 127, 255, 0.1) 100%);
    border: 1px solid var(--accent-clr);
    border-radius: 20px;
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-clr), #7b7fff);
}

.cta-container h2 {
    font-size: 2.5rem;
    color: var(--text-clr);
    margin-bottom: 1.5rem;
}

.cta-container p {
    font-size: 1.2rem;
    color: var(--secondary-text-clr);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-cta {
    padding: 1rem 2.5rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--accent-clr);
    color: white;
}

.btn-primary:hover {
    background: #4a4fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(94, 99, 255, 0.5);
}

.btn-secondary {
    background: var(--base-clr);
    color: var(--text-clr);
    border: 1px solid var(--line-clr);
}

.btn-secondary:hover {
    border-color: var(--accent-clr);
    background: var(--hover-clr);
}

/* Footer */
footer {
    background: var(--hover-clr);
    padding: 3rem 5% 2rem;
    border-top: 1px solid var(--line-clr);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    color: var(--secondary-text-clr);
}

/* Responsive */
@media (max-width: 1024px) {

    .about-grid,
    .mission-grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        padding-left: 60px;
    }

    .timeline-item:nth-child(even) .timeline-content {
        order: 0;
    }

    .timeline-dot {
        left: 30px;
    }

    .nav-links {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .subtitle {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-container {
        padding: 2.5rem 1.5rem;
    }
}