body {
  margin: 0px;
  /* padding:10px; */
  padding-top: 0px;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif !important;
  background: var(--bg-light) !important;
  scroll-behavior: smooth;
  overflow-x: hidden !important;
  padding-top: 100px;

}

html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;
  scroll-padding-top: 100px !important;
}

:root {
  --primary-color: #EDA505;
  --secondary-color: #6AC23F;
  --primary-font: 'Poppins', sans-serif;
  --bg-light: #FFF9EB;
  --dark-text: #333333;
  --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1),
    0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* ------------------- */
a {
  text-decoration: none !important;
  color: inherit !important;
}

.para {
  font-size: 16px;
  color: #000;
}

ul {
  list-style: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: auto;
  margin: 0 auto;
  transition: all 0.35s ease;
  background: var(--bg-light);
}

.header.on-scroll {
  background: var(--bg-light);
  box-shadow: var(--shadow-medium);
}

.navbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  column-gap: 1.25rem;
  width: 100%;
  height: 4.25rem;
  margin: 0 auto;
  height: 90px;
}

.brand {
  font-family: inherit;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -1px;
  color: var(--primary-color);
  /* text-transform: uppercase; */
}

.brand img {
  height: 65px;
}

.menu {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: auto;
  padding: 4rem 0 3rem;
  overflow: hidden;
  background-color: var(--bg-light);
  box-shadow: var(--shadow-medium);
  transition: all 0.4s ease-in-out;
}

.menu.is-active {
  top: 0;
  width: 100%;
  height: auto;
  z-index: 3;
}

.menu-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 1.25rem;
  padding-left: 0px;
}

.menu-link {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  /* color: var(--color-white-100); */
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
  cursor: pointer;
  position: relative;
}

/* .menu-block {
  display: inline-block;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25;
  user-select: none;
  white-space: nowrap;
  text-align: center;
  margin-left: auto;
  padding: 11px 13px;
  border-radius: 3rem;
  text-transform: capitalize;
  color: #fff !important;
  background-color: var(--primary-color);
  box-shadow: var(--shadow-medium);
  transition: all 0.3s ease-in-out;
} */


.menu-block {
  position: relative;
  display: inline-block;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25;
  user-select: none;
  white-space: nowrap;
  text-align: center;
  margin-left: auto;
  padding: 11px 13px;
  border-radius: 3rem;
  text-transform: capitalize;
  color: #fff !important;
  background-color: var(--primary-color);
  box-shadow: var(--shadow-medium);
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  text-decoration: none;
}
/*----- social_icon -----*/
.social_icon img{
  transition: 0.4s;
  opacity: 90%;
  position: fixed;
  width: 50px;
  z-index: 9999;
  bottom: 60px;
  right: 50px;
}
.social_icon img:hover{
  opacity:100%;
  animation-play-state: paused;
}
.animate__animated.animate__pulse{
  --animate-duration: 1s;
  animation-iteration-count: infinite;
}

/* Text span inside anchor */
.menu-block span {
  display: inline-block;
  transition: transform 0.3s ease, opacity 0.3s ease;
  position: relative;
  z-index: 2;
}

/* ::after for hover text */
.menu-block::after {
  content: attr(data-text);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  opacity: 0;
  white-space: nowrap;
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 1;
}

/* Hover effect */
.menu-block:hover span {
  transform: translateY(-100%);
  opacity: 0;
}

.menu-block:hover::after {
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
}

.menu-item-has-children {
  position: relative;
}

.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 10px 0;
  z-index: 1000;
}

.sub-menu .menu-item {
  padding: 0;
}

.sub-menu .menu-link {
  padding: 8px 20px;
  display: block;
  text-transform: none;
  font-size: 16px;
  color: #333 !important;
  white-space: nowrap;
}

.sub-menu .menu-link:hover {
  color: var(--primary-color) !important;
}

