@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');
/* Basic Reset & Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fdfdfd;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

.content-section {
    padding: 60px 0;
}

.content-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: #005659; /* Darker Teal for headings */
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.btn-primary {
    background-color: #FF69B4; /* Primary Action - Pink/Magenta */
    color: #fff;
    border: 1px solid #FF69B4;
}

.btn-primary:hover {
    background-color: #e0559d;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #008080; /* Teal */
    border: 1px solid #008080;
}

.btn-secondary:hover {
    background-color: #008080;
    color: #fff;
}

.btn-large {
    padding: 15px 35px;
    font-size: 1.1rem;
}


/* Header & Navigation */
header {
    background-color: #fff;
    padding: 4px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px; /* Adjust as needed */
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #008080; /* Teal for underline */
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active-link { /* Example for an active link style */
    color: #008080;
}
.nav-links a:hover::after,
.nav-links a.active-link::after {
    width: 100%;
}


.donate-button-nav {
    background-color: #FF69B4; /* Pink/Magenta */
    color: white !important;
    padding: 8px 15px !important;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
.donate-button-nav:hover {
    background-color: #e0559d;
}
.donate-button-nav::after {
    display: none; /* Remove underline for button-like nav item */
}

.nav-toggle {
    display: none; /* Hidden on larger screens */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger {
    display: block;
    position: relative;
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease-in-out;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: #333;
    transition: all 0.3s ease-in-out;
}

.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }


/* Updated Hero Section with Orange Background */
.hero {
    background-color: #b94a04; /* Orange background */
    color: #fff; /* White text color */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 25px rgba(243, 112, 33, 0.25); /* Softer shadow with orange tint */
    padding: 20px 0;
    border-bottom-left-radius: 15px; /* Subtle rounded corner */
    border-bottom-right-radius: 15px; /* Subtle rounded corner */
}

/* Remove the subtle orange tint since we now have full orange background */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(255, 255, 255, 0.08) 0%, 
        rgba(0, 0, 0, 0.08) 100%
    ); /* Subtle diagonal gradient */
    border-bottom-left-radius: 15px; /* Match hero border radius */
    border-bottom-right-radius: 15px; /* Match hero border radius */
}

/* Optional: add a subtle lower edge with a pseudo-element */
.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0),
        rgba(255, 255, 255, 0.5),
        rgba(255, 255, 255, 0)
    );
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    color: #fff; /* White text color */
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
}

.hero-tagline {
    font-size: 1.7rem;
    color: #fff; /* White text color */
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    line-height: 1.4;
}

