:root {
  --primary: #219db1;
  --primary-dark: #197f91;
  --primary-light: #d6f0f5;
  --primary-glow: rgba(33, 157, 177, 0.18);
  --dark: #0d1b2a;
  --mid: #1e3a4a;
  --text: #3a4a55;
  --light-bg: #f4fafb;
  --black: #000000;

  --primary-glow-second: rgba(33, 157, 177, 0.12);
  --primary-border: rgba(33, 157, 177, 0.25);
  --bg-section: #212121;
  --bg-card: rgba(255, 255, 255, 0.03);
  --text-light: rgba(255, 255, 255, 0.65);
  --text-muted: rgba(255, 255, 255, 0.35);
}
body {
   font-family: 'Inter', sans-serif;
}

@media (max-width: 768px) {
  [data-aos="fade-right"],
  [data-aos="fade-left"] {
    transform: translateX(0) !important;
  }
}
.font-title {
    font-family: 'Lato', sans-serif;
}

.font-body {
    font-family: 'Inter', sans-serif;
}
.text-dark {
  color: var(--black) !important;
}
.link {
  color: var(--primary);
  text-decoration: none;
}

.btn-theme {
  background-color: var(--primary-color);
  color: #fff;
  border: none;
}
.btn-theme:hover {
  background-color: #1b7a8c;
  color: #fff;
}
.stats {
  font-size: 1.1rem;
}
.about-title{
  font-weight: 600;
}
.about-title span {
  color: var(--primary-color);
}
.btn-about-primary {
  color: var(--primary-color);
  background-color: transparent;
  background-image: none;
  border-color: var(--primary-color);
}
.btn-about-primary:hover {
  color: #fff;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* homepage */

/* ── Global Tokens ── */

/* ── Utility ── */
.text-primary-custom {
  color: var(--primary) !important;
}

.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 0.5rem;
}

.section-title {
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
}

.divider-line {
  width: 48px;
  height: 3px;
  background: var(--primary);
  margin: 1rem auto 0;
  border: none;
}

.divider-line.left {
  margin-left: 0;
}

/* ── 1. PRODUCTS OVERVIEW ── */


.product-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  position: relative;
  border: 1px solid #e4eef1;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 24px 48px rgba(33, 157, 177, 0.15),
    0 4px 12px rgba(0, 0, 0, 0.06);
}

.product-card .card-img-wrap {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.product-card .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.92);
}

.product-card:hover .card-img-wrap img {
  transform: scale(1.06);
}

.product-card .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(13, 27, 42, 0.7)
  );
}

.product-card .card-body {
  padding: 1.4rem 1.5rem 1.6rem;
}

.product-card h5 {
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.product-card p {
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.65;
  margin: 0;
}

.product-card .card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--primary);
  text-decoration: none;
  transition: gap 0.25s;
}

.product-card .card-arrow:hover {
  gap: 0.7rem;
}

/* ── 3. CLIENTS ── */
#clients {
  background: #fff;
  overflow-x: hidden;
}

.client-track-wrap {
  overflow: hidden;
  position: relative;
}

.client-track-wrap::before,
.client-track-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.client-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.client-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

.client-track {
  display: flex;
  gap: 2rem;
  animation: scrollClients 28s linear infinite;
  width: max-content;
}

.client-track:hover {
  animation-play-state: paused;
}

@keyframes scrollClients {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.client-logo-box {
  flex-shrink: 0;
  width: 180px;
  height: 90px;
  border: 1px solid #e4eef1;
  border-radius: 4px;
  background: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 1.2rem; */
  transition:
    border-color 0.3s,
    box-shadow 0.3s,
    background 0.3s;
  position: relative;
  overflow: hidden;
}

.client-logo-box::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: var(--primary-light); */
  opacity: 0;
  transition: opacity 0.3s;
}

.client-logo-box:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 24px var(--primary-glow);
  background: #fff;
}

.client-logo-box:hover::after {
  opacity: 1;
}

.client-logo-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(1) opacity(0.55);
  transition: filter 0.35s;
  position: relative;
  z-index: 1;
}

