:root {
  --black: #0b0b0b;
  --ink: #111111;
  --dark: #1a1a1a;
  --dark2: #222222;
  --red: #c62828;
  --red-h: #e53935;
  --red-dim: rgba(198, 40, 40, 0.12);
  --white: #e8e4e3;
  --off: #f6f4f1;
  --off2: #ede9e3;
  --text: #1c1c1c;
  --mid: #555555;
  --light: #888888;
  --border: #e0dbd4;
  --border-d: rgba(255, 255, 255, 0.08);
  --shadow: 0 2px 20px rgba(0, 0, 0, 0.10);
  --shadow2: 0 8px 48px rgba(0, 0, 0, 0.18);
  --nav-h: 72px;
}

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

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

html {
  scroll-behavior: smooth;
  font-size: 17px;
}

body {
  font-family: 'Barlow', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}


ul {
  list-style: none;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

html {
  scroll-behavior: smooth;
  font-size: 17px;
}


img {
  display: block;
  max-width: 100%;
}

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

ul {
  list-style: none;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

/* ============================================================
   SCROLL REVEAL
============================================================ */
.sr {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(.25, .46, .45, .94),
    transform 0.7s cubic-bezier(.25, .46, .45, .94);
}

.sr.d1 {
  transition-delay: 0.10s;
}

.sr.d2 {
  transition-delay: 0.20s;
}

.sr.d3 {
  transition-delay: 0.30s;
}

.sr.d4 {
  transition-delay: 0.40s;
}

.sr.d5 {
  transition-delay: 0.50s;
}

.sr.d6 {
  transition-delay: 0.60s;
}

.sr.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   SHARED UTILITIES
============================================================ */
.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

.wrap-md {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 48px;
}

.sec {
  padding: 100px 0;
}

.sec-sm {
  padding: 72px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--red);
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.55);
}

.eyebrow.light::before {
  background: var(--red);
}

.h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 45px;
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.h2.light {
  color: #fff;
}

.h2 em {
  font-style: normal;
  color: var(--red);
}

.h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
}

.body-text {
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.80;
  font-weight: 400;
}

.body-text.light {
  color: rgba(255, 255, 255, 0.62);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  transition: background 0.22s, color 0.22s, transform 0.18s, box-shadow 0.22s;
  line-height: 1;
}

.btn svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  flex-shrink: 0;
}

.btn-red {
  background: var(--red);
  color: #fff;
}

.btn-red:hover {
  background: var(--red-h);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(198, 40, 40, 0.35);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
}

.btn-outline-white:hover {
  background: #fff;
  color: var(--ink);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-dark:hover {
  background: var(--dark2);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
}

.btn-whatsapp:hover {
  background: #20bb5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
}

/* dividers */
.rule {
  height: 1px;
  background: var(--border);
}

.rule-d {
  height: 1px;
  background: var(--border-d);
}

/* section header */
.sec-hd {
  margin-bottom: 64px;
}

.sec-hd.center {
  text-align: center;
}

.sec-hd.center .eyebrow {
  justify-content: center;
}

/* ============================================================
   NAVBAR
============================================================ */
/* HAMBURGER */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #000000;
  display: block;
  transition: 0.3s;
}

#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 800;
  height: var(--nav-h);
  background: #f5f5f5;
  border-bottom: 1px solid transparent;
  transition: background 0.35s, border-color 0.35s;
}

#nav.scrolled {
  background: rgb(245 245 245);
  border-bottom-color: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-right: 52px;
  flex-shrink: 0;
  cursor: pointer;
  width: 200px;
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-icon svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.8;
}

.nav-logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
  line-height: 1;
}

.nav-logo-text span {
  color: var(--red);
}

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  margin-top: 10px;
}

.nav-item {
  position: relative;
}

.nav-a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgb(31 24 24);
  cursor: pointer;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-a:hover,
.nav-a.active {
  color: #e82022;
}

.nav-a svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  transition: transform 0.2s;
}

.nav-item:hover .nav-a svg {
  transform: rotate(180deg);
}

