* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
  overflow-wrap: break-word; /* Prevents long text from breaking mobile width */
}

html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  position: relative;
}

body {
  background: #0b1220;
  color: #ffffff;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 140px; 
}

.navbar {
  width: 100%;
  padding: 8px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background: rgba(8, 12, 22, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #00b7ff;
}

.logo span {
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  display: block;
  letter-spacing: 3px;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  color: #d6e1ff;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
  white-space: nowrap; 
}

.nav-links a:hover {
  color: #00b7ff;
}

.btn {
  padding: 12px 24px;
  background: #00b7ff;
  color: #fff;
  border: none;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  display: inline-block;
  white-space: nowrap;
}

.btn:hover {
  background: #0097d4;
  transform: translateY(-2px);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 160px 8% 80px; 
  gap: 60px;
  background: radial-gradient(circle at top right, rgba(0, 183, 255, 0.2), transparent 35%), #0b1220;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 64px;
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 800;
}

.hero-title .subtitle {
  display: block;
  margin-top: 10px;
  color: #ffffff;
  font-size: 4rem;
}

.hero-title .brand {
  color: #f7941d;
}

.hero-text h1 span {
  color: #00b7ff;
}

.hero-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #c4d0ea;
  max-width: 650px;
  margin-bottom: 35px;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.secondary-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.section {
  padding: 100px 8%;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-feature-title h2 {
  font-size: 44px;
  margin-bottom: 15px;
}


.section-title p {
  color: #a9b8d4;
  max-width: 700px;
  margin: auto;
  line-height: 1.7;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 28px;
}

.feature-card {
  background: #111a2e;
  padding: 35px;
  border-radius: 22px;
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: #00b7ff;
}

.feature-icon {
  width: 65px;
  height: 65px;
  background: rgba(0, 183, 255, 0.12);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
}

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.feature-card p {
  color: #b6c4de;
  line-height: 1.7;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 40px;
  align-items: center;
}

.about-box {
  background: #111a2e;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-box h3 {
  font-size: 34px;
  margin-bottom: 20px;
}

.about-box p {
  line-height: 1.9;
  color: #c0cce2;
  margin-bottom: 20px;
}

.badge {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 40px;
  background: rgba(0, 183, 255, 0.15);
  color: #00b7ff;
  font-weight: 600;
  margin-top: 10px;
}

.cta {
  background: linear-gradient(135deg, #00b7ff, #0066ff);
  margin: 100px 8%;
  border-radius: 30px;
  padding: 70px 40px;
  text-align: center;
}

.cta h2 {
  font-size: 48px;
  margin-bottom: 18px;
}

.cta p {
  max-width: 700px;
  margin: auto;
  line-height: 1.8;
  margin-bottom: 35px;
  color: #e9f3ff;
}

#contact {
  padding: 100px 20px;
  background: #0b1220;
}

#contact .title {
  text-align: center;
  color: #ffffff;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 40px;
}

.contact {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-form {
  width: 100%;
  max-width: 900px;
  background: #ffffff;
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  margin-bottom: 18px;
  border: 1px solid #dcdcdc;
  border-radius: 12px;
  font-size: 16px;
}

.contact-form button {
  width: 100%;
  padding: 16px;
  background: #08276d;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #0b3d9a;
}

footer {
  background: #061c54;
  color: #fff;
  padding: 50px 8%;
}

.footer-grid{
      display:grid;
      grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
      gap:30px;
    }

footer h3 {
  margin-bottom: 20px;
  color: #08a6df;
}

footer p {
  margin-bottom: 10px;
  line-height: 28px;
}

.footer-bottom {
  margin-top: 40px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  color: #ccc;
}

.challenges-section {
  padding: 100px 8%;
  background: #f7fbff;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 800;
  color: #0a1f44;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.section-header p {
  color: #666;
  font-size: 18px;
  letter-spacing: 1px;
}

.challenges-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.challenge-card {
  background: #fff;
  border: 1px solid #d7e5f3;
  border-radius: 18px;
  padding: 25px;
  transition: 0.3s ease;
}

.challenge-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.challenge-number {
  font-size: 52px;
  font-weight: 800;
  color: #1e90ff;
  margin-bottom: 15px;
}

.challenge-content {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.challenge-icon {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e90ff, #0056d6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 34px;
  flex-shrink: 0;
}

.challenge-text h3 {
  color: #0056d6;
  font-size: 24px;
  margin-bottom: 12px;
  line-height: 1.3;
}

.challenge-text p {
  color: #444;
  line-height: 1.7;
  font-size: 16px;
}

.section-title h2 {
  font-size: 42px;
  font-weight: 800;
  color: #121313;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.solutions-section {
  padding: 100px 8%;
  background: #f8fbff;
}

.solutions-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 50px;
}

.solution-column {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
  border: 1px solid #d9e8f8;
}

.column-header {
  background: linear-gradient(135deg, #0066ff, #1e90ff);
  color: #fff;
  padding: 22px 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.column-header i {
  font-size: 28px;
}

.column-header h3 {
  font-size: 28px;
  margin: 0;
}

.solution-card {
  padding: 25px 30px;
  border-bottom: 1px solid #e5eef8;
}

.solution-card:last-child {
  border-bottom: none;
}

.solution-card h4 {
  color: #0b58d6;
  font-size: 24px;
  margin-bottom: 15px;
}

.solution-card p {
  color: #444;
  line-height: 1.8;
}

.solution-card ul {
  padding-left: 20px;
}

.solution-card ul li {
  margin-bottom: 10px;
  color: #444;
  line-height: 1.7;
}

.device-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.device-tags span {
  background: #eef6ff;
  color: #0b58d6;
  padding: 8px 14px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
}

.architecture-section {
  padding: 120px 8%;
  background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
}

.architecture-title {
  text-align: center;
  margin-bottom: 70px;
}

.architecture-title h2 {
  font-size: 48px;
  font-weight: 800;
  color: #0a2c72;
  text-transform: uppercase;
  position: relative;
}

.architecture-title h2::after {
  content: '';
  width: 120px;
  height: 5px;
  background: linear-gradient(90deg, #0066ff, #00b7ff);
  display: block;
  margin: 18px auto 0;
  border-radius: 10px;
}

.architecture-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.arch-card {
  width: 100%;
  min-height: 420px;
  background: #fff;
  border-radius: 20px;
  padding: 25px 20px;
  border: 1px solid #dce9f6;
  box-shadow: 0 8px 20px rgba(0, 102, 255, .08);
  position: relative;
}

.arch-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #0066ff, #00b7ff);
}

.arch-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 102, 255, .15);
}

.arch-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #0066ff, #00b7ff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 34px;
  box-shadow: 0 10px 25px rgba(0, 102, 255, .35);
}

.arch-card h3 {
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 12px;
}

.arch-card span {
  display: block;
  text-align: center;
  color: #6b7280;
  margin-bottom: 20px;
  font-size: 15px;
}

.arch-card ul {
  padding-left: 22px;
}

.arch-card ul li {
  color: #444;
  margin-bottom: 12px;
  line-height: 1.7;
}

.source-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.source-tags span {
  padding: 6px 12px;
  font-size: 12px;
}

.arch-card:not(:last-child)::after {
  content: "➜";
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  color: #0066ff;
  z-index: 10;
}

.outcomes-title {
  text-align: center;
  margin-top: 100px;
  margin-bottom: 50px;
}

.outcomes-title h2 {
  font-size: 42px;
  color: #0056d6;
  text-transform: uppercase;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.outcome-card {
  background: #fff;
  border-radius: 24px;
  padding: 35px;
  text-align: center;
  border: 1px solid #dce9f6;
  box-shadow: 0 10px 30px rgba(0, 102, 255, .08);
  transition: .4s;
}

.outcome-card:hover {
  transform: translateY(-10px);
}

.outcome-number {
  font-size: 60px;
  font-weight: 800;
  background: linear-gradient(135deg, #0066ff, #00b7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.outcome-card h3 {
  color: #0a2c72;
  margin: 15px 0;
  font-size: 24px;
}

.outcome-card p {
  color: #555;
  line-height: 1.8;
}

.boss-framework {
  padding: 100px 0;
  background: #f8fbff;
  overflow: hidden;
}

.container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
}

.boss-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 70px;
}

.boss-content {
  flex: 1;
}

.boss-content h2 {
  font-size: 4rem;
  font-weight: 800;
  color: #0a2b68;
  margin-bottom: 15px;
  line-height: 1.1;
}

.boss-content h2 span {
  color: #ff7b00;
}

.boss-content h3 {
  font-size: 2rem;
  color: #0a2b68;
  margin-bottom: 20px;
}

.boss-content p {
  max-width: 550px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
}

.boss-image {
  flex: 1;
  text-align: center;
}

.boss-image img {
  width: 100%;
  max-width: 550px;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.boss-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.boss-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  border: 1px solid #dbe8ff;
  transition: 0.4s;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.boss-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.letter {
  font-size: 4rem;
  font-weight: 800;
  color: #1f6fff;
  margin-bottom: 10px;
}

.title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0a2b68;
  line-height: 1.5;
  min-height: 65px;
}

.subtitle {
  margin-top: 15px;
  color: #444;
  font-weight: 600;
  line-height: 1.6;
}

.divider {
  width: 100%;
  height: 3px;
  background: #1f6fff;
  margin: 20px 0;
  border-radius: 10px;
}

.icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #0f74ff, #00bfff);
  color: #fff;
  font-size: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.boss-card p {
  color: #555;
  line-height: 1.8;
  font-size: 0.95rem;
}

.hero-header {
  background: transparent;
  padding: 15px 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  padding: 0;
  gap: 10px;
}

.title-section h1 {
  color: #00B4FF;
  font-size: 3rem;
  font-weight: 800;
  margin: 0;
  letter-spacing: 1px;
}

.title-section h2 {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 5px;
  letter-spacing: 4px;
}

.logo-section img {
  height: 70px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo-section img:hover {
  transform: scale(1.05);
}

.nmos-logo img {
  height: 45px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1) opacity(0.9);
}

.logo-divider {
  width: 2px;
  height: 60px;
  background: #00B4FF;
  box-shadow: 0 0 10px rgba(0, 180, 255, 0.5);
}

.n3uron-logo img {
  height: 45px;
  width: auto;
  display: block;
  margin-left: 5px;
}

.section-feature-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-feature-title h2 {
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  text-transform: uppercase;
}


.section-feature-title p {
  color: #c4d0ea;
  font-size: 18px;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

.industries-section {
  padding: 100px 8%;
  background: #0b1220;
}

.industries-section .section-title h2 {
  color: #00b7ff;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 15px;
}

.industries-section .section-title p {
  color: #c4d0ea;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 25px;
  margin-top: 50px;
}

.industry-card {
  background: linear-gradient(135deg, #111a2e, #0e1729);
  padding: 35px 25px;
  text-align: center;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.industry-card:hover {
  transform: translateY(-8px);
  border-color: #00b7ff;
  box-shadow: 0 15px 35px rgba(0, 183, 255, 0.15);
}

.industry-icon {
  width: 70px;
  height: 70px;
  background: rgba(0, 183, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  color: #00b7ff;
  transition: 0.3s;
}

.industry-card:hover .industry-icon {
  background: #00b7ff;
  color: #fff;
  transform: scale(1.1);
}

.industry-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 1px;
}

.testimonials-section {
  padding: 100px 8%;
  background: #0a1020;
}

.testimonials-section .section-title h2 {
  color: #00b7ff;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 15px;
}

.testimonials-section .section-title p {
  color: #c4d0ea;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.testimonial-card {
  background: linear-gradient(135deg, #111a2e, #0e1729);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  transition: 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: #00b7ff;
  box-shadow: 0 15px 35px rgba(0, 183, 255, 0.1);
}

.quote-icon {
  font-size: 48px;
  color: #00b7ff;
  opacity: 0.3;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 20px;
  line-height: 1.6;
  color: #e0e8ff;
  margin-bottom: 30px;
  font-style: italic;
}

.testimonial-author h4 {
  font-size: 18px;
  color: #00b7ff;
  margin-bottom: 5px;
}

.testimonial-author p {
  font-size: 14px;
  color: #8a9bc8;
}

.trust-badge {
  background: linear-gradient(135deg, #00b7ff, #0066ff);
  border-radius: 30px;
  padding: 60px 50px;
  text-align: center;
  margin-top: 40px;
}

.trust-content h2 {
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.trust-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #e9f3ff;
  max-width: 800px;
  margin: 0 auto;
}


/* ==========================================================================
   CONSOLIDATED MOBILE & TABLET MEDIA QUERIES
   ========================================================================== */

/* Tablet & Smaller Laptops */
@media (max-width: 1200px) {
  .architecture-flow {
    grid-template-columns: 1fr;
    gap: 40px;
    justify-items: center;
  }
  .arch-card {
    max-width: 450px;
  }
  .arch-card:not(:last-child)::after {
    content: "↓" !important;
    right: 50% !important;
    top: auto !important;
    bottom: -35px !important;
    transform: translateX(50%) !important;
  }
  .outcomes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .boss-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet / Portrait Screens */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 160px;
  }
  .hero-text h1 {
    font-size: 42px !important;
  }
  .hero-buttons {
    justify-content: center;
  }
  .challenges-grid, .solutions-container, .hero-content {
    grid-template-columns: 1fr;
  }
  .column-header h3 {
    font-size: 22px;
  }
  .solution-card h4 {
    font-size: 20px;
  }
  .left h1 {
    font-size: 42px;
    line-height: 52px;
  }
  
  /* THE FIX: Force Logos to Stack and Line to be Horizontal */
  .header-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    gap: 4px !important;
  }
  .logo-divider {
    width: 80px !important;
    height: 2px !important;
    margin: 4px auto !important;
    background: #00B4FF !important;
  }
  .nmos-logo img, .n3uron-logo img {
    margin: 0 auto !important;
    display: block !important;
  }
  .nmos-logo img {
    height: 40px;
  }
  .n3uron-logo img {
    height: 40px;
  }

  /* INCREASE SECTION PADDING */
  .section, 
  .challenges-section, 
  .solutions-section, 
  .architecture-section, 
  .boss-framework, 
  .industries-section, 
  .testimonials-section {
    padding: 130px 5% 70px;
    width: 100% !important;
  }
}

/* ===========================
   MOBILE NAVBAR FIX
=========================== */
@media (max-width: 768px){

  .hero-header{
    padding: 8px 15px;
  }
  .hero-text h1{
      font-size: 2.5rem !important;
      line-height: 1.2;
  }

  .hero-title .subtitle{
      display:block;
      font-size: 3rem !important;
      font-weight:700;
      margin-top:20px;
      color:#ffffff;
  }

  .hero-title .brand{
      display:block;
      font-size:3rem !important;
      font-weight:800;
      color:#f7941d;
      margin-top:10px;
  }
  
    .boss-header{
    flex-direction: column;
    text-align: center;
    gap: 30px;
  

  .boss-content{
    width: 100%;
  }

  .boss-content h2{
    font-size: 3rem;
  }

  .boss-content h3{
    font-size: 2rem;
  }

  .boss-image{
    width: 100%;
    text-align: center;
  }

  .boss-image img{
    width: 60%;
    max-width: 300px;
    min-width: 220px;
    height: auto;
    margin: 0 auto;
    display: block;
  }

  .outcomes-grid{
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .outcome-card{
    width: 100%;
    padding: 25px 20px;
  }

  .outcome-number{
    font-size: 48px;
  }

  .outcome-card h3{
    font-size: 22px;
  }

  .outcome-card p{
    font-size: 15px;
    line-height: 1.6;
  }
}
.boss-content h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #0a2b68;
  margin-bottom: 15px;
  line-height: 1.1;
}

  .header-content{
    gap: 8px;
  }

  /* Reduce NMOS Logo */
  .nmos-logo img{
    height: 22px !important;
    width: auto;
  }

  /* Reduce N3uron Logo */
  .n3uron-logo img{
    height: 22px !important;
    width: auto;
  }

  .logo-divider{
    width: 60px;
    height: 2px;
    margin: 5px auto;
  }

  /* Compact Navbar */
  .navbar{
    padding: 8px 10px !important;
    min-height: auto;
  }

  .nav-links{
    gap: 8px;
    flex-wrap: wrap;
  }

  .nav-links a{
    font-size: 13px;
    padding: 3px 5px;
  }

  .btn{
    padding: 8px 14px;
    font-size: 13px;
    border-radius: 8px;
  }
   .boss-cards{
      display:grid;
      grid-template-columns: 1fr !important;
      gap:20px;
      width:100%;
  }

  .boss-card{
      width:100%;
      max-width:100%;
      padding:25px 20px;
      margin:0 auto;
  }

  .letter{
      font-size:3rem;
  }

  .title{
      font-size:1.5rem;
      min-height:auto;
  }

  .icon{
      width:75px;
      height:75px;
      font-size:2rem;
  }

  /* Reduce empty top space */
  .section,
  .challenges-section,
  .solutions-section,
  .architecture-section,
  .boss-framework,
  .industries-section,
  .testimonials-section{
    padding-top: 50px;
  }
}

/* ===========================
   EXTRA SMALL MOBILE
=========================== */
@media (max-width: 480px){
  .boss-header{
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .boss-content h2{
    font-size: 2.4rem;
    line-height: 1.1;
  }

  .boss-content h3{
    font-size: 1.8rem;
  }

  .boss-content p{
    font-size: 16px;
    line-height: 1.8;
  }

  .boss-image{
    width: 100%;
    text-align: center;
  }

  .boss-image img{
    width: 75%;
    max-width: 280px;
    min-width: 180px;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  .hero-header{
    padding: 6px 10px;
  }

  .nmos-logo img{
    height: 22px !important;
  }
  .hero-title .subtitle {
  display: block;
  margin-top: 10px;
  color: #ffffff;
  font-size: 2rem;
}
.boss-content h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #0a2b68;
  margin-bottom: 15px;
  line-height: 1.1;
}

  .outcomes-grid{
    grid-template-columns: 1fr !important;
  }

  .outcome-card{
    padding: 20px 15px;
  }

  .outcome-number{
    font-size: 42px;
  }

  .n3uron-logo img{
    height: 22px !important;
  }

  .nav-links{
    gap: 6px;
  }

  .nav-links a{
    font-size: 12px;
  }

  .btn{
    padding: 7px 12px;
    font-size: 12px;
  }
}
/* ===================================
   ARCHITECTURE OVERVIEW
=================================== */

.architecture-overview {
    padding: 40px 5% 80px;
    background: #f8fbff;
}

.architecture-overview .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.architecture-overview .section-title h2 {
    font-size: 48px;
    font-weight: 800;
    color: #0a2b68;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.architecture-overview .section-title p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.architecture-image-wrapper {
    width: 100%;
    background: #ffffff;
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border: 1px solid #dce6f5;
    overflow: hidden;
}

.architecture-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    transition: 0.4s ease;
}

.architecture-image:hover {
    transform: scale(1.02);
}

/* Tablet */
@media (max-width: 992px) {

    .architecture-overview {
        padding: 40px 5% 80px;
    }

    .architecture-overview .section-title h2 {
        font-size: 38px;
    }

    .architecture-image-wrapper {
        padding: 20px;
    }
}

/* Mobile */
@media (max-width: 768px) {

    .architecture-overview {
        padding: 40px 5% 80px;
    }

    .architecture-overview .section-title h2 {
        font-size: 30px;
    }

    .architecture-overview .section-title p {
        font-size: 15px;
    }

    .architecture-image-wrapper {
        padding: 12px;
        border-radius: 15px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {

    .architecture-overview .section-title h2 {
        font-size: 30px;
    }

    .architecture-image-wrapper {
        padding: 8px;
    }
}
.n3uron-brand{
    color:#f7941d;
}
.n3uron_brand{
    color:#f7941d;
}