@import url('https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

:root {
  --heading-font: "Google Sans", sans-serif;
  --paragraph-font: "DM Sans", sans-serif;
  --black: #000;
  --white: #fff;
  --primary-color: #15274b;
  --secondary-color: #4aa643;
  --common-padding: 5% 0;
  --tc-shadow-1: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  --bg-color: #15152a;
  --bg-color1: #F3F7FA;
  --bg: #e8dcc8;
  --text: #4a3c2a;
  --icon-hover: #8b6914;
  --divider: rgba(74, 60, 42, 0.2);
}

.custom-container {
  width: 75%;
  margin: 0 auto;
  display: block;
}

.common-heading {
  font-family: var(--heading-font);
  font-size: 40px;
  color: var(--black);
  text-align: center;
  line-height: 52px;
}

.mb-50 {
  margin-bottom: 50px;
}

.common-para {
  font-family: var(--paragraph-font);
  font-size: 17px;
  line-height: 28px;
  font-weight: 400;
  color: var(--bg-color);
}

.mfp-container {
  position: fixed;
}

/**********************Navbar css************************/
header {
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 999;
  width: 100%;
}

.main-header {
  width: 100%;
  position: relative;
  top: 0;
  background-color: var(--white);
  ;
  transition: all 0.5s ease;
  z-index: 1111;
  display: flex;
  align-items: center;
  font-family: var(--heading-font);
}

.top-header-main {
  position: relative;
  background-color: var(--primary-color);
}

.top-header {

  padding: 8px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.header-contact a {
  display: flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.2s;
  font-family: var(--paragraph-font);
  text-transform: uppercase;
}

.header-contact a:hover {
  color: var(--secondary-color);
}

.header-contact a:hover i {
  color: var(--icon-hover);
}

.header-contact .sep {
  width: 1px;
  height: 16px;
  background: var(--white);
}

.header-social {
  display: flex;
  align-items: center;
  gap: 25px;
}

.header-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  text-decoration: none;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}

.header-social a:hover {
  color: var(--secondary-color);
  background: rgba(74, 60, 42, 0.08);
}

.navbar-toggler:focus {
  box-shadow: none;
}

.sticky {
  position: fixed;
  top: 0;
  transition: all 0.5s ease;
  background-color: #fff;
  height: 90px;
}

.main-header.sticky .navbar-light .navbar-toggler-icon {
  background-image: url("../img/hamberger-icon-black.svg")
}

.navbar-light .navbar-toggler {
  border: none;
  padding: 0;
}

.main-header.sticky .navbar .navbar-nav a {
  color: var(--bg-color);
}

.navbar-light .navbar-toggler-icon {
  background-image: url("../img/hamberger-icon-black.svg");
}

.main-header.sticky .navbar img {
  width: 85%;
  transition: all 0.6s ease;
}

.desk {
  display: block;
}

.mob {
  display: none;
}

.main-header .navbar .navbar-nav a {
  color: var(--primary-color);
  font-weight: 500;
  font-size: 16px;
  margin-right: 35px;
  position: relative;
  padding: 10px 0;
  line-height: 15px;
  transition: all 0.6s ease;
  text-transform: uppercase;
}

.main-header .navbar .navbar-nav a:hover {
  color: var(--secondary-color);
  transition: .3s;
}

.main-header .navbar .navbar-nav a.active {
  color: var(--secondary-color);
}

.main-header .navbar .navbar-nav a.active:before {
  width: 100%;
}

.navbar img {
  width: 100%;
  transition: all 0.6s ease;
}

.main-header .navbar .navbar-nav a::before {
  position: absolute;
  content: "";
  width: 0;
  background-color: var(--secondary-color);
  left: 0;
  bottom: 2px;
  height: 0.1em;
  transition: 0.3s;
}

.main-header .navbar .navbar-nav a:hover::before {
  width: 100%;
  transition: 0.3s;
}

.main-header .navbar .navbar-nav a:nth-last-child(1) {
  margin-right: 0;
}

.main-header .navbar .nav-item:hover .dropdown-menu {
  top: 100%;
  visibility: visible;
  transition: .5s;
  opacity: 1;
}

/**********************Home Carousel css************************/
.hero-section {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.slider-content .slick-slide::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: #00000085;
  z-index: 1;
}

.hero-section .slider-content .slick-slide .animated {
  opacity: 0;
  transform: translateY(60px);
  transition: none;
}

.hero-section .slider-content .slick-slide.slick-active .animated {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.9s ease, transform 0.9s ease;
  transition-delay: 0.4s;
}

.hero-carousel-navigations {
  position: absolute;
  z-index: 1;
  top: 35%;
}

.hero-carousel-navigations .slider .slick-slide {
  float: none;
  cursor: pointer;
}

.hero-carousel-navigations .slider .slick-track {
  width: 100% !important;
  padding: 0 10px 10px 0;
}

.slider-content .slick-slide {
  position: relative;
}

.hero-section .slider-content .slick-dots {
  bottom: 175px;
}

.hero-section .slider-content .slick-dots li {
  margin: 0 2px;
}

.hero-section .slider-content .slick-dots li button:before {
  font-family: 'slick';
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  opacity: 1;
  color: transparent;
  background: var(--white);
  border-radius: 50px;
}

.hero-section .slider-content .slick-dots li.slick-active button:before {
  background: var(--secondary-color);
}

.slider-content img {
  height: auto;
  opacity: 1 !important;
  animation-duration: 3s;
  transition: all 1s ease;
  width: 100%;
}


.slider .slick-prev:before,
.slider-vertical .slick-next:before {
  display: none;
}

.slider .slick-prev,
.slider .slick-next {
  width: 28px;
  height: 28px;
  border-style: solid;
  margin: 10px;
  display: inline-block;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 10;
  cursor: pointer;
}

.slider .slick-prev:before,
.slider .slick-next:before {
  display: none;
}

.slider .slick-prev {
  border-width: 14px 14px 14px 0px;
  border-color: transparent #ffffff;
  left: 0px;
  right: auto;
}

.slider .slick-next {
  border-width: 14px 0px 14px 14px;
  border-color: transparent #ffffff;
  right: 0px;
  left: auto;
}

.slider .slick-prev:hover,
.slider .slick-next:hover {
  border-color: transparent #ffd200;
}

.slider .slick-prev.slick-disabled,
.slider .slick-next.slick-disabled,
.slider .slick-prev.slick-disabled:hover,
.slider .slick-next.slick-disabled:hover {
  opacity: 0.1;
  cursor: default;
  border-color: transparent #000000;
}

.slider div {
  color: #ffffff;
}

.slider-thumb div {
  line-height: 50px;
  font-size: 25px;
}

.slider-thumb .slick-slide.slick-current {
  border-bottom: 1px solid var(--secondary-color);
  color: var(--secondary-color);
}

.slider-thumb .slick-slide.slick-current:before {
  opacity: 1;
  transition: all 0.5s ease;
}

.banner-content {
  position: absolute;
  z-index: 1111111;
  top: 38%;
  width: 100%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.banner-content hr {
  width: 15%;
  margin: 20px auto;
  display: block;
  height: 2px;
  color: #2ae91b;
  opacity: 1;
}

.banner-content p {
  font-size: 24px;
  font-family: var(--paragraph-font);
  line-height: 32px;
  font-weight: 300;
}

.banner-content h1 {
  font-family: var(--paragraph-font);
  font-size: 45px;
  text-align: center;
  font-weight: 400;
  line-height: 65px;
  letter-spacing: 1px;
}

.banner-content h1 span {
  color: var(--white);
  font-weight: 500;
  font-size: 75px;
}

.animated {
  transition: all .5s ease;
}

.slider [data-animation-in] {
  opacity: 0;
  animation-duration: 1.5s;
  transition: opacity 0.5s ease 0.3s;
}

@keyframes zoomInImage {
  from {
    transform: scale3d(1, 1, 1);
  }

  to {
    transform: scale3d(1.1, 1.1, 1.1);
  }
}

.zoomInImage {
  animation-name: zoomInImage;
}

/**********************Contact Us css*************************/
.contact-us {
  width: 100%;
  padding: var(--common-padding);
  background-color: var(--white);
}

.left-icon {
  width: 10%;
  float: left;
}

.right-content {
  width: 90%;
  float: right;
}

.contact-form h4 {
  font-family: var(--paragraph-font);
  font-size: 40px;
}

.contact-form form {
  width: 100%;
}

.contact-form form input,
.contact-form form select {
  padding: 10px 20px;
  color: var(--black);
  font-family: var(--paragraph-font);
  font-size: 17px;
  border: none;
  font-weight: 500;
  border: 1px solid #8f8f8f;
}



.contact-form form input::placeholder {
  opacity: 1;
  color: var(--black);
}

.contact-form form input::-ms-input-placeholder {
  color: var(--black);
  opacity: 1;
}

.contact-form form textarea {
  font-family: var(--paragraph-font);
  color: var(--black);
  font-size: 16px;
  border: none;
  font-weight: 500;
  border: 1px solid #8f8f8f;
}

.contact-form .form-control:focus {
  box-shadow: none;
}

.contact-form form textarea::placeholder {
  opacity: 1;
  color: var(--black);
}

.contact-form form textarea::-ms-input-placeholder {
  color: var(--black);
  opacity: 1;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.form-submit-btn {
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: var(--white);
  font-family: var(--paragraph-font);
  width: auto;
  outline: none;
  border: none;
  border-radius: 35px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
  margin-top: 30px;
  transition: all 0.5s ease;
}

.form-submit-btn:hover {
  background-color: var(--secondary-color);
  transition: all 0.5s ease;
}

.contact-info {
  padding: 0 0 0 70px;
}

.contact-info h1 {
  font-family: var(--heading-font);
  font-size: 40px;
  color: var(--bg-color);
  font-weight: 500;
  line-height: 50px;
  margin-bottom: 45px;
}

.contact-info p {
  font-family: var(--paragraph-font);
  font-size: 17px;
  line-height: 28px;
  color: var(--bg-color);
  font-weight: 500;
}

.contact-info p a {
  color: var(--bg-color);
  text-decoration: none;
}

.contact-info ul {
  padding: 0;
  margin-bottom: 0;
}

.contact-info ul li {
  list-style: none;
  display: block;
  width: 100%;
  float: left;
}

.contact-info ul li .icons {
  width: 45px;
  height: 45px;
  background-color: var(--secondary-color);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.contact-info ul li .icons img {
  width: 50%;
}

.contact-info ul li .address-content span {
  font-size: 21px;
  font-family: var(--paragraph-font);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 5px;
  display: block;
}


/**********************Home about css***************************/
.home-about-us {
  width: 100%;
  padding: var(--common-padding);
  background-color: var(--bg-color1);
  position: relative;
  overflow-x: hidden;
}

.home-about-us ul {
  margin: 0;
  padding: 0;
  margin-top: 15px;
}

.home-about-us ul li {
  list-style: none;
  font-family: var(--paragraph-font);
  font-size: 17px;
  color: var(--primary-color);
  line-height: 40px;
  font-weight: 600;
}

.home-about-us ul li i {
  font-size: 17px;
  color: var(--secondary-color);
}

.about-us-page-main {
  padding: var(--common-padding) !important;
}

.usps-list ul li:nth-last-child(1) {
  border-bottom: none;
  padding-bottom: 0;
}

.usps-section {
  width: 100%;
  background-color: var(--white);
}

.sec-title {
  padding-bottom: 10px;
}

.about-container {
  width: 85%;
  margin: 0 auto;
  display: block;
}

.about-page-container {
  width: 75% !important;
  margin: 0 auto;
  display: block;
}

.about-us-div {
  position: relative;
}

.about-us-div .features-list {
  width: 100%;
}

.about-us-div h3 {
  font-family: var(--paragraph-font);
  color: var(--primary-color);
  font-size: 22px;
  font-weight: 600;
  margin-top: 20px;
}

.about-us-div .features-list li span {
  cursor: pointer;
  overflow: hidden;
}

.about-us-div .features-list li span:hover img {
  transform: scale(1.1);
  transition: all 0.5s ease;
  filter: grayscale(70%);
}

.about-us-div .features-list li span img {
  width: 90%;
  margin: 0 auto;
  display: block;
  transition: all 0.5s ease;
}

.sec-title h3 {
  font-size: 40px;
  font-family: var(--heading-font);
  font-weight: 600;
  line-height: 50px;
}

.about-one__top__text {
  font-size: 16px;
  font-family: var(--paragraph-font);
  font-weight: 400;
  color: var(--bg-color);
  line-height: 26px;
}

.about-one__top__text span {
  color: var(--secondary-color);
  font-size: 20px;
  font-family: var(--paragraph-font);
  font-weight: 600;

}

a.wallox-btn {
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  border: none;
  outline: none !important;
  background-color: var(--secondary-color);
  color: var(--white);
  font-family: var(--heading-font);
  padding: 10px 15px;
  transition: 500ms;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.25;
  text-transform: capitalize;
  border-radius: 100px;
  position: relative;
  overflow: hidden;
  text-align: center;
  text-decoration: none;
  margin-top: 25px;
}

a.wallox-btn:hover {
  background-color: var(--primary-color);
  transition: 500ms;
}

.center-img {
  z-index: 1;
}

.center-img img {
  width: 100%;
  border-radius: 5px;
}

.pd-right95 {
  padding-right: 75px;
}



/*************************our services css****************************/
.our-services {
  width: 100%;
  background-color: var(--white);
  padding: var(--common-padding);
  overflow-x: hidden;
}


.our-services h1 {
  color: var(--white);
}

.our-services h4 {
  font-size: 20px;
  font-family: var(--heading-font);
  margin-bottom: 25px;
  font-weight: 500;
  position: relative;
  text-align: center;
  color: var(--white);
}

.projects-one__single {
  position: relative;
  display: block;
  margin-bottom: 24px;
}

.projects-one__single-img {
  position: relative;
  display: block;
  overflow: hidden;
  cursor: pointer;
}

.projects-one__single-icon {
  position: absolute;
  top: 21px;
  right: 30px;
  opacity: 0;
  transform: translateX(50px);
  transition: all 700ms ease;
  z-index: 5;
}

.projects-one__single:hover .projects-one__single-icon {
  opacity: 1;
  transform: translateX(0%);
  transition-delay: 400ms;
}

.projects-one__single-icon a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  overflow: hidden;
  z-index: 1;
  text-decoration: none;
}

.projects-one__single-icon a span::before {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
}

.projects-one__single-icon a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--black);
  transform: scale(0.6);
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  z-index: -1;
}

.projects-one__single-icon a:hover::before {
  transform: scale(1.0);
  opacity: 1;
}

.projects-one__single-img-inner {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px;
  z-index: 1;
}

.projects-one__single-img-inner:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
  background: #082c4b99;
  opacity: 0;
  z-index: 1;
  content: "";
}

