/* ==========================================================================
   EXPLORE IT - Modern Enterprise Design System & Bootstrap 5 Customizations
   ========================================================================== */

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

:root {
  /* Brand Palette */
  --primary-navy: #0b132b;
  --primary-blue: #1c64f2;
  --primary-blue-hover: #1a56db;
  --accent-cyan: #06b6d4;
  --accent-cyan-light: #e0f2fe;
  --accent-indigo: #4f46e5;
  --accent-emerald: #10b981;
  --slate-dark: #0f172a;
  --slate-body: #334155;
  --slate-muted: #64748b;
  --bg-light: #f8fafc;
  --bg-card: #ffffff;

  /* Fonts */
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* UI Tokens */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 20px 35px -10px rgba(15, 23, 42, 0.12), 0 10px 15px -8px rgba(15, 23, 42, 0.06);
  --shadow-hover: 0 25px 50px -12px rgba(28, 100, 242, 0.22);

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

/* Base Reset & Typography */
body {
  font-family: var(--font-body);
  color: var(--slate-body);
  background-color: var(--bg-light);
  overflow-x: hidden;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-heading {
  font-family: var(--font-heading);
  color: var(--slate-dark);
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Glassmorphism Top Navbar */
.navbar-custom {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: var(--transition-normal);
  padding: 12px 0;
}

.navbar-custom.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
  padding: 8px 0;
}

.navbar-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.navbar-logo-img {
  height: 48px;
  max-height: 48px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-fast);
}

.navbar-custom.scrolled .navbar-logo-img {
  height: 40px;
  max-height: 40px;
}

.brand-icon-box {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.25rem;
  box-shadow: 0 4px 12px rgba(28, 100, 242, 0.3);
}

.brand-text-main {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--primary-navy);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.brand-text-sub {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--primary-blue);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--slate-body) !important;
  padding: 8px 16px !important;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-blue) !important;
  background: rgba(28, 100, 242, 0.06);
}

/* Hero Section */
.hero-wrapper {
  position: relative;
  background: linear-gradient(135deg, #0b132b 0%, #1c2541 50%, #0f172a 100%);
  color: #ffffff;
  padding: 140px 0 100px;
  overflow: hidden;
}

.hero-wrapper::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.25) 0%, rgba(28, 100, 242, 0.15) 50%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.hero-wrapper::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.2) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #38bdf8;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 24px;
}

.hero-gradient-text {
  background: linear-gradient(135deg, #60a5fa 0%, #38bdf8 50%, #a7f3d0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  font-size: 1.2rem;
  color: #94a3b8;
  font-weight: 400;
  max-width: 600px;
  margin-bottom: 36px;
}

/* Feature Cards & Glass Panels in Hero */
.hero-glass-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition-normal);
}

.hero-glass-card:hover {
  border-color: rgba(56, 189, 248, 0.4);
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: #38bdf8;
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: #cbd5e1;
  font-weight: 500;
  margin-top: 4px;
}

/* Section Header */
.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-blue);
  background: rgba(28, 100, 242, 0.08);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--slate-muted);
  max-width: 680px;
}

/* Partner Brand Cards & Grid */
.partner-card {
  background: var(--bg-card);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.partner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-cyan));
  opacity: 0;
  transition: var(--transition-fast);
}

.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
}

.partner-card:hover::before {
  opacity: 1;
}

.partner-logo-wrapper {
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  width: 100%;
  padding: 4px;
}

.partner-logo-wrapper img {
  max-height: 52px;
  max-width: 160px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-fast);
}

.partner-card:hover .partner-logo-wrapper img {
  transform: scale(1.08);
}

/* Quick Brand Item in Products page */
.quick-brand-item {
  background: var(--bg-card);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--slate-dark);
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.quick-brand-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

.quick-brand-item img {
  max-height: 40px;
  max-width: 120px;
  width: auto;
  object-fit: contain;
  margin-bottom: 8px;
  transition: var(--transition-fast);
}

.quick-brand-item:hover img {
  transform: scale(1.06);
}

/* Vendor Showcase Card Logo Box */
.vendor-showcase-logo {
  height: 65px;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.vendor-showcase-logo img {
  max-height: 55px;
  max-width: 220px;
  width: auto;
  object-fit: contain;
}

.partner-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.partner-category {
  font-size: 0.8rem;
  color: var(--slate-muted);
  font-weight: 500;
}

/* Solution / Product Cards */
.solution-card {
  background: var(--bg-card);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: #93c5fd;
}

.solution-img-box {
  position: relative;
  height: 220px;
  background: #f8fafc;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.solution-img-box img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: var(--transition-normal);
}

.solution-card:hover .solution-img-box img {
  transform: scale(1.06);
}

.solution-tag-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
}

