/* === CSS === */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* HEADER CONTAINER */
.container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 80px;
    height: 120px;
    overflow: visible;
}

.logo img {
    height: 220px;
    width: 240px;
    transform: scale(0.72);
    transform-origin: left;
    margin-left: -10px;
}

/* NAVIGATION */
nav {
    flex: 1;
    text-align: center;
}

nav ul {
    display: flex;
    list-style: none;
    justify-content: center;
    padding: 0;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    text-decoration: none;
    color: #383838;
    font-weight: bold;
    font-size: 18px;
    transition: color 0.3s;
    padding: 10px 5px;
}

nav ul li a.active {
    color: #007F9E;
    font-weight: bold;
}

nav ul li a:hover {
    color: #009A7A;
}

/* Mobile Menu Toggle */
.menu-icon {
    display: none;
    font-size: 28px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 15px;
    z-index: 1000;
}

/* BUTTONS */
.buttons {
    display: flex;
    gap: 12px;
    margin-left: auto;
    margin-right: 0;
    
}

.btn {
    padding: 10px 18px;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid;
    transition: all 0.3s;
    min-width: 90px;
    text-align: center;
}

/* Default state - English active */
#welsh-btn {
    color: #009A7A;
    border-color: #009A7A;
    background: transparent;
}

#welsh-btn:hover {
    background-color: #007365;
    color: white;
}

#english-btn {
    background: linear-gradient(to bottom, #009A7A, #007F9E);
    color: white;
    border-color: #008D8A;
}

#english-btn:hover {
    background-color: #008D8A;
}

/* Welsh active state */
.welsh-active #welsh-btn {
    background: linear-gradient(to bottom, #009A7A, #007F9E);
    color: white;
    border-color: #008D8A;
}

.welsh-active #welsh-btn:hover {
    background-color: #008D8A;
}

.welsh-active #english-btn {
    color: #009A7A;
    border-color: #009A7A;
    background: transparent;
}

.welsh-active #english-btn:hover {
    background-color: #007365;
    color: white;
}

