:root {
    --primary-green: #2e7d32;
    --light-green: #4caf50;
    --dark-green: #1b5e20;
    --accent-color: #8bc34a;
    --text-light: #f5f5f5;
    --text-dark: #333;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0px 0 !important;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-green) !important;
    font-size: 1.8rem;
}

.nav-link {
    color: var(--dark-green) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--light-green) !important;
}

.hero-section {
    padding: 86px 0 0 0;
    text-align: center;
}
.hero-section .hero_content{
    background: var(--primary-green);
    padding: 68px 20px;
    color: #fff;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.btn-primary {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    padding: 12px 20px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--dark-green);
    border-color: var(--dark-green);
    transform: translateY(-3px);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark-green);
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    margin: 15px auto;
}

.about-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.about-img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-box {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 25px 20px;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    color: #FFC021;
    margin-bottom: 20px;
}

.process-section {
    padding: 100px 0;
}
.process-section.donate-section h2{
    color: #FFC021;
}

.process-step {
    text-align: center;
    padding: 20px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.gallery-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(46, 125, 50, 0.8);
    color: white;
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.stats-section {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url('https://images.unsplash.com/photo-1542601906990-b4d3fb778b09?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2074&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.breadcrum_sec {
    padding: 100px 0 0px 0;
    background: #0d2808;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('../img/page-header.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}
.breadcrum_sec ul{
    list-style: none;
   padding: 0;

}
.breadcrum_sec ul li{
    color: #fff;
    padding: 0 10px;
    font-weight: 600;
    margin: 0;
    display: inline-block;
    /*background: #2e7d32;*/
}.breadcrum_sec ul li a{
    color: #fff;
    font-weight: 600;
    text-decoration: none;
 }


.contact-section {
    padding: 100px 0;
}

.form-container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-color));
}

.form-control {
    padding: 8px 15px;
    border: 1px solid hsla(125, 95%, 29%, 0.719);
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.form-control:focus {
    border-color: var(--primary-green);
    box-shadow: none;
     /* border-radius: 8px; */
}

.form-label {
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 8px;
}

.form-icon {
    position: absolute;
    left: -7px;
    top: 27%;
    transform: translateY(-33%);
    color: #fff;
    z-index: 9;
    background: var(--primary-green);
    padding: 8px 15px;
     border-radius: 8px;
}

.input-group {
    position: relative;
}

.input-group .form-control {
    padding-left: 54px;
}

footer {
    background-color: var(--dark-green);
    color: white;
    padding: 70px 0 20px;
}

.footer-links h5 {
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    color: white;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
    color: #aaa;
}

/* New Sections */
.programs-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #e8f5e9 100%);
}

.program-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.program-img {
    height: 200px;
    overflow: hidden;
}

.program-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.program-card:hover .program-img img {
    transform: scale(1.1);
}

.program-content {
    padding: 25px;
}

.program-content h4 {
    color: var(--dark-green);
    margin-bottom: 15px;
}

.testimonials-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    margin: 15px;
    position: relative;
}

