@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Manrope", sans-serif;
}

:root {
  --primary-color: #1a3a52;
  --secondary-color: #00a651;
  --accent-color: #ff9800;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
  --shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
}

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

body {
  font-family: "Manrope", sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-white);
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 0;
  overflow-x: hidden;
}

nav {
  max-width: 1400px;
  margin: 0 auto;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  width: 100%;
  box-sizing: border-box;
}

.logo img {
  height: 100px;
  width: 260px;
  object-fit: cover;
}

.logo-img {
  height: 175px;
}

.nav-menu {
  display: flex;
  gap: 20px;
  list-style: none;
  flex: 1;
}

.nav-menu a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
  position: relative;
  white-space: nowrap;
}

.nav-menu a:hover {
  color: var(--secondary-color);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.search-box {
  display: flex;
  align-items: center;
  /* background-color: rgba(255, 255, 255, 0.2); */
  padding: 12px 18px;
  border-radius: 5px;
  /* border: 1px solid rgba(255, 255, 255, 0.3); */
}

.search-box input {
  /* background: transparent;
    color: #ffff;
    border: none; */
  font-size: 13px;
  font-weight: 500;
  width: 150px;
  outline: none;
}

.cta-button {
  display: none;
}

.explore-btn-wrapper {
  display: flex;
  align-items: stretch;
  width: fit-content;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  margin-top: 20px;
  border: 2px solid #1f7a4c;
}

.explore-text {
  background: #ffffff;
  color: #1a1a1a;
  border: none;
  border-radius: 6px;
  padding: 5px 10px;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.arrow-badge {
  background: #1f7a4c;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow-icon {
  width: 22px;
  height: 22px;
  color: #ffffff;
}

.learn-btn-wrapper {
  display: flex;
  align-items: stretch;
  width: fit-content;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  margin-top: 20px;
  margin-left: auto; /* Center or push to right */
  border: 2px solid #1f7a4c;
}

.learn-text {
  background: #ffffff;
  color: #1a1a1a;
  border: none;
  border-radius: 6px;
  padding: 5px 10px;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.arrow-badge {
  background: #1f7a4c;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow-icon {
  width: 22px;
  height: 22px;
  color: #ffffff;
}

.hero-section-wrapper {
  background-image: url("/Assets/homepage-hero-banner.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  min-height: auto;
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow-x: hidden;
}

.hero-container {
  flex: 1;
  display: flex;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  min-height: 80vh;
  width: 100%;
  box-sizing: border-box;
}

.hero-text {
  max-width: 800px;
  color: white;
  margin-top: 100px;
  padding-bottom: 60px;
  animation: fadeIn 1s ease-out;
}

.hero-text h1 {
  font-size: 3.4em;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 25px;
}

.hero-text h1 span {
  color: #fff;
}

.hero-text p {
  max-width: 530px;
  font-weight: 400;
  font-size: 1.1em;
  line-height: 1.4;
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-features {
  width: 100%;
  max-width: 100%;
  margin: 0;
  background-color: transparent;
  display: flex;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
  padding: 60px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

.feature-item {
  background-color: transparent;
  padding: 0;
  border-radius: 0;
  backdrop-filter: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-svg {
  width: 20px;
  height: 20px;
  justify-content: center;
}

.feature-item p {
  font-size: 1.1em;
  opacity: 0.9;
  color: #ffffff;
}

/* Layout */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  padding: 80px 40px;
  gap: 60px;
  box-sizing: border-box;
}

.container-desc {
  font-family: "Manrope", sans-serif;
  text-align: justify;
  margin: 2em 0;
  max-width: 100%;
  font-size: 0.95em;
  color: #666;
  line-height: 1.6;
}
/* LEFT SIDE */
.left {
  width: 45%;
}

.feature-tag {
  font-size: 0.8em;
  font-weight: 600;
  letter-spacing: 2px;
  color: #000;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1em;
}

.feature-tag-h2 {
  margin-bottom: 1em;
  font-size: 38px;
  font-weight: 400;
  line-height: 1.25;
  color: #1a1a1a;
}
h1 {
  font-size: 42px;
  line-height: 1.3;
  font-weight: 300;
}

h1 span {
  font-weight: 700;
}

/* Big Image */
.big-img img {
  width: 100%;
  height: 420px;
  border-radius: 25px;
  margin-top: 4em;
}

/* RIGHT SIDE */
.right {
  width: 55%;
}

/* Top images */
.top-images {
  display: flex;
  gap: 20px; /* Will adjust on smaller screens */
  margin-bottom: 20px;
  margin-top: 3em;
}

.top-images img {
  flex: 1;
  min-width: 0;
  height: 140px;
  border-radius: 16px;
  object-fit: cover;
}

/* Stats */
.stats {
  display: flex; /* Will change to flex-wrap on smaller screens */
  gap: 60px;
  margin: 3em 1.5em;
  margin-left: -2px;
}

.stats h2 {
  color: #0a8f5c;
  font-size: 2.6em;
  font-weight: 800;
}

.stats p {
  font-size: 0.95em;
  color: #000;
  font-weight: 600;
}

/* Bottom section */
.bottom {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 1em;
}

.avatars {
  display: flex;
}

.avatars img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  margin-left: -10px;
  border: 2px solid #fff;
}

/* Play Button */
.play-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  translate: 50% - 50%;
  background: #0a8f5c;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 16px;
  margin: 1em 2em;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: transform 0.3s ease;
}

.play-btn::before,
.play-btn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: 50%;
  z-index: -1;
  animation: playPulse 2.5s linear infinite;
  opacity: 0;
}

.play-btn::after {
  animation-delay: 1.25s;
}

.play-btn:hover {
  transform: scale(1.1);
}

@keyframes playPulse {
  0% {
    transform: scale(1) rotate(0deg);
    opacity: 0.7;
  }
  100% {
    transform: scale(2) rotate(360deg);
    opacity: 0;
  }
}

.watch-span {
  font-size: 0.9em;
  color: #000;
  font-weight: 600;
}
/* Text */
.bottom span {
  font-size: 13px;
  color: #333;
}

/* HERO */
.hero {
  height: 420px;
  position: relative;
  display: flex;
  align-items: center;
}

/* DARK OVERLAY */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 250px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  box-sizing: border-box;
}

/* LEFT TEXT */
.hero .left {
  max-width: 500px;
}

.hero h1 {
  font-size: 38px;
  line-height: 1.3;
  font-weight: 400;
  margin: 0;
}

.hero h1 span {
  font-weight: 700;
}

/* RIGHT TEXT */
.hero .right {
  max-width: 500px;
  font-size: 14px;
  line-height: 1.7;
  color: #ddd;
}

/* ITEM */
.item {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 10px;
}

.icon {
  font-size: 26px;
  color: #0a8f5c;
  margin-bottom: 10px;
  display: flex;
  justify-content: flex-start;
  margin-bottom: 15px;
}

.icon svg {
  width: 28px;
  height: 28px;
  color: #0a8f5c;
  stroke-width: 1.3;
}

.item h4 {
  font-size: 14px;
  margin: 2.5em;
  margin-bottom: 15px;
}

/* BUTTON */
.item button {
  width: 35px;
  height: 35px;
  border-radius: 8px;
  border: none;
  background: #f1f1f1;
  cursor: pointer;
  transition: 0.3s;
}

.item button:hover {
  background: #0a8f5c;
  color: #fff;
}

/* DIVIDER */
.divider {
  width: 1px;
  height: 150px;
  background: #e5e5e5;
}

/* SLIDER */
.slider-wrapper {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0 40px;
  width: 100%;
  box-sizing: border-box;
}

.slider::-webkit-scrollbar {
  height: 4px;
}

/* CARD */
.card {
  width: 340px;
  color: #000;
  background: #116e4a;
  border-radius: 24px;
  padding: 30px 25px;
  border: 1px solid rgba(10, 143, 92, 0.1);
  flex-shrink: 0;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.card:hover {
  transform: translateY(-5px);
  transition: 0.3s;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: #0a8f5c;
}

.card img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  margin-bottom: 25px;
}

.card h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.card p {
  font-size: 13px;
  text-align: justify;
  color: #000;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* BUTTON */
.card button {
  border: 1px solid #0a8f5c;
  background: transparent;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  color: #0a8f5c;
  margin-top: auto;
  transition: all 0.3s ease;
}

.card button:hover {
  background: #0a8f5c;
  color: #fff;
}

/* Innovative */
.innovative {
  display: flex;
  position: relative;
  color: #fff;
  /* overflow-x: hidden; */
}

/* LEFT SIDE */
.innovative-left {
  width: 60%;
  background: #1e7a55;
  color: #fff;
  padding: 150px 80px;
}

.innovative-tag {
  font-size: 0.8em;
  font-weight: 600;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 1.5em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.innovative h2 {
  font-size: 2.8em;
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 45px;
}

.innovative h2 span {
  font-weight: 700;
}

.innovative .card h4 {
  color: #fff;
}

.innovative .card p {
  color: #fff; /* Will adjust width on smaller screens */
  width: 280px;
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-bottom: 35px;
}

/* CARD */
.card {
  background: #126f4b; /* Will adjust on hover */
  padding: 22px;
  border-radius: 20px;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.3s;
}

/* ICON BOX */
.icon {
  width: 42px;
  height: 42px;
  /* background: rgba(255,255,255,0.05); */
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

/* SVG */
.icon svg {
  width: 24px;
  height: 24px;
  stroke: #d1fae5;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* TITLE */
.card h4 {
  font-size: 14px;
  margin-bottom: 8px;
}

/* TEXT */
.card p {
  font-size: 12px;
  color: #666;
  line-height: 1.6;
}

/* FOOTER */
.innovative-footer-text {
  font-size: 12px;
  color: #d1fae5;
}

/* RIGHT IMAGE */
.innovative-right {
  width: 50%;
}

.innovative-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CENTER BUTTON */
.center-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
}

/* ROTATING TEXT */
.circle-text {
  width: 100%;
  height: 100%;
  position: absolute;
  animation: rotate 10s linear infinite;
}

.circle-text span {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 50%;
  transform-origin: 0 60px;
  font-size: 10px;
  letter-spacing: 2px;
  color: #fff;
  text-align: center;
}

/* ARROW */
.arrow {
  margin-left: 89%;
  width: 70px;
  height: 70px;
  background: #0d5239;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  backdrop-filter: blur(6px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.arrow::before,
.arrow::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.871);
  border-radius: 50%;
  z-index: -1;
  animation: playPulse 2.5s linear infinite;
  opacity: 0;
}

.arrow::after {
  animation-delay: 1.25s;
}

/* ROTATION */
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

.our-client {
  background-image: url("/Assets/client-bg.png");
  background-size: cover;
  background-position: center;
  padding: 80px 5%;
  position: relative;
  background-color: #f5f5f5;
  overflow-x: hidden;
}

/* BACKGROUND DOT PATTERN */
.our-client::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#e5e5e5 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.4;
  z-index: 0;
}

/* SVG BACKGROUND */
.bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.5;
}

/* CONTENT WRAPPER */
.client-wrapper {
  display: flex;
  align-items: center;
  gap: 70px;
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
}

/* ===== IMAGE SECTION ===== */
.client-image {
  width: 40%;
}

.client-image img {
  height: 450px; /* Will adjust on smaller screens */
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
  display: block;
}

/* ===== RIGHT CONTENT ===== */
.client-content {
  width: 52%;
}

.feature-tag-span {
  font-weight: 700;
  color: #000000;
}

/* TEXT */
.feature-tag-quote {
  font-size: 14px;
  color: #666666;
  line-height: 1.8; /* Will adjust max-width on smaller screens */
  max-width: 480px;
  margin-top: 4em;
  margin-bottom: 2em;
  font-weight: 400;
}

/* USER & CONTROLS WRAPPER */
.user-controls-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 0;
}

.user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0;
  flex: 1;
}

