@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Smooth Scroll */
html{
    scroll-behavior: smooth;
}

/* Utility Classes */
.text-secondary{
    color: #55BA53;
}
.text-center{
    text-align: center;
}
.bg-light{
    background: rgb(249, 247, 247);
}
.bg-secondary{
    background: #55BA53;
}

.py-0{padding: 16px 0;}
.py-1{padding: 24px 0;}
.py-2{padding: 32px 0;}
.py-3{padding: 48px 0;}

.p-0{padding: 16px;}
.p-1{padding: 24px;}
.p-2{padding: 32px;}
.p-3{padding: 48px;}
.p-4{padding: 1px;}

.wrapper{
    max-width: 1400px;
    padding: 0 50px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.btn{
    display: inline-block;
    padding: 15px 25px;
    margin-right: 30px;
    margin-top: 10px;
    text-decoration: none !important;
    border-radius: 25px;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    overflow: hidden;
    transition: all 0.5s ease;
}


/* Showcase Area Styling */

.showcase{
    width: 100%;
    height: 85vh;
}

/* Top Navbar */

.showcase .navbar-top{
    width: 100%;
    display: flex;
    padding: 0 80px;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
    background-color: #0A2940;
    top: 0;
    left: 0;
}
.showcase .left{
    display: flex;
    list-style: none;
}
.showcase .left li a{
    display: inline-block;
    font-size: 9px;
    text-decoration: none;
    color: #95A2BB;
    padding: 5px 15px;
    transition: all 0.5s ease;
}
.showcase .left li a:hover{
    color: #f4f7f4;
}
.showcase .left li:first-child{
    font-weight: 700;
    border-right: 1px solid #536DAF;
}
.showcase .right{
    display: flex;
    list-style: none;
}
.showcase .right li a{
    display: inline-block;
    padding: 5px 15px;
    text-decoration: none;
    color: #95A2BB;
    transition: all 0.5s ease;
}
.showcase .right li a:hover{
    color: #55BA53;
}

/* Bottom Navbar */
.showcase .navbar-bottom{
    width: 100%;
    background: #cfcfcf;
    padding: 25px 95px;
    align-items: center;
    margin:  auto;
    display: flex;
    position: fixed; 
    justify-content: space-between;
    overflow: hidden;
}
.navbar-bottom.sticky{
    padding: 15px 95px;
    background: #fff;
    border-bottom: 1px solid #0A2940;
    color: #0A2940;
    top: 0;
    z-index: 999;
}
.showcase .navbar-bottom .brand-left{
    color: #55BA53;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.5s ease;
}
.showcase .navbar-bottom.sticky .brand-left{
    color: #0A2940;
}
.showcase .navbar-bottom .brand-left:hover{
    color: #0A2940;
}
.showcase .navbar-bottom .menu-right{
    display: flex;
    list-style: none;
    font-size: 14px;
    font-weight: 600;
}
.showcase .navbar-bottom.sticky .menu-right li:last-child{
    display: none;
}
.showcase .navbar-bottom .menu-right a{
    text-decoration: none;
    display: inline-block;
    padding: 0 20px;
    color: #1A1B1E;
    transition: all 0.5s ease;
}
.showcase .navbar-bottom .menu-right a:hover{
    color: #55BA53;
} 
.menu-toggle {
    display: none;
}

/* Showcase-content Section styling */
.showcase .showcase-content{
    max-width: 850px;
    margin-top: 15%;
    padding: 0 95px;
}
.showcase .showcase-content h1{
    color: #e8f0e8;
    font-size: 60px;
    margin: 15px 0;
    font-family: 'Nunito';
}
.showcase .showcase-content h2{
    color: #418149;
    font-size: 20px;
    margin: 15px 0;
}

.showcase .showcase-content p{
    color: #ceced4;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}
.showcase .showcase-content .btn-left{
    background: linear-gradient(to right, #0a3609 , #55BA53);
    text-decoration: none !important;
}
.showcase .showcase-content .btn-right{
    background: linear-gradient(to right,#55BA53, #0a3609);
}
.showcase .showcase-content .btn-left:hover{
    background: #4f639e;
}
.showcase .showcase-content .btn-right:hover{
    background: #4f639e;
}

/* Services Section Styling */
#services .items{
    display: flex;
    padding-bottom: 40px;
}
#services .itemss {
    text-align: center;
    padding: 10px;
    margin: 10px;
    background: rgb(249, 247, 247);
    border-radius: 5px;
    transition: all 0.5s ease;
}

#services .itemss h3{
    color: #55BA53;
    font-size: 30px;
    margin: 5px;
}

#services .itemss p{
    line-height: 1.4;
    color: #020202;
}
#services .itemss i{
    color: #050505;
}

