/* ═══════════════════════════════════════════════════════════
   Sumangal Forgings Pvt. Ltd. — Nordic Architectural Dark Edition
   Inspired by Nordic Home-03 Theme (Clean Space Grotesk & Bento Grid)
═══════════════════════════════════════════════════════════ */

@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  /* Nordic Obsidian Palette */
  --bg-main: #06070a;
  --bg-surface: #0a0c12;
  --bg-card: #0f121a;
  --bg-card-hover: #151924;

  /* STRICTLY ONE UNIFIED BRAND BLUE (FROM LOGO) */
  --brand-blue: #0056b3;
  --brand-blue-hover: #004085;
  --brand-blue-glow: rgba(0, 86, 179, 0.35);
  --brand-blue-border: rgba(0, 86, 179, 0.4);
  --brand-blue-subtle: rgba(0, 86, 179, 0.12);

  /* Glass & Borders */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.22);

  /* Typography */
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── BASE RESET ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #1e293b #06070a;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: #06070a;
}

::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--brand-blue);
}

body {
  padding: 0;
  margin: 0;
  background: var(--bg-main);
  color: var(--text-primary);
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* Nordic Headings — Space Grotesk */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Space Grotesk", sans-serif;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 15px;
}

a,
a:hover {
  text-decoration: none !important;
}

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

ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

/* ─── CONTAINER ─── */
.container {
  max-width: 100% !important;
  margin: 0 auto !important;
  padding: 0 5rem !important;
  width: 100% !important;
}

/* Nordic Section Subtitle */
.nordic-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--brand-blue);
  text-transform: uppercase;
  font-family: "Space Grotesk", sans-serif;
  margin-bottom: 14px;
}

.title {
  font-weight: 700;
  font-size: 38px;
  display: block;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.highlight-blue {
  color: var(--brand-blue) !important;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 640px;
  margin: 0 auto;
}

/* ─── TOP BAR ─── */
.top-bar {
  background: #020305;
  border-bottom: 1px solid var(--border-subtle);
}

.top-bar a {
  text-decoration: none;
}

.hover-white:hover {
  color: #ffffff !important;
}

.live-pulse-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px #10b981;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

/* ─── HEADER ─── */
.header {
  position: sticky;
  z-index: 99999;
  top: 0;
  transition: var(--transition);
}

.header.fixed {
  background: rgba(4, 5, 7, 0.96) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  box-shadow: 0 10px 45px rgba(0, 0, 0, 0.9);
}

/* Ensure mobile menu can load default colors if not toggled yet */
.navbar-menu {
  transition: var(--transition);
}


/* ─── BUTTONS ─── */
.btn-nordic-primary,
.btn-blue {
  padding: 15px 36px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 4px;
  transition: var(--transition);
  font-family: "Space Grotesk", sans-serif;
  background: var(--brand-blue);
  color: #ffffff;
  border: 1px solid var(--brand-blue);
  box-shadow: 0 4px 20px var(--brand-blue-glow);
}

.btn-nordic-primary:hover,
.btn-blue:hover {
  background: var(--brand-blue-hover);
  border-color: var(--brand-blue-hover);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(0, 86, 179, 0.5);
}

.btn-nordic-outline,
.btn-outline-light {
  padding: 15px 36px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 4px;
  transition: var(--transition);
  font-family: "Space Grotesk", sans-serif;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(12px);
}

.btn-nordic-outline:hover,
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-hover);
  color: var(--text-primary);
  transform: translateY(-3px);
}

/* ─── NORDIC HERO SECTION ─── */
.nordic-hero {
  position: relative;
  min-height: 720px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 120px 0 140px;
  border-bottom: 1px solid var(--border-subtle);
}

.nordic-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(0, 86, 179, 0.15) 0%, transparent 65%),
    linear-gradient(90deg, rgba(6, 7, 10, 0.96) 50%, rgba(6, 7, 10, 0.7) 100%);
}