.user img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.user-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.user h4 {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
}

.user span {
  font-size: 12px;
  color: #888888;
  font-weight: 500;
}

/* BUTTONS */
.client-controls {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.client-controls button {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: none;
  background: #0a8f5c;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-span {
  color: #000;
  font-size: 1.2em;
  font-weight: 800;
}
.client-controls button:hover {
  background: #066f47;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(10, 143, 92, 0.25);
}

/* LOGO STRIP */
.client-logos {
  margin-top: 80px;
  display: flex;
  justify-content: space-between; /* Will adjust on smaller screens */
  align-items: center;
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #0a8f5c;
  font-weight: 800;
  opacity: 0.7;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 14px;
}

.logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* SVG */
.logo svg {
  width: 22px;
  height: 22px;
  stroke: #0a8f5c;
  fill: none;
  stroke-width: 1.6;
  flex-shrink: 0;
}

.experience-card {
  position: absolute;
  top: -100px;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 3;
}

.small-image {
  width: 200px;
  height: 200px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.experience-label {
  text-align: center;
  margin-top: -12em;
  margin-right: -65em;
}

.experience-number {
  font-size: 4em;
  font-weight: 700;
  color: #116e4a;
  line-height: 1;
  margin-bottom: 4px;
}

.experience-text {
  font-size: 1em;
  color: #666666;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.4;
}

.main-image-wrapper {
  position: absolute;
  bottom: 0;
  left: 80px;
  width: 420px;
  height: 450px;
  z-index: 2;
}

.main-image {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.badge-icon {
  width: 18px;
  height: 18px;
  background-color: rgba(17, 110, 74, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
}

.title-light {
  font-weight: 400;
  color: #666666;
}

.title-bold {
  font-weight: 700;
  color: #000000;
}

.certificates-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 25px 0;
}

.certificate-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #1a1a1a;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.certificate-icon {
  width: 24px;
  height: 24px;
  background-color: #116e4a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: bold;
  font-size: 14px;
  flex-shrink: 0;
}

.rating-boxes {
  display: flex;
  justify-content: space-between;
}

.rating-box {
  width: 250px;
  background-color: #e4dddd;
  padding: 35px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.rating-box:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(17, 110, 74, 0.1);
}

.rating-number {
  font-size: 64px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
  margin-bottom: 12px;
}

.rating-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 10px;
}

.star {
  color: #116e4a;
  font-size: 16px;
}

.rating-label {
  font-size: 12px;
  color: #666666;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* custom-manufac */
.custom-manufac {
  max-width: 1200px;
  margin: 4em auto;
  overflow-x: hidden;
}

/* ===== MAIN CONTAINER ===== */
.manufac-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

/* ===== LEFT SECTION ===== */
.manufac-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Badge */
.manufac-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #116e4a;
  text-transform: uppercase;
  letter-spacing: 2px;
  width: fit-content;
}

/* Title */
.manufac-title {
  font-size: 48px;
  line-height: 1.2;
  color: #1a1a1a;
  letter-spacing: -0.5px;
}

.manufac-title-light {
  font-weight: 400;
  color: #555555;
}

.manufac-title-bold {
  font-weight: 700;
  color: #000000;
}

/* Image */
.manufac-image {
  width: 100%;
  max-width: 530px;
  height: 500px;
  margin-top: 1em;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* ===== RIGHT SECTION ===== */
.manufac-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Description */
.manufac-description {
  margin-top: 40px;
  margin-bottom: 28px;
  font-size: 14px;
  line-height: 1.9;
  color: #666666;
  font-weight: 400;
}

/* Process Steps Container */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 20px 0;
}

/* Process Step Item */
.process-step {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  padding: 24px;
  border-radius: 16px;
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.process-step.active,
.process-step:hover {
  background-color: #116e4a;
  border-color: #116e4a;
  color: #ffffff;
  box-shadow: 0 15px 35px rgba(17, 110, 74, 0.2);
  cursor: pointer;
}

/* Step Number */
.step-number {
  font-size: 42px;
  font-weight: 700;
  color: #116e4a;
  line-height: 1;
  min-width: 60px;
  flex-shrink: 0;
}

.process-step.active .step-number,
.process-step:hover .step-number {
  color: #ffffff;
}

/* Step Content */
.step-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.step-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.3px;
}

.process-step.active .step-title,
.process-step:hover .step-title {
  color: #ffffff;
}

.step-description {
  font-size: 14px;
  line-height: 1.7;
  color: #666666;
  font-weight: 400;
}

.process-step.active .step-description,
.process-step:hover .step-description {
  color: rgba(255, 255, 255, 0.9);
}

/* FAQSection */
.faq-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
  background-color: #ffffff;
  position: relative;
  z-index: 5;
  overflow-x: hidden;
}

.faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #116e4a;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.faq-badge-icon {
  width: 20px;
  height: 20px;
  background-color: rgba(17, 110, 74, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

.faq-title {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2em;
}

.faq-title-light {
  font-size: 32px;
  font-weight: 400;
  color: #666666;
  letter-spacing: 0.5px;
}

.faq-title-bold {
  font-size: 42px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.5px;
  margin-top: -5px;
}

/* ===== MAIN CONTENT ===== */
.faq-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ===== LEFT IMAGE ===== */
.faq-image-container {
  position: relative;
}

.faq-image {
  width: 100%; /* Will adjust height on smaller screens */
  height: 520px;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* ===== RIGHT ACCORDION ===== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq-item.active {
  background-color: #116e4a;
  border-color: #116e4a;
  box-shadow: 0 10px 30px rgba(17, 110, 74, 0.15);
}

.faq-question {
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  user-select: none;
  min-height: 70px;
}

.faq-question-text {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  transition: color 0.3s ease;
}

.faq-item.active .faq-question-text {
  color: #ffffff;
}

.faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #116e4a;
  font-size: 14px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
  color: #ffffff;
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 28px;
}

.faq-item.active .faq-answer {
  transition: all 0.9s ease-in-out;
  max-height: 300px;
  opacity: 1;
  padding: 0 28px 22px 28px;
}

.faq-answer-text {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

/* ===== HOME CONTACT SECTION ===== */
.contact-sec {
  padding: 90px 0;
  background: linear-gradient(135deg, #f0faf5 0%, #e8f5ee 100%);
  position: relative;
  overflow: hidden;
}

.contact-sec::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 500px;
  height: 500px;
  background: rgba(17, 110, 74, 0.06);
  border-radius: 50%;
}

.contact-sec-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
}

/* Left side */
.contact-sec-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #116e4a;
  text-transform: uppercase;
}

