@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");


/*=============== BASE ===============*/
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    font-family: "Poppins", sans-serif;
    font-size: .938rem;
    background-color: hsl(220, 100%, 99%);
    color: hsl(220, 12%, 45%);
}

html {
    scroll-behavior: smooth;
}

.just_space {
    height: 90px;
}

h1,
h2,
h3 {
    font-size: 1.8rem;
    font-weight: 500;
    color: #0c3a48;
    font-family: "Poppins", sans-serif;
    margin-bottom: 20px;
}

p {
    font-size: .99rem;
    color: #0a222d;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    line-height: 1.5;
}

.hero_section {
    position: relative;
    background: url('Images/drop_image.webp') center/cover no-repeat;
    height: 80vh;
    color: white;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.hero-content {
    position: absolute;
    z-index: 2;
    width: min(550px, 80%);
    top: 50%;
    transform: translateY(-50%);
    padding: 0 20px;
    left: 20px;
}

.hero-content h1 {
    margin-bottom: 0.8rem;
    font-weight: bold;
    font-size: 1.8rem;
    color: #fff;
}

.hero-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #f0f0f0;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 0.9rem 1.6rem;
    border-radius: 12px;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
    background-color: #207c83;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
}

.alt {
    background-color: transparent;
    border: 1px solid #207c83;
}

.hero-btn:hover {
    border: 0px;
    background: #55b39f;
    transform: translateY(-2px);
}

@media screen and (max-width: 900px) {
    .just_space {
        height: 60px;
    }
}

/* HomePage About */
.about {
    margin: 80px 2px;
}

.inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #eeeeee3b;
    border-radius: 15px;
    overflow: hidden;
}

.fas {
    flex-basis: 45%;
    width: 100%;
    padding: 20px;
}

.fas h2 {}

.sec {
    flex-basis: 54%;
    width: 100%;
    display: flex;
}

.sec img {
    width: 100%;
    object-fit: cover;
    flex-grow: 1;
}

@media screen and (max-width: 830px) {
    .inner {
        flex-direction: column;
    }

    .fas,
    .sec {
        flex-basis: 100%;
    }

    .sec {
        margin-top: 20px;
    }

    .sec img {
        max-height: 40vh;
        object-position: center;
    }
}

