body {
  font-family: 'Poppins', sans-serif;
  margin-top: 90px;
}

.main-header {
  background: #1f7a5a;
  padding: 10px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 600;
}

.logo-area img {
  height: 45px;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.contact-btn {
  border: 1px solid #fff;
  padding: 6px 12px;
  border-radius: 4px;
}

.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  background: #fff;
  display: none;
  top: 100%;
  left: 0;
  min-width: 220px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.dropdown li a {
  color: #333;
  padding: 10px;
  display: block;
}

.has-dropdown:hover > .dropdown {
  display: block;
}

.hero-slider {
  height: 65vh;
  position: relative;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  display: none;
}

.slide.active {
  display: block;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.slide-content {
  position: absolute;
  bottom: 25%;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  text-align: center;
  width: 80%;
}

.section {
  padding: 40px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
}

.info-card {
  background: #fff;
  padding: 25px;
  height: 100%;
}

.solution-box {
  background: #f5f5f5;
  padding: 30px;
  border-left: 5px solid #1f7a5a;
}

.service-list {
  list-style: disc;
  max-width: 400px;
  margin: auto;
}

.center-text {
  text-align: center;
}

.main-footer {
  background: #1f7a5a;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}


/* HEADER */
.main-header {
  background: #1f7a5a;
  width: 100%;
  z-index: 1000;
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 600;
}

.logo-area img {
  height: 45px;
}


/* RESET */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  padding-top: 80px;
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #1f7a5a;
  z-index: 9999;
}

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

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 600;
}

.logo img {
  height: 42px;
}

/* NAV */
.site-nav {
  display: flex;
}

.menu {
  list-style: none;
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
}

.menu li {
  position: relative;
}

.menu a {
  color: #fff;
  text-decoration: none;
  padding: 10px 0;
  display: block;
  white-space: nowrap;
}

/* SUBMENU */
.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 240px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.submenu li a {
  color: #333;
  padding: 10px 15px;
}

.has-submenu:hover > .submenu {
  display: block;
}

/* SECOND LEVEL */
.submenu .has-submenu:hover > .submenu {
  display: block;
  top: 0;
  left: 100%;
}

/* CONTACT BUTTON */
.btn-contact {
  border: 1px solid #fff;
  padding: 6px 14px;
  border-radius: 4px;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 26px;
  background: #fff;
  margin: 4px 0;
}

/* MOBILE */
@media (max-width: 991px) {

  .hamburger {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1f7a5a;
    width: 100%;
    display: none;
  }

  .site-nav.active {
    display: block;
  }

  .menu {
    flex-direction: column;
    padding: 15px;
  }

  .submenu {
    position: static;
    background: #217f5f;
    box-shadow: none;
  }

  .submenu li a {
    color: #fff;
  }

  .submenu.active {
    display: block;
  }
}


/* this is for product page  */
/* PRODUCT CARDS */
.product-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-6px);
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.product-content {
  padding: 20px;
}

.product-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.product-content p {
  font-size: 14px;
  color: #555;
}

.product-content a {
  display: inline-block;
  margin-top: 10px;
  color: #1f7a5a;
  font-weight: 500;
  text-decoration: none;
}

.product-content a:hover {
  text-decoration: underline;
}

/* INTRO TEXT */
.intro-text {
  max-width: 900px;
  margin: auto;
  font-size: 15px;
  color: #444;
}

/* Product page :end */


/* For gallery  */
/* PROJECTS */
.project-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  height: 100%;
}

.project-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.project-content {
  padding: 20px;
}

.project-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.project-content p {
  font-size: 14px;
  color: #555;
}

/* GALLERY */
.gallery-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.gallery-img:hover {
  transform: scale(1.05);
}

/* Projects End */

/* FOR CLIENT PAGE */
/* CLIENT LOGOS */
.client-logo {
  background: #fff;
  padding: 20px;
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.client-logo img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.client-logo img:hover {
  filter: grayscale(0%);
}

/* END CLIENT PAGE */

/* FOR CONTACT US PAGE */
/* CONTACT PAGE */
.contact-info {
  list-style: none;
  padding: 0;
}

.contact-info li {
  margin-bottom: 15px;
  font-size: 14px;
}

.contact-info i {
  color: #1f7a5a;
  margin-right: 8px;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 999;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.whatsapp-float:hover {
  color: #fff;
  background: #1ebd5a;
}

/* END CONTACT US PAGE */

/* css for industries Served  */
/* INDUSTRIES */
.industry-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  height: 100%;
}

.industry-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.industry-content {
  padding: 20px;
}

.industry-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.industry-content p {
  font-size: 14px;
  color: #555;
}

/* industries Served End */


/* this is for services page  */
/* SERVICES */
.service-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  height: 100%;
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-content {
  padding: 20px;
}

.service-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.service-content p {
  font-size: 14px;
  color: #555;
}

/* services page end */

/* CLIENT MARQUEE */
.client-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.client-track {
  display: flex;
  width: calc(250px * 10);
  animation: scrollClients 30s linear infinite;
}

.client-logo {
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.client-logo img {
  max-width: 180px;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.client-logo img:hover {
  filter: grayscale(0%);
}

@keyframes scrollClients {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Contact us page  */
.map-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}
/* End Contact us page */


/* HERO home page*/
.hero-section {
  background: #1f7a5b;
  color: #fff;
  padding: 80px 0;
}

.hero-section h1 {
  font-size: 36px;
  font-weight: 700;
}

.hero-section p {
  margin: 20px 0;
}

.hero-img {
  width: 100%;
  border-radius: 10px;
}

/* HOME CARDS */
.home-card {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  text-align: center;
  height: 100%;
}

.home-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 10px;
}

.home-card h3 {
  font-size: 18px;
  margin-top: 10px;
}

/* CLIENT STRIP */
.client-strip img {
  max-height: 60px;
  margin: 15px;
  filter: grayscale(100%);
}

.client-strip img:hover {
  filter: grayscale(0%);
}
/* home page end */

/* about us css */
.about-box {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  height: 100%;
}

.about-list li {
  margin-bottom: 10px;
}

.why-box {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  height: 100%;
}

/* about us css end */

/* solution page style */
.solution-img {
  width: 80%;
  border-radius: 10px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}
/* solution page style end  */