@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

.width30{
  width:30rem
}

.width40{
  width:40rem
}

.width25{
 width: 25rem;
}
.product-card{
  /* width: 100px; */
}

.grow {
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
.grow:hover {
  transform: scale(1.1);
}
.social-btn {
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  color: #fff;
}
.social-btn:hover {
  transform: scale(1.1);
  color:#000000;
}
.zoom{
  transition: all 0.2s ease-in-out;
}
.zoom:hover {
  transform: scale(0.95);
}

/* Default link styles */
.hover-link {
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  color: #ffffff; /* Default text color */
  text-decoration: none; /* Remove underline */
  position: relative; /* Position relative for pseudo-element */
}

/* Add an arrow icon before the link text */
.hover-link::before {
  content: ">"; /* Arrow character */
  position: absolute; /* Position absolutely within the link */
  left: -20px; /* Adjust the distance from the link text */
  opacity: 0; /* Initially hidden */
  transform: translateX(-10px); /* Initial translation for animation */
  transition: opacity 0.3s ease, transform 0.3s ease; /* Transition animation */
}

/* Change text color and reveal the arrow on hover */
.hover-link:hover {
  color: #1e1e1e; /* Change the text color on hover */
}

.hover-link:hover::before {
  opacity: 1; /* Show the arrow icon on hover */
  transform: translateX(0); /* Slide in the arrow icon */
}


.up-down {
  animation: moveUpDown 1500ms ease-in-out infinite;
}
@keyframes moveUpDown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px); /* Adjust the distance as needed */
  }
}
.up-down:hover {
  animation-play-state: paused;
}

.ex-con {
  animation: exCon 1s ease-in-out infinite;
}
@keyframes exCon {
  0%,
  100% {
    transform: scale(0.96);
  }
  50% {
    transform: scale(1); /* Adjust the distance as needed */
  }
  100% {
    transform: scale(0.96);
  }
}
.ex-con:hover {
  animation-play-state: paused;
}

.typing-text {
  font-size: 24px;
  white-space: nowrap;
  overflow: hidden;
  width: 0;
  animation: typing 2s steps(30) forwards;
}



.underline-text {
  color: #8D6E63;
  cursor: pointer;
  transition: color 0.3s; /* Smooth color transition */
}

.underline-text:hover {
  color: #D2B48C; /* Change text color on hover */
}

.underline-text::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #D2B48C; /* Underline color */
  transform: scaleX(0); /* Initially hidden */
  transform-origin: bottom right;
  transition: transform 0.3s ease-out; /* Underline animation */
}

.underline-text:hover::before {
  transform: scaleX(1); /* Expand underline on hover */
  transform-origin: bottom left;
}

.product-btn {
  text-decoration: none;
  color: #40916c;

  padding: 0.5em;
  display: block;
  margin: 0 auto;
  text-align: center;
  border-radius: 10px;
  border: 1px solid #4CAF50;
}
.product-btn:hover {
  color: white;
  background-color:#4CAF50; /* New background color on hover */
  transition: background-color 0.5s ease; /* Smooth background color transition */
}

@import url("https://fonts.googleapis.com/css2?family=Outfit&display=swap");