.client-logo-box:hover img {
  filter: grayscale(0) opacity(1);
}

/* ── 4. TESTIMONIALS ── */
#testimonials {
  background: var(--light-bg);
}

.testimonial-card {
  background: #fff;
  border-radius: 4px;
  border: 1px solid #e4eef1;
  padding: 2rem 2rem 1.8rem;
  height: 100%;
  position: relative;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(33, 157, 177, 0.12);
}

.testimonial-card .quote-mark {
  font-size: 5rem;
  line-height: 0.6;
  color: var(--primary-light);
  position: absolute;
  top: 1.2rem;
  right: 1.6rem;
  user-select: none;
}

.testimonial-card .stars {
  color: #f4a828;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.testimonial-card p {
  font-size: 0.925rem;
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.4rem;
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.testimonial-card .author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-card .author-info strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
}

.testimonial-card .author-info span {
  font-size: 0.78rem;
  color: #7a90a0;
}

/* Fix Bootstrap carousel arrows */
#testimonialCarousel .carousel-control-prev,
#testimonialCarousel .carousel-control-next {
  width: 50px;
  opacity: 1;
}

#testimonialCarousel .carousel-control-prev-icon,
#testimonialCarousel .carousel-control-next-icon {
  background-image: none;
  /* remove default */
  background-color: var(--primary);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  position: relative;
}

/* Custom arrow icons */
#testimonialCarousel .carousel-control-prev-icon::after {
  content: "←";
  color: #fff;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#testimonialCarousel .carousel-control-next-icon::after {
  content: "→";
  color: #fff;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ── 6. CTA BANNER ── */
#cta-banner {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary) 50%,
    #2cb8ce 100%
  );
  position: relative;
  overflow: hidden;
}

#cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Crect x='0' y='0' width='40' height='40' fill='none' stroke='rgba(255,255,255,0.07)' stroke-width='1'/%3E%3Crect x='40' y='40' width='40' height='40' fill='none' stroke='rgba(255,255,255,0.07)' stroke-width='1'/%3E%3C/svg%3E");
}

#cta-banner .cta-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

#cta-banner .cta-circle-1 {
  width: 320px;
  height: 320px;
  top: -80px;
  right: 8%;
}

#cta-banner .cta-circle-2 {
  width: 180px;
  height: 180px;
  bottom: -50px;
  left: 5%;
}

.btn-cta-white {
  background: #fff;
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 2.4rem;
  border-radius: 0;
  border: 2px solid transparent;
  transition:
    background 0.3s,
    color 0.3s,
    border-color 0.3s,
    transform 0.2s;
  display: inline-block;
  text-decoration: none;
}

.btn-cta-white:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
  transform: translateY(-2px);
  text-decoration: none;
}

/* ── Shared btn-theme (if not already defined) ── */
.btn-theme {
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    background 0.3s,
    color 0.3s,
    transform 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-theme:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  text-decoration: none;
}

/* ── Industries We Serve ── */
.ind-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ind-list-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.1rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition:
    background 0.25s,
    padding-left 0.25s;
  border-radius: 2px;
}

.ind-list-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ind-list-item:hover,
.ind-list-item.active {
  background: rgba(33, 157, 177, 0.1);
  padding-left: 1.6rem;
}

.ind-list-item.active .ind-num,
.ind-list-item:hover .ind-num {
  color: var(--primary);
}

.ind-list-item.active .ind-name,
.ind-list-item:hover .ind-name {
  color: #fff;
}

.ind-list-item.active .ind-arrow,
.ind-list-item:hover .ind-arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--primary);
}

.ind-num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.3);
  min-width: 28px;
  transition: color 0.25s;
}

.ind-name {
  font-size: 1.15rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  flex: 1;
  transition: color 0.25s;
  letter-spacing: 0.02em;
}

.ind-arrow {
  font-size: 1rem;
  opacity: 0;
  transform: translateX(-6px);
  transition:
    opacity 0.25s,
    transform 0.25s,
    color 0.25s;
}

/* Image Panel */
.ind-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.ind-img-inner {
  height: 420px;
  background-size: cover;
  background-position: center;
  transition: background-image 0s;
  position: relative;
}

