/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #0a192f; /* Dark Blue background */
    color: #ccd6f6; /* Light Blue text */
    line-height: 1.8;
    overflow-x: hidden;
}

/* Header Styling */
.header {
    width: 100%;
    padding: 20px 0;
    background: #112240;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.navbar {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.navbar a {
    color: #ccd6f6;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.navbar a:hover {
    background-color: #64ffda; /* Light Green on hover */
    color: #0a192f; /* Dark Blue text */
}

/* Experience Section Styling */
.experience-section {
    padding: 50px 20px;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.container h1 {
    font-size: 3rem;
    color: #64ffda;
    margin-bottom: 40px;
}

.timeline {
    position: relative;
    padding: 20px 0;
    list-style-type: none;
}

.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #64ffda;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px;
    text-align: left;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-icon {
    position: absolute;
    top: 20px;
    left: 50%;
    width: 20px;
    height: 20px;
    background: #64ffda;
    border-radius: 50%;
    transform: translateX(-50%);
}

.timeline-content {
    background: #112240;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.timeline-content h2 {
    font-size: 1.8rem;
    color: #64ffda;
    margin-bottom: 10px;
}

.timeline-content h3 {
    font-size: 1.2rem;
    color: #ccd6f6;
    margin-bottom: 5px;
}

.timeline-content p {
    font-size: 1rem;
}

/* Footer Styling */
.footer {
    text-align: center;
    padding: 20px;
    background: #112240;
    color: #64ffda;
}

.footer p {
    font-size: 1rem;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .timeline-item {
        width: 100%;
        left: 0;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline:before {
        left: 20px;
    }

    .timeline-icon {
        left: 20px;
        transform: translateX(0);
    }
}
