@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");

:root {
  --dark-green: #24185c;
  --green: #422f92;
  --white: #ffff;
  --black: #0000;
  --light-bg: #f3f4f6;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html,
body {
  scroll-behavior: smooth;
}
html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  overflow-x: hidden;
}

h1 {
  font-size: 5rem;
}
h2 {
  font-size: 4rem;
}
h3 {
  font-size: 2.8rem;
}
h4 {
  font-size: 2rem;
}
h5 {
  font-size: 1.5rem;
}
h6 {
  font-size: 1.4rem;
}
p {
  font-size: 1.6rem;
}
a {
  display: block;
  text-decoration: none;
  font-size: 1.6rem;
}
li {
  list-style: none;
}

/* ============= */
.wrapper-heading {
  max-width: 132rem;
  margin: auto;
  padding: 7rem 2.8rem 4rem 2.8rem;
}
.wrapper {
  max-width: 132rem;
  margin: auto;
  padding: 5rem 2.8rem;
}
.grid {
  display: grid;
  gap: 5rem;
}
.grid-two-cols {
  grid-template-columns: 1fr 1fr;
}
.grid-three-cols {
  grid-template-columns: 1fr 1fr 1fr;
}
.grid-four-cols {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.grid-five-cols {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

/* ===============navbar header================ */
/* ===============navbar header================ */
/* ===============navbar header================ */
/* ===============navbar header================ */
/* ===============navbar header================ */
/* ===============navbar header================ */
header {
  position: fixed;
  z-index: 9;
  width: 100%;
}
.header-blur {
  background: var(--white);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  transition: all 0.3s ease-in-out;
}
.header-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  max-width: 132rem;
  padding: 1rem;
}
/* .header-right-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
} */
.header-mobile-btn {
  display: none;
}
.header-menu-btn {
  font-size: 2.5rem;
  background-color: var(--green);
  padding: 0.5rem;
  border-radius: 0.5rem;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  -ms-border-radius: 0.5rem;
  -o-border-radius: 0.5rem;
  cursor: pointer;
  color: var(--white);
}

.header_logo img {
  width: 60%;
}
nav {
  display: flex;
  align-items: center;
  gap: 5rem;
}
nav li a {
  color: var(--dark-green);
  font-weight: 600;
}
#active {
  color: var(--green);
  font-weight: 600;
}
.header-social-link {
  color: var(--green);
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.header-social-link a {
  color: var(--white);
  background-color: var(--dark-green);
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 2.5rem;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
/* =======hero slider css======= */
/* =======hero slider css======= */
/* =======hero slider css======= */
/* =======hero slider css======= */
/* =======hero slider css======= */
.slider-btn {
  border: 1px solid #ffffff;
  border-radius: 0;
  /* font-family: "montserratregular"; */
  font-size: 1.4rem;
  padding: 0.9rem 2rem;
  color: #fff;
  line-height: 2.8rem;
}
a {
  color: var(--white);
}

/* ====================== */

.container {
  width: 1200px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.hero-slider {
  width: 100%;
  height: 80vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 0;
}

@media (max-width: 991px) {
  .hero-slider {
    height: 600px;
  }
}

@media (max-width: 767px) {
  .hero-slider {
    height: 500px;
  }
}

.hero-slider .swiper-slide {
  overflow: hidden;
  color: #fff;
}

.hero-slider .swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.hero-slider .slide-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-size: contain;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
}

.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
  background: transparent;
  width: 55px;
  height: 55px;
  line-height: 53px;
  margin-top: -30px;
  text-align: center;
  border: 2px solid #d4d3d3;
  border-radius: 55px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.hero-slider:hover .swiper-button-prev,
.hero-slider:hover .swiper-button-next {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

@media (max-width: 767px) {
  .hero-slider .swiper-button-prev,
  .hero-slider .swiper-button-next {
    display: none;
  }
}

.hero-slider .swiper-button-prev {
  left: 25px;
  transform: translateX(50px);
}

.hero-slider .swiper-button-prev:before {
  font-family: "Font Awesome 5 Free";
  content: "\f060";
  font-size: 15px;
  color: #d4d3d3;
  font-style: normal;
  display: inline-block;
  vertical-align: middle;
  font-weight: 900;
}

.hero-slider .swiper-button-next {
  right: 25px;
  transform: translateX(-50px);
}

.hero-slider .swiper-button-next:before {
  font-family: "Font Awesome 5 Free";
  content: "\f061";
  font-size: 15px;
  color: #d4d3d3;
  font-style: normal;
  display: inline-block;
  vertical-align: middle;
  font-weight: 900;
}

.hero-slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  text-align: left;
  line-height: 12px;
  font-size: 12px;
  color: #000;
  opacity: 0.3;
  background: #fff;
  transition: all 0.2s ease;
}

.hero-slider .swiper-pagination-bullet-active {
  opacity: 1;
}

.hero-slider .swiper-container-horizontal > .swiper-pagination-bullets,
.hero-slider .swiper-pagination-custom,
.hero-slider .swiper-pagination-fraction {
  bottom: 30px;
}

@media screen and (min-width: 992px) {
  .hero-slider .swiper-container-horizontal > .swiper-pagination-bullets,
  .hero-slider .swiper-pagination-custom,
  .hero-slider .swiper-pagination-fraction {
    /*     display: none; */
  }
}
.swiper-pagination {
  text-align: left;
}

.hero-slider .swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 50px;
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
}

@media (min-width: 767px) {
  .hero-slider .swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 30px;
  }
}
/*--------------------------------------------------------------
      #hero-style
  --------------------------------------------------------------*/