.projects-one__single:hover .projects-one__single-img-inner:before {
  opacity: 1;
}

.projects-one__single-img-inner img {
  width: 100%;
  transition: .5s ease;
  transform: scale(1.05);
}

.projects-one__single:hover .projects-one__single-img-inner img {
  transform: scale(1);
}

.projects-one__overlay-content {
  position: absolute;
  left: 20px;
  bottom: -91px;
  right: 20px;
  align-items: center;
  justify-content: space-between;
  background: #ccff46c9;
  padding: 27px 25px 26px;
  border-radius: 20px;
  overflow: hidden;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .4s;
  transition-property: all;
  z-index: 2;
  opacity: 0;
}

.projects-one__single:hover .projects-one__overlay-content {
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .4s;
  transition-property: all;
  bottom: 20px;
  opacity: 1;
}

.projects-one__overlay-content .content-box {
  position: relative;
  display: block;
}

.projects-one__overlay-content .content-box h2 {
  font-size: 28px;
  line-height: 31px;
  font-weight: 500;
  text-transform: capitalize;
  opacity: 0;
  transform: translateY(50px);
  transition: all 500ms ease;
  font-family: var(--heading-font);
  margin-bottom: 10px;
  color: var(--primary-color);
}

.projects-one__single:hover .projects-one__overlay-content .content-box h2 {
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 500ms;
}

