* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    scroll-behavior: smooth;
    line-height: 1.6;
}

/* Hero Section */
.hero {
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: slideInUp 1s ease-out;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.8;
    animation: slideInUp 1s ease-out 0.2s both;
    line-height: 1.6;
}

/* Story Section */
.story {
    padding: 100px 50px;
    background: linear-gradient(135deg, #111 0%, #000 100%);
}

.story-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.story-content h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #fff 0%, #888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 25px;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #fff, rgba(255, 255, 255, 0.3));
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 40px;
}

.timeline-dot {
    position: absolute;
    left: -50px;
    top: 10px;
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    border: 3px solid #000;
    z-index: 2;
}

.timeline-item::before {
    content: attr(data-year);
    position: absolute;
    left: -100px;
    top: 5px;
    font-size: 0.9rem;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.7);
}

.timeline-content h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-content p {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.6;
}

/* Mission Vision Values */
.mvv {
    padding: 100px 50px;
    background: #000;
}

.mvv-container {
    max-width: 1400px;
    margin: 0 auto;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.mvv-card {
    background: linear-gradient(145deg, #111, #222);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.mvv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mvv-card:hover::before {
    opacity: 1;
}

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
}

.mvv-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.mvv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mvv-card p {
    opacity: 0.8;
    line-height: 1.7;
}

/* Stats Section */
.stats {
    padding: 100px 50px;
    background: linear-gradient(135deg, #111 0%, #000 100%);
    text-align: center;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
}

.stats h2 {
    font-size: 3rem;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #fff 0%, #888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
    position: relative;
}

.stat-number {
    font-size: 4rem;
    font-weight: bold;
    background: linear-gradient(135deg, #fff 0%, #888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    display: block;
}

.stat-suffix {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 5px;
}

.stat-label {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Approach Section */
.approach {
    padding: 100px 50px;
    background: #000;
}

.approach-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.approach h2 {
    font-size: 3rem;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #fff 0%, #888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.approach-step {
    background: linear-gradient(145deg, #111, #222);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.approach-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.approach-step:hover::before {
    opacity: 1;
}

.approach-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
}

.step-number {
    font-size: 2.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, #fff 0%, #888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.approach-step h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.approach-step p {
    opacity: 0.8;
    line-height: 1.6;
}

/* Technologies Section */
.technologies {
    padding: 100px 50px;
    background: linear-gradient(135deg, #111 0%, #000 100%);
}

.tech-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.tech-container h2 {
    font-size: 3rem;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #fff 0%, #888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.tech-category {
    background: linear-gradient(145deg, #111, #222);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.tech-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.1);
}

.tech-category h4 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.tech-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.tech-item:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}



/* Floating particles effect */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: float 6s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 968px) {
    nav {
        padding: 15px 20px;
    }

    .nav-links {
        display: none; /* You can later replace this with a hamburger menu */
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .story-container {
        grid-template-columns: 1fr;
        gap: 40px;
        /* text-align: center; */
    }

 .story-content h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .story-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

/* Timeline adjustments */
    .story-visual {
        justify-content: center;
    }

    /* .timeline {
        padding-left: 20px;
    } */

    .timeline::before {
        
        left: 33px;
    }

    .timeline-dot {
        left: -25px;
    }

    .timeline-item::before {
        left: -55px;
        font-size: 0.75rem;
    }
   .timeline-content h4 {
        font-size: 1rem;
    }

    .timeline-content p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

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

    .stat-label {
        font-size: 0.9rem;
    }

    .approach-grid,
    .mvv-grid,
    .tech-categories {
        grid-template-columns: 1fr;
    }

    .tech-item {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .story, .mvv, .stats, .approach, .technologies, .footer-content {
        padding-left: 20px;
        padding-right: 20px;
    }

    .story-content h2,
    .stats h2,
    .approach h2,
    .tech-container h2 {
        font-size: 2rem;
    }

    
}