.hero-description {
    font-size: 1.2rem;
    color: #fff; /* White text color */
    line-height: 1.5;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

/* Responsive styles for hero section */
@media (max-width: 992px) {
    .hero {
        height: auto;
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 3.2rem;
    }
    
    .hero-tagline {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 50px 0;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero-tagline {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.3rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
}

/* About Snippet Section */
.about-snippet {
    background-color: #fff;
}

.about-columns {
    display: flex;
    gap: 40px;
    align-items: center;
}
.about-columns .column {
    flex: 1;
}
.about-columns .column img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.about-columns .column p {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

/* Programs Section */
.programs-section {
    background-color: #f4f7f6; /* Light Grayish Teal */
}

.program-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Team Member Images - Fix for proper display */
.programs-section .card img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    object-position: center 15%; /* This positions the image to show faces properly */
    border-radius: 50%; /* For circular images */
    margin: 0 auto 15px;
    display: block;
}

/* Alternatively, if you prefer rectangular images */
.programs-section .card img.rectangular {
    height: 240px;
    border-radius: 8px;
    object-position: center 20%;
}

.card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.card img {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
}

.card h3 {
    font-size: 1.5rem;
    margin: 20px;
    color: #005659;
    font-family: 'Roboto', sans-serif;
}

.card p {
    font-size: 1rem;
    margin: 0 20px 20px;
    flex-grow: 1; /* Makes p take available space pushing button down */
}

.card .btn {
    margin: 0 20px 20px; /* Pushes button to the bottom of the card text area */
    align-self: flex-start; /* Aligns button to the left if text is short */
}


/* CTA Donate Section */
.cta-donate {
    background-color: #008080; /* Teal */
    color: #fff;
}
.cta-donate h2 {
    color: #fff;
}
.cta-donate p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.cta-donate .btn-primary {
    background-color: #FFD700; /* Gold/Yellow accent for donate */
    color: #333;
    border-color: #FFD700;
}
.cta-donate .btn-primary:hover {
    background-color: #e6c300;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 40px 0 20px;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

/* This container will hold your addresses side-by-side */
.address-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
    gap: 40px;
}

.footer-column {
    width: auto;
    max-width: 400px;
    text-align: center;
    padding: 0 15px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #bdc3c7; /* Lighter grey for links */
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #FFD700; /* Gold on hover */
}

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 5px;
}

.social-media a {
    margin-right: 10px;
    display: inline-block;
}
.social-media img {
    width: 30px;
    height: 30px;
    border-radius: 4px; /* Slightly rounded social icons */
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    font-size: 0.9rem;
    color: #bdc3c7;
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-toggle {
        display: block; /* Show hamburger */
    }

    .nav-links {
        display: none; /* Hide links by default on mobile */
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 70px; /* Adjust based on header height */
        left: 0;
        background-color: #fff;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        padding-bottom: 10px;
    }

    .nav-links.active {
        display: flex; /* Show when active */
    }

    .nav-links li {
        margin: 0;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 15px;
        border-bottom: 1px solid #f0f0f0;
    }
    .nav-links a::after { /* Remove underline animation for mobile nav items */
        display: none;
    }
    .donate-button-nav {
        display: block;
        margin: 10px 15px;
        text-align: center;
    }


    .nav-toggle.active .hamburger { background: transparent; }
    .nav-toggle.active .hamburger::before { transform: rotate(45deg) translate(5px, 7px); }
    .nav-toggle.active .hamburger::after { transform: rotate(-45deg) translate(5px, -7px); }


    .hero h1 {
        font-size: 2.2rem;
    }
    .hero p {
        font-size: 1rem;
    }

    .about-columns {
        flex-direction: column;
    }
    .about-columns .column:last-child { /* Image column */
        margin-top: 10px;
    }

    .content-section h2 {
        font-size: 2rem;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-column {
        margin-bottom: 20px;
    }
}
/* Horizontal Expanding List Section Styling */
.how-we-empower-section {
    background-color: #f9f9f9;
    /* padding remains from .content-section */
}

.how-we-empower-section h2 {
    /* Existing styles for h2 apply or customize */
    line-height: 1.3;
}

.horizontal-expanding-list {
    display: flex;
    width: 100%;
    height: 450px; /* Fixed height for the accordion effect */
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden; /* Important for rounded corners with flex items */
}

.expanding-item {
    flex-grow: 1; /* Initial state: share space, but will be small */
    flex-basis: 0; /* Distribute space based on flex-grow */
    min-width: 100px; /* Minimum width for collapsed items */
    padding: 30px 20px;
    color: #fff; /* Text color on colored backgrounds */
    cursor: pointer;
    overflow: hidden;
    position: relative; /* For absolute positioning of content if needed, and pseudo-elements */
    transition: flex-grow 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), /* Smooth transition for width */
                min-width 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    background-size: cover;
    background-position: center;
    display: flex; /* To align content within the item */
    flex-direction: column; /* Stack title and hidden content vertically */
    justify-content: flex-end; /* Align content to the bottom initially */
}

/* Distinct background colors/styles for each item - inspired by title colors */
.expanding-item.item-style-1 { background-color: rgba(233, 30, 99, 0.85); } /* Pinkish */
.expanding-item.item-style-2 { background-color: rgba(76, 175, 80, 0.85); } /* Greenish */
.expanding-item.item-style-3 { background-color: rgba(255, 152, 0, 0.85); }/* Orangish */
.expanding-item.item-style-4 { background-color: rgba(33, 150, 243, 0.85); }/* Bluish */

/* Adding a subtle overlay to enhance text readability over potential background images later */
.expanding-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0,0,0, 0.15); /* Darker overlay */
    z-index: 0;
    opacity: 0.5;
    transition: opacity 0.5s ease;
}
.expanding-item:hover::before {
    opacity: 0.2; /* Reduce overlay on hover to brighten the item */
}