.projects-one__overlay-content .content-box h2 a {
  color: var(--white);
  text-decoration: none;
}

.projects-one__overlay-content .content-box h2 a:hover {
  color: var(--black);
}

.services-carousel-outer {
  width: 100%;
}

.project__bottom__text p {
  color: var(--white);
}

@keyframes dot-anim-2 {
  0% {
    transform: translateX(20px);
  }

  100% {
    transform: translateX(0px);
  }
}

.project__bottom__img {
  animation: dot-anim-2 3s linear 0s infinite alternate;
}

.services-carousel-outer .section__title__button {
  font-family: var(--heading-font);
  font-size: 20px;
  color: var(--secondary-color);
}

.services-carousel-outer h1 {
  color: var(--primary-color);
  text-align: center;
}

.project__img .img-div img {
  transition: all 0.5s ease;
}

.project__img:hover .img-div img {
  transform: scale(1.1);
  transition: all 0.5s ease;
}

.project__img .img-div {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  overflow: hidden;
}

.project__img--2 {
  position: relative;
}

.project__img--2 img {
  width: 100%;
  border-radius: 0px;
}

.project__heading .read-more-btn {
  color: var(--white);
  font-size: 15px;
  text-decoration: none;
  font-family: "Onest", sans-serif;
  font-weight: 500;
  margin-top: 0px;
  background: var(--secondary-color);
  padding: 8px 12px;
  border-radius: 30px;
  transition: all 0.5s ease;
  display: inline-block;
}

.project__heading .read-more-btn:hover span {
  transform: rotate(45deg);
  transition: all 0.5s ease;
}

.project__heading .read-more-btn:hover {
  background-color: var(--primary-color);
  transition: all 0.5s ease;
}

.project__heading .read-more-btn span {
  transition: all 0.5s ease;
  display: inline-block;
  font-weight: 500;
  margin-top: 0;
}

