* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #2a3293;
  --gradient: linear-gradient(90deg, #0ea5e9, #06b6d4);
  --text-light: #d1d5dc;
  --white: #ffffff;
  --container-width: 1200px;
}

body {
  font-family: "Poppins", sans-serif;
  background: #fff;
  color: #000;
}

span {
  color: #0ea5e9;
}
/* ==========================================topbar================================== */
.hx-topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #2a3293;
  color: #fff;
  font-size: 13px;
  overflow: hidden;
  padding: 6px 0;
}

/* TRACK */
.hx-topbar-track {
  display: flex;
  width: max-content;
  animation: hxScrollLeft 15s linear infinite;
}

/* GROUP */
.hx-topbar-group {
  display: flex;
  justify-content: space-around;
  min-width: 50%;
  gap: 40px; /* spacing */
}

/* ITEMS */
.hx-topbar-item {
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* SCROLL */
@keyframes hxScrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/*======================================== NAVBAR ============================*/

.navbar {
  width: 100%;
  background: #ffffff;
  box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.12);
  position: sticky;
  top: 28px;
  z-index: 1000;
}

.navbar-container {
  max-width: 1440px;
  height: 82px;
  margin: auto;
  display: flex;
  align-items: center;
  padding: 0 40px;
}
.logo {
  width: 250px;
  height: 78px;
  /* background-color: red; */
}
.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ================= MENU ================= */

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.nav-menu a:not(.contact-btn1) {
  position: relative;
  text-decoration: none;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  transition: color 0.3s ease;
}

.nav-menu a:not(.contact-btn1):hover {
  color: #2a3293;
}

.nav-menu a:not(.contact-btn1)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #2a3293;
  transition: width 0.3s ease;
}

.nav-menu a:not(.contact-btn1):hover::after {
  width: 100%;
}

/* ================= BUTTON ================= */

.contact-btn1 {
  background: #2a3293;
  color: #fff;

  height: 46px;
  padding: 12px 24px;

  border-radius: 14px;
  text-decoration: none;

  font-size: 16px;
  font-weight: 600;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  white-space: nowrap;

  box-shadow: none;
  border: none;
  outline: none;

  transition: 0.3s ease;
}

.contact-btn1:hover {
  opacity: 0.9;
}

/* ================= UTIL ================= */

.desktop-btn {
  margin-left: 10px;
}

.mobile-btn {
  display: none;
}

.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  margin-left: 15px;
}

/* ================= MOBILE ================= */

@media (max-width: 992px) {
  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .desktop-btn {
    display: none;
  }

  .nav-menu {
    position: absolute;
    top: 82px;
    left: 0;
    width: 100%;
    height: calc(100vh - 82px);

    background: #fff;

    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    gap: 18px;
    padding: 20px 0;

    display: none;
    margin-left: 0;
    z-index: 999;

    overflow-y: auto;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu a:not(.contact-btn1) {
    width: 100%;
    text-align: center;
  }

  .contact-btn1 {
    width: auto;
    min-width: 160px;
    margin-top: 10px;
  }

  .mobile-btn {
    display: block;
    text-align: center;
    margin: 20px auto;
  }
}

/* ================= DESKTOP RESET ================= */

@media (min-width: 993px) {
  .nav-menu {
    display: flex !important;
    position: static;
    flex-direction: row;
  }

  .mobile-btn {
    display: none;
  }

  .desktop-btn {
    display: inline-block;
  }

  .menu-toggle {
    display: none;
  }
}

/* ================= GLOBAL ================= */

.container {
  max-width: var(--container-width);
  margin: auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.btn-primary {
  padding: 14px 28px;
  border-radius: 10px;
  border: none;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  background: var(--gradient);
}

/* ===================================banner============================================ */
.banner {
  position: relative;
  width: 100%;
  height: 605px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, 0.62) 0%,
    rgba(15, 31, 58, 0.58) 50%,
    rgba(30, 41, 59, 0.62) 100%
  );
}

.banner-content {
  position: relative;
  text-align: center;
  color: #fff;
  max-width: 750px;
  padding: 0 20px;
}

.banner-content h1 {
  font-family: "Poppins", sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

.banner-content p {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  line-height: 32px;
  color: #d1d5dc;
  margin-bottom: 24px;
}

.banner-btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 10px;
  font-family: "Poppins";
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  text-decoration: none;

  background: linear-gradient(to right, #0ea5e9, #06b6d4);

  box-shadow:
    0px 4px 6px rgba(0, 0, 0, 0.1),
    0px 10px 15px rgba(0, 0, 0, 0.1);

  transition: 0.3s ease;
}

.banner-btn:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

/* ======================================================footer============================================== */

.footer {
  background: #f9fafb;
  padding: 40px 40px;
  box-shadow: 0px -2px 8px rgba(0, 0, 0, 0.08);
  font-family: "Poppins", sans-serif;
}

.footer-container {
  max-width: 1440px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 10px;
}

.pvtltd {
  color: #6a7282;
font-size: 16px !important;  margin-bottom: 10px;
}

.footer-about p {
  color: #000;
  font-size: 16px;
  line-height: 26px;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #101828;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  color: #000;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.footer-col ul li:hover {
  color: #2a3293;
}

.footer-col ul li a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
  display: inline-block;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #2a3293;
}

.contact li {
  line-height: 1.6;
}

/* ================= DIVIDER LINE ================= */