/* Dropdown */
.nav-drop {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: #f8f9fa;
  border: 1px solid rgba(255, 255, 255, 0.07);
  min-width: 220px;
  padding: 6px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s, transform 0.2s;
}

.nav-item:hover .nav-drop {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.nav-drop a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: rgb(0 0 0);
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
}

.nav-drop a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #130d0d;
}

.nav-drop a::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--red);
  flex-shrink: 0;
}

/* CTA */
.nav-cta {
  margin-left: auto;
}

.nav-cta .btn {
  padding: 10px 22px;
  font-size: 0.78rem;
}

/* ============================================================
   MOBILE NAV
============================================================ */
@media (max-width: 991px) {

  .nav-inner {
    padding: 0 20px;
  }

  /* show hamburger */
  .nav-toggle {
    display: flex;
  }

  /* hide desktop CTA */
  .nav-cta {
    display: none;
  }

  /* MENU STYLE */
  .nav-links {
    position: absolute;
    top: var(--nav-h);
    left: 0;
    width: 100%;
    background: #0b0b0b;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px 0;

    /* hidden by default */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .nav-links.active {
    max-height: 500px;
    /* expand */
  }

  .nav-item {
    width: 100%;
  }

  .nav-a {
    width: 100%;
    padding: 14px 20px;
    font-size: 0.9rem;
  }

  /* DROPDOWN FIX */
  .nav-drop {
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: all;
    display: none;
    border: none;
    box-shadow: none;
    padding: 0;
    background: #111;
    width: 100%;
  }

  .nav-item.active .nav-drop {
    display: block;
  }

  .nav-drop a {
    padding: 12px 30px;
    font-size: 0.82rem;
  }
}

/* FIX: dropdown arrow rotation only on hover (desktop) */
@media (min-width: 992px) {
  .nav-item:hover .nav-a svg {
    transform: rotate(180deg);
  }
}

/* smooth transition fix */
.nav-links {
  transition: max-height 0.35s ease;
}

/* ============================================================
   HERO
============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: #000;
}

/* Background Image - clearer */
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("../images/background/bannerbg.png") no-repeat center center / cover;
  background-size: cover;
  background-position: center;
  opacity: 0.6;
  /* increased from 0.28 */
  filter: brightness(1.1) contrast(1.05);
}

/* LIGHT overlay instead of dark */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.35) 20%,
      rgba(0, 0, 0, 0.15) 40%,
      rgba(0, 0, 0, 0.05) 70%);
}

/* Optional: softer red accent line */
.hero-slash {
  position: absolute;
  top: 0;
  right: 38%;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom,
      transparent,
      rgba(198, 40, 40, 0.6),
      transparent);
  opacity: 0.25;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 100%;
  padding-left: 3%;
  margin: 15% 0px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-eyebrow-line {
  width: 48px;
  height: 2px;
  background: var(--red);
}

.hero-eyebrow-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(4rem, 8.5vw, 7.8rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 32px;
}

.hero-title .accent {
  color: var(--red);
  display: block;
}

.hero-title .sub-accent {
  display: block;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.8rem);
  color: rgb(255 255 255);
  letter-spacing: 0.01em;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgb(255 255 255);
  line-height: 1.78;
  max-width: 520px;
  margin-bottom: 48px;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* Hero stats bar */
.hero-stats {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  margin-top: 80px;
  margin-bottom: 0;
  padding-bottom: 72px;
  display: flex;
  gap: 0;
}

.hero-stat {
  flex: 1;
  padding: 28px 0 28px 36px;
  border-left: 1px solid rgba(255, 255, 255, 0.09);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stat:first-child {
  border-left: none;
  padding-left: 0;
}

.hero-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero-stat-num em {
  font-style: normal;
  color: var(--red);
}

.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.42);
  font-weight: 400;
  letter-spacing: 0.05em;
}

/* Bottom edge */
.hero-edge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
}

.hero-edge svg {
  display: block;
  width: 100%;
}

/* ============================================================
   MARQUEE BAR
============================================================ */
.marquee-bar {
  background: var(--red);
  overflow: hidden;
  padding: 12px 0;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  padding: 0 36px;
}

.marquee-dot {
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.4);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ============================================================
   SERVICES
