/* Reset & Base */
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: Arial, sans-serif; line-height: 1.6; color: #333; }
    img { max-width: 100%; height: auto; display: block; }
    .container { width: 90%; max-width: 1200px; margin: 0 auto; padding: 60px 0; }
    h2 { font-size: 2rem; margin-bottom: 1rem; text-align: center; }
    p { margin-bottom: 1rem; }
    



    /* --- 1. Hero Section --- */
.hero-about {
    background-color: var(--light-green-bg); /* Light green theme */
    color: var(--text-dark);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden; /* Hide overflowing graphics */
}

.hero-about .container {
    position: relative;
    z-index: 2; /* Ensure content is above graphics */
}

.hero-title {
    font-size: 3.5em;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: var(--text-medium);
}

/* Subtle background graphics */
.bg-graphic {
    position: absolute;
    font-size: 8em; /* Large icons */
    color: rgba(0, 0, 0, 0.05); /* Very subtle */
    pointer-events: none; /* Do not interfere with clicks */
    opacity: 0.5; /* Even more subtle */
}

.graphic-1 { top: 15%; left: 10%; transform: rotate(-15deg); }
.graphic-2 { bottom: 20%; right: 15%; transform: rotate(25deg); }
.graphic-3 { top: 50%; left: 5%; font-size: 6em; opacity: 0.3; }


/* --- 2. Image Row --- */
.image-row-section {
    padding: 60px 0;
    background-color: var(--white);
    margin-top: -50px; /* Overlap with hero slightly for visual flow */
    position: relative;
    z-index: 50; /* Ensure it's above hero for overlap */
    box-shadow: 0 5px 20px var(--shadow-light);
}

.image-gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.image-card {
    flex: 1 1 280px; /* Allows cards to grow/shrink, min width 280px */
    max-width: 300px; /* Max width for consistency */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-light);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    /* Glassmorphism effect */
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.image-card img {
    width: 100%;
    height: 200px;
    object-fit: cover; /* Ensures images fill the space */
    display: block;
    transition: transform var(--transition-speed);
}

.image-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px var(--shadow-medium);
    /* Enhanced glassmorphism effect on hover */
    background: rgba(22, 163, 74, 0.1);
    box-shadow: 0 8px 32px rgba(22, 163, 74, 0.2);
    border: 1px solid rgba(22, 163, 74, 0.3);
}

.image-card:hover img {
    transform: scale(1.05); /* Slight zoom on hover */
}

.hide-on-mobile {
    display: block; /* Default on desktop */
}

/* --- 3. Main Mission Section --- */
.mission-section {
    background-color: var(--bg-light);
}

.content-two-col {
    display: flex;
    align-items: center;
    gap: 50px;
}

.mission-text {
    flex: 1;
}

.mission-text .section-title {
    text-align: left;
    margin-bottom: 25px;
    font-size: 2.2em;
}

.mission-text p {
    margin-bottom: 15px;
    font-size: 1.1em;
    line-height: 1.7;
}

.mission-image {
    flex: 1;
    display: flex; /* For centering */
    justify-content: center;
    align-items: center;
}

.mission-image img {
    max-width: 100%;
    height: 100px;
    border-radius: 35px;
    box-shadow: 0 8px 20px var(--shadow-light);
}


/* --- 4. Empowerment Section --- */
.empowerment-section {
    background-color: var(--white);
    text-align: center;
}

.empowerment-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.empowerment-text {
    flex: 1 1 45%; /* Takes about half width */
    text-align: left;
    min-width: 300px; /* Ensures text doesn't get too narrow */
}

.empowerment-text p {
    font-size: 1.1em;
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial-card {
    flex: 1 1 45%; /* Takes about half width */
    background: linear-gradient(135deg, var(--yellow-green-btn) 0%, var(--primary-green) 100%);
    color: var(--text-dark);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 300px;
}

.testimonial-card .quote {
    font-size: 1.4em;
    font-style: italic;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.5;
    color: var(--text-dark); /* Ensure contrast */
}

.testimonial-card .author {
    font-size: 1em;
    font-weight: 500;
    color: var(--text-dark);
}


/* --- 5. Growth Support Section --- */
.growth-support-section {
    background-color: var(--bg-light);
}

.growth-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
}

.growth-card {
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow-light);
    text-align: center;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Glassmorphism effect */
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.growth-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px var(--shadow-medium);
    /* Enhanced glassmorphism effect on hover */
    background: rgba(22, 163, 74, 0.1);
    box-shadow: 0 8px 32px rgba(22, 163, 74, 0.2);
    border: 1px solid rgba(22, 163, 74, 0.3);
}

