:root {
  --nk-navy: #0b2f4d;
  --nk-blue: #1f8dbc;
  --nk-slate: #4b5563;
  --nk-ice: #f4f6fa;
  --nk-border: #e2e8f0;
  --nk-white: #ffffff;
  --nk-gradient-start: #f8fafc;
  --nk-gradient-end: #e0f2fe;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--nk-navy);
  background-color: var(--nk-white);
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

.fade-in-right {
  animation: fadeInRight 1s ease-out forwards;
  opacity: 0;
}

/* Navbar */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(11, 47, 77, 0.06);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(11, 47, 77, 0.12);
}

.brand-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.brand-logo:hover {
  transform: scale(1.05);
}

.navbar .nav-link {
  font-weight: 600;
  color: var(--nk-slate);
  padding: 0.5rem 1rem;
  position: relative;
  transition: color 0.3s ease;
}

.navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--nk-blue);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar .nav-link.active::after,
.navbar .nav-link:hover::after {
  width: 60%;
}

.navbar .nav-link.active,
.navbar .nav-link:hover {
  color: var(--nk-blue);
}

/* Hero Section */
#hero.hero {
  background: linear-gradient(180deg, #f0f9ff 0%, #e0f2fe 50%, #ffffff 100%);
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero-africa-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg width='400' height='400' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M200,50 L250,80 L280,120 L290,160 L285,200 L270,240 L250,280 L220,320 L180,350 L140,360 L100,350 L70,320 L50,280 L40,240 L35,200 L40,160 L50,120 L80,80 L130,50 L165,50 Z' fill='%230b2f4d'/%3E%3C/svg%3E");
  background-size: 500px auto;
  background-position: center right;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-banner {
  padding: 5rem 0 6rem;
  position: relative;
  z-index: 1;
}

.hero-banner .row {
  align-items: center;
  min-height: 600px;
}

.hero-banner .col-lg-7 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 3rem;
  padding-left: 0;
}

.hero-kicker {
  color: var(--nk-blue);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: 3.2rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  color: var(--nk-navy);
  font-weight: 700;
}

.hero-company-name {
  font-size: 1.3rem;
  color: var(--nk-navy);
  font-weight: 500;
  margin-bottom: 2rem;
}

/* Hero Search Form */
.hero-cta {
  margin: 2rem 0;
}

.hero-search-form {
  max-width: 500px;
}

.hero-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: #f1f5f9;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  box-shadow: 0 2px 8px rgba(11, 47, 77, 0.1);
}

.hero-input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 1rem;
  color: var(--nk-navy);
  outline: none;
  padding: 0;
}

.hero-input::placeholder {
  color: var(--nk-slate);
  opacity: 0.6;
}