.dropdown-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
  font-size: 11px;
  margin-left: 3px;
  color: var(--primary-color);
}

@media only screen and (max-width: 767px) {
  .menu-inner {
    flex-direction: column;
    row-gap: 1.25rem;
  }

  .sub-menu {
    position: static;
    display: none;
    padding-left: 20px;
    box-shadow: none;
    background: rgba(255, 255, 255, 0);
  }

  .menu-item-has-children.active .sub-menu {
    display: block;
  }

  .menu-item-has-children .dropdown-arrow {
    transition: transform 0.3s ease;
  }

  .menu-item-has-children.active .dropdown-arrow {
    transform: rotate(-90deg);
  }
}

@media only screen and (min-width: 768px) {
  .navbar {
    align-items: start !important;
    padding-top: 22px !important;
  }

  .menu {
    position: relative;
    top: 10px;
    width: auto;
    height: auto;
    padding: 0rem;
    margin-left: auto;
    background: none;
    box-shadow: none;
    height: 200px;
  }

  .menu-item-has-children {
    position: relative;
  }

  .menu-item-has-children .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 7px;
    padding: 10px 0;
    z-index: 1000;
  }

  .menu-item-has-children.active .sub-menu {
    display: block;
  }

  .menu-item-has-children.active .dropdown-arrow {
    transform: rotate(-90deg);
  }

  /* Keep hover for non-touch devices */
  @media (hover: hover) {
    .menu-item-has-children:hover .sub-menu {
      display: block;
    }

    .menu-item-has-children:hover .dropdown-arrow {
      transform: rotate(-90deg);
    }
  }

  .menu-inner {
    display: flex;
    flex-direction: row;
    column-gap: 2rem;
    margin: 0 auto;
  }

  .menu-link {
    text-transform: capitalize;
  }

  .menu-block {
    margin-left: 2rem;
  }
}

.burger {
  position: relative;
  display: block;
  cursor: pointer;
  user-select: none;
  order: -1;
  z-index: 10;
  width: 1.6rem;
  height: 1.15rem;
  border: none;
  outline: none;
  background: none;
  visibility: visible;
  transform: rotate(0deg);
  transition: 0.35s ease;
}

@media only screen and (min-width: 768px) {
  .burger {
    display: none;
    visibility: hidden;
  }
}

.burger-line {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2px;
  border: none;
  outline: none;
  opacity: 1;
  border-radius: 1rem;
  transform: rotate(0deg);
  background-color: var(--dark-text);
  transition: 0.25s ease-in-out;
}

.burger-line:nth-child(1) {
  top: 0px;
}

.burger-line:nth-child(2) {
  top: 0.5rem;
  width: 70%;
}

.burger-line:nth-child(3) {
  top: 1rem;
}

.burger.is-active .burger-line:nth-child(1) {
  top: 0.5rem;
  transform: rotate(135deg);
}

.burger.is-active .burger-line:nth-child(2) {
  opacity: 0;
  visibility: hidden;
}

.burger.is-active .burger-line:nth-child(3) {
  top: 0.5rem;
  transform: rotate(-135deg);
}

/* ---------------------------- */

/* .banner{
    padding: 20px;
} */
.hero_section {
  margin: 0px 15px;
}

.single-item {
  z-index: 10;
  width: 100%;
}

.single-item .slider_img {
  width: 100%;
  height: 85vh;
  object-fit: cover;
  overflow: hidden;
  border: none;
}

.single-item .slider_img .slid {
  width: 100%;
  object-fit: cover;
  height: 85vh;
  border-radius: 30px;
}

.slider_img .container {
  position: relative;
}

/* 
.primary_btn {
  background-color: var(--secondary-color);
  padding: 13px 20px;
  border-radius: 30px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease-in-out;
} */

.primary_btn {
  position: relative;
  background-color: var(--secondary-color);
  padding: 13px 20px;
  border-radius: 30px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border: none;
  overflow: hidden;
  cursor: pointer;
}