============================================================ */
#services {
  background: var(--off);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}

.svc-card {
  background: var(--white);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: default;
  transition: background 0.25s;
}

.svc-card:hover {
  background: var(--off);
}

.svc-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--dark2);
}

.svc-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(.25, .46, .45, .94);
  filter: saturate(0.85);
}

.svc-card:hover .svc-card-img img {
  transform: scale(1.05);
}

.svc-card-body {
  padding: 28px 30px 32px;
  flex: 1;
}

.svc-card-num {
  display: block;
  margin-bottom: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--red);
}

.svc-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.2;
}

.svc-card p {
  font-size: 17px;
  color: #0e0d0d;
  line-height: 1.72;
}

.svc-card-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--red);
  transition: width 0.35s ease;
}

.svc-card:hover .svc-card-bar {
  width: 100%;
}

/* ============================================================
   ABOUT
============================================================ */
#about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 620px;
}

.about-img {
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8);
}

.about-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgb(11 11 11 / 20%) 0%, rgba(11, 11, 11, 0.1) 100%);
}

/* floating badge */
.about-badge {
  position: absolute;
  bottom: 40px;
  right: -1px;
  background: var(--red);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-badge-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.6rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.about-badge-label {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.06em;
}

.about-text-col {
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 28px 0 36px;
  padding-left: 0px;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.check-icon {
  flex-shrink: 0;
  width: 24px;
}

.check-content strong {
  display: block;
  margin-bottom: 3px;
}

.check-item {
  font-size: 15px;
  color: #000000;
  line-height: 1.5;
}

.check-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border: 3px solid var(--red);
  margin-top: 1px;
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 0.2rem;
  border-radius: 50%;
  background: #f1e1e1;
}

.check-icon svg {
  stroke: var(--red);
  fill: none;
  stroke-width: 2.8;
  padding: 10px;
}

/* ============================================================
   ADVANCED PRINTING (DARK)
============================================================ */
#advanced {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

#advanced::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&q=75');
  background-size: cover;
  background-position: center;
  opacity: 0.06;
}

.adv-img-wrap {
  position: relative;
}

.adv-img {
  border: 4px solid var(--border-d);
  overflow: hidden;
}

.adv-img img {
  width: 100%;
  display: block;
  filter: saturate(0.7);
}

.adv-spec-bar {
  position: absolute;
  bottom: -1px;
  left: -1px;
  right: -1px;
  background: var(--red);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.adv-spec-bar-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.adv-spec-bar-dot {
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}

.adv-machines {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 36px;
}

.adv-machine {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-left: 2px solid transparent;
  transition: background 0.22s, border-color 0.22s;
  cursor: default;
}

.adv-machine:hover {
  background: rgba(255, 255, 255, 0.06);
  border-left-color: var(--red);
}

.adv-machine-icon {
  width: 44px;
  height: 44px;
  background: rgb(234 33 37);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 10px;
}

.adv-machine-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.5;
}

.adv-machine-name {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 0.93rem;
  font-weight: 600;
  color: #fff;
  display: block;
  margin-bottom: 3px;
}

.adv-machine-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.4;
}

/* ============================================================
   WHY CHOOSE US
============================================================ */
#why {
  background: var(--off);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  background: var(--border);
  margin-top: 64px;
}

.why-card {
  background: var(--white);
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  text-align: center;
  transition: background 0.25s;
}

.why-card:hover {
  background: var(--off);
}

.why-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--red);
  transition: width 0.35s ease;
}

.why-card:hover::after {
  width: 100%;
}

.why-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 20px;
  background: var(--red-dim);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.6;
}

.why-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.why-desc {
  font-size: 0.84rem;
  color: var(--mid);
  line-height: 1.65;
}