.ind-img-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 27, 42, 0.75) 0%,
    transparent 60%
  );
}

.ind-img-caption {
  position: absolute;
  bottom: 1.6rem;
  left: 2rem;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 2;
}

/* Fade animation */
.ind-img-wrap.fade-swap .ind-img-inner {
  animation: imgFade 0.35s ease;
}

.ind-carousel {
  height: 450px;
  width: 550px;
}

@keyframes imgFade {
  from {
    opacity: 0;
    transform: scale(1.03);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ── About Page ── */
.py-6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* Overview */
.about-img-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}
.about-main-img {
  border-radius: 2px;
  width: 100%;
  object-fit: cover;
  max-height: 460px;
  filter: brightness(0.95);
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -8px;
  background: var(--primary);
  color: #fff;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 12px 32px rgba(33, 157, 177, 0.35);
}
.about-badge-num {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
}
.about-badge-num sup {
  font-size: 0.9rem;
}
.about-badge-text {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-top: 0.2rem;
  line-height: 1.3;
}
.about-stat-box {
  border-right: 1px solid #e4eef1;
}
.about-stat-box:last-child {
  border-right: none;
}
.about-stat-num {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1;
}
.about-stat-num sup {
  font-size: 1rem;
}
.about-stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin-top: 0.3rem;
}

/* vision mission */

.vm-section {
  /* background: #f7f9fa; */
  padding: 80px 0;
}

/* ── Top label ── */
.vm-top-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

.vm-top-label::before {
  content: "";
  width: 40px;
  height: 1.5px;
  background: var(--primary);
  flex-shrink: 0;
}

.vm-top-label span {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #625f5f;
  font-weight: 500;
}

/* ── Grid ── */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

/* ── Shared panel ── */
.vm-panel {
  padding: 48px 44px 40px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  cursor: default;
}

.vm-panel:hover {
  transform: translateY(-6px);
}

/* ── Bottom accent bar ── */
.vm-panel::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
}

/* ── Ghost number ── */
.vm-num {
  position: absolute;
  top: -10px;
  right: 16px;
  font-size: 130px;
  font-weight: 700;
  line-height: 1;
  user-select: none;
  pointer-events: none;
  transition: color 0.3s ease;
}

/* ── Icon box ── */
.vm-icon {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 24px;
  transition:
    background 0.3s ease,
    color 0.3s ease;
  position: relative;
  z-index: 1;
}