.nordic-hero-content {
  position: relative;
  z-index: 2;
}

.nordic-hero-title {
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.08;
  color: #ffffff;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.nordic-hero-desc {
  font-size: 17px;
  color: #94a3b8;
  max-width: 680px;
  margin-bottom: 40px;
  line-height: 1.75;
}

/* Nordic Hero Stats Ribbon */
.nordic-hero-stats-ribbon {
  background: rgba(10, 12, 18, 0.92);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(20px);
  border-radius: 8px;
  padding: 24px 36px;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.nordic-stat-box h4 {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 2px;
  font-family: "Space Grotesk", sans-serif;
}

.nordic-stat-box p {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ─── ABOUT STUDIO SECTION ─── */
.video-main {
  padding: 7rem 0;
  background: var(--bg-main);
}

.video-inner {
  display: flex;
  align-items: center;
  gap: 4.5rem;
}

.vodeo-sec {
  width: 46%;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

.vodeo-sec img {
  width: 100%;
  display: block;
  transition: var(--transition);
  filter: brightness(0.92);
}

.vodeo-sec:hover img {
  transform: scale(1.04);
  filter: brightness(1);
}

.experience-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(10, 12, 18, 0.94);
  border: 1px solid var(--brand-blue-border);
  backdrop-filter: blur(16px);
  padding: 18px 26px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
}

.exp-number {
  font-size: 42px;
  font-weight: 700;
  color: var(--brand-blue);
  line-height: 1;
  font-family: "Space Grotesk", sans-serif;
}

.exp-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

.vodeo-content {
  width: 54%;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-secondary);
}

.check-item i {
  color: var(--brand-blue);
  font-size: 16px;
}

/* ─── NORDIC BENTO PRODUCTS SHOWCASE ─── */
.product-tabs-section {
  padding: 7rem 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.product-nav-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.product-tab-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: "Space Grotesk", sans-serif;
}

.product-tab-btn:hover,
.product-tab-btn.active {
  background: var(--brand-blue);
  color: #ffffff;
  border-color: var(--brand-blue);
  box-shadow: 0 4px 25px var(--brand-blue-glow);
}

.product-card-3col {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card-3col:hover {
  border-color: var(--brand-blue-border);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 25px var(--brand-blue-subtle);
}

.product-card-img {
  height: 240px;
  background: var(--bg-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  position: relative;
}

.product-card-img img {
  max-height: 180px;
  max-width: 100%;
  object-fit: contain;
  transition: var(--transition);
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.6));
}

.product-card-3col:hover .product-card-img img {
  transform: scale(1.08);
}

.badge-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(10, 12, 18, 0.92);
  border: 1px solid var(--brand-blue-border);
  backdrop-filter: blur(10px);
  color: var(--brand-blue);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  font-family: "Space Grotesk", sans-serif;
}

.product-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card-body h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--text-primary);
  transition: var(--transition);
}

.product-card-3col:hover .product-card-body h3 {
  color: var(--brand-blue);
}

.product-card-body p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 22px;
}

.product-card-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 18px;
}

.link-text {
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-blue);
  letter-spacing: 0.5px;
  font-family: "Space Grotesk", sans-serif;
}

/* ─── MANUFACTURING CAPABILITIES PIPELINE ─── */
.capability-section {
  padding: 7rem 0;
  background: var(--bg-main);
}

.capability-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 36px 30px;
  transition: var(--transition);
  height: 100%;
}

.capability-card:hover {
  border-color: var(--brand-blue-border);
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8), 0 0 25px var(--brand-blue-subtle);
}

.capability-num {
  font-size: 42px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.05);
  font-family: "Space Grotesk", sans-serif;
  margin-bottom: 12px;
}