.solution-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.solution-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.solution-text {
  font-size: 0.92rem;
  color: var(--slate-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.feature-list li {
  font-size: 0.85rem;
  color: var(--slate-body);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.feature-list li i {
  color: var(--accent-emerald);
  font-size: 0.8rem;
}

/* Feature Grid Section */
.feature-box {
  background: var(--bg-card);
  padding: 32px 24px;
  border-radius: var(--radius-md);
  border: 1px solid #e2e8f0;
  transition: var(--transition-normal);
}

.feature-box:hover {
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
}

.feature-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(28, 100, 242, 0.1);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

/* CTA Banner Section */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-navy) 0%, #1e293b 100%);
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: radial-gradient(circle, rgba(28, 100, 242, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

/* Custom Buttons */
.btn-primary-custom {
  background: var(--primary-blue);
  color: #ffffff;
  border: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 14px rgba(28, 100, 242, 0.35);
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-primary-custom:hover {
  background: var(--primary-blue-hover);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(28, 100, 242, 0.45);
  transform: translateY(-2px);
}

.btn-outline-custom {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-outline-custom:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

/* Footer Styling */
.footer-wrapper {
  background: var(--slate-dark);
  color: #94a3b8;
  padding: 70px 0 30px;
  font-size: 0.9rem;
}

.footer-heading {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: #38bdf8;
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  margin-top: 50px;
  padding-top: 25px;
  font-size: 0.85rem;
}

/* Base HTML / Body Viewport Fix */
html {
  overflow-x: hidden;
  width: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

/* Image & Media Fluid Constraints */
img, svg, video, canvas, iframe {
  max-width: 100%;
  height: auto;
}

/* Responsive Action Buttons Container */
.nav-action-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-metrics-row {
  margin-top: 24px;
  padding-top: 12px;
}

/* Orange Partner CTA Buttons */
.btn-orange-custom {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: #ffffff !important;
  border: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 26px;
  border-radius: 50px;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.4);
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-orange-custom:hover {
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
  color: #ffffff !important;
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.55);
  transform: translateY(-2px);
}

.btn-orange-sm {
  padding: 8px 18px;
  font-size: 0.88rem;
}

/* Subpage Hero Header */
.page-hero-wrapper {
  background: linear-gradient(135deg, #0b132b 0%, #1c2541 60%, #0f172a 100%);
  color: #ffffff;
  padding: 130px 0 70px;
  position: relative;
  overflow: hidden;
}

.page-hero-wrapper::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.2) 0%, rgba(28, 100, 242, 0.15) 50%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

/* Intro Strip Styling */
.intro-strip-box {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  color: #f8fafc;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.intro-strip-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #f97316, #1c64f2);
}

/* Availability Strip Styling */
.availability-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 20px 24px;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.availability-card:hover {
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-sm);
}

.status-indicator-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #10b981;
  display: inline-block;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  }

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

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

/* Interactive Footprint Map Visual */
.footprint-container {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 0;
  color: var(--slate-dark);
  position: relative;
}

.office-hub-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 26px 24px;
  transition: var(--transition-normal);
  height: 100%;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
  position: relative;
  overflow: hidden;
}

.office-hub-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-blue);
  transition: var(--transition-fast);
}

.office-hub-card.card-accent-orange {
  background: linear-gradient(180deg, rgba(254, 243, 199, 0.3) 0%, #ffffff 45%);
  border-color: rgba(245, 158, 11, 0.3);
}

.office-hub-card.card-accent-orange::before {
  background: linear-gradient(90deg, #f59e0b, #ea580c);
}

.office-hub-card.card-accent-orange:hover {
  border-color: #f59e0b;
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(245, 158, 11, 0.18);
}

.office-hub-card.card-accent-blue {
  background: linear-gradient(180deg, rgba(224, 242, 254, 0.35) 0%, #ffffff 45%);
  border-color: rgba(28, 100, 242, 0.25);
}

.office-hub-card.card-accent-blue::before {
  background: linear-gradient(90deg, #1c64f2, #06b6d4);
}

.office-hub-card.card-accent-blue:hover {
  border-color: #1c64f2;
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(28, 100, 242, 0.18);
}

.office-hub-card.card-accent-green {
  background: linear-gradient(180deg, rgba(209, 250, 229, 0.35) 0%, #ffffff 45%);
  border-color: rgba(16, 185, 129, 0.3);
}

.office-hub-card.card-accent-green::before {
  background: linear-gradient(90deg, #10b981, #059669);
}

.office-hub-card.card-accent-green:hover {
  border-color: #10b981;
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(16, 185, 129, 0.18);
}

.office-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.15rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.office-icon-orange {
  background: linear-gradient(135deg, #f59e0b, #ea580c);
}

.office-icon-blue {
  background: linear-gradient(135deg, #1c64f2, #06b6d4);
}

.office-icon-green {
  background: linear-gradient(135deg, #10b981, #059669);
}

.market-pill {
  background: rgba(28, 100, 242, 0.08);
  border: 1px solid rgba(28, 100, 242, 0.2);
  color: var(--primary-blue);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.market-pill:hover {
  background: rgba(28, 100, 242, 0.15);
  border-color: var(--primary-blue);
}

/* Value Badges Card */
.value-badge-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition-normal);
  height: 100%;
}

.value-badge-card:hover {
  border-color: #f97316;
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.value-badge-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.12), rgba(28, 100, 242, 0.12));
  color: #f97316;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin: 0 auto 16px;
}

/* Mission & Vision Card */
.mv-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e2e8f0;
  height: 100%;
  transition: var(--transition-fast);
}

.mv-card:hover {
  box-shadow: var(--shadow-md);
}

.mv-img-box {
  height: 180px;
  overflow: hidden;
  position: relative;
}

.mv-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Orange Accent Highlights */
.text-orange-accent {
  color: #ea580c !important;
}

.badge-orange-subtle {
  background: rgba(249, 115, 22, 0.12);
  color: #ea580c;
  border: 1px solid rgba(249, 115, 22, 0.25);
}

/* Logo Carousel Styling (Swipe Left & Right) */
.brand-carousel-wrapper {
  position: relative;
  overflow: hidden;
  padding: 10px 0;
}

.brand-carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 10px 4px;
}

.brand-carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-brand-card {
  flex: 0 0 calc(20% - 16px);
  min-width: 190px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 16px 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition-normal);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  height: 140px;
}

.carousel-brand-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: #f97316;
}

.carousel-brand-img-wrap {
  width: 100%;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-brand-img-wrap img {
  max-height: 50px;
  max-width: 135px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-fast);
}

.carousel-brand-card:hover .carousel-brand-img-wrap img {
  transform: scale(1.08);
}

.carousel-brand-badge-wrap {
  width: 100%;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-brand-badge-wrap .badge {
  white-space: nowrap;
  font-size: 0.78rem;
  padding: 5px 12px;
}

.carousel-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: var(--slate-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--transition-fast);
  z-index: 5;
}

.carousel-nav-btn:hover {
  background: #f97316;
  color: #ffffff;
  border-color: #f97316;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.35);
  transform: scale(1.05);
}

/* Categorized Product Portfolio Grid */
.category-portfolio-section {
  background: #f8fafc;
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  border: 1px solid #e2e8f0;
}

.portfolio-cat-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 20px 22px;
  height: 100%;
  transition: var(--transition-fast);
  border-left: 4px solid #f97316;
}

.portfolio-cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--primary-blue);
}