.contact-sec-title {
  font-size: 38px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.25;
}

.contact-sec-title span {
  color: #116e4a;
}

.contact-sec-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.75;
  max-width: 380px;
}

.contact-sec-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}

.contact-sec-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
}

.contact-sec-info-item svg {
  color: #116e4a;
  flex-shrink: 0;
}

/* Right side — form card */
.contact-sec-right {
  background: #ffffff;
  border-radius: 20px;
  padding: 36px 40px;
  box-shadow: 0 12px 48px rgba(17, 110, 74, 0.1);
}

/* Alert */
.home-form-alert {
  padding: 13px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 18px;
  line-height: 1.6;
}
.home-form-alert--success {
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  color: #065f46;
}
.home-form-alert--error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
}

/* Form layout */
.hf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.hf-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}

.hf-row .hf-field {
  margin-bottom: 0;
}

.hf-field label {
  font-size: 11px;
  font-weight: 700;
  color: #374151;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 6px;
}

.hf-req {
  color: #ef4444;
  margin-left: 2px;
}

.hf-field input,
.hf-field textarea,
.hf-field select {
  padding: 11px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-family: inherit;
  font-size: 13px;
  color: #1a1a1a;
  background: #f9fafb;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  width: 100%;
}

.hf-field input:focus,
.hf-field textarea:focus,
.hf-field select:focus {
  border-color: #116e4a;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(17, 110, 74, 0.08);
}