.capability-icon {
  width: 52px;
  height: 52px;
  border-radius: 6px;
  background: var(--brand-blue-subtle);
  border: 1px solid var(--brand-blue-border);
  color: var(--brand-blue);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.capability-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.capability-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ─── STATS COUNTER BAR ─── */
.counter-area {
  background: var(--bg-surface);
  padding: 65px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.counter-item {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 28px 34px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  transition: var(--transition);
}

.counter-item:hover {
  border-color: var(--brand-blue-border);
  transform: translateY(-4px);
  background: var(--bg-card-hover);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
}

.counter-item .icon {
  font-size: 44px;
  color: var(--brand-blue);
}

.count-content {
  border-left: 1px solid var(--border-subtle);
  padding-left: 20px;
}

.count-content span,
.count-content .count,
.sub-per {
  font-size: 44px;
  font-weight: 700;
  color: var(--text-primary);
  font-family: "Space Grotesk", sans-serif;
  line-height: 1;
}

.count-content p {
  margin: 6px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

/* ─── CORPORATE VIDEO ─── */
.corporate-video-section {
  background: var(--bg-main) !important;
  padding: 7rem 0;
}

.corporate-video-section .ratio {
  border-radius: 10px !important;
  overflow: hidden !important;
  border: 1px solid var(--border-subtle) !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9) !important;
}

/* ─── NORDIC MILESTONE TIMELINE ─── */
.milestone-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 7rem 0;
}

.milestone-timeline {
  position: relative;
  max-width: 850px;
  margin: 0 auto;
  padding-left: 30px;
}

.milestone-timeline::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 65px;
  width: 2px;
  background: linear-gradient(180deg, var(--brand-blue) 0%, rgba(0, 86, 179, 0.1) 100%);
}

.milestone-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 25px;
  margin-bottom: 32px;
}

.milestone-item:last-child {
  margin-bottom: 0;
}

.milestone-badge {
  width: 76px;
  height: 40px;
  border-radius: 4px;
  background: var(--bg-card);
  border: 1px solid var(--brand-blue-border);
  color: var(--brand-blue);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 2;
  box-shadow: 0 0 15px var(--brand-blue-subtle);
  font-family: "Space Grotesk", sans-serif;
}

.milestone-card {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 26px 32px;
  transition: var(--transition);
}

.milestone-card:hover {
  border-color: var(--brand-blue-border);
  transform: translateX(8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
  background: var(--bg-card-hover);
}

.milestone-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.milestone-header i {
  font-size: 18px;
  color: var(--brand-blue);
}

.milestone-header h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 0;
  color: var(--text-primary);
}

.milestone-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}

/* ─── NORDIC CTA BANNER ─── */
.cta-banner {
  background: linear-gradient(180deg, var(--bg-surface) 0%, #020305 100%);
  border-top: 1px solid var(--border-subtle);
  padding: 100px 0;
}

.cta-banner h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto;
}

/* ─── FOOTER ─── */
.footer-area {
  background: #020305;
  padding: 80px 0 40px;
  border-top: 1px solid var(--border-subtle);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.6fr;
  gap: 40px;
  color: var(--text-primary);
}

.footer-widget .f-title {
  font-size: 15px;
  color: var(--text-primary);
  font-weight: 700;
  margin-bottom: 24px;
  padding-bottom: 10px;
  position: relative;
  font-family: "Space Grotesk", sans-serif;
}

.footer-widget .f-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--brand-blue);
}

.footer-widget .footer-links li {
  margin-bottom: 10px;
}

.footer-widget .footer-links li a {
  color: var(--text-secondary);
  font-size: 14px;
  transition: var(--transition);
}

.footer-widget .footer-links li a:hover {
  color: var(--brand-blue);
  padding-left: 6px;
}

.hover-blue:hover {
  color: var(--brand-blue) !important;
}