.footer-bottom {
  text-align: center;
  border-top: 1px solid #8084b1;
  margin-top: 40px;
  padding: 20px 10px 10px 10px;
  font-size: 14px;
  color: #2a3293;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 6px;
}

.footer-bottom a {
  color: hsl(29, 100%, 50%);
  text-decoration: none;
  font-weight: 500;
  word-break: break-word;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.footer-col ul li a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.footer-col ul li a:hover {
  color: #0b82ad;
  /* optional hover effect */
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .footer {
    padding: 40px 20px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto 10px;
  }

  .footer-col ul li {
    font-size: 15px;
  }

  .footer-about p {
    font-size: 14px;
  }
}

.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.float-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 22px;
  color: #fff;
  text-decoration: none;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.call-btn {
  color: white;
  border-radius: 26843500px;
  background: linear-gradient(
    135deg,
    #0ea5e9 0%,
    #0da6e8 7.14%,
    #0ca8e6 14.29%,
    #0ba9e5 21.43%,
    #0aaae3 28.57%,
    #09abe2 35.71%,
    #09ace0 42.86%,
    #08aedf 50%,
    #07afdd 57.14%,
    #07b0dc 64.29%,
    #07b1da 71.43%,
    #06b2d9 78.57%,
    #06b4d7 85.71%,
    #06b5d6 92.86%,
    #06b6d4 100%
  );
}
.whatsapp-btn {
  background-color: rgb(18, 218, 18);
  color: white;
}
.top-btn {
  border: none;
  border-radius: 26843500px;
  background: linear-gradient(
    135deg,
    #0ea5e9 0%,
    #0da6e8 7.14%,
    #0ca8e6 14.29%,
    #0ba9e5 21.43%,
    #0aaae3 28.57%,
    #09abe2 35.71%,
    #09ace0 42.86%,
    #08aedf 50%,
    #07afdd 57.14%,
    #07b0dc 64.29%,
    #07b1da 71.43%,
    #06b2d9 78.57%,
    #06b4d7 85.71%,
    #06b5d6 92.86%,
    #06b6d4 100%
  );
  /* box-shadow:
    0 10px 15px -3px rgba(14, 165, 233, 0.4),
    0 4px 6px -4px rgba(14, 165, 233, 0.4); */
}
.float-btn:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .float-btn {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .floating-buttons {
    right: 12px;
    bottom: 60px;
    gap: 10px;
  }
}

/* ================= HERO ================= *//* ================= HERO ================= */
/* ================= HERO ================= */
.hero {
  width: 100%;
  overflow: hidden;
}

.hero-wrapper {
  display: flex;
  align-items: stretch; /* ✅ equal height */
  min-height: 520px;
}

/* ================= LEFT IMAGE ================= */
.hero-left {
  width: 50%;
  display: flex; /* ✅ IMPORTANT */
}

.hero-left img {
  width: 100%;
  height: 100%;

}
/* ================= RIGHT CONTENT ================= */
.hero-right {
  width: 50%;
  background: #2a3293;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-content {
  max-width: 620px;
  text-align: center;
  color: #fff;
  padding: 20px;
}

.hero-title {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
}

.hero-title span {
  color: #0ea5e9;
}

.hero-sub {
  margin-top: 18px;
  font-size: 20px;
  color: #d1d5dc;
}

.hero-desc {
  margin-top: 12px;
  font-size: 18px;
  color: #d1d5dc;
}

.hero-desc strong {
  color: #ffffff;
  font-weight: 600;
}

/* ================= BUTTON ================= */
.btn-primary {
  margin-top: 28px;
  padding: 14px 32px;
  border-radius: 10px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(90deg, #0ea5e9, #06b6d4);
  box-shadow:
    0 4px 6px rgba(14, 165, 233, 0.3),
    0 10px 15px rgba(14, 165, 233, 0.3);
}

/* ================= FLOATING ICONS ================= */
.hero-icons {
  position: absolute;
  right: 20px;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-icons a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.hero-icons a:first-child {
  background: #0ea5e9;
}

.hero-icons a:last-child {
  background: #22c55e;
}

/* ================= LARGE SCREENS (1440px+) ================= */
@media (min-width: 1440px) {
  .hero-wrapper {
    min-height: 520px; /* ✅ better scaling */
  }

  .hero-content {
    max-width: 700px;
  }

  .hero-title {
    font-size: 60px;
  }

  .hero-sub {
    font-size: 22px;
  }

  .hero-desc {
    font-size: 18px;
  }

  .btn-primary {
    padding: 16px 36px;
    font-size: 18px;
  }

  .hero-icons {
    right: 40px;
    bottom: 50px;
  }

  .hero-icons a {
    width: 54px;
    height: 54px;
  }
}

/* ================= TABLET (1024px ↓) ================= */
@media (max-width: 1024px) {
  .hero-wrapper {
    min-height: 360px;
    align-items: stretch; /* ✅ KEY FIX */
  }

  .hero-left,
  .hero-right {
    width: 50%;
  }

  .hero-left {
    display: flex;
  }

  .hero-left img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-sub {
    font-size: 18px;
  }

  .hero-desc {
    font-size: 16px;
  }

  .btn-primary {
    padding: 12px 26px;
    font-size: 15px;
  }
}

/* ================= MOBILE (768px ↓) ================= */
@media (max-width: 768px) {
  .hero-wrapper {
    flex-direction: column;
    min-height: auto;
  }

  .hero-left {
    width: 100%;
    height: 520px; /* ✅ FIX */
  }

  .hero-left img {
    width: 100%;
    height: 100%;
  }

  .hero-right {
    width: 100%;
    padding: 40px 20px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-sub {
    font-size: 15px;
  }

  .hero-desc {
    font-size: 14px;
  }

  .btn-primary {
    width: 100%;
    text-align: center;
  }
}

/* ================= SMALL MOBILE (480px ↓) ================= */
@media (max-width: 480px) {
  .hero-title {
    font-size: 26px;
    line-height: 1.2;
  }
   .hero-wrapper {
    flex-direction: column;
    min-height: auto;
  }

  .hero-left {
    width: 100%;
    height: 220px; /* ✅ FIX */
  }


  .hero-sub {
    font-size: 14px;
  }

  .hero-desc {
    font-size: 13px;
  }

  .btn-primary {
    font-size: 14px;
    padding: 12px;
  }
}
/* ================= SLIDER ================= */
#categorySlider {
  display: flex;
  gap: 20px;

  overflow-x: auto; /* ✅ FIXED */
  overflow-y: hidden;

  padding: 10px 40px;

  scrollbar-width: none;
}

#categorySlider::-webkit-scrollbar {
  display: none;
}

.category-slider {
  scroll-behavior: auto;
}

.category-container {
  max-width: 1300px;
  margin: auto;
  position: relative;
}

.category-slider {
  display: flex;
  gap: 20px;

  overflow-x: auto;
  overflow-y: hidden;

  padding: 10px 40px;

  scrollbar-width: none;
}

.category-slider::-webkit-scrollbar {
  display: none;
}

.category-slider::-webkit-scrollbar-track {
  background: #e5e7eb;
  border-radius: 10px;
}

.category-slider::-webkit-scrollbar-thumb {
  background: #9ca3af;
  border-radius: 10px;
}

.category-slider::-webkit-scrollbar-thumb:hover {
  background: #6b7280;
}

.category-item {
  min-width: 150px;
  flex: 0 0 auto;
  text-align: center;
}

.category-item img {
  width: 100%;
  max-width: 140px;
  height: auto;
}

.category-item p {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.category-wrapper {
  position: relative;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;

  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;

  background: #2a3293;
  color: #fff;
  font-size: 20px;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.arrow.left {
  left: 10px;
}

.arrow.right {
  right: 10px;
}

.arrow:hover {
  background: #0ea5e9;
}

@media (max-width: 768px) {
  .category-item {
    min-width: 120px;
  }

  .category-slider {
    padding: 10px 30px;
  }
}

/* ==================================================================card section============================ */

.cylinder-section {
  padding: 60px 20px;
  background-color: #f9fafb;
}

.section-title {
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #2a3293;
  text-align: center;
  margin-bottom: 40px;
}

.cylinder-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ================= CYLINDER SECTION ================= */

.cylinder-section {
  padding: 60px 20px;
  background-color: #f9fafb;
}

.section-title {
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #2a3293;
  text-align: center;
  margin-bottom: 40px;
}

.cylinder-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

/* ================= CARD ================= */

.cylinder-card {
  width: 100%;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 14px;
  padding: 20px;
  text-align: left;

  box-shadow:
    0 1px 2px -1px rgba(0, 0, 0, 0.1),
    0 1px 3px rgba(0, 0, 0, 0.1);

  transition: all 0.4s ease;

  height: auto;

  display: flex;
  flex-direction: column;
}

.cylinder-card.animate {
  opacity: 0;
  transform: translateY(40px);
}

.cylinder-card.show {
  opacity: 1;
  transform: translateY(0);
}

.cylinder-card img {
  width: 100%;
  max-width: 240px;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto 16px;
}

.cylinder-card h3 {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #212529;
  margin-bottom: 8px;
  line-height: 2;
}

.cylinder-card p {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  color: #444444;
  margin-bottom: 12px;
  line-height: 1.7;
}

.cylinder-card span::before {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background: #e0e0e0;
  opacity: 0.5;
  margin: 10px 0;
}

.cylinder-card span {
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  color: #444444;
  line-height: 1.5;
  display: block;
}

.cylinder-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .section-title {
    font-size: 26px;
  }
}

@media (max-width: 600px) {
  .cylinder-section {
    padding: 50px 16px;
  }

  .section-title {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .cylinder-card {
    padding: 16px;
  }

  .cylinder-card h3 {
    font-size: 16px;
  }

  .cylinder-card p {
    font-size: 14px;
  }
}

/* ==========================================================3rd section====================== */
/* ================= SECTION ================= */
.tools-section {
  padding: 60px 20px;
  background: #2a329312;
  text-align: center;
  overflow: hidden;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  color: #2a3293;
  margin-bottom: 40px;
}

/* ================= SLIDER ================= */
.tools-grid {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marqueeScroll 25s linear infinite;
}

.tools-grid:hover {
  animation-play-state: paused;
}

/* ================= CARD ================= */
.tool-card {
  position: relative;
  width: 300px; /* FIXED WIDTH */
  height: 320px; /* FIXED HEIGHT */
  flex: 0 0 300px; /* IMPORTANT */
  border-radius: 12px;
  overflow: hidden;
}

/* image */
.tool-card img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* keeps uniform look */
}

/* overlay */
.tool-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.6)
  );
}

