.tag-box .tag,
body {
  background-color: #000;
}
.water-3d,
body {
  overflow-x: hidden;
}
.aboutUs-hero .aboutUs-text::after,
.aboutUs-hero .btn-contact,
.aboutUs-hero h1::after {
  background: var(--gradient);
  animation: 6s infinite shiftGradient;
}
.aboutUs-hero h1::after,
.products-cards h2::after,
.services-liquid h2::after {
  display: block;
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
}
html {
  scroll-behavior: smooth;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: #fff;
  min-height: 100vh;
  line-height: 1.5;
}
.Container {
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  overflow: hidden;
}
.btn-case-studies,
.btn-water-pumps {
  padding: 0.7rem 2.5rem;
  font-size: 1.2rem;
  transition: background-color 0.2s;
}
main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh + 5rem);
}
.hero {
  max-width: 45rem;
  margin-left: 5%;
  z-index: 999;
}
.tag-box {
  position: relative;
  width: 18rem;
  height: 2.5rem;
  border-radius: 50px;
  background: linear-gradient(
    to right,
    #656565,
    #7f42a7,
    #6600c5,
    #5300a0,
    #757575,
    #656565
  );
  background-size: 200%;
  animation: 2.5s linear infinite animationGradient;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}
@keyframes animationGradient {
  to {
    background-position: 200%;
  }
}
.tag-box .tag {
  position: absolute;
  inset: 3px 3px 3px 3px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}
.hero h1 {
  font-size: 4rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin: 2rem 0;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(128, 128, 128, 0.418);
}
.hero p {
  font-size: 1rem;
  letter-spacing: 0.05em;
  max-width: 40rem;
  color: gray;
}
.buttons {
  display: flex;
  gap: 1rem;
  margin-top: 3rem;
}
.btn-water-pumps {
  text-decoration: none;
  color: #fff;
  border: 1px solid #2a2a2a;
  border-radius: 50px;
  font-weight: 300;
  letter-spacing: 0.1em;
}
.aboutUs-hero .btn-contact,
.btn-case-studies {
  font-weight: 300;
  letter-spacing: 0.1em;
  border-radius: 50px;
  text-decoration: none;
}
.btn-view:hover,
.btn-water-pumps:hover {
  background-color: #1a1a1a;
}
.btn-case-studies {
  background-color: #d3d3d3;
  color: #000;
}
.btn-case-studies:hover {
  background-color: gray;
}
.water-3d {
  display: block;
  pointer-events: none;
  transform: translateY(-50%) scale(1);
  position: absolute;
  top: 0;
  right: -22%;
}
.stats-section {
  display: flex;
  justify-content: space-around;
  color: #fff;
  margin-top: 5rem;
  padding: 4rem 2rem;
  text-align: center;
}
.stat h2 {
  font-size: 2.5rem;
  color: inherit;
}
.stat p {
  font-size: 1rem;
  margin-top: 0.5rem;
  color: #ccc;
}

.featured-single {
  background: var(--bg);
  padding: 4rem 1rem;
}
.featured-single__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
}
.featured-single__content h2 {
  font-size: 1rem;
  text-transform: uppercase;
  color: #aaa;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.featured-single__content h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--fg);
}
.featured-single__content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 1.5rem;
}
.btn-featured {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: var(--gradient);
  background-size: 200% 100%;
  color: var(--bg);
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: background-position 0.5s, transform 0.2s;
}
.btn-featured:hover {
  background-position: 100% 0;
  transform: translateY(-2px);
}
.featured-single__image img {
  width: 100%;
  max-width: 500px;
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}
@media (max-width: 768px) {
  .featured-single {
    background: var(--bg);
    padding: 4rem 1rem;
  }

  .featured-single__inner {
    grid-template-columns: 1fr;
    text-align: center;
    margin-bottom: 2rem;
  }
}