/* ── Tag ── */
.vm-tag {
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

/* ── Body text ── */
.vm-body {
  font-size: 1rem;
  line-height: 1.75;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* ─────────────────────
       VISION — left panel
    ───────────────────── */
.vm-vision {
  background: #ffffff;
  border: 0.5px solid #e8e8e8;
  border-radius: 14px 0 0 14px;
}

.vm-vision::after {
  background: var(--primary);
  border-radius: 0 0 0 14px;
}

.vm-vision .vm-num {
  color: rgba(33, 157, 177, 0.04);
}
.vm-vision .vm-icon {
  background: #ebf7f9;
  color: var(--primary);
}
.vm-vision .vm-tag {
  color: var(--primary);
}
.vm-vision .vm-heading {
  color: #1a1f24;
}
.vm-vision .vm-body {
  color: #666666;
}

.vm-vision:hover {
  box-shadow: 0 20px 40px rgba(33, 157, 177, 0.12);
}
.vm-vision:hover .vm-icon {
  background: var(--primary);
  color: #ffffff;
}
.vm-vision:hover .vm-num {
  color: rgba(33, 157, 177, 0.08);
}

/* ──────────────────────
       MISSION — right panel
    ────────────────────── */
.vm-mission {
  background: var(--primary);
  border-radius: 0 14px 14px 0;
}

.vm-mission::after {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 0 0 14px 0;
}

.vm-mission .vm-num {
  color: rgba(255, 255, 255, 0.07);
}
.vm-mission .vm-icon {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}
.vm-mission .vm-tag {
  color: rgba(255, 255, 255, 0.65);
}
.vm-mission .vm-heading {
  color: #ffffff;
}
.vm-mission .vm-body {
  color: rgba(255, 255, 255, 0.82);
}

.vm-mission:hover {
  box-shadow: 0 20px 40px rgba(33, 157, 177, 0.28);
}
.vm-mission:hover .vm-icon {
  background: #ffffff;
  color: var(--primary);
}
.vm-mission:hover .vm-num {
  color: rgba(255, 255, 255, 0.04);
}

/* ── Responsive ── */
@media (max-width: 767px) {
  .vm-grid {
    grid-template-columns: 1fr;
  }
  .vm-vision {
    border-radius: 14px 14px 0 0;
  }
  .vm-vision::after {
    border-radius: 0;
  }
  .vm-mission {
    border-radius: 0 0 14px 14px;
  }
  .vm-mission::after {
    border-radius: 0 0 14px 14px;
  }
  .vm-panel {
    padding: 40px 30px 36px;
  }
  .vm-panel:hover {
    transform: none;
  }
  .vm-heading {
    font-size: 26px;
  }
  .vm-num {
    font-size: 100px;
  }
}

/* ── Journey Timeline ── */
/* ── Diagonal Slash Timeline ── */
/* ── Vertical Progress Timeline ── */
.tl-vp-wrap {
  position: relative;
  padding-left: 6px;
}

/* Track — full height grey bar */
.tl-vp-track {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #e4eef1;
  border-radius: 4px;
  overflow: hidden;
}

/* Fill — animates via JS */
.tl-vp-fill {
  width: 100%;
  height: 0%;
  background: linear-gradient(to bottom, var(--primary), var(--primary-dark));
  border-radius: 4px;
  transition: height 0.1s linear;
}

/* Each milestone row */
.tl-vp-item {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  padding: 2.8rem 0 2.8rem 2.5rem;
  border-bottom: 1px solid #e4eef1;
  position: relative;
  transition: background 0.25s;
}
.tl-vp-item:hover {
  background: var(--light-bg);
}
.tl-vp-last {
  border-bottom: none;
}

/* Marker dot on the bar */
.tl-vp-item::before {
  content: "";
  position: absolute;
  left: -4px;
  top: 3rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e4eef1;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px #e4eef1;
  transition:
    background 0.3s,
    box-shadow 0.3s;
  z-index: 2;
}
.tl-vp-item:hover::before,
.tl-vp-item.tl-vp-active::before {
  background: var(--primary);
  box-shadow: 0 0 0 3px rgba(33, 157, 177, 0.25);
}

/* Year column */
.tl-vp-year-col {
  flex: 0 0 100px;
  display: flex;
  flex-direction: column;
  padding-top: 0.2rem;
}
.tl-vp-year {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
  letter-spacing: -0.03em;
}
.tl-vp-range {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-top: 0.2rem;
}

/* Body */
.tl-vp-body {
  flex: 1;
}

.tl-vp-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  border: 1px solid rgba(33, 157, 177, 0.3);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  margin-bottom: 0.65rem;
}
.tl-vp-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.6rem;
  line-height: 1.2;
}
.tl-vp-desc {
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.8;
  margin: 0;
  max-width: 540px;
}
.tl-vp-desc strong {
  color: var(--dark);
}

/* Image column */
.tl-vp-img-col {
  flex: 0 0 200px;
}
.tl-vp-img-col img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
  filter: brightness(0.88) grayscale(0.2);
  transition:
    filter 0.4s,
    transform 0.4s;
}
.tl-vp-item:hover .tl-vp-img-col img {
  filter: brightness(0.95) grayscale(0);
  transform: scale(1.03);
}

@media (max-width: 767px) {
  .tl-vp-item {
    gap: 1.2rem;
    padding-left: 1.8rem;
  }
  .tl-vp-year-col {
    flex: 0 0 70px;
  }
  .tl-vp-year {
    font-size: 1.5rem;
  }
}

