html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
* {
  margin: 0px;
  padding: 0px;
}
body {
  overflow-x: hidden;
  /* font-family: "Helvetica Neue" !important;  */
  font-family: "Plus Jakarta Sans", sans-serif;
}

:root {
  --primary-color: #57b33e;
  --secondary-color: #f9f6f3;
  --bg-color: #fffaf0;
  --black: #1f242c;
  --white: #fff;
}

/* for all css start */
section {
  max-width: 100%;
  overflow-x: hidden;
}

.text-justify {
  text-align: justify;
}
.dropdown-toggle::after {
  display: none !important;
}
.main-title p {
  color: var(--primary-color);
  font-weight: 700;
}
.main-title h1 {
  color: var(--primary-color);
  font-size: 45px;
  font-weight: 800;
  line-height: 74px;
  color: var(--black);
}
.section-text {
  font-size: 16px;
  color: var(--black);
}
/* for all css end */

/* top bar */
.top-bar {
  background-color: #1f242c;
  color: var(--white);
}

.top-bar a {
  text-decoration: none;
  color: var(--white);
}

/* Nav Bar start*/

.logo {
  height: 50px;
  width: auto;
  max-width: 100%;
}
.navbar-logo {
  width: 120px;
  position: absolute;
  bottom: 20px;
}

.navbar-nav {
  margin: 0 auto;
}
.navbar-nav .nav-item {
  margin: 0 20px; /* Add horizontal spacing */
}
.nav-item a {
  color: #000000;
  font-weight: 500;
}
.nav-item a:hover {
  color: var(--primary-color);
}
.navbar-brand img {
  height: 40px;
}
.language-dropdown {
  margin-left: auto;
}

.globe-icon {
  color: var(--black);
  font-size: 1.2em;
}
.navbar-toggler,
.navbar-toggler:focus {
  border: none !important;
  box-shadow: none;
}

.navbar {
  /* position: fixed; */
  top: 25;
  width: 100%;
  z-index: 1000;
  background-color: white;
  padding: 5px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-item.dropdown {
  position: relative;
}

.nav-item a {
  color: #000;
  font-weight: 500;
  transition: color 0.3s ease-in-out;
}

.nav-item .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 7px;
  min-width: 200px;
  z-index: 1000;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-item:hover .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.mobile-dropdown-toggle {
  margin-left: 5px;
  cursor: pointer;
}
.nav-item a:hover {
  color: var(--primary-color);
}
.navbar-brand img {
  height: 80px;
  border-radius: 8px;
}

.dropdown-item.active,
.dropdown-item:active {
  color: var(--bs-dropdown-link-active-color);
  text-decoration: none;
  background-color: #fff;
}

/* Nav Bar end*/

/* button start */
.main-btn {
  display: inline-block;
  border: none;
  outline: none !important;
  background-color: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 17px 25px;
  transition: all 0.4s ease-in-out;
  border-radius: 7px;
  position: relative;
  overflow: hidden;
  text-align: center;
  line-height: 1;
  z-index: 1;
  cursor: pointer;
}

.main-btn i {
  margin-left: 10px;
  transition: transform 0.4s ease;
}

/* Attractive hover effect */
.main-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
}

.main-btn:hover::before {
  left: 100%;
}

.main-btn:hover {
  color: var(--white);
  /* background: #1e3d60; */
  transform: scale(1.05);
}

.main-btn:hover i {
  transform: translateX(8px);
}

@media (max-width: 767px) {
  .main-btn {
    padding: 20px 32px;
  }
}
@media (max-width: 575px) {
  .main-btn {
    padding: 18px 30px;
    font-size: 14px;
  }
}
/* button end */

/* ḥome page banner start */

.banner-left {
  background-image: url(../images/regular-banner-image.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  z-index: 0;
}
.banner-main-title p {
  color: var(--primary-color);
  font-weight: 700;
}
.banner-main-title h1 {
  color: var(--primary-color);
  font-size: 80px;
  font-weight: 800;
  color: var(--black);
}
.banner-text {
  font-size: 18px;
}
.banner-left-content {
  padding-left: 130px; /* Default for laptop/desktop */
}
.banner-right img {
  max-height: 620px;
  object-fit: cover;
}
.counter-box {
  transition: transform 0.3s;
  border: 0.5px solid var(--primary-color);
  border-radius: 8px;
  width: 250px;
}
.counter-box:hover {
  transform: translateY(-5px);
}
.counter {
  font-size: 2.5rem;
  color: var(--primary-color);
  font-weight: 700;
}
.counter::after {
  content: "+";
  margin-left: 10px;
}
/* home page banner end */

/* home page about us start */
.about-us-left img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.about-us-left {
  position: relative; /* makes it a reference for absolute children */
}

.overlay-text {
  position: absolute;
  width: 370px;
  top: 20px;
  right: 17px;
  background: var(--white);
  border-right: 5px solid var(--primary-color);
  color: var(--black);
  padding: 8px 15px;
  border-radius: 6px;
  font-size: 16px;
}

.progress {
  height: 6px;
  background-color: #e9ecef;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}
.progress-bar {
  background-color: var(--primary-color); /* Green color */
  width: 0;
  transition: width 2s ease;
}
.progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  font-weight: 500;
}

.circle-progress-section {
  display: flex;
  flex-direction: row;
  gap: 40px;
  margin-bottom: 30px; /* spacing so other sections don’t overlap */
}

.circle-progress-container {
  display: flex;
  align-items: center;
  gap: 20px;
}

.circle-progress-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
  flex-shrink: 0;
}

