/*--------------------------------------------------------------------- 
File Name: style.css 
---------------------------------------------------------------------*/

/*--------------------------------------------------------------------- 
Import Fonts 
---------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900');
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Raleway:400,500,600,700,800,900&display=swap');

/*--------------------------------------------------------------------- 
Reset & Basic Styles 
---------------------------------------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  overflow-x: hidden;
}

a {
  color: #1f1f1f;
  text-decoration: none !important;
  transition: all 0.3s ease-in-out;
}

h1, h2, h3, h4, h5, h6 {
  color: #111;
  margin: 0;
  line-height: normal;
  font-weight: normal;
}

h1 { font-size: 24px; }
h2 { font-size: 22px; }
h3 { font-size: 18px; }
h4 { font-size: 16px; }
h5 { font-size: 14px; }
h6 { font-size: 13px; }

ul, ol, li {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin: 0;
  font-size: 17px;
  line-height: 28px;
  color: #2d2d2d;
}

img {
  max-width: 100%;
  height: auto;
}

button {
  border: 0;
  cursor: pointer;
  background: none;
}

.full {
  width: 100%;
  float: left;
}

.text_align_left { text-align: left; }
.text_align_right { text-align: right; }
.text_align_center { text-align: center; }

/*--------------------------------------------------------------------- 
Loader 
---------------------------------------------------------------------*/
.loader_bg {
  position: fixed;
  z-index: 9999999;
  background: #fff;
  width: 100%;
  height: 100%;
}

.loader {
  height: 100%;
  width: 100%;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader img {
  width: 100px !important;
  height: 100px !important;
}

/*--------------------------------------------------------------------- 
Header 
---------------------------------------------------------------------*/
.header-area {
  border-top: #6b7908 solid 15px;
  width: 100%;
  position: absolute;
  z-index: 9999;
  height: 85px;
  background: #6b7908; /* green background */
  line-height: 68px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

}





.logo a,
.inner_page .logo a {
  text-decoration: none;
}

.logo a span,
.inner_page .logo a span {
  font-family: 'Rubik', sans-serif !important;
  font-weight: 700;
  font-size: 20px;
 color: #111;              /* white text for contrast */
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
}



.navbar-area {
  text-align: center;
  display: flex;
  justify-content: center;
}

.site-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-navbar ul {
  display: flex;
  padding: 0;
}

.site-navbar ul li {
  padding-right: 55px;
}

.site-navbar ul li:last-child {
  padding-right: 0;
}

.site-navbar ul li a {
  color: black;
  font-size: 20px;
  display: block;
}

.site-navbar ul li a:hover,
.site-navbar ul li a.active {
  color: white;
}


/* navbar regular css end */


/*--------------------------------------------------------------------- 
Nav Toggler (Mobile Menu) 
---------------------------------------------------------------------*/
.nav-toggler {
  display: none;
  padding: 5px;
  border: 3px solid #363636;
  background-color: transparent;
  cursor: pointer;
  height: 39px;
  z-index: 99999;
}

.nav-toggler span,
.nav-toggler span:before,
.nav-toggler span:after {
  display: block;
  width: 28px;
  height: 3px;
  background-color: #363636;
  transition: 0.3s;
}

.nav-toggler span:before {
  content: '';
  transform: translateY(-9px);
}

.nav-toggler span:after {
  content: '';
  transform: translateY(6px);
}

.nav-toggler.toggler-open span {
  background-color: transparent;
}

.nav-toggler.toggler-open span:before {
  transform: translateY(0px) rotate(45deg);
}

.nav-toggler.toggler-open span:after {
  transform: translateY(-3px) rotate(-45deg);
}

/*--------------------------------------------------------------------- 
Banner Section 
---------------------------------------------------------------------*/
#banner1 .carousel-item {
  width: 100%;
  height: 100%;
}

#banner1 .carousel-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (min-width: 768px) {
  #banner1 .carousel-item img {
    height: 100vh;
  }
}

.slider_main .carousel-indicators {
  display: none;
}