.growth-card .icon-circle {
    background-color: var(--primary-green);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2em;
    margin-bottom: 20px;
    transition: background-color var(--transition-speed);
}

.growth-card:hover .icon-circle {
    background-color: var(--primary-green-dark);
}

.growth-card h3 {
    color: var(--text-dark);
    font-size: 1.4em;
    margin-bottom: 10px;
}

.growth-card p {
    font-size: 0.95em;
    color: var(--text-medium);
}


/* --- 6. Why Choose Us Section --- */
.why-choose-us-section {
    background-color: var(--white);
}

.why-choose-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center;
}

.reason-card {
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start; /* Align icon and text at top */
    gap: 15px;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    /* Glassmorphism effect */
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px var(--shadow-medium);
    /* Enhanced glassmorphism effect on hover */
    background: rgba(22, 163, 74, 0.1);
    box-shadow: 0 8px 32px rgba(22, 163, 74, 0.2);
    border: 1px solid rgba(22, 163, 74, 0.3);
}

.reason-card .icon-circle.small-icon {
    background-color: var(--primary-green);
    color: var(--white);
    width: 45px;
    height: 45px;
    min-width: 45px; /* Prevent shrinking */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    margin-bottom: 0; /* Override larger card margin */
    transition: background-color var(--transition-speed);
}

.reason-card:hover .icon-circle.small-icon {
    background-color: var(--primary-green-dark);
}

.reason-card h3 {
    color: var(--text-dark);
    font-size: 1.2em;
    margin-bottom: 5px;
}

.reason-card p {
    font-size: 0.9em;
    color: var(--text-medium);
    line-height: 1.6;
}


/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .section-title {
        font-size: 2em;
        margin-bottom: 40px;
    }

    .hero-title {
        font-size: 2.8em;
    }

    .hero-description {
        font-size: 1em;
    }

    .content-two-col {
        flex-direction: column;
        text-align: center;
    }

    .mission-text .section-title {
        text-align: center;
    }

    .mission-image {
        margin-top: 30px;
    }

    .hide-on-mobile {
        display: none; /* Hide 4th image on smaller screens */
    }

    .image-card {
        flex: 1 1 45%; /* Two cards per row on tablet */
    }

    .empowerment-content {
        flex-direction: column;
        gap: 30px;
    }

    .empowerment-text, .testimonial-card {
        flex: 1 1 100%; /* Full width on tablets */
    }

    .testimonial-card .quote {
        font-size: 1.2em;
    }

    .growth-cards-grid, .why-choose-us-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Adjust grid for tablets */
        gap: 25px;
    }

    .navbar nav {
        display: none; /* Hide nav links on tablet/mobile for simpler design. Consider a hamburger menu if needed. */
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 2.2em;
    }

    .image-gallery {
        gap: 15px;
    }

    .image-card {
        flex: 1 1 100%; /* One card per row on small tablets/large phones */
        max-width: 350px; /* Keep a max width for single column */
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .hero-title {
        font-size: 1.8em;
        margin-bottom: 15px;
    }

    .hero-description {
        font-size: 0.9em;
    }

    .bg-graphic {
        font-size: 5em;
    }
    .graphic-1 { top: 10%; left: 0%; }
    .graphic-2 { bottom: 10%; right: 0%; }

    .image-row-section {
        padding: 40px 0;
        margin-top: -30px;
    }

    .image-card {
        max-width: 100%; /* Full width on smallest screens */
    }

    .mission-text p, .empowerment-text p, .testimonial-card .quote {
        font-size: 0.95em;
    }

    .growth-cards-grid, .why-choose-us-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 20px;
    }

    .growth-card, .reason-card {
        padding: 20px;
    }

    .growth-card .icon-circle {
        width: 50px;
        height: 50px;
        font-size: 2em;
        margin-bottom: 15px;
    }

    .growth-card h3 {
        font-size: 1.3em;
    }

    .reason-card .icon-circle.small-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1.3em;
    }

    .reason-card h3 {
        font-size: 1.1em;
    }
}
    /* --- Footer Section Styling --- */
.footer-section {
    background-color: #ffffff; /* Light background for consistency */
    padding: 60px 20px 20px; /* Top padding, then standard side/bottom */
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #000000; /* Soft gray text color */
    border-top: 1px solid #e0e0e0; /* Subtle top border for separation */
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.03); /* Soft shadow for depth */
}

.footer-container {
    display: grid;
    /* On desktop: 5 columns, with varying widths to suit content */
    grid-template-columns: 1.5fr 1fr 1.2fr 1.2fr 1fr;
    gap: 40px; /* Space between columns */
    max-width: 1800px; /* Max width for content */
    margin: 0 auto; /* Center the container */
    padding-bottom: 40px; /* Space before the bottom bar */
}

