/* =====================================================
   DAIJO Technologies — Master Stylesheet v1.2
   Website: daijo.in
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Nunito:wght@300;400;500;600&family=Bebas+Neue&family=Barlow+Condensed:wght@200;300;400&display=swap');

/* =====================================================
   CUSTOM BRAND FONTS (upload files to assets/fonts/)
   Bombardment  → used for "DAIJO" in navbar
   Suissnord    → used for "TECHNOLOGIES" in navbar
   Bebas Neue / Barlow Condensed serve as fallbacks until
   the font files are uploaded.
   ===================================================== */
@font-face {
  font-family: 'Bombardment';
  src: url('assets/fonts/Bombardment.woff2') format('woff2'),
       url('assets/fonts/Bombardment.woff')  format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Suissnord';
  src: url('assets/fonts/Suissnord.woff2') format('woff2'),
       url('assets/fonts/Suissnord.woff')  format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Brand */
  --primary:        #0070c0;
  --primary-dark:   #004f8a;
  --primary-light:  #e0f0ff;
  --primary-50:     #e0f0ff;
  --primary-100:    #c2e0f8;

  /* Accent */
  --accent:         #C85C00;
  --accent-light:   #FF8C42;

  /* Text */
  --text:           #444444;
  --text-2:         #4a5880;
  --text-3:         #8090b0;
  --dark:           #444444;
  --muted:          #4a5880;

  /* Layout */
  --white:          #FFFFFF;
  --light:          #f4f8fc;
  --gray-50:        #f0f4f9;
  --gray-100:       #e4ecf4;
  --gray-200:       #d0d9ee;
  --gray-400:       #8090b0;
  --gray-600:       #4a5880;
  --gray-700:       #2e3c60;
  --border:         #d0d9ee;
  --border-dark:    #b0bdd8;

  /* Status */
  --success:        #1a7a4a;
  --success-light:  #e6f5ee;
  --danger:         #b91c1c;
  --danger-light:   #fee2e2;

  --font-heading: 'Montserrat', sans-serif;
  --font-body:    'Nunito', sans-serif;

  --nav-height: 80px;
  --radius:     8px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  --shadow-sm:  0 1px 4px rgba(0,0,0,0.07);
  --shadow:     0 4px 16px rgba(0,112,192,0.12);
  --shadow-md:  0 8px 32px rgba(0,112,192,0.16);
  --shadow-lg:  0 20px 56px rgba(0,112,192,0.20);
  --shadow-dk:  0 8px 32px rgba(0,0,0,0.14);

  --ease:       all 0.30s cubic-bezier(0.4,0,0.2,1);
  --ease-fast:  all 0.15s ease;
}

/* =====================================================
   RESET
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a  { color: var(--primary); text-decoration: none; transition: var(--ease); }
a:hover { color: var(--primary-dark); }
ul, ol { list-style: none; }

/* =====================================================
   TYPOGRAPHY
   ===================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.22;
  color: var(--dark);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.65rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1.05rem; }
h6 { font-size: 0.95rem; }
p  { color: var(--muted); line-height: 1.82; margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* =====================================================
   UTILITIES
   ===================================================== */
.section-py    { padding: 96px 0; }
.section-py-sm { padding: 60px 0; }
.bg-light-page { background: var(--light); }
.bg-primary-tint { background: var(--primary-50); }
.text-primary-brand { color: var(--primary) !important; }
.text-accent-brand  { color: var(--accent)  !important; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}
.section-eyebrow::before {
  content: '';
  width: 28px;
  height: 2.5px;
  background: var(--primary);
  display: inline-block;
  flex-shrink: 0;
}

.section-heading {
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--dark);
}

.section-lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 620px;
  line-height: 1.85;
  margin-bottom: 48px;
}
.section-lead.mx-auto { margin-left: auto; margin-right: auto; text-align: center; }