/* The real text */
.primary_btn span {
  display: inline-block;
  transition: transform 0.3s ease, opacity 0.3s ease;
  position: relative;
  z-index: 2;
}

/* The clone text */
.primary_btn::after {
  content: attr(data-text);
  /* uses the text from data attribute */
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  white-space: nowrap;
  z-index: 1;
}

/* Hover effect */
.primary_btn:hover span {
  transform: translateY(-100%);
  opacity: 0;
}

.primary_btn:hover::after {
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
}


.slider_cnt {
  position: absolute;
  bottom: 50px;
  color: #fff;
  z-index: 1;
  left: 10%;
}

.slider_cnt h1 {
  font-size: 60px;
  font-weight: 600;
  text-transform: uppercase;
}

.hero_section .slick-active .slider_cnt h1 {
  overflow: hidden;
}

.hero_section .slick-active .slider_cnt p {
  overflow: hidden;
  /* width: 70%; */
}

.hero_section .slick-active .slider_cnt h1 span {
  display: block;
  animation: reveal 1.5s cubic-bezier(0.77, 0, 0.175, 1) 0s;
}

.hero_section .slick-active .slider_cnt p span {
  display: block;
  animation: reveal 3.6s cubic-bezier(0.77, 0, 0.175, 1) 0s;
}

@keyframes reveal {
  0% {
    transform: translate(0, 100%);
  }

  100% {
    transform: translate(0, 0);
  }
}

.counter {
  display: flex;
  margin-top: 30px;
}

.counter h3 {
  font-size: 30px;
  margin-bottom: 0px;
}

.counter p {
  font-size: 14px !important;
  color: #ffffffab;
  font-weight: 300;
}

.numbers {
  margin-right: 30px;
}

.hero_section .slick-active .counter {
  overflow: hidden;
}

.hero_section .slick-active .counter span {
  display: block;
  animation: reveal 2.6s cubic-bezier(0.77, 0, 0.175, 1) 0s;
}

.slider_btn {
  position: absolute;
  bottom: 70px;
  color: #fff;
  z-index: 2;
  right: 10%;
}

.hero_section .slick-active .slider_btn {
  overflow: hidden;
}

.hero_section .slick-active .slider_btn .primary_btn {
  display: block;
  animation: reveal 1.5s cubic-bezier(0.77, 0, 0.175, 1) 0s;
}

/* ========= About Section ========= */
.about_section {
  padding: 70px 0px;
}

.sub_title {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  margin-bottom: 15px;
}

.subhead {
  font-size: 45px;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 30px;
}


/* ========= About Section ========= */

/* ========= Services Section ========= */
.services_section {
  padding: 70px 0px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(229, 255, 216, 1) 100%);
}

.serv_box {
  padding: 20px;
  box-shadow: var(--shadow-medium);
  background: #fff;
  border-radius: 20px;
  margin-bottom: 30px;
  height: calc(100% - 20px);
  transition: all 0.3s ease-in-out;
}

.serv_box:hover {
  box-shadow: var(--shadow-large);
  transform: translateY(-5px);
  /* cursor: pointer; */
  transition: all 0.3s ease-in-out;
}

.serv_icon {
  height: 45px;
  border-radius: 10px;
  margin-bottom: 10px;
}

.serv_box h6 {
  font-size: 20px;
  font-weight: 600;
}

.serv_box p {
  font-size: 14px;
  color: var(--dark-text);
  margin-bottom: 0px;
}

/* ========= Services Section ========= */


/* ========= Industries Section ========= */

.industries_section {
  padding: 70px 0px;
}

.industries_box {
  padding: 25px;
  box-shadow: var(--shadow-medium);
  background: #fff;
  border-radius: 20px;
  margin-bottom: 30px;
  height: calc(100% - 20px);
  transition: all 0.3s ease-in-out;
  text-align: center;
}

