@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700;800;900&family=Open+Sans:wght@300;400;500;600;700&family=Pacifico&display=swap");
body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
  scroll-behavior: smooth;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff; /* Set button color to white or desired color */
  z-index: 10; /* Ensure buttons are on top of other elements */
  cursor: pointer; /* Indicate buttons are clickable */
}


:root {
  --blue: #66A410;
  --gray: #777777;
  --lightGray: #747474;
  --cream: #f5f7f9;
  --white: #ffffff;
  --black: #000000;
}

a {
  color: #66A410;
  text-decoration: none;
}
.navbar {
  -webkit-transition: background 0.5s ease-in-out, padding 0.5s ease-in-out;
  -moz-transition: background 0.5s ease-in-out, padding 0.5s ease-in-out;
  transition: background 0.5s ease-in-out, padding 0.5s ease-in-out;
}

.navbar-nav .nav-item {
  margin-right: 12px;
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  line-height: 20px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
}
.navbar-nav .nav-item .nav-link {
  color: rgba(255, 255, 255, 0.7);
  transition: 0.3s ease;
  font-weight: 500;
}
.navbar-nav .nav-item .nav-link:hover {
  color: var(--blue);
  transition: 0.3s ease;
}

.navbar .navbar-toggler {
  border: 2px solid var(--white);
  width: 50px;
  height: 35px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.navbar .navbar-toggler .bar {
  width: 30px;
  height: 2px;
  background-color: var(--white);
  display: block;
}
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
  outline: none;
  box-shadow: none;
}

/* Ensure the hero section covers the full screen */
/* Ensure the hero section covers the full screen */
.hero-slider {
  width: 100%; /* Full width */
  height: 100vh; /* Full viewport height */
  position: relative; /* Required for absolute positioning of buttons */
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%; /* Full height */
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image covers the entire section */
}

/* Position navigation buttons */
.swiper-button-prev,
.swiper-button-next {
  color: white; /* Set button color */
  position: absolute; /* Absolutely position the buttons */
  top: 50%; /* Center vertically */
  transform: translateY(-50%); /* Adjust for perfect vertical centering */
  z-index: 10; /* Ensure buttons are above images */
  font-size: 30px; /* Adjust button size */
  background: rgba(0, 0, 0, 0.5); /* Optional: add semi-transparent background to buttons */
  border-radius: 50%; /* Round buttons */
  padding: 10px;
}

.swiper-button-prev {
  left: 20px; /* Position on the left side */
}

.swiper-button-next {
  right: 20px; /* Position on the right side */
}

/* Pagination (optional, you can remove this if not needed) */
.swiper-pagination {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}



.navbar .show,
.navbar .collapsing {
  padding: 2px 20px;
}
.navbar .show .navbar-nav > li > a,
.navbar .collapsing .navbar-nav > li > a {
  color: var(--white) !important;
  font-weight: 500;
  margin-bottom: 5px;
}
.navbar .show .navbar-nav > li > a:hover {
  color: var(--blue);
  transition: 0.3s ease;
}
.navbarScrolled {
  background-color: #66A410 !important;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  padding-top: 0;
  padding-bottom: 0;
  -webkit-transition: background 0.5s ease-in-out, padding 0.5s ease-in-out;
  -moz-transition: background 0.5s ease-in-out, padding 0.5s ease-in-out;
  transition: background 0.5s ease-in-out, padding 0.5s ease-in-out;
}
.navbarScrolled .nav-item .nav-link {
  color: var(--white);
  font-weight: 500;
  transition: 0.3s ease;
}
.navbarScrolled .nav-item .nav-link:hover {
  color: var(--blue) !important;
  transition: 0.3s ease;
}

/*  hero section */
.hero {
  width: 100%;
  height: 100vh;
  padding-top: 120px;
  color: var(--cream);
}
.hero .heading h2 {
  font-size: 50px;
  font-family: "Pacifico";
  color: var(--cream);
  text-align: center;
}
.hero .brath {
  -webkit-animation: breathing 32s ease-out infinite normal;
  animation: breathing 3s ease-out infinite normal;
  color: var(--blue);
}