.hf-field textarea {
  resize: vertical;
  min-height: 100px;
}

.hf-select-wrap {
  position: relative;
}

.hf-select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 36px;
  cursor: pointer;
}

.hf-select-wrap svg {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #888;
}

/* Submit button */
.hf-submit {
  width: 100%;
  padding: 14px 20px;
  background: #116e4a;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition:
    background 0.25s,
    transform 0.2s;
  margin-top: 4px;
}

.hf-submit:hover {
  background: #0d5e3f;
  transform: translateY(-1px);
}
.hf-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

@media (max-width: 900px) {
  .contact-sec-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .contact-sec-title {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .contact-sec {
    padding: 60px 0;
  }
  .contact-sec-inner {
    padding: 0 20px;
  }
  .contact-sec-right {
    padding: 24px 20px;
  }
  .hf-row {
    grid-template-columns: 1fr;
  }
}

/* ================= RESPONSIVE STYLES FOR INDEX.HTML ================= */

/* Large Tablets & Small Laptops (max-width: 1024px) */
@media (max-width: 1024px) {
  .hero-section-wrapper {
    min-height: 100vh;
  }
  .hero-container {
    padding: 0 30px;
  }
  .hero-text h1 {
    font-size: 2.2em;
  }
  .hero-text p {
    max-width: 450px;
    font-size: 1em;
  }
  .hero-features {
    padding: 20px 30px;
    justify-content: center;
  }
  .feature-item {
    padding-bottom: 3em;
  }

  .container {
    padding: 60px 40px;
    gap: 40px;
  }
  .container-desc {
    width: auto; /* Allow to fill container */
  }
  .left,
  .right {
    width: 100%; /* Stack columns */
  }
  .big-img img {
    height: 350px;
    margin-top: 2em;
  }
  .top-images {
    justify-content: center;
    flex-wrap: wrap;
  }
  .top-images img {
    width: 45%; /* Two images per row */
    height: 120px;
  }
  .stats {
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 2em 0;
  }
  .stats h2 {
    font-size: 2.2em;
  }

  .innovative-left {
    padding: 100px 60px;
  }
  .innovative h2 {
    font-size: 2.2em;
  }
  .innovative .card p {
    width: auto; /* Allow to fill card */
  }
  .cards {
    gap: 15px;
  }

  .our-client {
    padding: 80px 60px;
  }
  .client-wrapper {
    flex-direction: column;
    gap: 40px;
  }
  .client-image,
  .client-content {
    width: 100%;
  }
  .client-image img {
    height: 380px;
  }
  .feature-tag-quote {
    max-width: 100%;
    margin-top: 2em;
  }
  .client-logos {
    margin-top: 60px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }

  .custom-manufac {
    padding: 0 40px;
  }
  .manufac-container {
    grid-template-columns: 1fr; /* Stack columns */
    gap: 40px;
  }
  .manufac-image {
    height: 400px;
    margin-top: 0;
  }
  .manufac-description {
    margin-top: 20px;
    margin-bottom: 2em;
  }
  .learn-btn-wrapper {
    margin-left: 0; /* Reset margin */
    width: 100%;
    justify-content: center;
  }

  .faq-section {
    padding: 50px 40px;
  }
  .faq-container {
    grid-template-columns: 1fr; /* Stack columns */
    gap: 40px;
  }
  .faq-image {
    height: 400px;
  }

  .contact-sec {
    min-height: auto; /* Allow height to adjust */
    padding: 60px 0;
  }
  .contact-card {
    max-width: 90%;
    padding: 30px 25px;
  }
  .contact-card .desc {
    width: auto;
  }
  .form-grid {
    grid-template-columns: 1fr; /* Stack form fields */
  }
  .submit-btn {
    margin: 0;
    /* width: 100%; */
    justify-content: center;
  }
}

/* Tablets (max-width: 768px) */
@media (max-width: 768px) {
  .hero-section-wrapper {
    min-height: 40vh;
  }
  .hero-container {
    padding: 0 20px;
  }
  .hero-text h1 {
    font-size: 2.2em;
  }
  .hero-text p {
    max-width: 100%;
    font-size: 0.95em;
  }
  .hero-features {
    padding: 15px 20px;
    flex-direction: column;
    align-items: flex-start;
  }
  .feature-item {
    padding-bottom: 1.5em;
  }

  .container {
    padding: 40px 20px;
    flex-direction: column;
    gap: 30px;
  }
  .big-img img {
    height: 280px;
  }
  .top-images img {
    width: 100%; /* Stack images */
    height: 100px;
  }
  .stats {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .stats h2 {
    font-size: 2em;
  }
  .left h1 {
    font-size: 1.7em;
  }
  .innovative {
    flex-direction: column;
  }
  .innovative-left,
  .innovative-right {
    width: 100%;
  }
  .innovative-left {
    padding: 80px 30px;
  }
  .innovative h2 {
    font-size: 1.8em;
  }
  .cards {
    grid-template-columns: 1fr; /* Stack cards */
  }
  .center-btn {
    display: none; /* Hide center button on small screens */
  }

  .our-client {
    padding: 60px 30px;
  }
  .client-image img {
    height: 300px;
  }
  .client-logos {
    margin-top: 40px;
    flex-direction: column;
    gap: 20px;
  }

  .custom-manufac {
    padding: 0 20px;
  }
  .manufac-title {
    font-size: 2.5em;
  }
  .manufac-image {
    height: 300px;
  }
  .process-step {
    padding: 18px 20px;
    gap: 15px;
  }
  .step-number {
    font-size: 2.5em;
    min-width: 40px;
  }
  .learn-btn-wrapper {
    display: flex; /* Ensure button is visible */
  }

  .faq-section {
    padding: 40px 20px;
  }
  .faq-title-bold {
    font-size: 2.5em;
  }
  .faq-image {
    height: 300px;
  }
  .faq-question {
    padding: 18px 20px;
    font-size: 0.95em;
  }
  .faq-answer-text {
    font-size: 0.9em;
  }

  .contact-sec {
    padding: 40px 0;
  }
  .contact-card {
    max-width: 95%;
    padding: 25px 20px;
  }
  .contact-card h2 {
    font-size: 2em;
  }
}

/* Small Mobile Devices (max-width: 480px) */
@media (max-width: 480px) {
  .hero-section-wrapper {
    min-height: 50vh;
  }
  .hero-container {
    padding: 0 15px;
  }
  .hero-text h1 {
    font-size: 3.2em;
    line-height: 1.1;
  }
  .hero-text p {
    font-size: 1em;
    margin: 1em 0;
  }

  .feature-item {
    padding: 0;
  }
  .feature-item p {
    font-size: 0.9em;
  }

  .container {
    padding: 30px 15px;
  }
  .big-img img {
    height: 200px;
  }
  .top-images {
    gap: 10px;
    flex-wrap: nowrap;
  }
  .top-images img {
    height: 60px;
    margin-top: -2.2em;
  }
  .stats {
    margin: 0 2%;
    /* text-align: center; */
  }
  .stats h2 {
    font-size: 1.8em;
  }
  .stats p {
    font-size: 0.8em;
  }
  .play-btn {
    margin: 0.5em 1em;
    width: 80px;
  }
  .watch-span {
    font-size: 0.8em;
  }

  .innovative-left {
    padding: 60px 20px;
  }
  .innovative h2 {
    font-size: 1.5em;
  }
  .cards {
    gap: 10px;
  }
  .card {
    width: 290px;
    margin-right: 200px;
  }
  .card h4 {
    font-size: 1.1em;
  }
  .card p {
    font-size: 0.8em;
  }

  .our-client {
    padding: 40px 15px;
  }
  .client-image img {
    height: 250px;
  }
  .feature-tag-h2 {
    font-size: 1.8em;
  }
  .feature-tag-quote {
    font-size: 0.85em;
  }
  .user h4 {
    font-size: 0.9em;
  }
  .user span {
    font-size: 0.75em;
  }
  .client-controls button {
    width: 35px;
    height: 35px;
  }
  .client-logos {
    margin-top: 30px;
    margin-right: 180px;
    gap: 15px;
  }
  .learn-btn-wrapper {
    width: 47%;
  }
  .logo {
    font-size: 0.8em;
  }
  .logo svg {
    width: 18px;
    height: 18px;
  }

  .custom-manufac {
    padding: 0 15px;
  }
  .manufac-title {
    font-size: 2em;
  }
  .manufac-image {
    height: 250px;
  }
  .manufac-description {
    font-size: 0.85em;
    margin: 0;
    /* text-align: justify; */
  }
  .process-step {
    padding: 15px;
    gap: 10px;
  }
  .step-number {
    font-size: 2em;
    min-width: 30px;
  }
  .step-title {
    font-size: 0.9em;
  }
  .step-description {
    font-size: 0.8em;
  }

  .faq-section {
    padding: 30px 15px;
  }
  .faq-title-bold {
    font-size: 2em;
  }
  .faq-image {
    height: 250px;
  }
  .faq-question {
    padding: 15px;
    font-size: 0.85em;
  }
  .faq-answer-text {
    font-size: 0.8em;
  }

  .contact-sec {
    padding: 30px 0;
  }
  .contact-card {
    padding: 20px 15px;
  }
  .contact-card h2 {
    font-size: 1.5em;
  }
  .contact-card .desc {
    font-size: 0.8em;
  }
  .form-group label {
    font-size: 0.75em;
  }
  .form-input,
  .form-textarea {
    font-size: 0.8em;
    padding: 8px 10px;
  }
  .submit-btn {
    font-size: 0.9em;
    padding: 10px 15px;
  }
}

/* ===== FEATURED PRODUCTS SECTION (Home Page) ===== */
.featured-products-section {
  width: 100%;
  padding: 80px 0;
  background: #f8f9fa;
}

.featured-products-inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.featured-products-header {
  text-align: center;
  margin-bottom: 48px;
}

.featured-products-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 12px 0;
  line-height: 1.3;
}

.featured-products-header h2 span {
  color: rgba(17, 110, 74, 1);
}

.featured-products-subtitle {
  font-size: 15px;
  color: #666;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.featured-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.fp-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.fp-card:hover {
  box-shadow: 0 8px 30px rgba(17, 110, 74, 0.12);
  transform: translateY(-4px);
}

.fp-card-img {
  width: 100%;
  height: 200px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fp-card-img img {
  width: 160px;
  height: 160px;
  object-fit: contain;
}

.fp-card-body {
  padding: 20px 22px 12px;
  flex: 1;
}

.fp-card-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
  line-height: 1.4;
}

.fp-card-body p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

.fp-card-btn {
  display: block;
  margin: 0 22px 20px;
  padding: 10px;
  text-align: center;
  border-radius: 12px;
  border: 1px solid rgba(23, 139, 94, 1);
  background: rgba(108, 207, 176, 0.15);
  color: rgba(23, 139, 94, 1);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.fp-card-btn:hover {
  background: rgba(23, 139, 94, 1);
  color: #fff;
}

.featured-products-cta {
  text-align: center;
}

.view-all-products-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 36px;
  background: rgba(17, 110, 74, 1);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition:
    background 0.3s ease,
    transform 0.2s ease;
}

.view-all-products-btn:hover {
  background: #0d5e3f;
  transform: translateY(-2px);
}

@media screen and (max-width: 900px) {
  .featured-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 550px) {
  .featured-products-grid {
    grid-template-columns: 1fr;
  }
  .featured-products-header h2 {
    font-size: 26px;
  }
}

/* Force compact header sizing on home page mobile */
@media (max-width: 768px) {
  .navbar .nav-inner {
    padding: 0px 0px !important;
  }

  .navbar .logo-img {
    height: 80px !important;
    width: auto;
  }
}

@media (max-width: 480px) {
  .navbar .nav-inner {
    padding: 0px 0px !important;
  }

  .navbar .logo-img {
    height: 70px !important;
    width: auto;
  }
}