/* Focus Areas */
.focus {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.areas {
    border-radius: 12px;
    overflow: hidden;
    background-color: #e5ebebbd;
    transition: background-color 0.4s ease;
    position: relative;
}

.areas img {
    width: 100%;
    height: 30vh;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.areas .areas_content {
    padding: 10px 15px;
    margin-bottom: 20px;
}

.areas_content p {
    margin-bottom: 30px;
}

.areas_content .learn_more_btn {
    background: #207c83;
    color: white;
    padding: 10px 32px;
    border-radius: 32px;
    display: inline-block;
    text-decoration: none;
    transition: background-color 0.4s ease, transform 0.3s ease;
}

.areas:hover {
    background-color: #207c83;
}

.areas:hover img {
    transform: scale(1.1);
}

.areas:hover .areas_content h2 {
    color: #f0f0f0;
    transition: color 0.4s ease;
}

.areas:hover .areas_content p {
    color: #f0f0f0;
    transition: color 0.4s ease;
}

.areas:hover .learn_more_btn {
    background: #55b39f;
    transform: translateY(-2px);
}

/* Impacts */
.impacts {
    background-color: #eff4f5;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.4s ease-in-out;
}

.impacts img {
    height: 90px;
    width: 90px;
}

.impacts:hover {
    transform: translateX(-10px);
    transform: translateY(-10px);
    box-shadow: 4px 4px 8px #000000d2;
}

/* Testimonials */
.container.testitesti {
    position: relative;
}

.testmonials {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 200px;
}

.testimonial {
    display: none;
    align-items: center;
    gap: 20px;
    transition: opacity 0.4s ease-in-out;
}

.testimonial.active {
    display: flex;
}

.testmonials .image_side {
    flex-basis: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image_side img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

.testmonials .word_side {
    flex-basis: 70%;
    margin-top: 20px;
}

.testimonial .word_side p {
    width: min(500px, 100%);
}

.next_prev {
    position: absolute;
    bottom: 20px;
    right: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.next_prev i {
    margin-right: 10px;
    font-size: 1.6rem;
    height: 48px;
    width: 48px;
    border-radius: 50%;
    color: #fff;
    background: #207c83;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}

.next_prev i:hover {
    background: #0a222d;
}

@media (max-width: 680px) {
    .testmonials {
        height: auto;
        padding: 20px;
        text-align: center;
        flex-direction: column;
    }

    .testimonial {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .testmonials .image_side {
        flex-basis: auto;
        margin-bottom: 15px;
    }

    .image_side img {
        width: 100px;
        height: 100px;
    }

    .testmonials .word_side {
        flex-basis: auto;
        margin-top: 10px;
        padding: 0 10px;
    }

    .next_prev {
        position: static;
        margin-top: 20px;
        justify-content: center;
    }

    .next_prev i {
        margin: 0 10px;
        font-size: 1.6rem;
        height: 46px;
        width: 46px;
    }
}

/* Get Involved */
.involve {
    width: 100%;
    /* border: .98px solid #5e5e5ee0; */
    border-radius: 12px;
    overflow: hidden;
}

.involve img {
    width: 100%;
    height: 27vh;
    object-fit: cover;
    object-position: center;
    margin-bottom: 5px;
}

.involve a,
.donat {
    width: 100%;
}

.donat {
    padding: 6px 32px;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    background-color: #207c83;
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    transition: all .4s ease-in-out;
}

.donat p {
    color: #fff;
}

.donat i {
    font-size: 1.1rem;
    color: #fff;
    margin-left: 15px;
    transition: all .4s ease-in-out;
}

.donat:hover {
    background-color: #0c4246;
}

.donat:hover .zaizai {
    margin-left: 18px;
}

/* NewsLetter Sign-Up */
.newsletter-section {
    background: #eeeeee3b;
    padding: 80px 0;
    text-align: center;
}

.newsletter-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

#newsletterForm {
    display: inline-flex;
    align-items: center;
    max-width: 400px;
    width: 100%;
}

#newsletterForm input {
    flex: 1;
    padding: 18px 1rem;
    font-size: 1rem;
    border: none;
    border-radius: 1px 0 0 1px;
    background: #0e162c;
    color: #eaf0ff;
}

#newsletterForm button {
    padding: 18px 1.2rem;
    font-size: 1rem;
    color: #e9eaf0;
    background: #207c83;
    border: none;
    border-radius: 0 1px 1px 0;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

#newsletterForm button:hover {
    background: #14595e;
}

.sepp {
    height: 2px;
    background-color: #55b39f;
}

/* Footer */
.footer-section {
    background: #eeeeee3b;
    padding: 80px 0;
}

.footer_sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
}

.fss {
    display: flex;
    flex-direction: column;
}

.email_us {
    width: 100%;
    margin-top: 20px;
    background-color: #0e162c;
    padding: 12px 32px;
    text-align: center;
}

.email_us p {
    color: #fff;
}

.fss .call {
    margin-top: 20px;
}

.footer-section a {
    color: #0a222d;
}

.footer_links a {
    margin-bottom: 20px;
}

.footer_logo img {
    width: 190px;
    height: auto;
    margin-bottom: 20px;
}

.socs_copyright {
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid #207c833f;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.socs a {
    font-size: 1.2rem;
    margin-right: 10px;
}

@media screen and (max-width: 450px) {
    #newsletterForm {
        flex-direction: column;
    }

    #newsletterForm button {
        margin-top: 25px;
    }

    .socs_copyright {
        flex-direction: column;
        align-items: start;
    }

    .socs {
        margin-bottom: 20px;
    }
}


/*=============== About Us ===============*/
.about_hero {
    position: relative;
    max-height: max-content;
    overflow-x: hidden;
}

.about_hero img {
    position: relative;
    width: 100vw;
    min-height: 30vh;
    /* object-fit: cover; */
    object-position: center;
}

.about_hero h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.9rem;
    font-weight: bolder;
    background:
        radial-gradient(circle, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0) 100%),
        linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.377) 50%, rgba(0, 0, 0, 0) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.377) 50%, rgba(0, 0, 0, 0) 100%);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    margin: 10px;
}

.fromfrom {
    overflow: visible;
    position: relative;
}

.where_from {
    position: relative;
    z-index: 1;
    margin-top: -40px;
    padding: 10px 15px;
}

.where_from a {
    color: #0a222d;
    text-decoration: none;
}