/* ================= CONTENT ================= */
.content {
  position: absolute;
  inset: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 2;
  backdrop-filter: blur(1px);
}
.content h3,
.content h4,
.content p {
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.9);
}
.content h3 {
  /* color: #454a88; */
    color: white;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.content h4 {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 26px;
}
.content p {
  color: #ffffff;
  font-size: 13px;
  line-height: 22px;
  max-width: 85%;
}

/* ================= MARQUEE ================= */
@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ================= RESPONSIVE ================= */


@media (max-width: 1024px) {
  .tool-card {
    width: 220px;
    height: 250px;
    flex: 0 0 220px;
  }
}
@media (max-width: 768px) {

  .content h3 {
    font-size: 16px;
    line-height: 20px;
  }

  .content h4 {
    font-size: 12px;
    line-height: 16px;
  }

  .content p {
    font-size: 11px;
    line-height: 16px;
  }

}
@media (max-width: 768px) {
  .tool-card {
    min-width: 220px;
    height: 260px;
  }
}

@media (max-width: 480px) {
  .tool-card {
    min-width: 200px;
    height: 240px;
  }
}
/* ==================img======================== */
.image-section {
  position: relative;
  width: 100%;
  height: 403px;
  overflow: hidden;

  border-top: 8px solid #ffffff;
  border-bottom: 8px solid #ffffff;
}

.section-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);

  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.overlay h2 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 35px;
  line-height: 60px;
  color: #ffffff;
  text-transform: uppercase;
  text-align: center;

  text-shadow: 1px 3px 10px rgba(0, 0, 0, 0.5);
  margin: 0;
}

