/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  margin: 0;
  padding: 100px 0 0; /* Account for fixed header (80px) + top bar (20px) */
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

/* Colors */
:root {
    --primary: #003366;
    --accent: #00bfa5;
    --background: #f9f9f9;
    --text: #333333;
}



/* Hero Section */
.hero {
    position: relative;
    
    height: 100vh;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    position: absolute !important;
    top: 30% !important;
    left: 50% !important;
    transform: translate(-50%, 0) !important;
    text-align: center !important;
    color: white !important;
    z-index: 2 !important;
    max-width: 800px !important;
    padding: 0 20px !important;
    margin: 0 !important;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
    line-height: 1.2;
    background: rgba(0, 0, 0, 0.5);
    padding: 1rem;
    display: inline-block;
}

.tagline {
    font-size: 1.5rem;
    font-weight: 500;
    opacity: 0.9;
    margin-bottom: 2rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.5rem 1rem;
    display: inline-block;
}

.hero-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    z-index: 3;
}

.hero-nav-prev, .hero-nav-next {
    position: absolute;
    color: white;
    font-size: 60px;
    cursor: pointer;
    z-index: 3;
    transition: transform 0.3s ease;
}

.hero-nav-prev:hover, .hero-nav-next:hover {
    transform: scale(1.2);
}

.hero-nav-prev {
    left: 20px;
}

.hero-nav-next {
    right: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .hero-nav-prev, .hero-nav-next {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
}

.hero-button {
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.hero-button.primary {
    background: var(--accent);
    color: white;
}

.hero-button.secondary {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.hero-button:hover {
    transform: translateY(-2px);
}

/* Highlights Section */
.highlights {
    padding: 6rem 1rem;
    background: var(--background);
    display: flex;
    justify-content: center;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.highlight-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin: 0 auto;
}

.highlight-card:hover {
    transform: translateY(-5px);
}

.highlight-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Partner Section */
.partner-section {
    padding: 6rem 1rem;
    text-align: center;
}

.partner-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary);
}

.partner-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.partner-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin: 0 auto;
}

.partner-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.partner-card p {
    margin-bottom: 1.5rem;
}

.partner-card-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: background 0.3s ease;
}

.partner-card-button:hover {
    background: #00a590;
}

/* Commitment Section */
.commitment {
    padding: 6rem 1rem;
    background: var(--background);
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.commitment-card {
    text-align: center;
    padding: 2rem;
}

.commitment-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Partner Invitation */
.partner-invitation {
    padding: 6rem 1rem;
    background: var(--primary);
    color: white;
    text-align: center;
}

.partner-invitation h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.partner-invitation-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: background 0.3s ease;
    margin-top: 2rem;
}

.partner-invitation-button:hover {
    background: #00a590;
}

/* Projects & Initiatives */
.projects-hero {
    padding: 6rem 1rem 4rem;
    text-align: center;
    background: linear-gradient(135deg, #003366 0%, #00bfa5 100%);
    color: white;
    margin-top: 2rem;
}

.projects-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.projects-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
}

.project-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1rem;
    background: white;
}

.card {
    flex: 0 1 30%;
    min-width: 300px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin: 1rem;
}

.card h2 {
    color: #003366;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
}

.project {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.project h3 {
    color: #003366;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.project p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .card {
        flex: 0 1 45%;
    }
}

@media (max-width: 768px) {
    .card {
        flex: 0 1 100%;
        max-width: 100%;
        margin: 1rem 0;
    }

    .project {
        margin-bottom: 1rem;
    }

    .project h3 {
        font-size: 1.1rem;
    }

    .date {
        font-size: 0.8rem;
    }
}

/* About Page Styles */
.hero-banner {
    padding: 6rem 1rem;
    text-align: center;
    margin-bottom: 4rem;
}

.hero-banner h1 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.hero-banner p {
    font-size: 1.2rem;
    color: #333;
}

.who-we-are {
    padding: 4rem 1rem;
    background: var(--background);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.vision {
    padding: 4rem 1rem;
    background: white;
}

.team {
    padding: 4rem 1rem;
    background: var(--background);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.team-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.partners {
    padding: 4rem 1rem;
    background: white;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.partner-logo {
    text-align: center;
}

.partner-image {
    max-width: 150px;
    height: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.partner-image:hover {
    opacity: 1;
}

.cta {
    padding: 4rem 1rem;
    background: var(--primary);
    text-align: center;
    color: white;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #00a590;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}



/* Responsive Design */
@media (max-width: 768px) {
    .hero-banner h1 {
        font-size: 2.5rem;
    }
    
    .features-grid,
    .team-grid,
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .team-image {
        width: 100px;
        height: 100px;
    }
    
    .partner-image {
        max-width: 100px;
    }
}

/* Newsletter */
.newsletter {
    padding: 4rem 1rem;
    background: var(--background);
    text-align: center;
}

.newsletter h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary);
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 30px;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.newsletter-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: background 0.3s ease;
}

.newsletter-button:hover {
    background: #002a52;
}

.newsletter-disclaimer {
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
}

/* Footer */
footer {
    background: var(--primary);
    color: white;
    padding: 4rem 1rem 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .partner-cards {
        grid-template-columns: 1fr;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .commitment-grid {
        grid-template-columns: 1fr;
    }
}
