@charset "utf-8";
/* CSS Document */
/** {
    margin:0;
    padding:0;
    border:0;
}*/

*{
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
}
.header{
    min-height: 30vh;
    width: 100%;
    background-image: linear-gradient(to bottom, white 30%, #469f6c 70%);
    background-position: center;
    background-size: cover;
    position: relative;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 5%;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height:90px !important;
    min-height: 60px;
}



.main-nav {
    margin-left: -30px !important;
    margin-top: 18px !important;
    font-size: larger;
    display: flex;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: #2d3748;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.5rem 0.8rem;
    white-space: nowrap;
}

.main-nav a:hover {
    color: #58C568 !important;
}


.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 4px;
    min-width: 180px;
    padding: 0.5rem 0;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}


.search-form {
    width: 300px; 
    height: 30px; 
    margin-top: 23px;
    margin-left: 380px;
    display: flex;
    align-items: center;
    background: #eaeaf3;
    border-radius: 6px;
    overflow: hidden; 
}

.search-input {
    width: 240px !important; 
    height: 100% !important; 
    border: none;
    padding: 0 15px;
    font-size: 14px;
    background: #e3e3ea !important;
    transition: all 0.3s ease;
}

.search-input:focus {
    width: 240px !important;
    outline: none;
    background: rgba(255, 255, 255, 0.9);
}

.search-button {
    width: 60px !important; 
    height: 100% !important; 
    background: #58C568;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-button {
    background: #58C568;
    color: white !important;
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #21754e;
}

.mobile-menu, .close-menu {
    display: none;
    font-size: 1.5rem;
    color: #2d3748;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu {
    display: none !important;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 1000;
    background: none !important;
    border: none;
    padding: 8px;
    cursor: pointer;
    box-shadow: none !important;
}

.mobile-menu .fa-bars {
    display: block;
    position: relative;
    width: 28px;
    height: 20px;
}

.mobile-menu .fa-bars::before {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #184228;
    transition: all 0.3s ease;
}

.mobile-menu .fa-bars::before {
    top: 0;
    box-shadow: 0 8px 0 #184228, 0 16px 0 #184228;
}

.close-menu {
    display: none;
    position: fixed;
    right: 25px;
    top: 25px;
    z-index: 1002;
    background: transparent !important;
    border: none !important;
    padding: 10px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    box-shadow: none !important;
}

.close-menu::before,
.close-menu::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 24px;
    height: 2px;
    background: #184228;
    transition: all 0.3s ease;
}

.close-menu::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.close-menu::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}


.close-menu:hover::before,
.close-menu:hover::after {
    background: #58C568;
    width: 28px;
}



.close-menu .fa-times {
    display: block;
    position: relative;
    width: 28px;
    height: 28px;
}

.close-menu .fa-times::before,
.close-menu .fa-times::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #184228;
    top: 50%;
}

.close-menu .fa-times::before {
    transform: rotate(45deg);
}
.close-menu .fa-times::after {
    transform: rotate(-45deg);
}

.close-menu.show {
    display: block;
}

.mobile-menu.hide {
    display: none;
}




nav img{
    width: 240px;

}

.search-input, .search-button {
    padding: 10px;
    font-size: 17px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #2d3748;
    outline: none;
  }
  
  .search-input {
    flex-grow: 1;
    border-radius: 10px 0 0 10px;
  }
  
  .search-button {
    border-radius: 0 10px 10px 0;
    background: #58C568;
    cursor: pointer;
    transition: 0.5s;
    height: 30px;
    width: 25;
  }
  
  .search-button:hover {
    background: #21754e;
  }

.nav-links{
    flex: 1;
    text-align: right;

}
.nav-links ul li{
    list-style: none;
    display:inline-block;
    padding: 8px 12px;
    position: relative;

}
.nav-links ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    text-transform: uppercase;


}
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #58C568;
    display: block;
    margin: auto;
    transition: 0.3s;

}
.nav-links ul li:hover::after{
    width: 100%;
}

.text-box{
    width: 90%;
    color: #fff38c;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;

}    
.text-box h1 {
    font-size: 40px !important;
    color: #ffffff;  
   
    transition: font-size 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

 
.text-box p{
    margin: 10px 0 40px;
    font-size: 20px;
    color: #fff;
    transition: font-size 0.3s cubic-bezier(0.33, 1, 0.68, 1);
  
}
.hero-btn{
    font-size: 18px !important;
    display: inline-block;
    text-decoration: none;
    color: #0ac135;
    border: 2px solid #3b8237;
    padding: 12px 34px;
    font-size: 13px;
    background: white;
    position: relative;
    cursor: pointer;
    margin-right: 35px;
   

}

.hero-btn:last-child {
    margin-right: 10px;
}

.hero-btn:hover{
    border: 1px solid #21754e;
    background: #21754e;
    transition: 0.5s;
}

nav .fa{
    display: none;
}
#skip-links{
    width: 100%;
    background-color: black;
}
#skip-links a{
    color: white;}