/* ============================================================
   STATS DARK BAND
============================================================ */
.stats-band {
  background: var(--dark);
  padding: 50px 0;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-cell {
  text-align: center;
  padding: 28px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.stat-cell:last-child {
  border-right: none;
}

.stat-n {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3.6rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 8px;
}

.stat-n em {
  font-style: normal;
  color: var(--red);
}

.stat-l {
  font-size: 1rem;
  color: rgb(255 255 255);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ============================================================
   GALLERY
============================================================ */
#gallery {
  background: var(--white);
}


.gal-cell {
  overflow: hidden;
  position: relative;
  background: #f6f4f1;
}

.gal-cell.span2 {
  grid-column: span 2;
}

.gal-cell.span-r2 {
  grid-row: span 2;
}

.gal-cell img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(.25, .46, .45, .94);
  filter: saturate(0.82);
  border-radius: 10px;
  border: 1px solid #1111;
}

.gal-cell:hover img {
  transform: scale(1.07);
}

.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 11, 11, 0.75) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 20px 22px;
}

.gal-cell:hover .gal-overlay {
  opacity: 1;
}

.gal-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}

/* ============================================================
   CONTACT
============================================================ */
#contact {
  background: var(--ink);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info {
  position: relative;
  z-index: 2;
}

.contact-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.06;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}

.contact-tagline em {
  font-style: normal;
  color: var(--red);
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 36px 0;
}

.c-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.c-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.c-icon {
  width: 42px;
  height: 42px;
  background: rgba(198, 40, 40, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.c-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.6;
}

.c-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 5px;
  font-family: 'Barlow Condensed', sans-serif;
}

.c-val {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.55;
}

.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  background: #25D366;
  color: #fff;
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: background 0.22s, transform 0.18s, box-shadow 0.22s;
}

.wa-btn:hover {
  background: #1ebb59;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.3);
}

.wa-btn svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

/* FORM */
.contact-form-wrap {
  background: var(--dark2);
  padding: 44px 40px;
  border-top: 3px solid var(--red);
}

.form-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.form-sub {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 32px;
}

.f-group {
  margin-bottom: 16px;
}

.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.f-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.40);
  margin-bottom: 7px;
  font-family: 'Barlow Condensed', sans-serif;
}

.f-input,
.f-textarea,
.f-select {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.92rem;
  font-family: 'Barlow', sans-serif;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
}

.f-input::placeholder,
.f-textarea::placeholder {
  color: rgba(255, 255, 255, 0.22);
}

.f-input:focus,
.f-textarea:focus,
.f-select:focus {
  border-color: var(--red);
  background: rgba(198, 40, 40, 0.05);
}

.f-textarea {
  min-height: 120px;
  resize: vertical;
}

.f-select {
  color: rgba(255, 255, 255, 0.70);
  cursor: pointer;
}

.f-select option {
  background: var(--dark);
}

.f-submit {
  width: 100%;
  padding: 16px;
  background: var(--red);
  color: #fff;
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.22s, transform 0.18s, box-shadow 0.22s;
  margin-top: 8px;
}

.f-submit:hover {
  background: var(--red-h);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(198, 40, 40, 0.35);
}

/* ============================================================
   FOOTER
============================================================ */
footer {
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 52px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 28px;
}

.f-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.f-logo-icon {
  width: 34px;
  height: 34px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
}

.f-logo-icon svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.8;
}

.f-logo-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
}

.f-logo-name span {
  color: var(--red);
}

.f-desc {
  font-size: 17px;
  color: rgb(255 255 255 / 96%);
  line-height: 1.75;
}

.f-col-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgb(255 255 255);
  margin-bottom: 18px;
}

.f-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 0px;
}

.f-links a {
  font-size: 17px;
  color: rgb(255 255 255);
  transition: color 0.2s;
  cursor: pointer;
}

.f-links a:hover {
  color: #fff;
}

.f-contact-item {
  display: flex;
  gap: 10px;
  font-size: 17px;
  color: rgb(255 255 255);
  line-height: 1.5;
  margin-bottom: 13px;
}

.f-contact-item svg {
  width: 14px;
  height: 14px;
  stroke: #ffffff;
  fill: none;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  padding: 15px 0px 15px 0px;
  font-size: 17px;
  color: rgb(255 255 255);
  border-top: 1px solid #e2d9d973;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width:1100px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
    z-index: 999;
    /* IMPORTANT */
  }

  .nav-links.active {
    max-height: 600px;
    opacity: 1;
    visibility: visible;
  }

}