.industries_box:hover {
  box-shadow: var(--shadow-large);
  transform: translateY(-5px);
  /* cursor: pointer; */
  transition: all 0.3s ease-in-out;
}

.industries_icon {
  height: 45px;
  border-radius: 10px;
  margin-bottom: 10px;
}

.industries_box h6 {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 0px;
  color: #033755;
}

/* ========= Industries Section ========= */


/* ========= Our presence Section ========= */

.presence_section {
  padding: 70px 0px 0px 0px;
  /* background: linear-gradient(0deg, rgba(126, 181, 187, 1) 0%, rgba(229, 255, 216, 1) 100%); */
  background: linear-gradient(0deg, rgba(229, 255, 216, 1) 0%, rgba(229, 255, 216, 1) 100%);
  text-align: center;
}

.presence_section .para {
  width: 100%;
  max-width: 700px;
  text-align: center;
  margin: 0px auto;
  margin-bottom: 50px;
}

.presence_section img {
  height: 300px;
  width: 100%;
}

.map_box {
  position: relative;

}

/* ========= Our presence Section ========= */


/* ========= Whychoose Section ========= */

.whychoose_section {
  padding: 70px 0px;
}


/* ========= Whychoose Section ========= */

/* ========= Blogs Section ========= */
.blogs_section {
  padding: 70px 0px 0px 0px;
}

/* .blog_box{
  
} */

.blog_box {
  width: 100%;
  height: 250px !important;
  padding: 0px;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 20px;
  position: relative;
}

.blog_img {
  width: 100%;
  border-radius: 10px;
  height: 100%;
}

.blog_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease 0s;
}

.blog_box:hover img {
  transform: scale(1.1);
  transition: all 0.3s ease 0s;
}

.blog-overlay {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.923) 0%, rgba(255, 0, 0, 0) 100%);
  transition: all 0.3s ease 0s;
  padding: 20% 25px 30px 25px;
  width: 100%;
  color: #fff !important;
}