.hero .text {
  margin-top: 32px;
  text-align: center;
  max-width: 600px;
  font-weight: 500;
}
.hero .intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 400;
  font-size: 14px;
}
.hero .cta {
  display: flex;
  justify-content: space-around;
  width: 100%;
  max-width: 400px;
  margin-top: 30px;
}

@-webkit-keyframes breathing {
  0% {
    opacity: 0.3;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.3;
  }
}
@keyframes breathing {
  0% {
    opacity: 0.3;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.3;
  }
}

/* how it work */
.work {
  padding-top: 80px;
}
.work .heading p {
  text-align: center;
  font-size: 15px;
  color: var(--lightGray);
  margin-bottom: 5px;
}
.work .heading .points span {
  text-align: center;
  margin: 0 5px;
  font-size: 30px;
  font-weight: 400;
}
.work .heading .points .fa-circle {
  font-size: 5px;
}
.Hr-bar {
  width: 100px;
  height: 2px;
  background-color: var(--blue);
  margin-top: 10px;
}
.work .steps {
  margin-top: 50px;
}
.work .steps .box {
  width: 100%;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 30px;
}
.work .steps .box .icon {
  color: var(--blue);
  font-size: 32px;
  padding: 5px;
  border: 2px solid var(--blue);
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
.work .steps .box h3 {
  font-size: 18px;
  margin-top: 8px;
  columns: var(--gray);
}
.work .steps .box p {
  font-size: 13px;
  margin-top: 8px;
  columns: var(--lightGray);
  text-align: justify;
  text-align-last: center;
}

/* getlink */
.getlink {
  background-color: #66A410;
  padding: 16px 0;
}

.getlink p {
  text-align: center;
  color: var(--cream);
  margin-top: 10px;
  font-size: 14px;
}
.getlink .form {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 24px;
}
.getlink .form form {
  width: 90vw;
  max-width: 500px;
  position: relative;
}
.getlink .form form input {
  all: unset;
  width: calc(100% - 24px);
  padding: 8px 12px;
  background-color: #f5f7f944;
  border-radius: 8px;
  color: var(--cream);
}
.getlink .form form input::placeholder {
  color: var(--cream);
  font-size: 14px;
}

.getlink .form form button {
  all: unset;
  color: var(--cream);
  cursor: pointer;
  font-size: 20px;
  position: absolute;
  top: 4px;
  right: 20px;
}

/* why */
.why {
  padding-top: 80px;
}
.why .heading p {
  text-align: center;
  font-size: 15px;
  color: var(--lightGray);
  margin-bottom: 5px;
}
.why .heading .points span {
  text-align: center;
  margin: 0 5px;
  font-size: 30px;
  font-weight: 400;
}
.why .Hr-bar {
  margin-top: 10px;
}

.why .heading .text {
  max-width: 700px;
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
}

.why-details {
  margin-top: 100px;
}
.details-box {
  display: flex;
  padding: 10px;
  margin-top: 100px;
}
.details-box .text .textbox {
  width: 70%;
}

.details-box:nth-child(even) {
  flex-direction: row-reverse;
}
.details-box:nth-child(even) .text {
  display: flex;
  justify-content: end;
}

.details-box .img,
.details-box .text {
  flex: 1;
}
.details-box .img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.details-box .img img {
  width: 100%;
  max-width: 220px;
}

.details-box .text h2 {
  font-size: 32px;
  font-weight: 400;
}
.details-box .text p {
  font-size: 13px;
  font-weight: 400;
  color: var(--gray);
  margin-top: 30px;
  text-align: justify;
}
.details-box .text a {
  padding: 5px 16px;
  border: 1px solid var(--blue);
  font-size: 10px;
  border-radius: 4px;
  margin-top: 50px;
  font-family: "Montserrat";
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  margin-top: 120px;
}

.testimonials .heading p {
  text-align: center;
  font-size: 18px;
  color: var(--lightGray);
  margin-bottom: 5px;
}
.testimonials .heading .points span {
  text-align: center;
  margin: 0 5px;
  font-size: 32px;
  font-weight: 400;
}
.testimonials .Hr-bar {
  margin-top: 10px;
}

.slides-2 {
  margin-top: 80px;
}

.testimonials .testimonial-wrap {
  padding-left: 50px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 10px 30px 30px 60px;
  margin: 0 15px 30px 0;
  min-height: 200px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  background: var(--cream);
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid #fff;
  position: absolute;
  left: -45px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #000;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .fa-quote-left,
.testimonials .testimonial-item .fa-quote-right {
  color: #ffd565;
  font-size: 20px;
  line-height: 0;
  margin: 2px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-size: 13px;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: var(--lightGray);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--blue);
}

/*--------------------------------------------------------------
# Deleivry Loctaion
--------------------------------------------------------------*/
.deliver {
  margin-top: 120px;
}

.deliver .heading p {
  text-align: center;
  font-size: 18px;
  color: var(--lightGray);
  margin-bottom: 5px;
}
.deliver .heading .points span {
  text-align: center;
  margin: 0 5px;
  font-size: 20px;
  font-weight: 400;
}
.deliver .Hr-bar {
  margin-top: 10px;
}

.deliver .button-holder {
  margin-top: 50px;
}

.deliver .city_btn {
  padding: 4px 28px;
  margin: 5px;
  border: 1px solid var(--blue);
  border-radius: 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray);
  transition: 0.3s ease;
}
.deliver .city_btn:hover {
  background-color: var(--blue);
  color: var(--cream);
}