.project__heading--2 {
  background-color: #f3f7fa;
  padding: 12px 15px 25px 15px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.project__heading--2 p {
  font-size: 16px;
  font-family: var(--paragraph-font);
  font-weight: 400;
  color: var(--bg-color);
  line-height: 24px;
  margin: 20px 0 15px 0;
}

.project__heading h3 {
  position: relative;
}

.project__heading h3 a {
  font-size: 28px;
  font-weight: 600;
  line-height: 20px;
  color: var(--primary-color);
  text-decoration: none;
  font-family: var(--heading-font);
}

.project__heading h3::after {
  position: absolute;
  content: "";
  width: 20%;
  background-color: var(--secondary-color);
  height: 2px;
  left: 0;
  bottom: -8px;

}

.project__heading--2 h3 .services-br {
  display: none;
}

.project__icon--2 {
  position: absolute;
  right: 40px;
  bottom: 22px;
  z-index: 11;
}

.direction__btn {
  height: 50px;
  width: 50px;
  line-height: 62px;
  background: var(--white);
  text-align: center;
  display: flex;
  border-radius: 100%;
  position: relative;
  justify-content: center;
  align-items: center;
}

.project__icon a {
  background: var(--secondary-color);
}

.direction__btn svg {
  position: relative;
  z-index: 99;
}

.direction__btn::after {
  background: var(--gradientColor);
  position: absolute;
  border-radius: 100%;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  content: "";
  transition: opacity 0.65s cubic-bezier(0.05, 0.2, 0.1, 1);
  opacity: 0;
  z-index: 9;
}

.project__single:hover .project__img--2::before {
  opacity: 1;
}

.homepage-services-carousel {
  margin-top: 60px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 25px;
}

.homepage-services-carousel .project__single {
  width: 95%;
}

.homepage-services-carousel .slick-slide {
  margin: 0 10px;
}

.homepage-services-carousel .slick-dots li.slick-active button:before {
  color: transparent;
  background: var(--white);
  opacity: 1;
}

.homepage-services-carousel .slick-dots li button:before {
  opacity: 1;
  color: transparent;
  background: var(--secondary-color);
  border-radius: 50px;
  width: 12px;
  height: 12px;
}

.homepage-services-carousel .slick-dots {
  bottom: -60px;
}

/**********************Footer css**********************/
.footer-section {
  width: 100%;
  padding: 4% 0 2% 0;
  background-color: var(--primary-color);
}

.footer-section ul {
  margin: 0;
  padding: 0;
}

.footer-section ul li {
  list-style: none;
  color: var(--white);
}

.footer-section p {
  color: var(--white);
  font-size: 15px;
  font-family: var(--paragraph-font);
  line-height: 26px;
}

.footer-section h2 {
  font-family: var(--paragraph-font);
  color: var(--secondary-color);
  font-size: 24px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 25px;
}

.footer-section .address-content li {
  display: flex;
  align-items: center;
}

.footer-section .footer-info img {
  width: 25%;
}

.footer-section .footer-list {
  text-transform: uppercase;
}

.footer-section .footer-list li {
  margin-bottom: 10px;
}

.footer-section .address-content li {
  margin-bottom: 18px;
}

.footer-section .address-content p {
  font-weight: 600;
  text-transform: uppercase;
}

.footer-section .address-content span {
  color: var(--secondary-color);
  font-size: 21px;
  margin-right: 10px;
  display: flex;
  align-items: center;
}

.footer-section a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
}

.footer-copyright {
  background-color: var(--primary-color);
}

.footer-copy {
  border-top: 1px solid var(--secondary-color);
  padding: 15px 0;
}

.footer-copyright p {
  font-size: 12px;
  font-family: var(--paragraph-font);
  font-weight: 500;
  color: var(--white);
}

.footer-copyright p a {
  color: var(--white);
}

.footer-section .social-media li {
  display: flex;
  width: 43px;
  height: 43px;
  background-color: white;
  border-radius: 38px;
  float: left;
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  cursor: pointer;
  transition: all 0.5s ease;
  color: var(--primary-color);
}

.footer-section .social-media li:hover {
  background-color: var(--secondary-color);
  color: var(--white);
  transition: all 0.5s ease;
}

.footer-section .social-media li:hover a {
  color: var(--white);
  transition: all 0.5s ease;
}

.footer-section .social-media li a {
  color: var(--bg-color);
  font-size: 20px;
}

.footer-section .footer-list li:nth-last-child(1) {
  margin-bottom: 0;
}

#map {
  width: 100%;
  height: 250px;
}

#map iframe {
  border-radius: 10px;
}

/**************scroll to top css****************/
#scroll-to-top-button {
  display: inline-block;
  background-color: var(--secondary-color);
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s, opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  display: flex;
  color: var(--white);
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 25px;
}

#scroll-to-top-button:hover {
  cursor: pointer;
  background-color: var(--white);
  color: var(--primary-color);
}

#scroll-to-top-button:active {
  background-color: var(--white);
}

#scroll-to-top-button.show {
  opacity: 1;
  visibility: visible;
}

/*******************************common top section css********************************/
.common-top-section {
  width: 100%;
  height: 400px;
  background-color: #212529b8;
  padding-top: 175px;
  position: relative;
}

/* .common-top-section.red-onion-top-bg{
  background-image: url("../img/products/red-onion/red-onion-top-bg.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.common-top-section.green-chillies-top-bg{
  background-image: url("../img/products/green-chillies/green-chillies-top-bg.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
} */

.common-top-section::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #15274b;
  left: 0;
  top: 0;
}

