/* Project Page Styles */
.project-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    color: #e6f1ff;
    background: #0a192f;
    min-height: 100vh;
}

.project-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 20px 0;
    border-bottom: 1px solid #233554;
}

.back-link {
    color: #64ffda;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 30px;
    transition: opacity 0.3s ease;
}

.back-link:hover {
    opacity: 0.8;
}

.project-content img {
    display: block;
    width: 620px;
    /* Base width */
    height: 200px;
    /* Base height */
    max-width: 100%;
    /* Prevent overflow */
    object-fit: contain;
    /* Maintain aspect ratio */
    margin: 20px 0;
    border: 2px solid #64ffda;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: border-color 0.3s ease;
}

/* Style for video */
.simulation-video {
    display: block;
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 20px 0;
    border: 2px solid #64ffda;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

/* Add media query for responsiveness */
@media (max-width: 768px) {
    .project-content img {
        width: 100%;
        height: auto;
    }
    .simulation-video {
        width: 100%;
        max-width: 100%;
    }
}

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

.feature-card {
    background: #112240;
    padding: 25px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.spec-item {
    text-align: center;
    padding: 25px;
    background: #112240;
    border-radius: 8px;
    border: 1px solid #233554;
}

.spec-item i {
    font-size: 2.5rem;
    color: #64ffda;
    margin-bottom: 15px;
}

.project-footer {
    margin-top: 60px;
    text-align: center;
    border-top: 1px solid #233554;
    padding-top: 30px;
}

h1,
h2,
h3,
h4,
h5 {
    color: #64ffda;
    margin: 20px 0;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

p {
    line-height: 1.6;
    margin: 15px 0;
}

body {
    margin: 0;
    padding: 0;
    background-color: #0a192f;
    color: #e6f1ff;
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
}

h1,
h2,
h3,
h4 {
    color: #64ffda;
    margin: 1.5rem 0;
}

a {
    color: #64ffda;
    text-decoration: none;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 8px 0;
    border-bottom: 1px solid #233554;
}
.responsive-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

