:root {
    --primary-green: #7ED957;
    --dark-green: #065F46;
    --medium-green: #047857;
    --light-green-bg: #F0FDF4;
    --light-green-border: #D1FAE5;
    --banner-bg: #D8EAB8;
    --dark-bg: #141414;
    --light-text: #FFFFFF;
    --dark-text: #222;
    --medium-text: #333;
    --body-bg: #FFFFFF;
}

/* General Body Styles */
body {
    font-family: 'Poppins', Arial, sans-serif;
    background: var(--body-bg);
    color: var(--dark-text);
    margin: 0;
    padding: 0;
}
/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: var(--banner-bg);
    border-radius: 32px;
    padding: 2.5rem 3.5rem 2.5rem 1.5rem;
    margin-bottom: 1.5rem; /* reduced from 3rem */
    gap: 2rem;
    min-height: 480px;
    position: relative;
    overflow: visible;
    margin-top: 1.5rem;
}

.hero-content {
    flex: 1 1 50%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 50%;
    min-width: 340px;
    padding-left: 0;
    margin-left: 0;
    align-self: center;
    align-items: flex-start;
    text-align: left;
}

/* Hero Section Heading: Make it black and bold */
.hero-content h1 {
    font-size: 2.3rem;
    font-weight: 700;
    line-height: 1.13;
    margin-bottom: 1.5rem;
    margin-top: 0;
    letter-spacing: -0.5px;
    word-break: break-word;
}

.hero-content p {
    font-size: 1.18rem;
    color: #444;
    margin: 0;
    margin-top: 0.5rem;
    line-height: 1.6;
    font-weight: 400;
    max-width: 95%;
}

.hero-image {
    flex-basis: 55%;
    align-self: flex-end;
    position: relative;
    bottom: -15px;
}

.hero-image img {
    width: 115%;
    max-width: 115%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 2.5rem;
    margin-bottom: 0;
}

.large-hero-image {
    position: absolute;
    right: -180px;
    bottom: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    margin-left: 2.5rem;
}

.large-hero-image img {
    height: 120%;
    width: auto;
    max-width: 900px;
    min-width: 500px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 16px 48px rgba(0,0,0,0.13));
}

/* Mission & Vision Section */
.mission-vision-section {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.mission, .vision {
    flex: 1;
    background: var(--light-green-bg);
    border: 1px solid var(--light-green-border);
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 450px;
}

.mission h2, .vision h2 {
    color: var(--dark-green); 
    margin-top: 0;
    font-size: 1.8rem;
    font-weight: 600;
}

.mission p, .vision p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--medium-green);
}


/* Who We Are Section */
.who-we-are-section {
    text-align: center;
    padding: 2rem;
    margin-bottom: 3rem;
}

.who-we-are-section h2 {
    color: var(--dark-green);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.who-we-are-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
    color: var(--medium-text);
}


/* Footer */
footer {
    background: var(--dark-bg);
    color: var(--light-text);
    padding: 4rem 0 2rem 0;
    font-size: 0.95rem;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-about {
    flex: 2;
    min-width: 250px;
}

.footer-about .logo {
    margin-bottom: 1rem;
}

.footer-about p {
    color: #ccc;
    line-height: 1.7;
    max-width: 350px;
}

.footer-links, .footer-contact {
    flex: 1;
    min-width: 150px;
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: var(--primary-green);
}

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

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s, padding-left 0.3s;
}

.footer-links ul a:hover {
    color: var(--light-text);
    padding-left: 5px;
}

.social-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.social-links a {
    color: #ccc;
    font-size: 1.4rem;
    transition: color 0.3s, transform 0.3s;
}

.social-links a:hover {
    color: var(--primary-green);
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    color: #aaa;
}

.nav-links a {
    font-family: 'Montserrat', Arial, sans-serif !important;
    font-weight: 500 !important;
}


/* Progressive Image Loading with Blur Effect */
.hero-image img,
.large-hero-image img {
    filter: blur(10px);
    transition: filter 0.5s ease-out, opacity 0.5s ease-out;
    opacity: 0.8;
}

.hero-image img.loaded,
.large-hero-image img.loaded {
    filter: blur(0);
    opacity: 1;
}

/* Responsive blur effects for different screen sizes */
@media (max-width: 768px) {
    .hero-image img,
    .large-hero-image img {
        filter: blur(8px);
        transition: filter 0.4s ease-out, opacity 0.4s ease-out;
    }
}

@media (max-width: 480px) {
    .hero-image img,
    .large-hero-image img {
        filter: blur(6px);
        transition: filter 0.3s ease-out, opacity 0.3s ease-out;
    }
}

/* Responsive Design */
@media (max-width: 1400px) {
    .hero-content {
        max-width: 60%;
        min-width: 260px;
    }
    .large-hero-image {
        margin-left: 1.2rem;
    }
    .large-hero-image img {
        max-width: 700px;
        min-width: 350px;
        height: 110%;
    }
}

@media (max-width: 1100px) {
    .hero-section {
        padding: 1.5rem 1.5rem 1.5rem 1rem;
    }
    .hero-content {
        max-width: 90%;
        min-width: 180px;
    }
    .large-hero-image {
        margin-left: 0.5rem;
    }
    .large-hero-image img {
        max-width: 400px;
        min-width: 180px;
        height: 90%;
    }
}

@media (max-width: 900px) {
    .hero-section {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        text-align: center;
        padding: 2.2rem 0.5rem 2.5rem 0.5rem;
        min-height: unset;
        margin-top: 0.5rem;
    }
    .large-hero-image {
        position: static;
        width: 100vw;
        max-width: 420px;
        min-width: 180px;
        justify-content: center;
        align-items: center;
        margin-top: 0;
        margin-bottom: 1.5rem;
        margin-left: -8vw;
        margin-right: -8vw;
        height: auto;
        right: 0;
        overflow: visible;
        border-radius: 1.5rem;
        box-shadow: 0 8px 32px rgba(0,0,0,0.10);
        background: #fff;
    }
    .large-hero-image img {
        width: 100vw;
        max-width: 420px;
        min-width: 180px;
        height: auto;
        display: block;
        margin: 0 auto;
        border-radius: 1.5rem;
    }
    .hero-content {
        max-width: 100%;
        min-width: unset;
        align-items: center;
        text-align: center;
        padding-left: 0;
        margin-left: 0;
    }
    .hero-content h1 {
        font-size: 1.45rem;
        line-height: 1.18;
        margin-bottom: 1.1rem;
    }
    .hero-content p {
        font-size: 1.05rem;
        line-height: 1.5;
    }
}

@media (max-width: 992px) {
    .hero-content {
        padding: 2rem;
        flex-basis: 50%;
    }
    .hero-image {
        flex-basis: 50%;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .mission-vision-section {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 1.5rem;
        text-align: center;
        flex-direction: column;
    }
    .hero-content {
        max-width: 100%;
        text-align: center;
        padding: 0 0 2rem 0;
    }
    .hero-content p {
        margin: 0 auto;
    }
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    .footer-links {
        gap: 2rem;
        justify-content: center;
        width: 100%;
    }
    .hero-image {
        position: static;
    }
    .hero-image img {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .mission h2, .vision h2, .who-we-are-section h2 {
        font-size: 1.5rem;
    }
} 