.Haccordion {
  display: flex;
  margin-block: 50px;
  width: min(100% - 175px, 950px);
}
.accordion__item {
  position: relative;
  isolation: isolate;
  cursor: pointer;
  flex: 1;
  transition: flex 250ms;
  overflow: hidden;
}
.accordion__item:first-child {
  border-radius: 20px 0 0 20px;
}
.accordion__item:last-child {
  border-radius: 0 20px 20px 0;
}
.Haccordion .accordion__item:hover {
  flex: 3;
}
.accordion__item:hover .accordion__overlay {
  opacity: 1;
  padding: 50px;
}
.accordion__image {
  display: block;
  position: relative;
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.accordion__overlay {
  transition: opacity 250ms, padding 250ms;
  position: absolute;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.64) 40%,
    rgba(255, 255, 255, 0) 100%
  );
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 0;
}
.accordion__overlay h2 {
  white-space: nowrap;
}
@media (max-width: 768px) {

.card-box{
    flex-direction: column !important;
    text-align: center;
  }

  .d-flex.justify-content-around{
    flex-direction: row ;
    text-align: center;
  }
  

  .width40{
    width:10rem;
    height: auto!important;
    border-radius: 5px !important;
  }


  .width30{
    width: 90% !important;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px !important;
  }
  
  .width25{
   width: 15rem;
   margin-left: auto;
   margin-right: auto;
   border-radius: 10px !important;
  }
  .width50{
    width: 15rem;
    height: auto!important;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px !important;
  }

  #card-info {
    width: auto !important;;
    height: fit-content !important;
    padding: 35px 35px 35px 35px;
    background-color: #a67a5196;
    border-radius: 5px 5px 5px 5px;
    box-shadow: 0px 6px 61px 6px rgba(22, 22, 22, 0.1);
    transition: transform ease 300ms;
    overflow: hidden;
}
  .Haccordion {
    flex-direction: column;
    max-height: 500px;
  }
  .accordion__item:first-child {
    border-radius: 20px 20px 0 0;
  }
  .accordion__item:last-child {
    border-radius: 0 0 20px 20px;
  }
  .accordion__image {
    height: 100%;
  }
  .accordion__overlay {
    justify-content: center;
  }
  .accordion__overlay h2 {
    white-space: normal;
    text-wrap: balance;
    text-align: center;
    margin-block-end: 25px;
  }
  .accordion__item:hover .accordion__overlay {
    opacity: 1;
    padding: 25px;
  }
}

#card-info {
  width: 359px;
  height: fit-content !important;
  padding: 35px 35px 35px 35px;
  background-color: #a67a5196;
  border-radius: 5px 5px 5px 5px;
  box-shadow: 0px 6px 61px 6px rgba(22, 22, 22, 0.1);
  transition: transform ease 300ms;
  overflow: hidden;
}
#card-info:hover {
  box-shadow: 0px 2px 6px 6px rgba(112, 106, 59, 0.616);
  background:   #A88D66;
  transform: translate(0, -10px);
}

#my-icon {
  color: rgb(54, 242, 110);
  font-size: 56px;
  line-height: 56px;
  width:100%;
}

#icon-2 {
  display: none;
}

#card-info:hover #sub-title {
  height: auto!important;
}

#card-info:hover #main-title,
#sub-title {
  color: white;
}
#card-info:hover #sub-title {
  color: white;
}
#main-title {
  margin: 30px 0px;
  font-family: "Nunito", Sans-serif;
  font-weight: bold;
  line-height: 28px;
  font-weight: 700;
  font-style: normal;
  color: #333;
  font-size: 20px;
}
#sub-title {
  line-height: 26px;
  font-style: normal;
  color: #4b4b4b;
  font-size: 16px;
  height: 160px !important;
}



.border-nav{
    color: #40916c;
    border: none;
}
.border-nav :hover {
    color: #40916c;
    border: 1px solid #40916c ;
    border-radius: 10px;
} 
.header-strip {
  background-color: #161515;
  color: #fff;
  padding: 10px 0;
  text-align: center;
  transition: opacity 0.3s ease, transform 0.3s ease; /* Add transition for smooth disappearance */
}

.header-strip.hidden {
  opacity: 0; /* Hide the header strip by reducing opacity */
  transform: translateY(-100%); /* Move it above the viewport */
}

/* Navbar styles */
.NAVBAR {
  position: sticky !important; /* Make the navbar sticky */
  top: 0 !important; /* Stick it to the top of the viewport */
  z-index: 100 !important; /* Ensure it appears above other content */
}

.team-container {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content:left/* Adjust as needed */
 
}
#team-member {
  height: fit-content !important; 
  padding: 35px 35px 35px 35px;
  background-color:#A88D66;
  border-radius: 5px 5px 5px 5px;
  box-shadow: 0px 6px 61px 6px rgba(22, 22, 22, 0.1);
  transition: transform ease 300ms;
  overflow: hidden;
  margin-bottom: 50px;
  margin-left:30px
}

#team-member img {
  width:250px;
  height:250px ;
  margin: auto !important;
  object-fit: scale-down;
  border-radius: 100%;
  background-position: top;
}

#team-title {
  margin: 5px 0px;
  font-family: "Nunito", Sans-serif;
  font-weight: bold;
  line-height: 28px;
  font-weight: 700;
  font-style: normal;
  color: #333;
  font-size: 20px;
}

#team-subtitle {
  margin: 5px 0px;
  font-family: "Nunito", Sans-serif;
  line-height: 28px;
  font-style: normal;
  color: #333;
  font-size: 18px;
}