/* --- Column Styles --- */
.footer-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align content to the left */
}

.footer-heading {
    font-size: 1.15em;
    font-weight: 600;
    color: #252c31; /* Darker heading color */
    margin-bottom: 25px;
}

/* --- Logo and Tagline --- */
.footer-col-brand {
    align-items: flex-start; /* Ensure logo and tagline align left */
}

.footer-logo {
    max-width: 150px; /* Size of the logo */
    height: auto;
    margin-bottom: 15px;
    filter: brightness(0.9); /* Slightly dim logo for softer look */
}

.footer-tagline {
    font-size: 0.95em;
    line-height: 1.6;
    color: #666;
}

/* --- Quick Links & Contact/Support Lists --- */
.footer-links-list,
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li,
.footer-contact-list li {
    margin-bottom: 12px;
}

.footer-links-list a,
.footer-contact-list a {
    color: #555;
    text-decoration: none;
    font-size: 0.95em;
    transition: color 0.2s ease;
    display: flex; /* For icon alignment */
    align-items: center;
}

.footer-links-list a:hover,
.footer-contact-list a:hover {
    color: #51ff00; /* Green on hover */
}

.footer-icon {
    font-size: 1.1em;
    margin-right: 10px;
    color: #175c0a; /* Green icon color */
    min-width: 20px; /* Ensure consistent spacing */
}

/* --- Access Channels --- */
.access-channels-grid {
    display: flex; /* Use flex for horizontal layout of items */
    flex-wrap: wrap; /* Allow items to wrap on smaller screens */
    gap: 15px; /* Space between channel items */
}