@media (max-width:960px) {
  .wrap {
    padding: 0 28px;
  }

  .wrap-md {
    padding: 0 28px;
  }

  .hero-title {
    font-size: clamp(3rem, 9vw, 5.5rem);
  }

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

  .about-img {
    min-height: 380px;
  }

  .about-text-col {
    padding: 52px 36px;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .gal-cell.span2,
  .gal-cell.span-r2 {
    grid-column: auto;
    grid-row: auto;
  }

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

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

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

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

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

  .hero-stats {
    flex-direction: column;
    gap: 0;
  }

  .hero-stat {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    padding: 16px 0;
  }
}

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

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

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

  .f-row {
    grid-template-columns: 1fr;
  }

  .stats-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.logo-main {
  width: 100%;
}

/* GLOBAL */
.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
}

.section-desc {
  max-width: 700px;
  margin: auto;
  color: #ccc;
}

/* ABOUT SECTION */
.about-section {
  background: #000;
  color: #fff;
  top: 60px;
}

.about-title {
  font-size: 48px;
  font-weight: 700;
}

.text-orange {
  color: #ff3c00;
}

.about-text {
  color: #e5e5e5;
  line-height: 1.7;
  font-size: 17px;
  width: 95%;
}

/* IMAGE */
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* VISION MISSION */
.vm-section {
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  color: #fff;
  padding: 80px 0px;
  padding-top: 7rem;
}

.vm-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
}

.vm-subtitle {
  max-width: 80%;
  margin: auto;
  color: #ffffff;
  font-size: 17px;
}

/* Card Design */
.vm-card {
  background: #111;
  padding: 40px 25px;
  border-radius: 15px;
  position: relative;
  transition: 0.4s;
  overflow: hidden;
}

/* Gradient Border Effect */
.vm-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 15px;
  padding: 2px;
  background: linear-gradient(45deg, #ff3c00, #ff0000, #000);
  -webkit-mask: linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* Hover Effect */
.vm-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255, 0, 0, 0.3);
}

/* Icon Style */
.icon-box {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(45deg, #ff3c00, #ff0000);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
}

/* Heading */
.vm-card h4 {
  font-weight: 600;
  margin-bottom: 15px;
}

.vm-card h4 span {
  color: #ff3c00;
}

/* Text */
.vm-card p {
  font-size: 17px;
  color: #ffffff;
  line-height: 1.6;
  width: 92%;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  /* number of lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vision-mission-section {
  background: linear-gradient(135deg, #1a0000, #000);
  padding: 80px 0;
}

.vm-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  transition: 0.3s;
  height: 100%;
}

.vm-box:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
}

.vm-icon {
  font-size: 40px;
  color: #ff3c00;
  margin-bottom: 15px;
}

/* SECTION BACKGROUND */
.core-section {
  background: #ef1b1b;
  padding: 80px 0;
}

/* TITLE */
.core-title {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 60px;
  letter-spacing: 1px;
}

/* 5 COLUMN GRID */
.core-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}

/* CARD */
.core-card {
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 15px;
  padding: 40px 25px;
  text-align: center;
  color: #fff;
  transition: 0.3s;
}

/* HOVER */
.core-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.05);
}

/* ICON CIRCLE */
.core-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ICON */
.core-icon i {
  color: #ef1b1b;
  font-size: 28px;
}

/* TEXT */
.core-card h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

.core-card p {
  font-size: 17px;
  line-height: 1.6;
  color: #f5f5f5;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .core-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .core-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .core-wrapper {
    grid-template-columns: 1fr;
  }
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .about-title {
    font-size: 32px;
  }

  .about-img {
    height: 300px;
  }
}

:root {
  --ink: #202020;
  --accent: #f59e0b;
}

/* ICON BOX */
.icon-box {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: var(--accent);
  font-size: 18px;
  transition: 0.3s;
}

.adv-item:hover .icon-box {
  background: var(--accent);
  color: #000;
}

/* TEXT */
.adv-item h6 {
  color: #fff;
  font-weight: 600;
}

.adv-item small {
  color: #ccc;
}

/* IMAGE */
img {
  width: 100%;
  height: auto;
}

