/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: #fbbf24;
    padding: 60px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.header-image {
    flex-shrink: 0;
}

.logo-placeholder {
    width: 200px;
    height: 150px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border: 3px solid #fbbf24;
}

.header-text {
    text-align: left;
}

header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: 300;
}

header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

ul{
    margin-top: 10px;
    margin-bottom: 2px;
    padding-left: 20px;
    list-style-type: none;
}

/* Navigation Styles */
nav {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.nav-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #1e40af;
    color: #fbbf24;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.nav-button:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.4);
}

.nav-button.active {
    background-color: #f59e0b;
    color: #1e40af;
    border-color: #f59e0b;
}

/* Main Content Styles */
main {
    margin: 40px 0;
}

.content-section {
    background-color: white;
    margin-bottom: 40px;
    padding: 60px 0;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.content-section:nth-child(even) {
    background-color: #f8f9fa;
}

.content-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1e40af;
    text-align: center;
    font-weight: 300;
}

.content-section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.content-section ul {
    margin: 20px 0;
    padding-left: 30px;
}

.content-section li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #555;
}

/* Services Grid */
.services-grid {
    display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-item {
    background-color: #f8fafc;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.15);
    border-color: #fbbf24;
}

.service-item h3 {
    color: #1e40af;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Contact Section */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.contact-item {
    text-align: center;
    padding: 20px;
    background-color: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.contact-item h3 {
    color: #1e40af;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.contact-form {
    max-width: 600px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #1e40af;
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.contact-form button {
    padding: 15px 30px;
    background-color: #1e40af;
    color: #fbbf24;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: #fbbf24;
    text-align: center;
    padding: 30px 0;
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .header-text {
        text-align: center;
    }
    
    .logo-placeholder {
        width: 150px;
        height: 112px;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    header p {
        font-size: 1rem;
    }
    
    .nav-menu {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .nav-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .content-section {
        padding: 40px 0;
    }
    
    .content-section h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        gap: 15px;
    }
    
    .logo-placeholder {
        width: 120px;
        height: 90px;
    }
    
    header {
        padding: 40px 0;
    }
    
    header h1 {
        font-size: 1.8rem;
    }
    
    .content-section {
        padding: 30px 0;
        margin-bottom: 20px;
    }
    
    .content-section h2 {
        font-size: 1.8rem;
    }
    
    .nav-menu {
        gap: 10px;
    }
    
    .nav-button {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

/* Team Member Cards */
.people-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    align-items: start;
}

.person-card {
    border: 1px solid #ccc;
    border-radius: 12px;
    padding: 14px;
    background: #ffffff;
    color: #000000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.15s ease;
}

.person-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0,0,0,.1);
}

.person-card img {
    display: block;
    height: 160px;
    width: 160px;
    object-fit: cover;
    border-radius: 10px;
    margin: 0 auto 12px;
    border: 1px solid #ddd;
}

.person-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 1.4;
}

.person-card li + li {
    margin-top: 4px;
}

.team-subtitle {
    margin: 28px 0 12px;
    font-size: 1.25rem;
    color: #003366;
}

.lead-badge {
    display: inline-block;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 999px;
    background: #003366;
    color: #fff;
    margin-left: 6px;
    vertical-align: middle;
}

/* Smooth scroll offset for fixed navigation */
html {
    scroll-behavior: smooth;
}

.content-section {
    scroll-margin-top: 80px;
}
/* PDF Links Styles */
.pdf-links-container {
    margin-top: 20px;
}

.pdf-link-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
    margin-bottom: 5px;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.pdf-link-item:hover {
    background-color: #f1f5f9;
    border-color: #3b82f6;
    transform: translateX(5px);
}

.pdf-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.pdf-link-item a {
    color: #1e40af;
    text-decoration: none;
    font-weight: 500;
    flex-grow: 1;
    transition: color 0.3s ease;
}

.pdf-link-item a:hover {
    color: #3b82f6;
    text-decoration: underline;
}

.no-docs {
    color: #64748b;
    font-style: italic;
    margin-top: 10px;
    text-align: center;
}

/* Sponsors Section Styles */
.sponsors-description {
    text-align: center;
    color: #64748b;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 30px;
    align-items: center;
    justify-items: center;
}

.sponsor-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    text-align: center;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.sponsor-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.15);
    border-color: #3b82f6;
}

.sponsor-item a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.sponsor-logo {
    max-width: 180px;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.sponsor-item:hover .sponsor-logo {
    transform: scale(1.05);
}

.sponsor-name {
    color: #1e40af;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 10px;
}

.no-sponsors {
    text-align: center;
    color: #64748b;
    font-style: italic;
    padding: 40px 20px;
    background-color: #f8fafc;
    border-radius: 10px;
    border: 2px dashed #cbd5e1;
}

/* Responsive adjustments for sponsors */
@media (max-width: 768px) {
    .sponsors-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 25px;
    }
    
    .sponsor-item {
        padding: 20px;
        max-width: 180px;
        min-height: 150px;
    }
    
    .sponsor-logo {
        max-width: 140px;
        max-height: 100px;
    }
}
