@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;

    transition:all .2s cubic-bezier(.34,1.12,.68,1.31);
}



html{
overflow-x: hidden;
}

.bg1{
  background-image: url(../image/round-bail-bg.jpg) ;
  background-repeat: no-repeat;

}


.cards{
  position: relative;
  width: 500px;
  height: 180px;
  border-radius: 10px;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.5);
  transition: 0.3s;
  padding: 30px 50px;
  background: white;
  cursor: pointer;
  background-color: rgb(64, 132, 71);
}

.cards:hover{
  height: 250px;
}

.imgbox{
  position: relative;
  width: 100%;
  height: 100%;
  transform: translateY(-40%);
  z-index: 99;
}

.img-inner{
  width: 100%;
  border-radius: 10px;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.5);
}

.content{
  padding: 10px 20px;
  text-align: center;
  transform: translateY(-450px);
  opacity: 0;
  cursor: pointer;
  transition: 0.3s;
  width: 180px;

}

.cards:hover > .content{
  height: 100px;
  opacity: 1;
 transform: translateY(-120px);
width: 200px;
}

.content h3, p{
  color: #ffffff;
}

.content h3{
  font-size: 20px;
  color: #ffffff;
}

.content p{
  font-size: 14px;
}

/* GO TO TOP */

.go-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: none;
  box-shadow: 0px 1px 10px 1px rgba(39, 39, 39, 0.61);
}

/* GO TO TOP */



/* INDEX.HTML */

.kenburns-top {
  -webkit-animation: kenburns-top 10s ease-out infinite alternate-reverse both;
  animation: kenburns-top 10s ease-out infinite alternate-reverse both;
}

@-webkit-keyframes kenburns-top {
  0% {
    -webkit-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
    -webkit-transform-origin: 50% 16%;
    transform-origin: 50% 16%;
  }

  100% {
    -webkit-transform: scale(1.25) translateY(-15px);
    transform: scale(1.25) translateY(-15px);
    -webkit-transform-origin: top;
    transform-origin: top;
  }
}

@keyframes kenburns-top {
  0% {
    -webkit-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
    -webkit-transform-origin: 50% 16%;
    transform-origin: 50% 16%;
  }

  100% {
    -webkit-transform: scale(1.25) translateY(-15px);
    transform: scale(1.25) translateY(-15px);
    -webkit-transform-origin: top;
    transform-origin: top;
  }
}

/* NAVBAR*/

 nav {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 20px 0;
 }

 header {
   background-color: #FFFFFF;
   padding: 5px 0;
   box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
   position: sticky;
   top: 0;
   z-index: 1000;
 }

 .header-content {
   display: flex;
   justify-content: space-between;
   align-items: center;
   flex-wrap: wrap;
 }

 .logo {
   font-family: 'Poppins', sans-serif;
   font-size: 28px;
   color: #D3AF37;
   font-weight: 700;
   text-decoration: none;
   flex-shrink: 0;
 }

 .logo:hover {
   color: #D3AF37;
 }

 nav ul {
   list-style: none;
   margin: 0;
   padding: 0;
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
 }

 nav ul li {
   margin-left: 25px;
 }

 nav ul li a {
   text-decoration: none;
   color: #555;
   font-weight: 600;
   padding: 8px 0;
   transition: color 0.3s ease, border-bottom 0.3s ease;
   position: relative;
 }

 nav ul li a:hover,
 nav ul li a.active {
   color: #D3AF37;
 }

 nav ul li a::after {
   content: '';
   position: absolute;
   width: 0;
   height: 2px;
   bottom: -5px;
   left: 0;
   background-color: #D3AF37;
   transition: width 0.3s ease;
 }

 nav ul li a:hover::after,
 nav ul li a.active::after {
   width: 100%;
 }

 .menu {
   display: none;
 }

 @media (max-width:990px) {
   .menu {
     display: block;
   }

   .menu i {
     font-size: 20px;
   }

   .header-content .links {
     display: none;
   }
 }

 /* static header */
 .sidebar {
   height: 100vh;
   width: 300px;
   background-color: rgb(250, 250, 250);
   position: fixed;
   top: 0;
   z-index: 1000;
   box-shadow: 6px 0 10px rgba(0, 0, 0, 0.228);
   transform: translateX(-320px);
   transition: 0.4s ease-in-out all;
 }

 .active {
   transform: translateX(0%);
 }

 .flex-items {
   margin: auto;
   height: 50px;
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 100%;
   margin-top: 20px;
   padding: 0px 30px 0px 30px;
 }

 .flex-items h2 {
   color: #D3AF37;
   font-weight: 600;
 }

 .close-btn {
   font-size: 30px;
   transition: 0.2s;
   color: rgb(0, 0, 0);
 }

 .close-btn:hover {
   color: #D3AF37;
 }

 .sidebar .menu-links {
   height: 70vh;
   max-width: 100%;
 }

 .sidebar .menu-links .links li {
   text-decoration: none;
   list-style-type: none;
   border-bottom: 1px solid #303030;
   width: 210px;
   margin-top: 15px;
   padding-bottom: 5px;
   transition: transform 0.3s ease;
 }

 .sidebar .menu-links .links li:hover {
   transform: translateX(10px);
   border-bottom: 1px solid #9b8026;
 }

 .sidebar .menu-links .links li:hover a {
   color: #9b8026;
 }

 .sidebar .menu-links .links li:hover i {
   color: #9b8026;
 }

 .sidebar .menu-links .links li a {
   color: rgb(0, 0, 0);
   text-decoration: none;
   list-style-type: none;
   transition: 0.3s ease-in-out;
   position: relative;
   left: 10px;
 }

