*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    background: url(images/background2.jpg);
    
}


.header{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.3)), url(images/pic1.jpg);
    background-position: center;
    background-size: cover;
    position: relative;

}
nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}
.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{
    text-decoration: none;
    color: #fff;
}
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #19732d;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav-links ul li:hover::after{
    width: 100%;
}
.text-box{
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}
.text-box h3{
    font-size: 40px;
   
}
.text-box p{
    margin: 10px 0 10px;
    font-size: 25px;
    color: #fff;
}
.button{
    margin-top: 20px;
    display: inline-block;
    
    
}
.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: #000;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.hero-btn:hover{
    border: 1px solid #19732d;
    background: #19732d;
    color: #fff;
    transition: 1s;
}

nav .fa-solid{
    display: none;
}

.slide-left{
    animation: slideleft 1s linear forwards;
}
@keyframes slideleft{
    0%{
        transform: translate(100px);
        opacity: 0;
    }
    100%{
        transform: translate(0px);
        opacity: 1;
    }
}

.sub-header{
    height: 60vh;
    width: 100%;
    
    background-position: center;
    background-size: cover;
    text-align: center;
}
.sub-header h1{
    color: #fff;
    margin-top: 5%;
    font-size: 100px;
}


/*----home----*/
.home-section{
    margin-top: 100px;
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 50px;
    padding-bottom: 50px;
}
.home-section p{
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
}


/*-----section-1----*/
.section-1{
    display: flex;
    align-items: center;
    width: 85%;
    margin: auto;
    padding-top: 50px;
    padding-bottom: 50px;
   
}
.section-1 img{
    flex: 0 50%;
    max-width: 50%;
    height: auto;
    
}


.sec-1-content{
    padding: 35px;
}
.sec-1-content h1{
    color:#19732d;
    font-size: 40px;
    margin: 15px 0px;
}
.sec-1-content p{
    color: #000;
    margin: 15px 0px;
    line-height: 1.5;
    font-size: 15px;
}


/*---section-2---*/
.sec-2{
    margin-top: 80px;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.3)),url(images/pic3.jpg);
    background-position: center;
    background-size: cover;
    height: 90vh;
}
.sec-2-text{
    text-align: center;
    color: #fff;
}
.sec-2-text h1{
    font-weight: bold;
    font-size: 40px;
    padding-top: 150px;
    color:#19732d;
}
.sec-2-text p{
    padding-top: 30px;
    width: 70%;
    margin: auto;
    display: block;
    line-height: 1.5;
}

/*----section-3---*/
.container-7 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    
    margin-block: 2rem;
    gap: 2rem;
  }
  
  img {
    max-width: 100%;
    display: block;
    object-fit: cover;
  }
  
  .card {
    display: flex;
    flex-direction: column;
    width: clamp(20rem, calc(20rem + 2vw), 22rem);
    overflow: hidden;
    box-shadow: 0 .1rem 1rem rgba(0, 0, 0, 0.1);
    border-radius: 1em;
    background: #ECE9E6;
  background: linear-gradient(to right, #FFFFFF, #ECE9E6);
  
  }
  
  
  
  .card__body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
  }
  
  
  .tag {
    align-self: flex-start;
    padding: .25em .75em;
    border-radius: 1em;
    font-size: .75rem;
  }
  
  .tag + .tag {
    margin-left: .5em;
  }
  
  .tag-blue {
    background: #56CCF2;
  background: linear-gradient(to bottom, #2F80ED, #56CCF2);
    color: #fafafa;
  }
  
  .tag-brown {
    background: #D1913C;
  background: linear-gradient(to bottom, #FFD194, #D1913C);
    color: #fafafa;
  }
  
  .tag-red {
    background: #cb2d3e;
  background: linear-gradient(to bottom, #ef473a, #cb2d3e);
    color: #fafafa;
  }
  
  .card__body h4 {
    font-size: 1.2rem;
    text-align: center;
  }

  .card__body p{
    text-align: center;
    padding: 20px;
    line-height: 1.5;
    
  }
  
  .card__footer {
    display: flex;
    padding: 1rem;
    margin-top: auto;
  }
  
  .user {
    display: flex;
    gap: .5rem;
  }
  
  .user__image {
    border-radius: 50%;
  }
  
  .user__info > small {
    color: #666;
  }


  /*----section-4---*/
  /*-----section-1----*/
.section-4{
    display: flex;
    align-items: center;
    width: 85%;
    margin: auto;
    padding-top: 50px;
    padding-bottom: 50px;
   
}
.section-4 img{
    flex: 0 50%;
    max-width: 50%;
    height: auto;
}
.sec-4-content{
    padding: 0px 35px;
}
.sec-4-content h1{
    color:#19732d;
    font-size: 40px;
    margin: 15px 0px;
}
.sec-4-content p{
    color: #000;
    margin: 15px 0px;
    line-height: 1.5;
    font-size: 15px;
}
#accordion{
    
    width: 600px;
}
#accordion li{
    list-style: none;
    width: 100%;
    margin-bottom: 10px;
    background: #fff;
    padding: 10px;
    border-radius: 4px;
}
#accordion li label{
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    color: #c20000;
}
#accordion li label span{
    transform: rotate(90deg);
    font-size: 22px;
    color: #333;
}
#accordion label + input[type="radio"]{
    display: none;
}
#accordion .content{
    padding: 0 10px;
    line-height: 1.5;
    max-height: 0;
    overflow: hidden;
    transition: max-height 2s;
}
#accordion label + input[type="radio"]:checked + .content{
    max-height: 400px;
    

}


/*----footer---*/
.footer{
    margin-top: 40px;
    background-color: #05631e;
    height:70vh;

}
.sec-5{
    display: grid;
	grid-template-columns: auto auto auto;
	grid-template-rows: auto auto;
	justify-content: center;
	
}
.sec-5-col{
    color: black;
	font-size: 20px;
	text-align: center;
	width: 300px;
	height: 200px;
	margin: 10px;
    padding-top: 40%;
}
.sec-5-col ul li{
    list-style: none;
}
.sec-5-col ul li a{
    text-decoration: none;
    color: #fff;
    line-height: 1.5;
}
.sec-5-col ul li a:hover{
    color: #000;
}
.add ul li a{
    line-height: 2;
}

.quick{
    margin-right: 100px;
}

.add{
    margin-top: 40px;
}

.f-logo{
    margin-top: 40px;
}


/*---section-6---*/
.sec-6{
      display: flex;
      align-items: center;
      justify-content: center;
     margin-top: 100px;
     margin-bottom: 100px;
}
.slider{
    position: relative;
    width: 200px;
    height: 200px;
    transform-style: preserve-3d;
    animation: rotate 30s linear infinite;
}

@keyframes rotate{
    0%{
        transform: perspective(1000px) rotateY(0deg);
    }
    100%{
        transform: perspective(1000px) rotateY(360deg);
    }
}

.slider span{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-origin: center;
    transform-style: preserve-3d;
    transform: rotateY(calc(var(--i)*45deg)) translateZ(350px);
}

.slider span img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
    transition: 2s;
}

.slider span:hover img{
    transform: translateY(-50px) scale(1.2);
}


.sec-7-text h1{
    color:#19732d;
    font-size: 40px;
    text-align: center;
}
.sec-7-text p{
    text-align: center;
    margin-top: 10px;
    font-size: 15px;
}


/*----animation---*/
img{
    transition: transform .3s ease;
}

img:hover{
    transform: scale(1.1);
}


    
    
