/* ================================================================
   LAXMI MICRO INDUSTRIES — SERVICE PAGE
   Premium Industrial Minimal · No Scrollbar · Fully Responsive
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=DM+Sans:wght@400;500;600;700&display=swap');

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; width: 100%; }


/* ================================================================
   CSS VARIABLES
   ================================================================ */
:root {
  --navy:    #0f1f3d;
  --navy-d:  #07112a;
  --red:     #C10528;
  --red2:    #C10528;
  --muted:   #7b8aa0;
  --bg:      #f2f4f8;
  --white:   #ffffff;
  --border:  rgba(15,31,61,0.08);
  --radius:  16px;
  --tr:      all 0.42s cubic-bezier(0.4,0,0.2,1);
}

/* ================================================================
   BREADCRUMB
   ================================================================ */
.pt-breadcrumb {
  position: relative; min-height: 260px;
  display: flex; align-items: center; overflow: hidden;
}
.pt-bg-overley {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.pt-bg-overley::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(7,17,42,0.92) 0%, rgba(193,5,40,0.25) 100%);
}
.pt-breadcrumb .container {
  position: relative; z-index: 2;
  width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 28px;
}
.pt-breadcrumb-title h1 {

  font-size: 64px; font-weight: 900; color: #fff;
  text-transform: uppercase; letter-spacing: 5px; line-height: 1; margin-bottom: 14px;
}
.breadcrumb { list-style: none; display: flex; gap: 8px; align-items: center; font-size: 13.5px; }
.breadcrumb a { color: rgba(255,255,255,0.65); text-decoration: none; transition: color .3s; }
.breadcrumb a:hover { color: var(--red2); }
.breadcrumb-item { color: rgba(255,255,255,0.4); }
.breadcrumb-item + .breadcrumb-item::before { content: '/'; margin-right: 8px; opacity: 0.35; }

/* ================================================================
   ██ SERVICES SECTION
   ================================================================ */
.lmi-services-section {
  padding: 90px 0 0;
  background: var(--bg);
  position: relative;
}

/* ── Header Row ── */
.lmi-svc-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 1200px;
  margin: 0 auto 52px;
  padding: 0 28px;
  gap: 24px;
}

.lmi-head-text { max-width: 500px; }

.lmi-svc-eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--red);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 10px;
}
.lmi-svc-eyebrow::before {
  content: ''; display: inline-block;
  width: 26px; height: 2px;
  background: var(--red); border-radius: 1px;
}

.lmi-svc-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 54px; font-weight: 900;
  text-transform: uppercase; letter-spacing: 2.5px;
  color: var(--navy); line-height: 1; margin-bottom: 12px;
}
.lmi-svc-heading em { font-style: normal; color: var(--red); }

.lmi-svc-sub { font-size: 15px; color: var(--muted); line-height: 1.82; }

.lmi-accent-bar {
  width: 44px; height: 4px;
  background: linear-gradient(90deg, var(--red), var(--red2));
  border-radius: 2px; margin-top: 18px;
}

/* Arrow Buttons */
.lmi-arrows { display: flex; gap: 12px; flex-shrink: 0; }