/* ======================================================================================================== */
.hydraulic-section {
  position: relative;
  width: 100%;
}

.bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.overlay1 {
  position: relative;
  background: rgba(17, 30, 49, 0.85);

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 100px 20px;
}

.container {
  max-width: 1128px;
  width: 100%;
  margin: auto;
  text-align: center;
}

.title {
  color: #fff;
  text-align: center;
  font-family: Poppins;
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
  padding: 20px;
}

.desc {
  max-width: 755px;
  width: 100%;

  color: #cfd5df;
  text-align: center;
  font-family: Poppins;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;

  margin: 0 auto;
  padding: 0 16px 20px 16px;
  margin-bottom: 10px;
}

.features {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
}

.feature {
  flex: 1;
  min-width: 250px;
}

.feature h4 {
  color: #fff;
  text-align: center;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
}

.feature p {
  color: #cfd5df;
  text-align: center;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0ea5e9;
  color: white;
}

/* ================= SMALL DEVICES ================= */
@media (max-width: 400px) {
  .title {
    font-size: 20px;
  }

  .desc {
    font-size: 13px;
  }

  .overlay1 {
    padding: 50px 10px;
  }
}
/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .overlay1 {
    padding: 70px 16px;
  }

  .title {
    font-size: 28px;
  }

  .features {
    flex-direction: column;
    align-items: center;
  }
}

.who-section {
  width: 100%;
  background: #2a3293;
  padding: 96px 20px;
  display: flex;
  justify-content: center;
}

.who-container {
  max-width: 1048px;
  width: 100%;
  text-align: center;

  display: flex;
  flex-direction: column;
  gap: 24px;
}

.who-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  color: #ffffff;
}

.who-text {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 29.25px;
  color: #cfd5df;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .who-section {
    padding: 80px 20px;
  }

  .who-title {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .who-container {
    gap: 20px;
  }

  .who-title {
    font-size: 26px;
  }

  .who-text {
    font-size: 16px;
    line-height: 26px;
  }
}

@media (max-width: 480px) {
  .who-section {
    padding: 60px 16px;
  }

  .who-title {
    font-size: 22px;
  }

  .who-text {
    font-size: 14px;
  }
}

.why-choose {
  padding: 80px 20px;
  background: #f9fafb;
}

.why-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.why-title {
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #2a3293;
}

.why-subtitle {
  font-size: 18px;
  color: #99a1af;
  margin-bottom: 40px;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.why-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* ======================================================================================================= */
.why-choose {
  padding: 96px 76px 60px;
}

.container {
  max-width: 1207px;
  margin: 0 auto;
}

.header {
  text-align: center;
  margin-bottom: 60px;
}

.header h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
}

.header p {
  color: #99a1af;
  font-size: 18px;
  line-height: 28px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.card {
  width: 100%;
  min-height: 280px;
  padding: 28px 20px;
  border-radius: 14px;
  border: 0.8px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  text-align: center;
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.2);
}

.icon1 {
  margin-bottom: 16px;
}

.card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.card p {
  font-size: 14px;
  color: #5f6671;
  line-height: 24px;
}