:root {
  --bg: #000;
  --fg: #fff;
  --gradient: linear-gradient(
    to right,
    #7f42a7,
    #9b1ce0,
    #6600c5,
    #8a2be2,
    #7f42a7
  );
}
.aboutUs-hero {
  position: relative;
  /* background: url("/images/FuaionTransport.svg") center/cover no-repeat fixed; */
  padding: 8rem 1rem;
  color: var(--fg);
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.aboutUs-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}
.aboutUs-hero .aboutUs-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  padding: 2rem;
}
.aboutUs-hero h1 {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
}
.aboutUs-hero h1::after {
  content: "";
  width: 100px;
  height: 4px;
  margin: 0.5rem 0 2rem;
  background-size: 300% 100%;
  border-radius: 2px;
}
.aboutUs-hero .aboutUs-text {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1.5rem;
}
.aboutUs-hero .aboutUs-text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 120px;
  height: 4px;
  background-size: 300% 100%;
  transform: skewX(-20deg);
  opacity: 0.2;
}
.aboutUs-hero .aboutUs-buttons {
  margin-top: 2rem;
}
.aboutUs-hero .btn-contact {
  padding: 0.7rem 2.5rem;
  font-size: 1.2rem;
  color: var(--bg);
  background-size: 300% 100%;
  display: inline-block;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service h3::after,
.service::before,
.services-liquid h2::after {
  background: var(--gradient);
  animation: 5s infinite shiftGradient;
  content: "";
}
.aboutUs-hero .btn-contact:hover {
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(127, 28, 167, 0.6), 0 0 24px rgba(102, 0, 197, 0.6);
}
.services-liquid {
  color: var(--fg);
  padding: 8rem 1rem;
  text-align: center;
}
.services-liquid h2 {
  font-size: 3rem;
  font-weight: 800;
  position: relative;
  margin-bottom: 1rem;
}
.services-liquid h2::after {
  width: 120px;
  height: 4px;
  margin: 0.5rem auto 2rem;
  background-size: 300% 100%;
}
.services-liquid .intro {
  max-width: 800px;
  margin: 0 auto 4rem;
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}
.service {
  position: relative;
  padding: 2rem 1rem 1rem;
  overflow: hidden;
}
.service::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 120%;
  height: 40%;
  background-size: 300% 100%;
  transform: translateX(-50%) skewY(-5deg);
  opacity: 0.15;
  pointer-events: none;
}
.service .icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  color: var(--fg);
  stroke: var(--fg);
  transition: transform 0.3s, filter 0.3s;
}
.service:hover .icon {
  transform: scale(1.2);
  filter: drop-shadow(0 0 8px #9b1ce0) drop-shadow(0 0 16px #6600c5);
}
.service h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  position: relative;
}
.service h3::after {
  display: block;
  width: 60px;
  height: 3px;
  background-size: 300% 100%;
  margin: 0.5rem auto;
}
.service p {
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.85;
}
.footer-note {
  font-size: 0.9rem;
  opacity: 0.8;
  max-width: 700px;
  margin: 0 auto;
}
.products-cards {
  background: var(--bg);
  color: var(--fg);
  padding: 4rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
  font-family: "Segoe UI", sans-serif;
  text-align: left;
}
.products-cards h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  position: relative;
  text-align: center;
}
.products-cards h2::after {
  content: "";
  width: 120px;
  height: 4px;
  margin: 0.5rem auto 1.5rem;
  background: var(--gradient);
  background-size: 300% 100%;
  animation: 6s infinite shiftGradient;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.card {
  background: 0 0;
  border: 0.5px solid #ffffff64;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card-logo {
  display: block;
  max-height: 200px;
  margin: 0 auto 1rem;
  object-fit: cover;
}
.card h3 {
  font-size: 1.1rem;
  font-weight: 200;
  margin: 0 0 1rem;
  flex-grow: 1;
}
.btn-view {
  align-self: start;
  padding: 0.7rem 2.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--fg);
  background: 0 0;
  border-radius: 50px;
  border: 1px solid #2a2a2a;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}
@media (max-width: 600px) {
  .cards-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 1024px) {
  .container {
    padding: 0 1rem;
  }
  body {
    font-size: 0.95rem;
  }
}
@media (max-width: 768px) {
  main {
    /* height: 8rem; */
    padding-top: 3rem;
  }
  .hero {
    max-width: 90%;
    margin-left: 5%;
  }
  .hero h1 {
    font-size: 2.5rem;
    margin: 1.5rem 0;
  }
  .hero p {
    max-width: 100%;
    font-size: 0.95rem;
  }
  .buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
  .btn-case-studies,
  .btn-water-pumps {
    padding: 0.9rem 2.5rem;
    font-size: 1rem;
    width: 100%;
  }
  .water-3d {
    right: auto !important;
    position: absolute;
    bottom: -9%;
    left: 0;
    transform: translateX(-50%) scale(0.5);
    transform-origin: center;
    width: 100%;
    max-width: 600px;
    height: auto;
    opacity: 0.15;
    pointer-events: none;
  }
  .stats-section {
    margin-top: -1rem;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 1rem;
  }
  .services-liquid h2,
  .stat h2 {
    font-size: 2rem;
  }
  .aboutUs-hero {
    overflow: hidden;
    margin-top: -6rem;
    background-color: #000;
    z-index: 999;
    min-height: auto;
    padding: 4rem 2rem;
    background-attachment: scroll;
  }
  .aboutUs-hero .aboutUs-content {
    padding: 1rem;
  }
  .aboutUs-hero h1 {
    font-size: 2rem;
    text-align: left;
  }
  .aboutUs-hero .btn-contact {
    width: 100%;
    max-width: 200px;
  }
  .aboutUs-buttons {
    display: none;
  }
  .services-liquid {
    padding: 4rem 2rem;
    text-align: left;
    max-width: 25rem;
  }
  .services-liquid h2::after {
    margin: 0.5rem 0 2rem;
  }
  .service .icon {
    margin: 0 0 1.5rem;
  }
  .service h3::after {
    margin: 0.5rem 0 0;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .products-cards h2 {
    text-align: left;
  }
  .products-cards h2::after {
    margin: 0 0.5rem 0 0;
  }
  .products-cards {
    padding: 2rem 1rem;
  }
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .card {
    aspect-ratio: auto;
  }
  .card-logo {
    width: 80%;
    max-height: 170px;
    margin-bottom: 0.75rem;
  }
  .card h3 {
    font-size: 1rem;
  }
  .btn-view {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
}
