@font-face {
  font-family: 'Calibri';
  src: local('Calibri'), url('/fonts/Calibri\ Regular.ttf') format('woff');
  /* Add additional font formats if needed (e.g., woff2, ttf, etc.) */
}

/********** Template CSS **********/
body {
   font-family: 'Calibri', sans-serif;
}
p {
   font-family: 'Calibri', sans-serif;
}
:root {
  --primary: #348e38;
  --secondary: #525368;
  --light: #e8f5e9;
  --dark: #0f4229;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}

h1,
.h1,
h2,
.h2,
.fw-bold {
  font-weight: 700 !important;
   font-family: 'Calibri', sans-serif;
}

h3,
.h3,
h4,
.h4,
.fw-medium {
  font-weight: 600 !important;
   font-family: 'Calibri', sans-serif;
}

h5,
.h5,
h6,
.h6,
.fw-semi-bold {
  font-weight: 500 !important;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  transition: 0.5s;
  font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
  color: var(--light);
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

/*** Navbar ***/
.navbar.sticky-top {
  top: -100px;
  transition: 0.5s;
}

/* .navbar .navbar-brand,
.navbar a.btn {
    height: 80px

} */

.navbar .navbar-nav .nav-link {
  margin-right: 35px;
  padding: 25px 0;
  color: var(--dark);
  font-size: 18px;
  font-weight: 500;
  outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--primary);
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }

  .navbar .navbar-nav {
    border-top: 1px solid #eeeeee;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }

  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}

/*** Header ***/
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(15, 66, 41, 0.8);
  z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
  width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 3rem;
  background-color: var(--primary);
  border: 10px solid var(--primary);
}

@media (max-width: 768px) {
  #header-carousel .carousel-item {
    position: relative;
    min-height: 450px;
  }

  #header-carousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.page-header {
  background: linear-gradient(rgba(15, 66, 41, 0.6), rgba(15, 66, 41, 0.6)),
    url(../img/aboutus.JPG) center center no-repeat;
  background-size: cover;
  height: 219px;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
  font-size: 18px;
  color: var(--light);
}

/*** Top Feature ***/
@media (min-width: 991.98px) {
  .top-feature {
    position: relative;
    margin-top: -80px;
    z-index: 1;
  }
}

/*** Facts & Quote ***/
.facts,
.quote {
  background: rgba(15, 66, 41, 0.6);
}

/*** Service ***/
.service-item {
  position: relative;
  text-align: center;
}

.service-item .service-img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: -1;
}

.service-item .service-img img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  object-fit: cover;
  transform: scale(1.2);
  transition: 0.3s;
  z-index: -1;
}

.service-item:hover .service-img img {
  transform: scale(1);
}

.service-item .service-text {
  background: #ffffff;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.service-item:hover .service-text {
  background: rgba(15, 66, 41, 0.6);
}

.service-item .service-text h4,
.service-item .service-text p {
  transition: 0.3;
}

.service-item:hover .service-text h4 {
  color: #ffffff;
}

.service-item:hover .service-text p {
  color: var(--light);
}

.service-item .service-text .btn-square {
  width: 100px;
  height: 100px;
  background: transparent;
  transition: 0.5s;
}

.service-item:hover .service-text .btn-square {
  background: var(--light);
}

.service-item .service-text .btn {
  width: 31px;
  height: 31px;
  display: inline-flex;
  align-items: center;
  color: var(--dark);
  background: var(--light);
  white-space: nowrap;
  overflow: hidden;
  transition: 0.3s;
}

.service-item:hover .service-text .btn {
  width: 112px;
}

/*** Project Portfolio ***/
#portfolio-flters {
  display: inline-block;
  background: var(--light);
  padding: 10px 15px;
}

#portfolio-flters li {
  display: inline-block;
  font-weight: 500;
  color: var(--primary);
  cursor: pointer;
  transition: 0.5s;
  border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
  color: var(--dark);
  border-color: var(--dark);
}

.portfolio-inner {
  position: relative;
  overflow: hidden;
}

.portfolio-inner::before,
.portfolio-inner::after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(15, 66, 41, 0.6);
  transition: 0.5s;
}

.portfolio-inner::after {
  left: auto;
  right: 0;
}

.portfolio-inner:hover::before,
.portfolio-inner:hover::after {
  width: 50%;
}

.portfolio-inner .portfolio-text {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  z-index: 3;
  opacity: 0;
}