@media (max-width: 1024px) {
  .why-choose {
    padding: 80px 40px;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .why-choose {
    padding: 60px 20px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .header h2 {
    font-size: 26px;
  }

  .header p {
    font-size: 16px;
  }
}

/* ============================================================================================= */
.achievements {
  width: 100%;
  margin-left: 0;
  margin-left: calc(-50vw + 50%);
  background: #2a3293;
  padding: 80px 0;
}

.container {
  max-width: 1207px;
  margin: 0 auto;
  padding: 0 20px;
}

.ach-header {
  text-align: center;
  margin-bottom: 60px;
}

.ach-header h2 {
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
}

.ach-header p {
  color: #cfd5df;
  font-size: 18px;
  line-height: 28px;
}

.ach-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.ach-card {
  padding: 32px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  text-align: center;
  transition: 0.3s ease;
}

.ach-card:hover {
  transform: translateY(-6px);
}

.ach-card h3 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 8px;

  background: linear-gradient(
    90deg,
    #0ea5e9,
    #0ca8e6,
    #0aaae3,
    #09ace0,
    #07afdd,
    #06b6d4
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ach-card p {
  color: #cfd5df;
  font-size: 18px;
  line-height: 28px;
}

@media (max-width: 1024px) {
  .ach-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .achievements {
    padding: 60px 0;
  }

  .ach-cards {
    grid-template-columns: 1fr;
  }

  .ach-card h3 {
    font-size: 36px;
  }

  .ach-header h2 {
    font-size: 26px;
  }

  .ach-header p {
    font-size: 16px;
  }
}

.core-values {
  width: 100%;
  padding: 80px 20px;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

.core-title {
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #2a3293;
  margin-bottom: 48px;
}

.core-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.core-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
  padding: 28px 20px;

  background: #ffffff;
  border-radius: 14px;

  height: 100%;
}

.core-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.core-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #2a3293;
  margin-bottom: 10px;
}

.core-card p {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 24px;
  color: #5f6671;
  max-width: 260px;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 1024px) {
  .core-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .core-title {
    font-size: 32px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .core-values {
    padding: 60px 16px;
  }

  .core-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .core-title {
    font-size: 26px;
    margin-bottom: 32px;
  }

  .core-card {
    padding: 20px 16px;
  }

  .core-card h3 {
    font-size: 20px;
  }

  .core-card p {
    font-size: 14px;
    line-height: 22px;
  }
}

/* Small Mobile */
@media (max-width: 400px) {
  .core-title {
    font-size: 22px;
  }

  .core-card p {
    max-width: 100%;
  }
}

.cta-section {
  width: 100%;
  background: #2a3293;
  padding: 40px 20px;
}

.cta-container {
  max-width: 1176px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cta-content h2 {
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.cta-content p {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
}

.cta-btn {
  background: #ffffff;
  color: #2a3293;
  padding: 14px 24px;
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.1),
    0 10px 15px rgba(0, 0, 0, 0.1);

  transition: 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .cta-container {
    flex-direction: column;
    text-align: center;
  }

  .cta-content h2 {
    font-size: 28px;
  }

  .cta-content p {
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .cta-section {
    padding: 30px 15px;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
  }

  .cta-content h2 {
    font-size: 24px;
  }
}

/* ==============================servicess============================== */

.service-section {
  padding: 80px 20px;
  background: #f9fafb;
}

.light-bg {
  background: rgba(42, 50, 147, 0.07);
}

.service-container {
  max-width: 1280px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.service-container.reverse {
  flex-direction: row;
}

.service-content {
  max-width: 540px;
}

.icon-box {
  width: 64px;
  height: 64px;
  background: rgba(0, 0, 0, 0.23);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-content h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  color: #2a3293;
  margin-bottom: 16px;
}

.service-content h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  color: #2a3293;
  margin-bottom: 16px;
}

.service-content p {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  line-height: 29px;
  color: #99a1af;
  margin-bottom: 24px;
}

.service-btn {
  display: inline-block;
  padding: 14px 24px;
  background: #2a3293;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-family: "Poppins";

  box-shadow:
    0px 4px 6px rgba(0, 0, 0, 0.1),
    0px 10px 15px rgba(0, 0, 0, 0.1);

  transition: 0.3s ease;
}

.service-btn:hover {
  transform: translateY(-2px);
}

.outline-btn {
  background: transparent;
  color: #2a3293;
  border: 1px solid #2a3293;
  box-shadow: none;
}

.outline-btn:hover {
  background: #2a3293;
  color: #fff;
}

.service-image {
  width: 540px;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;

  box-shadow: 0px 25px 50px rgba(0, 0, 0, 0.25);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.4s ease;
}

.service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 22, 40, 0.6),
    rgba(15, 31, 58, 0.3),
    rgba(30, 41, 59, 0.6)
  );
  pointer-events: none;
}

.service-image:hover img {
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .service-container {
    flex-direction: column;
    text-align: center;
  }

  .service-container.reverse {
    flex-direction: column;
  }

  .service-content {
    max-width: 100%;
  }

  .service-image {
    width: 100%;
    height: 300px;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .service-section {
    padding: 50px 16px;
  }

  .service-content h2 {
    font-size: 26px;
    line-height: 32px;
  }

  .service-content h4 {
    font-size: 18px;
  }

  .service-content p {
    font-size: 15px;
  }

  .icon-box {
    margin: 0 auto 20px;
  }

  .service-image {
    height: 220px;
  }
}

.lead-section {
  padding: 100px 20px;
  background: #f9fafb;
  text-align: center;
}

.lead-header h2 {
  font-family: "Poppins";
  font-size: 48px;
  font-weight: 700;
  color: #2a3293;
  margin-bottom: 12px;
}

.lead-header p {
  font-family: "Poppins";
  font-size: 18px;
  color: #99a1af;
  margin-bottom: 48px;
}

.lead-card {
  max-width: 672px;
  margin: auto;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px;

  box-shadow: 0px 25px 50px rgba(0, 0, 0, 0.25);
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-family: "Poppins";
  font-weight: 500;
  font-size: 16px;
  color: #2a3293;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font-family: "Poppins";
  font-size: 14px;
  outline: none;
  transition: 0.3s;
}

.form-group textarea {
  height: 120px;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #2a3293;
  box-shadow: 0 0 0 2px rgba(42, 50, 147, 0.1);
}

.lead-btn {
  width: 100%;
  height: 56px;
  border-radius: 10px;
  border: none;
  background: #2a3293;
  color: #fff;
  font-family: "Poppins";
  font-weight: 600;
  font-size: 16px;

  box-shadow:
    0px 4px 6px rgba(0, 0, 0, 0.1),
    0px 10px 15px rgba(0, 0, 0, 0.1);

  cursor: pointer;
  transition: 0.3s;
}

.lead-btn:hover {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .lead-header h2 {
    font-size: 32px;
  }

  .lead-header p {
    font-size: 16px;
  }

  .lead-card {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .lead-section {
    padding: 60px 16px;
  }

  .lead-header h2 {
    font-size: 26px;
  }

  .lead-card {
    padding: 20px;
  }
}

.error {
  color: red;
  font-size: 12px;
  margin-top: 4px;
  display: block;
}

input.error-border,
textarea.error-border {
  border-color: red;
}

/* ===========================================industries==================================== */
.services-section {
  background: #f9fafb;
  padding: 80px 20px;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 24px;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(42, 50, 147, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 24px;
}

.service-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #2a3293;
  margin-bottom: 8px;
}

.service-desc {
  color: #000;
  font-family: Poppins;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  width: 265px;
}

.service-card h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #2a3293;
  margin-bottom: 8px;
}

.service-card ul {
  padding-left: 18px;
  margin: 0;
  list-style: disc;
}

.service-card li::marker {
  background: #2a3293;
  font-size: 17px;
}

.service-card li {
  color: #000;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 142.857% */
}

@media (max-width: 1024px) {
  .services-section {
    padding: 60px 16px;
  }

  .services-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .services-section {
    padding: 40px 12px;
  }

  .services-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card {
    padding: 18px;
  }

  .service-title {
    font-size: 18px;
  }

  .service-desc {
    font-size: 14px;
  }
}

/* ==========================================industries=========================== */

.services-section {
  background: #f9fafb;
  padding: 60px 16px; /* better mobile spacing */
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* ================= CARD ================= */

.service-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 24px;

  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.06);

  transition: all 0.4s ease;

  height: auto;
  display: flex;
  flex-direction: column;

  /* animation */
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.6s ease forwards;
}

/* ================= STAGGER ANIMATION ================= */

.service-card:nth-child(1) {
  animation-delay: 0.1s;
}
.service-card:nth-child(2) {
  animation-delay: 0.2s;
}
.service-card:nth-child(3) {
  animation-delay: 0.3s;
}
.service-card:nth-child(4) {
  animation-delay: 0.4s;
}
.service-card:nth-child(5) {
  animation-delay: 0.5s;
}
.service-card:nth-child(6) {
  animation-delay: 0.6s;
}
.service-card:nth-child(7) {
  animation-delay: 0.7s;
}
.service-card:nth-child(8) {
  animation-delay: 0.8s;
}
.service-card:nth-child(9) {
  animation-delay: 0.9s;
}

/* ================= HOVER ================= */

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* ================= ICON ================= */
.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(42, 50, 147, 0.08);

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 16px;
  transition: all 0.3s ease;

  color: #2A3293; /* default icon color */
}

/* SVG */
.service-icon svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  transition: 0.3s;
}