.common-top-section h1 {
  font-size: 44px;
  color: var(--white);
  text-align: center;
  font-weight: 500;
  font-family: var(--paragraph-font);
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.main-breadcrumbs {
  position: absolute;
  bottom: 0;
}

.main-breadcrumbs .breadcrumb-item+.breadcrumb-item::before {
  color: var(--white);
}

.main-breadcrumbs .breadcrumb-item a {
  color: var(--white);
  font-size: 15px;
  font-family: var(--paragraph-font);
  font-weight: 500;
  text-decoration: none;
}

.main-breadcrumbs .breadcrumb-item.active {
  color: var(--secondary-color);
  font-weight: 500;
  font-size: 15px;
}

/************************mission vision grid**********************/

.svg-icons {
  width: 23% !important;
  position: absolute;
  right: 26%;
  top: 100%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.destination-details-section {
  width: 100%;
  padding: var(--common-padding);
  background-color: #f3f7fa;
}

.contact-details-box {
  font-family: "Prompt", sans-serif;
  display: grid;
  grid-auto-rows: 280px;
  grid-template-columns: repeat(auto-fill, minmax(405px, 1fr));
  grid-gap: 2em;
  margin-top: 70px;
}

.contact-info-item {
  padding: 25px;
  color: #000;
  background: #fff;
  position: relative;
  border-radius: 20px;
  box-shadow: rgb(0 0 0 / 26%) 0px 5px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact-info-item p {
  font-weight: 500 !important;
}

.contact-info-item .icon {
  font-size: 55px;
  color: var(--secondary-color);
}

.contact-info-item .info span.title {
  font-family: var(--heading-font);
  font-size: 25px;
  line-height: 32px;
  margin-bottom: 10px;
  display: block;
  text-transform: capitalize;
  font-weight: 600;
  color: var(--bg-color);
}

.contact-info-item .info p a {
  text-decoration: none;
  color: var(--bg-color);
  text-decoration: none;
  font-weight: 500;
}

.contact-info-item .social-media {
  display: flex;
  justify-content: center;
}

.social-media ul {
  margin: 0;
  padding: 0;
}

.social-media ul li {
  float: left;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background-color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  margin-bottom: 0;
}

.contact-info-item .social-media ul li a {
  color: var(--white);
  text-decoration: none;
  font-size: 17px;
  margin-bottom: 0;
}

.contact-us-page-form {
  width: 100%;
  padding: var(--common-padding);
}

.contact-us-page-container {
  width: 55%;
  margin: 0 auto;
  display: block;
}

.mb-70 {
  margin-bottom: 70px;
}

.map {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.map iframe {
  border-radius: 10px;
}

.gap20 {
  gap: 100px;
}

.retail-partners {
  width: 100%;
  padding: var(--common-padding);
  background-color: #f3f7fa;
}

.retail-partners-content {
  width: 100%;
  padding-right: 35px;
}

.retail-partners-content h1 {
  text-align: left;
}

.card-style-eight {
  background: #f3f7fa;
  position: relative;
  height: 200px;
  box-shadow: rgb(0 0 0 / 10%) 0px 4px 12px;
}

.mb-30 {
  margin-bottom: 30px;
}

.rounded-5 {
  border-radius: 2rem;
}

.rotator-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  display: none;
  cursor: pointer;
}

.rotator-image:hover {
  filter: grayscale(100%);
}

ul.features-list {
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 40px;
}

.features-list li {
  list-style: none;
}

.features-list li span {
  border-radius: 10px;
  display: block;
  font-size: 18px;
  font-family: var(--paragraph-font);
  font-weight: 500;
}

.features-list li span i {
  margin-right: 5px;
  color: var(--secondary-color);
}

.our-services-page {
  width: 100%;
  padding: var(--common-padding);
  background-color: var(--bg-color1);
  background-image: url(../img/service-bg-shape2.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
}

.services-main-grid {
  display: grid;
  grid-auto-rows: 380px;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  grid-gap: 2em;
  margin-top: 75px;
}

.service-item-three {
  background-color: rgb(161 219 0 / 25%);
  border-radius: 5px;
  padding: 30px 30px 55px;
  transition: 0.3s;
  cursor: pointer;
}

.service-item-three h3 {
  font-size: 32px;
  margin-bottom: 10px;
  font-family: var(--heading-font);
  font-weight: 600;
}

.service-item-three h3 a {
  color: rgb(42, 40, 79);
}

.service-item-three .service-link {
  position: relative;
  margin-top: 15px;
}

.service-item-three:hover .service-link img {
  -webkit-transform: rotateY(360deg);
  transform: rotateY(360deg);
}

.service-item-three .service-link img {
  left: unset;
  right: 0;
}

.service-item-three .service-link img {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}

.service-item-three .service-link i {
  left: unset;
  right: 25px;
}

.service-item-three.two {
  background-color: #8084ff4d;
}

.service-item-three.three {
  background-color: rgb(161 219 0 / 25%);
}

.service-item-three .service-link i {
  display: inline-block;
  color: var(--primary-color);
  font-size: 26px;
  position: relative;
  z-index: 1;
  top: 20px;
  left: 25px;
  font-weight: 100;
}

.service-item-three:hover {
  -webkit-transform: translate(0, -10px) !important;
  transform: translate(0, -10px) !important;
}

.facts-section {
  position: relative;
  padding: 140px 0px;
  font-family: "Prompt", sans-serif;
}

.facts-section .image-layer {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  background-attachment: fixed;
}

.facts-section .image-layer:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.0);
}

.facts-section .content-box {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

/**************************Thank You Page css*************************/

.thank-page-content {
  background-color: #1d1d36;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-content {
  width: 50%;
  text-align: center;
}

.thank-you-content h1 {
  font-family: var(--paragraph-font);
  color: var(--white);
  font-size: 60px;
  margin-bottom: 25px;
  font-weight: 500;
}

.thank-you-content p {
  font-family: var(--paragraph-font);
  color: var(--secondary-color);
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 35px;
}

.thank-you-content a {
  text-decoration: none;
  font-weight: 500;
  font-family: var(--paragraph-font) !important;
}

/************************social icons right side css*****************************/
.sticky-button {
  position: fixed;
  background-color: #25d366;
  bottom: 20px;
  left: 20px;
  border-radius: 50px;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
  z-index: 20;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  transition: all 0.2s ease-out;
}

.sticky-button svg {
  margin: auto;
  fill: #ffffff;
  width: 35px;
  height: 35px;
}

.sticky-button a {
  cursor: pointer;
  display: flex;
  align-items: center;
  width: 55px;
  height: 55px;
  transition: all 0.3s ease-out;
}

.sticky-button label {
  cursor: pointer;
  display: flex;
  align-items: center;
  width: 55px;
  height: 55px;
  transition: all 0.3s ease-out;
}

.sticky-button label svg.close-icon {
  display: none;
}

.sticky-chat {
  position: fixed;
  bottom: 70px;
  left: 20px;
  width: 320px;
  transition: all 0.3s ease-out;
  z-index: 21;
  opacity: 0;
  visibility: hidden;
}

.sticky-chat a {
  text-decoration: none;
  font-family: Arial, sans-serif;
  color: #000000;
}

.sticky-chat svg {
  width: 35px;
  height: 35px;
}

.sticky-chat .chat-content {
  border-radius: 10px;
  background-color: #ffffff;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
  overflow: hidden;
  font-family: Arial, sans-serif;
  font-weight: 400;
}

.sticky-chat .chat-header {
  position: relative;
  display: flex;
  align-items: center;
  padding: 15px 20px;
  background-color: #25d366;
  overflow: hidden;
}

.sticky-chat .chat-header:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 75px;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 70px 0 5px 0;
}

.sticky-chat .chat-header svg {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  fill: #ffffff;
}

.sticky-chat .chat-header .title {
  padding-left: 10px;
  font-size: 20px;
  font-weight: 400;
  font-family: Arial, sans-serif;
  color: #ffffff;
}

.sticky-chat .chat-header .title span {
  font-size: 11px;
  font-weight: 400;
  display: block;
  line-height: 1.58em;
  margin: 0;
  color: #888888;
}

.sticky-chat .chat-text {
  display: flex;
  flex-wrap: wrap;
  margin: 30px 20px;
  font-size: 12px;
}

.sticky-chat .chat-text span {
  display: inline-block;
  margin-right: auto;
  padding: 10px;
  background-color: #f0f5fb;
  border-radius: 0px 15px 15px;
  font-weight: 500;
}

.sticky-chat .chat-text span strong {
  font-size: 18px;
  font-family: Arial, sans-serif;
  font-weight: 600;
  margin-bottom: -15px;
  display: block;
}

.sticky-chat .chat-text span.typing {
  margin: 15px 0 0 auto;
  padding: 10px;
  border-radius: 15px 0px 15px 15px;
}

.sticky-chat .chat-text span.typing:after {
  display: none;
}

.sticky-chat .chat-text span.typing svg {
  height: 13px;
  fill: #505050;
}

.sticky-chat .chat-button {
  display: flex;
  align-items: center;
  margin-top: 1px;
  padding: 12px 20px;
  border-radius: 10px;
  background-color: #ffffff;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
  overflow: hidden;
  font-size: 12px;
  font-family: Arial, sans-serif;
  font-weight: 400;
}

.sticky-chat .chat-button svg {
  width: 20px;
  height: 20px;
  fill: #1daa61;
  margin-left: auto;
  transform: rotate(40deg);
}

.sticky-chat .chat-button span {
  font-size: 14px;
  font-weight: 500;
}

.chat-menu {
  display: none;
}

.chat-menu:checked+.sticky-button label {
  transform: rotate(360deg);
}

.chat-menu:checked+.sticky-button label svg.chat-icon {
  display: none;
}

.chat-menu:checked+.sticky-button label svg.close-icon {
  display: table-cell;
}

.chat-menu:checked+.sticky-button+.sticky-chat {
  bottom: 90px;
  opacity: 1;
  visibility: visible;
}

/**********************************Homepage CTA Banner Css******************************************/
.home-cta-banner {
  padding: 80px 0;
  background-image: url("../img/home-cta-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  width: 100%;
  background-attachment: fixed;
}

.home-cta-banner::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(30, 30, 30, 0.36);
  left: 0;
  top: 0;
}

.home-cta-banner .cta-content {
  width: 60%;
  position: relative;
  z-index: 1;
}

.home-cta-banner .cta-content h1 {
  font-size: 40px;
  font-weight: 500;
  color: #ffffff;
  line-height: 50px;
  margin-bottom: 10px;
  font-family: var(--heading-font);
  letter-spacing: 0;
}

.home-cta-banner .img-div {
  width: 24%;
  position: absolute;
  right: 185px;
  top: -100px;
  z-index: 1;
}

.home-cta-banner .img-div img {
  width: 70%;
  filter: drop-shadow(2px 4px 8px rgba(0, 0, 0, 0.54));
  animation: jumpAni 5s linear infinite;
}

@keyframes jumpAni {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0);
  }
}

