
/* Brand Colors */
:root {
    --navy: #09194D;
    --orange: #FC8A00;
    --green: #31CC31;
    --white: #FFFFFF;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--white);
    color: var(--navy);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

nav {
    background-color: var(--navy);
    color: var(--white);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;

}

.logo {
    height: 70px;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 1rem;
}

nav ul li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

nav ul li a:hover, 
nav ul li a.active {
    color: var(--orange);
}

nav ul li a.active {
    position: relative;
}

nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--orange);
    transition: all 0.3s;
    transform: translateX(-50%);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 70%;
}

.hamburger {
    display: none;
    font-size: 2rem;
    cursor: pointer;
}

#navbar {
    margin-top: 2rem;
}


/* Home Section */
#home {
    /* background: linear-gradient(to top, rgba(49,204,49,0.1), var(--white)); */
    background-size: cover;
    color: var(--white);
    text-align: center;
    padding: 5rem 2rem 2rem;
    min-height: 100vh;
}

.hero {
    background-size: cover;
    background-position: center 15%;
    color: var(--white);
    text-align: center;
    padding: 10rem 2rem 5rem;
    position: relative;
    min-height: 40vh;
}

.hero::before {
    content: '';
    /* position: absolute; */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(9,25,77,0.2); */
}

.hero > * {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    color: var(--orange);
    font-weight: 900;
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
    padding: 0 1rem;


}

.hero p {
    font-size: 1rem;
    max-width: 1000px;
    margin: 2rem auto;
    padding: 1.5rem 1rem;
    background-color: rgba(9, 25, 77, 0.5);
    border-radius: 10px;
}

.hero-text {
    /* background-color: rgba(9, 25, 77, 0.4); */
    max-width: 800px;
    margin: auto;
    padding: 0.5rem;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.cta-button {
    background-color: var(--orange);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    margin: 1rem 0.5rem;
    transition: background 0.3s;
}

.cta-button:hover {
    background-color: var(--green);
}


@keyframes ripple {
    0% { width: 0; height: 0; opacity: 1; }
    100% { width: 200%; height: 200%; opacity: 0; }
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.card {
    background: var(--white);
    border: 1px solid var(--green);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    color: var(--navy);
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    width: 100%;
    border-radius: 10px;
}

.featured h2 {
    text-align: center;
    color: var(--navy);
    margin: 2rem 0;
}

.featured a {
    text-decoration: none;
    /* color: var(--orange); */
}

.featured p {
    color: var(--navy);
}

/* Key Insight Panel */
.key-insight-panel {
    padding: 3rem 2rem;
    /* background: linear-gradient(to bottom right, rgba(252,138,0,0.1), rgba(49,204,49,0.1)); */
    text-align: center;
    max-width: 1200px;
    margin: 2rem auto;
    border-radius: 15px;
    /* box-shadow: 0 6px 12px rgba(0,0,0,0.08); */
    animation: fadeIn 1s ease-in-out;
}

.key-insight-panel h2 {
    color: var(--navy);
    margin-bottom: 1rem;
    position: relative;
}


#home h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--orange);
    margin: 0.5rem auto;
}

.key-insight-panel .panel-intro {
    max-width: 800px;
    margin: 0 auto 2rem;
}

.key-insight-panel p {
    max-width: 800px;
    margin: 0.5rem auto;
    line-height: 1.6;
    color: black;
}

.insight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.insight-card {
    background: var(--orange);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(252,138,0,0.2);
}

.insight-card i {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.insight-card h3 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.insight-card p {
    font-size: 0.9rem;
    margin: 0;
}

.key-insight-panel .panel-conclusion {
    max-width: 800px;
    margin: 0 auto;
}


/* Impact Section */
.impact {
    /* background: linear-gradient(rgba(49,204,49,0.1), var(--white)); */
    padding: 3rem 2rem;
    text-align: center;
    color: var(--navy);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.stat-card {
    background: var(--white);
    border: 2px solid var(--navy);
    padding: 1.5rem;
    border-radius: 10px;
    transition: transform 0.3s, background 0.3s;
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--orange);
    margin: 0;
}


/* Gallery Section */
.gallery {
    padding: 3rem 2rem;
    text-align: center;
    color: var(--navy);
}

.gallery-grid {
    display: flex;
    overflow-x: hidden;
    gap: 1rem;
    padding: 1rem;
    width: 100%;
    margin: auto;
    justify-content: center;
}

.gallery-grid img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* Latest Updates */
.latest-updates {
    /* background: rgba(252,138,0,0.05); */
    padding: 3rem 1rem;
    text-align: center;
    color: var(--navy);
}

.updates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.date {
    color: #FC8A00;
    font-size: 0.9rem;
    margin-top: 5px;
}

.updates-grid small {
    color: var(--orange);
    font-weight: 600;
}


.update-card {
    position: relative;
    background: var(--white);
    overflow: hidden;
    border-left: 4px solid var(--orange);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.update-image {
    width: 100%;
    height: 15rem;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 0.5rem;
}

.follow-button {
    font-size: 1.2rem;
    margin-top: 2rem;
    font-weight: 600;

}

.follow-button img {
    width: 1.5rem;
    height: auto;
}

.cta-follow-button:hover {
    transform: scale(1.05);
}

.cta-follow-button {
    background-color: var(--orange);
    color: var(--white);
    padding: 0.5rem 1rem 0.3rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    margin: 1rem 0.5rem;
    transition: background 0.3s;
}

/* Testimonials */
.testimonials {
    padding: 2rem 2rem;
    text-align: center;
    color: var(--navy);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    position: relative;
    background: var(--white);
    overflow: hidden;
    border-left: 4px solid var(--orange);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    font-style: italic;
}

.testimonial-image {
    width: 100%;
    height: 15rem;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 0.5rem;
}

.update-card:hover, .testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    color: var(--green);
}

.testimonials a {
    text-decoration: none;
}



/* Responsive Design */
@media (max-width: 768px) {
    
    .hero h1 {
        font-size: 1.5rem;
        top: 4rem;
    }

    .hero p {
        font-size: 0.8rem;
        padding: 1rem;
    }
    
    .logo {
        height: 50px;
        padding: 0.6rem 0;
    }

    .cta-buttons a {
        font-size: 0.8rem;
        padding: 0.5rem 0.8rem;
        margin: 0.5rem 0.2rem;
    }

    .nav-container {
        flex-wrap: flex;
        flex-direction: column;
        padding: 0;

    }

    .hero {
        padding: 8rem 1rem 4rem;
    }

    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    nav ul.show {
        display: flex;
        justify-content: center;
        text-align: center;

    }

    nav ul li {
        margin: 0.5rem 0;
        text-align: center;
        font-size: 0.8rem;
    }

    .nav {
        position: relative;
    }

    .hamburger {
        display: block;
        position: absolute;
        left: 1rem;
        top: 1rem;
    }

    .featured p, .featured p, .gallery p, .impact p, .latest-updates p, .testimonials p {
        font-size: 0.9rem;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
        margin: 1rem 0;
    }

    .stats-grid h3 {
        font-size: 2rem;
        
    }

    .gallery img {
        width: 8rem;
        height: auto;
    }

    .updates-grid img, .testimonials img {
        height: 9rem;
    }

    #home {
        padding: 0;
    }
}