/* =====================================================
   MOVOSOFT TECHNOLOGIES LTD — Premium Bootstrap 5 Theme
   Custom Design System (overrides + extensions)
   ===================================================== */

:root {
  /* Color system — Movosoft brand */
  --n-primary: #2563EB;
  --n-primary-dark: #1E3A8A;
  --n-primary-deep: #0B1F4D;
  --n-success: #12B76A;
  --n-slate: #4B5563;
  --n-slate-light: #6B7280;
  --n-bg: #F8FAFC;
  --n-bg-alt: #DBEAFE;
  --n-bg-soft: #EFF6FF;
  --n-border: #E5E7EB;
  --n-white: #FFFFFF;
  --n-navy: #0B1F4D;
  --n-charcoal: #111827;
  --n-dark-gray: #1F2937;

  /* Gradients */
  --n-gradient-primary: linear-gradient(135deg, #1E3A8A 0%, #2563EB 100%);
  --n-gradient-soft: linear-gradient(135deg, #DBEAFE 0%, #EFF6FF 100%);
  --n-gradient-dark: linear-gradient(135deg, #0B1F4D 0%, #1E3A8A 100%);
  --n-gradient-hero: linear-gradient(135deg, #EFF6FF 0%, #F8FAFC 100%);

  /* Typography */
  --n-font-display: 'Sora', sans-serif;
  --n-font-body: 'Inter', sans-serif;

  /* Spacing rhythm (8px base) */
  --n-space-xs: 0.5rem;
  --n-space-sm: 1rem;
  --n-space-md: 1.5rem;
  --n-space-lg: 2.5rem;
  --n-space-xl: 4rem;
  --n-space-2xl: 6rem;

  /* Radius */
  --n-radius-sm: 8px;
  --n-radius-md: 14px;
  --n-radius-lg: 20px;
  --n-radius-pill: 100px;

  /* Shadows */
  --n-shadow-sm: 0 2px 8px rgba(11, 31, 77, 0.06);
  --n-shadow-md: 0 8px 24px rgba(11, 31, 77, 0.08);
  --n-shadow-lg: 0 20px 48px rgba(11, 31, 77, 0.12);
  --n-shadow-primary: 0 12px 28px rgba(37, 99, 235, 0.25);

  /* Bootstrap overrides */
  --bs-primary: #2563EB;
  --bs-primary-rgb: 37, 99, 235;
  --bs-body-font-family: var(--n-font-body);
  --bs-body-color: var(--n-slate);
  --bs-body-bg: var(--n-white);
}

/* =====================================================
   BASE
   ===================================================== */
html { scroll-behavior: smooth; }

body {
  font-family: var(--n-font-body);
  color: var(--n-slate);
  background-color: var(--n-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1 { font-weight: 800; }

p { line-height: 1.7; }

a { text-decoration: none; }

.text-primary-custom { color: var(--n-primary) !important; }
.text-slate { color: var(--n-slate) !important; }
.text-navy { color: var(--n-navy) !important; }
.text-charcoal { color: var(--n-charcoal) !important; }
.text-slate-light { color: var(--n-slate-light) !important; }
.bg-soft { background-color: var(--n-bg) !important; }
.bg-soft-alt { background: var(--n-gradient-soft) !important; }
.bg-navy { background-color: var(--n-navy) !important; }
.bg-gradient-primary { background: var(--n-gradient-primary) !important; }
.bg-gradient-dark { background: var(--n-gradient-dark) !important; }

/* Section spacing rhythm */
.section { padding-top: var(--n-space-2xl); padding-bottom: var(--n-space-2xl); }
.section-sm { padding-top: var(--n-space-xl); padding-bottom: var(--n-space-xl); }

@media (max-width: 767.98px) {
  .section { padding-top: var(--n-space-xl); padding-bottom: var(--n-space-xl); }
  .section-sm { padding-top: var(--n-space-lg); padding-bottom: var(--n-space-lg); }
  .section-header { margin-bottom: var(--n-space-lg); }
  .hero { padding-top: 7rem; text-align: center; }
  .hero h1 { font-size: 2.4rem; }
  .hero .row { row-gap: 1.5rem; }
  .btn-lg-custom { padding: 0.85rem 1.5rem; font-size: 0.9rem; }
}

/* Eyebrow label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--n-font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--n-primary);
  background: var(--n-bg-alt);
  padding: 0.4rem 1rem;
  border-radius: var(--n-radius-pill);
  margin-bottom: var(--n-space-sm);
}

.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--n-primary);
  display: inline-block;
}

.section-title { margin-bottom: var(--n-space-sm); }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--n-slate);
  max-width: 620px;
}
.section-header { margin-bottom: var(--n-space-xl); }

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  font-family: var(--n-font-display);
  font-weight: 600;
  border-radius: var(--n-radius-sm);
  padding: 0.75rem 1.75rem;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  border-width: 1.5px;
}

.btn-primary {
  background: var(--n-gradient-primary);
  border: none;
  box-shadow: var(--n-shadow-primary);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.32);
  color: #fff;
}

.btn-outline-primary {
  border-color: var(--n-primary);
  color: var(--n-primary);
  background: transparent;
}

.btn-outline-primary:hover {
  background: var(--n-primary);
  border-color: var(--n-primary);
  transform: translateY(-2px);
}

.btn-light-custom {
  background: #fff;
  color: var(--n-navy);
  border: 1.5px solid var(--n-border);
}

.btn-light-custom:hover {
  background: var(--n-bg);
  transform: translateY(-2px);
}

.btn-outline-white {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  color: #fff;
}

.btn-lg-custom { padding: 1rem 2.25rem; font-size: 1rem; }
.btn-sm-custom { padding: 0.5rem 1.25rem; font-size: 0.85rem; }

/* =====================================================
   NAVBAR
   ===================================================== */
.navbar-nexora {
  padding: 1.25rem 0;
  transition: all 0.3s ease;
  background: #fff;
  display: flex;
  align-items: center;
  z-index: 1050;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.navbar-nexora .container {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  padding-left: 1rem;
  padding-right: 1rem;
  gap: 0.75rem;
}

.navbar-nexora .navbar-brand {
  margin-right: 0;
  flex: 0 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.navbar-nexora .navbar-toggler-custom {
  flex-shrink: 0;
  margin-left: 0.5rem;
  position: relative;
}

.navbar-nexora .navbar-collapse {
  margin-left: auto;
}

.navbar-nexora.scrolled {
  padding: 0.75rem 0;
  background: #fff;
  box-shadow: var(--n-shadow-sm);
}

.navbar-brand-custom {
  font-family: var(--n-font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--n-navy) !important;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-brand-custom .navbar-logo {
  height: 36px;
  width: auto;
  max-width: 140px;
  min-width: 0;
  display: block;
  object-fit: contain;
}

.navbar-brand-custom span { color: var(--n-primary); }

.navbar-nexora .nav-link {
  font-family: var(--n-font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: rgb(75, 85, 99) !important;
  padding: 0.5rem 1.1rem !important;
  border-radius: var(--n-radius-sm);
  transition: all 0.2s ease;
}

.nav2{
  color: var(--n-navy) !important;
}
.navbar-nexora .nav-link:hover,
.navbar-nexora .nav-link.active {
  color: var(--n-primary-dark) !important;
  background: var(--n-bg-alt);
}

.navbar-toggler-custom {
  border: 1px solid var(--n-border);
  width: 44px;
  height: 44px;
  border-radius: var(--n-radius-sm);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  padding: 0;
  flex-shrink: 0;
  margin-left: auto;
  box-shadow: var(--n-shadow-sm);
  position: relative;
  z-index: 1040;
}

.navbar-toggler-custom .toggler-bar {
  width: 22px;
  height: 2px;
  background: var(--n-navy);
  border-radius: 2px;
  display: block;
  transition: all 0.3s ease;
}

.navbar-toggler-custom.active .toggler-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.navbar-toggler-custom.active .toggler-bar:nth-child(2) {
  opacity: 0;
}
.navbar-toggler-custom.active .toggler-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  padding-top: 9rem;
  padding-bottom: 5rem;
  background: var(--n-gradient-hero);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.14) 0%, rgba(30,58,138,0.06) 60%, transparent 100%);
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -150px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.10) 0%, transparent 70%);
  z-index: 0;
}

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

.hero h1 { font-size: 3.25rem; line-height: 1.15; }

@media (max-width: 991.98px) {
  body { padding-top: 70px; }
  .hero { padding-top: 8rem; text-align: center; }
  .hero h1 { font-size: 2.4rem; }
  .navbar-nexora { padding: 0.75rem 0; min-height: 60px; }
  .navbar-nexora .navbar-brand {
    max-width: 60%;
  }
  .navbar-nexora .container {
    justify-content: space-between;
  }
  .navbar-nexora .navbar-toggler-custom {
    flex-shrink: 0;
    margin-left: 0;
    position: relative;
    right: auto;
    top: auto;
    transform: none;
  }
  .navbar-nexora .nav-link {
    padding: 0.75rem 1rem !important;
    text-align: center;
    border-radius: var(--n-radius-sm);
    margin-bottom: 0.25rem;
  }
  .navbar-nexora .navbar-collapse {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 1rem;
    border-radius: var(--n-radius-sm);
  }
  .navbar-brand-custom .navbar-logo {
    height: 34px;
    max-width: 120px;
  }
}

@media (max-width: 575.98px) {
  .hero h1 { font-size: 1.75rem; }
  .hero { padding-top: 6rem; padding-bottom: 3rem; }
  .section-header { margin-bottom: var(--n-space-md); }
  .section-title { font-size: 1.5rem; }
  .btn-lg-custom { padding: 0.75rem 1.25rem; font-size: 0.85rem; }
  .back-to-top { bottom: 1rem; right: 1rem; width: 38px; height: 38px; }
  .client-logo { max-height: 32px; }
  .navbar-toggler-custom { width: 38px; height: 38px; }
  .navbar-nexora .navbar-brand { max-width: 50%; }
  .navbar-nexora .container {
    justify-content: space-between;
  }
  .navbar-nexora .navbar-toggler-custom {
    flex-shrink: 0;
    margin-left: 0;
    position: relative;
    right: auto;
    top: auto;
    transform: none;
  }
  .navbar-brand-custom .navbar-logo {
    height: 28px;
    max-width: 100px;
  }
  .hero-content p { font-size: 0.9rem; }
}
  .navbar-brand-custom .navbar-logo {
    height: 24px;
  }
  .hero-content p { font-size: 0.9rem; }


/* Hero visual / dashboard mock card */
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-mock-card {
  background: #fff;
  border-radius: var(--n-radius-lg);
  box-shadow: var(--n-shadow-lg);
  padding: var(--n-space-md);
  border: 1px solid var(--n-border);
  position: relative;
}

.hero-mock-card .mock-bar {
  height: 10px;
  border-radius: var(--n-radius-pill);
  background: var(--n-bg-soft);
  margin-bottom: 0.75rem;
}

.hero-float-badge {
  position: absolute;
  background: #fff;
  border-radius: var(--n-radius-md);
  box-shadow: var(--n-shadow-md);
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--n-font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--n-navy);
  z-index: 3;
}

.hero-float-badge.badge-1 { top: -1.5rem; left: -1.5rem; }
.hero-float-badge.badge-2 { bottom: -1.5rem; right: -1.5rem; }

.hero-float-badge .icon-box {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (max-width: 767.98px) {
  .hero-float-badge { padding: 0.6rem 0.9rem; font-size: 0.75rem; }
  .hero-float-badge.badge-1 { top: -1rem; left: -0.5rem; }
  .hero-float-badge.badge-2 { bottom: -1rem; right: -0.5rem; }
}

/* Stats strip */
.stats-strip {
  border-top: 1px solid var(--n-border);
  border-bottom: 1px solid var(--n-border);
}

.stat-item .stat-number {
  font-family: var(--n-font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--n-navy);
}

.stat-item .stat-label {
  font-size: 0.9rem;
  color: var(--n-slate);
  font-weight: 500;
}

/* =====================================================
   ICON BOXES
   ===================================================== */
.icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--n-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.icon-box-primary { background: var(--n-bg-alt); color: var(--n-primary); }
.icon-box-secondary { background: var(--n-bg-soft); color: var(--n-primary-dark); }
.icon-box-success { background: #E7F9F0; color: var(--n-success); }

.icon-box-lg { width: 72px; height: 72px; font-size: 2rem; border-radius: var(--n-radius-md); }

.icon-box-white {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

/* =====================================================
   CARDS — premium card system
   ===================================================== */
.card-premium {
  background: #fff;
  border: 1px solid var(--n-border);
  border-radius: var(--n-radius-md);
  box-shadow: var(--n-shadow-sm);
  transition: all 0.3s ease;
  padding: var(--n-space-lg);
  height: 100%;
}

.card-premium:hover {
  box-shadow: var(--n-shadow-md);
  transform: translateY(-6px);
  border-color: transparent;
}

.card-premium .card-title {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.card-link-arrow {
  font-family: var(--n-font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--n-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s ease;
}

.card-link-arrow:hover { gap: 0.7rem; color: var(--n-primary-dark); }

/* Pricing card */
.pricing-card {
  background: #fff;
  border: 1px solid var(--n-border);
  border-radius: var(--n-radius-lg);
  padding: var(--n-space-lg);
  box-shadow: var(--n-shadow-sm);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.pricing-card:hover { box-shadow: var(--n-shadow-md); transform: translateY(-6px); }

.pricing-card.featured {
  background: var(--n-gradient-dark);
  border: none;
  color: #fff;
  box-shadow: var(--n-shadow-lg);
  transform: scale(1.03);
}

.pricing-card.featured .price, .pricing-card.featured h3 { color: #fff; }
.pricing-card.featured .text-slate { color: rgba(255,255,255,0.65) !important; }
.pricing-card.featured ul li { color: rgba(255,255,255,0.85); }
.pricing-card.featured .pricing-divider { border-color: rgba(255,255,255,0.12); }

@media (max-width: 991.98px) {
  .pricing-card.featured { transform: none; }
}

.pricing-badge {
  position: absolute;
  top: -14px;
  right: 2rem;
  background: var(--n-gradient-primary);
  color: #fff;
  font-family: var(--n-font-display);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.4rem 1rem;
  border-radius: var(--n-radius-pill);
  letter-spacing: 0.05em;
}

.price {
  font-family: var(--n-font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--n-navy);
}

.price-period { font-size: 1rem; font-weight: 500; color: var(--n-slate); }

.pricing-divider { border-color: var(--n-border); margin: var(--n-space-md) 0; }

.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: var(--n-slate);
}

.feature-list li i { color: var(--n-success); margin-top: 0.2rem; flex-shrink: 0; }
.feature-list li.disabled { opacity: 0.45; }
.feature-list li.disabled i { color: var(--n-slate-light); }

/* Blog cards */
.blog-card-img {
  border-radius: var(--n-radius-md) var(--n-radius-md) 0 0;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.blog-card-img img { transition: transform 0.4s ease; width: 100%; height: 100%; object-fit: cover; }
.card-premium:hover .blog-card-img img { transform: scale(1.06); }

.blog-card-body { padding: var(--n-space-md) var(--n-space-md) 0; }

.tag-pill {
  display: inline-block;
  font-family: var(--n-font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--n-primary);
  background: var(--n-bg-alt);
  padding: 0.3rem 0.8rem;
  border-radius: var(--n-radius-pill);
  margin-bottom: 0.75rem;
}

.meta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--n-slate-light);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--n-border);
}

/* Portfolio card */
.portfolio-card {
  position: relative;
  border-radius: var(--n-radius-md);
  overflow: hidden;
  box-shadow: var(--n-shadow-sm);
  aspect-ratio: 4/3;
}

.portfolio-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,31,77,0) 30%, rgba(11,31,77,0.88) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--n-space-md);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-card:hover img { transform: scale(1.08); }

.portfolio-overlay h5 { color: #fff; margin-bottom: 0.25rem; }
.portfolio-overlay span { color: rgba(255,255,255,0.7); font-size: 0.85rem; }

/* Testimonial card */
.testimonial-card {
  background: #fff;
  border-radius: var(--n-radius-md);
  box-shadow: var(--n-shadow-sm);
  border: 1px solid var(--n-border);
  padding: var(--n-space-lg);
  height: 100%;
}

.testimonial-card .stars { color: #FFB400; letter-spacing: 0.15em; font-size: 0.9rem; margin-bottom: 1rem; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: var(--n-space-md);
}

.testimonial-author img {
  width: 48px; height: 48px; border-radius: 50%; object-fit: cover;
}

.testimonial-author .name { font-family: var(--n-font-display); font-weight: 700; color: var(--n-navy); font-size: 0.95rem; }
.testimonial-author .role { font-size: 0.8rem; color: var(--n-slate-light); }

/* Process steps (numbered — real sequence) */
.process-step {
  position: relative;
  padding-left: 0;
}

.process-number {
  font-family: var(--n-font-display);
  font-size: 3rem;
  font-weight: 800;
  background: var(--n-gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}

/* Logo cloud */
.logo-cloud-item {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--n-font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--n-slate-light);
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.logo-cloud-item:hover { opacity: 1; color: var(--n-navy); }

/* Clientele carousel */
#clienteleCarousel .carousel-indicators { display: none; }
#clienteleCarousel .carousel-control-prev,
#clienteleCarousel .carousel-control-next {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  box-shadow: var(--n-shadow-sm);
  border: 1px solid var(--n-border);
  opacity: 1;
  top: 50%;
  transform: translateY(-50%);
}
#clienteleCarousel .carousel-control-prev { left: -20px; }
#clienteleCarousel .carousel-control-next { right: -20px; }
#clienteleCarousel .carousel-control-prev-icon,
#clienteleCarousel .carousel-control-next-icon {
  filter: invert(35%) sepia(15%) saturate(600%) hue-rotate(190deg) brightness(90%) contrast(90%);
  width: 1.2rem;
  height: 1.2rem;
}
.client-logo {
  max-height: 48px;
  max-width: 100%;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.client-logo:hover {
  opacity: 1;
}
@media (max-width: 767.98px) {
  #clienteleCarousel .carousel-control-prev { left: 0; }
  #clienteleCarousel .carousel-control-next { right: 0; }
  #clienteleCarousel .carousel-control-prev,
  #clienteleCarousel .carousel-control-next {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.92);
  }
  #clienteleCarousel .carousel-control-prev-icon,
  #clienteleCarousel .carousel-control-next-icon {
    width: 1rem;
    height: 1rem;
  }
  #clienteleCarousel .carousel-inner {
    padding: 0 8px;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1.5rem;
  }
  #clienteleCarousel .carousel-item {
    flex: 0 0 auto;
    width: auto;
    padding: 0;
    scroll-snap-align: start;
  }
  #clienteleCarousel .carousel-item > .row {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.5rem;
    margin: 0;
  }
  #clienteleCarousel .carousel-item [class*="col-"] {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    padding: 0;
  }
  .client-logo { max-height: 32px; width: auto; }
}

/* =====================================================
   PARTNERS
   ===================================================== */
.partners-section {
  background: #fff;
  border-top: 1px solid var(--n-border);
  border-bottom: 1px solid var(--n-border);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
  align-items: center;
  justify-items: center;
}

.partner-item {
  width: 100%;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.partner-logo-img {
  max-height: 48px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity 0.25s ease;
}

.partner-fallback {
  font-family: var(--n-font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--n-slate-light);
  border-radius: var(--n-radius-sm);
  padding: 0.75rem 1rem;
  text-align: center;
  white-space: nowrap;
}

.partner-item:hover .partner-logo-img {
  opacity: 1;
}

@media (max-width: 991.98px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .partner-logo-img {
    max-height: 40px;
  }
}

@media (max-width: 575.98px) {
  .partners-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
  }
  .partner-logo-img {
    max-height: 28px;
  }
}

/* =====================================================
   FORMS
   ===================================================== */
.form-control,
.form-select {
  border: 1.5px solid var(--n-border);
  border-radius: var(--n-radius-sm);
  padding: 0.85rem 1.1rem;
  font-size: 0.95rem;
  background-color: var(--n-bg);
  transition: all 0.2s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--n-primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
  background-color: #fff;
}

.form-label {
  font-family: var(--n-font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--n-navy);
  margin-bottom: 0.5rem;
}

.form-control.is-invalid, .form-select.is-invalid { border-color: #DC3545; }
.form-control.is-valid, .form-select.is-valid { border-color: var(--n-success); }

/* Newsletter / CTA section */
.cta-section {
  background: var(--n-gradient-dark);
  border-radius: var(--n-radius-lg);
  padding: var(--n-space-2xl) var(--n-space-lg);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.25) 0%, transparent 70%);
}

