html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}
body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}


main {
  flex: 1;
}



/* Base reset – ultra light */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffffff;
  color: #111111;
  line-height: 1.6;
}


/* ================================
   AXISBRAND – FAST HEADER (FIXED)
================================ */

/* HEADER WRAPPER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #eee;
}

/* FULL-WIDTH RED STRIP */


/* HEADER INNER (CONTENT WIDTH CONTROL) */
.header-inner {
  display: flex;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  background: #ffffff;
  position: relative;
}

/* LOGO BLOCK */
.logo-block {
  background: #e32619;
  padding: 18px 28px;
  display: flex;
  align-items: center;

  /* extend red to left screen edge */
  margin-left: calc(-1 * (100vw - 100%) / 2);
  padding-left: calc((100vw - 100%) / 2 + 28px);
}


.logo-block img {
  width: 160px;
  height: 55px;
  display: block;
}

/* DESKTOP NAV */

.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 36px;
  margin: 0;
  padding-left: 40px;
}

.nav-link {
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  color: #111;
  position: relative;
}

@media (min-width: 901px) {
  .nav-link:hover::after,
  .nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: #111;
  }
}
.main-nav {
  margin: 0 auto;
}


/* DROPDOWN */
.has-dropdown {
  position: relative;
}

.has-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 12px;
}

/* ================================
   DESKTOP DROPDOWN – PREMIUM
================================ */

@media (min-width: 901px) {
    
    .mobile-menu {
     display: none;
    }


  .has-dropdown > .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    
    min-width: 260px;
    max-width: 320px;

    background: #ffffff;
    border-radius: 10px;
    padding: 10px 0;

    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
    border: 1px solid rgba(0,0,0,0.06);

    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease;

    z-index: 2000;
  }

  .has-dropdown:hover > .dropdown {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }

  .dropdown li {
    list-style: none;
  }

  .dropdown li a {
    display: block;
    padding: 12px 20px;

    font-size: 14px;
    font-weight: 500;
    color: #111;
    text-decoration: none;

    transition: background 0.2s ease, color 0.2s ease;
  }

  .dropdown li a:hover {
    background: #f5f5f5;
    color: #e32619;
  }
}


/* CTA */
.header-cta {
  background: #e32619;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 24px;
  margin-left: auto;
  margin-right: 24px;
  white-space: nowrap;
}

/* HAMBURGER */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  margin-right: 16px;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #111;
  margin: 5px 0;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 900px) {
    

  .main-nav,
  .header-cta {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .header-inner {
    padding: 0;
  }

  .logo-block {
    margin-left: 0;
    padding: 14px 16px;
  }

  /* MOBILE DROPDOWN MENU */
  .mobile-menu {
    display: block; /* required for animation */
    position: absolute;
    top: 100%;
    right: 0;

    width: 75vw;
    max-width: 320px;

    background: #e32619;
    color: #ffffff;

    border-radius: 0 0 0 14px;
    box-shadow: -12px 20px 40px rgba(0,0,0,0.25);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);

    transition:
      opacity 0.25s ease,
      transform 0.25s ease,
      visibility 0s linear 0.25s;

    z-index: 2000;
  }

  .mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);

    transition:
      opacity 0.25s ease,
      transform 0.25s ease;
  }

  /* MENU LIST */
  .mobile-menu ul {
    list-style: none;
    padding: 5px;
    margin: 0;
  }

  .mobile-menu li {
    border-bottom: 1px solid rgba(255,255,255,0.25);
  }

  .mobile-menu li:last-child {
    border-bottom: none;
    margin-bottom: 4px;
  }

  .mobile-menu a {
    display: block;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.3px;
  }

  /* CLOSE BUTTON */
  .mobile-close {
    position: absolute;
    top: 12px;
    right: 14px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 22px;
    cursor: pointer;
  }

/* ============================
   MOBILE CONTACT – CTA BUTTONS
============================ */