.divider-bar {
  width: 56px; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 2px;
  margin-bottom: 22px;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  line-height: 1;
  text-decoration: none;
}
.btn-primary-brand {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 18px rgba(21,101,216,0.30);
}
.btn-primary-brand:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(21,101,216,0.42);
}
.btn-outline-brand {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-brand:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white-solid {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}
.btn-white-solid:hover {
  background: var(--primary-50);
  color: var(--primary-dark);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: var(--white);
}
.btn-lg { padding: 18px 42px; font-size: 0.95rem; }
.btn-sm { padding: 10px 22px; font-size: 0.8rem; }
.btn i { font-size: 0.95em; }

/* =====================================================
   CARDS — base
   ===================================================== */
.card-brand {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  padding: 36px 30px;
  transition: var(--ease);
  position: relative;
  overflow: hidden;
}
.card-brand:hover {
  border-color: var(--primary-100);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.card-icon {
  width: 62px; height: 62px;
  border-radius: var(--radius);
  background: var(--primary-50);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  color: var(--primary);
  margin-bottom: 22px;
  transition: var(--ease);
}
.card-brand:hover .card-icon {
  background: var(--primary);
  color: var(--white);
}
.card-title-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 10px;
}
.card-text-brand {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.75;
}

/* =====================================================
   NAVBAR
   ===================================================== */
.navbar-brand-custom {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-100);
  padding: 0 !important;
  height: var(--nav-height);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1030;
  transition: var(--ease);
}
.navbar-brand-custom.scrolled {
  box-shadow: 0 4px 24px rgba(21,101,216,0.10);
  border-bottom-color: var(--gray-200);
}
.navbar-brand-custom .navbar-brand {
  display: flex; align-items: center; gap: 12px; padding: 0;
}
.nav-logo { width: 42px; height: 42px; object-fit: contain; }
.nav-brand-text { display: flex; flex-direction: column; line-height: 1; gap: 0; }
.nav-brand-name {
  font-family: 'Bombardment', 'Bebas Neue', 'Impact', sans-serif;
  font-weight: normal;
  font-size: 2.0rem;
  color: var(--primary);
  letter-spacing: 0.10em;
  line-height: 1;
  display: inline-block;
  transform: scaleY(0.58);
  transform-origin: center bottom;
}
.nav-brand-sub {
  font-family: 'Suissnord', 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: 0.62rem;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 3px;
}
.navbar-brand-custom .nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--gray-700) !important;
  padding: 8px 16px !important;
  letter-spacing: 0.02em;
  position: relative;
  transition: var(--ease);
}
.navbar-brand-custom .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 16px; right: 16px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.navbar-brand-custom .nav-link:hover,
.navbar-brand-custom .nav-link.active {
  color: var(--primary) !important;
}
.navbar-brand-custom .nav-link:hover::after,
.navbar-brand-custom .nav-link.active::after { transform: scaleX(1); }