/* BODY ALL*/

.Body_all {
  color: black;
}
/* ddffbf */


/* BODY ALL*/


/* BODY 2*/

.Body_2_Btn {
  color: #111;
}

.Body_2_Btn:hover {
  color: #198754;
}

/* BODY 2*/


/* BODY 4*/

.Body_4_Btn {
  color: #111;
  text-decoration: none;
}

.Body_4_Btn:hover {
  color: #198754;
}

/* BODY 4*/


/* BODY 5*/

.Body_5_Form {
  display: block;
  width: 100%;
  min-height: calc(1.5em + .75rem + 2px);
  padding: .575rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  appearance: none;
  border-radius: 52px;

}

.Body_5_Btn {

  padding: 15px;
  border-radius: 50px;
  color: #198754;
  border-color: #198754;
}


.Body_5_Btn:hover {
  background-color: #198754;
  color: white;
}

.display-2{
  font-weight: 900;
  text-transform: uppercase;
  
}

button{
  color: black;
}

button:hover{
  color: white;
} 

/* BODY 5*/





/* ABOUT.HTML */

.hero {
  background-image: url(../image/wallpaper-plant.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  z-index: 2;
}

.hero::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.678);
  z-index: -1;
}

section {
  padding-top: 120px;
  padding-bottom: 120px;
}

.team-member img {
  width: 125px;
  height: 125px;
  border-radius: 100px;
}

.social-icons {
  display: flex;
  justify-content: center;
}

.social-icons a {
  width: 34px;
  height: 34px;
  background-color: #198754;
  border: 2px solid #198754;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  margin-left: 5px;
  transition: all 0.4s ease;
}

.social-icons a:hover {
  color: #198754;
  background-color: transparent;
  border-color: #198754;
}

.iconbox {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #198754;
  color: #fff;
  font-size: 32px;
  border-radius: 100px;
  flex: none;
}

.card-effect {
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  padding: 20px;
  transition: transform 0.3s all;
}

.card-effect:hover {
  transform: translateY(5px);
  background: linear-gradient(to bottom, white, rgb(112, 177, 112)); 
}


@media (max-width:320px) {

  .hero {
      text-align: start;
      padding-top: 70spx;
  }

  .hero h1 {
      font-size: 18px;
  }

  .hero p {
      font-size: 15px;
  }
}


/* head area */


    .section-title {
      padding: 50px;
      text-align: center;
    }

    .section-title h1 {
      font-weight: 700;
      font-size: 2rem;
      margin-bottom: 0.5rem;
    }

    .section-title span {
      color: #d4af37; 
    }

    .section-title p {
      font-size: 0.95rem;
      color: #555;
      margin: 0 auto 1.5rem;
    }

    .head-area{
      margin: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .search-bar {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      width: 100%;
      max-width: 900px;
    }

    .search-bar input[type="text"],
    .search-bar select {
      padding: 0.8rem;
      border: 1px solid #ccc;
      font-size: 1rem;
      border-radius: 2px;
      width: 100%;
    }

    .search-bar .row {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .search-bar select {
      appearance: none;
      background-color: #fff;
      background-image: url('data:image/svg+xml;charset=UTF-8,<svg fill="%23000" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
      background-repeat: no-repeat;
      background-position: right 0.75rem center;
      background-size: 1rem;
    }

    .search-bar button {
      background-color: #fff;
      border: 1px solid #d4af37;
      color: #000000;
      padding: 0.8rem;
      font-size: 1rem;
      border-radius: 2px;
      cursor: pointer;
      width: 100%;
      transition: 0.2s ease-in-out;
    }

    .search-bar button:hover {
      background-color: #d4af37;
      color: white;
    }

    @media (min-width: 600px) {
      .search-bar .row {
        flex-wrap: nowrap;
      }

      .search-bar .row > * {
        flex: 1;
      }

      .search-bar button {
        max-width: 150px;
      }
    }

/* head area end*/

.card-footer{
  background-color: transparent;
}

.card-footer button{
  border-radius: 5px;
}

.card .card-body{
  width: 100%;
}
 /* Footer  */
 .links .nav {
   width: auto;
   gap: 0.50rem;
 }

 .links .nav .bg-links {
   background-color: #D3AF37;
   font-size: 16px;
   border-radius: 50%;
   height: 35px;
   width: 35px;
   display: flex;
   align-items: center;
   justify-content: center;
   cursor: pointer;
   transition: 0.2s;
 }

 .links .nav .bg-links:hover {
   margin-top: -5px;
   transition: 0.2s;
 }

 .links .nav .bg-links i {
   color: white;
 }

 .list-unstyled a {
   color: black;
   text-decoration: none;
   transition: 0.2s all;
 }

 .list-unstyled a:hover {
   color: #a1852a;
 }


#filteredContainer{
  padding: 20px 50px 20px 50px;
}

.mainContainer .filter-feilds{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn:hover{
   border: none;
}