.portfolio-inner:hover .portfolio-text {
  transition-delay: 0.3s;
  opacity: 1;
}

.portfolio-inner .portfolio-text .btn {
  background: var(--light);
  color: var(--primary);
}

.portfolio-inner .portfolio-text .btn:hover {
  background: var(--primary);
  color: var(--light);
}

/*** Team ***/
.team-item {
  position: relative;
  overflow: hidden;
}

.team-item .team-text {
  position: absolute;
  width: calc(100% - 45px);
  left: -100%;
  bottom: 45px;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 0 4px 4px 0;
  opacity: 0;
  transition: 0.5s;
}

.team-item:hover .team-text {
  left: 0;
  opacity: 1;
}

.team-item .team-social .btn {
  background: var(--light);
  color: var(--primary);
}

.team-item .team-social .btn:hover {
  background: var(--primary);
  color: var(--light);
}

.team-item .team-img .team-social {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  z-index: 3;
  opacity: 0;
}

.team-item:hover .team-img .team-social {
  transition-delay: 0.3s;
  opacity: 1;
}

/*** Testimonial ***/

/*.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}*/

.testimonial-carousel .owl-nav {
  margin-top: 30px;
  display: flex;
  display: none;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  margin-right: 15px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: var(--light);
  border-radius: 4px;
  font-size: 22px;
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  background: var(--primary);
  color: var(--light);
}

/*** Footer ***/
.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: var(--light);
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: var(--primary);
  letter-spacing: 1px;
  box-shadow: none;
}

.copyright {
  color: var(--light);
  background: #0c110d;
}

.copyright a {
  color: #ffffff;
}

.copyright a:hover {
  color: var(--primary);
}

span {
  font-family: "calibri", serif !important;
  line-height: 1.6;
  font-size: 18px;
}
.page_title {
  font-size: 36px;
  /*text-shadow: rgb(20, 80, 106) 3px 0px 0px,*/
  /*  rgb(20, 80, 106) 2.83487px 0.981584px 0px,*/
  /*  rgb(20, 80, 106) 2.35766px 1.85511px 0px,*/
  /*  rgb(20, 80, 106) 1.62091px 2.52441px 0px,*/
  /*  rgb(20, 80, 106) 0.705713px 2.91581px 0px,*/
  /*  rgb(20, 80, 106) -0.287171px 2.98622px 0px,*/
  /*  rgb(20, 80, 106) -1.24844px 2.72789px 0px,*/
  /*  rgb(20, 80, 106) -2.07227px 2.16926px 0px,*/
  /*  rgb(20, 80, 106) -2.66798px 1.37182px 0px,*/
  /*  rgb(20, 80, 106) -2.96998px 0.42336px 0px,*/
  /*  rgb(20, 80, 106) -2.94502px -0.571704px 0px,*/
  /*  rgb(20, 80, 106) -2.59586px -1.50383px 0px,*/
  /*  rgb(20, 80, 106) -1.96093px -2.27041px 0px,*/
  /*  rgb(20, 80, 106) -1.11013px -2.78704px 0px,*/
  /*  rgb(20, 80, 106) -0.137119px -2.99686px 0px,*/
  /*  rgb(20, 80, 106) 0.850987px -2.87677px 0px,*/
  /*  rgb(20, 80, 106) 1.74541px -2.43999px 0px,*/
  /*  rgb(20, 80, 106) 2.44769px -1.73459px 0px,*/
  /*  rgb(20, 80, 106) 2.88051px -0.838247px 0px;*/
  /* margin-top: 110px; */
}

/* custom style  */
/* about us home page section  */

.journey-section {
  background-color: #f9f9f9;
  padding: 50px 0;
}
.journey-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.journey-image {
  max-width: 100%;
  height: auto;
}

.image-overlay {
  position: relative;
}
.image-overlay img {
  width: 80%;
}

.image-overlay img:last-child {
  position: absolute;
  bottom: -50px;
  right: 20px;
  width: 50%;
}

.width-fit-content {
  width: fit-content;
}

.service-card {
  position: relative;
  text-align: center;
  margin-bottom: 70px;
}
.service-card img {
  width: 100%;
  border-radius: 5px;
  min-height: 250px;
  max-height: 250px;
  object-fit: cover;
}
.service-card .card-title {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 1);
  padding: 10px 20px;
  border: 2px solid #28a745;
  border-radius: 5px;
  font-weight: bold;
  width: max-content;
}
.service-card a {
  display: block;
  margin-top: 30px;
  color: #28a745;
  text-decoration: none;
}

