/* ============================================================
   MEI COPPER — MASTER STYLESHEET
   Brand: Mittal Engineering Industries | Est. 1998
   Colors: Red #C8202D | Dark Grey #555555 | White #FFFFFF
   ============================================================ */

/* ── Google Fonts Import ── */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* ============================================================
   1. CSS VARIABLES (DESIGN TOKENS)
   ============================================================ */
:root {
  /* Brand Colors */
  --red:           #C8202D;
  --red-dark:      #A01820;
  --red-light:     #E53545;
  --grey-dark:     #555555;
  --grey-mid:      #888888;
  --grey-light:    #D0D0D0;
  --grey-bg:       #F5F5F5;
  --white:         #FFFFFF;
  --black:         #111111;
  --black-soft:    #1A1A1A;

  /* ── Brand Accent Palette (About / Process sections) ── */
  --red-shadow:     rgba(200, 32, 45, 0.30);
  --red-glow-sm:    rgba(200, 32, 45, 0.18);
  --red-glow-xs:    rgba(200, 32, 45, 0.10);
  --red-border:     rgba(200, 32, 45, 0.22);
  --red-border-sm:  rgba(200, 32, 45, 0.15);
  --red-gradient:   linear-gradient(135deg, #C8202D 0%, #E53545 55%, #A01820 100%);
  --red-gradient-r: linear-gradient(135deg, #E53545 0%, #C8202D 100%);
  --red-gradient-h: linear-gradient(90deg,  #C8202D 0%, #E53545 100%);
  --sec-light:      #F5F5F5;
  --text-dark-1:    #3D3D3D;
  --text-dark-muted:#777777;

  /* Topbar */
  --topbar-bg:     #111111;
  --topbar-text:   #CCCCCC;
  --topbar-accent: var(--red);
  --topbar-height: 40px;

  /* Header/Navbar */
  --nav-bg:        #FFFFFF;
  --nav-bg-scroll: rgba(255, 255, 255, 0.97);
  --nav-text:      #1A1A1A;
  --nav-hover:     var(--red);
  --nav-active:    var(--red);
  --nav-height:    80px;
  --nav-height-scroll: 64px;
  --nav-border-scroll: var(--red);

  /* Footer */
  --footer-bg:        #1A1A1A;
  --footer-top-bg:    #111111;
  --footer-text:      #AAAAAA;
  --footer-heading:   #FFFFFF;
  --footer-link:      #AAAAAA;
  --footer-link-hover: var(--red);
  --footer-border:    #2E2E2E;
  --footer-bar-bg:    #0D0D0D;

  /* Typography */
  --font-heading:  'Bebas Neue', cursive;
  --font-body:     'DM Sans', sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.65;

  /* Spacing */
  --section-py:    80px;
  --section-py-sm: 50px;

  /* Shadows */
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:   0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.18);
  --shadow-red:  0 4px 20px rgba(200,32,45,0.25);

  /* Border Radius */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;

  /* Transition */
  --transition:  all 0.3s ease;
  --transition-slow: all 0.5s ease;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: var(--font-size-base);
  overflow-y: scroll !important; /* FORCE scroll always enabled */
}

body {
  font-family: var(--font-body);
  font-size: 1rem; /* 16px */
  line-height: var(--line-height-base);
  color: var(--black-soft);
  background-color: var(--white);
  overflow-x: hidden;
  overflow-y: auto !important; /* never lock scroll */
}

/* ── Global Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.15;
  color: var(--black-soft);
  letter-spacing: 0.02em;
}

/* All text below headings / section titles — strictly 16px */
p,
li,
td,
th,
label,
input,
textarea,
select,
.section-desc,
.card-text,
.card-body p,
h1 + p,
h2 + p,
h3 + p,
h4 + p,
.subtitle,
.lead,
.desc,
.text-body,
[class*="-text"],
[class*="-desc"],
[class*="-subtitle"] {
  font-size: 1rem !important; /* 16px — enforced globally */
  font-family: var(--font-body);
  line-height: var(--line-height-base);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

ul { list-style: none; }

/* ── Utility Classes ── */
.text-red       { color: var(--red) !important; }
.text-grey      { color: var(--grey-dark) !important; }
.bg-red         { background-color: var(--red) !important; }
.bg-dark-custom { background-color: var(--black) !important; }
.bg-grey-light  { background-color: var(--grey-bg) !important; }

.section-py     { padding: var(--section-py) 0; }
.section-py-sm  { padding: var(--section-py-sm) 0; }

/* ── Section Title Style (reusable) ── */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--black-soft);
  margin-bottom: 16px;
}

.section-title span,
.section-title .accent {
  color: var(--red);
}

.section-divider {
  width: 50px;
  height: 3px;
  background: var(--red);
  margin-bottom: 20px;
}

.section-divider.center { margin-left: auto; margin-right: auto; }

/* ── Button Styles ── */
.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 2px solid var(--red);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}
.btn-red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

.btn-outline-red {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: transparent;
  color: var(--red);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 2px solid var(--red);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline-red:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}


/* ============================================================
   3. TOP BAR
   ============================================================ */
#topbar {
  background-color: var(--topbar-bg);
  height: var(--topbar-height);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1001;
  border-bottom: 1px solid #222;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Left: contact info */
.topbar-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  color: var(--topbar-text);
  white-space: nowrap;
}

.topbar-item i {
  color: var(--red);
  font-size: 0.78rem;
}

.topbar-item a {
  color: var(--topbar-text);
  transition: var(--transition);
}
.topbar-item a:hover { color: var(--red); }

.topbar-divider {
  width: 1px;
  height: 16px;
  background: #333;
}

/* Right: social + brochure */
.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #2A2A2A;
  color: #AAAAAA;
  font-size: 0.72rem;
  transition: var(--transition);
}
.topbar-social a:hover {
  background: var(--red);
  color: var(--white);
}

.topbar-brochure {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: var(--red);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.topbar-brochure:hover {
  background: var(--red-dark);
  color: var(--white);
}
.topbar-brochure i { font-size: 0.72rem; }


/* ============================================================
   4. HEADER / NAVBAR
   ============================================================ */
#main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--nav-bg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-slow);
}

#main-header.scrolled {
  background: var(--nav-bg-scroll);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 0 var(--red), var(--shadow-md);
}

.navbar-custom {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: height 0.3s ease;
}

#main-header.scrolled .navbar-custom {
  height: var(--nav-height-scroll);
}

/* Logo */
.navbar-logo img {
  height: 56px;
  width: auto;
  transition: height 0.3s ease;
  object-fit: contain;
}
#main-header.scrolled .navbar-logo img { height: 44px; }

/* Nav links */
.navbar-nav-custom {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin-bottom: 0px;
}

.nav-item-custom {
  position: relative;
}

.nav-link-custom {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--nav-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link-custom:hover,
.nav-link-custom.active {
  color: var(--red);
  background: rgba(200, 32, 45, 0.06);
}

.nav-link-custom i.arrow {
  font-size: 0.65rem;
  transition: transform 0.25s ease;
}
.nav-item-custom:hover .nav-link-custom i.arrow { transform: rotate(180deg); }

/* Dropdown */
.dropdown-menu-custom {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-top: 3px solid var(--red);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
  z-index: 999;
}

.nav-item-custom:hover .dropdown-menu-custom {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item-custom {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--black-soft);
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.dropdown-item-custom:hover {
  color: var(--red);
  background: rgba(200, 32, 45, 0.05);
  border-left-color: var(--red);
  padding-left: 24px;
}

.dropdown-item-custom i {
  color: var(--red);
  font-size: 0.78rem;
  width: 16px;
}

/* ── Products Mega Menu ── */
.nav-item-products {
  position: static; /* let containing block be #main-header (position:sticky) */
}

.products-mega-menu {
  position: absolute;
  top: 100%;      /* flush below the sticky header */
  left: 0;
  right: 0;
  width: 100%;
  background: #f7f7f7;
  border-top: 3px solid var(--red);
  box-shadow: 0 8px 40px rgba(0,0,0,0.14);
  padding: 24px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
  z-index: 999;
}

.nav-item-custom.nav-item-products:hover .products-mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.products-mega-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.products-mega-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: #ffffff;
  border: 1.5px solid #e8e8e8;
  border-radius: 10px;
  text-decoration: none;
  color: var(--black-soft);
  transition: all 0.22s ease;
  min-height: 68px;
}

.products-mega-card:hover {
  border-color: var(--red);
  box-shadow: 0 4px 16px rgba(200, 32, 45, 0.12);
  color: var(--red);
}

.products-mega-img {
  position: relative;
  width: 130px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, #f5ede0 0%, #ecd8bb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.products-mega-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 1;
  background: #fff;
}

.products-mega-fallback {
  font-size: 1.3rem;
  color: #B87333;
  z-index: 0;
  flex-shrink: 0;
}

.products-mega-name {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: inherit;
  line-height: 1.3;
}

/* ── Company Profile Mega Menu ── */
.nav-item-company {
  position: static;
}

.company-mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background: #ffffff;
  border-top: 3px solid var(--red);
  border-bottom: 1px solid #e8e8e8;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
  z-index: 999;
}