@media screen and (max-width: 520px) {}

@media screen and (max-width: 480px) {
    .where_from {
        margin-top: -10px;
    }

    .about_hero h1 {
        width: min(220px, 80%);
        margin: 2px;
        text-align: center;
    }
}

@media screen and (max-width: 330px) {
    .about_hero h1 {
        background: none;
    }
}

/* Glance */
.shata {
    display: flex;
    align-items: center;
    justify-content: center;
}

.craka {
    width: min(550px, 95%);
    padding: 2px;
}

/* History */
.history {
    padding: 60px 20px;
    /* background: #f9fafa; */
    position: relative;
}

.section-title {
    text-align: center;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: auto;
    padding: 0 20px;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: #207c83;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-item {
    padding: 20px;
    position: relative;
    width: 50%;
    z-index: 2;
}

.timeline-item .content {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #55b39f;
}

.timeline-item h3 {
    color: #0c4246;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.timeline-item p {
    color: #333;
    line-height: 1.5;
}

.timeline-item.left {
    left: 0;
    text-align: right;
}

.timeline-item.right {
    left: 50%;
}

.timeline-item.left .content {
    border-left: none;
    border-right: 4px solid #55b39f;
}

@media screen and (max-width: 768px) {
    .history {
        padding: 60px 2px;
    }

    .timeline::after {
        left: 2px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 1px;
        padding-right: 0;
        text-align: left;
        margin-bottom: 20px;
    }

    .timeline-item.right {
        left: 0;
    }

    .timeline-item.left .content,
    .timeline-item.right .content {
        border-right: none;
        border-left: 4px solid #55b39f;
    }
}

/* Founder */
.founder {
    background-color: #edf1f0d2;
    border-radius: 0 20px 0 0;
}

.wawiliwawili {
    display: flex;
    padding: 80px 2px;
}

.wantam {
    flex-basis: 28%;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 0 8px;
}

.wantam .bolden {
    width: 100%;
    border-radius: 32px 32px 0 0;
    height: max-content;
}

.wantam .always-there {
    width: 100%;
    height: auto;
    margin-top: 40px;
}

.tumekataa {
    flex-basis: 69%;
    width: 100%;
    padding: 0 40px;
}

.tumekataa h1 span {
    font-weight: bolder;
    font-size: 1.3rem;
}

.more-text {
    display: none;
}

#readMoreBtn {
    text-decoration: none;
    color: #55b39f;
    font-weight: bold;
    transition: all 0.4s ease-in-out;
}

#readMoreBtn:hover {
    text-decoration: underline;
}

@media screen and (max-width: 820px) {
    .tumekataa h2 {
        font-size: 0.99rem;
    }
}

@media screen and (max-width: 700px) {
    .wawiliwawili {
        flex-direction: column;
        padding: 60px 10px;
    }

    .always-there {
        display: none;
    }

    .wantam,
    .tumekataa {
        flex-basis: 100%;
    }

    .tumekataa {
        margin-top: 40px;
        padding: 2px;
    }
}

/* Mission Vision */
.vismis {
    padding: 90px 0px;
}

.ours {
    padding: 20px;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
}

.ours img {
    height: 100px;
    width: max-content;
    margin-bottom: 30px;
}

.mission {
    border-right: 1px solid #888888b0;
}

@media screen and (max-width: 640px) {
    .mission {
        border-right: none;
    }
}

.cornernzuri {
    flex-basis: 54%;
    width: 100%;
    padding: 20px;
}

.cornermbaya {
    flex-basis: 45%;
    width: 100%;
    display: flex;
    height: 100%;
}

.cornermbaya img {
    width: 100%;
    height: max-content;
    object-fit: cover;
    flex-grow: 1;
}

@media screen and (max-width: 830px) {

    .cornernzuri,
    .cornermbaya {
        flex-basis: 100%;
    }

    .cornermbaya {
        margin-top: 20px;
    }

    .cornermbaya img {
        max-height: 40vh;
        object-position: center;
    }
}

/* CTA */
.lure {
    background-color: #fff;
    padding: 90px 2px;
}

.spij {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.spij h1 {
    margin-bottom: 37px;
}

.spij a {
    padding: 10px 32px;
    margin: 2px;
    background: #0a222d;
    color: #fff;
    transition: all .4s ease-in-out;
}

#songi {
    transition: all .4s ease-in-out;
}