/* HOVER */
.service-card:hover .service-icon {
  transform: rotate(8deg) scale(1.1);
  background: #2A3293;
  color: #fff; /* THIS makes SVG white */
}.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(42, 50, 147, 0.08);

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 16px;
  transition: all 0.3s ease;

  color: #2A3293; 
}


.service-card:hover .service-icon svg path {
  stroke: #fff !important;
}
/* ================= TEXT ================= */

.service-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #2a3293;
  margin-bottom: 8px;

  transition: color 0.3s ease;
}

.service-card:hover .service-title {
  color: #0b82ad;
}

.service-desc {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 24px;
  color: #364153;
  margin-bottom: 16px;
}

.service-card h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #2a3293;
  margin-bottom: 8px;
}

/* ================= LIST ================= */

.service-card ul {
  padding-left: 18px;
  margin: 0;
}

.service-card li {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #000;
  margin-bottom: 6px;

  transition: transform 0.2s ease;
}

.service-card li:hover {
  transform: translateX(4px);
}

.service-card li::marker {
  color: #0b82ad;
}

/* ================= ANIMATION ================= */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= EXTRA RESPONSIVE TWEAK ================= */

@media (max-width: 480px) {
  .service-card {
    padding: 18px;
  }

  .service-title {
    font-size: 18px;
  }

  .service-desc {
    font-size: 14px;
  }
}
/* ================================products============================== */
.pipeline-section {
  background: #ffffff;
  padding: 80px 20px;
}

.pipeline-container {
  max-width: 768px;
  margin: 0 auto;
  text-align: center;
}

.pipeline-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 40px;
  color: #2a3293;
  margin-bottom: 16px;
}