.nav-item-custom.nav-item-company:hover .company-mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.company-mega-grid {
  display: flex;
  align-items: stretch;
}

.company-mega-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 30px 16px 24px;
  text-decoration: none;
  color: #222222;
  border-right: 1px solid #ebebeb;
  transition: background 0.22s ease, color 0.22s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.company-mega-card:last-child {
  border-right: none;
}

/* Red underline slide-in on hover */
.company-mega-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.company-mega-card:hover::after {
  transform: scaleX(1);
}

.company-mega-card:hover {
  color: var(--red);
  background: #fdf5f5;
}

.company-mega-icon-wrap {
  font-size: 3rem;
  color: #1a1a1a;
  line-height: 1;
  display: block;
  transition: color 0.22s ease, transform 0.22s ease;
}

.company-mega-card:hover .company-mega-icon-wrap {
  color: var(--red);
  transform: translateY(-4px);
}

.company-mega-label {
  font-family: var(--font-body);
  font-size: 14px !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: inherit;
  line-height: 1.4;
}

/* ── Products Specification Mega Menu ── */
.nav-item-spec {
  position: static;
}

.spec-mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background: #f7f7f7;
  border-top: 3px solid var(--red);
  box-shadow: 0 8px 40px rgba(0,0,0,0.14);
  padding: 20px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
  z-index: 999;
}

.nav-item-custom.nav-item-spec:hover .spec-mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.spec-mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

/* Brass icon background override */
.spec-img--brass {
  background: linear-gradient(135deg, #f5ede0 0%, #dfc28a 100%) !important;
}

.spec-img--brass .products-mega-fallback {
  color: #8a5c1a;
}

/* Copper icon background override */
.spec-img--copper {
  background: linear-gradient(135deg, #fde8d8 0%, #d49070 100%) !important;
}

.spec-img--copper .products-mega-fallback {
  color: #7a3010;
}

/* Nav CTA button */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  background: var(--red);
  color: var(--white) !important;
  font-size: 0.85rem !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  margin-left: 8px;
	margin-right: 16px;
  transition: var(--transition);
}
.nav-cta:hover {
  background: var(--red-dark) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-red);
}

.nav-cta-logo {
  height: 66px;
  width: auto;
  object-fit: contain;
}


/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--black-soft);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 3px solid var(--red);
  box-shadow: var(--shadow-md);
  padding: 16px 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.mobile-nav.open {
  display: block;
  max-height: 600px;
	overflow: scroll;
}

.mobile-nav-link {
  display: block;
  padding: 11px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--black-soft);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-left: 3px solid transparent;
  transition: var(--transition);
}
.mobile-nav-link:hover {
  color: var(--red);
  border-left-color: var(--red);
  background: rgba(200,32,45,0.04);
  padding-left: 30px;
}

.mobile-nav-sub {
  padding: 0 24px 8px 40px;
  display: none;
}
.mobile-nav-sub.open { display: block; }

.mobile-nav-sub a {
  display: block;
  padding: 7px 0;
  font-size: 0.85rem;
  color: var(--grey-dark);
  border-bottom: 1px solid #F0F0F0;
  transition: var(--transition);
}
.mobile-nav-sub a:hover { color: var(--red); padding-left: 6px; }

.mobile-nav-divider { height: 1px; background: #F0F0F0; margin: 4px 0; }


/* ============================================================
   5. FOOTER
   ============================================================ */
#main-footer {
  background-color: var(--footer-bg);
}

/* Footer top strip — red brand bar */
.footer-brand-bar {
  background: var(--red);
  padding: 22px 0;
}

.footer-brand-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: var(--white);
  letter-spacing: 0.05em;
}

.footer-tagline span {
  opacity: 0.75;
  font-size: 0.7em;
  display: block;
  letter-spacing: 0.12em;
  font-family: var(--font-body);
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 2px;
}

/* Footer main body */
.footer-body {
  background: var(--footer-top-bg);
  padding: 60px 0 40px;
  border-bottom: 1px solid var(--footer-border);
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  position: relative;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--red);
}

/* Footer logo col */
.footer-logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
  /* invert for dark background if needed */
  filter: brightness(0) invert(1);
}

.footer-about-text {
  font-size: 1rem;
  color: var(--footer-text);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #2A2A2A;
  color: #AAAAAA;
  font-size: 0.85rem;
  border: 1px solid #333;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  transform: translateY(-3px);
}

/* Footer links */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-link-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  font-size: 1rem;
  color: var(--footer-link);
  border-bottom: 1px solid #1E1E1E;
  transition: var(--transition);
}

.footer-link-item i {
  color: var(--red);
  font-size: 0.65rem;
  flex-shrink: 0;
}

.footer-link-item:hover {
  color: var(--footer-link-hover);
  padding-left: 6px;
}

/* Footer contact */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid #1E1E1E;
}

.footer-contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: rgba(200,32,45,0.12);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-icon i {
  color: var(--red);
  font-size: 0.8rem;
}

.footer-contact-text {
  flex: 1;
}

.footer-contact-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #666;
  margin-bottom: 2px;
}

.footer-contact-value {
  font-size: 1rem;
  color: var(--footer-link);
  line-height: 1.5;
}

.footer-contact-value a {
  color: var(--footer-link);
  transition: var(--transition);
}
.footer-contact-value a:hover { color: var(--red); }

/* Footer bottom bar */
.footer-bottom {
  background: var(--footer-bar-bg);
  padding: 18px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright {
  font-size: 0.82rem;
  color: #666;
}

.footer-copyright a {
  color: var(--red);
  font-weight: 600;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: #666;
  transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--red); }

/* Footer newsletter */
.footer-newsletter {
  display: flex;
  gap: 0;
  margin-top: 16px;
}

.footer-newsletter input {
  flex: 1;
  padding: 10px 14px;
  background: #1E1E1E;
  border: 1px solid #333;
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  transition: var(--transition);
}
.footer-newsletter input::placeholder { color: #555; }
.footer-newsletter input:focus { border-color: var(--red); }

.footer-newsletter button {
  padding: 10px 16px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.footer-newsletter button:hover { background: var(--red-dark); }


/* ============================================================
   6. SCROLL TO TOP BUTTON
   ============================================================ */
#scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--transition);
  box-shadow: var(--shadow-red);
  z-index: 999;
}

#scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#scroll-top:hover {
  background: var(--red-dark);
  transform: translateY(-3px);
}


/* ============================================================
   7. PAGE LOADER
   ============================================================ */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.loader-logo {
  height: 60px;
  width: auto;
  animation: loaderPulse 1.2s ease-in-out infinite;
}

.loader-bar {
  width: 180px;
  height: 3px;
  background: #EEE;
  border-radius: 99px;
  overflow: hidden;
}

.loader-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--red);
  border-radius: 99px;
  animation: loaderFill 1.5s ease forwards;
}

@keyframes loaderPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}

@keyframes loaderFill {
  0%   { width: 0%; }
  100% { width: 100%; }
}


/* ============================================================
   8. RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 991px) {
  :root {
    --section-py: 60px;
    --nav-height: 70px;
  }

  .topbar-left .topbar-item:last-child,
  .topbar-left .topbar-divider:last-child { display: none; }

  .navbar-nav-custom { display: none; }
  .hamburger { display: flex; }

  .footer-body .row > [class*="col-"] { margin-bottom: 36px; }
}

/* Mobile */
@media (max-width: 767px) {
  :root {
    --section-py: 50px;
    --topbar-height: auto;
  }

  #topbar { padding: 8px 0; display: none;}

  .topbar-inner {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .topbar-left {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .topbar-item { font-size: 0.75rem; }

  .topbar-right { gap: 10px; }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links { justify-content: center; }

  .footer-brand-bar-inner { justify-content: center; text-align: center; }
}

/* Large screens */
@media (min-width: 1400px) {
  :root { --section-py: 100px; }
}



/* ============================================================
   HERO VIDEO SECTION
   Add this at the END of your style.css
   ============================================================ */

/* ── Section Wrapper ── */
.hero-video-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  /* overflow: hidden; */
  background: #0D0D0D; /* fallback while video loads */
}

/* ── Background Video ── */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ── Overlays ── */
.hero-overlay {
  position: absolute;
  inset: 0;
  /* Deep dark gradient — left side darker for text readability */
  background: linear-gradient(
    105deg,
    rgba(10, 10, 10, 0.82) 0%,
    rgba(10, 10, 10, 0.60) 50%,
    rgba(10, 10, 10, 0.30) 100%
  );
  z-index: 1;
}

/* Bottom fade for stats bar blend */
.hero-overlay::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 220px;
  background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, transparent 100%);
}