#services .itemss:hover h3{
    color: #f4f4f4;
}
#services .itemss:hover{
    background:#4f639e;
    transform: scale(1.05);
}
#services .itemss:hover h3{
    color: #f4f4f4;
}
#services .itemss:hover p{
    color: #040404;
}
#services .itemss a{
    display: inline-block;
    padding: 15px 25px;
    margin-right: 30px;
    margin-top: 10px;
    border-radius: 25px;
    color: rgb(255, 255, 255);
    font-size: 12px;
    font-weight: bold;
    transition: all 0.5s ease 0s;
    background: linear-gradient(to right, #0a3609 , #55BA53);
}
#services .itemss a:hover{
    background: linear-gradient(to right,#55BA53, #0a3609);
}



#services .items .item{
    text-align: center;
    padding: 10px;
    margin: 10px;
    background: white;
    border-radius: 5px;
    box-shadow: 5px 5px 20px rgba(0,0,0,0.3), -5px -5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
}

#services .items .item h3{
    color: #55BA53;
    font-size: 16px;
    margin: 5px;
}
#services .items .item p{
    line-height: 1.4;
    color: #020202;
}

#services .items .item:hover{
    background:#4f639e;
    transform: scale(1.05);
}
#services .items .item:hover h3{
    color: #f4f4f4;
}
#services .items .item:hover p{
    color: #040404;
}
#services .items .item img{
    width:100%;
    height:auto;
    border-radius: 20px;
}

/* Services Section Bottom */
#goal{
    display: flex;
    padding-top: 20px;
}
#goal div{
    flex: 1;
}
#goal .goal-img{
    display: inline-block;
    position: relative;
    width: 800px;
    height: 590px;
    overflow: hidden;
}
#goal .goal-img img{
    width: auto;
    height: 100%;
    object-fit: cover;
    
}
#goal .goal-text{
    margin: 0 40px;
    padding-top: 100px;
}
#goal .goal-text #Priorities{
    color: #f4f4f4;
    background: #55BA53;
    text-decoration: none;
    font-size: 12px;
    border: 1px solid #55BA53;
    border-radius: 25px;
    padding: 3px 10px;
    transition: 0.5s;
}
#goal .goal-text a:hover{
    color: #55BA53;
    background: #0A2940;
}
#goal .goal-text h2{
    margin: 20px 0;
    color: #0A2940;
}
#goal .goal-text .contents{
    display: flex;
}
#goal .goal-text .contents .content{
    flex: none;
    padding: 10px;
}

#goal .goal-text .contents .content p{
    color: #1A1B1E;
}
#goal .goal-text .contents .content i{
    color: #55BA53;
    padding: 3px;
    background: #3a77a5;
    align-self: flex-start;
    border-radius: 5px;
    margin-right: 5px;
}
#goal .goal-text .button{
    display: inline-block;
    padding: 15px 25px;
    margin-right: 30px;
    margin-top: 10px;
    border-radius: 25px;
    color: rgb(255, 255, 255);
    font-size: 12px;
    font-weight: bold;
    transition: all 0.5s ease 0s;
    background: linear-gradient(to right, #0a3609 , #55BA53);
}
#goal .goal-text .button:hover{
background: linear-gradient(to right,#55BA53, #0a3609);
}

/* About Us Section Styling  */
#about{
    background-color: #e6e9ec;
}
.container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 960px;
    margin: 0 auto;
}
  
.about-content {
  width: 50%;
}

.form-container {
  width: 40%;
  border: 1px solid #ece4e4;
  padding: 20px;
}

h2 {
  font-size: 24px;
  margin-top: 0;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  font-weight: bold;
  margin-bottom: 5px;
}