.lmi-arrow-btn {
  width: 56px; height: 56px;
  border: 2px solid #d2dae8;
  background: var(--white); color: var(--navy);
  border-radius: 12px; font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--tr);
  box-shadow: 0 4px 16px rgba(15,31,61,0.06);
  position: relative; overflow: hidden;
}
.lmi-arrow-btn::before {
  content: ''; position: absolute; inset: 0;
  background: var(--navy);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1); z-index: 0;
}
.lmi-arrow-btn svg { position: relative; z-index: 1; transition: stroke .38s; }
.lmi-arrow-btn:hover::before { transform: scaleY(1); }
.lmi-arrow-btn:hover {
  border-color: var(--navy); color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(15,31,61,0.2);
}
.lmi-arrow-btn:hover svg { stroke: #fff; }
.lmi-arrow-btn:disabled { opacity: 0.25; cursor: not-allowed; transform: none !important; box-shadow: none; }
.lmi-arrow-btn:disabled::before { display: none; }

/* ── Viewport: clips cards, NO scrollbar ── */
.lmi-svc-viewport {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  overflow: hidden;       /* KEY: clips overflow without showing scrollbar */
  width: 100%;
}

.lmi-svc-track {
  display: flex;
  gap: 22px;
  transition: transform 0.58s cubic-bezier(0.25, 1, 0.5, 1);
  align-items: stretch;
  /* padding bottom for box-shadow to not clip */
  padding-bottom: 16px;
  margin-bottom: -16px;
}

/* ── Service Card (image-matched style) ── */
.lmi-svc-card {
  flex: 0 0 268px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid rgba(15,31,61,0.07);
  padding: 36px 26px 30px;
  position: relative;
  overflow: hidden;
  transition: var(--tr);
  box-shadow: 0 4px 24px rgba(15,31,61,0.07);
  cursor: default;
  display: flex;
  flex-direction: column;
}

/* Ghost number — matching the image exactly */
.lmi-ghost-num {
  position: absolute;
  top: -10px; right: -6px;
 
  font-size: 148px; font-weight: 900;
  color: #eaeff6;
  line-height: 1;
  letter-spacing: -8px;
  z-index: 0;
  transition: color 0.5s, transform 0.5s;
  user-select: none; pointer-events: none;
  white-space: nowrap;
}

/* Bottom red strip */
.lmi-svc-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red2));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.lmi-svc-card:hover {
  transform: translateY(-9px);
  box-shadow: 0 28px 54px rgba(15,31,61,0.14);
  border-color: rgba(193,5,40,0.14);
}
.lmi-svc-card:hover::after { transform: scaleX(1); }
.lmi-svc-card:hover .lmi-ghost-num { color: rgba(193,5,40,0.055); transform: scale(1.04); }

/* Card inner layer */
.lmi-card-inner { position: relative; z-index: 1; display: flex; flex-direction: column; height: 100%; }

/* Icon */
.lmi-card-icon {
  width: 54px; height: 54px;
  border-radius: 12px;
  border: 1.5px solid #dde3ef;
  background: #f7f8fb;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 30px;
  transition: var(--tr);
}
.lmi-svc-card:hover .lmi-card-icon {
  background: var(--navy); border-color: var(--navy);
  transform: rotate(5deg) scale(1.1);
}
.lmi-card-icon svg {
  width: 25px; height: 25px;
  stroke: var(--navy); stroke-width: 1.7; fill: none;
  transition: stroke .38s;
}
.lmi-svc-card:hover .lmi-card-icon svg { stroke: #fff; }

/* Title */
.lmi-card-title {

  font-size: 21px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.5px;
  color: var(--navy); margin-bottom: 12px; line-height: 1.2;
}

/* Description */
.lmi-card-desc {
  font-size: 14px; color: var(--muted);
  line-height: 1.88; flex: 1;
}

/* Read more */
.lmi-card-link {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 20px;
  font-size: 11.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.8px;
  color: var(--red); text-decoration: none;
  opacity: 0; transform: translateY(6px);
  transition: opacity .4s, transform .4s;
}
.lmi-card-link .arr { display: inline-block; transition: transform .3s; }
.lmi-svc-card:hover .lmi-card-link { opacity: 1; transform: translateY(0); }
.lmi-card-link:hover .arr { transform: translateX(4px); }

/* ── Dotted wave timeline (exact image style) ── */
.lmi-dot-wave {
  max-width: 1200px; margin: 16px auto 0;
  padding: 0 28px; height: 70px; overflow: hidden;
}
.lmi-dot-wave svg { width: 100%; height: 100%; }

/* ── Dot pagination ── */
.lmi-pagination {
  display: flex; justify-content: center; gap: 8px;
  padding: 30px 0 0;
}
.lmi-pg-dot {
  width: 20px; height: 20px; border-radius: 50%;
  background: #c4cdd8; cursor: pointer;
  transition: all .35s; border: none; padding: 0;
}
.lmi-pg-dot.active { width: 26px; border-radius: 4px; background: var(--red); }

/* ================================================================
   ██ COUNTER SECTION
   ================================================================ */
.lmi-counter-wave {
  line-height: 0; overflow: hidden; background: var(--bg);
}
.lmi-counter-wave svg { display: block; width: 100%; }

.lmi-counter-section {
  background: var(--navy-d);
  position: relative; overflow: hidden; padding: 0;
}
.lmi-counter-section::before {
  content: ''; position: absolute; top: -150px; left: -150px;
  width: 500px; height: 500px; border-radius: 50%;
  border: 100px solid rgba(255,255,255,0.02); pointer-events: none;
}
.lmi-counter-section::after {
  content: ''; position: absolute; bottom: -120px; right: -120px;
  width: 420px; height: 420px; border-radius: 50%;
  border: 80px solid rgba(193,5,40,0.06); pointer-events: none;
}

.lmi-counter-inner {
  display: grid; grid-template-columns: repeat(3, 1fr);
  max-width: 1000px; margin: 0 auto;
  position: relative; z-index: 2;
}

.lmi-stat-block {
  padding: 74px 30px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  position: relative; transition: background .4s;
}
.lmi-stat-block:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 18%; height: 64%; width: 1px;
  background: rgba(255,255,255,0.08);
}
.lmi-stat-block:hover { background: rgba(255,255,255,0.025); }

