body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #fff;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
    width: 93%;
    background-color: #1a1a1a;
}

.logo-section {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.logo {
    width: 40px;
    height: auto;
    margin-right: 10px;
    border-radius: 20%;
}

.logo-section h1 {
    color: #2E8B57;
    font-size: 20px;
    font-weight: bold;
    margin: 0;
    display: flex;
    align-items: center; 
}

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

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 13px;
    padding: 10px 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-links a:hover {
    background-color: #2E8B57;
    color: white;
    border-radius: 5px;
}

.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 70px 100px;
    background-color: #000;
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('background-image-url.jpg'); 
    background-size: cover;
}

.hero-content {
    max-width: 600px; 
}

.hero-title {
    font-size: 50px;
    color: #2E8B57;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero-text {
    font-size: 18px;
    line-height: 1.6;
}

.hero-image {
    margin-left: 40px; 
}

.hero-image img {
    width: 200px; 
    height: auto;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.description-section {
    width: 100vw;
    background: #000;
    display: flex;
    justify-content: center;
    padding: 40px 0;
}

.description-section .container {
    width: 100%;
    max-width: 900px;         /* Keeps it centered and not too wide */
    padding: 0 24px;          /* Some space on the sides */
    box-sizing: border-box;
    margin: 0 auto;
}

.description-section .content {
    width: 100%;
    min-height: 250px;        /* Make all the boxes the same min height */
    background: #333;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Responsive for smaller screens */
@media (max-width: 1000px) {
    .description-section .container {
        max-width: 98vw;
        padding: 0 8px;
    }
    .description-section .content {
        padding: 18px;
        min-height: 180px;
    }
}
@media (max-width: 600px) {
    .description-section .content {
        padding: 8px;
        min-height: 120px;
    }
}

.description-section img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.container, h1 {
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    color: #2E8B57;
    font-size: 36px;
    font-weight: bold;
}

.content {
    background-color: #333;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

h3 {
    color: #2E8B57;
    font-size: 24px;
    margin-bottom: 20px;
    text-align:center;
}
b{
    color: #2E8B57;
}

p {
    color: #ddd;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.info-section {
    display: flex;
    justify-content: center;
    padding: 60px 40px;
    background-color: #000;
}

.container {
    display: flex;
    justify-content: space-between;
    gap: 40px; 
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap; 
}

.info-card {
    background-color: #333;
    padding: 20px;
    border-radius: 8px;
    width: 251px; 
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.info-card h3 {
    color: #2E8B57;
    font-size: 20px;
    margin-bottom: 10px;
}

.info-card p {
    color: #ddd;
    font-size: 14px;
}

.info-card::before, .info-card::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 5px;
    background-color: #2E8B57;
}

.info-card::before {
    top: 0;
    left: -20px;
}

.info-card::after {
    bottom: 0;
    right: -20px;
}

.main-content {
    padding: 60px 40px;
    background-color: #000;
    text-align: center;
}

.main-content h1 {
    color: #2E8B57;
    font-size: 36px;
    margin-bottom: 40px;
    font-weight: bold;
}

.pdf-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.pdf-item {
    background-color: #333;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.pdf-item h2 {
    color: #2E8B57;
    font-size: 20px;
    margin-bottom: 20px;
}

.pdf-view {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.viewDocument {
    display: inline-block;
    margin-top: 15px;
    background-color: #2E8B57;
    padding: 10px 20px;
    color: white;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.viewDocument:hover {
    background-color: #1c5e3a;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.sponsor {
    background-color: #333;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    max-width: 90%;
    margin: 0 auto; 
    gap: 25px;
}

.sponsor-image {
    width: 30%; 
    height: auto; 
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.sponsor h2 {
    color: #2E8B57;
    font-size: 24px;
    margin-bottom: 10px;
}

.sponsor p {
    color: #ddd;
    font-size: 16px;
    line-height: 1.6;
    text-align: left;
}

.team-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); 
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.team-member {
    background-color: #333;
    padding: 20px;
    border-radius: 10px;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;

}

.team-member:hover {
    transform: scale(1.05); 
}

.team-member img {
    width: 100px; 
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}

.team-member h3 {
    color: #2E8B57;
    font-size: 20px;
    margin: 10px 0;
    font-weight: bold;
}

.team-member p {
    font-size: 14px;
    color: var(--muted-text-color);
    margin: 5px 0;
}

.team-member .email {
    color: var(--primary-color);
    font-weight: 600;
}

.team-member .role {
    font-style: italic;
    color: #bbb;
}

.team-member .description {
    font-size: 13px;
    line-height: 1.5;
    margin-top: 10px;
}



@media (max-width: 768px) {
    .hero {
        flex-direction: column; 
        align-items: center;
    }

    .hero-image {
        margin-left: 0;
        margin-top: 20px; 
    }

    .container {
        flex-direction: column; 
        align-items: center;
    }

    .info-card {
        width: 100%;
        margin-bottom: 20px;
    }
        .team-container {
        grid-template-columns: 1fr; 
        gap: 20px;
    }

    .team-member img {
        width: 80px; 
        height: 80px;
    }

    .team-member p {
        font-size: 12px; 
    }
}


    .team-member p {
        font-size: 12px; 
    }
}

p {
    color: #ccc;
    font-size: 18px;
    margin-bottom: 15px;
}

.section-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    align-items: center;

}

.carousel-section {
    background: #000;
    text-align: center;
}

.carousel-section h2 {
    font-size: 28px;
    color: #2E8B57;
    margin-bottom: 20px;

}

.carousel {
    display: flex;
    justify-content: center;
    gap: 20px; 
    padding: 20px;
    align-items: center;
}

.carousel-item {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #333;
    border-radius: 15px; 
    padding: 20px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); 
}

.carousel-item img {
    width: 600px;
    height: auto;
    border-radius: 10px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); 
}

.image-wrapper {
    display: flex; 
    align-items: center;
    justify-content: center;
    width: 650px; 
    height: 490px; 
    background-color: #1a1a1a; 
    border-radius: 25px; 
    margin: 20px auto; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
}

.image-wrapper img {
    max-width: 90%; 
    max-height: 90%; 
    border-radius: 15px; 
    object-fit: contain; 
}

.video-view {
    width: 100%; /* Make the video take the full width of its container */
    height: auto; /* Maintain aspect ratio */
    max-height: 400px; /* Match the height of the PDF preview */
    object-fit: cover; /* Scale the video to fill the container while maintaining aspect ratio */
    border: 1px solid #ccc; /* Optional: Add a border to match the PDF items */
    border-radius: 5px; /* Optional: Add rounded corners like the PDF previews */
    margin: auto;
    display: block; /* Center the video within the container */
}

footer {
    background: linear-gradient(90deg, #000, #1a1a1a);
    padding: 20px;
    color: #fff;
    text-align: center;
    font-size: 14px;
    border-top: 2px solid #2E8B57;
}