.hero-search-icon-btn {
  background: transparent;
  border: none;
  color: var(--nk-navy);
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.hero-search-icon-btn:hover {
  color: var(--nk-blue);
}

/* Hero Illustration - Glass Cube */
.hero-banner .col-lg-5 {
  position: relative;
  height: 650px;
  padding-left: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-illustration-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 550px;
  margin: 0 auto;
  overflow: hidden;
}

.hero-glass-cube {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 380px;
  height: 380px;
  z-index: 2;
}

.glass-cube-content {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 24px;
  box-shadow: 
    0 10px 40px rgba(11, 47, 77, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  overflow: hidden;
  position: relative;
}

.glass-cube-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.glass-cube-glow {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(31, 141, 188, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  animation: pulse 4s ease-in-out infinite;
  pointer-events: none;
}

/* Floating Tech Icons */
.floating-tech-icon {
  position: absolute;
  width: 56px;
  height: 56px;
  background: rgba(31, 141, 188, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nk-white);
  font-size: 1.4rem;
  box-shadow: 0 4px 20px rgba(31, 141, 188, 0.15);
  animation: float 5s ease-in-out infinite;
  z-index: 3;
}

.icon-security {
  top: 8%;
  right: 8%;
  animation-delay: 0s;
}

.icon-wifi {
  top: 32%;
  right: -2%;
  animation-delay: 0.6s;
}

.icon-database {
  bottom: 28%;
  right: 8%;
  animation-delay: 1.2s;
}

.icon-network {
  bottom: 8%;
  right: 22%;
  animation-delay: 1.8s;
}

.icon-users {
  top: 50%;
  left: -6%;
  transform: translateY(-50%);
  animation-delay: 2.4s;
}

/* Hero Stats Cards */
.hero-stats-cards {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  gap: 0.75rem;
  z-index: 4;
  padding-right: 0;
}

.hero-stat-card {
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(11, 47, 77, 0.08);
  transition: all 0.3s ease;
}

.hero-stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(11, 47, 77, 0.12);
  background: rgba(255, 255, 255, 0.85);
}

.hero-stat-card i {
  font-size: 1.4rem;
  color: var(--nk-blue);
  margin-bottom: 0.4rem;
}

.hero-stat-card .stat-flag {
  width: 1.6rem;
  height: 1.1rem;
  margin-bottom: 0.4rem;
  border-radius: 3px;
  box-shadow: 0 1px 4px rgba(11, 47, 77, 0.12);
  flex: 0 0 auto;
}

.hero-stat-card p {
  color: var(--nk-navy);
  font-size: 1.4rem;
  margin: 0;
  font-weight: 700;
}

.hero-stat-card small {
  color: var(--nk-slate);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Buttons */
.btn-primary {
  background: var(--nk-navy);
  border: none;
  padding: 0.875rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  color: var(--nk-white);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(11, 47, 77, 0.2);
}

.btn-primary:hover {
  background: var(--nk-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(11, 47, 77, 0.3);
  color: var(--nk-white);
}

.btn-outline-primary {
  color: var(--nk-navy);
  border: 2px solid var(--nk-navy);
  background: var(--nk-white);
  padding: 0.875rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: var(--nk-navy);
  color: var(--nk-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(11, 47, 77, 0.2);
}

.text-navy {
  color: var(--nk-navy);
}

/* Sections */
.section-pad {
  padding: 7rem 0;
  position: relative;
}

.section-pad.bg-light {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border-top: 1px solid rgba(11, 47, 77, 0.08);
  border-bottom: 1px solid rgba(11, 47, 77, 0.08);
}

.section-pad:not(.bg-light) {
  background: var(--nk-white);
}

.section-pad::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(31, 141, 188, 0.2) 50%, transparent 100%);
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  color: var(--nk-blue);
  font-weight: 700;
  display: inline-block;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1.5rem;
}

.section-kicker::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--nk-blue);
  border-radius: 50%;
}

.section-pad h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--nk-navy);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

/* About Section */
#about {
  position: relative;
}

#about::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, var(--nk-blue) 50%, transparent 100%);
  border-radius: 2px;
}

.about-card {
  background: var(--nk-white);
  border-radius: 1.25rem;
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(11, 47, 77, 0.06);
  border: 1px solid rgba(11, 47, 77, 0.06);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--nk-blue) 0%, var(--nk-navy) 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.about-card:hover::before {
  transform: scaleX(1);
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(11, 47, 77, 0.12);
  border-color: rgba(31, 141, 188, 0.2);
}

.about-stat {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--nk-blue) 0%, var(--nk-navy) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Mission Section */
#mission {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

#mission::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, var(--nk-blue) 50%, transparent 100%);
  border-radius: 2px;
}

.mission-box {
  border-radius: 1.5rem;
  padding: 2.5rem;
  background: var(--nk-white);
  box-shadow: 0 8px 30px rgba(11, 47, 77, 0.08);
  border: 1px solid rgba(11, 47, 77, 0.06);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.mission-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--nk-blue) 0%, var(--nk-navy) 100%);
  border-radius: 0 4px 4px 0;
}

.mission-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(11, 47, 77, 0.12);
}

.mission-box p.fw-semibold {
  color: var(--nk-navy);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.mission-points {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: var(--nk-slate);
  position: relative;
  z-index: 1;
}

.mission-points li {
  padding-left: 2rem;
  position: relative;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
  line-height: 1.6;
}

.mission-points li:hover {
  transform: translateX(5px);
  color: var(--nk-navy);
}

.mission-points li::before {
  content: "✓";
  color: var(--nk-blue);
  position: absolute;
  left: 0;
  font-weight: 700;
  font-size: 1.1rem;
}

/* Solutions Section */
#solutions {
  position: relative;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

#solutions::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, var(--nk-blue) 50%, transparent 100%);
  border-radius: 2px;
}

/* Service Cards */
.service-card {
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  background: var(--nk-white);
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(11, 47, 77, 0.06);
  border: 1px solid rgba(11, 47, 77, 0.06);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--nk-blue) 0%, var(--nk-navy) 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(11, 47, 77, 0.12);
  border-color: rgba(31, 141, 188, 0.2);
}

.solution-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: var(--nk-slate);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-top: 1.5rem;
}