@media(max-width: 700px){
    .mobile-menu {
        display: block !important;
    }
    .nav{
        height: 90px;
    }
    .text-box h1{
        font-size: 50px;
    }

    .text-box p{
        font-size: 15px;
    }
    .nav-links ul li{
        display: block;
    }
    .nav-links{
        position: fixed;
        background: #21754e;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 0.5s;


    }
    nav .fa{
        display: block;
        color: #fff;
        margin: 10px;
        font-size:22px;
        cursor:pointer;

    }
    .nav-links ul{
        padding: 30px;
    }

    .search-form{
        padding: 15px;

    }

    .search-form {
        width: 260px !important; 
        margin-left: auto; 
    }
    
    .nav-right {
        flex-grow: 1;
        justify-content: flex-end;
    }
    .search-input {
        flex-grow: 1;
        border-radius: 10px 0 0 10px;
        width: 100px;
        height: 75px;
      }
    

}

@media (max-width: 480px) {
    .search-form {
        width: 100% !important; 
        margin-top: 10px; 
    }
    
    .nav-right {
        width: 100%;
        order: 2; 
    }
}

@media (max-width: 360px) {
    .search-input::placeholder {
        color: transparent;
    }
}

/*testimonials*/
h1{
    font-size: 200px;
    margin-top: 95px;
    font-weight: 900;
    
}
h3{
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}
p{
    color: #777;
    font-size: 18px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}
.row{
    margin-top: 5%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.reviews{
    width: 80%;
    margin: auto;
    padding-top: 100px;
    text-align: center;
}
.reviews-col{
    flex-basis: 28%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
    background: #f2faf4;
    padding: 25px;
    cursor: pointer;
    display: flex;

}
.reviews-col img{
    height: 40px;
    margin-left: 5px;
    margin-right: 30px;
    border-radius: 50%;
}

.reviews-col p{
    padding: 0;
}
.reviews-col h3{
    margin-top: 15px;
    text-align: left;
}
@media(max-width: 700px){
    .row{
        flex-direction: column;
    }
    .reviews-col img{
        margin-left: 0px;
        margin-right: 15px;
    }

 }

/*footer*/
.footer{
    width: 100%;
    text-align: center;
    padding: 30px 0;
}
.footer h4{
    margin-bottom: 25px;
    margin-top: 20px;
    font-weight: 600;
}    
.icons .fa{
    color: #21754e;
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;

}

.icons {
    display:flex;
    align-items: center;
    justify-content: center;
    gap:20px;
}



.email-link{
    display: flex;
    align-items: center;
    font-size: 18px;
    text-decoration: none;
    color:#1c613a;
   
}

.icons img {vertical-align: middle;}




.icons a[href*="facebook.com"] {
    display: inline-block; 
    transition: transform 0.5s ease;
}


.icons a[href*="facebook.com"]:hover img {
    transform: scale(1.2); 
}


.icons img {
    transition: transform 0.3s ease;
    vertical-align: middle; 
    transform-origin: center; 
}



.email-link:hover {
    text-decoration: underline !important;
}

/*Sub Header*/
.sub-header{
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/background4.png);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;

}   
.sub-header h1{
    margin-top: 100px;
}

/*contactus*/
.location{
    width: 80%;
    margin: auto;
    padding: 80px 0;
}
.location iframe{
    width: 100%;
}

.contact-us{
    width: 80%;
    margin: auto;
}
  
.contact-col{
    flex-basis: 48%;
    margin-bottom: 30px;
}
.contact-col div{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.contact-col div .fa{
    font-size: 28px;
    color: #21754e;
    margin: 10px;
    margin-right: 30px;

}
.contact-col div p{
    padding: 0;
}
.contact-col div h5{
    font-size: 20px;
    margin-bottom: 5px;
    color: #555;
    font-weight: 400;
}
.grn-btn{
    border: 1px solid #21754e;
    background: transparent;
    color: #21754e;
}
.grn-btn:hover{
    color: #fff;
}
.contact-col input, .contact-col textarea{
    width: 100%;
    padding: 15px;
    margin-bottom: 17px;
    outline: none;
    border: 1px solid #ccc;
    box-sizing: border-box;
}
/*Our-team*/
.sub-header1{
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/background3.png);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;

}   
.sub-header1 h1{
    margin-top: 100px;
}

