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

:root {
  --primary: #1c1c1c; /* Brand Black */
  --secondary: #3e4c59; /* Steel Gray */
  --accent-blue: #005b96; /* CNC Blue */
  --accent-orange: #f5a623; /* Industrial Orange */
  --light-bg: #f4f7fa; /* Light Background */
  --mid-bg: #e1e5eb; /* Card Background */
  --text-dark: #1c1c1c; /* Headings */
  --text-body: #3e4c59; /* Paragraphs */
}

body {
  font-family: "Poppins", sans-serif;
  background-image: url(img/cnc_icon_background.png);
  margin: 0;
  padding: 0;
  background: #fff;
  color: #333;
}
html {
  scroll-behavior: smooth;
}

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

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: min(1160px, 92%);
  z-index: 1000;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 8px 34px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 rgba(12, 36, 41, 0.08);
  font-family: "Poppins", sans-serif;
  border-radius: 100px;
  margin: 7px auto 0;
  
}

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

.navbar .logo img {
  height: 46px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
}

.navbar .logo .logo-text {
  color: #17363b;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: 0;
}

.nav-links {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  position: relative;
  padding-right: 172px;
}

.nav-links a:not(.btn-yellow) {
  text-decoration: none;
  color: var(--accent-blue);
  font-size: 0.98rem;
  font-weight: 400;
  padding: 8px 0;
  transition:
    color 0.25s ease,
    opacity 0.25s ease;
}

.nav-links a:not(.btn-yellow):hover,
.nav-links a:not(.btn-yellow).active {
  color: #000000;
}

.nav-links .btn-yellow {
  position: absolute;
  top: 50%;
  right: 0;
  margin-left: 0;
  transform: translateY(-50%);
}

.btn-yellow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  padding: 9px ;
  border-radius: 999px;
  background: var(--accent-blue);
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  letter-spacing: 0;
  transition:
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.btn-yellow:hover {
  background: #000000;
  color: #ffffff;
  transform: translateY(calc(-50% - 1px));
  
}

@media (max-width: 768px) {
  .navbar {
    display: flex;
    padding: 14px 18px;
    gap: 14px;
  }

  .navbar .logo img {
    height: 34px;
    max-width: 120px;
  }

  .navbar .logo .logo-text {
    font-size: 0.82rem;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 30px;
    margin-left: auto;
    border: 1px solid rgba(18, 63, 70, 0.14);
    border-radius: 14px;
    background: #ffffff;
    color: #123f46;
    font-size: 1.1rem;
    cursor: pointer;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 18px;
    right: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(15, 34, 39, 0.12);
    padding-right: 14px;
  }

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

  .nav-links a:not(.btn-yellow) {
    width: 100%;
    padding: 12px 10px;
    border-bottom: 1px solid rgba(23, 54, 59, 0.08);
    text-align: left;
  }

  .nav-links a:not(.btn-yellow):last-of-type {
    border-bottom: none;
  }

  .nav-links .btn-yellow {
    position: static;
    width: 100%;
    margin: 8px 0 0;
    text-align: center;
    transform: none;
  }

  .btn-yellow:hover {
    transform: translateY(-1px);
  }
}

@media (min-width: 769px) {
  .menu-toggle {
    display: none !important;
  }
}
/* ...existing code... */

/* FADE-IN NAV PANEL */

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

/* Initial state */
.navbar {
  opacity: 0;
  transform: translateY(-30px);
  animation: fadeDown 0.8s ease-out forwards;
}

/* Keyframes */
@keyframes fadeDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Section - New Modern Design */
.hero-new {
  padding: 100px 40px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e8f0f8 100%);
  position: relative;
  overflow: hidden;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}

.hero-content-center {
  text-align: center;
  margin-bottom: 40px;
  animation: fadeInDown 0.8s ease-out forwards;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 300;
  font-family: "Poppins", sans-serif;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.2;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  animation: dropDown 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  opacity: 0;
  animation-delay: 0.1s;
}

.hero-title .highlight {
  color: var(--accent-blue);
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-body);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 50px;
}

.btn-primary,
.btn-secondary {
  padding: 13px 28px;
  font-size: 0.98rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 500;
  transition:
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background:var(--accent-blue);
  color: #ffffff;
}