/*--------------------------------------------------------------
# Deleivry Loctaion
--------------------------------------------------------------*/
.aboutUs {
  margin-top: 100px;
}

.aboutUs .aboutGrid div {
  padding: 10px;
  margin: 10px;
}
.aboutUs .aboutGrid h2 {
  font-size: 24px;
  text-transform: uppercase;
  font-family: "montserrat";
  letter-spacing: 1px;
  color: var(--gray);
}
.aboutUs .aboutGrid .about p {
  font-size: 13px;
  text-align: justify;
  color: var(--lightGray);
}

.aboutUs .aboutGrid .contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.aboutUs .contact .social,
.aboutUs .contact .email {
  padding: 0;
  margin: 0;
}
.aboutUs .contact h2 {
  margin-bottom: 12px;
}

.aboutUs .contact .social a {
  color: var(--gray);
  margin-right: 20px;
  font-size: 24px;
  text-align: center;
  transition: 0.3s ease;
}
.aboutUs .contact .social a:hover {
  color: var(--blue);
  transition: 0.3s ease;
}
.aboutUs .contact .email a {
  font-size: 14px;
}
.aboutUs .pages ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.aboutUs .pages ul li {
  font-size: 14px;
  margin-bottom: 10px;
}

/* Footer */
.footer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
  text-align: center;
}

.footer p {
  font-size: 13px;
}

/* responsive */

@media screen and (max-width: 1199px) {
  .navbar .navbar-toggler {
    display: flex;
  }
  .navbar .container-fluid {
    padding: 0;
  }
  .navbar .navbar-toggler {
    margin-right: 12px;
  }
  .navbar .navbar-brand {
    margin-left: 10px;
  }
  .navbar {
    background-color: #66A410 !important;
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 996px) {
  .details-box,
  .details-box:nth-child(even) {
    flex-direction: column;
    margin-top: 100px;
  }

  .details-box .img {
    text-align: center;
  }

  .details-box:nth-child(even) .text {
    display: block;
    padding-right: 0;
  }
  .details-box .text p {
    margin-top: 18px;
  }
  .details-box .text {
    margin-top: 30px;
  }
  .aboutUs .aboutGrid .contact {
    flex-direction: column;
    align-items: flex-start;
  }
  .aboutUs .contact .social {
    margin-top: 30px;
  }
}

@media screen and (max-width: 778px) {
  .hero .heading h2 {
    font-size: 40px;
    font-family: "Pacifico";
    color: var(--cream);
    text-align: center;
  }
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}
@media screen and (max-width: 567px) {
  .hero .heading h2 {
    font-size: 32px;
    font-family: "Pacifico";
    color: var(--cream);
    text-align: center;
  }
  .details-box .img img {
    max-width: 50%;
  }
}

/* preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #3498db;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spinner {
  border: 4px solid #3498db; /* Light grey */
  border-top: 4px solid #f3f3f3; /* Blue */
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Hide the preloader when page is fully loaded */
body.loaded .preloader {
  display: none;
}