input, textarea {
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #c5bfbf;
  border-radius: 20px;
}
button {
    display: inline-block;
    padding: 15px 25px;
    margin-right: 30px;
    margin-top: 10px;
    border-radius: 25px;
    color: rgb(255, 255, 255);
    font-size: 12px;
    font-weight: bold;
    background: linear-gradient(to right, #0a3609 , #55BA53);
    transition: all 0.5s ease 0s;
}
.button a{
    text-decoration: none;
    color: white;
} 
  
button:hover {
    background: linear-gradient(to right,#55BA53, #0a3609);
}

/* after about us */
#goals {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  
  .goals-img {
    flex: 1;
    margin-right: 2rem;
  }
  
  .goals-text {
    flex: 2;
  }

/* Teams Section Styling */
#teams h3{
    color: #0A2940;
    font-size: 14px;
    padding-bottom: 20px;
    text-transform: uppercase;
}
#teams h2{
    font-size: 40px;
    font-weight: 600;
    color: #0A2940;
    margin-bottom: 20px;
}
#teams h2 span{
    font-weight: 500;
}
#teams p{
    color: #0A2940;
    line-height: 1.6;
    margin-bottom: 100px;
}
#teams .wrapper .card-items{
    display: flex;
    margin-top: -50px;
    justify-content: space-evenly;
    overflow: hidden;
}
#teams .wrapper .card{
    margin: 20px;
    display: flex;
    flex-direction: column;
    background-color: #f6f6f6;
    border-radius: 5px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
    overflow: hidden;
    width: 280px;
    z-index: 1;
    transition: all 0.5s ease;
}
#teams .wrapper .card:hover{
    background: #4f639e;
    transform: scale(1.05);
    cursor: pointer;
}
#teams .wrapper .card .card-header{
    display: inline-block;
    width: 180px;
    height: 180px;
    overflow: hidden;
    border-radius: 50%;
    margin: 30px auto;
    transform: translateY(40px);
}
#teams .wrapper .card .card-header img{
    width: 100%;
    height: auto;
}
#teams .wrapper .card-body{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    min-height: 200px;
}
#teams .wrapper .card h3{
    font-size: 16px;
    color: #24262a;
    padding-top: 30px;
}
#teams .wrapper .card .card-body h4{
    font-size: 14px;
    font-weight: 600;
    color: #55BA53;
    margin-top: 0px;
}
#teams .wrapper .card .card-body ul{
    display: flex;
    list-style: none;
    padding-top: 50px;
}
#teams .wrapper .card .card-body ul li i{
    padding: 5px;
    margin: 0 7px;
    border: 1px solid #95A2BB;
    border-radius: 50%;
    background: #8da4b6;
    color: #55BA53;
    transition: all 0.3s ease;
}
#teams .wrapper .card .card-body ul li i:hover{
    background: #55BA53;
    color: #97b6ce;
}

/*  stay informed section Styling */
#contact{
    background-color: white;
}
#contact h2{
    font-size: 40px;
    font-weight: 600;
    color: #222020;
    margin-bottom: 10px;
}
#contact p{
    color: #222020;
    line-height: 1.6;
    margin-bottom: 50px;
}
#contact .wrapper form{
    display: flex;
    flex-direction: column;
    align-items: center;
}
#contact .wrapper form input{
    padding: 10px;
    margin: 10px;
    border: none;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}
#contact .wrapper form .button{
    padding: 10px;
    margin: 10px;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
    width: 100%;
    max-width: 400px;
}
#contact .wrapper form .button:hover{
    background: #4f639e;
    color: #fff;
    cursor: pointer;
}