.pipeline-desc {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #364153;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .pipeline-title {
    font-size: 32px;
    line-height: 38px;
  }

  .pipeline-container {
    max-width: 600px;
  }
}

@media (max-width: 640px) {
  .pipeline-section {
    padding: 50px 16px;
  }

  .pipeline-title {
    font-size: 24px;
    line-height: 30px;
  }

  .pipeline-desc {
    font-size: 14px;
    line-height: 22px;
  }
}

/* ================= SECTION ================= */
.equipment-section {
  background: #f9fafb;
  padding: 80px 20px;
}

.equipment-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.equipment-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: #ffffff;
  border-radius: 10px;
  padding: 16px 20px;
  border: 1px solid #e5e7eb;

  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.08),
    0 1px 3px rgba(0, 0, 0, 0.08);

  max-width: 706px;
  width: 100%;

  transition: all 0.35s ease;

  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.6s ease forwards;
}

.equipment-card.left {
  margin-right: auto;
}

.equipment-card.right {
  margin-left: auto;
}

.equipment-card img {
  width: 120px;
  height: 120px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  
}

.equipment-content {
  flex: 1;
}

.equipment-content h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #0a2540;
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.equipment-content p {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #4a5565;
  line-height: 22px;
}

.equipment-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  border-color: #2a3293;
}

.equipment-card:hover h3 {
  color: #2a3293;
}

.equipment-card:hover img {
  transform: scale(1.05);
}

.equipment-card img {
  transition: transform 0.3s ease;
}

.equipment-card:nth-child(1) {
  animation-delay: 0.1s;
}

.equipment-card:nth-child(2) {
  animation-delay: 0.2s;
}

.equipment-card:nth-child(3) {
  animation-delay: 0.3s;
}

.equipment-card:nth-child(4) {
  animation-delay: 0.4s;
}

.equipment-card:nth-child(5) {
  animation-delay: 0.5s;
}

.equipment-card:nth-child(6) {
  animation-delay: 0.6s;
}

.equipment-card:nth-child(7) {
  animation-delay: 0.7s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .equipment-section {
    padding: 60px 16px;
  }

  .equipment-container {
    gap: 24px;
  }

  .equipment-card {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .equipment-section {
    padding: 50px 14px;
  }

  .equipment-card {
    flex-direction: column;
    text-align: center;
    margin: 0 auto;
    padding: 16px;
  }

  .equipment-card img {
    width: 100%;
    height: 180px;
  }

  .equipment-content h3 {
    font-size: 18px;
  }

  .equipment-content p {
    font-size: 13px;
  }
}

.hydraulic-section {
  background: rgba(42, 50, 147, 0.07);
}

.hydraulic-header {
  max-width: 768px;
  margin: 0 auto 60px;
  text-align: center;
}

.hydraulic-header h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 40px;
  color: #2a3293;
  margin-bottom: 12px;
}

.hydraulic-header p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 26px;
  color: #4a5565;
}

.hydraulic-section .equipment-card {
  border: 1px solid #d0d5dd;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .hydraulic-header h2 {
    font-size: 32px;
  }
}

@media (max-width: 640px) {
  .hydraulic-header {
    margin-bottom: 40px;
  }

  .hydraulic-header h2 {
    font-size: 24px;
    line-height: 30px;
  }

  .hydraulic-header p {
    font-size: 14px;
  }
}

/* ================= SECTION ================= */

.featured-image {
  width: 30%;
  height: 400px;
  overflow: hidden;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;  
  display: block;
  padding: 10px;

}

.featured-header {
  text-align: center;
  max-width: 768px;
  /* margin: 0 auto 64px; */
  text-align: center;
  margin: auto;
  padding: 20px;
}

.featured-header h2 {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-weight: 600;
  color: #2a3293;
  margin-bottom: 12px;
  /* padding-top: 30px; */
  
}

.featured-header p {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  color: #4a5565;
}

.featured-card {
  max-width: 1176px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  margin: 10px;

  border: 1px solid #e5e7eb;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.08),
    0 1px 3px rgba(0, 0, 0, 0.08);

  transition: 0.35s ease;

  /* IMPORTANT for carousel */

  flex: 0 0 auto;
  min-width: 100%;
}

.featured-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* ================= IMAGE ================= */



/* ================= WRAPPER ================= */
.featured-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* ================= SLIDER ================= */
.featured-slider {
  display: flex;
  gap: 30px;

  /* carousel behavior */
  overflow-x: auto;
  scroll-behavior: smooth;

  /* hide scrollbar */
  scrollbar-width: none;
}

.featured-slider::-webkit-scrollbar {
  display: none;
}