.btn-nav-cta {
  background: var(--primary);
  color: var(--white) !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 10px 22px;
  border-radius: var(--radius);
  border: none;
  transition: var(--ease);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-nav-cta:hover {
  background: var(--primary-dark);
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(21,101,216,0.38);
}
.navbar-toggler {
  border: 1.5px solid var(--gray-200);
  padding: 6px 10px;
  border-radius: var(--radius);
}
.navbar-toggler:focus { box-shadow: none; outline: 2px solid var(--primary-100); }

/* =====================================================
   HOME HERO
   ===================================================== */
.hero-home {
  min-height: 100vh;
  padding-top: var(--nav-height);
  background: var(--white);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-50);
  border: 1px solid var(--primary-100);
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.hero-badge span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  display: inline-block;
}
.hero-h1 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.12;
  color: var(--dark);
  margin-bottom: 22px;
  letter-spacing: -0.03em;
}
.hero-h1 em {
  font-style: normal;
  color: var(--primary-dark);
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: var(--primary-dark);
  background-clip: unset;
}
.hero-desc {
  font-size: 1.08rem;
  color: var(--muted);
  line-height: 1.85;
  max-width: 510px;
  margin-bottom: 38px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero-stat-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2.1rem;
  color: var(--primary);
  line-height: 1;
}
.hero-stat-lbl {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-top: 4px;
}
.hero-visual-block {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Hero carousel (replaces static logo display) */
.hero-carousel-wrap {
  position: absolute;
  top: 0; right: 0;
  width: 52%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero-carousel-wrap .carousel,
.hero-carousel-wrap .carousel-inner,
.hero-carousel-wrap .carousel-item {
  height: 100%;
}
.hero-carousel-wrap .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-slide-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(150deg, var(--primary-50) 0%, var(--primary-100) 60%, #d4e9f7 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--primary);
}
.hero-slide-placeholder i { font-size: 56px; opacity: 0.35; }
.hero-slide-placeholder span {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  opacity: 0.55;
  letter-spacing: 0.06em;
}
.hero-carousel-wrap .carousel-control-prev,
.hero-carousel-wrap .carousel-control-next {
  width: 40px; height: 40px;
  background: rgba(0,79,138,0.60);
  border-radius: 50%;
  top: 50%; transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.25s;
}
.hero-carousel-wrap:hover .carousel-control-prev,
.hero-carousel-wrap:hover .carousel-control-next { opacity: 1; }
.hero-carousel-wrap .carousel-indicators [data-bs-target] {
  width: 8px; height: 8px; border-radius: 50%; border: none;
  background: rgba(255,255,255,0.5);
}
.hero-carousel-wrap .carousel-indicators .active { background: var(--white); }

@media (max-width: 991.98px) {
  .hero-carousel-wrap { display: none; }
  .hero-home::before { display: none; }
}

/* =====================================================
   PAGE HERO (inner pages)
   ===================================================== */
.page-hero {
  padding: 140px 0 80px;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 70%, rgba(255,255,255,0.06) 0%, transparent 48%),
    radial-gradient(circle at 85% 20%, rgba(0,79,138,0.45) 0%, transparent 45%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  color: rgba(255,255,255,0.80);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.72); font-size: 1.08rem; max-width: 580px; }

.breadcrumb-nav { display: flex; gap: 8px; align-items: center; margin-top: 20px; }
.breadcrumb-nav a {
  color: rgba(255,255,255,0.55);
  font-family: var(--font-heading);
  font-size: 0.83rem;
  font-weight: 500;
}
.breadcrumb-nav a:hover { color: var(--white); }
.breadcrumb-nav .sep { color: rgba(255,255,255,0.30); }
.breadcrumb-nav .current {
  color: rgba(255,255,255,0.88);
  font-family: var(--font-heading);
  font-size: 0.83rem;
  font-weight: 700;
}

/* =====================================================
   STATS STRIP
   ===================================================== */
.stats-strip {
  background: var(--primary);
  position: relative;
  overflow: hidden;
}
.stats-strip::before {
  content: '';
  position: absolute;
  top: -60%; left: -15%;
  width: 50%; height: 220%;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}
.stat-item { text-align: center; padding: 44px 24px; }
.stat-num {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-num .sfx { color: var(--accent-light); }
.stat-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.stat-sep {
  width: 1px;
  background: rgba(255,255,255,0.14);
  margin: 16px 0;
}

/* =====================================================
   INDUSTRIES
   ===================================================== */
.industry-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 100px;
  padding: 11px 22px;
  font-family: var(--font-heading);
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--text);
  transition: var(--ease);
  cursor: default;
  margin: 5px;
}
.industry-pill i { color: var(--primary); font-size: 1.05rem; }
.industry-pill:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-50);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* =====================================================
   CTA BAND
   ===================================================== */
.cta-band {
  background: var(--primary-50);
  border-top: 1px solid var(--primary-100);
  border-bottom: 1px solid var(--primary-100);
}

/* =====================================================
   ABOUT PAGE
   ===================================================== */
.feature-row {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--gray-100);
}
.feature-row:last-child { border-bottom: none; }
.feature-icon {
  width: 50px; height: 50px; min-width: 50px;
  border-radius: var(--radius);
  background: var(--primary-50);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 20px;
}
.feature-body h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
  font-size: 0.98rem;
}
.feature-body p { font-size: 0.88rem; margin: 0; }

