/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
}

header nav {
    background: #0073e6;
    padding: 10px;
    text-align: center;
}

header nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    margin: 0 15px;
}

/* About Section */
.about-section {
    padding: 80px 20px;
    background: #f9f9fc;
    text-align: center;
}

.about-content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.about-left {
    text-align: left;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

.about-left h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    text-align: center;
}

.about-left p,
.about-left ul {
    font-size: 1rem;
    margin-bottom: 15px;
}

.about-left ul {
    list-style-type: disc;
    padding-left: 20px;
}

/* Dynamic Gallery for Multiple Images */
.project-gallery {
    padding: 50px;
    text-align: center;
}

.project-gallery h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.project-gallery p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 20px;
}

/* Dynamic Grid Layout for Images */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    /* Adjusts dynamically */
    gap: 15px;
    justify-content: center;
    padding: 20px;
}

.gallery img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* Video Presentation Section */
.project-video {
    padding: 50px;
    text-align: center;
}

.project-video h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.project-video p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 20px;
}

.video-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.video-container video {
    max-width: 800px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Report Section */
.project-report {
    padding: 50px;
    text-align: center;
}

.project-report h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.project-report p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 20px;
}

.report-container {
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 20px;
}

.download-button {
    display: inline-block;
    padding: 12px 24px;
    font-size: 1rem;
    background: #005bb5;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.download-button:hover {
    background: #0073e6;
}