.icon-holder {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-holder .fa {
  font-size: 14px;
  color: var(--brand-blue);
}

.content-holder p,
.content-holder p a {
  color: var(--text-secondary);
  font-size: 14px;
}

.footer-social-links li a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social-links li a:hover {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: #ffffff;
}

.footer-bottom {
  background: #010203;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.copyright {
  color: var(--text-muted);
  font-size: 13.5px;
}

/* ─── MODAL ─── */
.modal-content {
  background: var(--bg-card) !important;
  border: 1px solid var(--border-subtle) !important;
  border-radius: 8px !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9) !important;
}

.modal-body .title {
  color: var(--text-primary);
  font-weight: 700;
  font-family: "Space Grotesk", sans-serif;
}

.modal-content .modal-body .btn {
  background: var(--brand-blue);
  color: #ffffff;
  border-radius: 4px;
  font-weight: 700;
  font-family: "Space Grotesk", sans-serif;
}

.modal-content .modal-body .btn:hover {
  background: var(--brand-blue-hover);
}

.form-control {
  background: var(--bg-surface) !important;
  border: 1px solid var(--border-subtle) !important;
  color: var(--text-primary) !important;
  border-radius: 4px !important;
}

.form-control:focus {
  border-color: var(--brand-blue) !important;
  box-shadow: 0 0 0 2px var(--brand-blue-subtle) !important;
}

@media (max-width: 992px) {
  .nordic-hero-title {
    font-size: 2.8rem;
  }

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

  .video-inner {
    flex-direction: column;
  }

  .vodeo-sec,
  .vodeo-content {
    width: 100%;
  }
}

/* ═══════════════════════════════════════════════════════════
   100x PREMIUM NORDIC ARCHITECTURAL LAYOUT STYLES
═══════════════════════════════════════════════════════════ */

/* ── Utilities ── */
.bg-obsidian {
  background-color: #0a0c12;
}

.bg-obsidian-darker {
  background-color: #040507;
}

.text-blue {
  color: var(--brand-blue) !important;
}

.letter-spacing-2 {
  letter-spacing: 2px;
}

.max-w-300 {
  max-width: 300px;
  margin: 0 auto;
}

.btn-arch-primary,
.btn-arch-outline,
.btn-arch-link {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
}

.btn-arch-primary {
  background: var(--brand-blue);
  color: #fff;
  padding: 16px 36px;
  border-radius: 0;
}

.btn-arch-primary:hover {
  background: #fff;
  color: var(--bg-main);
  box-shadow: 0 15px 30px rgba(255, 255, 255, 0.1);
}

.btn-arch-outline {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 15px 35px;
}

.btn-arch-outline:hover {
  border-color: #fff;
  background: #fff;
  color: #000;
}

.btn-arch-link {
  color: var(--brand-blue);
  font-size: 15px;
  border-bottom: 1px solid transparent;
}

.btn-arch-link i {
  margin-left: 8px;
  transition: 0.3s;
}

.btn-arch-link:hover {
  color: #fff;
  border-bottom: 1px solid #fff;
}

.btn-arch-link:hover i {
  transform: translateX(5px);
}

/* ── Section Defaults ── */
.arch-section {
  padding: 120px 0;
  position: relative;
}

.arch-section-header {
  margin-bottom: 60px;
}

.arch-section-header.center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.arch-section-num {
  font-size: 14px;
  font-family: "Space Grotesk";
  color: var(--brand-blue);
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}

.arch-section-subtitle {
  font-size: 12px;
  letter-spacing: 3px;
  color: #888;
  text-transform: uppercase;
  display: block;
  margin-bottom: 15px;
}

.arch-section-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: -1px;
}

/* ── 1. Hero ── */
.architectural-hero {
  position: relative;
  min-height: 100vh;
  background: #000;
}

.arch-hero-slider,
.arch-hero-slider .owl-stage-outer,
.arch-hero-slider .owl-stage,
.arch-hero-slider .owl-item,
.arch-hero-slider .item {
  height: 100vh;
}

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

.arch-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 5, 7, 0.95) 0%, rgba(4, 5, 7, 0.6) 100%);
  z-index: 1;
}