/* Footer Section Styling  */
.footer {
    background-color: #f2f2f2;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .social-media-icons {
    margin-bottom: 20px;
  }
  
  .social-media-icons a {
    display: inline-block;
    margin-right: 20px;
    font-size: 30px;
    color: #555;
  }
  .social-media-icons a:hover{
    color: #49ba4f;
    transform: scale(1.5);
    margin: 20px; 
  }
  
  .footer-info {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: #888;
  }
  
  .footer-info p {
    margin: 0 10px;
  }
  
  #footer hr {
    width: 100%;
    height: 1px;
    border: none;
    background-color: #ccc;
    margin-bottom: 20px;
  }
  
  /* Style for the copyright text */
  div .copyright-content {
    font-size: 12px;
    color: #818080;
    font-weight: bold;
    padding: 10px;
    text-align: center;
  }
    
  @media (min-width: 53px) and (max-width: 920px) {
    .showcase {
      height: 115vh;
    }
    .wrapper {
        max-width: 100%;
        padding: 0 10px;
      }
    .showcase .navbar-top {
        padding: 10px 0;
    }
    .showcase .left li a{
        font-size: 10px;
        padding: 5px 9px;
    }
    
    /* Bottom Navbar */
    .showcase .navbar-bottom{
        padding: 20px 10px;
    }

    /* the manu on the top */
    .showcase .navbar-bottom .menu-right{
        font-size: 12px;
    }
    .showcase .navbar-bottom .menu-right a{
        padding: 0 9px;
    }
    .showcase .navbar-bottom .brand-left{
        font-size: 25px;
    }
    .showcase .showcase-content{
        max-width: 100%;
        margin-top: 25%;
        padding: 0 10px;
    }
    .showcase .showcase-content h1{
        font-size: 50px;
        margin-bottom: 100px;
    }
    .showcase .showcase-content h2{
        font-size: 40px;
        margin: 100px 0;
       
    }
    /* Services Section Styling */
    #services .items {
        flex-direction: column;
      }
    
      #services .itemss,
      #services .items .item {
        margin: 10px 0;
      }
    
      #services .itemss a {
        margin-right: 0;
      }

    /* Services Section Bottom */
      #goal{
        flex-direction: column;
    }
    #goal .goal-img {
        display: inline-block;
        position: relative;
        width: 100%;
        max-width: 800px;
        height: auto;
        overflow: hidden;
      }
      #goal .goal-img img {
        width: 100%;
        height: auto;
        object-fit: cover;
      }
      #goal .goal-text {
        margin: 0 10px;
        padding-top: 50px;
    }
    #goal .goal-text .contents {
        flex-direction: column;
      }
    
      #goal .goal-text .contents .content {
        flex: none;
        padding: 5px;
      }

      /* About Us Section Styling  */
    .container {
        flex-direction: column;
        align-items: center;
    }
    .about-content, .form-container {
        width: 100%;
      }
      
      /* footer */
      .footer-info {
        flex-direction: column;
        text-align: center;
      }
    
      .social-media-icons a {
        margin-right: 10px;
        margin-bottom: 10px;
        font-size: 24px;
      }
      
  }
  
  
  /* For screens between 992px and 1200px (large screens) */
  @media (min-width: 920px) and (max-width: 1199.98px) {
    /* Add your responsive CSS code here */
    .showcase {
      background-position: center center;
    }
    .showcase {
        height: 115vh;
      }
      .wrapper {
          max-width: 100%;
          padding: 0 25px;
        }
      .showcase .navbar-top {
          padding: 10px 0;
      }
      .showcase .left li a{
          font-size: 19px;
          padding: 12px 10px;
      }
      
      /* Bottom Navbar */
      .showcase .navbar-bottom{
          padding: 20px 10px;
      }
  
      /* the manu on the top */
      .showcase .navbar-bottom .menu-right{
          font-size: 20px;
      }
      .showcase .navbar-bottom .menu-right a{
          padding: 10px 12px;
      }
      .showcase .navbar-bottom .brand-left{
          font-size: 25px;
      }
      .showcase .showcase-content{
          max-width: 100%;
          margin-top: 15%;
          padding: 10px 100px;
      }
      .showcase .showcase-content h1{
        font-size: 50px;
    }
      .showcase .showcase-content h2{
          font-size: 32px;
          margin: 37px 0;
      }
      /* Services Section Styling */
      
        #services .itemss,
        #services .items .item {
          margin: 10px 0;
        }
      
        #services .itemss a {
          margin-right: 0;
        }
  
      /* Services Section Bottom */
        
      #goal .goal-img {
          display: inline-block;
          position: relative;
          width: 100%;
          max-width: 800px;
          height: auto;
          overflow: hidden;
        }
        #goal .goal-img img {
          width: 100%;
          height: auto;
          object-fit: cover;
        }
        #goal .goal-text {
          margin: 0 10px;
          padding-top: 50px;
      }
      #goal .goal-text .contents {
          flex-direction: column;
        }
      
        #goal .goal-text .contents .content {
          flex: none;
          padding: 5px;
        }
    
    }  