.access-channel-item {
    display: flex;
    flex-direction: column; /* Icon and text stacked */
    align-items: center; /* Center content horizontally */
    text-align: center;
    background-color: #E6F3EA; /* Light green background */
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
    flex: 1 1 calc(50% - 15px); /* Allows two items per row on larger mobile */
    min-width: 120px; /* Minimum width for the item */
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.access-channel-item:hover {
    background-color: #DCEBE0; /* Slightly darker green on hover */
    transform: translateY(-2px);
}

.footer-icon-large {
    font-size: 2em;
    color: #6CBE45; /* Green icon color */
    margin-bottom: 8px;
}

.access-channel-item span {
    font-size: 0.85em;
    color: #333;
    font-weight: 500;
}


/* --- Social Media Icons --- */
.social-icons {
    display: flex;
    gap: 15px; /* Space between icons */
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px; /* Size of the icon button */
    height: 40px;
    border-radius: 50%; /* Circular buttons */
    background-color: #e0e0e0; /* Light gray background */
    color: #666; /* Icon color */
    font-size: 1.2em;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.social-icons a:hover {
    background-color: #6CBE45; /* Green background on hover */
    color: white; /* White icon on hover */
    transform: translateY(-3px); /* Slight lift effect */
}

/* --- Bottom Bar (Legal Info) --- */
.footer-bottom-bar {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid #e9e9e9; /* Separator for bottom bar */
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on small screens */
    justify-content: center;
    align-items: center;
    gap: 15px; /* Space between copyright and legal links */
}

.footer-copyright {
    font-size: 0.85em;
    color: #777;
}

.footer-legal-links a {
    color: #777;
    text-decoration: none;
    font-size: 0.85em;
    transition: color 0.2s ease;
}

.footer-legal-links a:hover {
    color: #6CBE45; /* Green on hover */
}

.footer-legal-links .separator {
    color: #aaa;
    margin: 0 10px;
    font-size: 0.85em;
}


/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
    .footer-container {
        /* On medium screens: 3 columns, then 2 for the last two */
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    .footer-col-brand {
        grid-column: 1 / span 3; /* Logo column spans all 3 columns */
        align-items: center; /* Center content when spanning */
        text-align: center;
    }
    .footer-col-brand .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }
    .footer-col-social {
        grid-column: 1 / span 3; /* Social media spans all 3 columns */
        align-items: center;
    }
    .footer-social .social-icons {
        justify-content: center; /* Center social icons */
    }
}

@media (max-width: 768px) {
    .footer-section { padding: 40px 15px 15px; }
    .footer-container {
        /* On smaller screens: 2 columns, then stack */
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .footer-col-brand {
        grid-column: 1 / span 2; /* Logo column spans 2 columns */
    }
    .footer-col-social {
        grid-column: 1 / span 2; /* Social media spans 2 columns */
    }
    .footer-heading { margin-bottom: 15px; font-size: 1.05em; }
    .footer-links-list li,
    .footer-contact-list li { margin-bottom: 8px; }
    .footer-links-list a,
    .footer-contact-list a { font-size: 0.9em; }
    .footer-icon { font-size: 1em; margin-right: 8px; }

    .access-channels-grid {
        flex-direction: column; /* Stack access channels vertically */
        gap: 10px;
    }
    .access-channel-item {
        flex: 1 1 100%; /* Take full width */
        max-width: 250px; /* Constrain width for readability */
        margin: 0 auto; /* Center items */
    }
    .footer-icon-large { font-size: 1.8em; }
    .access-channel-item span { font-size: 0.8em; }

    .social-icons a { width: 35px; height: 35px; font-size: 1.1em; }

    .footer-bottom-bar {
        flex-direction: column; /* Stack legal info vertically */
        gap: 10px;
        padding-top: 20px;
        margin-top: 20px;
    }
    .footer-copyright,
    .footer-legal-links a,
    .footer-legal-links .separator {
        font-size: 0.8em;
    }
}

@media (max-width: 480px) {
    .footer-container {
        /* On very small screens: single column stack */
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .footer-col,
    .footer-col-brand,
    .footer-col-links,
    .footer-col-contact,
    .footer-col-access,
    .footer-col-social {
        grid-column: 1 / span 1; /* All columns stack */
        align-items: center; /* Center align all content */
        text-align: center;
    }
    .footer-heading { margin-bottom: 10px; font-size: 1em; }
    .footer-links-list li,
    .footer-contact-list li { margin-bottom: 6px; }
    .footer-links-list a,
    .footer-contact-list a { font-size: 0.85em; }

    .footer-contact-list a {
        justify-content: center; /* Center align icons and text for contact */
    }

    .social-icons {
        justify-content: center; /* Center social icons when stacked */
    }

    .footer-tagline { font-size: 0.85em; }
}
/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed; /* Fixes the button to the viewport */
    width: 80px; /* Width of the button */
    height: 80px; /* Height of the button */
    bottom: 130px; /* Distance from the bottom of the screen */
    right: 50px; /* Distance from the right of the screen */
    background-color: #25d366; /* WhatsApp brand green */
    color: #FFF; /* White icon color */
    border-radius: 50%; /* Makes the button perfectly round */
    text-align: center; /* Centers the icon horizontally */
    font-size: 30px; /* Size of the icon */
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
    z-index: 1000; /* Ensures the button is on top of other content */
    display: flex; /* Use flexbox to vertically center the icon */
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transitions for hover effects */
}

.whatsapp-float:hover {
    background-color: #8cff00; /* Slightly darker green on hover */
    transform: scale(1.05); /* Slightly enlarge on hover */
    box-shadow: 3px 3px 12px rgba(0, 0, 0, 0.3);
}

/* Style for the Boxicon inside the button */
.whatsapp-float i {
    line-height: 1; /* Ensures icon is perfectly centered vertically */
    /* Remove any default boxicon margins if they exist */
    margin: 0;
    padding: 0;
    display: block; /* Ensures the icon itself doesn't have extra space */
    animation: bounce 2s infinite; /* Apply the bounce animation */
}

/* Keyframes for the bounce animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px); /* Bounce up by 8px */
    }
    60% {
        transform: translateY(-4px); /* Slight bounce up by 4px */
    }
}

/* Responsive Adjustments (optional, but good practice) */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 15px;
        right: 17px;
        font-size: 22px;
    }
}
.chatbot-container {
    position: fixed;
    bottom: 250px;
    right: 40px;
    z-index: 999;
    font-family: sans-serif;
  }
  
  .chatbot-toggle {
    background: #3c5332;
    color: white;
    border: none;
    border-radius: 50%;
    padding: 20px;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  }
  
  .chatbot-window {
    display: none;
    flex-direction: column;
    width: 300px;
    height: 400px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    overflow: hidden;
  }
  
  .chatbot-window.active {
    display: flex;
  }
  
  .chatbot-header {
    background: #38b000;
    color: white;
    padding: 10px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .chatbot-messages {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    font-size: 0.9rem;
  }
  
  .bot-msg, .user-msg {
    margin-bottom: 10px;
    padding: 8px 12px;
    border-radius: 10px;
    max-width: 80%;
  }
  
  .bot-msg {
    background: #e1fbd3;
    align-self: flex-start;
  }
  
  .user-msg {
    background: #d1e7ff;
    align-self: flex-end;
    text-align: right;
  }
  
  #chatForm {
    display: flex;
    padding: 10px;
    border-top: 1px solid #ddd;
  }
  
  #chatInput {
    flex: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 6px;
  }
  
  #chatForm button {
    background: #38b000;
    color: white;
    border: none;
    padding: 0 15px;
    margin-left: 6px;
    border-radius: 6px;
    cursor: pointer;
  }