.arch-hero-slide .container {
  position: relative;
  z-index: 2;
  padding-top: 100px;
}

.arch-tag {
  display: inline-block;
  font-family: "Space Grotesk";
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 20px;
  border-left: 3px solid var(--brand-blue);
  padding-left: 15px;
}

.arch-title {
  font-size: 90px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 30px;
  letter-spacing: -2px;
  text-transform: uppercase;
}

.arch-desc {
  font-size: 20px;
  color: #aaa;
  max-width: 600px;
  line-height: 1.6;
}

/* Stats Ribbon */
.arch-stats-ribbon {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background: rgba(10, 12, 18, 0.85);
  backdrop-filter: blur(15px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.arch-stat-item {
  padding: 40px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

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

.arch-stat-item h4 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
  font-family: "Space Grotesk";
}

.arch-stat-item p {
  font-size: 14px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

/* ── 2. About ── */
.arch-about-section {
  background: var(--bg-main);
  overflow: hidden;
}

.arch-image-wrap {
  position: relative;
  padding: 40px 0 0 40px;
}

.arch-bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 80%;
  background: #0a0c12;
  z-index: 0;
}

.arch-img-main {
  position: relative;
  z-index: 1;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}

.arch-exp-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--brand-blue);
  padding: 40px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 15px;
}

.arch-exp-badge .num {
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
  font-family: "Space Grotesk";
}

.arch-exp-badge .txt {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.4;
  color: #fff;
}

.arch-text-content .lead-text {
  font-size: 24px;
  font-weight: 300;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 30px;
}

.arch-list li {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 16px;
  color: #aaa;
  display: flex;
  align-items: center;
}

.arch-list li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--brand-blue);
  margin-right: 15px;
  border-radius: 50%;
}

/* ── 3. Products ── */
.arch-product-card {
  background: transparent;
  border: none;
  overflow: hidden;
  position: relative;
}

.arch-product-card .img-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  margin-bottom: 25px;
}

.arch-product-card .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.arch-product-card .overlay-link {
  position: absolute;
  inset: 0;
  background: rgba(0, 86, 179, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s;
  cursor: pointer;
}

.arch-product-card .overlay-link i {
  font-size: 40px;
  color: #fff;
  transform: scale(0.5);
  transition: transform 0.5s;
}

.arch-product-card:hover .img-wrapper img {
  transform: scale(1.05);
}

.arch-product-card:hover .overlay-link {
  opacity: 1;
}

.arch-product-card:hover .overlay-link i {
  transform: scale(1);
}

.arch-product-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  font-family: "Space Grotesk";
  color: #fff;
}

.arch-product-card p {
  font-size: 15px;
  color: #888;
}

/* ── 4. Capabilities ── */
.arch-capabilities-section {
  background: #0a0c12;
}

.arch-cap-grid {
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.arch-cap-item {
  position: relative;
  padding: 60px 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.arch-cap-item:nth-child(4n) {
  border-right: none;
}

.arch-cap-item .bg-num {
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 120px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.02);
  font-family: "Space Grotesk";
  line-height: 1;
  transition: 0.5s;
}

.arch-cap-item:hover .bg-num {
  color: rgba(0, 86, 179, 0.1);
  transform: translateY(-10px);
}

.arch-cap-item h4 {
  font-size: 22px;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
  font-family: "Space Grotesk";
  color: #fff;
}

.arch-cap-item p {
  font-size: 15px;
  color: #888;
  margin: 0;
  position: relative;
  z-index: 2;
}

/* ── 5. Video ── */
.arch-video-section .video-container {
  height: 70vh;
  width: 100%;
  overflow: hidden;
}

.arch-video-section video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.arch-video-section .video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
  transition: background 0.5s;
}

.arch-video-section .video-overlay.playing {
  background: transparent;
}