.blog-overlay p {
  color: #fff !important;
  font-size: 18px !important;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.blog_big {
  height: calc(88% - 22px) !important;
}

/* ========= Blogs Section ========= */


/* ========= Contact banner Section ========= */
.contact_banner {
  background: url(../images/foo_ban.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 20px 0px;
}

.contact_banner .banner_head {
  margin-bottom: 0px;
  font-weight: 500;
  color: #fff;
  font-size: 30px;
  width: 100%;
}

.content_right {
  display: flex;
  justify-content: end;
  align-items: center;
  height: 100%;
}


/* ========= Contact banner Section ========= */

/* ========= FOOTER ========= */
.footer {
  padding: 70px 0px 0px 0px;
  background-color: #222222;
}
.footer .logo_img img {
  width: 90px;
}

.footer_head {
  color: #fff;
  font-size: 18px;
}

.footer_links {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

.footer_links li {
  color: #808080;
  font-size: 14px;
  padding: 6px 0px;
}

.footer_links li a {
  color: #808080;
  text-decoration: none;
  transition: all 0.3s ease 0s;
}

.footer_links li a:hover {
  color: var(--primary-color) !important;
  opacity: 0.8;
  transition: all 0.3s ease 0s;
}

.copy-right {
  display: flex;
  justify-content: space-between;
  color: #fff;
  opacity: .9;
  font-size: 12px;
  margin-top: 40px;
  padding-top: 30px;
  padding-bottom: 30px;
  font-weight: 200;
  border-top: 1px solid #ffffff51;

}

.copy-right a {
  color: #fff;
  opacity: .9;
  text-decoration: none;
}

.copy-right a:hover {
  color: var(--primary-color);
  opacity: 0.8;
}

.footer_social {
  margin-top: 30px;
  display: flex;
}

.footer_social ul {
  padding: 0px;
}

.footer_social li {
  list-style: none;
  margin-right: 15px;
  float: left;
}

.footer_social li i {
  font-size: 20px;
  height: 34px;
  width: 34px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.118);
  transition: all .3s ease 0s;
}

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

.footer_social li i:hover {
  background: #363636;
  transition: all .3s ease 0s;

}

.add-icons li {
  display: flex;
  align-items: center;
}

.add-icons li:first-child {
  display: flex;
  align-items: start;
}

.add-icons li::before {
  font-family: 'FontAwesome';
  font-size: 16px;
  color: #b1b1b1;
  margin-right: 10px;
}

.add-icons li::before {
  content: '\f3c5';
}

.add-icons li:nth-child(2)::before {
  content: '\f095';
}

.add-icons li:nth-child(3)::before {
  content: '\f2b6';
}


/* ========= FOOTER ========= */


/* ===============INNER_BANNERS================= */

.inner_banner {
  background: url(../images/innerbanner.png), rgba(0, 0, 0, 0.226);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
  height: 300px;
}
.about-banner{
  background: url(../images/about-innerbanner.webp), rgba(0, 0, 0, 0.31);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
  height: 300px;
}
.energy_banner{
  background: url(../images/inner_banner_energy.webp), rgba(0, 0, 0, 0.386);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
  height: 300px;
}
.foodchain_banner{
  background: url(../images/food-chain-banner.webp), rgba(0, 0, 0, 0.386);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
  height: 300px;
}
.training_banner{
  background: url(../images/training-banner.webp), rgba(0, 0, 0, 0.386);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
  height: 300px;
}
.industries_banner{
  background: url(../images/industries_banner.webp), rgba(0, 0, 0, 0.456);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
  height: 300px;
}
.contact_page_banner{
  background: url(../images/contact_banner.png), rgba(0, 0, 0, 0.281);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
  height: 300px;
}

.inner_banner_text {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  height: 300px;
}

.inner_banner_text h1 {
  color: #fff;
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 0px;
  overflow: hidden;
  width: 600px;
}


.inner_banner_text h1 span {
  display: block;
  animation: reveal 1.5s cubic-bezier(0.77, 0, 0.175, 1) 0s;
}

/* ========= ABOUT PAGE ========= */

.inner_about {
  padding: 70px 0px;
}

.abt-inner1 {
  width: 100%;
  margin-bottom: 15px;
  border-radius: 18px;
}

.abt-inner2 {
  width: 100%;
  border-radius: 18px;
}

.inner_about_text {
  display: flex;
  align-items: center;
  height: 100%;
  padding-left: 50px;
}

.mission_vision {
  padding: 70px 0px;
  background: linear-gradient(0deg, rgba(126, 181, 187, 1) 0%, rgba(229, 255, 216, 1) 100%);
}

.mission_vision_img {
  width: 100%;
  height: 150px;
  border-radius: 20px;
  object-fit: cover;
}

.align_cntr {
  display: flex;
  align-items: center;
  height: 100%;
}

.mission_vision .subhead {
  margin-bottom: 10px;
  font-size: 35px;
  font-weight: 600;
}

.gap_reverse {
  margin-bottom: 40px;
}

.founders {
  padding: 70px 0px;
}

.founder_box {
    padding: 20px;
    box-shadow: var(--shadow-small);
    background: #fff;
    border-radius: 20px;
    margin-bottom: 20px;
    height: calc(100% - 20px);
    transition: all 0.3s ease-in-out;
    margin: 0 auto;
    max-width:760px ;
}

.founder_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.founder_box .founder_details h4 {
  font-weight: 600;
}

.founder_box .founder_details h6 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 5px;
}

.founder_box .founder_details P {
  font-size: 15px;
  color: #808080;
  margin-bottom: 40px;
}
.founder_details{
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0px 10px;
}
/* ========= ABOUT PAGE ========= */


/* ========= INDUSTRIES PAGE ========= */

.industries_page {
  padding: 70px 0px;
}

.industries_page .inner_about_text {
  padding-left: 30px;
}

.industries_page .inner_about_text ul {
  padding-left: 0px;
}

.industries_page .inner_about_text ul li .para {
  margin-bottom: 10px;
  font-size: 15px;
}

.industries_page .inner_about_text ul li {
  display: flex;
}

.industries_page .inner_about_text ul li::before {
  content: '\f058';
  font-family: 'FontAwesome';
  color: var(--secondary-color);
  font-size: 15px;
  font-weight: 900;
  margin-right: 10px;
  margin-top: 1px;
}

.all_industries {
  padding: 70px 0px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(229, 255, 216, 1) 100%);
}