.hero-style {
  /* height: 100vh; */
  transition: all 0.4s ease;
  margin-top: 6.5rem;
  min-height: 100vh;
}

@media (max-width: 991px) {
  .hero-style {
    height: 600px;
  }
}

@media (max-width: 767px) {
  .hero-style {
    height: 30vh;
  }
}

@media screen and (min-width: 992px) {
  .hero-style .container {
    /* padding-top: 95px; */
  }
}

.hero-style .slide-title,
.hero-style .slide-text,
.hero-style .slide-btns {
  /* max-width: 690px; */
  text-align: left;
}
.slide-btns {
  margin: 40px 60px;
}
.hero-style .slide-title h2 {
  font-size: 75px;
  font-weight: 600;
  line-height: 1;
  color: var(--white);
  margin: 40px 60px;
  text-transform: uppercase;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  text-align: left;
}

@media (max-width: 1199px) {
  .hero-style .slide-title h2 {
    font-size: 75px;
    color: var(--white);
  }
}

@media (max-width: 991px) {
  .hero-style .slide-title h2 {
    font-size: 50px;
    margin: 0 0 35px;
  }
}

@media (max-width: 767px) {
  .hero-style .slide-title h2 {
    font-size: 19px;
    margin: 0 0 6px;
  }
}

.hero-style .slide-text p {
  opacity: 0.8;
  font-size: 2rem;
  /* font-weight: 500; */
  line-height: 1.25;
  letter-spacing: normal;
  color: var(--white);
  margin: 40px 60px;
  transition: all 0.4s ease;
  text-align: left;
}

@media (max-width: 767px) {
  .hero-style .slide-text p {
    font-size: 1.6rem;
    font-weight: normal;
    margin: 0 0 30px;
    max-width: 232px;
  }
}

.hero-style .slide-btns > a:first-child {
  margin-right: 10px;
}

/* ====hero slider bg overlay==== */
.slide-bg-image {
  position: relative;
  z-index: 2;
}
.clearfix::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.445);
  z-index: 3;
  width: 100%;
  height: 100%;
}
.slide-title,
.slide-text,
.swiper-pegination,
.swiper-button-nex,
.swiper-button-perv {
  z-index: 4;
  position: relative;
}

/*--------------------------------------------------------------
      #button-style
  --------------------------------------------------------------*/