.Our-team{
    width: 80%;
    margin: auto;
    padding-top: 100px;
    text-align: center;
}
.Our-team-col{
    flex-basis: 28%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
    background: #f2faf4;
    padding: 25px;
    cursor: pointer;
    display: flex;

}
.Our-team-col img{
    height: 40px;
    margin-left: 5px;
    margin-right: 30px;
    border-radius: 50%;
}

.Our-team-col p{
    padding: 0;
}
.Our-team-col h3{
    margin-top: 15px;
    text-align: left;
}
.Our-team-col:hover{
    box-shadow: 0 0 15px 5px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: 0.5s;
}
.sub-header2{
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/background5.png);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;

}   
.sub-header2 h1{
    margin-top: 100px;
}

/*AboutUs*/

.About-Us{
    width: 80%;
    margin: auto;
    padding-top: 100px;
    text-align: center;
}

.About-us-col{
    flex-basis: 31%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
}
.About-us-col img{
    width: 100%;
    border-radius: 10px;
}
.About-us-col p{
    padding: 0;
    text-align: center;
    
}
.About-us-col h3{
    margin-top: 16px;
    margin-bottom: 15px;
    text-align: center;

}
.About-Us li{
    margin: 0 10px;
    padding: 5px 0 5px 20px;
    font-size: 18px;
}

.imgstyle{
    margin: 100px auto;
    width: 80%;
    background-image: url(images/img5.png);
    background-position: center top;
    background-size: cover;
    border-radius: 20px;
    text-align: center;
    padding: 100px 0;
    height: 100px;
}

.About-Us p{
    font-size: 18px;
    color: #1c1c1c;
    padding: 25px;
}
.aboutussec li {
    margin: 0 10px;
    padding: 5px 0 5px 20px;
    font-size: 18px;
}

/*Testimonials*/

.testimonials{
    width: 80%;
    margin: auto;
    padding-top: 100px;
    text-align: center;
}
.sub-header3{
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/background3.png);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
}
.sub-header3 h1{
    margin-top: 100px;
}
.test-col{
    flex-basis: 31%;
    background: #f2faf4;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
}


#nav-container {
    transform: translateY(-100%);
    opacity: 0;
}

#nav-container.active {
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

@media (max-width: 1024px) {
    #nav-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #e8f5e9;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 0 20px 30px; 
        overflow-y: auto;
        z-index: 999;
        display: none; 
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    
    #nav-container.active {
        display: flex !important;
    }

    #nav-container:not(.active) {
        display: none !important;
      }
    

    #nav-container.active {
        display: flex !important;
        animation: slideDown 0.4s ease-out;
    }

    #nav-container.active {
        display: flex !important;
        animation: slideDown 0.4s ease-out;
    }

  
    body.nav-open::before {
        background: rgba(232, 245, 233, 0.9) !important; 
    }


    .main-nav a {
        color: #2d3748 !important;
        font-weight: bold;
        display: block;
    }

    .main-nav li {
        list-style: none;
        margin: 1rem 0;
      }

    .close-menu::before,
    .close-menu::after {
        background: #2d3748 !important;
    }


    #nav-container.active .search-form {
        display: flex !important;
        width: 80%;
        margin: 20px auto;
    }
   
    .mobile-menu {
        display: block !important;
        animation: fadeIn 0.3s ease;
        position: fixed;
        right: 20px;
        top: 20px;
        background: rgba(255, 255, 255, 0.9);
        padding: 12px;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        transition: transform 0.3s ease;
    }

    .mobile-menu.hide {
        transform: translateY(-200%);
    }

    .mobile-menu:hover .fa-bars::before {
        background: #58C568;
        box-shadow: 0 8px 0 #58C568, 0 16px 0 #58C568;
    }

 
    .mobile-menu.active .fa-bars::before {
        opacity: 0;
        box-shadow: none;
    }

 
    .close-menu {
        display: none;
        position: fixed;
        right: 20px;
        top: 20px;
        background: rgba(255, 255, 255, 0.9);
        padding: 12px;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        z-index: 1001;
    }

    .close-menu.show {
        display: block;
        animation: scaleIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

   
    .main-nav {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        margin:0;
    }

    .main-nav a {
        color: #2d3748 !important;
        font-size: 1.4rem;
        text-align: center;
    }

    .nav-right {
        margin-top: 2rem;
        width: 80%;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

 


    body.nav-open::before {
        opacity: 1;
    }

    .search-form {
        display: none !important;
    }
    .search-input,
    .search-button {
        width: 300px !important; 
        height: 40px !important;
    }

  
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    @keyframes scaleIn {
        from { transform: scale(0); }
        to { transform: scale(1); }
    }
}



@keyframes slideDown {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}


@media (min-width: 1025px) {
    #nav-container {
        display: flex !important;
        gap: 2rem;
        transform: none !important;  
        opacity: 1 !important;      
        justify-content: space-between;
        align-items: center;
        margin-left: 40px;
        flex-grow: 1;
    }
  
    .main-nav {
      display: flex !important;
      flex-direction: row;
      gap: 1rem;
      margin-left: 0;
      transform: none !important;
    }
  
    .nav-right {
      margin-left: auto;

      order: 2;
    }
  }