.mobile-contact {
  padding: 5px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mobile-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 14px 16px;
  border-radius: 12px;

  background: linear-gradient(180deg, #ffffff, #f3f3f3);
  color: #e32619;

  font-size: 15px;
  font-weight: 600;
  text-decoration: none;

  box-shadow:
    0 6px 0 rgba(0,0,0,0.15),
    0 10px 20px rgba(0,0,0,0.25);

  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

/* Tap / Press effect */
.mobile-contact a:active {
  transform: translateY(3px);
  box-shadow:
    0 3px 0 rgba(0,0,0,0.15),
    0 6px 12px rgba(0,0,0,0.25);
}

/* ICONS */
.mobile-contact a::before {
  content: "";
  width: 18px;
  height: 18px;
  background-size: contain;
  background-repeat: no-repeat;
}

/* Phone icon */
    .mobile-contact a[href^="tel"]::before {
  content: "📞";
  background: none;
}

.mobile-contact a[href^="mailto"]::before {
  content: "✉️";
  background: none;
}


/* ============================
   MOBILE Menu Dropdowns
============================ */

    .mobile-menu .has-dropdown > .dropdown {
    display: none;
    padding-left: 12px;
    margin-top: 6px;
  }

  .mobile-menu .has-dropdown > a {
    position: relative;
    padding-right: 28px;
  }

  /* Arrow indicator */
  .mobile-menu .has-dropdown > a::after {
    content: "▾";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    opacity: 0.8;
  }

  /* When parent is active */
  .mobile-menu .has-dropdown.active > .dropdown {
    display: block;
  }

.mobile-menu .dropdown a {
  font-size: 14px;
  padding: 10px 0;
  opacity: 0.9;
}

/* ✅ CLOSE HEADER MOBILE MEDIA QUERY HERE */
}





/* ============================
   FOOTER – NEW GEN DESIGN
============================ */

.site-footer {
  background: radial-gradient(circle at top, #1a1a1a, #000);
  color: #ccc;
  font-size: 14px;
}

/* MAIN FOOTER GRID */
.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px 40px;

  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 40px;
}

/* BRAND COLUMN */
.footer-logo {
  width: 160px;
  margin-bottom: 14px;
}

.footer-address {
  font-size: 13px;
  margin-bottom: 10px;
  color: #aaa;
}

.footer-contact {
  display: block;
  color: #fff;
  text-decoration: none;
  margin-top: 6px;
  font-weight: 500;
}

.footer-contact:hover {
  color: #e32619;
}

/* LINKS */
.footer-links h4,
.footer-form h4 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 14px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #e32619;
}

/* MINI FORM */
.footer-lead-form input,
.footer-lead-form textarea {
  width: 100%;
  background: #0f0f0f;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 13px;
  color: #fff;
  margin-bottom: 10px;
}

.footer-lead-form textarea {
  height: 70px;
  resize: none;
}