.arch-video-section .play-btn {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arch-video-section .play-btn:hover {
  background: #fff;
  color: #000;
  transform: scale(1.1);
}

.arch-video-section .video-overlay.playing h2 {
  opacity: 0;
}

/* ── 6. CTA & Forms ── */
.arch-cta-section {
  background: var(--bg-main);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.arch-cta-title {
  font-size: 48px;
  font-weight: 700;
  font-family: "Space Grotesk";
  color: #fff;
}

.arch-cta-desc {
  font-size: 20px;
  color: #888;
  max-width: 600px;
  margin: 0 auto;
}

.arch-form-control {
  background: rgba(255, 255, 255, 0.03);
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 0;
  padding: 15px 0;
  width: 100%;
  font-size: 15px;
  transition: 0.3s;
  outline: none;
}

.arch-form-control:focus {
  border-bottom-color: var(--brand-blue);
  background: rgba(255, 255, 255, 0.05);
  padding-left: 15px;
}

/* Dots */
.arch-hero-slider .owl-dots {
  position: absolute;
  bottom: 150px;
  left: 50px;
}

.arch-hero-slider .owl-dot {
  display: inline-block;
  margin: 0 5px;
}

.arch-hero-slider .owl-dot span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3) !important;
  transition: 0.3s;
}

.arch-hero-slider .owl-dot.active span {
  background: var(--brand-blue) !important;
  transform: scale(1.5);
}

/* ─── PREMIUM HERO / BANNER SECTION ─── */
.premium-hero {
  position: relative;
  background: var(--bg-main);
  padding: 4rem 0 3rem;
  /* Shorter height for inner pages */
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.premium-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(4, 5, 7, 0.95) 0%,
      rgba(4, 5, 7, 0.80) 50%,
      rgba(4, 5, 7, 0.95) 100%);
  z-index: 10;
}

/* High-tech engineering graph paper grid background overlay */
.arch-grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 11;
  background-size: 50px 50px;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
}

.premium-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  scale: 1.05;
  animation: slowPan 25s ease-in-out infinite alternate;
}

.premium-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.35;
  filter: grayscale(100%);
}

.premium-hero-content {
  position: relative;
  z-index: 20;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.premium-hero-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--brand-blue);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.premium-hero-subtitle::before,
.premium-hero-subtitle::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--brand-blue);
}

.premium-hero-title {
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: 3.5rem;
  letter-spacing: -1.5px;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.premium-hero-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-top: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.85;
  line-height: 1.6;
}

/* modern dark styled breadcrumbs */
.breadcrumb-bar {
  background: var(--bg-surface) !important;
  border-bottom: 1px solid var(--border-subtle) !important;
  padding: 1.2rem 0 !important;
  position: relative;
  z-index: 20;
}

.breadcrumb-bar .breadcrumb {
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  list-style: none !important;
}

.breadcrumb-bar .breadcrumb-item {
  font-family: "Space Grotesk", sans-serif !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.2em !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
}

.breadcrumb-bar .breadcrumb-item a {
  color: var(--text-secondary) !important;
  transition: color 0.3s ease !important;
}

.breadcrumb-bar .breadcrumb-item a:hover {
  color: #fff !important;
}

.breadcrumb-bar .breadcrumb-item.active {
  color: #fff !important;
  font-weight: 700 !important;
}

.breadcrumb-bar .breadcrumb-item+.breadcrumb-item::before {
  content: "/" !important;
  color: #1e293b !important;
  padding-right: 0.5rem !important;
}

/* Keyframes for slow panning hero image */
@keyframes slowPan {
  0% {
    transform: scale(1.05) translate(0, 0);
  }

  100% {
    transform: scale(1.05) translate(-2%, 2%);
  }
}

@media (max-width: 768px) {
  .premium-hero {
    padding: 3rem 0 2rem;
  }

  .premium-hero-title {
    font-size: 2.2rem;
    letter-spacing: -0.5px;
  }
}