.value-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 36px 26px;
  text-align: center;
  transition: var(--ease);
}
.value-card:hover {
  border-color: var(--primary-100);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.value-icon {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--primary-50);
  display: flex; align-items: center; justify-content: center;
  font-size: 34px; color: var(--primary);
  margin: 0 auto 20px;
}
.value-card h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.value-card p { font-size: 0.9rem; margin: 0; }

.capability-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-50);
  border: 1px solid var(--primary-100);
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin: 4px;
}
.timeline-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--primary-100);
  flex-shrink: 0;
  margin-top: 5px;
}

/* =====================================================
   SERVICES PAGE
   ===================================================== */
.service-category { margin-bottom: 72px; }
.service-category:last-child { margin-bottom: 0; }

.svc-cat-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--primary-100);
}
.svc-cat-icon {
  width: 58px; height: 58px;
  border-radius: var(--radius);
  background: var(--primary-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--white);
  flex-shrink: 0;
}
.svc-cat-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--dark);
  margin-bottom: 3px;
}
.svc-cat-desc { color: var(--muted); font-size: 0.88rem; margin: 0; }

.svc-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  height: 100%;
  transition: var(--ease);
}
.svc-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.svc-card-icon {
  width: 50px; height: 50px;
  border-radius: var(--radius);
  background: var(--primary-50);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--primary);
  margin-bottom: 16px;
  transition: var(--ease);
}
.svc-card:hover .svc-card-icon { background: var(--primary); color: var(--white); }
.svc-card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--dark);
  margin-bottom: 8px;
}
.svc-card-text { color: var(--muted); font-size: 0.87rem; line-height: 1.72; margin: 0; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 14px; }
.svc-tag {
  background: var(--gray-50);
  color: var(--gray-600);
  font-family: var(--font-heading);
  font-size: 0.70rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
}

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.contact-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  gap: 18px;
  transition: var(--ease);
  margin-bottom: 18px;
}
.contact-card:hover { border-color: var(--primary-100); box-shadow: var(--shadow); }
.contact-card-icon {
  width: 54px; height: 54px; min-width: 54px;
  border-radius: var(--radius);
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 22px;
}
.contact-card-body h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
  font-size: 0.97rem;
}
.contact-card-body p  { margin: 0; font-size: 0.9rem; }
.contact-card-body a  { color: var(--primary); font-weight: 600; }

.form-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-dk);
}
.form-lbl {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.83rem;
  color: var(--dark);
  margin-bottom: 8px;
  display: block;
}
.form-ctrl {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: var(--ease);
  outline: none;
  -webkit-appearance: none;
}
.form-ctrl:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(21,101,216,0.09);
}
.form-ctrl::placeholder { color: var(--gray-400); }
.form-grp { margin-bottom: 20px; }
select.form-ctrl {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394A3B8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 17px;
  padding-right: 46px;
}
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  height: 300px;
  background: var(--gray-100);
}
.alert-success-custom {
  background: #ECFDF5;
  color: #065F46;
  border-left: 4px solid #10B981;
  border-radius: var(--radius);
  padding: 14px 18px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  display: none;
}
.alert-error-custom {
  background: #FEF2F2;
  color: #991B1B;
  border-left: 4px solid #EF4444;
  border-radius: var(--radius);
  padding: 14px 18px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  display: none;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer-main {
  background: #0f1e35;
  padding: 72px 0 0;
  position: relative;
  overflow: hidden;
}
.footer-main::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-darker), var(--primary), var(--primary-light), var(--accent));
}
.footer-logo-row {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 18px;
}
.footer-logo-img { width: 40px; height: 40px; object-fit: contain; }
.footer-brand-nm {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--white);
  letter-spacing: 0.06em;
}
.footer-desc {
  color: rgba(255,255,255,0.50);
  font-size: 0.88rem;
  line-height: 1.82;
  max-width: 300px;
  margin-bottom: 0;
}
.footer-col-head {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.76rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  margin-bottom: 20px;
}
.footer-link-list { padding: 0; }
.footer-link-list li { margin-bottom: 10px; }
.footer-link-list a {
  color: rgba(255,255,255,0.52);
  font-size: 0.88rem;
  text-decoration: none;
  transition: var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-link-list a:hover { color: var(--white); padding-left: 4px; }

.footer-contact-row {
  display: flex; align-items: flex-start; gap: 10px;
  color: rgba(255,255,255,0.52);
  font-size: 0.88rem;
  margin-bottom: 12px;
}
.footer-contact-row i { color: var(--white); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }

.footer-hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 48px 0 0;
}
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-copy { color: rgba(255,255,255,0.36); font-size: 0.80rem; }
.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom-links a { color: rgba(255,255,255,0.36); font-size: 0.80rem; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.70); }