.footer-lead-form button {
  width: 100%;
  background: linear-gradient(135deg, #e32619, #ff3b2f);
  border: none;
  color: #fff;
  padding: 11px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.footer-lead-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(227,38,25,0.35);
}

/* HONEYPOT */
.hp-field {
  display: none !important;
}

/* FOOTER BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  padding: 16px 20px;
  font-size: 13px;
  color: #777;
}

.footer-logo img {
  width: 160px;
  max-width: 100%;
  height: auto;
  display: block;
}

.footer-success-toast {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);

  background: #ffffff;
  color: #111;
  padding: 22px 28px;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);

  font-size: 16px;
  text-align: center;
  z-index: 9999;

  opacity: 0;
  pointer-events: none;
  transition: all 0.35s ease;
}

.footer-success-toast.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Honeypot */
.footer-hp {
  display: none !important;
}


/* ============================
   MOBILE
============================ */

@media (max-width: 900px) {

  .footer-main {
    display: grid;              /* ✅ REQUIRED */
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-contact {
    display: flex;              /* ✅ REQUIRED */
    justify-content: center;
  }

  .footer-logo img {
    width: 140px;
    margin: 0 auto;
  }
  
  /* Reorder footer columns on mobile */
  .footer-form {
    order: 1;
  }

  .footer-brand {
    order: 2;
  }

  .footer-links {
    order: 3;
  }
}


/* ============================
   pop-up form
============================ */

.lead-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.lead-popup.active {
  display: block;
}

.lead-popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.lead-popup-box {
  position: relative;
  max-width: 420px;
  margin: 8vh auto;
  background: #ffffff;
  padding: 32px;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  animation: popupIn 0.35s ease;
}

@keyframes popupIn {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.lead-popup-box h3 {
  margin-bottom: 6px;
  font-size: 22px;
}

.lead-popup-box p {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.lead-popup-box input,
.lead-popup-box textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.lead-popup-box textarea {
  resize: none;
  height: 100px;
}

.lead-popup-box button {
  width: 100%;
  background: #e32619;
  color: #fff;
  border: none;
  padding: 14px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
}

.lead-popup-box button:hover {
  background: #c71f14;
}

.form-status {
  margin-top: 10px;
  font-size: 14px;
}
.hp-field {
  display: none !important;
}
.popup-header {
  background: #e32619;
  color: #ffffff;
  padding: 14px 18px;
  border-radius: 10px 10px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: -32px -32px 20px -32px;
}

.popup-header span {
  font-size: 16px;
  font-weight: 600;
}

.lead-close {
  background: rgba(255,255,255,0.15);
  border: none;
  color: #ffffff;
  font-size: 22px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lead-close:hover {
  background: rgba(255,255,255,0.3);
}

.popup-subtext {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.success-toast {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);

  background: #ffffff;
  color: #111;
  padding: 22px 28px;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);

  font-size: 16px;
  text-align: center;
  z-index: 10000;

  opacity: 0;
  pointer-events: none;
  transition: all 0.35s ease;
}

.success-toast.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}


/* =====================
   WEB PLATFORMS HERO
===================== */

.services-hero {
  position: relative;
  min-height: 80vh;
  background: #000;
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Background Media */
.services-hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.services-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark Overlay */
.services-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.85) 100%
  );
}

/* Subtle Grid */
.services-hero-grid {
  position: absolute;
  inset: 0;
  z-index: 3;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 75%);
}

/* Content */
.services-hero-content {
  position: relative;
  z-index: 4;
  max-width: 1100px;
  padding: 0 6vw;
  will-change: auto;
}

.services-eyebrow {
  display: inline-block;
  margin-top: 50px;
  margin-bottom: 16px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #e32619;
}

.services-hero-title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

.services-hero-highlight {
  display: block;
  margin-top: 12px;
  color: #e32619; /* AXISBRAND RED */
  font-weight: 800;
}


.services-hero-text {
  max-width: 640px;
  font-size: 18px;
  line-height: 1.7;
  color: #cccccc;
  margin-bottom: 40px;
}

/* CTA */
.services-hero-actions .btn-outline-light {
  display: inline-block;
  padding: 14px 36px;
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-bottom: 50px;
  margin-top:50px;
}

.services-hero-actions .btn-outline-light:hover {
  background: #e32619;
  border-color: #e32619;
  transform: translateY(-2px);
}

/* Scroll Indicator */
.services-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
}

.services-scroll-indicator span {
  display: block;
  width: 2px;
  height: 40px;
  background: linear-gradient(
    to bottom,
    transparent,
    #e32619,
    transparent
  );
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0% { opacity: 0; transform: translateY(-10px); }
  50% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(10px); }
}

/* Responsive */
@media (max-width: 768px) {
  .services-hero {
    min-height: 90vh;
  }


  .services-hero-content {
    padding: 0 24px;
  }

  .services-hero-title {
    font-size: clamp(32px, 8vw, 44px);
  }

}

/* ===============================
   WEB CONSULT MODAL – ISOLATED
================================ */

.wc-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.wc-modal.active {
  display: flex;
}

.wc-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
}

.wc-container {
  position: relative;
  width: 92%;
  max-width: 520px;
  background: linear-gradient(145deg,#0f0f0f,#1a1a1a);
  border-radius: 18px;
  padding: 40px 30px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
  color: #fff;
  animation: wcFadeUp .35s ease;
  overflow: hidden;
}

@keyframes wcFadeUp {
  from { transform: translateY(20px); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}

/* Close Button */
.wc-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  transition: 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wc-close:hover {
  background: #e32619;
  transform: rotate(90deg);
}

/* Form */
.wc-form h3 {
  margin-bottom: 6px;
  font-size: 22px;
}

.wc-sub {
  opacity: 0.7;
  font-size: 14px;
  margin-bottom: 20px;
}

.wc-form input,
.wc-form select,
.wc-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 14px;
  background: #1f1f1f;
  border: 1px solid #333;
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  transition: 0.2s ease;
}

.wc-form input:focus,
.wc-form select:focus,
.wc-form textarea:focus {
  border-color: #e32619;
  outline: none;
  box-shadow: 0 0 0 2px rgba(227,38,25,0.2);
}

.wc-form textarea {
  resize: none;
  height: 100px;
}

.wc-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg,#e32619,#ff3b2f);
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s ease;
}