/* Subtle grain texture for cinematic feel */
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  pointer-events: none;
}

/* ── Content ── */
.hero-content-wrap {
  position: relative;
  z-index: 3;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Tag line */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
  opacity: 0; /* GSAP animates this */
}

.hero-tag-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: tagPulse 2s ease-in-out infinite;
}

@keyframes tagPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

/* Main heading */
.hero-heading {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 1.0;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  opacity: 0; /* GSAP animates */
}

.hero-heading-accent {
  color: var(--red);
  position: relative;
  display: inline-block;
}

/* Subtext */
.hero-subtext {
  font-size: 1rem !important;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 560px;
  opacity: 0; /* GSAP animates */
}

/* CTA Buttons row */
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0; /* GSAP animates */
}

/* ── Play Button (right side) ── */
.hero-play-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px;
}

.hero-play-icon {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: var(--red);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.5rem;
  padding-left: 5px; /* optical center for play icon */
  transition: var(--transition);
  box-shadow: 0 0 0 0 rgba(200, 32, 45, 0.4);
  animation: playPulse 2.5s ease-in-out infinite;
}

.hero-play-btn:hover .hero-play-icon {
  background: var(--red-dark);
  transform: scale(1.08);
}

@keyframes playPulse {
  0%   { box-shadow: 0 0 0 0 rgba(200, 32, 45, 0.5); }
  70%  { box-shadow: 0 0 0 28px rgba(200, 32, 45, 0); }
  100% { box-shadow: 0 0 0 0 rgba(200, 32, 45, 0); }
}

/* Rotating rings */
.hero-play-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-play-ring-1 {
  width: 120px;
  height: 120px;
  animation: ringRotate 8s linear infinite;
  border-style: dashed;
}

.hero-play-ring-2 {
  width: 155px;
  height: 155px;
  animation: ringRotate 12s linear infinite reverse;
  border-color: rgba(200, 32, 45, 0.25);
}

@keyframes ringRotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-play-label {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
  transition: var(--transition);
}

.hero-play-btn:hover .hero-play-label { color: var(--white); }

/* Mobile play button — small, positioned bottom right of text */
.hero-play-mobile {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  cursor: pointer;
  background: none;
  border: none;
}

.hero-play-mobile .play-dot {
  width: 42px;
  height: 42px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.85rem;
  padding-left: 3px;
  flex-shrink: 0;
}

/* ── Stats Bar ── */
.hero-stats-bar {
  position: relative;
  z-index: 3;
  background: rgba(10,10,10,0.90);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
}

.hero-stats-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  padding: 4px 16px;
}

.hero-stat-num {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.02em;
}

.hero-stat-num span { color: var(--red); }

.hero-stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* ── Scroll Indicator ── */
.hero-scroll-indicator {
  position: absolute;
  bottom: 90px; /* above stats bar */
  right: 40px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll-line {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

.hero-scroll-text {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  writing-mode: vertical-rl;
}

/* ── Mute Toggle Button ── */
.hero-mute-btn {
  position: absolute;
  bottom: 100px;
  left: 32px;
  z-index: 4;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.hero-mute-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* ── Video Lightbox ── */
.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.video-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.video-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.video-lightbox-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 960px;
  transform: scale(0.92);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.video-lightbox.active .video-lightbox-inner {
  transform: scale(1);
}

.video-lightbox-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.video-lightbox-close:hover {
  background: var(--red);
  border-color: var(--red);
}

.video-lightbox-player {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  background: #000;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0,0,0,0.7);
}

.video-lightbox-player video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .hero-heading { font-size: clamp(2.5rem, 9vw, 4.5rem); }
  .hero-scroll-indicator { display: none; }
  .hero-mute-btn { bottom: 80px; left: 20px; }
}

@media (max-width: 767px) {
  .hero-stats-inner { gap: 8px; }
  .hero-stat { padding: 4px 8px; }
  .hero-stat-divider { display: none; }
  .hero-stat-num { font-size: 1.6rem; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-mute-btn { display: none; }
}


/* ══════════════════════════════════════════════════════════
   MEI ABOUT SECTION — Brand Red Theme
   All colors use --red / --red-gradient CSS variables from :root
   ══════════════════════════════════════════════════════════ */

/* ── Section wrapper ── */
.mei-about {
  padding: 100px 0 110px;
  background: var(--sec-light);
  position: relative;
  overflow: hidden;
}

/* Dot-grid texture (top-right quadrant only) */
.mei-about::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--red) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.10;
  mask-image: radial-gradient(ellipse at 90% 10%, black 0%, transparent 60%);
  -webkit-mask-image: radial-gradient(ellipse at 90% 10%, black 0%, transparent 60%);
  pointer-events: none;
}

/* Ambient glow blobs */
.mei-about-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  will-change: transform;
}
.mei-about-blob-1 {
  width: 420px;
  height: 420px;
  background: var(--red);
  opacity: 0.07;
  top: -80px;
  right: 8%;
}
.mei-about-blob-2 {
  width: 280px;
  height: 280px;
  background: var(--red-light);
  opacity: 0.05;
  bottom: -40px;
  left: 3%;
}

.isi-mark{
    display: flex;
    gap:15px;
}

/* ──────────────────────────────
   IMAGE SIDE
────────────────────────────── */
.mei-about-visual {
  position: relative;
  padding-bottom: 2.5rem;
}

/* Gradient-border frame */
.mei-about-img-frame {
  position: relative;
  border-radius: 22px;
  padding: 3px;
  background: var(--red-gradient);
  box-shadow:
    0 40px 100px var(--red-glow-sm),
    0 12px 30px rgba(0, 0, 0, 0.10);
}

.mei-about-img-inner {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 4.8;
  position: relative;
  background: #1a0305;
}

.mei-about-img-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}

/* Fallback shown when no image is present */
.mei-about-img-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    repeating-linear-gradient( 45deg, rgba(200,32,45,.05) 0px, rgba(200,32,45,.05) 1px, transparent 1px, transparent 42px),
    repeating-linear-gradient(-45deg, rgba(200,32,45,.04) 0px, rgba(200,32,45,.04) 1px, transparent 1px, transparent 42px),
    radial-gradient(circle at 30% 40%, rgba(200,32,45,.28) 0%, transparent 55%),
    radial-gradient(circle at 72% 70%, rgba(200,32,45,.16) 0%, transparent 45%),
    linear-gradient(150deg, #1e0305 0%, #2e0508 45%, #18030a 75%, #0f0205 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mei-about-img-fallback .mei-fallback-icon {
  font-size: 6rem;
  color: var(--red);
  opacity: 0.35;
}

/* Subtle top-left shine on image */
.mei-about-img-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.04) 0%, transparent 60%);
  z-index: 2;
  pointer-events: none;
}

/* ── Floating ISO certified chip (top-left) ── */
.mei-about-iso-chip {
  position: absolute;
  top: -14px;
  left: 20px;
  background: var(--red-gradient);
  color: #fff;
  font-family: var(--font-body);
  font-size: .8125rem;
  font-weight: 700;
  padding: .42rem 1.1rem;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  box-shadow: 0 6px 22px var(--red-shadow);
  z-index: 10;
  letter-spacing: .02em;
}

/* ── Decorative concentric rings (top-right corner) ── */
.mei-about-deco {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 70px;
  height: 70px;
  z-index: 3;
  pointer-events: none;
}
.mei-about-deco-r1 {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid var(--red);
  opacity: 0.30;
}
.mei-about-deco-r2 {
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  border: 1px solid var(--red-light);
  opacity: 0.35;
}
.mei-about-deco-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: var(--red-gradient);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--red-shadow);
}

/* ── Glassmorphism experience badge (bottom-right) ── */
.mei-about-exp-badge {
  position: absolute;
  bottom: -2px;
  right: -14px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1.5px solid var(--red-border);
  border-radius: 18px;
  padding: 1.15rem 1.5rem;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.13),
    0 4px 18px var(--red-glow-xs);
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 210px;
  z-index: 10;
}