#banner1 .carousel-control-prev,
#banner1 .carousel-control-next {
  width: 103px;
  height: 103px;
  background-color: #ffffffc4;
  color: #000;
  font-size: 60px;
  border-radius: 10px;
  opacity: 1;
  top: 50%;
  z-index: 999;
}

#banner1 .carousel-control-prev {
  left: 3%;
}

#banner1 .carousel-control-next {
  right: 3%;
}

#banner1 .carousel-control-prev:hover,
#banner1 .carousel-control-next:hover,
#banner1 .carousel-control-prev:focus,
#banner1 .carousel-control-next:focus {
  color: #6b7908;
}

.willom {
  display: block;
  text-align: center;
  margin-top: -40px;
}

.willom h1 {
  font-size: 65px;
  line-height: 72px;
  color: #fff;
  font-weight: bold;
  background: #6b7908;
  display: inline-block;
  padding: 30px 40px;
  border-radius: 30px;
}

/*--------------------------------------------------------------------- 
About Section 
---------------------------------------------------------------------*/
.about {
  background: #fff;
  padding-top: 90px;
  padding-bottom: 35px;
}

.about .titlepage {
  padding-bottom: 0;
  max-width: 610px;
  float: right;
}
.about .titlepage span {
  font-size: 20px;
  line-height: 38px;
  font-weight: bold;
  color: #000000;
  text-transform: uppercase;
  display: block;
}

.about .titlepage p {
  padding-top: 20px;
  color: #2d2d2d;
  font-size: 17px;
  line-height: 28px;
  text-align: justify;
}

.about_img figure {
  margin: 0;
}

.about_img figure img {
  border-radius: 5px;
  transition: 0.5s ease-in;
}

.about_img figure img:hover {
  box-shadow: 0 0 16px 3px #635d5d38;
}
.titlepage h2 {
  font-size: 40px;
  line-height: 58px;
  font-weight: bold;
  color: #6b7908;
  text-transform: uppercase;
}

/*--------------------------------------------------------------------- 
Services Section 
---------------------------------------------------------------------*/
.services {
  background: #fff;
  padding-top: 90px;
}

.services .titlepage {
  padding-bottom: 20px;
}
.services .titlepage span {
  font-size: 20px;
  line-height: 36px;
  font-weight: bold;
  color: #000000; /* pure black */
  text-transform: uppercase;
  display: block;
  text-shadow: none; /* removes any blur effect */
}



.services_box_main {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.services_box {
    margin-top: 30px;
    box-shadow: 0 0 38px rgba(2, 3, 8, 0.14);
    background:#fff;
    margin-bottom: 50px;
    border-radius: 5px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.services_box figure {
  margin: 0;
  margin-bottom: 20px;
}

.services_box figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 5px 5px 0 0;
}


.veget {
  padding: 30px;
  margin-top: 0;
  text-align: center;
}
.veget p {
  overflow: hidden;
}




.services_box h3 {
  font-size: 30px;
  font-weight: bold;
  color: #292928;
  line-height: 35px;
  height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* aligns all from top */
  align-items: center;
  text-align: center;
  margin: 0;

}

.services_box h3 span {
  display: block;
}

.services_box_main .read_more {
  margin: 0 auto;
  display: block;
}

/*--------------------------------------------------------------------- 
Contact Section 
---------------------------------------------------------------------*/
.contact {
  background: #fff;
  padding-top: 50px;
}
.contact .titlepage span {
  font-size: 22px;
  line-height: 34px;
  font-weight: bold;
  color: black
  text-transform: uppercase;
  display: block;
}


.map-responsive {
  margin-top: 90px;
}

.main_form .form_control {
  width: 100%;
  height: 66px;
  margin-bottom: 30px;
  padding: 0 20px;
  font-size: 18px;
  border: 3px solid #6b7908;
  color: #999998;
}

.main_form .textarea {
  width: 100%;
  height: 179px;
  margin-bottom: 40px;
  padding: 15px 20px;
  font-size: 18px;
  color: #999998;
  border: 3px solid #6b7908;
}

.group_btn {
  display: flex;
  justify-content: center;
}

.main_form .send_btn {
  width: 100%;
  max-width: 169px;
  height: 69px;
  line-height: 69px;
  background-color: #323232;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  border-radius: 10px;
  text-transform: uppercase;
  transition: 0.5s ease-in;
}

.main_form .send_btn:hover {
  background-color: #6b7908;
}

#request *::placeholder {
  color: #d0d0cf;
}