/*************Products Page CSS***************/
.page-banner {
  background: #15274b;
  padding: 52px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.page-banner h1 {
  font-family: 'Onest', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: #fff;
}

.page-banner h1 span {
  color: #4aa643;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #4aa643;
}

.breadcrumb-sep {
  font-size: 11px;
}

.product-detail {
  display: block;
  padding: var(--common-padding);
}

.product-image-wrap {
  position: relative;
}

.product-badge-img {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #4aa643;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 3px;
}

.product-top-banner {
  width: 100%;
  height: 350px;

  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  border-radius: 10px;
}

.product-top-banner.red-onion {
  background-image: url("../img/products/red-onion/onion-top-banner.webp");
}

.product-top-banner.green-chillies {
  background-image: url("../img/products/green-chillies/chillies-top-banner.webp");
}

.product-top-banner.rice {
  background-image: url("../img/products/rice/rice-top-banner.webp");
}


.mt-60 {
  margin-top: 60px;
}

.mt-40 {
  margin-top: 40px;
}

.product-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f0faf0;
  border: 1px solid #c2e0bf;
  color: #4aa643;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 3px;
  margin-bottom: 18px;
}

.product-title {
  font-family: 'Onest', sans-serif;
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 700;
  color: #15274b;
  line-height: 1.1;
  margin-bottom: 10px;
}

.product-hs {
  font-size: 15px;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
}

.product-desc {
  font-size: 16px;
  font-weight: 400;
  color: #444;
  line-height: 1.8;
  margin-bottom: 32px;
  font-family: var(--paragraph-font);
}

.spec-heading {
  font-family: 'Onest', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #15274b;
  margin-bottom: 16px;
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 32px;
}

.spec-item {
  padding: 14px 18px;
  border-bottom: 1px solid #eee;
  border-right: 1px solid #eee;
}

.spec-item:nth-child(even) {
  border-right: none;
}

.spec-item:nth-last-child(-n+2) {
  border-bottom: none;
}

.spec-key {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 4px;
  font-family: 'DM Sans', sans-serif;
}

.spec-val {
  font-size: 16px;
  font-weight: 600;
  color: #15274b;
  font-family: 'DM Sans', sans-serif;
}

.spec-val.green {
  color: #4aa643;
}

.pack-heading {
  font-family: 'Onest', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #15274b;
  margin-bottom: 14px;
}

.pack-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 55px;
}

.pack-opt {
  border: 1.5px solid #e0edd0;
  background: #f8fdf8;
  color: #15274b;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
}

.pack-opt:hover,
.pack-opt.active {
  background: #4aa643;
  color: #fff;
  border-color: #4aa643;
}