.circle-progress-wrapper svg {
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
}

.circle-progress-wrapper circle {
  fill: none;
  stroke-width: 12;
  stroke-linecap: round;
}

.circle-progress-bg {
  stroke: #e6e6e6;
}

.circle-progress-bar {
  stroke: var(--primary-color); /* Green color */
  stroke-dasharray: 314; /* Circumference (2 * π * r) => 2*3.14*50 */
  stroke-dashoffset: 314;
  transition: stroke-dashoffset 1s ease;
}

.circle-progress-wrapper .circle-progress-percent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 22px;
  font-weight: bold;
  color: var(--black);
}

.circle-progress-text {
  font-size: 18px;
  font-weight: 600;
}
/* home page about us end */

/* home page why us start */
.why-us-right img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
/* home page why us end */

/* home page our service start */
.our-services {
  background-image: url(../images/section-background-image.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.card {
  background: #fff;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-align: left;
}

.card a {
  text-decoration: none;
  color: var(--primary-color);
}

.card a:hover {
  text-decoration: none;
  color: var(--primary-color);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.card-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 6px;
}
.card-image h5 {
  font-size: 20px;
}

.read-more {
  display: inline-block;
  margin-top: 10px;
  font-weight: 600;
  color: #57b33e;
  text-decoration: none;
  transition: all 0.3s ease;
}

.read-more span {
  transition: transform 0.3s ease;
}

.read-more:hover span {
  transform: translateX(5px);
}
/* home page our service end */

/* home page our product start */
.our-product {
  background-image: url(../images/section-background-image.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
/* home page our product end */

/* home page mission vision start */
/* .mission-vision {
  background-image: url(../images/regular-banner-image.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
} */
.mission-vision-content {
  padding: 10px 25px;
  border: 0.5px solid var(--primary-color);
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.mission-vision-content h5 {
  font-size: 22px;
}

.mission-vision-content img {
  background-color: #d7e9d2;
  border-radius: 50%;
  margin-bottom: 3px;
  padding: 10px;
}
.image-wrapper {
  width: 100%;
  height: 100%; /* take full height of col */
  max-height: 500px; /* control image height */
  overflow: hidden;
  border-radius: 12px;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* keeps ratio and fills the box */
}
/* home page mission vision end */


/* breadcrum start */
.custom-breadcrumb .breadcrumb-item a {
  color: #fff;
  text-decoration: none;
}

.custom-breadcrumb .breadcrumb-item a:hover {
  text-decoration: underline;
}

.custom-breadcrumb .breadcrumb-item.active {
  color: var(--primary-color);
  font-weight: 600;
}

/* breadcrums end */


/* faq start */
 .accordion-item {
    border: none;
    margin-bottom: 10px;
    background-color: #f8f9fa; /* ash color background */
    border-radius: 6px;
    overflow: hidden;
  }

  .accordion-button {
    background-color: #f8f9fa;
    font-weight: 600;
    font-size: 1rem;
    color: #000; /* black text */
    box-shadow: none !important;
  }

  .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23008000' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-90deg);
  }

  .accordion-button:not(.collapsed)::after {
    transform: rotate(0deg);
  }

  .accordion-body {
    background: #fff;
    color: #555; /* muted text */
    padding: 15px 20px;
  }


  .accordion-button:focus {
    box-shadow: none; /* remove blue focus outline */
}

.accordion-button {
    outline: none; /* remove default outline */
}

.accordion-button:not(.collapsed) {
    background-color: #f8f9fa; /* keep background same when open */
    color: #000; /* keep text black */
}
/* faq end */




/* epc start */
.breadcrumb-banner {
  background-image:
  linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
  url(../images/breadcrums-bg.jpg);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
/* epc end */


/* services information start */

.services .image-wrapper {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.services .image-wrapper img {
  transition: transform 0.5s ease;
}

.services .image-wrapper img:hover {
  transform: scale(1.05);
}

.services p.text-muted {
  font-size: 1rem;
  line-height: 1.7;
  color: #6c757d;
}

.services ul li {
  font-size: 1rem;
  line-height: 1.6;
  position: relative;
}

.services ul li i {
  font-size: 1.2rem;
  vertical-align: middle;
}



.feature-icon{
  background-color: var(--primary-color);
  width: 50px;
  height: 50px;
}
.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  background-color: var(--primary-color); /* Bootstrap green */
  border-radius: 50%;
  margin-right: 10px;
}

.check-icon img {
  display: block;
  width: 14px; /* adjust as needed */
  height: 14px;
}
.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-card .icon img {
  display: block;
}

/* services information end */




/* product information start */

.product .image-wrapper {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.product .image-wrapper img {
  transition: transform 0.5s ease;
}

.product .image-wrapper img:hover {
  transform: scale(1.05);
}

.product p.text-muted {
  font-size: 1rem;
  line-height: 1.7;
  color: #6c757d;
}

.product ul li {
  font-size: 1rem;
  line-height: 1.6;
  position: relative;
}

.product ul li i {
  font-size: 1.2rem;
  vertical-align: middle;
}

/* product information end */







/* privacy-policy start */
.privacy-policy-content {
  padding: 10px 25px;
  border: 0.5px solid var(--primary-color);
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.privacy-policy-content h5 {
  font-size: 22px;
}

.privacy-policy-content span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #d7e9d2;
  border-radius: 50%;
  font-weight: bold;
  font-size: 18px;
}

/* privacy-policy end */

/* terms-conditions start */
.terms-conditions-content {
  padding: 10px 25px;
  border: 0.5px solid var(--primary-color);
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.terms-conditions-content h5 {
  font-size: 22px;
}

.terms-conditions-content span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #d7e9d2;
  border-radius: 50%;
  font-weight: bold;
  font-size: 18px;
}

/* terms-conditions end */

/* contact form start */
.contact-form-section {
  background: #edffedd6;
}

.contact-form-info h2 {
  font-size: 40px;
  font-weight: 700;
  color: #0a183d;
}

.contact-form-details {
  margin-top: 20px;
}

.contact-form-details li {
  list-style: none;
  margin-bottom: 15px;
  font-size: 16px;
  color: #333;
}
.getdirection {
  color: var(--primary-color);
}
.contact-form-details a {
  text-decoration: none;
  color: var(--black);
}

.contact-form-control {
  border: none;
  border-bottom: 1px solid #ddd;
  border-radius: 0;
  background: transparent;
  box-shadow: none !important;
}

/* Input fields */
.contact-form-control {
  border-bottom: 1.2px solid #a4a4a4;
  padding: 10px 12px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease;
}

/* Remove border on focus */
.contact-form-control:focus {
  border-color: #28a745;
  box-shadow: none;
  outline: none;
}

/* Icons inside input */
.input-icon {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  pointer-events: none;
}

/* Adjust icon for textarea */
.input-icon.top-10 {
  top: 18px;
}

/* Ensure padding-left for icons */
.ps-5 {
  padding-left: 40px !important;
}

/* contact form end */

/* home page footer start */
.footer {
  background-color: #1f242b;
  color: #ccc;
  padding: 60px 0px 20px 0px;
}
.footer h5 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 20px;
}
.footer-img img {
  border-radius: 8px;
}
.footer a {
  color: #ccc;
  text-decoration: none;
}
.footer a:hover {
  color: var(--primary-color);
}
.social-icons a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin-right: 8px;
  border-radius: 50%;
  background: #2d333b;
  color: #fff;
  font-size: 18px;
  transition: 0.3s;
}
.social-icons a:hover {
  background: var(--primary-color);
  color: var(--black);
}
.map-box iframe {
  width: 100%;
  height: 220px;
  border: none;
  border-radius: 10px;
}
.footer-link li {
  padding-bottom: 10px;
}
.copyrights {
  padding-top: 10px;
  margin-top: 30px;
  border-top: 1px solid #7b7b7b;
}
/* home page footer end */

/* whatsapp start */
#whatsappBtn {
  position: fixed;
  bottom: 100px;
  right: 25px;
  z-index: 1000;
  background-color: #25d366;
  border: none;
  border-radius: 50%;
  text-decoration: none;
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  font-size: 30px;
}
.fa-whatsapp:before {
  color: white;
}
/* whatsapp end */

/* up arrow start */
/* Scroll Button */
.scroll-up {
  cursor: pointer;
  border-radius: 50px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  position: fixed;
  right: 25px;
  bottom: 35px;
  height: 50px;
  width: 50px;
  transition: all 0.4s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scroll-up.active-scroll {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* SVG Circle */
.scroll-up svg.scroll-circle path {
  stroke: var(--primary-color);
  stroke-width: 4px;
  fill: none;
  transition: stroke-dashoffset 50ms linear;
}

/* Arrow Icon */
.scroll-up .arrow-up {
  position: absolute;
  width: 18px;
  height: 18px;
  fill: var(--primary-color);
  pointer-events: none;
}
/* up arrow end */

/* Media Queries for Responsiveness */
@media (max-width: 1200px) {
  .navbar-nav .nav-item {
    margin: 10px 10px; /* Add horizontal spacing */
  }
}

@media (max-width: 1024px) {
  .banner-left-content {
    padding-left: 90px;
  }
}

@media (min-width: 1024) {
}

@media (max-width: 992px) {
  .dropdown-toggle::after {
    display: none !important;
  }

  .nav-item a:hover {
    color: #080808;
  }

  .navbar-collapse {
    position: fixed;
    top: 0;
    left: -100%;
    width: 88%;
    height: 100vh;
    background-color: #fff;
    transition: left 0.3s ease-in-out;
    z-index: 1000;
    padding-top: 60px;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  }

  .navbar-collapse.show {
    left: 0;
  }

  .navbar-nav .nav-item {
    margin: 5px 30px;
  }

  .dropdown-menu {
    display: none !important;
    position: relative !important;
    transform: none !important;
    width: 100%;
    padding-left: 20px;
    border-left: 2px solid #ff8e3e;
    margin-top: 5px;
    background: rgba(255, 142, 62, 0.05);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    border: none;
    box-shadow: none;
  }

  .nav-item.dropdown.show .dropdown-menu {
    display: block !important;
    max-height: 500px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 0px;
  }

  .dropdown-item {
    padding: 8px 15px;
    transform: translateX(-20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .nav-item.dropdown.show .dropdown-item {
    transform: translateX(0);
    opacity: 1;
  }

  .nav-item.dropdown.show .dropdown-item:nth-child(1) {
    transition-delay: 0.1s;
  }
  .nav-item.dropdown.show .dropdown-item:nth-child(2) {
    transition-delay: 0.15s;
  }
  .nav-item.dropdown.show .dropdown-item:nth-child(3) {
    transition-delay: 0.2s;
  }
  .nav-item.dropdown.show .dropdown-item:nth-child(4) {
    transition-delay: 0.25s;
  }
  .nav-item.dropdown.show .dropdown-item:nth-child(5) {
    transition-delay: 0.3s;
  }

  .nav-item.dropdown.show .fa-plus:before {
    content: "\f068";
  }
  .advantage-card-main {
    margin-top: 0;
    left: 0;
  }

  .founder-quote-icon {
    margin: 0 auto 20px auto;
  }
  .founder-name,
  .founder-position {
    text-align: center;
  }
  .ready {
    margin-bottom: 15px;
  }
  .contact-form-info {
    text-align: center;
    margin-bottom: 40px;
  }
}

@media (min-width: 992px) {
  .ready {
    margin-bottom: 99px;
  }
}

@media (max-width: 768px) {
  .banner-left-content {
    padding-left: 30px;
  }

  .main-title h1 {
    color: var(--primary-color);
    font-size: 30px;
    font-weight: 800;
    line-height: 35px;
    color: var(--black);
  }
  .section-text {
    font-size: 15px;
    color: var(--black);
  }
  .top-bar {
    display: none;
  }

  .banner-main-title h1 {
    color: var(--primary-color);
    font-size: 50px;
    font-weight: 800;
    color: var(--black);
  }
  .banner-text {
    font-size: 16px;
  }

  .navbar-nav .nav-item {
    margin: 4px 30px;
  }
  .about-us-left img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    max-height: 400px;
    object-fit: cover;
  }
  .navbar-logo {
    width: 120px;
    position: static;
    bottom: 20px;
  }
  .counter-box {
    transition: transform 0.3s;
    border: 0.5px solid var(--primary-color);
    border-radius: 8px;
    width: 170px;
  }
}

@media (min-width: 768px) {
  .s-contact .content-left,
  .s-contact .content-right {
    flex: 1 1 48%;
  }

  .s-contact .list {
    flex-direction: row;
    justify-content: space-between;
  }

  .s-title {
    font-size: 48px;
  }
  .footer-section h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 10px;
  }
}

@media (max-width: 576px) {
  .circle-progress-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
  }
}

@media (min-width: 576px) {
}

@media (max-width: 767.98px) {
  .tab-nav-wrapper {
    position: static;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) {
}