@media (min-width: 1280px) {
    .main-nav {
        margin-left: -25px;
        transform: translateX(-40px);
    }
    
    .main-nav li {
        margin-right: 35px;
    }
    
    nav .logo {
        margin-right: 60px;
    }
}

.main-nav {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

:root {
    --nav-offset: 0px;
}

@media (min-width: 1025px) {
    :root {
        --nav-offset: -20px;
    }
}

.main-nav {
    transform: translateX(var(--nav-offset));
}

.main-nav li {
    margin-right: calc(1vw + 10px); 
}


@media (min-width: 1025px) {
    .main-nav {
        margin-left: 50px; 
        transform: translateX(30px); 
    }


    .main-nav li {
        margin-right: 25px;
    }


    nav .logo {
        margin-right: 60px; 
    }
}


@media (min-width: 1280px) {
    .main-nav {
        margin-left: 200px;
        transform: translateX(50px);
    
    }
    
    .main-nav li {
        margin-right: 45px;
    }
    
    nav .logo {
        margin-right: 80px;
    }
}


.main-nav {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


:root {
    --nav-offset: 0px;
}

@media (min-width: 1025px) {
    :root {
        --nav-offset: 50px;
    }
}

.main-nav {
    margin-left: var(--nav-offset);
}


.nav-right {
    margin-left: auto;
    padding-right: 30px; 
}

.main-nav a.current {
    position: relative;
    color: #3a9247 !important;
    
}

.current{
    border-bottom: solid 4px #3a9247;
}

@media(max-width: 700px){
    .search-input {
      width: 100% !important;  
      height: 30px !important;  
     
    }
    
    .search-form {
      height: 30px !important;  
    }
  }


.donation-form {
    margin-top: 0px;
    padding: 50px 20px;
    background: #ffffff;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgb(249, 227, 172);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.donation-form h2 {
    color: #479f6e;
    text-align: center;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2d3748;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 16px;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    background: #479f6e;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    display: block;
    width: 100%;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #21754e;
}

@media (max-width: 768px) {
    .form-container {
        padding: 20px;
    }
}



.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
}

.modal-content {
    background: rgb(221, 248, 231);
    width: 80%;
    max-width: 400px;
    margin: 15% auto;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    position: relative;
}

.close-btn {
    position: absolute;
    right: 10px;
    top: 5px;
    font-size: 24px;
    cursor: pointer;
}

@media (min-width: 992px) {
    .col-lg-6 {
        float: left;
        width: 50%;
    }
}

#contact .col-lg-6 {
    width: calc(50% - 0.5rem);
    box-sizing: border-box;
}

#contact .col-lg-6 iframe {
    height: 100%;
}

#contact .form-control {
    padding: 12px;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    display: block;
    width: 100%;
}

#contact button[type="submit"] {
    padding: 12px;
    background-color: #e3c451;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#contact button[type="submit"]:hover {
    background-color: #7aa24c;
}


#contact .container.mt-3.contactContent {
    display: flex;
    justify-content: center !important;
    box-sizing: border-box;
    align-items: center;
    background-color: #c8ddc4;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    width:80%;
    margin: 50px auto;
}


#contact .row.mt-4 {
    display: flex;
    gap: 1rem;
}

#contact .col-lg-6 {
    width: calc(50% - 0.5rem);
    box-sizing: border-box;
}

#contact .col-lg-6 iframe {
    height: 100%;
}

.modal-content {
    position: relative;
    top: 300px !important; 
    margin: 0 auto;
    background-color: rgb(248, 254, 220);
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    max-width: 400px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  }
  