.cta-section h2, .cta-section p { color: #fff; position: relative; z-index: 1; }
.cta-section p { color: rgba(255,255,255,0.7); }

/* =====================================================
   FOOTER
   ===================================================== */
.footer-nexora {
  background: var(--n-navy);
  color: rgba(255,255,255,0.65);
  padding-top: var(--n-space-2xl);
}

.footer-nexora h6 {
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--n-space-md);
}

.footer-nexora a {
  color: rgba(255,255,255,0.6);
  transition: color 0.2s ease;
  display: block;
  margin-bottom: 0.65rem;
  font-size: 0.95rem;
}

.footer-nexora a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: var(--n-space-xl);
  padding: var(--n-space-md) 0;
  font-size: 0.85rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  transition: all 0.2s ease;
  margin-bottom: 0 !important;
}

.social-icon:hover { background: var(--n-primary); transform: translateY(-3px); }

/* =====================================================
   PAGE HEADER (sub-pages)
   ===================================================== */
.page-header {
  background: var(--n-gradient-dark);
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.25) 0%, transparent 70%);
}

.page-header h1 { color: #fff; }

.breadcrumb-custom {
  display: inline-flex;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

.breadcrumb-custom a { color: rgba(255,255,255,0.6); }
.breadcrumb-custom a:hover { color: #fff; }
.breadcrumb-custom .active { color: var(--n-primary); }

/* =====================================================
   SCROLL REVEAL (lightweight)
   ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .card-premium:hover, .pricing-card:hover, .btn:hover, .portfolio-card img { transform: none; }
}

/* =====================================================
   MISC UTILITIES
   ===================================================== */
.divider-line { height: 1px; background: var(--n-border); border: none; }

.rounded-img { border-radius: var(--n-radius-lg); }

.badge-soft {
  background: var(--n-bg-alt);
  color: var(--n-primary);
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: var(--n-radius-pill);
  font-size: 0.8rem;
  font-family: var(--n-font-display);
  white-space: nowrap;
}

.list-check {
  list-style: none;
  padding: 0;
}

.list-check li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.list-check li i {
  color: var(--n-primary);
  background: var(--n-bg-alt);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* Author / sidebar widgets (blog details) */
.widget {
  background: #fff;
  border: 1px solid var(--n-border);
  border-radius: var(--n-radius-md);
  padding: var(--n-space-md);
  margin-bottom: var(--n-space-md);
}

.widget h5 { font-size: 1rem; margin-bottom: var(--n-space-sm); }

.widget-link-list { list-style: none; padding: 0; margin: 0; }
.widget-link-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--n-border);
  font-size: 0.9rem;
  color: var(--n-navy);
  font-weight: 500;
}
.widget-link-list li:last-child { border-bottom: none; }
.widget-link-list li span { color: var(--n-slate-light); font-weight: 400; }

/* FAQ accordion custom */
.accordion-custom .accordion-item {
  border: 1px solid var(--n-border);
  border-radius: var(--n-radius-sm) !important;
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion-custom .accordion-button {
  font-family: var(--n-font-display);
  font-weight: 700;
  color: var(--n-navy);
  background: #fff;
  padding: 1.25rem 1.5rem;
}

.accordion-custom .accordion-button:not(.collapsed) {
  color: var(--n-primary);
  background: var(--n-bg-alt);
  box-shadow: none;
}

.accordion-custom .accordion-button:focus { box-shadow: none; border-color: var(--n-border); }
.accordion-custom .accordion-body { padding: 1.25rem 1.5rem; color: var(--n-slate); }

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--n-gradient-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--n-shadow-primary);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
  border: none;
}

.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

/* Contact map placeholder */
.map-frame {
  border-radius: var(--n-radius-md);
  overflow: hidden;
  border: 1px solid var(--n-border);
  height: 50%;
  min-height: 320px;
}

.map-frame iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }

/* Service detail icon list */
.feature-grid-item {
  display: flex;
  gap: 1rem;
  padding: var(--n-space-md);
  background: var(--n-bg);
  border-radius: var(--n-radius-md);
  height: 100%;
}

/* =====================================================
   MOVOSOFT — ADDITIONAL STYLES
   ===================================================== */

/* Hero software ecosystem */
.hero-ecosystem {
  position: relative;
  width: 100%;
  max-width: 560px;
  height: 520px;
  margin: 0 auto;
}

.eco-card {
  background: #fff;
  border-radius: var(--n-radius-md);
  box-shadow: var(--n-shadow-lg);
  border: 1px solid var(--n-border);
  overflow: hidden;
}

.eco-card-main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 340px;
  z-index: 2;
}

.eco-card-side {
  position: absolute;
  width: 180px;
  z-index: 1;
}

.eco-card-side-1 { top: 10px; left: 10px; }
.eco-card-side-2 { top: 10px; right: 10px; }
.eco-card-side-3 { bottom: 40px; left: 0; }
.eco-card-side-4 { bottom: 40px; right: 0; }

/* Floating mini cards */
.eco-float {
  position: absolute;
  background: #fff;
  border-radius: var(--n-radius-sm);
  box-shadow: var(--n-shadow-md);
  border: 1px solid var(--n-border);
  padding: 0.6rem 0.9rem;
  font-family: var(--n-font-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--n-navy);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.eco-float-1 { top: 10px; left: 50%; transform: translateX(-50%); }
.eco-float-2 { bottom: 10px; left: 50%; transform: translateX(-50%); }

/* Industry cards */
.industry-card {
  background: #fff;
  border: 1px solid var(--n-border);
  border-radius: var(--n-radius-md);
  padding: var(--n-space-lg);
  transition: all 0.3s ease;
  height: 100%;
}

.industry-card:hover {
  box-shadow: var(--n-shadow-md);
  transform: translateY(-4px);
  border-color: transparent;
}

.industry-card .icon-box {
  margin-bottom: var(--n-space-sm);
}

/* Product showcase */
.product-card {
  background: #fff;
  border: 1px solid var(--n-border);
  border-radius: var(--n-radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.product-card:hover {
  box-shadow: var(--n-shadow-md);
  transform: translateY(-6px);
}

.product-card-img {
  aspect-ratio: 16/10;
  background: var(--n-gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--n-space-lg);
  position: relative;
  overflow: hidden;
}

.product-card-img .product-mock {
  width: 100%;
  max-width: 280px;
  background: #fff;
  border-radius: var(--n-radius-sm);
  box-shadow: var(--n-shadow-md);
  border: 1px solid var(--n-border);
  padding: var(--n-space-sm);
}

.product-card-body {
  padding: var(--n-space-md);
}

/* Engineering section */
.engineering-visual {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: 460px;
  margin: 0 auto;
}

.eng-layer {
  position: absolute;
  background: #fff;
  border: 1px solid var(--n-border);
  border-radius: var(--n-radius-md);
  box-shadow: var(--n-shadow-md);
  padding: var(--n-space-md);
  left: 0;
  right: 0;
}

.eng-layer-1 { top: 0; z-index: 3; }
.eng-layer-2 { top: 110px; z-index: 2; }
.eng-layer-3 { top: 250px; z-index: 1; }

/* Case study card */
.case-card {
  background: #fff;
  border: 1px solid var(--n-border);
  border-radius: var(--n-radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.case-card:hover {
  box-shadow: var(--n-shadow-md);
  transform: translateY(-4px);
}

.case-card-img {
  aspect-ratio: 16/10;
  background: var(--n-gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.case-card-body {
  padding: var(--n-space-md);
}

/* Trust strip */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3rem;
  padding: var(--n-space-lg) 0;
}

.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--n-font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--n-slate-light);
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.trust-strip-item:hover { opacity: 1; color: var(--n-navy); }

.trust-strip-item .trust-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--n-radius-sm);
  background: var(--n-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--n-primary);
  font-size: 1rem;
}

/* Final CTA section */
.final-cta {
  background: var(--n-navy);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.2) 0%, transparent 70%);
}

.final-cta::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, transparent 70%);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .hero-ecosystem { height: 400px; max-width: 100%; }
  .eco-card-main { width: 100%; max-width: 360px; }
  .eco-card-side { display: none; }
  .engineering-visual { height: 400px; max-width: 100%; }
  .eng-layer-3 { top: 220px; }
}

@media (max-width: 575.98px) {
  .hero-ecosystem { height: 380px; max-width: 100%; }
  .eco-card-main { width: 100%; max-width: 340px; }
  .eco-card-side { display: none; }
  .eco-float { font-size: 0.7rem; padding: 0.5rem 0.7rem; }
  .engineering-visual { height: 380px; max-width: 100%; }
  .eng-layer-3 { top: 200px; }
}