.mei-about-exp-icon {
  width: 50px;
  height: 50px;
  background: var(--red-gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 18px var(--red-shadow);
}
.mei-about-exp-icon i { font-size: 1.35rem; color: #fff; }

.mei-about-exp-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  line-height: 1;
  background: var(--red-gradient-h);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: .02em;
}
.mei-about-exp-num sup { font-size: 2.5rem; color: var(--red); position: static;}

.mei-about-exp-lbl {
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 600;
  color: var(--text-dark-1);
  line-height: 1.35;
  margin-top: 1px;
}

/* ── Glassmorphism mini MTPA card (left mid) ── */
.mei-about-mini-card {
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.90);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--red-border-sm);
  border-radius: 14px;
  padding: .9rem 1.1rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10);
  z-index: 10;
  min-width: 130px;
}
.mei-about-mini-card .mc-icon {
  width: 30px;
  height: 30px;
  background: var(--red-gradient);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .5rem;
}
.mei-about-mini-card .mc-icon i { color: #fff; font-size: .9rem; }
.mei-about-mini-card .mc-num {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  line-height: 1;
  background: var(--red-gradient-h);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.mei-about-mini-card .mc-lbl {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-dark-muted);
  line-height: 1.3;
}

/* ──────────────────────────────
   CONTENT SIDE
────────────────────────────── */
.mei-about-content { padding-left: 1.5rem; }

/* Eyebrow label */
.mei-about-eyebrow {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.1rem;
}
.mei-about-eyebrow-line {
  display: block;
  width: 38px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--red-gradient-h);
  flex-shrink: 0;
}
.mei-about-eyebrow-text {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--red);
}

/* Main heading */
.mei-about-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.8vw, 3.9rem);
  line-height: .96;
  color: var(--black-soft);
  letter-spacing: .025em;
  margin-bottom: 1.5rem;
}
.mei-about-heading-accent {
  background: var(--red-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Primary description */
.mei-about-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.78;
  color: var(--text-dark-1);
  margin-bottom: .5rem;
}

/* Divider row */
.mei-about-divider {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: 2rem;
}
.mei-about-divider-bar {
  flex: 0 0 50px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--red-gradient-h);
}
.mei-about-divider-icon {
  width: 34px;
  height: 34px;
  background: var(--red-gradient);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .9rem;
  flex-shrink: 0;
  box-shadow: 0 4px 14px var(--red-shadow);
}
.mei-about-divider-line {
  flex: 1;
  height: 1px;
  background: var(--red-border-sm);
}

/* Sub-section heading */
.mei-about-sub-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  color: var(--black-soft);
  letter-spacing: .04em;
  margin-bottom: .6rem;
}

/* Sub-section description */
.mei-about-sub-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.72;
  color: var(--grey-dark);
  margin-bottom: 2rem;
  max-width: 540px;
}

/* Feature chips */
.mei-about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-bottom: 2.25rem;
}
.mei-about-chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--white);
  border: 1.5px solid var(--red-border);
  border-radius: 100px;
  padding: .36rem 1rem;
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 600;
  color: var(--black-soft);
  transition: all .3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  cursor: default;
}
.mei-about-chip:hover {
  border-color: var(--red);
  background: var(--red-glow-xs);
  color: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px var(--red-glow-sm);
}
.mei-about-chip i {
  color: var(--red);
  font-size: .875rem;
}

/* Bottom row: seal + CTA */
.mei-about-bottom {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Rotating SVG quality seal */
.mei-about-seal {
  position: relative;
  width: 112px;
  height: 112px;
  flex-shrink: 0;
}
.mei-about-seal svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: sealSpin 20s linear infinite;
}
@keyframes sealSpin {
  to { transform: rotate(360deg); }
}
.mei-about-seal-center {
  position: absolute;
  inset: 19px;
  background: var(--red-gradient);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  box-shadow: 0 6px 22px var(--red-shadow);
  gap: 2px;
}
.mei-about-seal-center i { font-size: 1.35rem; }
.mei-about-seal-center span {
  font-family: var(--font-body);
  font-size: .5rem;
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1.25;
}

/* CTA button */
.mei-about-cta {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--red-gradient);
  color: #fff !important;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: .88rem 2.1rem;
  border-radius: 7px;
  text-decoration: none !important;
  transition: all .35s ease;
  box-shadow: 0 8px 26px var(--red-shadow);
}
.mei-about-cta:hover {
  background: var(--red-gradient-r);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(200, 32, 45, 0.48);
}

/* ── Responsive ── */
@media (max-width: 1199.98px) {
  .mei-about-mini-card { left: -10px; }
}
@media (max-width: 991.98px) {
  .mei-about              { padding: 72px 0 80px; }
  .mei-about-content      { padding-left: 0; margin-top: 64px; }
  .mei-about-visual       { max-width: 460px; margin: 0 auto; }
  .mei-about-mini-card    { display: none; }
}
@media (max-width: 575.98px) {
  .mei-about-exp-badge  { right: 0; min-width: 190px; padding: 1rem 1.2rem; }
  .mei-about-bottom     { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
}


/* ══════════════════════════════════════════════════════════
   MEI PROCESS SECTION — Manufacturing at its Best
   Dark textured red background · 4-step process grid
   ══════════════════════════════════════════════════════════ */

/* ── Section wrapper ── */
.mei-proc {
  padding: 100px 0 110px;
  position: relative;
  overflow: hidden;
  background-color: #0E0306;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='f'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23f)' opacity='0.065'/%3E%3C/svg%3E"),
    repeating-linear-gradient(0deg,   transparent 0px, transparent 35px, rgba(200,32,45,.035) 35px, rgba(200,32,45,.035) 36px),
    repeating-linear-gradient(90deg,  transparent 0px, transparent 35px, rgba(200,32,45,.025) 35px, rgba(200,32,45,.025) 36px),
    repeating-linear-gradient(45deg,  rgba(200,32,45,.015) 0px, rgba(200,32,45,.015) 1px, transparent 1px, transparent 22px),
    repeating-linear-gradient(-45deg, rgba(200,32,45,.010) 0px, rgba(200,32,45,.010) 1px, transparent 1px, transparent 22px),
    radial-gradient(ellipse at 10% 55%, rgba(200,32,45,.14) 0%, transparent 42%),
    radial-gradient(ellipse at 90% 22%, rgba(229,53,69,.08) 0%, transparent 38%),
    radial-gradient(ellipse at 52% 95%, rgba(200,32,45,.07) 0%, transparent 35%),
    linear-gradient(160deg, #150309 0%, #0A0205 55%, #0D0308 100%);
}

/* ── Section header ── */
.mei-proc-header {
  text-align: center;
  margin-bottom: 72px;
  position: relative;
  z-index: 2;
}

.mei-proc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .9rem;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.1rem;
}
.mei-proc-eyebrow::before,
.mei-proc-eyebrow::after {
  content: '';
  display: block;
  width: 36px;
  height: 1.5px;
  background: var(--red-gradient-h);
  flex-shrink: 0;
}

.mei-proc-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  color: var(--white);
  line-height: 1.0;
  letter-spacing: .03em;
  margin-bottom: 1.4rem;
}
.mei-proc-heading .accent {
  background: var(--red-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mei-proc-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .85rem;
  margin-bottom: 1.35rem;
}
.mei-proc-divider::before,
.mei-proc-divider::after {
  content: '';
  width: 55px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,32,45,.5));
}
.mei-proc-divider::after {
  background: linear-gradient(270deg, transparent, rgba(200,32,45,.5));
}
.mei-proc-gem {
  width: 10px;
  height: 10px;
  background: var(--red-gradient);
  transform: rotate(45deg);
  border-radius: 2px;
  box-shadow: 0 0 12px var(--red-shadow);
}

.mei-proc-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255,255,255,.48);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.72;
}

/* ── 4-column process grid ── */
.mei-proc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

/* Dashed red line connecting the 4 circle centres */
.mei-proc-grid::before {
  content: '';
  position: absolute;
  top: 115px;
  left: calc(12.5% - 10px);
  right: calc(12.5% - 10px);
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    var(--red) 0px,  var(--red) 10px,
    transparent 10px,   transparent 20px
  );
  opacity: .35;
  z-index: 0;
  pointer-events: none;
}

/* ── Individual card ── */
.mei-proc-card {
  position: relative;
  text-align: center;
  padding: 20px 20px 2.25rem;
  background: rgba(255,255,255,.022);
  border: 1px solid rgba(200,32,45,.12);
  border-radius: 20px;
  transition: transform .4s ease, background .4s ease, border-color .4s ease, box-shadow .4s ease;
  overflow: hidden;
  z-index: 2;
}