.service_card_btn {
  margin: 30px 0 0;
}

.services-section {
  padding: 70px 0;
}

.card_content {
  margin: 50px 0 0 0;
}

/* why choose section design  */

.choose_card img {
  width: 50%;
  margin: 0 0 30px;
  height: 100px;
  object-fit: contain;
}

.choose_card {
  margin: 0px 0 0;
}

.choose_inner {
  padding: 50px 0;
  border-bottom: 1px solid;
}

.choose_inner:nth-child(2) {
  border: none;
}

/* testimonials style  */

.card-title {
  color: #262626;
  font-size: 1.5em;
  line-height: normal;
  font-weight: 700;
  margin-bottom: 0.5em;
}

.small-desc {
  font-size: 1em;
  font-weight: 400;
  line-height: 1.5em;
  color: #452c2c;
}

.small-desc {
  font-size: 1em;
}

.go-corner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 3em;
  height: 3em;
  overflow: hidden;
  top: 0;
  right: 0;
  background: linear-gradient(135deg, #6ac862, #386c43);
  border-radius: 0 4px 0 52px;
}

.go-arrow {
  margin-top: -4px;
  margin-right: -4px;
  color: white;
  font-family: courier, sans;
}

.card {
  display: block;
  position: relative;
  /*max-width: 300px;
  max-height: 350px;
  min-height: 400px;*/
  /* overflow-y: auto; */
  background-color: #fff;
  border-radius: 10px;
  padding: 2em 1.2em;
  margin: 12px;
  text-decoration: none;
  z-index: 0;
  overflow: hidden;
  /* background: linear-gradient(to bottom, #c3e6ec, #a7d1d9); */
  font-family: Arial, Helvetica, sans-serif;
}

/* .card:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -16px;
  right: -16px;
  background: linear-gradient(135deg, #364a60, #384c6c);
  height: 32px;
  width: 32px;
  border-radius: 32px;
  transform: scale(1);
  transform-origin: 50% 50%;
  transition: transform 0.35s ease-out;
}

.card:hover:before {
  transform: scale(28);
}

.card:hover .small-desc {
  transition: all 0.5s ease-out;
  color: rgba(255, 255, 255, 0.8);
} */

.card:hover {
  /* transition: all 0.5s ease-out; */
  /* color: #ffffff; */
  box-shadow: 4px 2px 2px rgb(203, 255, 203);
}

/* style for banner  */

.banner {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url("../img/banner.jpg") no-repeat center center/cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 66, 41, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
}

.content {
  color: white;
}

.heading1 {
  margin: 0 0 50px;
}

.heading1 h1 {
  font-size: 50px;
  color: #ffffff;
  line-height: 60px;
}

.heading2 {
  font-size: 2em;
  overflow: hidden; /* Ensures the text is hidden initially */
  border-right: 0.15em solid rgb(30, 226, 0); /* Cursor effect */
  white-space: nowrap; /* Prevents the text from wrapping */
  animation: typewriter 4s steps(44) 1s 1 normal both,
    blinkTextCursor 500ms steps(44) infinite normal;
  color: #fff;
}

/* Keyframes for the typewriter animation */
@keyframes typewriter {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* Keyframes for the cursor blink effect */
@keyframes blinkTextCursor {
  from {
    border-right-color: rgb(30, 226, 0);
  }
  to {
    border-right-color: transparent;
  }
}

/* Add custom zoom-out-fade animation */
/* [data-aos="zoom-out-fade"] {
  opacity: 0;
  transform: scale(1.2);
  transition-property: opacity, transform;
}

[data-aos="zoom-out-fade"].aos-animate {
  opacity: 1;
  transform: scale(1);
} */

/* Flip animation for the border */
/* @keyframes flipBorder {
  0%,
  100% {
    border: 2px solid white;
    transform: rotateY(0deg);
  }
  50% {
    border: 2px solid white;
    transform: rotateY(180deg);
  }
} */

/* abou section style  */

.about-us-section {
  padding: 50px 0;
  background-color: #f8f9fa;
}
.about-us-section .heading {
  font-size: 2.5em;
  margin-bottom: 20px;
  font-weight: bold;
}
.about-us-section .content {
  font-size: 1.1em;
  line-height: 1.6;
  color: #0c110d;
}
.about-us-section img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}
