 /* Global Styles */
 :root {
    --primary-color: #2c5282;
    --secondary-color: #48bb78;
    --dark-color: #2d3748;
    --light-color: #f7fafc;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

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

.nav-links li a {
    color: var(--dark-color);
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: var(--transition);
}

.nav-links li a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    margin-top: 60px;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-slideshow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

/* Timeline Section */
.timeline-section {
    padding: 5rem 0;
    background: var(--light-color);
}

.timeline-duration {
    text-align: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 2rem auto;
    padding: 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    background: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 20px 40px;
    position: relative;
    width: 50%;
    background: transparent;
    margin: 40px 0;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.icon-container {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    top: 0;
}

.status-icon {
    position: absolute;
    bottom: -5px;
    right: -5px;
    font-size: 0.8em;
    background: white;
    border-radius: 50%;
    padding: 3px;
}

.status-icon.completed {
    color: #48bb78;
}

.status-icon.ongoing {
    color: #ecc94b;
}

.status-icon.future {
    color: #a0aec0;
}

.timeline-item:nth-child(odd) .icon-container {
    right: -60px;
}

.timeline-item:nth-child(even) .icon-container {
    left: -60px;
}

.content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.timeline-item .date {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.timeline-item h3 {
    margin: 0.5rem 0;
    color: var(--dark-color);
}

.phase {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.timeline-item .content .phase {
    background: #e2e8f0;
}

.timeline-item .content:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 40px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 80px;
        padding-right: 20px;
    }
    
    .timeline-item:nth-child(odd) {
        left: 0;
        text-align: left;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-item:nth-child(odd) .icon-container {
        left: 20px;
        right: auto;
    }
    
    .timeline-item:nth-child(even) .icon-container {
        left: 20px;
    }
}

/* Reports Section */
.reports-section {
    padding: 5rem 0;
}

/* .reports-grid {
    display: grid;
    grid-template-columns: minmax(250px, 400px);
    gap: 2rem;
    margin-top: 2rem;
    justify-content: center;
} */

.reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    justify-content: center;
}

/* .report-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
} */

.report-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.report-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Events Section */
.events-section {
    padding: 5rem 0;
    background: var(--light-color);
}

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

.event-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.event-resources {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.event-resources .btn {
    flex: 1;
    text-align: center;
    font-size: 0.9rem;
}

.event-resources .btn i {
    margin-right: 0.5rem;
}

.past-event {
    border-left: 4px solid #808080;
}

.future-event {
    border-left: 4px solid var(--secondary-color);
    position: relative;
}

.future-event::before {
    content: '\f251';  /* Cloud icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: -10px;
    left: -10px;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    border-radius: 50%;
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.event-date {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
}

.team-category {
    margin-bottom: 4rem;
}

.team-category h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin: 2rem 0 1rem;
    text-align: center;
}

.team-subcategory {
    margin: 3rem 0;
}

.team-subcategory h4 {
    color: var(--dark-color);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-grid.single {
    grid-template-columns: minmax(200px, 300px);
    justify-content: center;
}

.team-member {
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.team-member h3 {
    color: var(--dark-color);
    font-size: 1.2rem;
    margin: 0.5rem 0;
}

.team-member p {
    color: var(--primary-color);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .team-member img {
        width: 150px;
        height: 150px;
    }
}

/* Contact Section */
/* .contact-section {
    padding: 5rem 0;
    background: var(--light-color);
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.contact-form textarea {
    height: 150px;
} */

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: var(--secondary-color);
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    text-align: center;
    padding: 2rem 0;
}


/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: var(--light-color);
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.google-form-container {
    max-width: 800px; /* Adjust this value based on your needs */
    margin: 0 auto;
    width: 100%;
}

.google-form-container iframe {
    width: 100%;
    min-height: 700px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Responsive design for contact section */
@media (max-width: 768px) {
    .google-form-container iframe {
        min-height: 500px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }
}