/* Top red accent bar — expands on hover */
.mei-proc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s ease;
}
.mei-proc-card:hover {
  background: rgba(255,255,255,.04);
  border-color: rgba(200,32,45,.35);
  transform: translateY(-10px);
  box-shadow: 0 32px 80px rgba(0,0,0,.45), 0 0 50px rgba(200,32,45,.08);
}
.mei-proc-card:hover::before { transform: scaleX(1); }

/* Large watermark number */
.mei-proc-watermark {
  position: absolute;
  bottom: 1.25rem;
  right: 1rem;
  font-family: var(--font-heading);
  font-size: 7rem;
  line-height: 1;
  background: var(--red-gradient-h);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: .065;
  letter-spacing: -.03em;
  pointer-events: none;
  user-select: none;
  transition: opacity .4s;
}
.mei-proc-card:hover .mei-proc-watermark { opacity: .12; }

/* ── Circular image frame ── */
.mei-proc-img-wrap {
  width: 190px;
  height: 190px;
  margin: 0 auto 1.6rem;
  position: relative;
}
.mei-proc-img-wrap::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid var(--red);
  opacity: 0;
  transform: scale(.9);
  transition: opacity .4s ease, transform .4s ease;
}
.mei-proc-card:hover .mei-proc-img-wrap::after {
  opacity: .28;
  transform: scale(1);
}

/* Gradient-border ring */
.mei-proc-img-ring {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  padding: 4px;
  background: var(--red-gradient);
  box-shadow: 0 0 0 5px rgba(200,32,45,.10), 0 14px 44px rgba(0,0,0,.45);
  position: relative;
  transition: box-shadow .4s ease;
}
.mei-proc-card:hover .mei-proc-img-ring {
  box-shadow:
    0 0 0 8px rgba(200,32,45,.22),
    0 20px 60px rgba(0,0,0,.5),
    0 0 30px rgba(200,32,45,.18);
}
.mei-proc-img-ring img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}

/* Fallback background shown when image is absent */
.mei-proc-img-fallback {
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, rgba(200,32,45,.45) 0%, rgba(100,10,15,.75) 55%, rgba(30,5,8,.95) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
}
.mei-proc-img-fallback i {
  font-size: 3rem;
  color: var(--red-light);
  opacity: .65;
}

/* ── Step chip ── */
.mei-proc-step-chip {
  display: inline-flex;
  align-items: center;
  gap: .38rem;
  background: rgba(200,32,45,.10);
  border: 1px solid rgba(200,32,45,.28);
  border-radius: 100px;
  padding: .28rem .9rem;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: .8rem;
  transition: all .3s ease;
}
.mei-proc-step-chip::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--red);
}
.mei-proc-card:hover .mei-proc-step-chip {
  background: rgba(200,32,45,.18);
  border-color: var(--red);
}

/* ── Card title ── */
.mei-proc-title-card {
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 2.4vw, 2.05rem);
  color: var(--white);
  letter-spacing: .04em;
  margin-bottom: .8rem;
  transition: color .3s ease;
  line-height: 1.1;
}
.mei-proc-card:hover .mei-proc-title-card { color: var(--red-light); }

/* ── Card description ── */
.mei-proc-desc-card {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255,255,255,.5);
  line-height: 1.72;
  margin-bottom: 1.75rem;
}

/* ── Read More link ── */
.mei-proc-link {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--red-light);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: color .3s ease, gap .3s ease;
}
.mei-proc-link-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  color: var(--red);
  flex-shrink: 0;
  transition: all .35s ease;
}
.mei-proc-link:hover { color: var(--white); gap: .9rem; }
.mei-proc-link:hover .mei-proc-link-icon {
  background: var(--red-gradient);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 18px var(--red-shadow);
  transform: scale(1.08);
}

/* ── Responsive ── */
@media (max-width: 1199.98px) {
  .mei-proc-grid { gap: 1.25rem; }
  .mei-proc-grid::before { top: 110px; }
}
@media (max-width: 991.98px) {
  .mei-proc { padding: 72px 0 80px; }
  .mei-proc-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .mei-proc-grid::before { display: none; }
  .mei-proc-header { margin-bottom: 52px; }
}
@media (max-width: 575.98px) {
  .mei-proc-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }
  .mei-proc-watermark { font-size: 5.5rem; }
  .mei-proc-img-wrap { width: 165px; height: 165px; }
}


/* ══════════════════════════════════════════════════════════
   MEI PRODUCTS SECTION — Light Theme, Image-Forward Cards
   Brand red accents · CSS grid 3-col → 2-col → 1-col
   ══════════════════════════════════════════════════════════ */

.mei-products {
  padding: 100px 0 110px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

/* Subtle dot-grid decoration bottom-left */
.mei-products::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--grey-light) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.55;
  mask-image: radial-gradient(ellipse at 8% 92%, black 0%, transparent 50%);
  -webkit-mask-image: radial-gradient(ellipse at 8% 92%, black 0%, transparent 50%);
  pointer-events: none;
}

/* Subtle red glow top-right */
.mei-products::after {
  content: '';
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: var(--red);
  opacity: .028;
  filter: blur(90px);
  top: -100px;
  right: 5%;
  pointer-events: none;
}

/* ── Section header ── */
.mei-prod-header {
  text-align: center;
  margin-bottom: 62px;
  position: relative;
  z-index: 2;
}

.mei-prod-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .9rem;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.1rem;
}
.mei-prod-eyebrow::before,
.mei-prod-eyebrow::after {
  content: '';
  display: block;
  width: 36px;
  height: 1.5px;
  background: var(--red-gradient-h);
  flex-shrink: 0;
}

.mei-prod-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  color: var(--black-soft);
  line-height: 1.0;
  letter-spacing: .03em;
  margin-bottom: 1.4rem;
}
.mei-prod-heading .accent {
  background: var(--red-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mei-prod-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .85rem;
  margin-bottom: 1.35rem;
}
.mei-prod-divider::before,
.mei-prod-divider::after {
  content: '';
  width: 55px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,32,45,.4));
}
.mei-prod-divider::after {
  background: linear-gradient(270deg, transparent, rgba(200,32,45,.4));
}
.mei-prod-gem {
  width: 10px;
  height: 10px;
  background: var(--red-gradient);
  transform: rotate(45deg);
  border-radius: 2px;
  box-shadow: 0 0 12px var(--red-shadow);
}

.mei-prod-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--grey-mid);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.72;
}

/* ── 3-column product grid ── */
.mei-prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

/* ── Individual product card ── */
.mei-prod-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.07);
  box-shadow: 0 4px 24px rgba(0,0,0,.07), 0 1px 4px rgba(0,0,0,.04);
  transition: transform .4s ease, box-shadow .4s ease;
  position: relative;
  text-decoration: none;
  display: block;
}

/* Red left accent bar — grows on hover */
.mei-prod-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--red-gradient);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .4s ease;
  z-index: 5;
  border-radius: 0 0 0 20px;
}
.mei-prod-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 28px 72px rgba(0,0,0,.13),
    0 0 0 1px rgba(200,32,45,.12);
}
.mei-prod-card:hover::before { transform: scaleY(1); }

/* ── Image area ── */
.mei-prod-img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #1a0305;
}

.mei-prod-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
  transition: transform .6s ease;
}
.mei-prod-card:hover .mei-prod-img-wrap img { transform: scale(1.08); }

/* Fallback gradient when no image */
.mei-prod-img-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    repeating-linear-gradient(45deg,  rgba(200,32,45,.04) 0px, rgba(200,32,45,.04) 1px, transparent 1px, transparent 36px),
    repeating-linear-gradient(-45deg, rgba(200,32,45,.03) 0px, rgba(200,32,45,.03) 1px, transparent 1px, transparent 36px),
    radial-gradient(circle at 35% 40%, rgba(200,32,45,.32) 0%, transparent 55%),
    linear-gradient(150deg, #200406 0%, #300608 50%, #120203 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mei-prod-img-fallback i {
  font-size: 3.5rem;
  color: var(--red);
  opacity: .38;
}

/* Bottom gradient overlay inside image */
.mei-prod-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,2,3,.88) 0%, rgba(8,2,3,.38) 48%, transparent 72%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem 1.4rem 1.1rem;
  z-index: 2;
}

/* Category glass tag */
.mei-prod-cat-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 3;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 100px;
  padding: .22rem .85rem;
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.92);
  transition: background .3s ease, border-color .3s ease;
}
.mei-prod-card:hover .mei-prod-cat-tag {
  background: rgba(200,32,45,.75);
  border-color: rgba(200,32,45,.5);
}

