/* Home page */
/* Carousel style */
/* Product section style */
/* Serve section style */
/* Home-about section style */
/* Testimonial section style */
/* Video section style */


p,
a {
  font-family: "Inria Sans", sans-serif;
  font-size: 18px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Afacad", sans-serif;
  color: #00793A;
  font-weight: bold;
}

.explore-btn {
  margin-top: 20px;
  width: fit-content;
  border: 2px solid transparent;
  border-radius: 30px;
  background-image:
    linear-gradient(white, white),
    /* inner fill */
    linear-gradient(to right, #00793A, #ffc107);
  /* border gradient */
  background-origin: border-box;
  background-clip: content-box, border-box;
}

.explore-btn a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #00793A;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  padding: 10px 20px;
  border: 3px solid white;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}


.explore-btn .arrow-circle {
  background: #fff;
  color: #00793A;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
}

.nav-top {
  padding: 10px 0;
}

.search-bar {
  border: 1px solid #00793A;
  border-radius: 30px;
  overflow: hidden;
}

.search-bar input,
.search-bar select {
  border: none;
  outline: none;
  padding: 10px;
}

.search-bar button {
  background-color: #00793A;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 0 30px 30px 0;
}

.navbar {
  box-shadow: 2px 2px 3px 2px rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.navbar-nav {
  display: flex;
  gap: 30px;
}


.navbar-nav .nav-link {
  font-size: 18px;
  color: #fff;
  font-weight: bold;
  font-family: "Inria Sans", sans-serif;
}

.navbar-nav .dropdown-menu {
  background-color: #F5F5F5;
}

.dropdown-menu .dropdown-item {
  color: #fff;
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu:hover>.dropdown-menu {
  display: block;
  position: absolute;
  top: 0;
  left: 100%;
  margin-top: 0;
  background-color: #f9f9f9;
  border-radius: 8px;
  min-width: 250px;
  z-index: 1001;
}

.dropdown-submenu .dropdown-menu .dropdown-item {
  color: #333;
}

.top-icons img {
  width: 24px;
  height: 24px;
}

.offcanvas-header {
  background-color: #00793A;
  color: white;
}

.offcanvas .nav-link {
  color: #000;
}

#about-menu {
  width: 1100px;
  left: 50% !important;
  transform: translateX(-35%);
}

#about-menu a.dropdown-item {
  width: 60%;
}

#contact-menu {
  width: 1100px;
  left: 50% !important;
  transform: translateX(-75%);
}

#contact-menu a.dropdown-item {
  width: 60%;
}

.mega-menu {
  width: 1100px;
  left: 50% !important;
  transform: translateX(-50%);
  background-color: #f9f9f9;
  border-radius: 20px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.mega-menu a.dropdown-item {
  padding: 10px 20px;
  border-bottom: 1px solid #ccc;
  color: #333;
  font-weight: 500;
}

.mega-menu a.dropdown-item:hover {
  background-color: #e6f2eb;
  color: #007a33;
}

.mega-menu .row>div {
  padding: 20px;
}

.dropdown:hover>.dropdown-menu {
  display: block;
}

.sub-column {
  display: none;
}

.dropdown-submenu:hover .sub-column {
  display: block;
}

@media (max-width: 992px) {
  .nav-top {
    flex-direction: row;
    justify-content: space-between;
    position: relative;
  }

  .navbar-nav {
    display: flex;
    gap: 10px;
  }

  .search-bar,
  .top-icons {
    display: none;
  }

  .mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
  }

  .mobile-header img {
    height: 50px;
  }

  .mobile-search {
    font-size: 20px;
    cursor: pointer;
    color: #00793A;
  }

  .whatsapp-fixed {
    position: absolute;
    top: 75px;
    right: 20px;
    z-index: 1050;
    display: block;
  }

  .mobile-submenu .mobile-submenu-list {
    display: none;
    list-style: none;
    padding-left: 1rem;
    margin-top: 5px;
    color: #000;
  }

  .offcanvas {
    z-index: 9999;
  }

  .offcanvas-body .dropdown-item {
    color: #00793A;
    border: none;
  }

  .mobile-submenu.open .mobile-submenu-list {
    display: block;
  }

  .submenu-toggle {
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  .mobile-submenu.open .submenu-toggle {
    transform: rotate(90deg);
  }
}


/* Home page - Carousel style */
.home .img1 {
  height: 80vh;
  display: block;
}

.home .img2 {
  display: none;
}

.home .carousel .carousel-title {
  display: none !important;
}

.home .carousel .explore-btn {
  position: absolute;
  bottom: 130px;
  left: 150px;
  z-index: 10;
  border: 2px solid transparent;
  border-radius: 30px;
  background-image:
    linear-gradient(white, white),
    /* inner fill */
    linear-gradient(to right, #00793A, #ffc107);
  /* border gradient */
  background-origin: border-box;
  background-clip: content-box, border-box;
}


.home .carousel .explore-btn a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #00793A;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  padding: 10px 20px;
  border: 3px solid white;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.home .carousel .explore-btn a:hover {
  background-color: #ffc107;
}

.home .carousel .arrow-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #fff;
  color: #FFDD02;
  font-size: 24px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  transition: background-color 0.3s;
}


.home .carousel .small-nav-icon {
  background-color: #FFDD02;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  background-size: 50% 50%;
}


/* Home page - Product section style */

.section-heading {
  position: relative;
  padding-bottom: 10px;
}

.section-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 4px;
  background: #198754;
  border-radius: 2px;
}



