:root {
    --primary-color: #FFD700;
    --secondary-color: #FFC107;
    --text-color: #333333;
    --white: #FFFFFF;
    --gray: #F5F5F5;
}

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

body {
    font-family: 'Quattrocento Sans', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Schibsted Grotesk', sans-serif;
}

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

/* Header Styles */
header {
    background: rgba(255, 255, 255, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    height: 50px;
}

.logo {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.cta-button {
    background: var(--primary-color);
    color: var(--text-color);
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.cta-button:hover {
    background: var(--secondary-color);
    color: var(--text-color);
}

.nav-links .cta-button:hover {
    background: var(--secondary-color);
    color: var(--text-color);
}

/* Hero Slider Styles */
.hero-slider {
    margin-top: 0;
    height: 100vh;
    position: relative;
}

.swiper {
    width: 100%;
    height: 100vh;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 84px;
}

.slide-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.slide-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    max-width: 800px;
}

/* Mission Section */
.mission {
    padding: 5rem 0;
    background: var(--gray);
    text-align: center;
}

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

.mission p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Impact Section */
.impact {
    padding: 5rem 0;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.impact-card {
    padding: 2rem;
    background: var(--gray);
    border-radius: 10px;
}

.impact-card h3 {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

/* Optional: Add a subtle scale effect when numbers are counting */
.impact-card.counting h3 {
    transform: scale(1.1);
}

/* CTA Section */
.cta-section {
    background: var(--primary-color);
    padding: 5rem 0;
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 1rem;
}

.cta-section p {
    margin-bottom: 2rem;
}

.cta-section .cta-button {
    background: var(--white);
    color: var(--text-color);
}

.cta-section .cta-button:hover {
    background: var(--secondary-color);
    color: var(--text-color);
}

/* Footer Styles */
footer {
    background: var(--text-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 60px;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    line-height: 2;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

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

    .slide-content h1 {
        font-size: 2.5rem;
    }

    .slide-content p {
        font-size: 1.2rem;
    }

    .impact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 5rem 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Program Details Section */
.program-details {
    padding: 5rem 0;
    background: var(--gray);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.program-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.program-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.program-card ul {
    list-style-position: inside;
    padding-left: 1rem;
}

.program-card li {
    margin-bottom: 0.8rem;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.testimonial-card {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    background: var(--gray);
}

.testimonial-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
}

.testimonial-card blockquote {
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-card cite {
    font-weight: bold;
    color: var(--secondary-color);
}

.achievement {
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

/* Partners Section */
.partners {
    padding: 5rem 0;
    background: var(--gray);
}

.partners > .container > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.partner-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.partner-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.partner-card ul {
    list-style: none;
}

.partner-card li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.partner-card li::before {
    content: "•";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
}

/* Additional Responsive Styles */
@media (max-width: 768px) {
    .features-grid,
    .programs-grid,
    .testimonials-grid,
    .partners-grid {
        grid-template-columns: 1fr;
    }

    .feature-card img {
        height: 250px;
    }

    .testimonial-card {
        padding: 1.5rem;
    }
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 84px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    max-width: 800px;
}

/* Update responsive styles for hero content */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }
}

/* Add a dark overlay to make text more readable */
.swiper-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.slide-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Animation keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Apply animations to hero content */
.hero-content h1,
.slide-content h1 {
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-content p,
.slide-content p {
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0; /* Start invisible */
}

.hero-content .cta-button,
.slide-content .cta-button {
    animation: fadeIn 0.8s ease-out 0.4s forwards;
    opacity: 0; /* Start invisible */
}

/* Ensure animations only play when slide is active */
.swiper-slide-active .hero-content h1,
.swiper-slide-active .slide-content h1,
.swiper-slide-active .hero-content p,
.swiper-slide-active .slide-content p,
.swiper-slide-active .hero-content .cta-button,
.swiper-slide-active .slide-content .cta-button {
    animation-play-state: running;
}

/* Update existing header and nav styles */
.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 1001;
}

/* Update mobile styles */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--white);
        padding: 80px 40px;
        transition: 0.5s ease-in-out;
        box-shadow: -2px 0 5px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        right: 0;
    }

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

    .nav-links .cta-button {
        display: inline-block;
        margin-top: 20px;
    }

    /* Add overlay when menu is open */
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 999;
    }

    .menu-overlay.active {
        display: block;
    }
}