.testimonial-card:before {
    content: "";
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 5rem;
    color: rgba(46, 125, 50, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h5 {
    margin: 0;
    color: var(--dark-green);
}

.author-info p {
    margin: 0;
    color: #777;
    font-size: 0.9rem;
}

.events-section {
    padding: 60px 0;
}

.event-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.event-date {
    background: var(--primary-green);
    color: white;
    padding: 15px;
    text-align: center;
    width: 80px;
    border-radius: 10px;
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1;
}

.event-date .day {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.event-date .month {
    font-size: 0.9rem;
    text-transform: uppercase;
}

.event-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-content {
    padding: 10px 16px 5px 16px;
}

.event-content h4 {
    color: var(--dark-green);
    margin-bottom: 10px;
}

.event-meta {
    display: flex;
    margin-bottom: 15px;
    color: #777;
    font-size: 0.9rem;
}

.event-meta span {
    margin-right: 15px;
}

.event-meta i {
    margin-right: 5px;
    color: var(--primary-green);
}
.event-content p{
    text-align: justify;
    hypens:auto;
}

.donate-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: white;
    text-align: center;
}

.donate-options {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 40px 0;
}

.donate-option {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 25px 20px;
    width: 180px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.donate-option:hover, .donate-option.active {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: translateY(-5px);
}

.donate-amount {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.donate-text {
    font-size: 0.9rem;
    opacity: 0.9;
}
img{
    max-width: 100%;
}

.custom-amount {
    max-width: 300px;
    margin: 0 auto;
}
.gall-img img{
    height: 150px;
    width: 100%;
    object-fit: cover;
}
.btn_light{
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 600;
}
.about-section p{
    text-align: justify;
    hypens:auto;
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    .donate-option {
        width: 140px;
    }
    .navbar-brand img{
        height: 60px;
    }
    .navbar-collapse{
        height: 100vh;
    }
    .contt_link{
        margin-top: 30px;
    }
    .gall-img img{
        height: 80px;

    }
    .events-section {
        padding: 30px 0;
    }
    .btn-primary, .btn_light{
        padding: 8px 20px;
    }
    .contact-section, .about-section, .events-section, .process-section{
        padding: 30px 0;
    }
    .process-step {
    margin-bottom: 45px;
    }
    .form-container{
        padding: 25px 20px;
    }

}
.contact_sec ul{
   list-style: none;
    background: #f3f3f3;
    padding: 20px;
    border-radius: 10px;

}
.contact_sec ul li{
    font-weight: 600;
    color: #000;
    margin-bottom: 25px;
    box-shadow: 0 0 2px rgba(0,0,0,0.2);
    padding: 20px;
    font-size: 19px;
     border-radius: 10px;
    background: #fff;
}
.contact_sec ul li strong, .contact_sec ul li p{
    display: block;
    padding-left: 25px;
    font-size: 16px;
    color: var(--primary-green);
}
.contact_sec ul li strong a{
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    color: var(--primary-green);
}
.process-step{
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
    border-radius: 10px;
    transition: 0.4s all;
}
.step-number{
    margin-top: -52px;
    transition: 0.4s all;
}
.process-step h4{
    color: #0d2808;
    font-weight: 600;
    transition: 0.4s all;
}
.process-step:hover {
    background: var(--primary-green);
}
.process-step:hover  h4{
    color: #fff;
}
.process-step:hover .step-number{
    rotate: 360deg;
    background: #fff;
    color: #0d2808;
    border: 1px solid #dddd
}
.btn_theme{
    background: #b5e037 !important;
    color: #000;
}
.btn_theme:hover {
 color: #000000;
}


input[type="file"]{
    padding-left: 8px !important;
}

.event-card a{
    text-decoration: none !important;
}
.event_content{
    border-top: 1px solid hsla(0, 0%, 51%, 0.27);
    color: var(--primary-green);
    font-weight: 600;
    padding: 10px 5px 10px 5px ;
    text-align: center;
}
.gall_card{
    border: 1px solid hsla(0, 0%, 51%, 0.27);
}
.team_info h5{
    font-size: 13px;
    color: #2e7d32;
    display: flex;
    justify-content: start;
    gap: 8px;
}
.team_info p{
    border-top: 1px solid rgba(12, 12, 12, 0.3);
    margin-top: 12px;
    padding-top: 5px;
    font-size: 12px;
    padding-bottom: 0;
    margin-bottom: 0;
}
.team_info span{
    font-size: 14px;
    color: black;
    min-width: 110px;
}
.team-img  img{
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.vacancy_sec .process-step{
    padding: 25px 10px;
     border: 1px solid hsla(0, 0%, 51%, 0.432);
     box-shadow: none;
}
.vacancy_sec .process-step:hover span{
  color: #fff;
}
.vacancy_sec .process-step h4{
    font-size: 20px;
}

.fix-icon {
    display: inline-block;
    position: fixed;
    bottom: 100px;
    left: 20px;
    z-index: 999999;
  }
  #fix-icon {
    -webkit-animation-duration: 2.5s;
    animation-duration: 2.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
  }
  .fix-icon-item {
    animation: bounce 1s infinite alternate;
    animation-duration: 1s;
    -webkit-animation: bounce 1s infinite alternate;
        animation-duration: 1s;
        animation-timing-function: ease;
        animation-iteration-count: infinite;
        animation-fill-mode: none;
  }
  .fix-icon-item img {
    width: 55px !important;
  height: 55px !important;
    background: #ce0000;
    border-radius: 50%;
    text-align: center;
    cursor: pointer;
    padding: 10px;
  }
  .fix-icon-whataap {
    display: inline-block;
    position: fixed;
    bottom: 30px;
    left: 20px;
    z-index: 999999;
    transition: all0.5s ease-in-out;
  }
  .fix-icon-whataap-item img {
    border-radius: 50%;
    box-shadow: 1px 1px 4px 
  rgba(60, 60, 60, .4);
  transition: box-shadow .2s;
  cursor: pointer;
  overflow: hidden;
  width: 55px !important;
  height: 55px !important;
  background:
    #25d366 !important;
  }



@media (max-width: 768px) {
    .team-img  img{
        width: 100%;
        height: 260px;
        object-fit: cover;
    }
    .team_info {
        padding: 20px 20px !important;

    }

}