.product-section {
  width: 100%;
  overflow: hidden;
}

.product-section h4 {
  color: #00793A;
  font-weight: bold;
}

.product-section .product-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-section .tab-card {
  width: 130px;
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 6px;
  background: #fff;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}

.product-section .tab-card img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  border-radius: 6px;
}

.product-section .tab-card span {
  display: block;
  margin-top: 5px;
  font-weight: bold;
  font-size: 14px;
  color: #333;
}

.product-section .tab-card.active {
  border: 2px solid #ffc107;
  background-color: #fffdd0;
}

.product-section .tab-card.active span {
  color: #00793A;
}


.product-section .explore-btn {
  margin-top: 20px;
  width: fit-content;
  border: 2px solid transparent;
  border-radius: 30px;
  background-image:
    linear-gradient(white, white),
    /* inner fill */
    linear-gradient(to right, #00793A, #ffc107);
  /* border gradient */
  background-origin: border-box;
  background-clip: content-box, border-box;
}

.product-section .explore-btn a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #00793A;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  padding: 10px 20px;
  border: 3px solid white;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.product-section .arrow-circle {
  background: #fff;
  color: #ffc107;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
}

/* Serve section style */
/* .serve .serve-container {
  background-image: url('/assets/images/serve-right.png');
  background-size: cover;
  background-position: center;
}

.serve .serve-container p {
  width: 70%;
}

.serve-section {
  position: relative;
  background-color: #eaf5f0;
  padding: 60px 40px;
}

.serve-content {
  max-width: 60%;
}

.serve-image-container {
  position: absolute;
  right: 300px;
  bottom: -30px;
  width: 220px;
  height: 300px;
}

.serve-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .serve-content {
    max-width: 100%;
    text-align: center;
  }

  .serve-image-container {
    position: static;
    width: 220px;
    height: 300px;
    margin: 30px auto 0;
  }
} */

.serve .serve-container {
  background: #FFFEF0;
  border-radius: 20px;
  border: 2px solid #e2e2e2;
}

.serve .serve-container p {
  width: 100%;
}

/* Home-about section style */

/* .home-about {
  background-image: url('/assets/images/home-about-bg.png');
  background-size: cover;
  background-position: center;
} */

.home-about h3,
h6,
span {
  color: #00793A;
}

.home-about p {
  background: #FFFEF0;
  padding: 15px;
  border-radius: 20px;
  border: 2px solid #e2e2e2;
}

.home-about .explore-btn {
  margin-top: 20px;
  width: fit-content;
  border: 2px solid transparent;
  border-radius: 30px;
  background-image:
    linear-gradient(white, white),
    /* inner fill */
    linear-gradient(to right, #00793A, #ffc107);
  /* border gradient */
  background-origin: border-box;
  background-clip: content-box, border-box;
}

.home-about .explore-btn a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #00793A;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  padding: 10px 20px;
  border: 3px solid white;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.home-about .arrow-circle {
  background: #fff;
  color: #ffc107;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
}



/* Testimonial section style */

.testimonial-wrapper {
  display: none;
}

.testimonial-wrapper.active {
  display: block;
}

.testimonial-card {
  /* background: linear-gradient(to right, #4f8220 0%, #035B2D 28%, #035B2D 81%, #4f8220 100%); */
  /* color: white; */
  background: #F4F4F4;
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  padding: 20px;
}


.video-thumb {
  position: relative;
  width: 100%;
  max-width: 280px;
  cursor: pointer;
}

.video-thumb img {
  border-radius: 10px;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  padding: 10px 14px;
  color: white;
  font-size: 20px;
}

.stars {
  color: gold;
  /* background: linear-gradient(to right, rgb(255, 255, 255, 0.3), rgb(102, 102, 102, 0.3)); */
  padding: 0px 8px;
  border-radius: 20px;
  font-size: 22px;
}

.slider-dots {
  height: 5px;
  background-color: #CDCCCC;
  width: 50px;
  border-radius: 10px;
  display: inline-block;
  margin: 0 3px;
  opacity: 0.5;
  cursor: pointer;
}

.slider-dots.active {
  opacity: 1;
  background: #00793A;
}

/* Video section style */
#videoTrack img {
  cursor: pointer;
}

/* Icons style */

.sticky-icons {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sticky-icons .icon {
  width: 40px;
  height: 40px;
  background-color: #fff;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  font-size: 20px;
  transition: transform 0.2s, background-color 0.3s;
}

.sticky-icons .icon:hover {
  background-color: #FFDD02;
  transform: scale(1.1);
}


@media screen and (max-width: 768px) {
  .product-section .col-md-6>div {
    gap: 10px !important;
  }
}

.csr-bg .img1{
  height: 80vh;
  display: block;
}

.csr-bg .img2{
  display: none;
}

.csr h2 {
  color: #00793A;
  font-weight: bold;
}

.csr p {
  color: #585858;
}

.csr-initiative h2 {
  color: #00793A;
  font-weight: bold;
}


.csr-card {
  width: 240px;
  margin: auto;
  border: 1px solid #e1e0e0;
  border-radius: 20px;
  overflow: hidden;
  background-color: transparent;
  background: #F2F8F5;
}

.csr-card-top {
  background-color: #fff;
  border-radius: 20px;
  padding: 20px 10px 10px;
  height: 180px;
  text-align: center;
  border: 1px solid #e1e0e0;
}

.csr-card-top img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: contain;
}

.csr-title {
  margin-top: 15px;
  font-weight: 600;
  font-size: 14px;
}

.csr-card-bottom {
  background-color: #F2F8F5;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  padding: 12px 0 10px;
  text-align: center;
}

.csr-card:hover .csr-card-bottom {
  background: #00793A;
}

.csr-card:hover {
  background: #00793A;
}

.csr-readmore {
  width: fit-content;
  border: 2px solid transparent;
  border-radius: 30px;
  background-image:
    linear-gradient(white, white),
    /* inner fill */
    linear-gradient(to right, #00793A, #ffc107);
  /* border gradient */
  background-origin: border-box;
  background-clip: content-box, border-box;
  display: inline-flex;
  align-items: center;
}

.csr-readmore a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #00793A;
  color: white;
  font-weight: bold;
  font-size: 14px;
  padding: 5px 10px;
  border: 3px solid white;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.csr-readmore a:hover {
  background-color: #00793A !important;
  color: white !important;
}

.csr-readmore .arrow-circle {
  background: #fff;
  color: #b9bbb9;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.csr-card:hover .csr-readmore {
  width: fit-content;
  border: 2px solid transparent;
  border-radius: 30px;
  background-image:
    linear-gradient(white, white),
    /* inner fill */
    linear-gradient(to right, #00793A, #ffc107);
  /* border gradient */
  background-origin: border-box;
  background-clip: content-box, border-box;
  display: inline-flex;
  align-items: center;
}

.csr-card:hover .csr-readmore a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #00793A;
  color: white;
  font-weight: bold;
  font-size: 14px;
  padding: 5px 10px;
  border: 3px solid white;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}


.csr-card:hover .csr-readmore .arrow-circle {
  background: #fff;
  color: #ffc107;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
}


/* Footer section style */

footer .list-unstyled li a {
  text-decoration: none;
  color: #fff;
  font-size: 18px;
}

footer h6 {
  font-size: 18px;
}



/* Enquiry Form */

.enquiry-slide {
  position: fixed;
  top: 20%;
  right: -100%;
  width: 90%;
  max-width: 350px;
  min-height: 60vh;
  background: white;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
  padding: 20px;
  transition: right 0.4s ease;
  z-index: 9999;
  overflow-y: auto;
  border-radius: 0 0 0 10px;
  margin: 20px;
}

.enquiry-slide.active {
  right: 0 !important;
}


.enquiry-slide .form-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.enquiry-slide .close-btn {
  font-size: 28px;
  cursor: pointer;
}

.enquiry-slide form label {
  margin-top: 10px;
  display: none;
  font-weight: 500;
}

.enquiry-slide form input,
.enquiry-slide form textarea {
  width: 100%;
  padding: 8px;
  margin-top: 8px;
  border: 1px solid #000;
  border-radius: 6px;
  font-size: 12px;
}

.enquiry-slide form textarea {
  height: 80px;
}

.enquiry-slide form button {
  background: #008538;
  color: #fff;
  border: none;
  margin-top: 15px;
  padding: 12px 0;
  width: 100%;
  font-size: 18px;
  border-radius: 6px;
  cursor: pointer;
}

/* Breadcrumb style */

.breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 1rem;
  right: 0;
}

.breadcrumb-item a {
  text-decoration: none;
}

.breadcrumb-item span{
  font-weight: 400;
  font-size: 18px;
}

.breadcrumb-item+.breadcrumb-item::before {
  content: "›";
  /* you can use / or > */
  color: #6c757d;
}


/* Enquiry form / Career page form / Features page form style */

/* Global Modal Overlay */
.global-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  animation: globalFadeIn 0.3s ease-in-out;
}

/* Modal Box */
.global-modal-box {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  width: 90%;
  max-width: 400px;
  text-align: center;
  animation: globalSlideUp 0.3s ease-out;
}

/* Message */
.global-modal-message {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
}

/* OK Button */
.global-modal-btn {
  padding: 8px 18px;
  border: none;
  border-radius: 6px;
  background: linear-gradient(to right, #00793A, #25a864);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

.global-modal-btn:hover {
  background: linear-gradient(to right, #25a864, #00793A);
}

/* Animations */
@keyframes globalSlideUp {
  from {
    transform: translate(-50%, 60%);
    opacity: 0;
  }

  to {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}

@keyframes globalFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}