.theme-btn,
.theme-btn-s2 {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: var(--main);
  color: var(--white);
  padding: 15px 32px;
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  text-transform: capitalize;
  border: 1px solid var(--main);
  position: relative;
  overflow: hidden;
  cursor: pointer !important;
}
a {
  text-decoration: none;
  transition: all 0.2s ease;
}
.theme-btn-s2 {
  background-color: rgba(255, 255, 255, 0.9);
  color: #131e4a;
}
.theme-btn:hover,
.theme-btn-s2:hover,
.theme-btn:focus,
.theme-btn-s2:focus,
.theme-btn:active,
.theme-btn-s2:active {
  background-color: #2b3b95;
  color: #fff;
}
.theme-btn-s3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #ffffff;
  text-transform: uppercase;
}
i.fa-chevron-circle-right {
  height: 22px;
  width: 22px;
}
a:hover {
  text-decoration: none;
}
@media (max-width: 991px) {
  .theme-btn,
  .theme-btn-s2,
  .theme-btn-s3 {
    font-size: 13px;
    padding: 15px 25px;
  }
}
@media (max-width: 767px) {
  .theme-btn,
  .theme-btn-s2 {
    padding: 13px 20px;
    font-size: 13px;
  }
}
/* =========about us========= */
/* =========about us========= */
/* =========about us========= */
/* =========about us========= */
/* =========about us========= */
/* =========about us========= */
/* =========about us========= */
/* =========about us========= */
/* =========about us========= */
/* =========about us========= */
/* =========about us========= */
/* =========about us========= */
.about {
  width: 100%;
  height: 100%;
  position: relative;
}
.about .wrapper-heading {
  text-align: center;
  text-transform: uppercase;
}
.about .grid-two-cols {
  grid-template-columns: 1fr 1.5fr;
}
.about .grid {
  align-items: center;
}
.about-right {
  text-align: center;
  position: relative;
  height: 600px;
}
.about-right .about-right-1 {
  width: 70%;
  border-top-left-radius: 30%;
  border-top-right-radius: 30%;
  border-bottom-left-radius: 30%;
  border-bottom-right-radius: 30%;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border: 5px solid var(--white);
}
.about-right-2 {
  width: 30%;
  border-top-left-radius: 30%;
  border-top-right-radius: 30%;
  border-bottom-left-radius: 30%;
  border-bottom-right-radius: 30%;
  position: absolute;
  bottom: 5%;
  right: 15%;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border: 5px solid var(--white);
}
/* =======why-choose========== */
/* =======why-choose========== */
/* =======why-choose========== */
/* =======why-choose========== */
/* =======why-choose========== */
/* =======why-choose========== */
/* =======why-choose========== */
/* =======why-choose========== */
/* =======why-choose========== */
.why-choose {
  /* background-color: var(--light-bg); */
  background-image: url(assets/bgg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.why-choose-box {
  background-color: var(--white) !important;
}
.why-choose-box-data {
  text-align: center;
  /* box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; */
  padding: 2rem;
  /* background-color: var(--dark-green); */
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -ms-border-radius: 1rem;
  -o-border-radius: 1rem;
}

.why-choose-box-data img {
  width: 50px;
  height: 50px;
}
.why-choose-box-data h3 {
  text-transform: capitalize;
  color: var(--dark-green);
}
.w-c-b-d-h3 {
  margin-top: 2rem;
  font-weight: 600;
}
/* ======product====== */
/* ======product====== */
/* ======product====== */
/* ======product====== */
/* ======product====== */
/* ======product====== */
/* ======product====== */
/* ======product====== */
.product .wrapper-heading p {
  width: 50%;
  margin: 0 auto;
  text-transform: capitalize;
}
.product-data-box {
  background-color: var(--white);
  padding: 1rem;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -ms-border-radius: 1rem;
  -o-border-radius: 1rem;
}
.product-data-box img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -ms-border-radius: 1rem;
  -o-border-radius: 1rem;
}
.product-data-box p {
  text-align: center;
  padding-top: 1rem;
  font-weight: 600;
}
.p-c .wrapper {
  padding-bottom: 0;
  text-align: center;
}
.why-choose-box {
  background-color: var(--light-bg);
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -ms-border-radius: 1rem;
  -o-border-radius: 1rem;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.products-new-list h3{
  padding: 2rem;
  text-align: center;
  background-color: var(--dark-green);
  color:var(--white);
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
}
.products-new-list img{
  width: 100%;
  height: auto;
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -ms-border-radius: 1rem;
  -o-border-radius: 1rem;
}
.product .grid{
  gap: 2rem;
}
/* ============== */
/* ============== */
/* ============== */
/* ============== */
 
 
.custom-modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.652);
  z-index: 999;
}
.open-modal{
  cursor: pointer;
   
}

