@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/* ROOT */
:root {
  --primaryColor: #74ba4e;
  --secondaryColor: #f89833;
  --darkGreen: #051f20;
  --black: #000000;
  --paraFont: 16px;
  --h1Text: 22px;
  --h2Text: 20px;
}

/* Color */
.primary-text {
  color: var(--primaryColor);
}

.secondary-text {
  color: var(--secondaryColor);
}

.bg-darkGreen {
  background-color: var(--darkGreen);
}

.bg-lightGreen {
  background-color: #daf1de;
}

/* Font */
.inter-regular {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.inter-semibold {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

/* Header(Nav bar) */
.header-icon {
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}

.fs-14 {
  font-size: 18px !important;
}

/* Statistics */
.statistics,
.bg-gray {
  background-color: #f1f1f1;
}

.statistics .counting {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-size: 38px;
}

.icon-holders {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
}

.icon-box .bi {
  font-size: 30px !important;
}

/* Portfolio */
.Portfolio-tab .nav-pills .nav-link.active {
  background-color: #74ba4e !important;
  border-radius: 50px;
  color: #ffffff !important;
}

.Portfolio-tab .nav-pills .nav-link {
  border-radius: 50px;
  color: #000000 !important;
}
.image-holder {
  /* width: 200px; */
  height: 300px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.image-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease-in-out;
  display: block;
}

.image-holder:hover img {
  transform: scale(1.1);
}

.image-content-holder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* overlay effect */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-holder:hover .image-content-holder {
  opacity: 1;
}

.image-content-holder .bi {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.image-content-holder h6 {
  color: #fff;
  margin: 0;
}

/* .image-holder {
  width: 200px;
  height: 300px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s;
}
.image-content-holder {
  top: -20px;
  left: 0;
  right: 0;
  position: absolute;
  text-align: center;
  display: none;
  transition: all;
}
.image-holder:hover .image-content-holder {
  display: block;
  transition: all;
}
.image-holder:hover img {
  transform: scale(1.5);
}
.image-content-holder .bi {
  font-size: 4rem;
  color: #ffffff;
  text-align: center;
}

.image-content-holder h6 {
  text-align: center;
  color: #ffffff;
  text-decoration: none;
} */

/* Swiper js */
.testimonial-card {
  background-color: var(--secondaryColor);
  border-radius: 5px;
  padding: 40px 25px 25px;
  position: relative;
}

.testimonial__job {
  font-weight: normal;
  font-size: 10px;
  line-height: 10px;
  letter-spacing: 0.5px;
}

body .testimonial__name {
  /* font-weight: bold; */
  font-size: 13px !important;
  line-height: 12px;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}

.testimonial__img {
  display: inline-block;
  width: 30px;
  margin-right: 10px;
}

.testimonial__img img {
  vertical-align: bottom;
  border-radius: 50%;
  width: 100%;
  max-width: 100%;
}

.testimonial__info {
  display: inline-block;
}
/* .swiper-button-next,
.swiper-button-prev {
  width: 28px !important;
  height: 28px !important;
} */
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 32px !important;
}
.custom-btn-orange {
  border: none;
  border-radius: 50px;
  padding: 6px 12px;
  background-color: #f89833;
  color: white;
  font-weight: 600;
  letter-spacing: 1px;
}