.image-section img {
    width: 100%;
    height: 600px; /* Fixed height */
    object-fit: cover; /* Maintains aspect ratio, avoids squashing */
    display: block;
}
/* Welsh mode - smaller font size for navigation */
.welsh-active nav ul li a {
    font-size: 16px;
}
/* RESPONSIVE NAVBAR */
@media (max-width: 768px) {
    .container {
        flex-direction: row;
        flex-wrap: wrap;
        height: auto;
        padding: 15px 20px;
    }

   .logo {
    order: 1;
    margin-top: -20px;
    margin-bottom: 10px;
    margin-left: 0;
    align-self: flex-start;
}

.logo img {
    height: 200px;
    width: auto;
    max-width: 100%;
}

    nav {
        order: 3;
        width: 100%;
        margin-top: 10px;
    }

    .menu-icon {
        display: block;
        position: absolute;
        right: 30px;
        top: 50px;
        font-size: 28px;
        cursor: pointer;
        z-index: 1001;
        padding: 10px;
        border-radius: 5px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease-in-out;
    }
    
    nav ul {
        display: flex;
        flex-direction: column;
        width: 100%;
        text-align: center;
        position: absolute;
        top: 60px;
        left: 0;
        background: white;
        height: 0;
        overflow: hidden;
        transition: height 0.4s ease-in-out, opacity 0.3s ease-in-out;
        z-index: 999;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        opacity: 0;
    }
    
  nav ul.active {
    height: auto;
    padding: 5px 0;
    opacity: 1;
    line-height: 1.2; /* reduces spacing between nav links */
}

    
    nav ul li {
        margin: 15px 0;
        padding: 0 20px;
        text-align: left;
    }

    .buttons {
        order: 2;
        width: 100%;
        justify-content: center;
        margin: 15px 0;
        margin-top: -60px;
        gap: 15px;
    }

    .hero h1 {
        font-size: 26px;
        font-weight: bold;
        line-height: 1.5;
        max-width: 90%;
        padding: 10px 15px;
        text-align: left;
        color: #222;
        word-spacing: 2px;
    }
}
/* SERVICES SECTION */
.services {
    padding: 100px 0 80px;
    background-color: #fff;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* SERVICE CARD STYLING */
.service-card {
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 15px 0 10px;
    text-transform: uppercase;
    color: #222;
    text-align: left;
    padding-left: 15px; /* Adds spacing to keep it away from the corner */
}

.service-card p {
    font-size: 14px;
    color: #555;
    padding: 0 15px 20px;
    line-height: 1.5;
    flex-grow: 1;
    text-align: left;
}


/* RESPONSIVE SERVICES GRID */
@media (max-width: 992px) {
    .services-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-container {
        grid-template-columns: 1fr;
    }

    .service-card img {
        height: 180px;
    }

    .service-card h3 {
        font-size: 16px;
    }

    .service-card p {
        font-size: 13px;
    }
}


/* INFO SECTION */
.info-section {
    text-align: center;
    padding: 10px 20px;
    margin: 20px auto;
    max-width: 1200px;
    background-color: white;
}

.info-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.info-link {
    display: block;
    text-align: center;
    font-size: 14px;
    color: #3498db;
    text-decoration: none;
    margin-top: 8px;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.info-link:hover {
    color: #2076b5;
    text-decoration: underline;
}

/* RESPONSIVENESS */
@media (max-width: 768px) {
    .info-section {
        padding: 10px;
    }

    .info-text {
        font-size: 13px;
        max-width: 90%;
    }

    .info-link {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .info-text {
        font-size: 12px;
        max-width: 100%;
    }

    .info-link {
        font-size: 12px;
    }
}


/* CORE VALUES SECTION */
.core-values {
    background-color: #D0DFC6; /* Light green background */
    padding: 60px 20px;
    text-align: center;
}

.section-title {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

/* VALUES CONTAINER */
.values-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* INDIVIDUAL VALUE CARD */
.value-card {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 1150px;
    text-align: left;
    padding: 20px;
    width: 100%; /* Ensures all cards align properly */
}

.value-card img {
    width: 50%; /* Increased image size */
    height: 300px; /* Increased height */
    object-fit: cover;
    border-radius: 8px;
}

.value-text {
    padding: 0 20px;
    flex-grow: 1;
}

.value-text h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
    text-transform: uppercase;
    color: #222;
}

.value-text p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .values-container {
        max-width: 100%;
        padding: 0 10px;
    }

    .value-card {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .value-card img {
        width: 90%; /* Adjusted width to make it slightly smaller than full width */
        height: 160px; /* Increased height for better visibility */
        border-radius: 8px 8px 0 0;
        object-fit: cover;
        margin: 0 auto; /* Centers the image */
    }
    

    .value-text {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 16px;
    }

    .value-text h3 {
        font-size: 15px;
    }

    .value-text p {
        font-size: 13px;
    }
}


/* IMPACT SECTION */
.impact-section {
    text-align: center;
    padding: 50px 20px;
    background-color: white;
}



.impact-text {
    font-size: 14px;
    color: #555;
    max-width: 1200px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* ANNUAL FIGURES */
.sub-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.figures-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.figure {
    flex: 1;
    min-width: 200px;
}

.figure-number {
    font-size: 24px;
    font-weight: bold;
    display: block;
}

.figure-description {
    font-size: 14px;
    color: #555;
    margin-top: 5px;
    line-height: 1.4;
}

/* COLORS */
.green {
    color: #2EDC0C; /* Green */
}

.blue {
    color: #096B96; /* Blue */
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .impact-text {
        font-size: 13px;
        max-width: 90%;
    }

    .figures-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .figure {
        min-width: auto;
    }

    .figure-number {
        font-size: 22px;
    }

    .figure-description {
        font-size: 13px;
    }
}


/* DONATION SECTION */
.donation-section {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 50px 20px;
    background-color: white;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.donation-text {
    font-size: 14px;
    color: #555;
    max-width: 800px;
    margin: 0 auto 15px;
    line-height: 1.6;
}

.donation-link {
    color: #0073b7;
    text-decoration: none;
    font-weight: bold;
}

.donation-link:hover {
    text-decoration: underline;
}

.donation-ways {
    text-align: left;
    max-width: 800px;
    margin: 20px auto;
}

.donation-ways ul {
    list-style: none;
    padding: 0;
}

.donation-ways li {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

.donation-thanks {
    font-size: 14px;
    font-weight: bold;
    color: #444;
    margin-top: 20px;
}

/* BLUE BACKGROUND STRIP */
.donation-background {
    background-color: #096B96; /* Blue color */
    height: 200px;
    width: 100%;
    position: absolute;
    left: 0;
    top: 55%; /* Moves it under the donation card */
    z-index: -1; /* Places it behind the card */
}

/* DONATION CARD */
.donation-card {
    background: white;
    padding: 30px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    max-width: 450px;
    margin: 60px auto;
    text-align: center;
    position: relative;
    z-index: 2;
    height: 460px;
}

.donation-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.donation-subtext {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

.donation-amount {
    font-size: 24px;
    font-weight: bold;
    color: white;
    background: #2EDC0C;
    padding: 15px 30px;
    display: inline-block;
    margin-bottom: 15px;
    width: 90%;
}

.donation-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 12px;
    color: #666;
    margin-bottom: 15px;
    margin-top: 60px;
}

.donation-toggle input {
    width: 90px;
    height: 30px;
    appearance: none;
    background: linear-gradient(to right, #2EDC0C 50%, white 50%);
    border: 2px solid #2EDC0C;
    cursor: pointer;
   
}

.donation-toggle input::-webkit-slider-thumb {
    appearance: none;
    width: 0;
    height: 0;
}


.donate-btn {
    background: #2EDC0C;
    color: white;
    border: none;
    padding: 14px 22px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    width: 50%;
    transition: 0.3s;
    margin-top: 70px;
    height: 60px;
}

.donate-btn:hover {
    background: #27AE60;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .donation-section {
        padding: 40px 15px;
    }

    .donation-text {
        font-size: 13px;
        max-width: 90%;
    }

    .donation-ways {
        max-width: 90%;
    }

    .donation-background {
        height: 200px;
        top: 60%;
    }

    .donation-card {
        max-width: 350px;
        margin: 50px auto;
    }

    .donation-amount {
        font-size: 22px;
        padding: 12px 25px;
    }

    .donate-btn {
        font-size: 13px;
        padding: 12px 18px;
    }
}


/* JOIN OUR TEAM SECTION */
.join-team {
    max-width: 1250px;
    margin: 0 auto;
    text-align: center;
    padding: 50px 20px;
    background-color: white;
}

.section-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.team-text {
    font-size: 14px;
    color: #555;
    max-width: 1200px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* VOLUNTEER CONTAINER */
.volunteer-container {
    display: flex;
    align-items: stretch;
    max-width: 1250px;
    margin: 0 auto;
    overflow: hidden;
}

/* VOLUNTEER INFO */
.volunteer-info {
    background-color: #C6D9B7;
    color: #FFFFFF;
    padding: 30px;
    flex: 1;
    text-align: left;
}

.volunteer-info h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.volunteer-info p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* CONTACT DETAILS */
.contact-details {
    font-size: 14px;
    color: #FFFFFF;
}

.contact-details .icon {
    font-size: 16px;
    margin-right: 5px;
}

.contact-details a {
    color: #0073b7;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* VOLUNTEER IMAGE */
.volunteer-image {
    flex: 1;
}

.volunteer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .volunteer-container {
        flex-direction: column;
    }

    .volunteer-info {
        padding: 25px;
        text-align: left;
    }

    .volunteer-info h3 {
        font-size: 18px;
        margin-bottom: 12px;
        text-transform: uppercase;
        font-weight: bold;
        text-align: left;
        margin-left: 20px;
    }

    .volunteer-info p {
        font-size: 14px;
        line-height: 1.6;
        max-width: 90%;
        margin: 0 auto 15px;
        text-align: left;
    }

    .contact-details {
        text-align: left;
    }

    .contact-details p {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .volunteer-image img {
        width: 100%;
        height: auto;
    }
}



/* TESTIMONIAL SECTION */
.testimonial-section {
    background-color: #096B96; /* Blue background */
    padding: 60px 20px;
    text-align: center;
}

.testimonial-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    color: white;
    font-style: italic;
    font-size: 16px;
    line-height: 1.8;
}

/* QUOTE ICONS */
.quote-icon {
    font-size: 80px;
    position: absolute;
    color: rgba(255, 255, 255, 0.7);
}

.left-quote {
    left: -60px;
    top: -50px;
}

.right-quote {
    right: 150px;
    bottom: -10px;
}

/* CLIENT SIGNATURE */
.client-signature {
    font-weight: bold;
    font-style: normal;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .testimonial-container {
        font-size: 14px;
        max-width: 90%;
    }

    .quote-icon {
        font-size: 40px;
    }

    .left-quote {
        left: -30px;
        top: -20px;
    }

    .right-quote {
        right: 120px;
        bottom: 15px;
    }
}

/* PARTNER SECTION */
.partner-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.partner-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.partner-container img {
    width: 100%;
    height: auto;
    max-height: none; /* Ensures full width without limiting height */
    object-fit: cover;
}


/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .partner-section {
        padding: 30px 15px;
    }

    .partner-container img {
        max-width: 80%;
        max-height: 250px;
    }
}

@media (max-width: 480px) {
    .partner-container img {
        max-width: 100%;
        max-height: 250px;
    }
}

.footer-section {
    background: linear-gradient(to bottom, #009A7A, #007F9E);
    color: white;
    padding: 40px 20px 20px 20px;
    font-size: 14px;
    text-align: center;
}

.footer-divider {
    border: none;
    height: 1px;
    background-color: white;
    opacity: 0.3;
    margin: 0 auto 40px auto;
    max-width: 1200px;
}

.footer-navigation {
    display: flex;
    justify-content: center;
    gap: 120px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-navigation a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s;
}

.footer-navigation a:hover {
    opacity: 0.8;
}

.footer-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact-item img {
    width: 16px;
    height: 16px;
}

.footer-contact-item a {
    color: white;
    text-decoration: none;
}

.footer-contact-item a:hover {
    text-decoration: underline;
}

.footer-bottom {
    font-size: 12px;
    opacity: 0.8;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-navigation {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-contact {
        flex-direction: column;
        gap: 15px;
    }
}
/* ABOUT OUR SERVICES SECTION */
.about-services {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    background-color: white;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

/* SECTION TITLES */
.about-title {
    font-size: 20px;
    font-weight: bold;
    color: #2E2D2D;
    text-transform: uppercase;
    margin-bottom: 15px;
}

/* BODY TEXT */
.about-text {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* LIST STYLING */
.about-list {
    padding-left: 20px;
    font-size: 14px;
    color: #555;
    line-height: 1.8;
}

.about-list li {
    margin-bottom: 10px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .about-container {
        max-width: 95%;
    }
    
    .about-title {
        font-size: 18px;
        text-align: center;
    }
    
    .about-text {
        font-size: 13px;
        text-align: justify;
    }
    
    .about-list {
        font-size: 13px;
    }
}

/* FAQ SECTION */
.faq-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.faq-image {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    margin-bottom: 20px;
}

.faq-container {
    margin-bottom: 50px;
}

.faq-item {
    margin-bottom: 10px;
    border-radius: 0;
    overflow: hidden;
}

.faq-question {
    background-color: #355e20;
    color: white;
    padding: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: normal;
    position: relative;
}

.faq-question::after {
    content: "▲";
    font-size: 12px;
    transition: transform 0.3s ease;
}

.faq-question.collapsed::after {
    transform: rotate(180deg);
}

.faq-answer {
    background-color: #f9f9f9;
    padding: 15px;
    display: none;
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

.faq-answer.show {
    display: block;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .faq-question {
        font-size: 13px;
        padding: 12px;
    }
    
    .faq-answer {
        font-size: 13px;
        padding: 12px;
    }
}


/* TIMELINE SECTION */
.timeline-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    position: relative;
}

.timeline-container {
    display: flex;
    background-color: #95a778;
    position: relative;
}

.timeline-column {
    flex: 1;
    position: relative;
}

.timeline-container::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #fff;
    left: 50%;
    transform: translateX(-50%);
}

/* Left column items */
.timeline-left .timeline-item {
    position: relative;
    margin: 80px 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 30%;
}

/* Right column items - positioned between left items */
.timeline-right .timeline-item {
    position: relative;
    margin: 120px 0; /* Adjusted to position between left items */
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 30%;
}

/* Adjust first right item to align properly */
.timeline-right .timeline-item:first-child {
    margin-top: 160px; /* Positions 1999 between 1983 and 2003 */
}

.timeline-circle {
    width: 100px;
    height: 100px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 2;
}

.timeline-left .timeline-circle {
    right: calc(30% - 50px);
}

.timeline-right .timeline-circle {
    left: calc(30% - 50px);
}

.timeline-year {
    font-size: 24px;
    font-weight: bold;
    color: #cd9933;
}

.timeline-content {
    max-width: 200px;
    padding: 0 20px;
    color: white;
    font-size: 13px;
    line-height: 1.4;
}

.timeline-left .timeline-content {
    text-align: right;
    padding-right: 70px;
}

.timeline-right .timeline-content {
    text-align: left;
    padding-left: 70px;
}
/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .timeline-container {
        flex-direction: column;
    }

    /* Remove the ::before pseudo-element on mobile */
    .timeline-column::before {
        content: none;
    }

    /* Adjust timeline items */
    .timeline-left .timeline-item,
    .timeline-right .timeline-item {
        justify-content: flex-start;
        padding-left: 0;
        padding-right: 0;
        margin: 40px 0; /* Reduced margin for better spacing */
    }

    /* Reset the top margin for the first item */
    .timeline-right .timeline-item:first-child {
        margin-top: 40px;
    }

    /* Adjust timeline circles */
    .timeline-left .timeline-circle,
    .timeline-right .timeline-circle {
        left: 10px;
        width: 70px; /* Slightly smaller for mobile */
        height: 70px;
    }

    /* Adjust year font size */
    .timeline-year {
        font-size: 18px; /* Slightly smaller on mobile */
    }

    /* Adjust content alignment */
    .timeline-left .timeline-content,
    .timeline-right .timeline-content {
        text-align: left;
        padding-left: 90px; /* Ensure proper spacing */
        padding-right: 10px;
        max-width: calc(100% - 100px);
    }
}

/* WHO WE ARE SECTION */
.who-we-are-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.who-we-are-container {
    max-width: 1250px;
    margin: 0 auto;
}

.who-we-are-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.who-we-are-text {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    text-align: justify;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .who-we-are-title {
        font-size: 20px;
        text-align: center;
    }
    
    .who-we-are-text {
        font-size: 13px;
    }
}

/* WHAT MAKES US DIFFERENT SECTION */
.difference-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    background-color: white;
}

.difference-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

/* IMAGE */
.difference-image {
    text-align: center;
    margin-bottom: 30px;
}

.difference-image img {
    width: 100%;
    max-width: 1200px;
    height: auto;
}

/* SECTION TITLE */
.difference-title {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: left;
}

/* DIFFERENCE ITEM */
.difference-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

/* NUMBER STYLING */
.difference-number {
    font-size: 40px;
    font-weight: bold;
    color: #C99509;
    margin-right: 15px;
}

/* HEADING */
.difference-heading {
    font-size: 18px;
    font-weight: bold;
    color: #C99509;
}

/* BODY TEXT */
.difference-text {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    text-align: justify;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .difference-container {
        max-width: 95%;
    }

    .difference-title {
        font-size: 20px;
        text-align: center;
    }

    .difference-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .difference-number {
        font-size: 36px;
        margin-bottom: 5px;
    }

    .difference-heading {
        font-size: 16px;
    }

    .difference-text {
        font-size: 13px;
    }
}


/* BECOMING A VOLUNTEER SECTION */
.volunteer-steps-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    background-color: white;
}

.volunteer-steps-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

/* SECTION TITLE */
.volunteer-steps-title {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* DESCRIPTION TEXT */
.volunteer-steps-description {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: justify;
}

/* VOLUNTEER STEPS */
.volunteer-steps-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

/* NUMBER STYLING */
.volunteer-steps-number {
    font-size: 64px; /* Larger for better emphasis */
    font-weight: bold;
    font-family: 'Roboto Slab', serif;
    color: #14b8a6;
    margin-right: 15px;
}

/* HEADING */
.volunteer-steps-heading {
    font-size: 28px; /* Increased heading size */
    font-weight: bold;
    font-family: 'Roboto Slab', serif;
    color: #14b8a6;
}


/* BODY TEXT */
.volunteer-steps-text {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    text-align: justify;
}

.volunteer-steps-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}
.volunteer-steps-arrow svg {
    width: 50px;
    height: 50px;
}


/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .volunteer-steps-container {
        max-width: 95%;
    }

    .volunteer-steps-title {
        font-size: 20px;
        text-align: center;
    }

    .volunteer-steps-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .volunteer-steps-number {
        font-size: 36px;
        margin-bottom: 5px;
    }

    .volunteer-steps-heading {
        font-size: 16px;
    }

    .volunteer-steps-text {
        font-size: 13px;
    }

    .volunteer-steps-arrow {
        font-size: 26px;
        text-align: center;
    }
}


/* BENEFITS OF VOLUNTEERING SECTION */
.volunteer-benefits-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    background: white;
    text-align: center;
  
    
}

.volunteer-benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    border: 2px solid #009A7A;
}

.volunteer-benefits-title {
    font-size: 22px;
    font-weight: bold;
    color: #121111;
    text-transform: uppercase;
    margin-bottom: 90px;
    text-align: left;
    margin-left: 20px;  /* moves it to the right */
    margin-top: 20px;   /* moves it down */
}


/* BENEFITS GRID */
.volunteer-benefits-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, #009A7A, #007F9E);
    padding: 60px 30px;
    
}

/* BENEFIT ITEM */
.volunteer-benefit-item {
    text-align: center;
    flex: 1;
    padding: 20px;
    margin-top: -130px;
}

/* BENEFIT ICON */
.volunteer-benefit-icon {
    background: #fff;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    border:3px solid #009A7A;
}

.volunteer-benefit-icon img {
    width: 100px;
    height: 100px;
    
}
/* BENEFIT HEADING */
.volunteer-benefit-heading {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    color: white;


}

/* BENEFIT TEXT */
.volunteer-benefit-text {
    font-size: 14px;
    color: white;
    line-height: 1.6;
    max-width: 300px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .volunteer-benefits-grid {
        flex-direction: column;
        padding: 40px 20px;
    }

    .volunteer-benefit-item {
        margin-bottom: 5px;
        margin-top: 5px; /* Push items (icons/images) downward */
    }

    .volunteer-benefit-icon {
        margin-top: 5px; /* Add extra space between heading and icon */
    }
}



/* VOLUNTEER FORM SECTION */
.volunteer-form-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    text-align: center;
}

.volunteer-form-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* SECTION TITLE */
.volunteer-form-title {
    font-size: 22px;
    font-weight: bold;
    color: #121111;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: left;
}

/* FORM BOX */
.volunteer-form-box {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 90px 90px; /* Increased top & bottom padding */
    border: 1px solid #ddd;
}

.volunteer-form-text {
    font-size: 16px;
    color: #121111;
    font-weight: 300; /* Lighter text */
    line-height: 1.6;
    margin-bottom: 50px;
}


/* BUTTON CONTAINER */
.volunteer-form-button-container {
    position: relative;
    display: inline-block;
}

.volunteer-form-button {
    display: inline-block;
    background: linear-gradient(to bottom, #009A7A, #007F9E);
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    padding: 16px 30px;
    min-width: 300px; /* Set a wider base width */
    text-align: center;
    border-radius: 6px;
    text-decoration: none;
    font-size: 18px;
    transition: background 0.3s ease;
}

.volunteer-form-button:hover {
    background-color: #009A7A;
}


/* BADGE (CIRCULAR A ICON) */
.volunteer-form-badge {
    position: absolute;
    top: -10px;
    right: -15px;
    background: #ffc107;
    color: black;
    font-weight: bold;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .volunteer-form-box {
        padding: 20px;
    }

    .volunteer-form-text {
        font-size: 14px;
    }

    .volunteer-form-button {
        font-size: 14px;
        padding: 10px 20px;
    }

    .volunteer-form-badge {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
}





/* TESTIMONIALS SECTION */
.testimonials-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    text-align: center;
}

/* TITLE */
.testimonials-title {
    font-size: 22px;
    font-weight: bold;
    color: #121111;
    text-transform: uppercase;
    margin-bottom: 30px;
}

/* TESTIMONIAL CONTAINER */
.testimonials-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* TESTIMONIAL BOX */
.testimonial-box {
    background: linear-gradient(to bottom, #009A7A, #007F9E);
    padding: 30px;
    color: #FFFFFF;
    font-size: 16px;
    line-height: 1.6;
    max-width: 700px;
    text-align: left;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: 250px;
}

/* LEFT-ALIGNED TESTIMONIAL */
.left-align {
    align-self: flex-start;
    text-align: center;
    margin-top: 50px;
    color: #FFFFFF;
}


/* RIGHT-ALIGNED TESTIMONIAL */
.right-align {
    align-self: flex-end;
    text-align: center;
    color: #FFFFFF;
}

.testimonial-text{
    text-align: center;
    margin-top: 30px;
}
@media (max-width: 768px) {
    .testimonial-box {
        font-size: 14px;
        padding: 30px 20px;
        max-width: 100%;
        align-self: center;
        height: auto; /* Allow the box to grow with the content */
        box-sizing: border-box;
    }

    .left-align,
    .right-align {
        align-self: center;
    }

    .testimonial-quote {
        left: 10px;
        top: 10px;
        font-size: 36px;
    }

    .testimonial-quote-right {
        right: 10px;
        bottom: 10px;
        font-size: 36px;
    }
}



/* LEFT QUOTE */
.testimonial-quote {
    font-size: 50px;
    color: white;
    position: absolute;
    top: 15px;
    left: 4px; /* Moved further left */
}

/* RIGHT QUOTE */
.testimonial-quote-right {
    font-size: 50px;
    color: white;
    position: absolute;
    bottom: -15px; /* Moved further down */
    right: 8px; /* Moved further to the right */
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .testimonial-quote-left {
        left: 0; /* Reset for small screens */
    }

    .testimonial-quote-right {
        right: 0; /* Reset for small screens */
        bottom: 0;
    }
}


/* Responsive Image Section */
.responsive-image-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.image-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.image-container img {
    max-width: 100%;
    height: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .responsive-image-section {
        padding: 10px;
    }
}