.all_industries .industries_box h6 {
  font-size: 18px;
}

/* ========= INDUSTRIES PAGE ========= */

/* ========= Contact ========= */

.contact_section {
  padding: 70px 0px;
  /* background: #fff; */
  border-radius: 40px;
  position: relative;
  overflow: hidden;
}

.contact_form {
  padding: 0px 10px;

}

.contact_form input,
.contact_form textarea {
  padding: 15px;
  background: #ffffff;
  border-radius: 20px;
  border: none;
  margin-bottom: 20px;
  width: 100%;
  outline-color: var(--primary-color);
  border: 1px solid #0000001c;
  transition: all 0.3s ease-in-out;

}
.contact_form input:hover,
.contact_form textarea:hover {
  border: 1px solid var(--primary-color);
transition: all 0.3s ease-in-out;
}
.add_box {
  padding: 15px 20px;
  border: 1px solid #0000004e;
  margin: 10px 0px;
  border-radius: 20px;
  display: flex;
  align-items: center;
}

.add_box h5 {
  font-size: 23px;
}

.add_box p {
  margin-bottom: 0px;
}

.add_box img {
  margin-right: 20px;
}

.add_box-black {
  background-color: #166B9D;
  background-color: var(--primary-color);
}

.add_box-black h5 {
  font-size: 23px;
  color: #ffffff;
}

.add_box-black .story_title {
  color: #ffffff;
}

.add_box-black p {
  color: #ffffff !important;
}

.contact_section .map_box iframe {
  border-radius: 20px;
  border: 1px solid #0000004e !important;
}

.add_box a {
  color: var(--dark-light);
  text-decoration: none !important;
  transition: all ease-in-out 0.3s;
}

.add_box a:hover {
  color: var(--primary-color);
  text-decoration: none !important;
  transition: all ease-in-out 0.3s;
}

.add_box-black a {
  color: #777777;
}

.justify-cntr {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* ========= Contact ========= */

/* ========= Services ========= */

.core-serv {
  padding: 70px 0px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(229, 255, 216, 1) 100%);
}

.core-serv .industries_box {
  text-align: start;
}

.core-serv .industries_box h6 {
  margin-bottom: 10px;
}

.core-serv .industries_box ul {
  padding: 0px;
  margin-bottom: 0px;
}

.core-serv .industries_box ul li {
  display: flex;
}

.core-serv .industries_box ul li::before {
  content: '\f058';
  font-family: 'FontAwesome';
  color: var(--secondary-color);
  font-size: 15px;
  font-weight: 900;
  margin-right: 10px;
  margin-top: 1px;
}

/* ========= Services ========= */


.energy-audits .industries_box {
  text-align: start;
}

.energy-audits .industries_box h6 {
  margin-bottom: 10px;
}

.energy-audits .industries_box ul {
  padding: 0px;
  margin-bottom: 0px;
}

.energy-audits .industries_box ul li {
  display: flex;
}

.energy-audits .industries_box ul li::before {
  content: '\f058';
  font-family: 'FontAwesome';
  color: var(--secondary-color);
  font-size: 15px;
  font-weight: 900;
  margin-right: 10px;
  margin-top: 1px;
}