/* ================= CONTENT ================= */
.featured-content {
  width: 50%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-content h3 {
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-weight: 600;
  color: #0a2540;
  margin-bottom: 16px;
}
.featured-desc {
  font-family: "Inter", sans-serif;
  font-size: 13px; /* smaller text */
  line-height: 18px; /* reduced spacing */
  color: #4a5565;
  margin-bottom: 10px; /* less gap */

  /* 🔥 LIMIT TEXT (IMPORTANT) */
  display: -webkit-box;
  -webkit-line-clamp: 2; /* show only 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.featured-wrapper {
  overflow: hidden;
}

.featured-slider {
  overflow-x: auto;
  padding-left: 10px;
}
@media (max-width: 768px) {
  .featured-card {
    min-width: 85%;
    max-width: 85%;
    margin: 0;
  }
}
/* ================= SPECS ================= */
.featured-specs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.spec-row {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 12px;
}

.spec-label {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #6a7282;
  white-space: nowrap;
}

.spec-row::before {
  content: "";
  flex: 1;
  height: 1px;
  background: #e5e7eb;
  order: 1;
}

.spec-value {
  margin-left: auto;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #0a2540;
  font-weight: 500;
  white-space: nowrap;
  text-align: right;
}

.spec-label {
  order: 0;
}

.spec-value {
  order: 2;
}

/* ================= BUTTONS ================= */
.slider-btn {
  position: absolute;
  top: 50%;
  font-size: 30px;
  transform: translateY(-50%);
  background: #0b82ad;
  color: #fff;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.slider-btn.prev {
  left: 15px;
}

.slider-btn.next {
  right: 18px;
}

.slider-btn:hover {
  background: #086a8a;
}

/* ================= TABLET (≤1024px) ================= */
@media (max-width: 1024px) {
  .featured-card {
    min-width: 85%;
  }

  .featured-header h2 {
    font-size: 32px;
  }

  .featured-content {
    padding: 24px;
  }

  .featured-content h3 {
    font-size: 22px;
  }

  .featured-image {
    height: 280px;
  }
}

/* ================= MOBILE COMPACT FIX ================= */
@media (max-width: 768px) {
  .featured-wrapper {
    padding-left: 8px;
  }

  .featured-slider {
    gap: 12px;
  }

  .featured-card {
    flex-direction: column;
    min-width: 88%; /* 🔥 smaller card */
    border-radius: 8px;
  }

  /* IMAGE FIX (MOST IMPORTANT) */
  .featured-image {
    width: 100%;
    height: 140px; /* 🔥 reduced from 200+ */
  }

  .featured-image img {
    object-fit: contain;
    padding: 8px;
  }

  /* CONTENT FIX */
  .featured-content {
    width: 100%;
    padding: 12px;
  }

  .featured-content h3 {
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 6px;
  }

  .featured-desc {
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 10px;
  }

  /* SPECS COMPACT */
  .featured-specs {
    gap: 6px;
  }

  .spec-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }

  .spec-row::before {
    display: none;
  }

  .spec-label {
    font-size: 10px;
  }

  .spec-value {
    font-size: 11px;
    margin-left: 0;
  }

  /* BUTTON FIX */
  .slider-btn {
    width: 30px;
    height: 30px;
    font-size: 14px;
    top: 38%;
  }
}

/* ================= EXTRA SMALL ================= */
@media (max-width: 480px) {
  .featured-card {
    min-width: 90%;
  }

  .featured-image {
    height: 120px; /* 🔥 ultra compact */
  }

  .featured-content h3 {
    font-size: 14px;
  }

  .featured-desc {
    font-size: 11px;
  }
}
/* ======================================================================================= */

.equipment-wrap {
  width: 100%;
  background: #f3f4f6;
  padding: 60px 16px;
}

.equipment-inner {
  max-width: 1128px;
  margin: 0 auto;
  text-align: center;
}

.equipment-heading {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 40px;
  color: #2a3293;
  margin-bottom: 8px;
}

.equipment-desc {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 28px;
  color: #4a5565;
  margin-bottom: 36px;
}

.equipment-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.equipment-item {
  height: 256px;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;

  box-shadow:
    0px 1px 2px rgba(0, 0, 0, 0.1),
    0px 4px 6px rgba(0, 0, 0, 0.1);

  line-height: 0;
}

.equipment-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1024px) {
  .equipment-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .equipment-heading {
    font-size: 28px;
    line-height: 32px;
  }

  .equipment-desc {
    font-size: 16px;
  }

  .equipment-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .equipment-item {
    height: 220px;
  }
}

/* ==============================contact====================================== */
.contact-section {
  background: #f9fafb;
  padding: 80px 20px;
}

.contact-container {
  max-width: 1128px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.contact-left {
  flex: 1;
}

.contact-title {
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #2a3293;
  margin-bottom: 16px;
}

.contact-desc {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  line-height: 29px;
  color: #99a1af;
  margin-bottom: 32px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 0, 0, 0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.contact-item p {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #99a1af;
}

.contact-form-box {
  width: 540px;
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.23);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid #000;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  outline: none;
}

.form-group textarea {
  height: 120px;
  resize: none;
}

.contact-btn {
  height: 56px;
  background: #2a3293;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  cursor: pointer;

  box-shadow:
    0px 4px 6px rgba(14, 165, 233, 0.3),
    0px 10px 15px rgba(14, 165, 233, 0.3);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-form-box {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .contact-section {
    padding: 50px 16px;
  }

  .contact-title {
    font-size: 24px;
  }

  .contact-desc {
    font-size: 14px;
  }

  .contact-form-box {
    padding: 20px;
  }

  .contact-item {
    gap: 12px;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
  }
}

.map-section {
  padding: 60px 20px;
  background: #ffffff;
}

.map-container {
  max-width: 1245px;
  margin: 0 auto;
}

.map-box {
  width: 100%;
  height: 384px;
  border-radius: 12px;
  overflow: hidden;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 1024px) {
  .map-box {
    height: 300px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .map-section {
    padding: 40px 16px;
  }

  .map-box {
    height: 220px;
  }
}

html {
  scroll-behavior: smooth;
}

#contact {
  scroll-margin-top: 100px;
}
