* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #1f1f23; /* Card Black */
  --secondary: #3a3a40; /* Card Gray */
  --accent-red: #ed1c24; /* Card Red */
  --accent-red-dark: #c8101a; /* Deep Red */
  --light-bg: #efeff1; /* Light Gray */
  --mid-bg: #d8d8dd; /* Mid Gray */
  --text-dark: #1a1a1d; /* Headings */
  --text-body: #3f3f45; /* Paragraphs */
  --nav-bg: linear-gradient(
    120deg,
    rgba(27, 27, 31, 0.97),
    rgba(53, 53, 58, 0.94)
  );
}

body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  background: #f2f6fb;
  color: #333;
  margin-top: 112px;
}
html {
  scroll-behavior: smooth;
}

/* Modern Navbar */
.menu-toggle {
  display: none;
}

.navbar {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1260px, calc(100% - 28px));
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #ffffff;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  font-family: "Barlow", sans-serif;
}

.navbar .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.logo img {
  height: 56px;
  width: auto;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  color: #1a1a1d;
}

.brand-name {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.03em;
}

.brand-sub {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: #666666;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.navbar .nav-links a {
  text-decoration: none;
  color: #333333;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 10px 14px;
  border-radius: 12px;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.navbar .nav-links a:hover {
  background: var(--accent-red);
  color: #ffffff;
  transform: translateY(-1px);
}

.navbar .nav-links a:focus-visible,
.menu-toggle:focus-visible,
.hero-btn:focus-visible {
  outline: 2px solid var(--accent-red);
  outline-offset: 2px;
}

.btn-yellow {
  background: linear-gradient(135deg, #ffffff, #ffffff);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(97, 97, 97, 0.35);
}

.btn-yellow:hover {
  background: linear-gradient(135deg, #4a9fff, #0052cc);
  color: #ffffff;
}

/* Hero Section */
.hero {
  position: relative;
  margin: 0 16px 24px;
  min-height: 720px;
  padding: 16px 56px 34px;
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  isolation: isolate;
  background:
    radial-gradient(
      circle at 10% 15%,
      rgba(74, 144, 226, 0.32),
      transparent 40%
    ),
    linear-gradient(115deg, #06162e 0%, #0a2144 54%, #0f2b55 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(4, 15, 31, 0.78) 0%,
    rgba(4, 15, 31, 0.48) 45%,
    rgba(4, 15, 31, 0.18) 100%
  );
  z-index: -1;
}

.bgimg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  opacity: 0.36;
  z-index: -2;
  filter: contrast(1.06) saturate(1.08);
}

.hero-content {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  z-index: 2;
  max-width: 780px;
  font-family: "Barlow", sans-serif;
}

.hero-left {
  max-width: 780px;
}

.hero-kicker {
  margin-bottom: 14px;
  font-size: 0.86rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #89b9ea;
  font-weight: 600;
}

.hero-left h1 {
  font-size: clamp(2.2rem, 5vw, 4.7rem);
  font-weight: 700;
  line-height: 1.02;
  color: #f5f9ff;
  margin: 0;
}

.hero-left h1 span {
  color: #6ec4ff;
}

.hero-left .tagline {
  margin-top: 18px;
  font-size: 1.08rem;
  line-height: 1.6;
  color: #d3dfef;
  max-width: 62ch;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.hero-btn.primary {
  background: linear-gradient(135deg, #2c8fff, #0068ff);
  color: #ffffff;
}

.hero-btn.primary:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #4fa1ff, #0f73ff);
}

.hero-btn.secondary {
  border-color: rgba(194, 216, 242, 0.52);
  color: #d9e9fb;
  background: rgba(13, 28, 54, 0.52);
}

.hero-btn.secondary:hover {
  transform: translateY(-1px);
  background: rgba(23, 45, 80, 0.72);
  color: #ffffff;
}

.hero-image {
  display: none;
}

/* Features */
.herofeatures {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 44px;
}

.herofeature-card {
  background: rgba(7, 23, 46, 0.76);
  border: 1px solid rgba(196, 218, 244, 0.24);
  border-radius: 16px;
  padding: 16px 18px;
  min-width: 0;
  max-width: unset;
  text-align: left;
  box-shadow: 0 10px 24px rgba(6, 16, 32, 0.26);
}

.herofeature-card.review,
.herofeature-card.battery,
.herofeature-card.weather {
  background: rgba(7, 23, 46, 0.76);
}

.herofeature-card .icon {
  color: #73c6ff;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.herofeature-card p {
  margin: 0;
  color: #f2f7ff;
  font-weight: 600;
}

.herofeature-card small {
  display: block;
  margin-top: 6px;
  color: #aec2dc;
  font-size: 0.88rem;
  line-height: 1.4;
}

/* Responsive navbar and hero */
@media (max-width: 1080px) {
  .hero {
    padding: 136px 28px 28px;
    min-height: 650px;
  }

  .herofeatures {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  body {
    margin-top: 98px;
  }

  .navbar {
    top: 8px;
    width: calc(100% - 18px);
    min-height: 76px;
    padding: 10px 12px;
    border-radius: 16px;
    align-items: center;
    background: #ffffff;
  }

  .logo img {
    height: 50px;
  }

  .brand-sub {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #f5f5f5;
    color: #333333;
    font-size: 1.2rem;
    cursor: pointer;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    padding: 10px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #ffffff;
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .nav-links.active {
    display: flex;
  }

  .navbar .nav-links a {
    width: 100%;
    border-radius: 10px;
    padding: 12px 14px;
    color: #333333;
  }

  .navbar .nav-links a:hover,
  .navbar .nav-links a:active,
  .navbar .nav-links a:focus-visible {
    background: var(--accent-red);
    color: #ffffff;
  }

  .btn-yellow {
    width: 100%;
    margin-top: 6px;
    justify-content: center;
    text-align: center;
  }
}

@media (min-width: 981px) {
  .nav-links {
    display: flex !important;
    position: static;
    background: none;
    border: 0;
    box-shadow: none;
    flex-direction: row;
    width: auto;
    padding: 0;
  }

  .menu-toggle {
    display: none !important;
  }
}

@media (max-width: 700px) {
  .hero {
    margin: 0 10px 16px;
    padding: 122px 16px 20px;
    border-radius: 20px;
    min-height: auto;
  }

  .bgimg {
    object-position: center;
    opacity: 0.28;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-left h1 {
    font-size: clamp(1.9rem, 8vw, 2.8rem);
  }

  .hero-left .tagline {
    font-size: 0.97rem;
    line-height: 1.5;
  }

  .hero-kicker {
    font-size: 0.75rem;
  }

  .hero-cta-row {
    gap: 10px;
  }

  .hero-btn {
    width: 100%;
  }

  .herofeatures {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 24px;
  }
}

/* ...existing code... */

/* ...existing code... */

/* Hero slide animation disabled - content remains static */

/* ...existing code... */

a {
  text-decoration: none;
  color: inherit;
}

.intr {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInintro 1.5s cubic-bezier(0.4, 2, 0.3, 1) forwards;
  animation-delay: 3.2s;
}

@keyframes fadeInintro {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-animated-text span {
  opacity: 0;
  transform: translateY(-30px);
  animation: fadeInUp 0.6s ease-out forwards;
  display: inline-block;
}

/* Staggered delays for each letter */
.about-animated-text span:nth-child(1) {
  animation-delay: 0s;
}
.about-animated-text span:nth-child(2) {
  animation-delay: 0.08s;
}
.about-animated-text span:nth-child(3) {
  animation-delay: 0.16s;
}
.about-animated-text span:nth-child(4) {
  animation-delay: 0.24s;
}
.about-animated-text span:nth-child(5) {
  animation-delay: 0.32s;
}
.about-animated-text span:nth-child(6) {
  animation-delay: 0.4s;
}
.about-animated-text span:nth-child(7) {
  animation-delay: 0.48s;
}
.about-animated-text span:nth-child(8) {
  animation-delay: 0.56s;
}
.about-animated-text span:nth-child(9) {
  animation-delay: 0.64s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-animated-text span,
.tiltle span {
  opacity: 0;
  transform: translateY(-30px);
  animation: fadeInUp 0.6s ease-out forwards;
  display: inline-block;
}
.top-bar {
  background: #fff;
  font-size: 12px;
  text-transform: uppercase;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
  font-weight: 600;
}
.intro strong {
  color: #007bff;
  font-family: "Poppins", sans-serif;
}

.menu {
  cursor: pointer;
}

.about-section {
  background-image: url();
  padding: 30px 30px;
  max-width: 1400px;
  margin: auto;
  font-family: "Poppins", sans-serif;
  border-radius: 15px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}

.about-section h1 {
  flex-basis: 100%;
  margin: 0;
  margin-bottom: 1rem;
  font-size: 3rem;
  font-weight: 600;
  color: #02073d;
  font-family: "Poppins", sans-serif;
  order: 1;
}

.intro {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
  flex: 1;
  min-width: 300px;
  order: 2;
}

.intro p {
  font-size: 1.3rem;
  color: #444;
  font-family: "Poppins", sans-serif;
  margin: 0;
}

.cta-button {
  background: #007bff;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

.about-images {
  display: flex;
  gap: 20px;
  flex: 1;
  min-width: 300px;
  order: 3;
  margin: 0;
}

.about-images img {
  flex: 1;
  border-radius: 12px;
  object-fit: contain;
  max-height: 300px;
  width: 100%;
}

.philosophy {
  font-size: 1.2rem;
  font-weight: 400;
  color: #333;
  margin-top: 30px;
  font-family: "Poppins", sans-serif;
  flex-basis: 100%;
  order: 4;
}

.highlight {
  color: #ffcc00;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

@media (max-width: 700px) {
  .about-section {
    padding: 24px 6px;
    border-radius: 10px;
  }
  .about-section h1 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 16px;
  }
  .intro {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    margin-bottom: 18px;
    text-align: start;
  }
  .intro p {
    font-size: 1.05rem;
    max-width: 100%;
    margin-bottom: 10px;
  }
  .cta-button {
    width: 100%;
    font-size: 1rem;
    padding: 10px 0;
    border-radius: 8px;
    margin: 0 auto 10px auto;
  }
  .about-images {
    flex-direction: column;
    gap: 10px;
    margin: 18px 0;
  }
  .about-images img {
    max-height: 180px;
    width: 100%;
    border-radius: 10px;
  }
  .philosophy {
    font-size: 1rem;
    margin-top: 18px;
    text-align: center;
    padding: 0 4px;
  }
}

.abtwhy-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  max-width: 1200px;
  font-family: "poppins", sans-serif;
  flex-basis: 100%;
  order: 5;
}

.abtleft-content {
  flex: 1 1 40%;
  margin-left: 2rem;
  margin-right: 3rem;
}

.subtitle {
  color: #bfc3d7;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: "Poppins", sans-serif;
}

.main-title {
  margin-top: 4rem;

  font-size: 2.5rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 1rem;
}

.description {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.quick-facts {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}
.btn {
  background-color: #007bff;
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

.abtright-content {
  flex: 1 1 50%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 8rem;
  font-family: "Poppins", sans-serif;
}

.abtfeature-box {
  position: relative;
  background: #fff;
  padding: 1.5rem;
  border: 1px solid #eee;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.abtfeature-box::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  border-top: 5px solid #02073d;
  border-left: 5px solid #02073d;

  top: -10px;
  left: -10px;
  border-radius: 2px;
}

.abtfeature-box .number {
  color: #007bff;
  font-weight: 700;
  font-size: 1.2rem;
}

.feature-box h3 {
  font-size: 1.1rem;
  color: #111;
  margin: 0.5rem 0;
}

.feature-box p {
  font-size: 0.95rem;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .why-choose-us .container {
    flex-direction: column;
  }

  .right-content {
    grid-template-columns: 1fr;
  }
}

.abtinfo-cards {
  opacity: 1;
  transform: translatey(40px);
  transition:
    opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.abtinfo-cards.fade-in-right {
  opacity: 1;
  transform: translateY(0);
}

.abtinfo-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 3rem 2rem;
  font-family: "Poppins", sans-serif;
}

.abtcard {
  background-color: #ffffff;
  color: #181818;
  padding: 2rem;
  border-radius: 6px;
  transition: transform 1.3s ease;
}

.abtcard:hover {
  transform: translateY(-5px);
}

.abtcard.orange-bg {
  background-color: #007bff;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

.abtcard.grey {
  background: #f7f9fc;
  color: #181818;
  font-family: "Poppins", sans-serif;
}

.hero2 {
  text-align: center;
  padding: 80px 20px;
  max-width: 900px;
  margin: auto;
}

.hero2 h1 {
  color: #007bff;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

/* Fade-up animation for hero2 section */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero2 {
  opacity: 0;
  transform: translateY(32px);
  animation: none;
}

.hero2 p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 40px;
}

/* Add this CSS to your style.css */
.video-section {
  padding: 40px 0;
  background: #f8f9fc;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 20px;
}

.video-overlay h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.video-overlay p {
  font-size: 1.2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.video-wrapper {
  background: url("img/2534.jpg") center/cover no-repeat;
  border-radius: 40px;
  width: 100%;
  max-width: 600px;
  margin: auto;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Trusted Clients */

/* Fade-up animation for trusted section */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.trusted {
  opacity: 0;
  transform: translateY(32px);
  animation: none;
}

.trusted {
  text-align: center;
  margin: 60px auto;
}

.trusted p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
}

.trusted .logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.trusted .logos img {
  height: 40px;

  transition: 0.3s;
}

.trusted {
  padding: 50px 20px;
  text-align: center;
  background: #f9fafb;
  overflow: hidden;
}

.trusted-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #1c1c1c;
}

.logos-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.logos-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: scrollLogos 25s linear infinite;
}

.logos-track img {
  max-height: 70px;
  object-fit: contain;

  transition: all 0.3s ease;
}

.logos-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* Animation */
@keyframes scrollLogos {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .trusted-title {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .logos-track {
    gap: 30px;
    animation-duration: 15s; /* Faster scroll on mobile */
  }
  .logos-track img {
    max-height: 50px;
  }
}

/* Services Section */
.services {
  text-align: center;
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.services h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.services p {
  color: #555;
  margin-bottom: 50px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.card {
  background: #f7f9fc;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 20px;
  text-align: left;
  transition: transform 0.3s ease;
}

.card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
}

.card h3 {
  color: #007bff;
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.card p {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.card a {
  text-decoration: none;
  color: #0077ff;
  font-weight: 500;
  transition: 0.3s;
}

.card a:hover {
  color: #0055cc;
}

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

/* prosess */

.process-section {
  background-image: url(/img/hero/img\ bg.png);
  padding: 1rem;
  padding-top: 1rem;
  font-family: "Poppins", Arial, sans-serif;
  margin: 1rem;
  justify-content: center;
  align-items: center;
  justify-items: center;
}

.process-container {
  max-width: 1200px;
  justify-content: center;
}

.sub-heading {
  color: #2d9cdb;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-size: 3rem;
}

.main-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.process-intro {
  color: #555;
  max-width: 700px;
  margin-bottom: 3rem;
  line-height: 2.6;
}

.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.timeline-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: auto;
}

.timeline-block-left {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: auto;
  max-width: 1100px;
}

.timeline-block:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-img,
.timeline-content {
  width: 50%;
  object-fit: contain;
}

.timeline-img {
  display: flex;
  align-items: stretch;
}

.timeline-img img {
  max-width: 90%;
  width: 100%;
  height: 280px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-left: 40px;
  object-fit: cover;
  object-position: center;
}
img .timeline-content {
  background: #ffffff;
  padding: 1.5rem;
  border-left: 4px solid #007bff;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  object-fit: contain;
}

.step-number {
  color: #007bff;
  font-size: 2.2rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 0.3rem;
}

.timeline-content h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  font-size: 1.5rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 700px) {
  .timeline {
    gap: 2rem;
  }
  .timeline-block,
  .timeline-block-left {
    flex-direction: column !important;
    flex-grow: 1;
    align-items: stretch;
    max-width: 100%;
    width: 100%;
    margin-bottom: 2rem;
    box-shadow: 0 2px 12px rgba(45, 156, 219, 0.06);
    border-radius: 10px;
    background: #fff;
    padding-left: 0rem 0.5rem;
  }
  .timeline-img,
  .timeline-content {
    width: 100% !important;
    margin: 0;
    padding: 0;
  }
  .timeline-img img {
    width: 100%;
    max-width: 100%;
    height: 220px;
    margin: 0 0 1rem 0;
    border-radius: 8px;
    object-fit: cover;
    object-position: center;
  }
  .timeline-content {
    border-left: none;
    border-top: 4px solid #007bff;
    border-radius: 0 0 8px 8px;
    box-shadow: none;
    padding: 1rem 0.5rem;
    background: #f9f9f9;
  }
  .step-number {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  .timeline-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  .timeline-content p {
    font-size: 1rem;
    line-height: 1.6;
  }
}

/* expertice */
/* Fade-up animation for hero2 section */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.expertice {
  opacity: 0;
  transform: translateY(32px);
  animation: none;
}

.expertise {
  padding: 30px 0;
  text-align: center;
  background: #fff;
  font-family: "Poppins", sans-serif;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.expertise-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.expert-box {
  flex: 1 1 280px;
}

.expert-box img {
  width: 100%;
  border-radius: 10px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 15px;
}

.expert-box h4 {
  font-size: 1rem;
  font-weight: 600;
  margin: 10px 0;
  color: #007bff;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-left h1 {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .section-title {
    font-size: 24px;
  }

  .service-hero-content h1 {
    letter-spacing: -0.06em;
  }

  .service-box,
  .expert-box {
    flex: 1 1 100%;
  }
}

.popular-details {
  background: #ffffff;
  padding: 60px 10%;
  font-family: "poppins", sans-serif;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header .tag {
  background: #007bff;
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 14px;
}

.section-header h2 {
  font-size: 32px;
  margin-top: 15px;
  font-weight: 600;
  color: #111;
}

.section-header h2 span {
  font-style: italic;
  color: #007bff;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

.detail-card,
.upload-card {
  background: #f7f9fc;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease;
}

.detail-card:hover {
  transform: translateY(-5px);
}

.detail-card img {
  max-width: 100%;
  height: 160px;
  object-fit: contain;
  margin-bottom: 15px;
}

.detail-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #222;
}

.detail-card ul {
  list-style: none;
  padding: 0;
  font-size: 14px;
  color: #555;
}

.detail-card li {
  margin-bottom: 6px;
}

.upload-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #007bff;
  color: #fff;
  text-align: center;
}

.upload-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.upload-box p {
  font-size: 14px;
  line-height: 1.4;
  opacity: 0.9;
}

.features-section {
  max-width: 1200px;
  margin: auto;
  text-align: center;
  padding: 60px 20px;
}

.section-label {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 10px;
}

.section-title {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 40px;
  line-height: 1.4;
}

.section-title span {
  color: #2974ff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.feature-box {
  background-color: #1a1a1a;
  padding: 25px;
  border-radius: 12px;
  transition: 0.3s;
}

.feature-box:hover {
  transform: translateY(-5px);
  background-color: #222;
}

.feature-icon {
  margin-bottom: 15px;
  height: 40px;
}
.feature-box svg {
  width: 40px;
  height: 40px;
  display: inline-block;
}

.feature-box h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

.feature-box p {
  font-size: 14px;
  color: #ccc;
}

.features-section {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.section-label {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 10px;
}

.section-title {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 40px;
  line-height: 1.4;
}

.section-title span {
  color: #2974ff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.feature-box {
  background-color: #1a1a1a;
  padding: 25px;
  border-radius: 12px;
  transition: 0.3s;
}

.feature-box:hover {
  transform: translateY(-5px);
  background-color: #222;
}

.feature-icon {
  font-size: 32px;
  color: #2974ff;
  margin-bottom: 15px;
}

.feature-box h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-box p {
  font-size: 14px;
  color: #ccc;
}

/* General Resets */
section {
  padding: 60px 20px;
  font-family: "Poppins", sans-serif;
  color: #111;
}

a {
  text-decoration: none;
}

/* Fade-up animation for cnc-awareness-section */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cnc-awareness-section {
  opacity: 0;
  transform: translateY(32px);
  animation: none;
}
/* CNC Awareness Section */
.cnc-awareness-section {
  background: #f7f9fc;
}

.awareness-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.awareness-text {
  flex: 1 1 400px;
}

.awareness-text h2 {
  font-size: 24px;
  font-weight: 600;
}

.awareness-text .highlight {
  color: #007bff;
}

.awareness-text p {
  margin: 15px 0;
  color: #555;
}

.btn-primary {
  display: inline-block;
  padding: 12px 24px;
  background: #007bff;
  color: #fff;
  border-radius: 6px;
  font-weight: 500;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #0056d2;
}

.awareness-image {
  position: relative;
  flex: 1 1 400px;
}

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

.counter-box {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: bold;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.counter-box i {
  color: #007bff;
}

/* CNC Services Section */

/* Fade-up animation for cnc-services-section */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cnc-services-section {
  opacity: 0;
  transform: translateY(32px);
  animation: none;
}
.cnc-services-section {
  background: #fff;
}

.services-header {
  max-width: 800px;
  margin: auto;
  text-align: center;
  margin-bottom: 40px;
}

.services-header h3 {
  font-size: 22px;
  font-weight: 600;
}

.services-header p {
  color: #666;
  margin: 12px 0;
}

.learn-more {
  color: #007bff;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.services-grid {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-card {
  background: #f8faff;
  border-radius: 12px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
}

.icon-box {
  background: #007bff;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 18px;
}

.section-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
  font-weight: 600;
  color: #a3a3a3;
}

.faq-section {
  display: flex;
  flex-wrap: wrap;
  padding: 60px 20px;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.faq-left {
  flex: 1;
  min-width: 250px;
}

.tag {
  background: #e0e7ff;
  color: #3b82f6;
  font-size: 13px;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 10px;
}

.faq-left h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.faq-left p {
  color: #555;
  font-size: 15px;
}

.faq-right {
  flex: 2;
  min-width: 300px;
}

.faq-item {
  border-top: 1px solid #ddd;
  padding: 18px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item h4 {
  font-size: 17px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item p {
  margin-top: 10px;
  font-size: 15px;
  color: #555;
  display: none;
}

.faq-item.active p {
  display: block;
}

.features-section {
  padding: 60px 40px;
  text-align: center;
}

.features-header h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}

.features-header p {
  font-size: 15px;
  color: #7b7b7b;
  margin-bottom: 40px;
}

.features-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.feature-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
  padding: 30px 25px;
  width: 280px;
  text-align: left;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.icon {
  font-size: 22px;
  background: #e6f3ff;
  padding: 12px;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  color: #006eff;
}

.feature-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
  font-weight: 600;
}

.feature-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.feature-card a {
  font-weight: 600;
  color: #006eff;
  text-decoration: none;
  font-size: 14px;
}

.testimonial-section {
  padding: 60px 30px;
  background: linear-gradient(to left, #f8f9fc, #a5d1f1);
  text-align: center;
  margin-bottom: 3rem;
}
.testimonial-section .container {
  max-width: 1200px;
  margin: auto;
}
.section-label {
  color: #999;
  font-size: 14px;
  margin-bottom: 10px;
}

.section-title {
  font-size: 32px;
  font-weight: bold;
}

.highlight-blue {
  color: #0066ff;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.testimonial-card {
  background: #f9f9f9;
  border-radius: 16px;
  padding: 20px;
  text-align: left;
}

.testimonial-card img {
  width: 100%;
  max-width: 80px;
  border-radius: 12px;
  margin-bottom: 10px;
}

.testimonial-card h4 {
  margin: 10px 0 5px;
  font-size: 18px;
}

.testimonial-card p {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}

.stars {
  color: #ffc107;
  margin-top: 10px;
}

:root {
  --accent-blue: #005b96;
  --muted: #6b7280;
  --brand: #1c1c1c;
}

.testimonial-section {
  padding: 60px 20px;
  text-align: center;
  overflow: hidden;
}

.section-label {
  color: var(--muted);
  font-weight: 600;
}
.section-title {
  font-size: 28px;
  margin: 10px 0 40px;
}
.highlight-blue {
  color: var(--accent-blue);
}

/* Slider wrapper */
.testimonial-slider {
  overflow: hidden;
  position: relative;
}

/* Track with infinite scroll */
.testimonial-track {
  display: flex;
  gap: 20px;
  animation: scroll 35s linear infinite;
  width: max-content;
}

/* Single Card */
.testimonial-card {
  flex: 0 0 280px;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  margin: 0 auto 12px;
}

.testimonial-card h4 {
  margin: 8px 0;
  color: var(--brand);
}
.testimonial-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.4;
}
.stars {
  margin-top: 10px;
  color: #f59e0b;
}

/* Infinite Scroll Animation */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .testimonial-card {
    flex: 0 0 240px;
    padding: 16px;
  }
  .testimonial-track {
    gap: 12px;
  }
}

/* Footer Styling */
.footer {
  position: relative;
  background: #ffffff;
  padding: 60px 40px 30px;
  color: #1a1a1d;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--accent-red) 0%,
    #ffffff 50%,
    var(--accent-red) 100%
  );
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  font-family: "Poppins", sans-serif;
}

.footer-brand {
  flex: 1 1 250px;
}

.footer-brand .logo {
  max-width: 150px;
  margin-bottom: 15px;
  height: 150px;
}
@media (max-width: 420px) {
  .footer-brand .logo {
    max-width: 90px;
    margin-bottom: 15px;
    height: 150px;
  }
}

@media (max-width: 446px) {
  .service-hero-content h2 {
    font-size: 28px;
  }
  .bg-text {
    font-size: 60px;
  }
}
.footer-brand p {
  color: #333333;
  font-size: 14px;
  line-height: 1.6;
}
.footer-brand img {
  height: 100px;
  width: 400px;
}

.footer-contact p a {
  text-decoration: none;
  color: #333333;
  font-size: 14px;
  margin: 10px 0;
}

.footer-contact i {
  margin-right: 8px;
  color: var(--accent-red);
}

.footer-links {
  flex: 1 1 150px;
}

.footer-links h4 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #1a1a1d;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin: 8px 0;
}

.footer-links ul li a {
  text-decoration: none;
  color: #555555;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #ed1c24;
}

.footer-social {
  flex: 1 1 150px;
}

.footer-social h4 {
  margin-bottom: 15px;
  color: #1a1a1d;
}

.social-icons a {
  font-size: 18px;
  margin-right: 15px;
  color: #555555;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: var(--accent-red);
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: #666666;
  margin-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 20px;
  font-family: "Poppins", sans-serif;
}
