

/* ═══════════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════════ */

.about-section {
  padding: 70px 0;
  background: linear-gradient(135deg,
    rgba(3, 26, 48, 0.96),
    rgba(46, 65, 112, 0.87),
    rgba(3, 26, 48, 0.96));
}

/* ── Grid Layout ────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 32px;
  align-items: center;
}

/* ── Left: Text Content ─────────────── */
.about-content .lead {
  color: rgba(255,255,255,.75);
  line-height: 1.75;
  max-width: 60ch;
}

.about-muted {
  margin-top: 14px;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  font-size: 14px;
}

.about-muted strong {
  color: var(--white);
  font-weight: 600;
}

/* ── Stats Grid ─────────────────────── */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.stat-item {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  padding: 16px 10px;
  text-align: center;
  transition: .2s ease;
}

.stat-item:hover {
  background: rgba(201,168,76,.10);
  border-color: var(--border);
  transform: translateY(-2px);
}

.stat-num {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,.60);
  margin-top: 6px;
  line-height: 1.3;
}

/* ── Action Buttons ─────────────────── */
.about-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* ── Right: Image ───────────────────── */
.about-img-wrap {
  position: relative;
}

.about-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

/* ── Floating Badges ────────────────── */
.about-badge {
  position: absolute;
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(0,0,0,.35);
}

/* Experience badge — bottom left */
.about-badge--left {
  bottom: 24px;
  left: -20px;
  background: var(--secondary);
  color: #111;
  padding: 14px 18px;
  min-width: 150px;
}

.about-badge__num {
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1;
}

.about-badge__label {
  font-size: 12px;
  margin-top: 4px;
  font-weight: 600;
  opacity: .85;
}

/* ISO badge — top right */
.about-badge--top {
  top: 18px;
  right: 18px;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,.12);
}

.about-badge__icon {
  color: var(--secondary);
  font-size: 15px;
}

/* ═══════════════════════════════════════
   ABOUT — RESPONSIVE
═══════════════════════════════════════ */

/* Tablet landscape  ≤ 1024px */
@media (max-width: 1024px) {
  .about-grid {
    gap: 32px;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-img {
    height: 400px;
  }

  .about-badge--left {
    left: 0;
  }
}

/* Tablet portrait  ≤ 820px — stack */
@media (max-width: 820px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* Image on top when stacked */
  .about-img-wrap {
    order: -1;
  }

  .about-img {
    height: 360px;
  }

  .about-badge--left {
    left: 16px;
    bottom: 16px;
  }

  .about-content .lead {
    max-width: 100%;
  }

  .hero-card {
    display: none;
  }
}

/* Mobile  ≤ 560px */
@media (max-width: 560px) {
  .about-section {
    padding: 50px 0;
  }

  .about-img {
    height: 260px;
    border-radius: 12px;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .stat-num {
    font-size: 1.3rem;
  }

  .stat-label {
    font-size: 10px;
  }

  .stat-item {
    padding: 12px 8px;
  }

  .about-badge--left {
    left: 12px;
    bottom: 12px;
    padding: 10px 14px;
    min-width: 130px;
  }

  .about-badge__num {
    font-size: 1.4rem;
  }

  .about-badge__label {
    font-size: 11px;
  }

  .about-badge--top {
    top: 12px;
    right: 12px;
    font-size: 11px;
    padding: 8px 10px;
    gap: 6px;
  }

  .about-badge__icon {
    font-size: 13px;
  }

  .about-actions {
    flex-direction: column;
  }

  .about-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Very small phones  ≤ 380px */
@media (max-width: 380px) {
  .about-img {
    height: 210px;
  }

  .stat-num {
    font-size: 1.15rem;
  }

  .about-badge--left {
    min-width: 115px;
    padding: 8px 12px;
  }

  .about-badge__num {
    font-size: 1.2rem;
  }
}



/* ── Owner Section ────────────────────── */
.owner-section {
  padding: 70px 0;
  background: #EBF3FB;
}

.owner-section .kicker {
  color: var(--secondary);
}

.owner-section .reveal-h2 {
  color: rgba(3, 26, 48, 1);
}

.owner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 32px;
  align-items: center;
}

/* ── Left: Image ─────────────────────── */
.owner-img-wrap {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
}

.owner-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 16px;
  display: block;
  max-height: 430px;
}

/* ── Floating Badges ─────────────────── */
.owner-badge--right {
  bottom: 24px;
  right: -20px;
  background: var(--secondary);
  padding: 14px 18px;
  min-width: 150px;
}

.owner-badge__num {
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
}

.owner-badge__label {
  font-size: 12px;
  margin-top: 4px;
  font-weight: 600;
  opacity: .85;
  color: #fff;
}

.owner-badge--topleft {
  top: 18px;
  left: 18px;
  background: rgba(3, 26, 48, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, .15);
}

/* ── Right: Content ─────────────────── */
.owner-content .lead {
  color: rgba(3, 26, 48, 0.85);
  line-height: 1.75;
  max-width: 60ch;
}

.owner-muted {
  margin-top: 14px;
  color: rgba(3, 26, 48, 0.65);
  line-height: 1.7;
  font-size: 14px;
}

.owner-muted strong {
  color: rgba(3, 26, 48, 1);
  font-weight: 600;
}

/* ── Owner Name Card ─────────────────── */
.owner-namecard {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(3, 26, 48, 0.10);
  border-radius: 14px;
  padding: 16px 20px;
}

.owner-namecard__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #111;
  flex-shrink: 0;
}