.solution-list li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.solution-list li:hover {
  color: var(--nk-navy);
}

.solution-list li::before {
  content: "→";
  color: var(--nk-blue);
  position: absolute;
  left: 0;
  font-weight: 700;
  transition: transform 0.3s ease;
}

.solution-list li:hover::before {
  transform: translateX(3px);
}

.service-card h5 {
  color: var(--nk-navy);
  font-weight: 700;
  font-size: 1.25rem;
  margin-top: 1.5rem;
}

.icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, rgba(31, 141, 188, 0.1) 0%, rgba(11, 47, 77, 0.08) 100%);
  color: var(--nk-blue);
  font-size: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(31, 141, 188, 0.1);
}

.service-card:hover .icon-wrap {
  transform: scale(1.05);
  background: linear-gradient(135deg, var(--nk-blue) 0%, var(--nk-navy) 100%);
  color: var(--nk-white);
  border-color: transparent;
}

/* Hardware Section */
#hardware {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  padding-bottom: 8rem;
  overflow: hidden;
}

#hardware .container {
  position: relative;
  z-index: 1;
}

#hardware::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, var(--nk-blue) 50%, transparent 100%);
  border-radius: 2px;
}

/* Hardware Carousel */
#hardwareCarousel {
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
}

.carousel-inner {
  min-height: 500px;
  position: relative;
  overflow: visible;
}

.carousel-item {
  min-height: 500px;
}

.hardware-slide {
  padding: 2.5rem 0;
  width: 100%;
  min-height: 500px;
  position: relative;
}

.hardware-slide .row {
  align-items: center;
  margin: 0;
}

.hardware-image-wrapper {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(11, 47, 77, 0.1);
  border: 1px solid rgba(11, 47, 77, 0.06);
  transition: all 0.4s ease;
  height: 400px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--nk-white);
  margin: 0 auto;
}

.hardware-image-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(11, 47, 77, 0.15);
  border-color: rgba(31, 141, 188, 0.2);
}

.hardware-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.5rem;
  display: block;
}

.hardware-slide h3 {
  color: var(--nk-navy);
  font-weight: 700;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.hardware-slide .col-md-6:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 2rem;
  padding-right: 1rem;
}

.hardware-slide .col-md-6:first-child {
  padding-right: 2rem;
  padding-left: 1rem;
}

.hardware-slide p.text-secondary {
  min-height: 80px;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  color: var(--nk-slate);
}

.brand-logos-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.brand-logo-item {
  height: 70px;
  min-width: 140px;
  padding: 1rem 1.5rem;
  background: var(--nk-white);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(11, 47, 77, 0.08);
  border: 1px solid rgba(11, 47, 77, 0.06);
  transition: all 0.3s ease;
}

.brand-logo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(11, 47, 77, 0.15);
  border-color: rgba(31, 141, 188, 0.2);
}

.brand-logo-item img {
  max-height: 45px;
  max-width: 130px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.brand-logo-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.carousel-control-prev,
.carousel-control-next {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 4px 20px rgba(11, 47, 77, 0.15);
  border: 1px solid rgba(11, 47, 77, 0.08);
  opacity: 1;
  transition: all 0.3s ease;
}

.carousel-control-prev {
  left: 20px;
}

.carousel-control-next {
  right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 6px 30px rgba(11, 47, 77, 0.2);
  background: var(--nk-white);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: var(--nk-blue);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  background-size: 60% 60%;
}

.carousel-indicators {
  bottom: -50px;
  margin-bottom: 0;
  z-index: 10;
}

.carousel-indicators [data-bs-target] {
  width: 40px;
  height: 6px;
  border-radius: 3px;
  background: rgba(31, 141, 188, 0.3);
  border: none;
  margin: 0 4px;
  transition: all 0.3s ease;
  opacity: 1;
}

.carousel-indicators [data-bs-target].active {
  background: var(--nk-blue);
  width: 60px;
  opacity: 1;
}

/* Values Section */
#values {
  position: relative;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

#values::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, var(--nk-blue) 50%, transparent 100%);
  border-radius: 2px;
}

.values-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 2rem;
}

.values-list li {
  border-radius: 1.25rem;
  padding: 1.75rem 1.5rem;
  background: var(--nk-white);
  font-weight: 600;
  color: var(--nk-slate);
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(11, 47, 77, 0.06);
  border: 1px solid rgba(11, 47, 77, 0.06);
  position: relative;
  overflow: hidden;
}