.btn-primary:hover {
  background: #010101;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(18, 63, 70, 0.18);
}

.btn-secondary {
  background: white;
  color:var(--accent-blue);
  border: 2px solid var(--accent-blue);
}

.btn-secondary:hover {
  background: var(--accent-blue);
  color: white;
  transform: translateY(-2px);
}

.hero-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.stars-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.star {
  color: #ffc107;
  font-size: 1.5rem;
}

.rating-score {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-left: 10px;
}

.rating-text {
  font-size: 0.95rem;
  color: var(--text-body);
  white-space: nowrap;
}

.rating-text span {
  font-weight: 600;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 10px;
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(rgba(8, 28, 44, 0.78), rgba(8, 28, 44, 0.78)),
    url("img/27613.jpg") center/cover no-repeat;
  box-shadow: 0 20px 50px rgba(8, 28, 44, 0.16);
}

.stat-card {
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  animation: dropDown 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  opacity: 0;
  overflow: hidden;
}

.stat-card:nth-child(1) {
  animation-delay: 0.1s;
}

.stat-card:nth-child(2) {
  animation-delay: 0.2s;
}

.stat-card:nth-child(3) {
  animation-delay: 0.3s;
}

.stat-card:nth-child(4) {
  animation-delay: 0.4s;
}

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

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

.stat-primary {
  background: var(--accent-blue);
  color: white;
}

.stat-secondary {
  background: rgba(0, 91, 150, 0.15);
  color: white;
  border: 1px solid rgba(0, 91, 150, 0.2);
}

.stat-highlight {
  background: #d4f1d4;
  color: var(--text-dark);
}