.lmi-slot-row {
  display: flex; align-items: flex-end; justify-content: center;
  height: 104px; overflow: hidden;
}
.lmi-reel { height: 104px; overflow: hidden; }
.lmi-reel-strip { display: flex; flex-direction: column; will-change: transform; }
.lmi-reel-cell {
  height: 104px; line-height: 104px;

  font-size: 92px; font-weight: 900;
  color: #ffffff; letter-spacing: -2px; text-align: center; min-width: 56px;
}
.lmi-slot-suffix {

  font-size: 62px; font-weight: 900;
  color: var(--red2); line-height: 104px; margin-left: 4px;
  opacity: 0; transform: translateY(10px);
  transition: opacity .6s ease, transform .6s ease;
}
.lmi-go .lmi-slot-suffix { opacity: 1; transform: translateY(0); }

.lmi-stat-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 20px; margin-bottom: 14px;
}
.lmi-red-bar {
  width: 32px; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red2));
  border-radius: 2px; transition: width .4s;
}
.lmi-stat-block:hover .lmi-red-bar { width: 52px; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
  .lmi-svc-card { flex: 0 0 280px; }
  .lmi-svc-heading { font-size: 46px; }
}

@media (max-width: 900px) {
  .lmi-services-section { padding: 70px 0 0; }
  .lmi-svc-header { flex-direction: column; align-items: flex-start; gap: 22px; padding: 0 20px; margin-bottom: 38px; }
  .lmi-svc-viewport { padding: 0 20px; }
  .lmi-svc-card { flex: 0 0 258px; }
  .lmi-svc-heading { font-size: 40px; }
  .lmi-dot-wave { padding: 0 20px; }
}