/* Product name inside image */
.mei-prod-name {
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 2.2vw, 1.95rem);
  color: var(--white);
  letter-spacing: .04em;
  line-height: 1.08;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0,0,0,.45);
  transition: letter-spacing .3s ease;
}
.mei-prod-card:hover .mei-prod-name { letter-spacing: .06em; }

/* ── Card footer (white strip) ── */
.mei-prod-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.4rem;
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,.05);
}

.mei-prod-more-text {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--grey-dark);
  transition: color .3s ease;
}
.mei-prod-card:hover .mei-prod-more-text { color: var(--red); }

.mei-prod-circle-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid rgba(200,32,45,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: .8rem;
  flex-shrink: 0;
  transition: all .35s ease;
}
.mei-prod-card:hover .mei-prod-circle-btn {
  background: var(--red-gradient);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 18px var(--red-shadow);
  transform: scale(1.1);
}

/* ── View All CTA ── */
.mei-prod-view-all-wrap {
  text-align: center;
  margin-top: 3.5rem;
  position: relative;
  z-index: 2;
}
.mei-prod-view-all {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  border: 2px solid var(--red);
  color: var(--red);
  background: transparent;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .88rem 2.6rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all .35s ease;
}
.mei-prod-view-all:hover {
  background: var(--red-gradient);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 10px 32px var(--red-shadow);
  transform: translateY(-2px);
}
.mei-prod-view-all i { transition: transform .3s ease; }
.mei-prod-view-all:hover i { transform: translateX(4px); }

/* ── Responsive ── */
@media (max-width: 991.98px) {
  .mei-products { padding: 72px 0 80px; }
  .mei-prod-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .mei-prod-header { margin-bottom: 48px; }
}
@media (max-width: 575.98px) {
  .mei-prod-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}


/* ══════════════════════════════════════════════════════════
   MEI INFRASTRUCTURE — Light textured carousel section
   Split layout: text left · image right · 5 slides
   ══════════════════════════════════════════════════════════ */

.mei-infra {
  padding: 100px 0 110px;
  position: relative;
  overflow: hidden;
  background-color: var(--sec-light);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E"),
    repeating-linear-gradient(0deg, transparent 0px, transparent 40px, rgba(0,0,0,.018) 40px, rgba(0,0,0,.018) 41px),
    repeating-linear-gradient(90deg, transparent 0px, transparent 80px, rgba(0,0,0,.010) 80px, rgba(0,0,0,.010) 81px);
}

/* Ambient red glow top-right */
.mei-infra::before {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: var(--red);
  opacity: .04;
  filter: blur(100px);
  top: -120px;
  right: -60px;
  pointer-events: none;
}

/* Dot grid decoration bottom-left */
.mei-infra::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--grey-mid) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.22;
  mask-image: radial-gradient(ellipse at 0% 100%, black 0%, transparent 45%);
  -webkit-mask-image: radial-gradient(ellipse at 0% 100%, black 0%, transparent 45%);
  pointer-events: none;
}

/* ── Inner flex row ── */
.mei-infra-inner {
  display: flex;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* ── LEFT: content column ── */
.mei-infra-content {
  flex: 0 0 44%;
  max-width: 44%;
}

.mei-infra-slide-wrap {
  position: relative;
  min-height: 300px;
}

/* Slides: hidden by default, active fades+rises in */
.mei-infra-slide { display: none; }
.mei-infra-slide.active {
  display: block;
  animation: infraTextIn .5s ease both;
}
@keyframes infraTextIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Category chip */
.mei-infra-tag {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: rgba(200,32,45,.07);
  border: 1px solid rgba(200,32,45,.20);
  border-radius: 100px;
  padding: .3rem 1rem;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.4rem;
}
.mei-infra-tag i { font-size: .7rem; }

/* Section heading (stays "Infrastructure" for all slides) */
.mei-infra-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  color: var(--black-soft);
  letter-spacing: .03em;
  line-height: 1.0;
  margin-bottom: 1.5rem;
}

/* Description */
.mei-infra-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.82;
  color: var(--text-dark-1);
  margin-bottom: 2.2rem;
  max-width: 480px;
}

/* CTA pill button */
.mei-infra-cta {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  background: var(--red-gradient);
  color: #fff !important;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .82rem 1.85rem;
  border-radius: 100px;
  text-decoration: none !important;
  transition: all .35s ease;
  box-shadow: 0 8px 26px var(--red-shadow);
}
.mei-infra-cta i { transition: transform .3s ease; }
.mei-infra-cta:hover {
  background: var(--red-gradient-r);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(200,32,45,.45);
}
.mei-infra-cta:hover i { transform: translateX(5px); }

/* Navigation row */
.mei-infra-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-top: 3rem;
}

/* Prev / Next circle buttons */
.mei-infra-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(200,32,45,.28);
  background: transparent;
  color: var(--red);
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all .32s ease;
}
.mei-infra-btn:hover {
  background: var(--red-gradient);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 18px var(--red-shadow);
  transform: scale(1.08);
}

/* Slide counter */
.mei-infra-counter {
  display: flex;
  align-items: baseline;
  gap: .35rem;
  font-family: var(--font-heading);
}
.mei-infra-cur {
  font-size: 2.2rem;
  line-height: 1;
  color: var(--red);
  letter-spacing: .02em;
  transition: color .3s ease;
}
.mei-infra-sep { font-size: 1.1rem; color: var(--grey-light); }
.mei-infra-tot { font-size: 1.2rem; color: var(--grey-mid); }

/* ── RIGHT: image column ── */
.mei-infra-visual {
  flex: 1;
  position: relative;
}

/* Image container */
.mei-infra-img-wrap {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #1a0305;
  box-shadow: 0 40px 100px rgba(0,0,0,.13), 0 8px 24px rgba(0,0,0,.07);
}

/* Red left accent bar */
.mei-infra-img-wrap::before {
  content: '';
  position: absolute;
  left: 0; top: 12%; bottom: 12%;
  width: 4px;
  background: var(--red-gradient);
  z-index: 5;
  border-radius: 0 2px 2px 0;
}

/* Image slides */
.mei-infra-img-slide { display: none; position: absolute; inset: 0; }
.mei-infra-img-slide.active {
  display: block;
  animation: infraImgIn .65s ease both;
}
@keyframes infraImgIn {
  from { opacity: 0; transform: scale(1.04); }
  to   { opacity: 1; transform: scale(1); }
}

.mei-infra-img-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}

/* Image fallback */
.mei-infra-img-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    repeating-linear-gradient(45deg,  rgba(200,32,45,.04) 0px, rgba(200,32,45,.04) 1px, transparent 1px, transparent 36px),
    repeating-linear-gradient(-45deg, rgba(200,32,45,.03) 0px, rgba(200,32,45,.03) 1px, transparent 1px, transparent 36px),
    radial-gradient(circle at 35% 40%, rgba(200,32,45,.32) 0%, transparent 55%),
    linear-gradient(150deg, #200406 0%, #300608 50%, #120203 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mei-infra-img-fallback i {
  font-size: 4.5rem;
  color: var(--red);
  opacity: .28;
}

/* Progress dots below image */
.mei-infra-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  margin-top: 1.4rem;
}
.mei-infra-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grey-light);
  cursor: pointer;
  transition: all .35s ease;
  border: none;
  padding: 0;
}
.mei-infra-dot.active {
  background: var(--red);
  width: 26px;
  border-radius: 100px;
  box-shadow: 0 0 8px var(--red-shadow);
}
.mei-infra-dot:hover:not(.active) { background: var(--grey-mid); }

/* ── Responsive ── */
@media (max-width: 991.98px) {
  .mei-infra { padding: 72px 0 80px; }
  .mei-infra-inner { flex-direction: column-reverse; gap: 2.8rem; }
  .mei-infra-content { flex: none; max-width: 100%; width: 100%; }
  .mei-infra-slide-wrap { min-height: auto; }
  .mei-infra-desc { max-width: 100%; }
  .mei-infra-nav { margin-top: 2rem; }
}
@media (max-width: 575.98px) {
  .mei-infra-heading { font-size: clamp(2.4rem, 12vw, 3.5rem); }
  .mei-infra-btn { width: 42px; height: 42px; }
  .mei-infra-img-wrap {
    width: 350px;
  }
}


/* ══════════════════════════════════════════════════════════
   MEI MOTTO — Full-width parallax banner
   "Satisfaction is Our Motto"
   Dark industrial bg · GSAP parallax (js/main.js)
   ══════════════════════════════════════════════════════════ */