.enquiry-btn {
  display: inline-block;
  background: #4aa643;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 15px 36px;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  letter-spacing: 0.3px;
  margin-right: 12px;
}

.enquiry-btn:hover {
  background: #38922e;
  color: #fff !important;
}

.contact-btn {
  display: inline-block;
  background: transparent;
  color: #15274b;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 36px;
  border-radius: 4px;
  text-decoration: none;
  border: 1px solid #15274b;
  cursor: pointer;
  transition: all 0.2s;
}

.contact-btn:hover {
  background: #15274b;
  color: #fff;
}

.features-section {
  padding: 5% 5%;
  background: #f7faf7;
  border-top: 1px solid #e8f0e8;
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #4aa643;
  margin-bottom: 10px;
  font-family: 'DM Sans', sans-serif;
}

.section-title {
  font-family: 'Onest', sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: #15274b;
  margin-bottom: 14px;
  line-height: 1.2;
}

.section-desc {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  max-width: 580px;
  margin-bottom: 48px;
  font-family: var(--paragraph-font);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: #fff;
  border: 1px solid #e0edd0;
  border-radius: 8px;
  padding: 32px 28px;
  transition: box-shadow 0.3s, transform 0.3s;
}

.feature-card:hover {
  box-shadow: 0 12px 32px rgba(21, 39, 75, 0.1);
  transform: translateY(-4px);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: #f0faf0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
}

.feature-card h3 {
  font-family: var(--heading-font);
  font-size: 19px;
  font-weight: 600;
  color: #15274b;
  margin-bottom: 10px;
}

.logistics-section {
  padding: 5% 5%;

  position: relative;
  background-attachment: fixed;
  background-position: center;
  z-index: 1;
}

.logistics-section.logistics-section-onion {
  background-image: url("../img/products/red-onion/middle-bg.webp");
}

.logistics-section.logistics-section-chillies {
  background-image: url("../img/products/green-chillies/middle-bg.webp");
}

.logistics-section.logistics-section-rice {
  background-image: url("../img/products/rice/middle-bg.webp");
}

.logistics-section::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #000000b5;
  left: 0;
  top: 0;
  z-index: -1;
}

.logistics-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.logistics-visual {
  background: #15274b;
  border-radius: 10px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.logistics-visual::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: rgba(74, 166, 67, 0.12);
  border-radius: 50%;
}

.logistics-visual::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 140px;
  height: 140px;
  background: rgba(74, 166, 67, 0.08);
  border-radius: 50%;
}

.port-list {
  position: relative;
  z-index: 1;
}

.port-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.port-item:last-child {
  border-bottom: none;
}

.port-num {
  width: 36px;
  height: 36px;
  background: #4aa643;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Onest', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.port-info h4 {
  font-family: 'Onest', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.port-info p {
  font-size: 14px;
  color: var(--white);
  line-height: 1.5;
  font-family: var(--paragraph-font);
}

.logistics-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.logi-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--secondary-color);
  border-radius: 8px;
  transition: border-color 0.2s, background 0.2s;
  background: #f8fdf8;
}

.logi-point:hover {
  background: #f8fdf8;
}

.logi-check {
  width: 32px;
  height: 32px;
  background: #4aa643;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  flex-shrink: 0;
}

.logi-point h4 {
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 4px;
}

.logi-point p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
  font-family: var(--paragraph-font);
}

.markets-section {
  padding: 5% 5%;
  background: #15274b;
}

.markets-section .section-label {
  color: #4aa643;
}

.markets-section .section-title {
  color: #fff;
}

.markets-section .section-desc {
  color: rgba(255, 255, 255, 0.6);
}

.markets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.market-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  cursor: default;
}

.market-card:hover {
  background: rgba(74, 166, 67, 0.12);
  border-color: #4aa643;
  transform: translateY(-4px);
}

.market-icon {
  font-size: 38px;
  margin-bottom: 10px;
}

.market-card h3 {
  font-family: 'Onest', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.market-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.rice-types-section {
  padding: 80px 0;
}

.rice-types-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.rice-type-card {
  border: 1px solid #e0e0e0;
  border-top: 4px solid #15274b;
  border-radius: 8px;
  padding: 36px 32px;
  background: #fff;
}

.rice-type-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.rice-type-icon {
  font-size: 32px;
  line-height: 1;
}

.rice-type-header h3 {
  font-size: 22px;
  font-weight: 700;
  color: #15274b;
  margin: 0;
  font-family: var(--heading-font);
}

.rice-type-list {
  padding-left: 18px;
  margin-bottom: 24px;
}

.rice-type-list li {
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 6px;
  font-family: var(--paragraph-font);
  font-weight: 500;
}

.rice-varieties {
  margin-bottom: 20px;
}

.varieties-label,
.markets-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-family: var(--heading-font);
}

.varieties-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.variety-tag {
  background: #f0f4ff;
  color: #15274b;
  border: 1px solid #c5d0e8;
  border-radius: 4px;
  padding: 4px 12px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.rice-markets .markets-label {
  margin-bottom: 6px;
}

.rice-markets p {
  font-size: 14px;
  color: var(--text);
  font-family: var(--heading-font);
  margin: 0;
  font-weight: 500;
}

@media (max-width: 768px) {
  .rice-types-grid {
    grid-template-columns: 1fr;
  }
}

/*************Navigation Products Dropdown Css*************/
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown .dropdown-toggle-link {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  white-space: nowrap;
}

.dropdown-arrow {
  font-size: 16px;
  transition: transform 0.25s ease;
  line-height: 1;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #fff;
  border: 1px solid #e8f0e8;
  border-radius: 10px;
  min-width: 260px;
  box-shadow: 0 12px 40px rgba(21, 39, 75, 0.13);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 999;
  padding: 8px;
}

.nav-dropdown-menu a {
  padding: 10px !important;
  width: 100%;
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #e8f0e8;
}

.nav-dropdown-menu::after {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
}

@media (min-width: 992px) {
  .nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }

  .nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
  }
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 14px;
  border-radius: 7px;
  text-decoration: none;
  transition: background 0.18s;
  color: #000;
}

.nav-dropdown-item:hover,
.nav-dropdown-item.active {
  background: #f0faf0;
  color: #000;
  text-decoration: none;
}