.item-visible-content {
    position: relative; /* To sit above overlay */
    z-index: 1;
    transition: transform 0.5s ease;
}

.expanding-item h3 { /* Titles like title-pink, title-green etc. */
    font-family: 'Roboto', sans-serif;
    font-size: 1.8rem; /* Prominent title */
    font-weight: 700;
    color: #fff; /* White title text on colored backgrounds */
    margin-bottom: 10px; /* Space below title when content is shown */
    line-height: 1.2;
    transition: font-size 0.4s ease;
}
/* Remove specific color classes if h3 color is now globally white */
/* .empowerment-block .title-pink { color: #E91E63; } etc. are not needed if h3 is white */


.item-hidden-content {
    position: relative; /* To sit above overlay */
    z-index: 1;
    opacity: 0;
    max-height: 0;
    transform: translateY(20px); /* Start slightly lower */
    transition: opacity 0.4s 0.2s ease-out, /* Delay opacity transition */
                max-height 0.5s 0.1s ease-out,
                transform 0.4s 0.2s ease-out;
}

.item-hidden-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #f0f0f0; /* Lighter text for description */
}

.item-hidden-content .know-more-link {
    display: inline-block;
    text-decoration: none;
    font-weight: bold;
    color: #fff;
    background-color: rgba(255,255,255,0.2);
    padding: 8px 15px;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.item-hidden-content .know-more-link span {
    margin-left: 5px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.item-hidden-content .know-more-link:hover {
    background-color: rgba(255,255,255,0.9);
    color: #333;
}
.item-hidden-content .know-more-link:hover span {
    transform: translateX(3px);
}

/* Hover state for the expanding item */
.expanding-item:hover {
    flex-grow: 4; /* Expanded item takes more space */
    min-width: 300px; /* Minimum width for expanded item */
}

.expanding-item:hover .item-visible-content {
    /* Optional: Slightly move title up or change its style on hover */
    transform: translateY(-10px);
}
.expanding-item:hover h3 {
    font-size: 2rem; /* Make title slightly larger on expanded item */
}

.expanding-item:hover .item-hidden-content {
    opacity: 1;
    max-height: 200px; /* Adjust based on content length */
    transform: translateY(0);
}

/* Responsive adjustments for the horizontal expanding list */
@media (max-width: 992px) {
    .horizontal-expanding-list {
        height: 400px; /* Adjust height for tablets */
    }
    .expanding-item {
        min-width: 80px;
        padding: 25px 15px;
    }
    .expanding-item h3 {
        font-size: 1.5rem;
    }
    .expanding-item:hover h3 {
        font-size: 1.7rem;
    }
    .item-hidden-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .how-we-empower-section h2 {
        font-size: 1.8rem;
    }
    .horizontal-expanding-list {
        flex-direction: column; /* Stack items vertically */
        height: auto; /* Auto height for stacked items */
        box-shadow: none;
        border-radius: 0;
    }

    .expanding-item {
        flex-grow: 1; /* Reset flex-grow for vertical stacking */
        flex-basis: auto; /* Reset flex-basis */
        min-width: 100%; /* Full width for stacked items */
        height: auto; /* Auto height for each stacked item */
        margin-bottom: 15px; /* Space between stacked items */
        border-radius: 8px; /* Add radius back to individual items */
        box-shadow: 0 5px 15px rgba(0,0,0,0.07); /* Add shadow back */
        padding: 25px;
        justify-content: flex-start; /* Align content to top */
    }
    .expanding-item::before { /* Hide overlay for stacked view if desired or adjust */
        opacity: 0.2; /* Keep it subtle */
    }


    .expanding-item:hover {
        flex-grow: 1; /* No change in flex-grow on hover when stacked */
        min-width: 100%;
        transform: none; /* No translateY hover effect when stacked */
    }
    .expanding-item:hover h3, .expanding-item h3 {
        font-size: 1.6rem; /* Consistent title size for mobile */
    }

    /* In stacked view, always show hidden content or on click (would need JS) */
    /* For CSS-only, let's always show it for simplicity on mobile */
    .item-visible-content { transform: none; } /* Reset transform */
    .item-hidden-content {
        opacity: 1;
        max-height: 1000px; /* Ensure it can expand fully */
        transform: translateY(0);
        transition: none; /* No transition needed if always visible */
        margin-top: 10px;
    }
}
/* Enhanced Impact Stats Section - No Cards, No Separators */
.impact-stats-section {
    background-color: #f4f7f8; /* Light background color */
    padding: 45px 0;
    margin-top: -20px; /* Pull it up slightly to overlap with hero */
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.impact-stats-section .container {
    max-width: 1200px;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    gap: 30px; /* Increased gap to help visually separate stats without lines */
}

.stat-item {
    flex: 1;
    min-width: 180px;
    text-align: center;
    padding: 15px 10px;
    position: relative;
    transition: transform 0.3s ease;
    /* Remove background color and box-shadow for a cleaner look */
}

/* Remove the separator lines entirely */
.stat-item:not(:last-child)::after {
    display: none; /* This removes all the separator lines */
}

.stat-item:hover {
    transform: translateY(-3px);
}

/* Keyframes for the stat-number animation */
@keyframes fadeInScaleUp {
  from {
    opacity: 0;
    transform: scale(0.5) translateY(10px); /* Start smaller and slightly down */
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0); /* End at normal size and position */
  }
}

.stat-number {
    display: block;
    font-size: 3.8rem; 
    font-weight: 700;
    color: #b94a04; 
    line-height: 1.1;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
    /* Animation properties */
    animation-name: fadeInScaleUp;
    animation-duration: 0.7s; /* Duration of the animation */
    animation-timing-function: ease-out; /* Easing function for a smooth end */
    animation-fill-mode: forwards; /* Retains the style of the last keyframe when the animation ends */
    opacity: 0; /* Start transparent; animation will make it visible */
    /* Add a delay for each stat item if desired using nth-child, or use JS for on-scroll trigger */
}

/* Example of staggered animation delay using nth-child (optional) */
.stat-item:nth-child(1) .stat-number {
    animation-delay: 0.1s;
}
.stat-item:nth-child(2) .stat-number {
    animation-delay: 0.3s;
}
.stat-item:nth-child(3) .stat-number {
    animation-delay: 0.5s;
}
.stat-item:nth-child(4) .stat-number {
    animation-delay: 0.7s;
}


.stat-description {
    font-size: 1rem;
    color: #444;
    line-height: 1.4;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5em;
    font-family: 'Inter', sans-serif;
}

/* Responsive adjustments for stats */
@media (max-width: 992px) {
    .stat-number {
        font-size: 3.4rem;
    }
}

@media (max-width: 768px) {
    .impact-stats-section {
        padding: 35px 0;
    }
    
    .stats-grid {
        gap: 15px;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    /* Remove separators on smaller screens */
    .stat-item:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item {
        width: 100%;
        max-width: none;
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }
    
    .stat-item:last-child {
        margin-bottom: 0;
        border-bottom: none;
    }
    
    .stat-number {
        font-size: 3.2rem;
    }
}
/* Client logos */
.customer-cards {
  background-color: white;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  margin: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  flex: 1 0 calc(20% - 1rem); /* Make it 5 per row (20% width each) */
  max-width: calc(20% - 1rem);
}

.customer-cards:hover {
  transform: scale(1.05);
}

/* Add this to handle responsive behavior for client logos */
@media (max-width: 1200px) {
  .customer-cards {
    flex: 1 0 calc(25% - 1rem);
    max-width: calc(25% - 1rem);
  }
}

@media (max-width: 992px) {
  .customer-cards {
    flex: 1 0 calc(33.333% - 1rem);
    max-width: calc(33.333% - 1rem);
  }
}

@media (max-width: 768px) {
  .customer-cards {
    flex: 1 0 calc(50% - 1rem);
    max-width: calc(50% - 1rem);
  }
}

@media (max-width: 480px) {
  .customer-cards {
    flex: 1 0 100%;
    max-width: 100%;
  }
}
/* How We Work Section */
.how-we-work-section {
    background-color: #fff; /* White background for this section */
    /* padding is handled by .content-section if you use it, or add here e.g., padding: 60px 0; */
}

.how-we-work-section h2 {
    /* Uses existing h2 styling from .content-section h2 or define here: */
   background-color: #f9f9f9;
}

.how-we-work-section .intro-paragraph {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    max-width: 800px; /* Limit width for readability */
    margin: 0 auto 50px auto; /* Center the paragraph and add space below */
    line-height: 1.7;
}

.how-we-work-section .intro-paragraph strong {
    color: #000; /* Black for the bolded part, as in image */
    font-weight: 700;
}

.work-process-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px; /* Space between items */
}

.process-item {
    flex: 1; /* Allow items to grow and shrink */
    min-width: 280px; /* Minimum width before wrapping */
    max-width: 350px; /* Maximum width */
    text-align: center;
    padding: 20px;
    /* Optional: Add border or shadow if you want to cardify them
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    */
}

.process-icon {
    width: 200px; /* Adjust icon size as needed */
    height: 200px;
    margin-bottom: 5px;
    /* If using actual SVGs, you might apply color via 'fill' attribute or CSS */
}

.process-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #6A0DAD; /* Purple color for the sub-headings */
    margin-bottom: 15px;
    font-family: 'Roboto', sans-serif; /* Or your chosen heading font */
}

.process-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .how-we-work-section .intro-paragraph {
        font-size: 1rem;
    }
    .process-title {
        font-size: 1.6rem;
    }
    .process-item p {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .how-we-work-section h2 {
        font-size: 2rem;
    }
    .work-process-grid {
        flex-direction: column;
        align-items: center; /* Center items when stacked */
    }
    .process-item {
        min-width: 80%; /* Allow items to take more width when stacked */
        margin-bottom: 20px; /* Add space between stacked items */
    }
    .process-item:last-child {
        margin-bottom: 0;
    }
}
/* Our Partners Section */
.our-partners-section {
    background-color: #f8f9fa; /* Light grey background for the section */
    /* padding handled by .content-section or add e.g., padding: 60px 0; */
}

.our-partners-section h2 {
    /* Uses existing h2 styling from .content-section h2 or define here */
    background-color: #f9f9f9;
}

.logo-grid {
    display: grid;
    /* Adjust the number of columns for different screen sizes */
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); /* Responsive grid */
    gap: 20px; /* Space between logo items */
    align-items: center; /* Vertically align items if they have different heights before image loads */
}