.mei-motto {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Parallax bg layer — extra vertical space for travel */
.mei-motto-bg {
  position: absolute;
  inset: -30% 0;
  background-image: url('../assets/motto.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* background-color: #1a0204; */
  will-change: transform;
  z-index: 0;
}

/* CSS fallback texture when image is absent */
/* .mei-motto-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E"),
    repeating-linear-gradient(45deg,  rgba(200,32,45,.04) 0px, rgba(200,32,45,.04) 1px, transparent 1px, transparent 28px),
    repeating-linear-gradient(-45deg, rgba(200,32,45,.03) 0px, rgba(200,32,45,.03) 1px, transparent 1px, transparent 28px),
    radial-gradient(ellipse at 20% 52%, rgba(200,32,45,.28) 0%, transparent 52%),
    radial-gradient(ellipse at 82% 28%, rgba(160,24,32,.18) 0%, transparent 42%),
    linear-gradient(155deg, #250405 0%, #180304 55%, #0f0203 100%);
} */

/* Dark cinematic overlay over the bg image */
.mei-motto-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8,2,3,.90) 0%,
    rgba(8,2,3,.74) 48%,
    rgba(8,2,3,.50) 100%
  );
  z-index: 1;
}

/* Content wrapper */
.mei-motto-content {
  position: relative;
  z-index: 2;
  padding: 90px 0;
  max-width: 740px;
}

/* Eyebrow label */
.mei-motto-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 1.25rem;
}
.mei-motto-eyebrow::before {
  content: '';
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--red-gradient-h);
  flex-shrink: 0;
}

/* Main heading */
.mei-motto-heading {
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 6.5vw, 5.8rem);
  color: var(--white);
  line-height: .98;
  letter-spacing: .02em;
  margin-bottom: 1.8rem;
}

/* Decorative rule: line — gem — line */
.mei-motto-rule {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.85rem;
  max-width: 460px;
}
.mei-motto-rule-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.18);
}
.mei-motto-rule-gem {
  width: 9px;
  height: 9px;
  background: var(--red);
  transform: rotate(45deg);
  border-radius: 2px;
  box-shadow: 0 0 12px var(--red-shadow);
  flex-shrink: 0;
}

/* Quote */
.mei-motto-quote {
  font-family: var(--font-body);
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,.55);
  line-height: 1.84;
  max-width: 560px;
  margin-bottom: 2.6rem;
}

/* CTA pill button */
.mei-motto-cta {
  display: inline-flex;
  align-items: center;
  gap: .72rem;
  background: var(--red-gradient);
  color: #fff !important;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .88rem 2.2rem;
  border-radius: 100px;
  text-decoration: none !important;
  transition: all .35s ease;
  box-shadow: 0 8px 28px var(--red-shadow);
}
.mei-motto-cta i { transition: transform .3s ease; }
.mei-motto-cta:hover {
  background: var(--red-gradient-r);
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(200,32,45,.50);
}
.mei-motto-cta:hover i { transform: translateX(5px); }

/* ── Responsive ── */
@media (max-width: 767.98px) {
  .mei-motto { min-height: 380px; }
  .mei-motto-content { padding: 68px 0; }
  .mei-motto-heading { font-size: clamp(2.6rem, 10vw, 3.8rem); }
  .mei-motto-quote { max-width: 100%; }
}
@media (max-width: 575.98px) {
  .mei-motto-rule { max-width: 100%; }
}


/* ══════════════════════════════════════════════════════════
   MEI MVQ — Mission · Vision · Quality
   3-column diamond icon cards · white light theme
   Connector line + GSAP stagger (js/main.js)
   ══════════════════════════════════════════════════════════ */

.mei-mvq {
  padding: 96px 0 110px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

/* Subtle horizontal line texture */
.mei-mvq::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent 0px, transparent 44px,
    rgba(0,0,0,.016) 44px, rgba(0,0,0,.016) 45px
  );
  pointer-events: none;
}

/* Faint red ambient glow bottom-right */
.mei-mvq::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: var(--red);
  opacity: .025;
  filter: blur(110px);
  bottom: -150px;
  right: -100px;
  pointer-events: none;
}

/* ── Eyebrow header ── */
.mei-mvq-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 2;
}
.mei-mvq-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .30em;
  text-transform: uppercase;
  color: var(--grey-mid);
}
.mei-mvq-eyebrow-line {
  display: block;
  width: 42px;
  height: 1.5px;
  background: var(--grey-light);
  flex-shrink: 0;
}

/* ── 3-column grid ── */
.mei-mvq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
}

/* ── Animated connecting line through diamond centres ── */
.mei-mvq-connector {
  position: absolute;
  /* 205px icon-wrap height ÷ 2 – 1px half line = 101px */
  top: 101px;
  /* centres of outer columns, accounting for 2×2rem gap */
  left: calc((100% - 4rem) / 6);
  right: calc((100% - 4rem) / 6);
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(200,32,45,.55) 0%,
    rgba(99,99,99,.45) 50%,
    rgba(122,14,24,.55) 100%
  );
  transform-origin: left center;
  z-index: 0;
  border-radius: 2px;
}

/* ── Card ── */
.mei-mvq-card {
  text-align: center;
  padding: 0 1rem;
  position: relative;
  z-index: 2;
}

/* ── Icon wrapper: tall enough to fully contain rotated diamond ── */
.mei-mvq-icon-wrap {
  height: 205px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  position: relative;
}

/* ── Rotated diamond square ── */
.mei-mvq-diamond {
  width: 136px;
  height: 136px;
  border-radius: 18px;
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform .42s ease, box-shadow .42s ease;
  flex-shrink: 0;
}
.mei-mvq-card:hover .mei-mvq-diamond {
  transform: rotate(45deg) scale(1.07) translateY(-5px);
}

/* Mission: brand red */
.mei-mvq-diamond--mission {
  background: linear-gradient(135deg, #C8202D 0%, #E53545 100%);
  box-shadow:
    0 0 0 10px rgba(200,32,45,.10),
    0 0 0 2px  rgba(200,32,45,.25),
    0 28px 64px rgba(200,32,45,.30);
}
/* Vision: brand charcoal / steel grey */
.mei-mvq-diamond--vision {
  background: linear-gradient(135deg, #3A3A3A 0%, #636363 100%);
  box-shadow:
    0 0 0 10px rgba(99,99,99,.10),
    0 0 0 2px  rgba(99,99,99,.28),
    0 28px 64px rgba(0,0,0,.22);
}
/* Quality: deep crimson → brand red */
.mei-mvq-diamond--quality {
  background: linear-gradient(135deg, #7A0E18 0%, #C8202D 100%);
  box-shadow:
    0 0 0 10px rgba(122,14,24,.10),
    0 0 0 2px  rgba(122,14,24,.28),
    0 28px 64px rgba(122,14,24,.28);
}

/* ── Counter-rotate icon to stay upright ── */
.mei-mvq-icon-inner {
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mei-mvq-icon-inner i {
  font-size: 2.1rem;
  color: rgba(255,255,255,.94);
}

/* ── Card title ── */
.mei-mvq-title {
  font-family: var(--font-heading);
  font-size: clamp(1.95rem, 2.8vw, 2.5rem);
  letter-spacing: .04em;
  color: var(--black-soft);
  margin-bottom: .95rem;
  position: relative;
  display: inline-block;
}
/* Animated underline — expands from centre on hover */
.mei-mvq-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 62%;
  height: 2.5px;
  border-radius: 2px;
  transform-origin: center;
  transition: transform .4s ease;
}
.mei-mvq-card:hover .mei-mvq-title::after { transform: translateX(-50%) scaleX(1); }

.mei-mvq-card--mission .mei-mvq-title::after { background: var(--red-gradient-h); }
.mei-mvq-card--vision  .mei-mvq-title::after { background: linear-gradient(90deg, #3A3A3A, #636363); }
.mei-mvq-card--quality .mei-mvq-title::after { background: linear-gradient(90deg, #7A0E18, #C8202D); }

/* ── Card description ── */
.mei-mvq-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.80;
  color: var(--grey-dark);
  max-width: 340px;
  margin: 0 auto;
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
  .mei-mvq { padding: 72px 0 80px; }
  .mei-mvq-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
    gap: 3.5rem;
  }
  .mei-mvq-connector { display: none; }
}
@media (max-width: 575.98px) {
  .mei-mvq-diamond { width: 118px; height: 118px; border-radius: 15px; }
  .mei-mvq-icon-wrap { height: 175px; }
  .mei-mvq-connector { top: 87px; }
  .mei-mvq-desc { max-width: 100%; }
}


/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
   Dark section · glass cards · quote carousel
═══════════════════════════════════════════════════════════ */
.mei-testi {
  padding: 100px 0 112px;
  background: #0D0D0D;
  position: relative;
  overflow: hidden;
}

/* Red glow — top-left */
.mei-testi::before {
  content: '';
  position: absolute;
  top: -140px;
  left: -140px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(200,32,45,.15) 0%, transparent 68%);
  pointer-events: none;
}

/* Grey glow — bottom-right */
.mei-testi::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(99,99,99,.10) 0%, transparent 68%);
  pointer-events: none;
}

/* Noise grain overlay */
.mei-testi-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.90' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.032;
  pointer-events: none;
  z-index: 0;
}

.mei-testi .container { position: relative; z-index: 1; }

/* ── Header ── */
.mei-testi-header {
  text-align: center;
  margin-bottom: 60px;
}

.mei-testi-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-body);
  font-size: .72rem;
  letter-spacing: .30em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 1.1rem;
}