/*--------------------------------------------------------------------- 
Footer 
---------------------------------------------------------------------*/
.footer {
  padding-top: 40px;         /* you can reduce this too */
   padding-bottom: 0 !important;      /* 👈 add this line */
  background: #252525;
  text-align: center;
}

.hedingh3 {
  padding-top: 20px;
}

.hedingh3 h3 {
  font-size: 24px;
  line-height: 23px;
  font-weight: 500;
  color: #fff;
  text-align: left;
  text-transform: uppercase;
  padding-bottom: 20px;
}

.hedingh3 p {
  color: #fff;
  text-align: left;
  margin-bottom: 15px;
}

ul.menu_footer {
  text-align: left;
  margin-bottom: 15px;
}

ul.menu_footer li a {
  font-size: 17px;
  line-height: 18px;
  color: #fff;
  padding-bottom: 10px;
  display: block;
}

ul.menu_footer li a:hover {
  color: #6b7908;
}

.newsl {
  width: 100%;
  height: 51px;
  background: #fff;
  font-size: 17px;
  color: #c9c7c7;
  padding: 0 15px;
  margin-bottom: 20px;
  border: 2px solid #fff;
}

.subsci_btn {
  background-color: #6b7908;
  color: #fff;
  line-height: 59px;
  height: 59px;
  max-width: 70px;
  width: 100%;
  font-size: 16px;
  border: none;
  text-transform: uppercase;
  border-radius: 0;
  transition: 0.5s ease-in;
}

.subsci_btn:hover {
  box-shadow: 0 0 10px rgba(221, 221, 221, 0.37);
}

ul.top_infomation li {
  font-size: 16px;
  color: #fff;
  padding-bottom: 8px;
}

ul.top_infomation li i {
  width: 30px;
  height: 30px;
  background: #6b7908;
  color: #fff;
  line-height: 30px;
  border-radius: 30px;
  margin-right: 5px;
  text-align: center;
  font-size: 15px;
}

ul.top_infomation li a {
  color: white !important;
  text-decoration: none;
  transition: color 0.3s;
}


ul.top_infomation li a:hover,
ul.top_infomation li a:focus {
  color: #6b7908 !important;
}


ul.social_icon {
  text-align: right;
}

ul.social_icon li {
  display: inline-block;
  margin-left: 40px;
}

ul.social_icon li a i {
  font-size: 17px;
  color: #fff;
  border-radius: 50px;
  transition: 0.5s ease-in;
  text-align: center;
}

ul.social_icon li a i:hover {
  color: #111;
}

.copyright {
  margin-top: 70px;
  padding: 15px 0;
  background: #6b7908;
}

.copyright p {
  font-size: 17px;
  line-height: 22px;
  color: #fff;
  text-align: center !important; /* force centering */
  margin: 0 auto !important;     /* center block inside flex/grid */
  width: 100%;                   /* ensures full container width */
}



.copyright a {
  color: #fff;
}

.copyright a:hover {
  color: #111;
}

/*--------------------------------------------------------------------- 
Inner Page Logo BG Color 
---------------------------------------------------------------------*/
.inner_page .header-area {
  background: #6b7908;
  position: inherit;
}

/*--------------------------------------------------------------------- 
Utility 
---------------------------------------------------------------------*/
.flot_right { float: right; }

.footer-heading {
  font-size: 28px;
  font-weight: 600;
  color: white;
  text-align: center;
  margin-bottom: 20px;
}

body.about_page .footer {
  padding-top: 20px !important;
  padding-bottom: 0px !important;
}