.owner-namecard__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(3, 26, 48, 1);
  margin: 0 0 3px;
}

.owner-namecard__role {
  font-size: 12px;
  color: var(--secondary);
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin: 0;
}

.owner-namecard__divider {
  width: 1px;
  height: 36px;
  background: rgba(3, 26, 48, 0.15);
  margin: 0 4px;
}

.owner-namecard__title {
  font-size: 12px;
  color: rgba(3, 26, 48, 0.5);
  margin: 0 0 2px;
}

.owner-namecard__company {
  font-size: 13px;
  font-weight: 600;
  color: rgba(3, 26, 48, 0.85);
  margin: 0;
}

/* ═══════════════════════════════════════
   OWNER — RESPONSIVE
═══════════════════════════════════════ */

/* Tablet landscape ≤ 1024px */
@media (max-width: 1024px) {
  .owner-grid {
    gap: 32px;
  }

  .owner-img-wrap {
    max-width: 350px;
  }

  .owner-img {
    max-height: 350px;
  }

  .owner-badge--right {
    right: 0;
  }
}

/* Tablet portrait ≤ 820px — stack */
@media (max-width: 820px) {
  .owner-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .owner-img-wrap {
    order: -1;
    max-width: 320px;
  }

  .owner-img {
    max-height: 320px;
  }

  .owner-badge--right {
    right: 16px;
    bottom: 16px;
  }

  .owner-content .lead {
    max-width: 100%;
  }
}

/* Mobile ≤ 560px */
@media (max-width: 560px) {
  .owner-section {
    padding: 50px 0;
  }

  .owner-img-wrap {
    max-width: 280px;
  }

  .owner-img {
    max-height: 280px;
  }

  .owner-badge--right {
    right: 12px;
    bottom: 12px;
    padding: 10px 14px;
    min-width: 130px;
  }

  .owner-badge__num {
    font-size: 1.4rem;
  }

  .owner-badge__label {
    font-size: 11px;
  }

  .owner-badge--topleft {
    top: 12px;
    left: 12px;
    font-size: 11px;
    padding: 8px 10px;
    gap: 6px;
  }

  .owner-namecard {
    flex-wrap: wrap;
    gap: 12px;
  }

  .owner-namecard__divider {
    display: none;
  }
}

/* Very small phones ≤ 380px */
@media (max-width: 380px) {
  .owner-img-wrap {
    max-width: 240px;
  }

  .owner-img {
    max-height: 240px;
  }

  .owner-badge--right {
    min-width: 115px;
    padding: 8px 12px;
  }

  .owner-badge__num {
    font-size: 1.2rem;
  }

  .owner-badge__label {
    font-size: 11px;
  }

  .owner-namecard {
    padding: 12px 14px;
  }

  .owner-namecard__avatar {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

  .owner-namecard__name {
    font-size: 1rem;
  }
}



/* Service Cards */
.service-card {
  background:linear-gradient(135deg, rgba(3, 26, 48, 0.96), rgba(46, 65, 112, 0.87) ,  rgba(3, 26, 48, 0.96));
  border: 1px solid rgba(11, 29, 58, .10);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,.08);
  transition: .25s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,.14);
  border-color: rgba(201,168,76,.35);
}