.spij a:hover {
    background: #207c83;
}

.spij a:hover #songi {
    transform: translateX(6px);
}


/* Cards */
.haha {
    padding: 20px 10px;
}

.our_content {
    padding: 10px;
}

.katii .our_content {
    border-left: 1px solid #888888b0;
    border-right: 1px solid #888888b0;
}

.our_content p {
    margin-bottom: 20px;
}

.our_content a {
    padding: 10px 30px;
    background-color: #0a222d;
    color: #fff;
}

@media screen and (max-width: 940px) {
    .katii .our_content {
        border-right: none;
    }
}

@media screen and (max-width: 642px) {
    .katii .our_content {
        border-left: none;
    }

    .our_content {
        padding-bottom: 25px;
    }
}


/*=============== Our Approach ===============*/
.vintu {
    display: flex;
}

.vintua {
    flex-basis: 50%;
    width: 100%;
}

.vintuba {
    flex-basis: 30%;
    width: 100%;
    margin-left: 170px;
}

.vintua img {
    width: 100%;
    height: 40vh;
    margin: 25px 10px;
    border-radius: 12px;
    object-fit: cover;
    object-position: top center;
}

.vintua p span {
    font-weight: 600;
    color: #009d85;
}

.vintua .the_process {
    margin-top: 30px;
    margin-bottom: 15px;
}

.vintuba h1 {
    margin-left: 30px;
}

.tupo a {
    color: #0a222d;
    font-weight: bolder;
    font-size: 1.1rem;
}

.tupo a i {
    margin-right: 11px;
}

.hatupo a {
    color: #0a222d77;
    font-weight: bolder;
    font-size: 1.1rem;
    margin-left: 30px;
}

@media screen and (max-width: 680px) {
    .vintu {
        flex-direction: column;
    }

    .vintuba {
        margin-left: 2px;
        margin-top: 40px;
    }
}


/*=============== Governance ===============*/
.govern{
    display: flex;
    justify-content: space-between;
}
.gavana{
    flex-basis: 48%;
    width: 100%;
    padding: 10px;
}
.fatoni{
    margin-top: 35px;
    margin-bottom: 25px;
}
.fatoni a{
    padding: 12px 46px;
    color: #fff;
    background-color: #0a222d;
    transition: all .4s ease-in-out;
}
.fatoni a:hover{
    background-color: #14595e;
}

@media screen and (max-width: 600px) {
    .govern {
        flex-direction: column;
    }
    .gavana{
        flex-basis: 100%;
        border-top: 1px solid #207c833f;
    }
}



/*=============== Our Works ===============*/
.itabidi_sasa{
    margin-top: 40px;
}

/*=============== Get Involved ===============*/
.get-involved-form {
  background: #f5f6f8;
  padding: 25px;
  border-radius: 12px;
  max-width: 600px;
  margin: 80px auto;
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.08);
}

.get-involved-form h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #0c3a48;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  color: #0c4246;
  font-weight: 600;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #207c83;
  outline: none;
}

.submit-btn {
  width: 100%;
  background: #207c83;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #55b39f;
}

@media screen and (max-width: 680px) {
  .get-involved-form {
    padding: 20px;
  }

  .submit-btn {
    font-size: 1rem;
  }
}



/*=============== Contact Us ===============*/
.contact_split{
    display: flex;
    justify-content: space-between;
}
.splitwan {
    padding: 2px;
    flex-basis: 56%;
    width: 100%;
}
.splitwan .press{
    margin-bottom: 30px;
}
.splitwan .press a{
    text-decoration: underline;
}
.splittu{
    padding: 2px;
    flex-basis: 35%;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.tututu{
    border-left: 1px solid #888888b0;
    border-right: 1px solid #888888b0;
    border-bottom: 1px solid #888888b0;
}

.mida{
    padding: 20px;
    border-top: 1px solid #888888b0;
    display: flex;
    align-items: center;
}
.mida i {
    margin-right: 25px;
    color: #009d85;
}
.mida a {
    text-decoration: underline;
}
.topos{
    border-top: 5px solid #009d85;
}
.topos h1{
    margin: 1px;
}
.splittu .grudum{
    margin-top: 25px;
}

@media screen and (max-width: 770px) {
    .contact_split{
        flex-direction: column;
    }
    .splittu{
        margin-top: 40px;
    }
}