.wc-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(227,38,25,0.4);
}

/* SUCCESS SCREEN */
.wc-success {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg,#0f0f0f,#1a1a1a);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.35s ease;
}

.wc-success.active {
  opacity: 1;
  visibility: visible;
}

.wc-check {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #e32619;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin-bottom: 20px;
  animation: wcPop 0.4s ease;
}

@keyframes wcPop {
  from { transform: scale(0.6); opacity:0; }
  to { transform: scale(1); opacity:1; }
}

.wc-hp {
  display: none !important;
}


/* =========================
   DIGITAL INFRASTRUCTURE SECTION
========================= */

.web-architecture-section {
  position: relative;
  background: #ffffff;
  padding: 140px 6vw;
  overflow: hidden;
}

/* Background grid */
.arch-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  z-index: 1;
}

/* Animated subtle lines */
.arch-bg-lines {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(227,38,25,0.08), transparent 60%);
  animation: archPulse 8s ease-in-out infinite;
  z-index: 2;
}

@keyframes archPulse {
  0%,100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.arch-container {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: auto;
}

/* Header */
.arch-header {
  max-width: 800px;
  margin-bottom: 100px;
}

.arch-eyebrow {
  color: #e32619;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.arch-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  margin: 20px 0;
  color: #000;
}

.arch-title span {
  color: #e32619;
}

.arch-intro {
  font-size: 18px;
  color: #555;
  line-height: 1.7;
}

/* System Grid */
.arch-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

/* Vertical spine */
.arch-spine {
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #e32619, transparent);
}

/* Blocks */
.arch-block {
  position: relative;
  padding: 40px 40px 40px 60px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
  transition: all 0.4s ease;
  overflow: hidden;
}

.arch-block::before {
  content: attr(data-index);
  position: absolute;
  left: -8px;
  top: 40px;
  background: #e32619;
  color: #fff;
  font-size: 12px;
  padding: 6px 10px;
  font-weight: 600;
}

.arch-block h3 {
  margin-bottom: 14px;
  font-size: 22px;
  color: #000;
}

.arch-block p {
  color: #666;
  line-height: 1.7;
}

/* Hover glow */
.arch-block:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(227,38,25,0.15);
}

/* Footer */
.arch-footer {
  text-align: center;
  margin-top: 120px;
  font-size: 22px;
}

.arch-footer strong {
  color: #e32619;
}

/* Desktop Layout */
@media (min-width: 900px) {

  .arch-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }

  .arch-spine {
    left: 50%;
    transform: translateX(-50%);
  }

  .arch-block {
    padding: 60px;
  }

}

/* ==============================
   ENGINEERING FRAMEWORK SECTION
============================== */

.eng-framework {
  position: relative;
  background: #0a0a0a;
  color: #fff;
  padding: 140px 0;
  overflow: hidden;
}

/* Animated Grid */
.eng-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridMove 20s linear infinite;
  z-index: 1;
}

@keyframes gridMove {
  from { transform: translateY(0); }
  to { transform: translateY(80px); }
}

/* Glow */
.eng-bg-glow {
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(227,38,25,0.18), transparent 70%);
  top: -200px;
  right: -200px;
  filter: blur(100px);
  z-index: 1;
}

.eng-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  padding: 0 6vw;
}

/* Header */
.eng-header {
  text-align: center;
  margin-bottom: 120px;
}

.eng-eyebrow {
  color: #e32619;
  letter-spacing: 2px;
  font-size: 13px;
  text-transform: uppercase;
}

.eng-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  margin-top: 20px;
}

.eng-title span {
  color: #e32619;
}