.stat-dark {
  background: var(--primary);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stat-dark i {
  font-size: 2.5rem;
  margin-bottom: 15px;
  opacity: 0.8;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 8px;
  font-family: "Poppins", sans-serif;
  animation: countDown 2s ease-out forwards;
  letter-spacing: -0.03em;
}

@keyframes countDown {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.stat-label {
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}

.stat-label small {
  display: block;
  font-size: 0.8rem;
  opacity: 0.8;
  margin-top: 4px;
}

.hero-decorations {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  overflow: hidden;
}

.deco-icon {
  position: absolute;
  font-size: 3rem;
  opacity: 0.08;
  color: var(--accent-blue);
  animation: float 6s ease-in-out infinite;
}

.deco-1 {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.deco-2 {
  top: 60%;
  right: 8%;
  animation-delay: 1s;
}

.deco-3 {
  bottom: 15%;
  left: 10%;
  animation-delay: 2s;
}

.deco-4 {
  top: 40%;
  right: 15%;
  animation-delay: 3s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-new {
    padding: 60px 20px;
    min-height: auto;
    margin-top: 10px;
  }

  .hero-title {
    font-size: 2.2rem;
    animation: dropDown 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    opacity: 0;
    animation-delay: 0.1s;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .stat-card {
    padding: 20px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .hero-rating {
    flex-direction: column;
    gap: 10px;
  }
}

/* abt */
@media (max-width: 700px) {
}
.hero-image {
  width: 100%;
  max-width: 320px;
  margin: 0 auto 18px auto;
  display: flex;
  justify-content: center;
  position: relative;
  object-fit: contain;
}
.hero-image img {
  width: 100%;
  max-width: 320px;
  border-radius: 10px;
  object-fit: contain;
}
.badge.nx {
  position: absolute;
  top: 12px;
  left: 12px;
  max-width: 140px;
  font-size: 0.8rem;
  padding: 8px 10px;
}
.badge.sun {
  position: absolute;
  top: auto;
  bottom: 12px;
  right: 12px;
  font-size: 0.8rem;
  padding: 8px 10px;
}
.herofeatures {
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}
.herofeature-card {
  min-width: unset;
  max-width: 100%;
  padding: 14px 10px;
  font-size: 0.98rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.herofeature-card:hover {
  transform: scale(1.02);
}

.herofeature-card img {
  width: 50px;
  max-height: 50px;
  margin-top: 8px;
  border-radius: 8px;
}

/* ...existing code... */
@media (max-width: 700px) {
  /* make hero feature cards larger and more prominent on mobile */
  .herofeatures {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 12px;
    margin-top: 20px;
  }

  .herofeature-card {
    width: 100%;
    padding: 18px 16px;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(10, 20, 40, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 96px;
    font-size: 1.05rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .herofeature-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 91, 150, 0.15);
  }

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

  .herofeature-card small {
    display: block;
    font-size: 0.92rem;
    color: #6b7280;
    margin-top: 4px;
    font-weight: 500;
  }

  .herofeature-card img {
    width: 68px;
    height: 68px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
  }

  .herofeature-card .stars,
  .herofeature-card a {
    font-size: 1rem;
  }
}
/* ...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;
}

.menu {
  cursor: pointer;
}

.about-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
  padding: 84px 40px;
  max-width: 1240px;
  margin: 40px auto;
  font-family: "Poppins", sans-serif;
  border-radius: 32px;
  border: 1px solid rgba(20, 52, 74, 0.08);
  box-shadow: 0 24px 60px rgba(16, 34, 52, 0.08);
}

.about-header {
  max-width: 760px;
  margin-bottom: 2.5rem;
}

.about-eyebrow {
  color: #2b6cb0;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.about-heading {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1.15;
  color: #14212b;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 32px;
  align-items: stretch;
}

.intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 32px;
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(20, 52, 74, 0.08);
}

.intro p {
  max-width: 100%;
  font-size: 1.08rem;
  color: #425466;
  line-height: 1.9;
  font-family: "Poppins", sans-serif;
}

.about-actions {
  display: flex;
  align-items: center;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #14344a;
  color: #fff;
  border: none;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 500;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.cta-button:hover {
  background: #0f2837;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(20, 52, 74, 0.16);
}

.about-images {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
}

.about-images img {
  border-radius: 24px;
  object-fit: cover;
  min-height: 100%;
  width: 100%;
  box-shadow: 0 18px 44px rgba(17, 33, 47, 0.12);
}

.about-images img:first-child {
  height: 100%;
  min-height: 360px;
}

.about-images img:last-child {
  margin-top: 42px;
  min-height: 320px;
}

.philosophy {
  font-size: 1.08rem;
  font-weight: 400;
  color: #334155;
  margin-top: 32px;
  font-family: "Poppins", sans-serif;
  padding: 26px 30px;
  border-left: 4px solid #2b6cb0;
  background: rgba(255, 255, 255, 0.82);
  border-radius: 20px;
}

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

@media (max-width: 700px) {
  .about-section {
    padding: 40px 18px;
    border-radius: 24px;
    margin: 20px 14px;
  }

  .about-header {
    margin-bottom: 1.5rem;
  }

  .about-heading {
    font-size: 2rem;
  }

  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .intro {
    padding: 22px 18px;
  }

  .intro p {
    font-size: 1.05rem;
    max-width: 100%;
  }

  .cta-button {
    width: 100%;
  }

  .about-images {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about-images img {
    min-height: 220px;
    width: 100%;
    border-radius: 18px;
  }

  .about-images img:last-child {
    margin-top: 0;
    min-height: 220px;
  }

  .philosophy {
    font-size: 1rem;
    margin-top: 18px;
    text-align: left;
    padding: 20px 18px;
  }
}

.abtwhy-container {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  justify-content: space-between;
  max-width: 1200px;
  margin-top: 40px;
  font-family: "poppins", sans-serif;
}

.abtleft-content {
  margin: 0;
  padding-right: 12px;
}

.subtitle {
  color: #2b6cb0;
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.main-title {
  margin-top: 0;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.18;
  color: #111;
  margin-bottom: 1rem;
}

.description {
  color: #556270;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #2b6cb0;
  color: #fff;
  padding: 0.9rem 1.5rem;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 500;
}

.abtright-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 0;
  font-family: "Poppins", sans-serif;
}

.abtfeature-box {
  position: relative;
  background: rgba(255, 255, 255, 0.94);
  padding: 1.5rem;
  border: 1px solid rgba(20, 52, 74, 0.08);
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(16, 34, 52, 0.06);
}

.abtfeature-box::before {
  content: "";
  position: absolute;
  width: 44px;
  height: 44px;
  top: 0;
  right: 0;
  border-radius: 0 20px 0 20px;
  background: rgba(43, 108, 176, 0.08);
}

.abtfeature-box .number {
  color: #2b6cb0;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
}

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

.abtfeature-box p {
  font-size: 0.95rem;
  color: #556270;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
  .abtwhy-container {
    grid-template-columns: 1fr;
  }

  .abtright-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: 400;
  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: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 123, 255, 0.15);
}

.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;
  width: 100%;
}

.sub-heading {
  color: #5f84a2;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-align: center;
}

.main-heading {
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  font-weight: 400;
  margin-bottom: 1rem;
  text-align: center;
  color: #171717;
}

.process-intro {
  color: #555;
  max-width: 720px;
  margin: 0 auto 3.5rem;
  line-height: 1.8;
  text-align: center;
  font-size: 1rem;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.capability-card {
  min-height: 370px;
  padding: 1.6rem 1.3rem 1.5rem;
  text-align: center;
  border: 1px solid #e5ecf2;
  border-radius: 18px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.8rem;
  opacity: 0;
  transform: translateY(42px);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease;
}

.capability-card:hover {
  box-shadow: 0 10px 30px rgba(16, 34, 52, 0.08);
}

.capability-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.capability-card:nth-child(2) {
  transition-delay: 0.08s;
}

.capability-card:nth-child(3) {
  transition-delay: 0.16s;
}

.capability-card:nth-child(4) {
  transition-delay: 0.24s;
}

.capability-card h3 {
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 600;
  color: #1f2b38;
  margin: 0;
  max-width: 220px;
  min-height: 2.7em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.capability-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #5a6875;
  max-width: 240px;
  min-height: 5.2em;
  margin: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.capability-image {
  width: 100%;
  max-width: 178px;
  height: 150px;
  margin-top: 0;
  margin-bottom: 0.35rem;
  overflow: hidden;
  border-radius: 12px;
  background: #f3f7fb;
}

.capability-card:nth-child(even) .capability-image {
  order: 0;
  margin-top: 0;
  margin-bottom: 0.35rem;
}

.capability-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 700px) {
  .process-section {
    padding: 3rem 1rem;
  }

  .main-heading {
    font-size: 2rem;
  }

  .process-intro {
    margin-bottom: 2rem;
  }

  .capabilities-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .capability-card {
    min-height: auto;
    border: 1px solid #e5ecf2;
    padding: 1.6rem 1rem 2rem;
  }

  .capability-card:last-child {
    border-bottom: 1px solid #e5ecf2;
  }

  .capability-image {
    margin-top: 0;
  }
}

/* expertice */
/* Fade-up animation for hero2 section */
.expertise {
  padding: 84px 28px;
  text-align: left;
  background: linear-gradient(180deg, #ffffff 0%, #f2f7fb 100%);
  font-family: "Poppins", sans-serif;
  margin-top: 2.6rem;
  margin-bottom: 2.8rem;
}

.expert-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 34px;
  border-radius: 30px;
  border: 1px solid rgba(20, 52, 74, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 60px rgba(16, 34, 52, 0.08);
}

.expertise-header {
  max-width: 760px;
  margin-bottom: 2.1rem;
}

.expertise-eyebrow {
  color: #2b6cb0;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.expertise-heading {
  margin: 0;
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 400;
  line-height: 1.18;
  color: #14212b;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.expert-box {
  padding: 18px 18px 22px;
  border-radius: 22px;
  border: 1px solid rgba(20, 52, 74, 0.08);
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(16, 34, 52, 0.06);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.expert-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(16, 34, 52, 0.12);
}

.expert-box img {
  width: 100%;
  border-radius: 16px;
  height: 220px;
  object-fit: cover;
  margin-bottom: 14px;
}

.expert-kicker {
  margin-bottom: 0.6rem;
  color: #2b6cb0;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.expert-box h4 {
  font-size: 1.18rem;
  font-weight: 600;
  margin: 0 0 0.55rem;
  color: #10202d;
}

.expert-box p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #556270;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .expertise {
    padding: 56px 16px;
  }

  .expert-container {
    padding: 20px;
    border-radius: 22px;
  }

  .expertise-heading {
    font-size: 1.85rem;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 48px;
  }

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

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

  /* Mobile responsive features grid */
  .features-section {
    padding: 40px 15px !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .feature-box {
    padding: 20px;
  }

  .feature-box h3 {
    font-size: 16px;
  }

  .feature-box p {
    font-size: 13px;
  }
}

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

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

.section-header .tag {
  background:  var(--accent-blue);
  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: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.detail-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 91, 150, 0.15);
}

.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: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-box:hover {
  transform: translateY(-10px) scale(1.02);
  background-color: #222;
  box-shadow: 0 15px 40px rgba(41, 116, 255, 0.2);
}

.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 */


/* CNC Awareness Section */
.cnc-awareness-section {
  background: linear-gradient(180deg, #f4f8fb 0%, #ffffff 100%);
  padding: 84px 28px;
}

.awareness-container {
  max-width: 1240px;
  margin: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 42px;
  align-items: center;
  padding: 36px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(20, 52, 74, 0.08);
  border-radius: 32px;
  box-shadow: 0 24px 60px rgba(16, 34, 52, 0.08);
}

.awareness-text {
  max-width: 640px;
}

.awareness-eyebrow {
  color: #2b6cb0;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.awareness-text h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: #14212b;
  margin-bottom: 1.1rem;
}

.awareness-text .highlight {
  color: #1e5f91;
  font-weight: 400;
}

.awareness-text p {
  margin: 0 0 1.5rem;
  color: #556270;
  font-size: 1.02rem;
  line-height: 1.85;
}

.awareness-points {
  display: grid;
  gap: 14px;
  margin-bottom: 1.8rem;
}

.awareness-point {
  padding: 14px 16px;
  background: #f7fafc;
  border: 1px solid rgba(20, 52, 74, 0.08);
  border-radius: 18px;
}

.awareness-point strong {
  display: block;
  color: #162534;
  font-size: 0.98rem;
  margin-bottom: 0.3rem;
}

.awareness-point span {
  color: #5a6775;
  font-size: 0.94rem;
  line-height: 1.7;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  padding: 13px 28px;
  background:  var(--accent-blue);
  color: #ffffff;
  border-radius: 999px;
  font-weight: 500;
  transition:
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.btn-primary:hover {
  background: #010101;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(18, 63, 70, 0.18);
}

.awareness-image {
  position: relative;
  min-height: 100%;
}

.awareness-image img {
  width: 100%;
  min-height: 560px;
  object-fit: contain;
  border-radius: 28px;
  box-shadow: 0 24px 50px rgba(15, 31, 45, 0.16);
}

.counter-box {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.95);
  padding: 16px 18px;
  border-radius: 18px;
  font-weight: 600;
  color: #203040;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 16px 30px rgba(15, 31, 45, 0.12);
  max-width: 260px;
  line-height: 1.5;
}

.counter-box i {
  color: #2b6cb0;
  font-size: 1.1rem;
}

@media (max-width: 900px) {
  .cnc-awareness-section {
    padding: 56px 18px;
  }

  .awareness-container {
    grid-template-columns: 1fr;
    padding: 22px;
    gap: 24px;
  }

  .awareness-image img {
    min-height: 360px;
  }
}

@media (max-width: 600px) {
  .awareness-container {
    border-radius: 24px;
  }

  .awareness-image img {
    min-height: 280px;
    border-radius: 20px;
  }

  .counter-box {
    position: static;
    margin-top: 14px;
    max-width: none;
  }
}

/* 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: #14344a;
  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: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 123, 255, 0.15);
}

.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: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 110, 255, 0.2);
}

.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: 84px 24px;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg, #f6fafe 0%, #ffffff 100%);
}

.testimonial-eyebrow {
  color: #2b6cb0;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.84rem;
  margin-bottom: 0.85rem;
}

.testimonial-title {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 400;
  margin: 0 auto 0.8rem;
  max-width: 720px;
  color: #1f3545;
  line-height: 1.18;
}

.highlight-blue {
  color: #1f6fae;
}

.testimonial-intro {
  color: #5b6a79;
  max-width: 760px;
  margin: 0 auto 2.4rem;
  line-height: 1.8;
  font-size: 0.98rem;
}

.testimonial-slider {
  max-width: 1240px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  border-radius: 22px;
}

.testimonial-slider::before,
.testimonial-slider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 72px;
  z-index: 2;
  pointer-events: none;
}

.testimonial-slider::before {
  left: 0;
  background: linear-gradient(to right, #f7fbff, transparent);
}

.testimonial-slider::after {
  right: 0;
  background: linear-gradient(to left, #f7fbff, transparent);
}

.testimonial-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: testimonialScroll 36s linear infinite;
}

.testimonial-track:hover {
  animation-play-state: paused;
}

.testimonial-card {
  flex: 0 0 320px;
  background: #ffffff;
  border: 1px solid rgba(20, 52, 74, 0.1);
  border-radius: 18px;
  padding: 24px 20px 22px;
  box-shadow: 0 14px 34px rgba(16, 34, 52, 0.08);
  text-align: left;
}

.avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2b6cb0, #4aa0f0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  margin: 0 0 12px;
}

.testimonial-card h4 {
  margin: 0 0 8px;
  color: #14212b;
  font-size: 1.04rem;
}

.testimonial-card p {
  font-size: 0.93rem;
  color: #5b6a79;
  line-height: 1.7;
  margin-bottom: 0.9rem;
}

.stars {
  margin-top: 0;
  color: #f59e0b;
  letter-spacing: 0.08em;
  font-size: 0.92rem;
}

@keyframes testimonialScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 700px) {
  .testimonial-section {
    padding: 56px 14px;
  }

  .testimonial-title {
    font-size: 1.8rem;
  }

  .testimonial-intro {
    margin-bottom: 1.6rem;
  }

  .testimonial-slider::before,
  .testimonial-slider::after {
    width: 30px;
  }

  .testimonial-card {
    flex: 0 0 258px;
    padding: 18px 16px;
  }

  .testimonial-track {
    gap: 12px;
  }
}

/* Footer Styling */
.footer {
  background: #ffffff;
  padding: 56px 28px 18px;
  color: #27323c;
  border-top: 1px solid #e6ebf0;
}

.footer-container {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(2, minmax(150px, 0.8fr)) minmax(130px, 0.6fr) minmax(280px, 1.2fr);
  gap: 26px 22px;
  align-items: start;
  font-family: "Poppins", sans-serif;
}

.footer-brand {
  min-width: 0;
  padding-right: 10px;
}

.footer-brand .logo {
  max-width: 190px;
  margin-bottom: 14px;
  height: 62px;
}

.footer-brand p {
  color: #5f6d79;
  font-size: 0.92rem;
  line-height: 1.75;
}
.footer-brand img {
  height: 62px;
  width: auto;
}

.footer-contact p a {
  text-decoration: none;
  color: #4f5e6c;
  font-size: 0.9rem;
  display: block;
  line-height: 1.7;
  transition: color 0.25s ease;
}

.footer-contact p a:hover {
  color: #1e5f91;
}

.footer-contact i {
  width: 16px;
  margin-right: 8px;
  color: #1e5f91;
}

.footer-links {
  min-width: 0;
}

.footer-links h4 {
  font-size: 0.84rem;
  margin-bottom: 0.85rem;
  color: #27323c;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

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

.footer-links ul li {
  margin: 0.5rem 0;
}

.footer-links ul li a {
  text-decoration: none;
  color: #5b6976;
  font-size: 0.9rem;
  transition: color 0.25s ease;
}

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

.footer-social {
  min-width: 0;
}

.footer-social h4 {
  margin-bottom: 0.85rem;
  color: #27323c;
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.social-icons a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 8px;
  border: 1px solid #d9e3eb;
  color: #1e5f91;
  font-size: 0.95rem;
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.social-icons a:hover {
  color: #ffffff;
  background: #1e5f91;
  border-color: #1e5f91;
}

.footer-contact {
  min-width: 0;
}

.footer-contact p {
  margin: 0 0 0.55rem;
}

.footer-contact p:last-child {
  margin-bottom: 0;
}

.footer-bottom {
  text-align: center;
  font-size: 0.82rem;
  color: #7a8894;
  margin-top: 28px;
  border-top: 1px solid #e6ebf0;
  padding-top: 14px;
  font-family: "Poppins", sans-serif;
}

@media (max-width: 1100px) {
  .footer-container {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .footer {
    padding: 42px 16px 14px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-brand {
    padding-right: 0;
  }
}