/* SPEC BAR */
.spec-bar {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #111;
  padding: 10px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.spec-bar .dot {
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
}

/* MOBILE */
@media (max-width: 768px) {
  .spec-bar {
    flex-wrap: wrap;
    font-size: 11px;
    padding: 8px 12px;
  }
}

.adv-machine-icon i {
  color: #ffffff;
}

.advanced-section {
  padding: 100px 0px;
  padding-top: 7rem;
}

.icon-box {
  width: 52px;
  height: 52px;
  background: rgba(220, 53, 69, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #dc3545;
}

#management .border {
  border-color: #eee !important;
  transition: 0.3s ease;
}

.management {
  padding: 100px 0px;
  padding-top: 9rem;
}

#management .border:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* REVIEWS */
.reviews-sec {
  padding: 100px 0;
}

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

.review-card {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.stars {
  color: #ffc107;
  margin-bottom: 15px;
}

.review-text {
  font-style: italic;
  margin-bottom: 20px;
}

.review-user {
  display: flex;
  align-items: center;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #c86a6a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 15px;
}

.review-user h6 {
  margin-bottom: 5px;
}

p {
  line-height: 1.7;
  font-size: 17px;
}

.service-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  transition: 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  position: relative;
}

.service-card img {
  width: 100%;
  height: 265px;
  object-fit: cover;
}

.service-card h5 {
  font-weight: 600;
  margin-top: 10px;
}

.service-card p {
  font-size: 14px;
  color: #666;
}

.service-number {
  font-size: 12px;
  font-weight: 600;
  color: #999;
  letter-spacing: 1px;
  display: none;
}

/* Hover Effect */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Bottom Accent Bar */
.service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: #dc3545;
  transition: 0.3s;
}

.service-card:hover::after {
  width: 100%;
}

.hero-slide {
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

/* Dark overlay for readability */
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.082);
}

/* Content */
.hero-content {
  position: relative;
  color: #fff;
}

.hero-content h1 {
  font-size: 75px;
  font-weight: 900;
  font-family: 'Barlow Condensed';
  color: #e21a1d;
}

.hero-content h6 {
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 15px;
  color: #616161;
  font-weight: 500;
  width: 90%;
}

/* CMYK Colors */
.c {
  color: cyan;
}

.m {
  color: magenta;
}

.y {
  color: yellow;
}

.k {
  color: black;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-slide {
    text-align: center;
  }

  .hero-content {
    margin: auto;
  }

  .hero-content h1 {
    font-size: 32px;
  }
}


/* =============================================
       ROOT VARIABLES
    ============================================= */
:root {
  --hp-red: #c0272d;
  --hp-red-dark: #a01f24;
  --hp-dark: #1a1a1a;
  --hp-dark2: #111111;
  --hp-white: #ffffff;
  --nav-height: 70px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', 'Cairo', sans-serif;
  overflow-x: hidden;
}

/* =============================================
       NAVBAR
    ============================================= */
#mainNav {
  position: fixed;
  top: 0px;
  left: 0;
  right: 0;
  z-index: 1050;
  background: transparent;
  padding: 10px 20px 0;
}

#mainNav .navbar-inner {
  max-width: 100%;
  margin: 0 auto;
  height: 100px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--hp-white);
  border-radius: 14px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, .13);
}

/* -- Logo -- */
.hp-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.hplogoimg {
  height: 90px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* -- Nav Links -- */
.hp-nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  gap: 0;
}

.hp-nav-links .nav-item {
  position: relative;
}

.hp-nav-links .nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 15px;
  font-size: 14.5px;
  font-weight: 600;
  color: #2c2c2c;
  border-bottom: 2.5px solid transparent;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
}

.hp-nav-links .nav-link:hover,
.hp-nav-links .nav-link.active {
  color: var(--hp-red);
  border-bottom-color: var(--hp-red);
}

.hp-nav-links .nav-link i {
  font-size: 10px;
  transition: transform .2s;
}

.hp-nav-links .has-drop:hover .nav-link i {
  transform: rotate(180deg);
}