.service-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.06);
}

.service-icon {
  position: absolute;
  bottom: -20px;
  left: 20px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--secondary);
  color: #111;
  display: grid;
  place-items: center;
  font-size: 18px;
  box-shadow: 0 6px 20px rgba(201,168,76,.4);
  border: 2px solid #fff;
  z-index: 1;
}

.service-body {
  padding: 32px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}



.service-body h3 {
  margin: 0 0 10px;
  color:rgba(201,168,76,.95);
  font-size: 17px;

}

.service-body p {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.6;
  flex: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--secondary);
  letter-spacing: .02em;
  transition: gap .2s ease;
}

.service-link:hover {
  gap: 10px;
}




/* ═══════════════════════════════════════
   EQUIPMENT SECTION
═══════════════════════════════════════ */

.section-h2 {
  font-size: 30px;
  font-weight: 700;
  color: #111;
  margin: 10px 0 12px;
  line-height: 1.2;
}

.section-lead {
  color: #666;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

/* ── Stats Bar ──────────────────────── */
.equip-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(11,29,58,.10);
  border: 1px solid rgba(11,29,58,.10);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 28px;
}

.equip-stat {
  background: #fff;
  padding: 22px 16px;
  text-align: center;
  transition: .2s ease;
}

.equip-stat:hover {
  background: rgba(201,168,76,.06);
}

.equip-stat__num {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
}

.equip-stat__label {
  display: block;
  font-size: 12px;
  color: #777;
  margin-top: 6px;
  font-weight: 500;
}

/* ── Equipment Cards Grid ───────────── */
.equip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.equip-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border: 1px solid rgba(11,29,58,.09);
  border-radius: 16px;
  padding: 18px;
  transition: .2s ease;
}

.equip-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201,168,76,.35);
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.equip-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(201,168,76,.12);
  color: var(--secondary);
  display: grid;
  place-items: center;
  font-size: 17px;
  flex-shrink: 0;
}

.equip-card__body h4 {
  margin: 0 0 6px;
  font-size: 15px;
  color: #111;
  font-weight: 700;
}

.equip-card__body p {
  margin: 0;
  font-size: 13px;
  color: #666;
  line-height: 1.55;
}

/* ── Responsive ─────────────────────── */
@media (max-width: 980px) {
  .equip-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .equip-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .equip-grid {
    grid-template-columns: 1fr;
  }

  .equip-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .equip-stat__num {
    font-size: 1.5rem;
  }

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




/* ═══════════════════════════════════════
   WHY CHOOSE US SECTION
═══════════════════════════════════════ */

.why-section {
  padding: 80px 0;
  background: linear-gradient(160deg,
    rgba(5, 15, 30, 0.98) 0%,
    rgba(11, 29, 58, 0.95) 50%,
    rgba(5, 15, 30, 0.98) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

/* subtle background pattern */
.why-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(201,168,76,.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* ── Layout ─────────────────────────── */
.why-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ── Left Content ───────────────────── */
.why-h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  margin: 10px 0 14px;
  line-height: 1.2;
}

.why-lead {
  color: rgba(255,255,255,.65);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 32px;
  max-width: 52ch;
}

/* ── Feature List ───────────────────── */
.why-list {
  display: grid;
  gap: 6px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid transparent;
  transition: .2s ease;
}

.why-item:hover {
  background: rgba(255,255,255,.04);
  border-color: rgba(201,168,76,.20);
}

.why-item__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(201,168,76,.14);
  color: var(--secondary);
  display: grid;
  place-items: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: .2s ease;
}

.why-item:hover .why-item__icon {
  background: var(--secondary);
  color: #111;
}

.why-item__body h4 {
  margin: 0 0 5px;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}

.why-item__body p {
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,.60);
  line-height: 1.6;
}

/* ── Right Image ────────────────────── */
.why-img-wrap {
  position: relative;
}

.why-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  filter: brightness(.9);
}