/* team */
/* ── Team Cards ── */
.team-card {
  border: 1px solid #e4eef1;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(33, 157, 177, 0.12);
}
.team-img-wrap {
  overflow: hidden;
  height: 270px;
}
.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.team-card:hover .team-img-wrap img {
  transform: scale(1.05);
}
.team-body {
  padding: 1rem;
  text-align: center;
}
.team-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.2rem;
}
.team-role {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

@media (max-width: 575px) {
  .team-img-wrap {
    height: 160px;
  }
}

/* Machinery */
.fac-machinery {
  padding: 5rem 0;
  background: #fff;
}
.fac-machine-row {
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid #e4eef1;
}
.fac-machine-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.fac-machine-img {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
   display: flex;              /* ✅ add this */
  justify-content: center;   /* ✅ add this */
}
.fac-machine-img img {
  width: 400px;
  height: 400px;
  object-fit: cover;
  display: block;
  filter: brightness(0.93);
  transition: transform 0.5s ease;
}
.fac-machine-row:hover .fac-machine-img img {
  transform: scale(1.04);
}

.fac-machine-num {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.12);
  line-height: 1;
  letter-spacing: -0.02em;
  pointer-events: none;
}
.fac-machine-label {
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 0.4rem;
}
.fac-machine-title {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.6rem;
  line-height: 1.2;
}
.fac-machine-bar {
  width: 36px;
  height: 3px;
  background: var(--primary);
  margin-bottom: 1rem;
}
.fac-machine-desc {
  color: var(--text);
  line-height: 1.8;
  margin: 0;
}

/* index why choose us crait */
/* ── Section ── */
.crait-section {
  background: var(--bg-section);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* Subtle grid background pattern */
.crait-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--primary-glow-second) 1px, transparent 1px),
    linear-gradient(90deg, var(--primary-glow-second) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.4;
  pointer-events: none;
}

/* ── Section Header ── */
.crait-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 56px;
  justify-content: center;
}

.crait-diamond-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.crait-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 2px;
  line-height: 1;
  margin: 0;
}

.crait-section-title span {
  color: #ffffff;
}

/* ── CRAIT Layout ── */
.crait-layout {
  display: flex;
  gap: 0;
  align-items: stretch;
}

/* ── Left: Letter Column ── */
.crait-letters {
  display: flex;
  flex-direction: column;
  position: relative;
  flex-shrink: 0;
  width: 90px;
}

/* Vertical connecting line */
.crait-letters::after {
  content: "";
  position: absolute;
  left: 44px;
  top: 32px;
  bottom: 32px;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--primary) 15%,
    var(--primary) 85%,
    transparent
  );
  opacity: 0.2;
}

.crait-letter-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 110px;
}

/* Horizontal connector dot to right */
.crait-letter-item::after {
  content: "";
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 1px;
  background: var(--primary);
  opacity: 0.35;
}

.crait-hex-badge {
  width: 80px;
  height: 80px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.crait-hex-badge svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.crait-hex-letter {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  position: relative;
  z-index: 1;
  line-height: 1;
  user-select: none;
}

/* ── Right: Cards Column ── */
.crait-cards {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-left: 24px;
}

.crait-card {
  flex: 1;
  display: flex;
  align-items: center;
  border-left: 2px solid transparent;
  padding: 10px 0 10px 16px;
  transition: border-color 0.25s ease;
}

.crait-card:hover {
  border-left-color: var(--primary);
}

.crait-card:hover .crait-card-inner {
  background: var(--primary-glow-second);
  border-color: rgba(33, 157, 177, 0.4);
}

.crait-card-inner {
  background: var(--bg-card);
  border: 0.5px solid var(--primary-border);
  border-radius: 10px;
  padding: 14px 20px;
  width: 100%;
  transition:
    background 0.25s ease,
    border-color 0.25s ease;
}

.crait-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Diamond bullet */
.crait-card-title::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--primary);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  flex-shrink: 0;
}

.crait-card-desc {
  font-size: 1rem;
  color: white;
  line-height: 1.65;
  margin: 0;
}

.crait-divider {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--primary-border) 30%,
    var(--primary-border) 70%,
    transparent
  );
  margin: 0 0 0 16px;
}