.modal-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 20px;
  width: 100%;
  /* max-width: 500px; */
  border-radius: 8px;
 position: relative;
}
.modal-content .grid{
  gap: 1rem;
}
.close {
  color: #ffffff;
  position: absolute;
  top: 6px;
  right: 12px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  background: #000000;
  width: 45px;
  height: 45px;
  text-align: center;
  border-radius: 50%;
}
/* ============== */
/* ============== */
/* ============== */
/* ============== */
/* ============== */
/* ============== */
/* ===application=== */
/* ===application=== */
/* ===application=== */
/* ===application=== */
.application {
  background-image: url(assets/bgg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.application .grid {
  align-items: flex-start;
}
/* .application .grid-two-cols {
  grid-template-columns: 1fr 2fr;
} */
.app-sub-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--dark-green);
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -ms-border-radius: 1rem;
  -o-border-radius: 1rem;
}
.app-sub-heading h3 {
  color: var(--white);
  padding: 2rem;
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
}
.app-sub-heading i {
  color: var(--white);
  font-size: 3rem;
  padding-right: 1.7rem;
}
.application-box-list {
  background-color: var(--green);
  color: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  /* display: inline-flex; */
}
.application-box-list h4 {
  text-transform: capitalize;
  padding: 2rem;
  text-align: center;
  font-weight: 400;
}
/* =====quality-processing====== */
/* =====quality-processing====== */
/* =====quality-processing====== */
/* =====quality-processing====== */
/* =====quality-processing====== */
/* =====quality-processing====== */
/* =====quality-processing====== */
/* =====quality-processing====== */
/* =====quality-processing====== */
.quality-processing .wrapper-heading p {
  width: 50%;
  margin: 0 auto;
  text-transform: capitalize;
}
/* ========export-logistics======= */
/* ========export-logistics======= */
/* ========export-logistics======= */
/* ========export-logistics======= */
/* ========export-logistics======= */
/* ========export-logistics======= */
/* ========export-logistics======= */
.export-logistics {
  /* background-color: var(--light-bg); */
  /* text-align: center; */
  background-image: url(assets/bgg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.export-logistics .grid {
  align-items: flex-start;
}

.export-logistics-img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -ms-border-radius: 1rem;
  -o-border-radius: 1rem;
}
.export-log-country-list {
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 5rem;
}
.export-log-country-list p {
  padding: 1rem;
}
/* ===footer=== */
/* ===footer=== */
/* ===footer=== */
/* ===footer=== */
/* ===footer=== */
/* ===footer=== */
/* ===footer=== */
/* ===footer=== */
footer {
  background-color: var(--dark-green);
  color: var(--white);
  padding: 7rem 0;
}
.footer-box img {
  background-color: var(--white);
  padding: 1rem;
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -ms-border-radius: 1rem;
  -o-border-radius: 1rem;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}
.footer-social i {
  font-size: 3rem;
}
.footer-p {
  line-height: 3rem;
}
.footer-links ul {
  margin-top: 3rem;
}
.footer-links ul li a {
  padding: 1.5rem 0;
}
.footer-box-add-flex {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  align-items: center;
}
.footer-box-add-flex i {
  font-size: 2rem;
}

/* ======get-into-touch======= */
/* ======get-into-touch======= */
/* ======get-into-touch======= */
/* ======get-into-touch======= */
/* ======get-into-touch======= */
.get-into-touch {
  text-align: center;
  background-color: var(--green);
}
.get-into-touch h2 {
  text-transform: capitalize;
  color: var(--white);
}
/* ============ */
#scrollToTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #333;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: none; /* Hidden initially */
  transition: opacity 0.3s ease-in-out;
}

#scrollToTopBtn:hover {
  background-color: #555;
}
/* =======subfooter========= */
/* =======subfooter========= */
/* =======subfooter========= */
/* =======subfooter========= */
/* =======subfooter========= */
.subfooter{
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--green);
  padding: 1rem;
}
.subfooter p{
  color: var(--white);
}
.subfooter a{
  text-decoration: underline;
}