.dropdown-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dropdown-text strong {
  font-family: 'Onest', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #15274b;
  line-height: 1.3;
}

.dropdown-text small {
  font-size: 11px;
  color: #4aa643;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.nav-dropdown-footer {
  display: block;
  text-align: center;
  padding: 10px 14px 6px;
  font-size: 13px;
  font-weight: 600;
  color: #15274b;
  text-decoration: none;
  border-top: 1px solid #eef4ee;
  margin-top: 4px;
  transition: color 0.18s;
}

.nav-dropdown-footer:hover {
  color: #4aa643;
  text-decoration: none;
}

@media (max-width: 991px) {
  .nav-dropdown {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    border-left: 3px solid #4aa643;
    border-radius: 0;
    padding: 0 0 0 12px;
    min-width: unset;
    width: 100%;
    display: none;
    background: transparent;
  }

  .nav-dropdown-menu::before,
  .nav-dropdown-menu::after {
    display: none;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: block;
  }

  .nav-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
  }

  .nav-dropdown-item {
    padding: 8px 10px;
  }

  .dropdown-icon {
    display: none;
  }

  .nav-dropdown-footer {
    text-align: left;
    padding-left: 10px;
    border-top-color: transparent;
  }
}

.before-footer {
  width: 100%;

}

.before-footer img {
  width: 100%;
}


/***************About Us Page Css*****************/
.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #eaf5e9;
  border: 1px solid #6dbf67;
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #3a7d35;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.about-badge svg {
  width: 13px;
  height: 13px;
  fill: #3a7d35;
}

/* ── Section wrapper ── */
.about-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 24px;
}

/* ── Intro block ── */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-intro-text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a2a4a;
  line-height: 1.25;
  margin: 0 0 16px;
}

.about-intro-text p {
  font-size: 0.95rem;
  color: #555555;
  line-height: 1.75;
  margin: 0 0 12px;

}

.about-intro-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(26, 42, 74, 0.13);
}

.about-intro-image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

/* ── Stats row ── */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.stat-card {
  text-align: center;
  background: #f7faff;
  border: 1px solid #dde8f0;
  border-radius: 10px;
  padding: 32px 20px;
}

.stat-card .stat-number {
  font-size: 44px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 5px;
  font-family: var(--heading-font);
}

.stat-card .stat-number span {
  color: #6dbf67;
  font-weight: 100;
}

.stat-card .stat-label {
  font-size: 18px;
  color: var(--primary-color);
  font-weight: 500;
  font-family: var(--paragraph-font);
}

/* ── Why Choose Us — dark bg section (mirrors product page) ── */
.about-why {
  background: #1a2a4a;
  padding: 72px 24px;
}

.about-why-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.about-why-inner .section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #6dbf67;
  margin-bottom: 10px;
  font-family: var(--heading-font);
}

.about-why-inner h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  margin: 0 0 12px;
}

.about-why-inner>p {
  font-size: 0.95rem;
  color: #a8bdd0;
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-card {
  background: #213358;
  border: 1px solid #2e4470;
  border-radius: 10px;
  padding: 28px 22px;
}

.why-card-icon {
  width: 40px;
  height: 40px;
  background: #1a2a4a;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.why-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: #6dbf67;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary-color);
  margin: 0 0 8px;
  font-family: var(--heading-font);
}

.why-card p {
  font-size: 14px;
  color: var(--white);
  line-height: 22px;
  margin: 0;
  font-family: var(--paragraph-font);
}

/* ── Export Portfolio ── */
.about-portfolio {
  padding: 72px 24px;
}

.about-portfolio-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.about-portfolio-inner .section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #6dbf67;
  margin-bottom: 10px;
  font-family: var(--heading-font);
}

.about-portfolio-inner h2 {
  color: var(--primary-color);
  margin: 0 0 8px;
}

.about-portfolio-inner>p {
  color: var(--primary-color);
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 25px;
}

.product-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #d0e0ec;
  border-radius: 6px;
  padding: 10px 18px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #1a2a4a;
  background: #f7faff;
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none;
  font-family: var(--paragraph-font);
}

.product-tag:hover {
  border-color: #6dbf67;
  background: #eaf5e9;
  color: #3a7d35;
}

.product-tag svg {
  width: 16px;
  height: 16px;
  stroke: #6dbf67;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Vision / Mission ── */
.about-vision {
  background: #f4f8fb;
  padding: 72px 24px;
}

.about-vision-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.vision-card {
  background: #ffffff;
  border: 1px solid #dde8f0;
  border-radius: 10px;
  padding: 36px 32px;
}

.vision-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.vision-card-top .icon-wrap {
  width: 44px;
  height: 44px;
  background: #eaf5e9;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vision-card-top .icon-wrap svg {
  width: 22px;
  height: 22px;
  stroke: #3a7d35;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vision-card-top h3 {
  font-size: 30;
  font-weight: 600;
  color: #1a2a4a;
  margin: 0;
  font-family: var(--heading-font);
}

.vision-card p {
  font-size: 0.92rem;
  color: #555555;
  line-height: 1.75;
  margin: 0;
}

/* ── Certifications strip (mirrors product page badge row) ── */
.about-certs {
  padding: 56px 24px;
  text-align: center;
}

.about-certs-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.about-certs h2 {
  font-size: 1.55rem;
  font-weight: 700;
  color: #1a2a4a;
  margin-bottom: 8px;
}

.about-certs>.about-certs-inner>p {
  font-size: 0.92rem;
  color: #666666;
  margin-bottom: 36px;
}

.cert-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.cert-badge {
  background: #eaf5e9;
  border: 1px solid #b0d9ab;
  border-radius: 8px;
  padding: 14px 28px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #3a7d35;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .about-intro {
    grid-template-columns: 1fr;
  }

  .about-intro-image {
    order: -1;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
  }

  .why-cards {
    grid-template-columns: 1fr 1fr;
  }

  .about-vision-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .about-stats {
    grid-template-columns: 1fr;
  }

  .why-cards {
    grid-template-columns: 1fr;
  }

  .about-intro-text h2,
  .about-why-inner h2,
  .about-portfolio-inner h2 {
    font-size: 1.55rem;
  }
}

.display-block {
  display: block !important;
}

.display-none {
  display: none !important;
}