.values-list li::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--nk-blue) 0%, var(--nk-navy) 100%);
  transform: scaleY(0);
  transition: transform 0.4s ease;
}

.values-list li:hover::before {
  transform: scaleY(1);
}

.values-list li:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(11, 47, 77, 0.12);
  border-color: rgba(31, 141, 188, 0.2);
  color: var(--nk-navy);
}

/* Products Section */
#products {
  position: relative;
}

#products::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, var(--nk-blue) 50%, transparent 100%);
  border-radius: 2px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.product-item {
  border-radius: 1.25rem;
  padding: 1.75rem 1.5rem;
  background: var(--nk-white);
  font-weight: 600;
  color: var(--nk-slate);
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(11, 47, 77, 0.06);
  border: 1px solid rgba(11, 47, 77, 0.06);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.product-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--nk-blue) 0%, var(--nk-navy) 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.product-item:hover::before {
  transform: scaleX(1);
}

.product-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(11, 47, 77, 0.12);
  border-color: rgba(31, 141, 188, 0.2);
  color: var(--nk-navy);
}

/* Contact Section */
#contact {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.contact-panel,
.contact-card {
  border-radius: 1.5rem;
  padding: 2.5rem;
  background: var(--nk-white);
  box-shadow: 0 4px 20px rgba(11, 47, 77, 0.06);
  border: 1px solid rgba(11, 47, 77, 0.06);
  transition: all 0.4s ease;
}

.contact-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--nk-blue) 0%, var(--nk-navy) 100%);
  border-radius: 1.5rem 0 0 1.5rem;
}

.contact-panel:hover,
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(11, 47, 77, 0.12);
  border-color: rgba(31, 141, 188, 0.2);
}

.brand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.brand-tag {
  border-radius: 50px;
  padding: 0.5rem 1.25rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--nk-slate);
  background: var(--nk-white);
  box-shadow: 0 2px 10px rgba(11, 47, 77, 0.08);
  transition: all 0.3s ease;
}

.brand-tag:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(11, 47, 77, 0.15);
  color: var(--nk-blue);
}

.brand-logos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.brand-logos-grid .brand-logo-item {
  height: 80px;
  padding: 1rem;
  background: var(--nk-white);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(11, 47, 77, 0.08);
  transition: all 0.3s ease;
}

.brand-logos-grid .brand-logo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(11, 47, 77, 0.15);
}

.brand-logos-grid .brand-logo-item img {
  max-height: 50px;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.brand-logos-grid .brand-logo-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.info-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 1.25rem;
  align-items: center;
  background: linear-gradient(135deg, rgba(244, 246, 250, 0.8) 0%, rgba(255, 255, 255, 0.8) 100%);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(11, 47, 77, 0.08);
}

.info-item:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 20px rgba(11, 47, 77, 0.12);
}

.info-item i {
  font-size: 1.75rem;
  color: var(--nk-blue);
}

