body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f4f4f4;
}

header {
    background-color: #333;
    color: white;
    padding: 10px 0;
}

/* Navbar Styling */
.navbar {
    background-color: #fff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 2px 0;
}

.container {
    width: 97%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-width: 150px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #ff7f50;
}

/* Hamburger for Mobile View */
.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger i {
    font-size: 24px;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}



#simulation-content {
    margin:70px auto;
    padding: 20px;
    max-width: 900px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.simulation-header {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.5em;
    color: #ff7f50;

}


.simulation-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.simulation-image-wrapper {
    max-width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.simulation-image {
    width: 100%;
    height: 300px;
    width: 700px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.description, .duration,.rating {
    font-size: 1.2em;
    color: #555;
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.cta-button {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #0056b3;
}

.cta-button.secondary {
    background-color: #6c757d;
}

.cta-button.secondary:hover {
    background-color: #5a6268;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: relative;
    width: 100%;
    bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
    }

    .nav-links a {
        color: white;
    }

    .hamburger {
        display: block;
        cursor: pointer;
        font-size: 1.5em;
        color: white;
    }

    .hamburger.active + .nav-links {
        display: flex;
    }
}