.mei-testi-eyebrow-line {
  display: block;
  width: 36px;
  height: 1.5px;
  background: rgba(200,32,45,.55);
}

.mei-testi-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  color: var(--white);
  letter-spacing: .03em;
  line-height: 1.1;
}

.mei-testi-heading em {
  font-style: normal;
  color: var(--red);
}

/* ── Carousel wrapper ── */
.mei-testi-carousel {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 62px;
}

.mei-testi-track {
  display: flex;
  transition: transform .58s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}

.mei-testi-slide {
  flex: 0 0 100%;
}

/* ── Card ── */
.mei-testi-card {
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 22px;
  padding: 50px 52px 46px;
  position: relative;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
}

/* Gradient sheen on card top-left */
.mei-testi-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(200,32,45,.09) 0%, transparent 55%);
  pointer-events: none;
}

/* Subtle red top border accent */
.mei-testi-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,32,45,.60), transparent);
}

.mei-testi-quote-icon {
  font-size: 3rem;
  color: var(--red);
  opacity: .48;
  line-height: 1;
  margin-bottom: 1.4rem;
}

.mei-testi-text {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.15vw, 1.08rem);
  line-height: 1.82;
  color: rgba(255,255,255,.76);
  margin-bottom: 1.5rem;
}

.mei-testi-rating {
  display: flex;
  gap: .28rem;
  margin-bottom: 1.8rem;
}

.mei-testi-rating i { color: #F5A623; font-size: .95rem; }

.mei-testi-author {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.mei-testi-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--red-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  letter-spacing: .06em;
  flex-shrink: 0;
}

.mei-testi-name {
  display: block;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

.mei-testi-role {
  display: block;
  font-family: var(--font-body);
  font-size: .84rem;
  color: var(--grey-mid);
  margin-top: .15rem;
}

/* ── Nav arrows ── */
.mei-testi-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--white);
  font-size: .95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background .25s, border-color .25s, transform .25s;
  z-index: 10;
  padding: 0;
}

.mei-testi-btn:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-50%) scale(1.08);
}

.mei-testi-btn--prev { left: 0; }
.mei-testi-btn--next { right: 0; }

/* ── Dot indicators ── */
.mei-testi-dots {
  display: flex;
  justify-content: center;
  gap: .55rem;
  margin-top: 2.5rem;
}

.mei-testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 10px;
  background: rgba(255,255,255,.20);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .3s, width .36s cubic-bezier(.4, 0, .2, 1);
}

.mei-testi-dot.active {
  background: var(--red);
  width: 30px;
}

/* ── Responsive ── */
@media (max-width: 767.98px) {
  .mei-testi-carousel { padding: 0 54px; }
  .mei-testi-card { padding: 36px 30px; }
}

@media (max-width: 575.98px) {
  .mei-testi { padding: 72px 0 80px; }
  .mei-testi-carousel { padding: 0; }
  .mei-testi-btn { display: none; }
  .mei-testi-card { padding: 28px 20px; }
}


/* ═══════════════════════════════════════════════════════════
   OUR CLIENTS
   Light section · infinite CSS marquee · 8 logo cards
═══════════════════════════════════════════════════════════ */
.mei-clients {
  padding: 92px 0 100px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

/* Dot grid texture */
.mei-clients::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,.06) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 30%, transparent 100%);
  pointer-events: none;
}

/* ── Header ── */
.mei-clients-header {
  text-align: center;
  margin-bottom: 56px;
}

.mei-clients-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-body);
  font-size: .72rem;
  letter-spacing: .30em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 1rem;
}

.mei-clients-eyebrow-line {
  display: block;
  width: 36px;
  height: 1.5px;
  background: var(--grey-light);
}

.mei-clients-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: var(--black);
  letter-spacing: .03em;
  line-height: 1.1;
  margin-bottom: .6rem;
}

.mei-clients-heading em {
  font-style: normal;
  color: var(--red);
}

.mei-clients-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── Marquee wrapper ── */
.mei-clients-track-wrap {
  position: relative;
  overflow: hidden;
  padding: 12px 0;
}

/* Fade edges */
.mei-clients-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}

.mei-clients-fade--left  { left: 0;  background: linear-gradient(90deg,  var(--white) 0%, transparent 100%); }
.mei-clients-fade--right { right: 0; background: linear-gradient(-90deg, var(--white) 0%, transparent 100%); }

/* ── Marquee scroll animation ── */
.mei-clients-marquee {
  display: flex;
  gap: 0;
  width: max-content;
  animation: clientsScroll 70s linear infinite;
  will-change: transform;
}

.mei-clients-marquee.paused {
  animation-play-state: paused;
}

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

/* ── Logo card ── */
.mei-clients-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  width: 196px;
  height: 112px;
  margin: 0 14px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 18px 22px;
  transition: border-color .3s, box-shadow .3s, transform .35s;
  flex-shrink: 0;
  cursor: default;
}

.mei-clients-logo:hover {
  border-color: rgba(200,32,45,.28);
  box-shadow: 0 8px 36px rgba(200,32,45,.10);
  transform: translateY(-5px);
}

.mei-clients-logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(200,32,45,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s;
}

.mei-clients-logo:hover .mei-clients-logo-icon {
  background: rgba(200,32,45,.16);
}

.mei-clients-logo-icon i {
  font-size: 1.4rem;
  color: var(--red);
  transition: transform .3s;
}

.mei-clients-logo:hover .mei-clients-logo-icon i {
  transform: scale(1.15);
}

.mei-clients-logo-name {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  color: var(--grey-dark);
  text-align: center;
  white-space: nowrap;
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* ── Responsive ── */
@media (max-width: 575.98px) {
  .mei-clients { padding: 64px 0 72px; }
  .mei-clients-logo { width: 158px; height: 98px; margin: 0 10px; }
  .mei-clients-fade { width: 60px; }
}


/* ============================================================
   FLOATING ACTION BUTTONS — Call & WhatsApp
   ============================================================ */
.fab-group {
  position: fixed;
  bottom: 90px;
  right: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  z-index: 9999;
}

.fab {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  text-decoration: none;
  color: #fff;
  font-size: 1.35rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: visible;
}

.fab:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.28);
  color: #fff;
}

/* Call button */
.fab--call {
  background: var(--red);
}

.fab--call:hover {
  background: var(--red-dark);
}

/* WhatsApp button */
.fab--whatsapp {
  background: #25D366;
}

.fab--whatsapp:hover {
  background: #1ebe5d;
}

/* Pulse ring on WhatsApp */
.fab--whatsapp::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.5;
  animation: fab-pulse 2s ease-out infinite;
  z-index: -1;
}

@keyframes fab-pulse {
  0%   { transform: scale(1);   opacity: 0.5; }
  70%  { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* Tooltip label — slides in from the right on hover */
.fab-label {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: #1a1a1a;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 5px 10px;
  border-radius: 4px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

/* Tooltip arrow */
.fab-label::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: #1a1a1a;
}

.fab:hover .fab-label {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Slide-in entrance animation */
.fab-group {
  animation: fab-slide-in 0.6s ease 0.8s both;
}

@keyframes fab-slide-in {
  from { opacity: 0; transform: translateX(60px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Mobile: slightly smaller */
@media (max-width: 767.98px) {
  .fab-group { bottom: 20px; right: 16px; gap: 10px; }
  .fab { width: 48px; height: 48px; font-size: 1.2rem; }
}

[type="button"]:focus, [type="button"]:hover, [type="submit"]:focus, [type="submit"]:hover, button:focus, button:hover {
	background-color: transparent!important;
	color: #fff;
	text-decoration: none;
}