.energy_mgt {
  padding: 70px 0px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(229, 255, 216, 1) 100%);
}

.energy_mgt ul {
  padding: 0px;
  margin-bottom: 0px;
}

.energy_mgt ul li {
  display: flex;
}

.energy_mgt ul li::before {
  content: '\f058';
  font-family: 'FontAwesome';
  color: var(--secondary-color);
  font-size: 15px;
  font-weight: 900;
  margin-right: 10px;
  margin-top: 1px;
}

.training-solutions {
  padding: 70px 0px;
  background: linear-gradient(0deg, rgba(126, 181, 187, 1) 0%, rgba(229, 255, 216, 1) 100%);
}

.training-solutions .subhead {
  font-size: 35px;
  font-weight: 600;
  text-align: center;
}

.training-solutions .industries_box {
  text-align: start;
}

.training-solutions .industries_box h6 {
  margin-bottom: 10px;
}

.training-solutions .industries_box p {
  margin-bottom: 0px;
  font-size: 15px;
}

/* ------------------ */

.whychoose_section ul {
  padding: 0px;
  margin-bottom: 0px;
}

.whychoose_section ul li {
  display: flex;
}

.whychoose_section ul li::before {
  content: '\f058';
  font-family: 'FontAwesome';
  color: var(--secondary-color);
  font-size: 15px;
  font-weight: 900;
  margin-right: 10px;
  margin-top: 1px;
}

.mesg {
  padding: 20px;
  background: #fff;
  box-shadow: var(--shadow-small);
  border-radius: 20px;
}

.mesg p {
  margin-bottom: 0px;
}

.whychoose_section .img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}


/* ===============industrie============= */
.industries_content_center{
    margin-bottom: 0px;
    font-weight: 500;
    color: #fff;
    font-size: 25px;
    width: 100%;
    padding: 15px 0px;
}
/* =============Energy Audits=============== */

.training_gallery {
  padding: 70px 0px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(229, 255, 216, 1) 100%);
}
.training_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.training_img_center{
  margin: auto;
  width: 80%;
}

.engazers_banner{
  /* height: 350px; */
  height: 230px;
  width: 100%;
  background: #FC7A4C;
  background: url(../images/engazersbg.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  margin-top: 30px;
}

.communicate_img{
  position: absolute;
  bottom: 0px;
  left: 15%;
}

.brain_img{
  position: absolute;
  bottom: 75%;
  left: 21%;
}

.engazers_text{
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* height:350px; */
  height:230px;
}

.engazers_text button{
  background: #fff;
  padding: 13px 20px;
  border-radius: 30px;
  color: var(--dark-text);
  font-size: 18px;
  font-weight: 500;
  border: none;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.engazers_text button i{
  margin-left: 10px;
  font-size: 16px;
  transform: rotate(-45deg);
}
.engazers_text button:hover{
  background: #14987C;
  transition: all 0.3s ease-in-out;
  transform: translateY(-5px);
  color: #fff;
}

.engazers_banner_text {
  display: flex;
  justify-content: center;
  /* align-items: center; */
  flex-direction: column;
  height: 300px;
}

.engazers_banner_text h3 {
  color: #fff;
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 0px;
  overflow: hidden;
  width: 400px;
}

.engazers_banner_text p{
  color: #fff;
  font-size: 16px;
  margin-bottom: 0px;
  margin-top: 5px;
  width: 400px;
}

.engazers_banner_text h3 span {
  display: block;
  animation: reveal 1.5s cubic-bezier(0.77, 0, 0.175, 1) 0s;
}

/* -------------------------- */
 .thank_you{
  padding: 70px 0px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(229, 255, 216, 1) 100%);
 }
 .thank_you_text{
display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  height: 300px;
  padding: 0px 20px;
 }
 .thank_you_text .subhead{
  margin-bottom: 20px;
 }
  .thank_you_btn{
margin-top: 20px;
  }