.logo-item {
    background-color: #fff; /* White background for each logo container */
    padding: 20px; /* Padding around the logo image */
    border-radius: 8px; /* Slightly rounded corners */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06); /* Subtle shadow */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100px; /* Ensure a minimum height for consistent appearance */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.logo-item img {
    max-width: 100%; /* Ensure logo is responsive within its container */
    max-height: 60px; /* Control the max height of the logos for consistency */
    object-fit: contain; /* Scale image while maintaining aspect ratio */
}

/* Responsive adjustments for the logo grid */
@media (max-width: 1200px) {
    /* Example: If you want to ensure max 4 columns on slightly smaller desktops */
    /* .logo-grid { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); } */
    /* minmax(160px, 1fr) should handle this well already */
}

@media (max-width: 992px) {
    .logo-grid {
        /* minmax(150px, 1fr) might mean 3-4 columns */
        gap: 15px;
    }
     .logo-item {
        min-height: 90px;
        padding: 15px;
    }
    .logo-item img {
        max-height: 50px;
    }
}

@media (max-width: 768px) {
    .our-partners-section h2 {
        font-size: 2rem;
    }
    .logo-grid {
        /* minmax(140px, 1fr) might mean 2-3 columns */
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
}

@media (max-width: 576px) {
    .logo-grid {
        /* minmax(120px, 1fr) might mean 2 columns or stack more aggressively */
         grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
     .logo-item {
        min-height: 80px;
    }
    .logo-item img {
        max-height: 45px;
    }
}
/* Published Reports Section */
.published-reports-section {
    background-color: #fff; /* Or a very light grey like #f8f9fa */
    /* padding handled by .content-section or add e.g., padding: 60px 0; */
}

.published-reports-section h2 {
    /* Uses existing h2 styling from .content-section h2 or define here */
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: #005659; /* Consistent heading color */
    font-family: 'Poppins', sans-serif;
}

.reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid */
    gap: 30px; /* Space between cards */
}

.report-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden; /* Ensures image corners are also rounded if image is flush */
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.report-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.report-card-image-container {
    width: 100%;
    height: 180px; /* Reduced from 200px to 180px */
    overflow: hidden;
    position: relative;
    background-color: #f8f9fa; /* Light background for images */
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.report-card-image-container img {
    width: auto;
    height: auto;
    max-width: 85%; /* Limit width to 85% of container */
    max-height: 85%; /* Limit height to 85% of container */
    object-fit: contain; /* Ensure full image is visible without cropping */
    transition: transform 0.3s ease;
}

.report-card:hover .report-card-image-container img {
    transform: scale(1.08); /* Slight zoom on hover */
}

/* Adjust report card padding for better proportions */
.report-card-content {
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background-color: #fff;
}

/* Make report titles more concise */
.report-title {
    font-size: 1.15rem; /* Slightly smaller font */
    line-height: 1.4;
    margin-bottom: 10px;
}

.report-meta {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 15px;
    font-style: italic;
}

.report-summary {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    flex-grow: 1; /* Takes available space before the button */
    margin-bottom: 20px;
}

.report-download-link.btn { /* Specific styling for report buttons if needed, else .btn .btn-primary applies */
    padding: 10px 20px;
    align-self: flex-start; /* Aligns button to the left */
    /* background-color: #008080; Using existing btn-primary by default */
    /* color: #fff; */
    /* border-color: #008080; */
}

/* Responsive adjustments for reports section */
@media (max-width: 992px) {
    .reports-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    .report-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .published-reports-section h2 {
        font-size: 2rem;
    }
    .reports-grid {
        /* Will likely become single column due to minmax(300px, 1fr) */
    }
     .report-card-image-container {
        height: 160px;
    }
}

@media (max-width: 480px) {
    .report-card-content {
        padding: 20px;
    }
    .report-title {
        font-size: 1.2rem;
    }
     .report-summary {
        font-size: 0.9rem;
    }
}
/* Contact Form Section */
.contact-form-section {
    background-color: #3498db; /* Blue background - adjust hex code as needed */
    padding: 60px 0;
    color: #fff; /* Default text color for this section */
}

.contact-form-section .container {
    max-width: 800px; /* Limit width of the form container */
    margin: 0 auto;
}

.contact-intro {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    padding: 0 15px; /* Ensure some padding on very small screens */
}

.contact-form {
    width: 100%;
}

.form-row {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    gap: 20px; /* Space between Name and Email fields */
    margin-bottom: 20px;
}

.form-group {
    flex: 1; /* Each group takes equal space in the row */
    min-width: 250px; /* Minimum width before stacking for Name/Email */
}

.form-group-full {
    flex-basis: 100%; /* Makes the group take full width (for Message and Button) */
    min-width: 100%; /* Ensure it takes full width */
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd; /* Light border, image seems to have none or very subtle */
    border-radius: 5px;
    background-color: #fff; /* White background for inputs */
    font-size: 1rem;
    color: #333; /* Text color inside input */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input[type="text"]::placeholder,
.contact-form input[type="email"]::placeholder,
.contact-form textarea::placeholder {
    color: #999; /* Placeholder text color */
    opacity: 1; /* Firefox fix */
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #3498db; /* Blue border on focus - matches section bg */
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25); /* Subtle glow on focus */
}

.contact-form textarea {
    resize: vertical; /* Allow vertical resize, disable horizontal */
    min-height: 120px; /* Minimum height for the message box */
}

.btn-submit-message {
    background-color: #343a40; /* Dark grey/charcoal button background */
    color: #fff;
    border: none;
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 25px; /* Pill-shaped button as in image */
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block; /* Allows margin auto for centering if parent is text-center */
}

.btn-submit-message:hover,
.btn-submit-message:focus {
    background-color: #4a4a4a; /* Slightly lighter on hover/focus */
    transform: translateY(-2px);
    outline: none;
}

/* Responsive adjustments for the contact form */
@media (max-width: 768px) {
    .contact-form-section {
        padding: 40px 0;
    }
    .contact-intro {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    .form-row {
        flex-direction: column; /* Stack Name and Email */
        gap: 0; /* Remove gap as they are stacked now */
    }
    .form-group {
        margin-bottom: 20px; /* Add margin between stacked Name/Email and Message */
    }
    .form-group:last-child {
        margin-bottom: 0; /* Remove margin from last group in a stacked row if any */
    }
    .btn-submit-message {
        padding: 12px 30px;
        font-size: 0.95rem;
    }
}

/* text-center utility if not already defined elsewhere */
.text-center {
    text-align: center;
}
/* Testimonials Section */
.testimonials-section {
    background-color: #f8f9fa; /* Light grey background, or choose another */
    /* padding handled by .content-section or add e.g., padding: 60px 0; */
}

/* Update Testimonials Section Heading */
.testimonials-section h2 {
    /* Uses existing h2 styling from .content-section h2 */
    text-align: center;
    margin-bottom: 50px; /* More space for testimonials */
    font-size: 2.5rem;
    color: #005659; /* Consistent heading color */
    font-family: 'Poppins', sans-serif; /* Change from 'Roboto' to 'Poppins' */
    font-weight: 700;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
    align-items: center; /* Center avatar and text */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%; /* Circular avatar */
    object-fit: contain;
    margin-bottom: 20px;
    border: 3px solid #008080; /* Teal border for avatar, matches a theme color */
}

.testimonial-quote {
    font-size: 1.05rem;
    font-style: italic;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative; /* For quote marks */
    padding: 0 10px; /* Space for quote marks if they are large */
}

.testimonial-quote::before,
.testimonial-quote::after {
    font-family: 'Georgia', serif; /* Or a similar serif font for quotes */
    font-size: 2.5rem; /* Size of quote marks */
    color: #008080; /* Teal color for quote marks */
    position: absolute;
    opacity: 0.6;
}

.testimonial-quote::before {
    content: "\201C"; /* Left double quote */
    top: -10px; /* Adjust positioning */
    left: -5px; /* Adjust positioning */
}

.testimonial-quote::after {
    content: "\201D"; /* Right double quote */
    bottom: -15px; /* Adjust positioning */
    right: -5px; /* Adjust positioning */
}

.testimonial-author {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
    font-family: 'Roboto', sans-serif;
}

.testimonial-designation {
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
}

/* Responsive Adjustments for Testimonials */
@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    .testimonial-quote {
        font-size: 1rem;
    }
     .testimonial-quote::before,
    .testimonial-quote::after {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .testimonials-section h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    /* The grid will naturally stack to 1 column due to minmax(280px/300px, 1fr) */
    .testimonial-item {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .testimonial-avatar {
        width: 80px;
        height: 80px;
    }
    .testimonial-quote {
        font-size: 0.95rem;
    }
     .testimonial-quote::before,
    .testimonial-quote::after {
        font-size: 2rem;
    }
    .testimonial-author {
        font-size: 1rem;
    }
}