/* Floating stats card */
.why-float-card {
  position: absolute;
  bottom: 28px;
  left: -28px;
  background: rgba(11, 20, 38, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: 0 16px 40px rgba(0,0,0,.45);
}

.why-float-card__row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.why-float-card__stat {
  text-align: center;
}

.why-float-card__num {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
}

.why-float-card__label {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,.65);
  margin-top: 5px;
}

.why-float-card__divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.15);
}

/* ISO ribbon */
.why-ribbon {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: 9px 13px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

.why-ribbon i {
  color: var(--secondary);
  font-size: 14px;
}

/* ── Responsive ─────────────────────── */

/* Tablet landscape ≤ 1024px */
@media (max-width: 1024px) {
  .why-grid {
    gap: 36px;
  }

  .why-img {
    height: 440px;
  }

  .why-float-card {
    left: -10px;
  }
}

/* Tablet portrait ≤ 820px — stack */
@media (max-width: 820px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Image goes on top when stacked */
  .why-img-wrap {
    order: -1;
  }

  .why-img {
    height: 340px;
  }

  .why-float-card {
    left: 16px;
    bottom: 16px;
  }

  .why-lead {
    max-width: 100%;
  }
}

/* Mobile ≤ 560px */
@media (max-width: 560px) {
  .why-section {
    padding: 50px 0;
  }

  .why-h2 {
    font-size: 24px;
  }

  .why-img {
    height: 260px;
    border-radius: 14px;
  }

  .why-item {
    padding: 12px;
    gap: 12px;
  }

  .why-item__icon {
    width: 40px;
    height: 40px;
    font-size: 15px;
  }

  .why-float-card {
    left: 12px;
    bottom: 12px;
    padding: 13px 16px;
  }

  .why-float-card__num {
    font-size: 1.3rem;
  }

  .why-ribbon {
    top: 12px;
    right: 12px;
    font-size: 11px;
    padding: 7px 10px;
  }
}

/* Very small phones ≤ 380px */
@media (max-width: 380px) {
  .why-img {
    height: 220px;
  }

  .why-h2 {
    font-size: 21px;
  }

  .why-float-card__num {
    font-size: 1.15rem;
  }
}



/* ═══════════════════════════════════════
   CLIENTS MARQUEE
═══════════════════════════════════════ */

.clients-section {
  overflow: hidden;
}

.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to right, transparent 0%, #000 6%, #000 94%, transparent 100%
  );
  mask-image: linear-gradient(
    to right, transparent 0%, #000 6%, #000 94%, transparent 100%
  );
}

.marquee-track {
  overflow: hidden;
  cursor: grab;
  user-select: none;
}

.marquee-track.is-dragging {
  cursor: grabbing;
}

.marquee-inner {
  display: flex;
  gap: 16px;
  width: max-content;
  will-change: transform;
}

/* ── Logo Tile ──────────────────────── */
.logo-tile {
  flex-shrink: 0;
  width: 180px;
  height: 90px;
  background: #fff;
  border: 1px solid rgba(11,29,58,.09);
  border-radius: 14px;
  display: grid;
  place-items: center;
  padding: 16px 20px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  pointer-events: none; /* handled by JS drag */
}

.marquee-track:hover .logo-tile {
  border-color: rgba(201,168,76,.35);
  box-shadow: 0 8px 24px rgba(201,168,76,.10);
}

.logo-tile img {
  max-width: 100%;
  max-height: 50px;
  object-fit: contain;
  filter: grayscale(20%);
  opacity: .90;
  transition: filter .2s, opacity .2s;
  pointer-events: none;
  -webkit-user-drag: none;
}

.marquee-track:hover .logo-tile img {
  filter: grayscale(0%);
  opacity: 1;
}

/* ── Mobile: 2 visible tiles ────────── */
@media (max-width: 600px) {
  .logo-tile {
    width: calc(50vw - 28px); /* 2 tiles fit with gap */
    height: 75px;
    padding: 12px;
    border-radius: 12px;
  }

  .logo-tile img {
    max-height: 38px;
  }

  .marquee-inner {
    gap: 12px;
  }
}

@media (max-width: 380px) {
  .logo-tile {
    width: calc(50vw - 22px);
    height: 65px;
  }

  .logo-tile img {
    max-height: 30px;
  }
}