/* Dropdown */
.hp-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 210px;
  background: var(--hp-white);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .14);
  border-top: 3px solid var(--hp-red);
  border-radius: 0 0 8px 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity .22s, transform .22s;
  z-index: 1;
}

.hp-nav-links .has-drop:hover .hp-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.hp-dropdown a {
  display: block;
  padding: 11px 20px;
  font-size: 13.5px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  transition: background .15s, color .15s;
}

.hp-dropdown a:hover {
  background: #fdf0f0;
  color: var(--hp-red);
}

/* CTA Button */
.hp-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  background: var(--hp-red);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(192, 39, 45, .38);
  transition: background .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
  letter-spacing: .4px;
  flex-shrink: 0;
}

.hp-cta:hover {
  background: var(--hp-red-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 26px rgba(192, 39, 45, .50);
  color: #fff;
}

.hp-cta .cta-icon {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, .18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

/* Hamburger Toggle */
.hp-toggler {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
  padding: 6px;
  background: transparent;
  border: none;
}

.hp-toggler span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--hp-dark);
  border-radius: 2px;
  transition: .3s;
}

.hp-toggler.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hp-toggler.open span:nth-child(2) {
  opacity: 0;
}

.hp-toggler.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* =============================================
       HERO SECTION
    ============================================= */
.hero-section {
  margin-top: calc(var(--nav-height) + 10px);
  position: relative;
  width: 100%;
  background: var(--hp-dark2);
  overflow: hidden;
}

/* Carousel Slide */
.hero-slide {
  position: relative;
  min-height: calc(100vh - var(--nav-height) - 80px);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

/* Dark gradient overlay ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â left heavy, fades right */
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
      rgba(213, 211, 211, 0.552) 0%,
      rgba(234, 233, 233, 0.327) 40%,
      rgba(199, 197, 197, 0) 70%,
      rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}



.hero-slide .slide-body {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 70px 0 80px;
}

/* Eyebrow */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgb(122 30 33);
  margin-bottom: 22px;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 38px;
  height: 2px;
  background: var(--hp-red);
}

/* Heading */
.hero-heading {
  font-size: clamp(34px, 4.5vw, 62px);
  font-weight: 800;
  line-height: 1.12;
  color: #000000;
  margin-bottom: 22px;
  max-width: 745px;
}

.hero-heading .red-line {
  display: block;
  color: var(--hp-red);
}

/* Subtext */
.hero-sub {
  font-size: 16px;
  color: rgb(21 21 21 / 80%);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 460px;
}

/* Buttons */
.hero-btns {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.btn-explore {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 30px;
  background: var(--hp-red);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  transition: background .2s, transform .15s;
}

.btn-explore:hover {
  background: var(--hp-red-dark);
  color: #fff;
  transform: translateY(-2px);
}

.btn-explore .arrow-wrap {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, .20);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.btn-watch {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: #fff;
}

.btn-watch .play-ring {
  width: 50px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, .45);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: border-color .2s, background .2s;
  flex-shrink: 0;
}

.btn-watch:hover .play-ring {
  border-color: var(--hp-red);
  background: var(--hp-red);
}

.btn-watch-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.btn-watch-text strong {
  font-size: 14px;
  font-weight: 700;
}

.btn-watch-text span {
  font-size: 12px;
  color: rgba(255, 255, 255, .55);
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, .12);
  border: 1.5px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  opacity: 1;
  top: 50%;
  transform: translateY(-50%);
  transition: background .2s, border-color .2s;
}

.carousel-control-prev {
  left: 18px;
}

.carousel-control-next {
  right: 18px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: var(--hp-red);
  border-color: var(--hp-red);
  opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 18px;
  height: 18px;
}

/* Indicators */
.carousel-indicators {
  bottom: 18px;
  margin-bottom: 0;
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .40);
  border: none;
  opacity: 1;
  transition: background .2s, transform .2s;
}

.carousel-indicators .active {
  background: var(--hp-red);
  transform: scale(1.3);
}

/* =============================================
       FEATURE BAR
    ============================================= */
.feature-bar {
  background: var(--hp-dark);
  padding: 0;
}

.feature-bar-row {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 26px 30px;
  border-right: 1px solid rgba(255, 255, 255, .09);
}