/* Spine */
.eng-system {
  position: relative;
}

.eng-spine {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, #e32619, transparent);
}

/* Core */
.eng-core {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto 100px auto;
}

.core-ring {
  position: absolute;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(227,38,25,0.5);
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}

.core-ring.ring-2 {
  width: 140px;
  height: 140px;
  top: 20px;
  left: 20px;
  animation-direction: reverse;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.core-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
}

/* Nodes */
.eng-node {
  position: relative;
  width: 50%;
  padding: 60px 60px;
}

.eng-node.left {
  left: 0;
  text-align: right;
}

.eng-node.right {
  left: 50%;
  text-align: left;
}

.node-dot {
  position: absolute;
  top: 70px;
  width: 14px;
  height: 14px;
  background: #e32619;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(227,38,25,0.8);
}

.eng-node.left .node-dot {
  right: -7px;
}

.eng-node.right .node-dot {
  left: -7px;
}

.node-card {
  background: rgba(255,255,255,0.04);
  padding: 28px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: 0.4s ease;
}

.node-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(227,38,25,0.25);
}

/* Closing */
.eng-closing {
  text-align: center;
  margin-top: 120px;
  font-size: 20px;
}

.eng-closing strong {
  color: #e32619;
}

/* Responsive */
@media (max-width: 900px) {

  .eng-node {
    width: 100%;
    left: 0 !important;
    text-align: left;
    padding: 40px 0;
  }

  .eng-spine {
    left: 10px;
  }

  .node-dot {
    left: 3px !important;
  }
}


/* =========================
   PORTFOLIO SHOWCASE
=========================== */
.portfolio-section {
  background: #fff;
  padding: 120px 6vw;
  text-align: center;
  overflow: hidden;
}

.portfolio-eyebrow {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #e32619;
  margin-bottom: 12px;
}

.portfolio-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  margin-bottom: 16px;
  color: #111;
}

.portfolio-intro {
  font-size: 18px;
  color: #555;
  margin-bottom: 44px;
}

/* Grid */
.portfolio-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: start;
}

/* Item */
.portfolio-item {
  position: relative;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.portfolio-item:hover {
  transform: translateY(-8px);
}

.portfolio-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.10);
  position: relative;
}

.portfolio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 0.6s ease;
}

.portfolio-item:hover .portfolio-img img {
  transform: scale(1.05);
}

.portfolio-label {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 600;
  color: #111;
}

/* Mobile */
@media (max-width: 768px) {
  .portfolio-title {
    font-size: clamp(26px, 6vw, 40px);
  }
  .portfolio-grid {
    gap: 24px;
  }
  .portfolio-img {
    border-radius: 10px;
  }
}

/* =========================
   CTA
=========================== */

.wb-section {
  position: relative;
  background: #000;
  padding: 140px 20px;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.wb-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.wb-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(227,38,25,0.25), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: wbPulse 6s infinite ease-in-out;
}

@keyframes wbPulse {
  0% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.2); }
  100% { transform: translate(-50%, -50%) scale(1); }
}

.wb-container {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: auto;
}

.wb-title {
  font-size: clamp(34px, 5vw, 48px);
  font-weight: 800;
}

.wb-title span { color: #e32619; }

.wb-sub { color: #bbb; margin-bottom: 40px; }

.wb-card {
  background: rgba(15,15,15,0.9);
  padding: 50px 40px;
  border-radius: 16px;
}

.wb-step { display: none; }
.wb-step.active { display: block; }

.wb-option {
  width: 100%;
  padding: 16px;
  margin: 10px 0;
  border: 1px solid #333;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.wb-option:hover {
  background: #e32619;
  border-color: #e32619;
}

.wb-form-step input,
.wb-form-step textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 16px;
  background: #111;
  border: 1px solid #333;
  color: #fff;
}

.wb-submit-btn {
  width: 100%;
  padding: 16px;
  background: #e32619;
  border: none;
  font-weight: 600;
  cursor: pointer;
}
.wb-success {
  text-align: center;
  padding: 40px;
}

.wb-success h3 {
  color: #e32619;
  margin-bottom: 20px;
}

.wb-success p {
  color: #ccc;
  line-height: 1.6;
}