@media (max-width: 768px) {
  .pt-breadcrumb { min-height: 200px; }
  .pt-breadcrumb-title h1 { font-size: 38px; letter-spacing: 3px; }
  .lmi-services-section { padding: 56px 0 0; }
  .lmi-svc-header { padding: 0 16px; }
  .lmi-svc-heading { font-size: 34px; }
  .lmi-svc-viewport { padding: 0 16px; }
  .lmi-svc-card { flex: 0 0 calc(88vw - 32px); padding: 28px 20px 24px; }
  .lmi-svc-track { gap: 16px; }
  .lmi-dot-wave { padding: 0 16px; }
  .lmi-counter-inner { grid-template-columns: 1fr; }
  .lmi-stat-block { padding: 50px 24px; }
  .lmi-stat-block:not(:last-child)::after {
    top: auto; bottom: 0; right: 10%; left: 10%; width: 80%; height: 1px;
  }
  .lmi-reel-cell { font-size: 74px; height: 86px; line-height: 86px; }
  .lmi-slot-row, .lmi-reel { height: 86px; }
  .lmi-slot-suffix { font-size: 52px; line-height: 86px; }
  .lmi-arrow-btn { width: 48px; height: 48px; }
}

@media (max-width: 480px) {
  .lmi-svc-card { flex: 0 0 calc(94vw - 32px); }
  .lmi-svc-heading { font-size: 28px; }
  .lmi-ghost-num { font-size: 112px; }
  .lmi-reel-cell { font-size: 62px; height: 74px; line-height: 74px; }
  .lmi-slot-row, .lmi-reel { height: 74px; }
  .lmi-slot-suffix { font-size: 44px; line-height: 74px; }
}


/* product */

:root {
    --lmi-dark: #101828;
    --lmi-red: #C10528;
    --lmi-text: #475467;
    --lmi-bg: #fdfdfd;
}


.lmi-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* --- Top Header Info --- */
.lmi-top-info {
    background: var(--lmi-dark);
    color: #fff;
    padding: 12px 0;
    font-size: 14px;
    border-bottom: 3px solid var(--lmi-red);
}

.lmi-top-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.lmi-contact-link { color: #fff; text-decoration: none; display: flex; align-items: center; gap: 8px; }
.lmi-contact-link i { color: var(--lmi-red); }

/* --- Section Styling --- */
.lmi-product-section { padding: 90px 0; background: var(--lmi-bg); }

.lmi-main-title { text-align: center; margin-bottom: 60px; }
.lmi-main-title span { color: var(--lmi-red); font-weight: 800; text-transform: uppercase; letter-spacing: 3px; font-size: 13px; }
.lmi-main-title h2 { font-size: 48px; color: var(--lmi-dark); margin: 10px 0; text-transform: uppercase; }
.lmi-title-bar { width: 50px; height: 4px; background: var(--lmi-red); margin: 0 auto; border-radius: 2px; }

/* --- Product Grid --- */
.lmi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 35px;
}

.lmi-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #f0f0f0;
    position: relative;
}

.lmi-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(16, 24, 40, 0.15);
}

.lmi-img-box {
    height: 240px;
    background: #f8f9fb;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.lmi-img-box i { font-size: 70px; color: var(--lmi-dark); opacity: 0.8; transition: 0.4s; }
.lmi-card:hover .lmi-img-box i { transform: scale(1.1); color: var(--lmi-red); }

.lmi-content { padding: 25px; text-align: left; }
.lmi-content h3 {  font-size: 24px; color: var(--lmi-dark); margin: 0 0 12px; }
.lmi-content p { color: var(--lmi-text); font-size: 15px; line-height: 1.6; margin-bottom: 25px; min-height: 48px; }

/* --- Buttons --- */
.lmi-actions { display: flex; gap: 12px; }

.lmi-btn {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-red { background: var(--lmi-red); color: #fff; border: 1px solid var(--lmi-red); }
.btn-red:hover { background: var(--lmi-dark); border-color: var(--lmi-dark); }

.btn-outline { border: 1px solid #d0d5dd; color: var(--lmi-dark); }
.btn-outline:hover { background: #f8f9fb; border-color: var(--lmi-dark); }

/* --- Responsive --- */
@media (max-width: 768px) {
    .lmi-top-flex { justify-content: center; text-align: center; }
    .lmi-main-title h2 { font-size: 34px; }
    .lmi-grid { grid-template-columns: 1fr; }
}