.feature-item:last-child {
  border-right: none;
}

.feature-icon-wrap {
  width: 56px;
  height: 56px;
  border: 2px solid var(--hp-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hp-red);
  font-size: 22px;
  flex-shrink: 0;
}

.feature-label h5 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}

.feature-label p {
  font-size: 12.5px;
  color: rgba(255, 255, 255, .50);
  line-height: 1.55;
  margin: 0;
}

/* Hero Section Full Width */
.hero-section {
  width: 100%;
}

.hero-section .carousel,
.hero-section .carousel-inner {
  width: 100%;
}

.carousel-item {
  width: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-slide {
  width: 100%;
  display: flex;
  align-items: center;
}

/* =============================================
       RESPONSIVE
    ============================================= */
@media (max-width: 1100px) {
  .hp-nav-links .nav-link {
    padding: 10px 11px;
    font-size: 13.5px;
  }
}

@media (max-width: 992px) {

  /* Collapse nav */
  .hp-nav-links {
    position: fixed;
    top: calc(var(--nav-height) + 14px);
    left: 20px;
    right: 20px;
    bottom: auto;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 16px 0 30px;
    overflow-y: auto;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: transform .3s ease, opacity .3s ease;
    margin: 0;
    z-index: 999;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .15);
    max-height: calc(100vh - var(--nav-height) - 30px);
  }

  .hp-nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .hp-nav-links .nav-item {
    width: 100%;
  }

  .hp-nav-links .nav-link {
    padding: 14px 24px;
    font-size: 15px;
    border-bottom: 1px solid #f0f0f0;
    border-left: none;
    width: 100%;
  }

  .hp-dropdown {
    position: static;
    opacity: 1;
    pointer-events: all;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: #fdf5f5;
    display: none;
  }

  .hp-nav-links .has-drop.open .hp-dropdown {
    display: block;
  }

  .hp-toggler {
    display: flex;
  }

  .hp-cta {
    display: none;
  }

  .feature-bar-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .09);
  }

  .feature-item:nth-child(3),
  .feature-item:nth-child(4) {
    border-bottom: none;
  }
}

@media (max-width: 576px) {
  :root {
    --nav-height: 70px;
  }

  .hplogoimg {
    height: 50px;
  }

  .hero-heading {
    font-size: 28px;
  }

  .hero-sub {
    font-size: 14px;
  }

  .btn-explore {
    padding: 12px 20px;
    font-size: 12px;
  }

  .feature-bar-row {
    grid-template-columns: 1fr;
  }

  .feature-item {
    border-bottom: 1px solid rgba(255, 255, 255, .09);
  }

  .feature-item:last-child {
    border-bottom: none;
  }

  .hero-slide {
    min-height: calc(46svh - var(--nav-height) - 70px);
  }
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background-color: #c0272d;
  color: #fff;
  text-align: center;
  line-height: 40px;
  font-size: 40px;
  border-radius: 50%;
  text-decoration: none;
  display: none;
  z-index: 999;
  transition: all 0.3s ease;
}

.back-to-top:hover {
  background-color: #a10606;
}

@media (max-width: 575.98px) {
  #services {
    background: var(--off);
    padding-top: 10rem !important;
  }

}

@media (max-width: 767.98px) {
  #services {
    background: var(--off);
    padding-top: 10rem !important;
  }

}

@media (max-width: 991.98px) {
  #services {
    background: var(--off);
    padding-top: 10rem !important;
  }
}

#services {
  background: var(--off);
  padding-top: 10rem !important;
}

@media (max-width: 575.98px) { 
.carousel-item {
    width: 100%;
    background-size: contain !important;
    background-position: center center;
    background-repeat: no-repeat;
}
.hero-eyebrow{
  display: none;
}
.hero-sub{
  display: none;
}
.hero-btns{
  display: none;
}
.hero-slide .slide-body {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 15px 0 11px !important;
}


}

.whatsapp-float{
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 80px;
    right: 25px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s ease;
}

.whatsapp-float:hover{
    background-color: #1ebe5d;
    color: #fff;
    transform: scale(1.1);
}