/* ── Responsive ── */
@media (max-width: 576px) {
  .crait-section {
    padding: 50px 0;
  }

  .crait-section-title {
    font-size: 32px;
  }

  .crait-letters {
    width: 68px;
  }

  .crait-hex-badge {
    width: 60px;
    height: 60px;
  }

  .crait-hex-letter {
    font-size: 20px;
  }

  .crait-letter-item {
    min-height: 90px;
  }

  .crait-card-inner {
    padding: 10px 14px;
  }
} /* ======= Spring Product Page Styles ======= */
/* spring types  page*/
/* ── HERO ── */
.cs-hero {
  min-height: 80vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;

}
.cs-mfg{
    padding: 80px 0;
}
.applications{
    padding: 80px 0;
}
.cs-hero-left {
  background: var(--light-bg);
  position: relative;
}
.cs-hero-left::after {
  content: "";
  position: absolute;
  right: -40px;
  top: 0;
  width: 80px;
  height: 100%;
  background: var(--light-bg);
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  z-index: 2;
}
.cs-hero-right {
  position: relative;
  overflow: hidden;
}
.cs-hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── HERO TAG ── */
.cs-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.cs-hero-tag::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

/* ── HERO TITLE ── */
.cs-hero-title {
  font-size: 3.6rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.08;
  letter-spacing: -1px;
}
.cs-hero-title span {
  color: var(--primary);
  display: block;
}

/* ── HERO DESC ── */
.cs-hero-desc {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text);
  max-width: 440px;
  border-left: 3px solid var(--primary);
}

/* ── HERO STATS ── */
.cs-hero-stats {
  border-top: 1px solid #dde3ec;
}
.cs-stat-val {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}
.cs-stat-val em {
  color: var(--primary);
  font-style: normal;
}
.cs-stat-label {
  font-size: 11px;
  color: #999;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── SHARED ── */
.cs-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
}
.cs-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}
.cs-divider {
  width: 36px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

/* ── CAP LIST ── */
.cs-cap-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── APP CARDS with HOVER ── */
.cs-app-card {
  border-radius: 10px;
  overflow: hidden;
  background: #f4f6f8;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
  border: 2px solid transparent;
  cursor: pointer;
}
.cs-app-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 12px rgba(33, 157, 177, 0.18);
}
.cs-app-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.cs-app-card:hover img {
  transform: scale(1.05);
}
.cs-app-card-label {
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .cs-hero {
    grid-template-columns: 1fr;
  }
  .cs-hero-left::after {
    display: none;
  }
  .cs-hero-right {
    min-height: 280px;
  }
  .cs-hero-title {
    font-size: 2.4rem;
  }
  .cs-carousel-btn {
    padding: 6px 10px;
  }
  .cs-carousel-btn .carousel-control-prev-icon,
  .cs-carousel-btn .carousel-control-next-icon {
    width: 14px;
    height: 14px;
  }
}

/* slider for application */
.cs-carousel-wrap { gap: 12px; }

.cs-carousel-inner {
  border-radius: 10px;
  overflow: hidden;
}

.cs-carousel-item {
  /* no aspect-ratio here anymore — height is now driven by image + caption */
}

.cs-carousel-item-inner {
  display: flex;
  flex-direction: column;
}

.cs-carousel-item img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  display: block;
}

.cs-carousel-caption {
  position: static;
  background: var(--primary);
  padding: 14px 20px;
  text-align: center;
  border-radius: 0;
}

.cs-carousel-caption h5 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.3px;
  margin: 0;
}

.cs-carousel-btn { flex-shrink: 0; }

.cs-carousel-btn .carousel-control-prev-icon,
.cs-carousel-btn .carousel-control-next-icon { filter: invert(1); }

@media (max-width: 780px) {
  .cs-carousel-item img {
    aspect-ratio: 16 / 10;
  }
  .cs-carousel-wrap {
    gap: 6px;
  }
  .cs-carousel-btn {
    padding: 4px 8px;
  }
  .cs-carousel-btn .carousel-control-prev-icon,
  .cs-carousel-btn .carousel-control-next-icon {
    width: 10px;
    height: 10px;
  }
  .cs-carousel-caption h5{
    font-size: 0.9rem;
  }
  .applications{
    padding-top:0px;
  }
}