.portfolio-cat-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--slate-dark);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.portfolio-cat-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.brand-pill-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.84rem;
  font-weight: 600;
  color: #334155;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  padding: 5px 12px;
  border-radius: 9999px;
  transition: var(--transition-fast);
}

.portfolio-cat-card:hover .brand-pill-tag {
  background: rgba(249, 115, 22, 0.08);
  border-color: rgba(249, 115, 22, 0.35);
  color: #ea580c;
}

/* Footer 15-Brand Logo Strip */
.footer-brands-strip {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 40px;
}

.footer-brand-logo-item {
  background: #ffffff;
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  transition: var(--transition-fast);
}

.footer-brand-logo-item img {
  max-height: 32px;
  max-width: 100px;
  object-fit: contain;
}

.footer-brand-logo-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Tech Hero Visual Graphic */
.tech-global-visual {
  background: radial-gradient(circle at center, rgba(28, 100, 242, 0.15) 0%, rgba(11, 19, 43, 0.9) 70%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xl);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.tech-globe-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: #38bdf8;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Auth & Legal Pages */
.auth-page-section {
  padding-top: 130px;
  padding-bottom: 60px;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.terms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.terms-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.terms-card h3 {
  font-size: 1.2rem;
  margin-bottom: 14px;
  color: var(--slate-dark);
}

.terms-card ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.terms-card li {
  margin-bottom: 8px;
  color: var(--slate-body);
  font-size: 0.92rem;
}

.legal-content {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  margin-top: 30px;
}

.legal-content h2 {
  font-size: 1.35rem;
  margin-top: 24px;
  margin-bottom: 12px;
  color: var(--slate-dark);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p, .legal-content li {
  font-size: 0.95rem;
  color: var(--slate-body);
  line-height: 1.6;
}

/* ==========================================================================
   COMPREHENSIVE RESPONSIVE SYSTEM (TABLET & MOBILE)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Breakpoint: max-width 991.98px (Tablets & Mobile Dropdown)
   -------------------------------------------------------------------------- */
@media (max-width: 991.98px) {
  .navbar-custom {
    padding: 10px 0;
  }

  .navbar-logo-img {
    height: 42px;
    max-height: 42px;
  }

  .navbar-toggler {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 10px !important;
    padding: 8px 12px !important;
    cursor: pointer !important;
    position: relative;
    z-index: 1050;
    transition: var(--transition-fast);
  }

  .navbar-toggler * {
    pointer-events: none !important;
  }

  .navbar-toggler:focus,
  .navbar-toggler:active {
    box-shadow: 0 0 0 3px rgba(28, 100, 242, 0.15) !important;
  }

  .navbar-collapse {
    background: #ffffff;
    padding: 18px 20px;
    border-radius: var(--radius-md);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.14);
    border: 1px solid #e2e8f0;
    margin-top: 12px;
    max-height: calc(100vh - 85px);
    overflow-y: auto;
  }

  .navbar-nav {
    gap: 2px;
    margin-bottom: 0 !important;
  }

  .nav-link {
    padding: 10px 14px !important;
    font-size: 0.98rem;
    border-radius: var(--radius-sm);
    margin-bottom: 2px;
    display: block;
  }

  .nav-action-buttons {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #e2e8f0;
  }

  .nav-action-buttons .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 10px 16px;
    font-size: 0.95rem;
  }

  /* Hero & Headings on Tablet */
  .hero-wrapper {
    padding: 110px 0 60px;
  }

  .page-hero-wrapper {
    padding: 105px 0 50px;
  }

  .hero-title {
    font-size: 2.6rem;
    line-height: 1.2;
  }

  .section-title {
    font-size: 2.1rem;
  }

  .hero-lead {
    font-size: 1.1rem;
    margin-bottom: 28px;
  }
}

/* --------------------------------------------------------------------------
   2. Breakpoint: max-width 767.98px (Standard Mobile & Phablets)
   -------------------------------------------------------------------------- */
@media (max-width: 767.98px) {
  /* Layout Spacers */
  .hero-wrapper {
    padding: 95px 0 45px;
  }

  .page-hero-wrapper {
    padding: 90px 0 40px;
  }

  .hero-wrapper::before,
  .hero-wrapper::after,
  .page-hero-wrapper::before {
    display: none; /* remove heavy blur background blobs on mobile for performance */
  }

  /* Typography */
  .hero-title {
    font-size: 2.1rem;
    line-height: 1.22;
    margin-bottom: 16px;
  }

  .section-title {
    font-size: 1.75rem;
    line-height: 1.25;
    margin-bottom: 12px;
  }

  .section-desc {
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .hero-lead {
    font-size: 1rem;
    line-height: 1.55;
    margin-bottom: 24px;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 5px 14px;
    margin-bottom: 16px;
  }

  /* Action Buttons */
  .hero-action-buttons {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .hero-action-buttons .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 12px 20px;
    font-size: 0.98rem;
  }

  /* Hero Stats */
  .hero-metrics-row {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .stat-label {
    font-size: 0.78rem;
    line-height: 1.25;
  }

  /* Brands Carousel */
  .brand-carousel-track {
    gap: 12px;
    padding: 8px 2px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }

  .carousel-brand-card {
    flex: 0 0 160px;
    min-width: 160px;
    height: 125px;
    padding: 12px 10px;
    scroll-snap-align: start;
  }

  .carousel-brand-img-wrap {
    height: 48px;
  }

  .carousel-brand-img-wrap img {
    max-height: 40px;
    max-width: 110px;
  }

  .carousel-brand-badge-wrap {
    height: 26px;
  }

  .carousel-brand-badge-wrap .badge {
    font-size: 0.72rem;
    padding: 4px 8px;
  }

  .carousel-nav-btn {
    width: 38px;
    height: 38px;
    font-size: 0.85rem;
  }

  /* Categorized Portfolio */
  .category-portfolio-section {
    padding: 24px 16px;
    border-radius: var(--radius-md);
  }

  .portfolio-cat-card {
    padding: 16px 14px;
  }

  .portfolio-cat-title {
    font-size: 1.05rem;
  }

  .brand-pill-tag {
    font-size: 0.78rem;
    padding: 4px 10px;
  }

  /* Cards & Boxes */
  .feature-box {
    padding: 22px 18px;
    border-radius: var(--radius-md);
  }

  .feature-icon-wrapper {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
    margin-bottom: 14px;
    border-radius: 12px;
  }

  .solution-img-box {
    height: 180px;
    padding: 14px;
  }

  .solution-body {
    padding: 18px 16px;
  }

  .solution-title {
    font-size: 1.15rem;
  }

  .solution-text {
    font-size: 0.88rem;
    margin-bottom: 14px;
  }

  .quick-brand-item {
    padding: 12px 8px;
    border-radius: 10px;
  }

  .quick-brand-item img {
    max-height: 32px;
    max-width: 95px;
    margin-bottom: 6px;
  }

  .quick-brand-item .small {
    font-size: 0.78rem;
  }

  .vendor-showcase-logo {
    height: 48px;
    margin-bottom: 12px;
  }

  .vendor-showcase-logo img {
    max-height: 40px;
    max-width: 160px;
  }

  /* CTA Banner Band */
  .cta-banner {
    padding: 28px 18px !important;
    border-radius: var(--radius-lg);
    border-left-width: 4px !important;
  }

  .cta-banner h2 {
    font-size: 1.55rem !important;
    line-height: 1.25;
  }

  .cta-banner p {
    font-size: 0.95rem !important;
    line-height: 1.5;
  }

  .cta-banner .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    font-size: 1rem !important;
    padding: 12px 20px !important;
    margin-top: 14px;
  }

  /* Footprint Map & Office Cards */
  .office-hub-card {
    padding: 18px 16px;
    border-radius: var(--radius-md);
  }

  .office-hub-card h4 {
    font-size: 1.1rem;
  }

  .market-pill {
    padding: 4px 10px;
    font-size: 0.78rem;
    gap: 4px;
  }

  .value-badge-card {
    padding: 18px 12px;
  }

  .value-badge-icon {
    width: 44px;
    height: 44px;
    font-size: 1.15rem;
    margin-bottom: 10px;
  }

  .value-badge-card h5 {
    font-size: 0.92rem;
  }

  /* Footer on Mobile */
  .footer-wrapper {
    padding: 45px 0 25px;
  }

  .footer-brands-strip {
    padding: 14px 10px;
    margin-bottom: 30px;
    border-radius: var(--radius-sm);
  }

  .footer-brand-logo-item {
    padding: 4px 6px;
    height: 40px;
  }

  .footer-brand-logo-item img {
    max-height: 22px;
    max-width: 75px;
  }

  .footer-heading {
    font-size: 1rem;
    margin-bottom: 12px;
  }

  .footer-bottom {
    margin-top: 30px;
    padding-top: 18px;
  }

  /* Form & Auth adjustments */
  .card.rounded-4 {
    border-radius: var(--radius-md) !important;
  }
}

/* --------------------------------------------------------------------------
   3. Breakpoint: max-width 575.98px (Portrait Phones)
   -------------------------------------------------------------------------- */
@media (max-width: 575.98px) {
  .navbar-logo-img {
    height: 36px;
    max-height: 36px;
  }

  .hero-wrapper {
    padding: 85px 0 35px;
  }

  .page-hero-wrapper {
    padding: 80px 0 30px;
  }

  .hero-title {
    font-size: 1.85rem;
    line-height: 1.2;
  }

  .section-title {
    font-size: 1.55rem;
  }

  .stat-number {
    font-size: 1.55rem;
  }

  .stat-label {
    font-size: 0.72rem;
  }

  .carousel-brand-card {
    flex: 0 0 145px;
    min-width: 145px;
    height: 120px;
    padding: 10px 8px;
  }

  .carousel-brand-img-wrap img {
    max-height: 36px;
    max-width: 100px;
  }

  .footer-brand-logo-item {
    height: 36px;
    padding: 2px 4px;
  }

  .footer-brand-logo-item img {
    max-height: 20px;
    max-width: 70px;
  }
}

/* --------------------------------------------------------------------------
   4. Breakpoint: max-width 380px (Extra Small Phones / iPhone SE)
   -------------------------------------------------------------------------- */
@media (max-width: 380px) {
  .hero-title {
    font-size: 1.65rem;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .stat-number {
    font-size: 1.35rem;
  }

  .stat-label {
    font-size: 0.68rem;
  }

  .carousel-brand-card {
    flex: 0 0 135px;
    min-width: 135px;
    height: 115px;
  }

  .btn-orange-custom,
  .btn-primary-custom,
  .btn-outline-custom {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
}