.whatsapp-link {
  color: var(--nk-slate);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.whatsapp-link:hover {
  color: #25D366;
  text-decoration: none;
}

.whatsapp-link .bi-whatsapp {
  color: #25D366;
  font-size: 1.1rem;
}

.email-link {
  color: var(--nk-slate);
  text-decoration: none;
  transition: all 0.3s ease;
}

.email-link:hover {
  color: var(--nk-blue);
  text-decoration: none;
}

.site-footer .whatsapp-link,
.site-footer .email-link {
  color: rgba(255, 255, 255, 0.85);
}

.site-footer .whatsapp-link:hover {
  color: #25D366;
}

.site-footer .email-link:hover {
  color: var(--nk-blue);
}

/* Footer */
.site-footer {
  background: linear-gradient(135deg, #0a1624 0%, #0b2f4d 100%);
  color: rgba(255, 255, 255, 0.85);
  padding: 2.5rem 0;
}

.site-footer .footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.site-footer i {
  color: var(--nk-blue);
  margin-right: 0.5rem;
}

/* Scroll Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Base Mobile Fixes */
html {
  overflow-x: hidden;
  width: 100%;
}

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

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

table {
  width: 100%;
  table-layout: auto;
  word-wrap: break-word;
}

/* Responsive */
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-banner .col-lg-7 {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
    margin-bottom: 3rem;
  }
  
  .hero-banner .row {
    margin-left: 0;
    margin-right: 0;
  }
  
  .hero-banner .col-lg-5 {
    height: 500px;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  
  .hero-illustration-wrapper {
    max-width: 100%;
    height: 450px;
  }
  
  .hero-glass-cube {
    width: 350px;
    height: 350px;
    max-width: 90%;
  }
  
  .floating-tech-icon {
    width: 45px;
    height: 45px;
    font-size: 1.25rem;
  }
  
  .hero-stats-cards {
    position: relative;
    margin-top: 2rem;
    justify-content: center;
    bottom: auto;
    right: auto;
  }
  
  .carousel-control-prev {
    left: 10px;
  }
  
  .carousel-control-next {
    right: 10px;
  }
}

@media (max-width: 767px) {
  .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    max-width: 100%;
  }
  
  .navbar {
    box-shadow: 0 2px 15px rgba(11, 47, 77, 0.1);
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .brand-logo {
    height: 46px;
    max-width: 100%;
  }

  .hero {
    min-height: auto;
  }

  .hero-banner {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  
  .hero-title {
    font-size: 1.75rem;
    line-height: 1.3;
    margin-bottom: 0.75rem;
  }
  
  .hero-company-name {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
  }
  
  .hero-description {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .hero-illustration-wrapper {
    height: 320px;
    margin-top: 1.5rem;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-glass-cube {
    width: 260px;
    height: 260px;
    max-width: 90%;
  }
  
  .hero-banner .col-lg-5 {
    height: 380px;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  
  .hero-banner .col-lg-7 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    text-align: center;
    max-width: 100%;
  }
  
  .hero-banner .row {
    align-items: center;
    justify-content: center;
  }
  
  .floating-tech-icon {
    display: none;
  }
  
  .hero-stats-cards {
    position: relative;
    margin-top: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  
  .hero-stat-card {
    width: 70px;
    height: 70px;
    padding: 0.5rem;
  }
  
  .hero-stat-card i {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
  }
  
  .hero-stat-card p {
    font-size: 1.1rem;
  }
  
  .hero-stat-card small {
    font-size: 0.65rem;
  }
  
  .hero-cta {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }
  
  .hero-cta .btn {
    width: auto;
    min-width: 200px;
    max-width: 90%;
    margin-bottom: 0;
    padding: 0.75rem 1.5rem;
  }

  .service-card {
    padding: 1.5rem;
    max-width: 100%;
    margin: 0 auto;
  }
  
  .section-pad {
    padding: 2.5rem 0;
  }
  
  .section-pad::before {
    display: none;
  }
  
  .section-pad::after {
    display: none;
  }
  
  .section-kicker {
    padding-left: 0.75rem;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
  }
  
  .section-kicker::before {
    width: 5px;
    height: 5px;
  }
  
  .section-pad h2 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    line-height: 1.3;
  }
  
  .hardware-slide {
    padding: 1.5rem 0;
  }
  
  .about-card,
  .service-card,
  .mission-box {
    padding: 1.25rem;
    margin-bottom: 0.75rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .about-card:last-child,
  .service-card:last-child {
    margin-bottom: 0;
  }
  
  .values-list,
  .product-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    max-width: 100%;
  }
  
  .values-list li,
  .product-item {
    padding: 1.25rem;
    max-width: 100%;
  }
  
  .hardware-slide .col-md-6:first-child,
  .hardware-slide .col-md-6:last-child {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    margin-bottom: 1.5rem;
  }
  
  .hardware-slide .col-md-6:last-child {
    text-align: center;
  }
  
  .hardware-image-wrapper {
    height: 280px;
    max-width: 100%;
    margin: 0 auto;
  }
  
  .hardware-slide {
    min-height: auto;
    padding: 1.25rem 0;
  }
  
  .hardware-slide h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
  }
  
  .hardware-slide p.text-secondary {
    min-height: auto;
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 1.25rem;
  }
  
  .carousel-inner,
  .carousel-item {
    min-height: auto;
  }
  
  .brand-logos-row {
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
  }
  
  .brand-logo-item {
    min-width: 90px;
    height: 55px;
    padding: 0.5rem 0.75rem;
    flex: 0 0 auto;
  }
  
  .brand-logo-item img {
    max-width: 85px;
    max-height: 35px;
  }
  
  .hero-kicker {
    font-size: 0.8rem;
  }
  
  p, li, span {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  h1, h2, h3, h4, h5, h6 {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .about-card {
    margin-bottom: 0.75rem;
  }
  
  .row.g-3 > * {
    margin-bottom: 0.75rem;
  }
  
  .row.g-4 > * {
    margin-bottom: 1rem;
  }
  
  .row {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  
  .row > * {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  
  #about .row,
  #mission .row,
  #solutions .row {
    justify-content: center;
  }
  
  #solutions .col-md-4 {
    max-width: 100%;
    margin-bottom: 1rem;
  }
  
  .contact-panel {
    padding: 1.25rem;
    max-width: 100%;
    margin: 0 auto;
  }
  
  .brand-logos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    max-width: 100%;
  }
  
  .brand-logos-grid .brand-logo-item {
    padding: 0.75rem;
  }
  
  .info-item {
    padding: 1rem;
    flex-direction: row;
    text-align: left;
    gap: 0.75rem;
    max-width: 100%;
  }
  
  .info-item i {
    font-size: 1.25rem;
    flex-shrink: 0;
  }
  
  .site-footer {
    padding: 2rem 0;
  }
  
  .site-footer .footer-contact {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
  
  .mission-box {
    max-width: 100%;
    margin: 0 auto;
  }
  
  .mission-points {
    padding-left: 1.25rem;
  }
  
  .mission-points li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
  }
  
  .solution-list li {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 575px) {
  .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  
  .hero-title {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
  }
  
  .hero-company-name {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  
  .hero-description {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  
  .hero-banner {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  
  .hero-illustration-wrapper {
    height: 280px;
    margin-top: 1.25rem;
    max-width: 85%;
  }
  
  .hero-glass-cube {
    width: 220px;
    height: 220px;
    max-width: 85%;
  }
  
  .hero-banner .col-lg-5 {
    height: 340px;
  }
  
  .hero-stat-card {
    width: 65px;
    height: 65px;
    padding: 0.5rem;
  }
  
  .hero-stat-card i {
    font-size: 1rem;
    margin-bottom: 0.2rem;
  }
  
  .hero-stat-card p {
    font-size: 1rem;
  }
  
  .hero-stat-card small {
    font-size: 0.6rem;
  }
  
  .hero-stats-cards {
    gap: 0.5rem;
    margin-top: 1.25rem;
  }
  
  .hero-cta .btn {
    min-width: 180px;
    padding: 0.65rem 1.25rem;
    font-size: 0.9rem;
  }
  
  .section-pad {
    padding: 2rem 0;
  }
  
  .section-pad h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .section-kicker {
    font-size: 0.75rem;
    padding-left: 0.5rem;
    margin-bottom: 0.5rem;
  }
  
  .section-kicker::before {
    width: 4px;
    height: 4px;
  }
  
  .hardware-slide h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
  }
  
  .hardware-image-wrapper {
    height: 240px;
  }
  
  .hardware-slide p.text-secondary {
    min-height: auto;
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }
  
  .hardware-slide {
    padding: 1rem 0;
  }
  
  .brand-logos-row {
    gap: 0.4rem;
  }
  
  .brand-logo-item {
    min-width: 75px;
    height: 48px;
    padding: 0.4rem 0.6rem;
  }
  
  .brand-logo-item img {
    max-width: 70px;
    max-height: 32px;
  }
  
  .service-card {
    padding: 1.25rem;
  }
  
  .about-card,
  .mission-box {
    padding: 1.25rem;
  }
  
  .values-list,
  .product-grid {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
  
  .values-list li,
  .product-item {
    padding: 1rem;
  }
  
  .brand-logos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }
  
  .brand-logos-grid .brand-logo-item {
    height: 55px;
    padding: 0.6rem;
  }
  
  .brand-logos-grid .brand-logo-item img {
    max-height: 35px;
  }
  
  .contact-panel {
    padding: 1rem;
  }
  
  .info-item {
    padding: 0.9rem;
    gap: 0.6rem;
  }
  
  .info-item i {
    font-size: 1.1rem;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    width: 36px;
    height: 36px;
  }
  
  .carousel-control-prev {
    left: 5px;
  }
  
  .carousel-control-next {
    right: 5px;
  }
  
  .carousel-indicators {
    bottom: 8px;
  }
  
  .carousel-indicators [data-bs-target] {
    width: 28px;
    height: 5px;
  }
  
  .carousel-indicators [data-bs-target].active {
    width: 36px;
  }
  
  .navbar-nav {
    padding-top: 0.75rem;
  }
  
  .navbar-nav .nav-link {
    padding: 0.6rem 0;
    font-size: 0.95rem;
  }
  
  .mission-points li {
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
  }
  
  .solution-list li {
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
  }
  
  .row.g-3 > * {
    margin-bottom: 0.6rem;
  }
  
  .row.g-4 > * {
    margin-bottom: 0.75rem;
  }
}
