:where([class^="ri-"])::before {
  content: "\f3c2";
}

.animate-fade-in-down {
  animation: fadeInDown 1s forwards 0.5s;
}

.animate-pop-in {
  animation: popIn 0.6s forwards;
}

.animate-float {
  animation: float 3s ease-in-out forwards;
}

@keyframes fadeInDown {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes popIn {

  to {
      opacity: 1;
      transform: scale(1);
  }
}

@keyframes float {
  0%, 100% {
      transform: translateY(0);
  }
  50% {
      transform: translateY(-100px);
  }
}

.service-card {
  transition: all 0.3s ease;
}
.service-card:hover {
  transform: translateY(-10px);
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.floating {
  animation: floating 3s ease-in-out infinite;
}
@keyframes floating {
  0% {
    transform: translate(0, 0px);
  }
  50% {
    transform: translate(0, 15px);
  }
  100% {
    transform: translate(0, -0px);
  }
}
.sticky-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}
.sticky-header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.slide-in-left {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 0.8s ease-out;
}
.slide-in-right {
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.8s ease-out;
}
.slide-in-top {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 0.8s ease-out;
}
.slide-in-bottom {
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.8s ease-out;
}
.slide-in-left.visible,
.slide-in-right.visible,
.slide-in-bottom.visible,
.slide-in-top.visible {
  opacity: 1;
  transform: translateX(0);
}
.scale-in {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.8s ease-out;
}
.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}
.rotate-in {
  opacity: 0;
  transform: rotate(-180deg);
  transition: all 0.8s ease-out;
}
.rotate-in.visible {
  opacity: 1;
  transform: rotate(0);
}
.gradient-text {
  background: linear-gradient(120deg, #007749, #4fb8e8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.blob-shape {
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}
.card-hover-effect {
  transition: all 0.3s ease;
}
.card-hover-effect:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.animated-border {
  position: relative;
}
.animated-border::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #007749;
  transition: width 0.3s ease;
}
.animated-border:hover::after {
  width: 100%;
}
.parallax {
  transform: translateY(var(--parallax-offset));
  transition: transform 0.1s ease;
}
#contact {
  background-image: url("./assets/phone.jpg");
  object-fit: cover;
  background-size: cover;
  background-color: rgba(
    255,
    255,
    255,
    0.6
  ); /* Adjust the alpha value (0.5) for desired opacity */
  background-blend-mode: lighten;
}
@media (max-width: 443px) {
  .top-data {
    font-size: 10px;
  }
}
.team-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .team-wrapper {
      flex-direction: row;
      align-items: stretch; /* Make items stretch to equal height */
  }
  .team-text-container {
      margin-left: 2rem;
  }
  .team-image-container{
     flex: 1; /* Allow the image container to take up available space */
     max-width: 50%; /* Ensure the image doesn't get too large */
  }
}


.team-image-container {
  /*width: 500px; !* Increased size *!*/
  /*height: 400px;  Increased size */
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Added box-shadow transition */
}

.team-image-container:hover {
  transform: translateY(-0.5rem) scale(1.03);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Increased shadow on hover */
}

.team-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-image-container:hover .team-image {
  transform: scale(1.1);
}

.team-image-overlay {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  transition: opacity 0.3s ease;
  border-radius: 0.75rem;
  cursor: pointer;
}


.team-text-container {
  background-color: white;
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /*width: 50%; !* Adjusted width *!*/
}

.team-text-container p{
  line-height: 1.7;
  color: #555;
}

.team-text-container p strong{
  color: #333;
}