/* =====================================================
   BACK TO TOP
   ===================================================== */
.back-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 46px; height: 46px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  cursor: pointer;
  opacity: 0; visibility: hidden;
  transition: var(--ease);
  z-index: 900;
  box-shadow: 0 4px 16px rgba(21,101,216,0.38);
}
.back-top.show { opacity: 1; visibility: visible; }
.back-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* =====================================================
   SCROLL REVEAL
   ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.30s; }
.reveal-delay-4 { transition-delay: 0.40s; }
.reveal-delay-5 { transition-delay: 0.50s; }

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--ease);
  height: 100%;
}
.contact-info-card:hover {
  border-color: var(--primary-100);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.contact-icon-wrap {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--primary-50);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--primary);
  margin: 0 auto 16px;
}
.contact-info-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 6px;
}
.contact-info-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 4px;
}
.contact-info-value a { color: var(--primary); text-decoration: none; }
.contact-info-value a:hover { text-decoration: underline; }
.contact-info-note {
  font-size: 0.82rem;
  color: var(--gray-400);
  margin: 0;
}

/* Form Card */
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.contact-form-header { margin-bottom: 28px; }
.contact-form-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--dark);
  margin: 10px 0 8px;
}
.contact-form-sub { color: var(--gray-400); font-size: 0.92rem; margin: 0; }

/* Form Inputs */
.form-label-custom {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--dark);
  margin-bottom: 7px;
}
.required-star { color: var(--accent); }
.form-input-custom {
  display: block;
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--dark);
  background: var(--gray-50);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-input-custom::placeholder { color: #b0b7c3; }
.form-input-custom:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(21,101,216,0.12);
}
.form-input-custom.error { border-color: #e53e3e; }
.form-select-custom {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-textarea-custom { resize: vertical; min-height: 130px; }

.field-error {
  display: none;
  font-size: 0.78rem;
  color: #e53e3e;
  margin-top: 5px;
}
.field-error.show { display: block; }

/* Alerts */
.form-alert {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  font-size: 0.9rem;
}
.form-alert i { font-size: 20px; margin-top: 2px; flex-shrink: 0; }
.form-alert-success {
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  color: #166534;
}
.form-alert-error {
  background: #fff5f5;
  border: 1.5px solid #fca5a5;
  color: #b91c1c;
}
.form-alert-error a { color: var(--primary); }

.btn-contact-submit {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  margin-top: 8px;
}
.form-privacy-note {
  font-size: 0.78rem;
  color: var(--gray-400);
  margin: 12px 0 0;
  display: flex;
  align-items: center;
  gap: 7px;
}
.form-privacy-note i { color: var(--primary); }

/* Side Panel */
.contact-side-panel {
  background: var(--primary-dark);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  color: rgba(255,255,255,0.9);
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}
.contact-side-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.contact-why-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-why-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-why-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: var(--white);
  flex-shrink: 0;
}
.contact-why-list strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 3px;
}
.contact-why-list p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.72);
  margin: 0;
  line-height: 1.5;
}
.contact-side-panel .industry-pill {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.88);
  font-size: 0.72rem;
}

/* Map */
.contact-map-section { margin: 0; }
.contact-map-wrap {
  width: 100%;
  overflow: hidden;
  border-top: 3px solid var(--primary-100);
}
.contact-map-wrap iframe { display: block; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 991.98px) {
  .hero-home::before, .hero-home::after { display: none; }
  .hero-home {
    background: linear-gradient(180deg, var(--white) 0%, var(--primary-50) 100%);
    padding-top: calc(var(--nav-height) + 32px);
    padding-bottom: 56px;
  }
  .hero-logo-display { width: 220px; height: 220px; margin: 40px auto 0; }
  .hero-logo-display img { width: 160px; height: 160px; }
  .navbar-collapse {
    background: var(--white);
    padding: 16px;
    margin-top: 8px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-md);
  }
  .form-card { padding: 32px 22px; }
}
@media (max-width: 767.98px) {
  .section-py { padding: 60px 0; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 22px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
  .back-top { bottom: 20px; right: 20px; }
}
@media (max-width: 575.98px) {
  .section-py { padding: 44px 0; }
  .card-brand { padding: 26px 18px; }
  .form-card { padding: 22px 14px; }
  .page-hero { padding: 120px 0 60px; }
}
/* =====================================================
   PROJECTS PAGE
   ===================================================== */
.projects-section { margin-bottom: 80px; }
.projects-section:last-child { margin-bottom: 0; }

.projects-cat-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--primary-100);
}
.projects-cat-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius);
  background: var(--primary-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--white);
  flex-shrink: 0;
}
.projects-cat-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 2px;
}
.projects-cat-desc { color: var(--muted); font-size: 0.88rem; margin: 0; }

/* Slideshow / Carousel */
.project-carousel {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--gray-50);
}
.project-carousel .carousel-inner { border-radius: var(--radius-lg); }

.project-slide {
  position: relative;
  height: 340px;
  background: var(--primary-50);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.project-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.project-slide-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-50) 0%, #d4e9f7 100%);
  color: var(--primary);
}
.project-slide-placeholder i {
  font-size: 48px;
  opacity: 0.45;
}
.project-slide-placeholder span {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--primary);
  opacity: 0.65;
  letter-spacing: 0.06em;
}
.project-slide-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 20px;
  background: linear-gradient(transparent, rgba(0,79,138,0.82));
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.project-carousel:hover .project-slide-caption { opacity: 1; }

/* Carousel controls */
.project-carousel .carousel-control-prev,
.project-carousel .carousel-control-next {
  width: 44px; height: 44px;
  background: var(--primary-dark);
  border-radius: 50%;
  top: 50%; transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.25s ease;
  margin: 0 12px;
}
.project-carousel:hover .carousel-control-prev,
.project-carousel:hover .carousel-control-next { opacity: 1; }
.project-carousel .carousel-control-prev-icon,
.project-carousel .carousel-control-next-icon { width: 16px; height: 16px; }

.project-carousel .carousel-indicators {
  margin-bottom: 10px;
}
.project-carousel .carousel-indicators [data-bs-target] {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  border: none;
  margin: 0 3px;
}
.project-carousel .carousel-indicators .active {
  background: var(--white);
}

/* Image count badge */
.project-img-count {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--primary-dark);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  margin-left: auto;
  letter-spacing: 0.06em;
}

/* =====================================================
   CONTACT PAGE — CTA push-down (V1.3)
   ===================================================== */
.contact-page .cta-band {
  margin-top: 60px;
}

/* =====================================================
   V1.5 FIXES
   ===================================================== */

/* Mobile nav — right-align items when collapsed */
@media (max-width: 991.98px) {
  #mainNav {
    text-align: right;
    padding: 16px 0 8px;
  }
  #mainNav .navbar-nav {
    align-items: flex-end !important;
  }
  #mainNav .nav-link {
    text-align: right;
    padding-right: 4px !important;
  }
}

/* Contact side panel pill icons — fully white */
.contact-side-panel .industry-pill i {
  color: var(--white) !important;
}

/* Contact CTA band — more breathing room above */
.contact-page .cta-band {
  margin-top: 80px;
}

/* Stat numbers — explicit font override to prevent brand font bleeding in */
.hero-stat-num,
.stat-num {
  font-family: 'Montserrat', sans-serif !important;
}
