* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Orbitron, Inter, Arial, sans-serif;
  background: #050b1f;
  color: #e5e7eb;
}

a { color: #00f2ff; text-decoration: none; }

.hero {
  min-height: 30vh;
  background: radial-gradient(circle at top, #0f1e4a, #020617);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 60px;
	position: relative;
}

.logo {
  font-family: Orbitron, sans-serif;
  color: #00f2ff;
}

.hero-content {
  text-align: center;
  padding-top: 150px;
}

.hero-content h2 {
  font-size: 48px;
}

.cta {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 30px;
  background: linear-gradient(90deg,#00f2ff,#00ffa2);
  color: #000;
}

.products {
  padding: 80px 60px;
  text-align: center;
}

.card {
  margin: 30px auto;
  max-width: 600px;
  padding: 30px;
  border: 1px solid rgba(0,242,255,.3);
}

footer {
  text-align: center;
  padding: 20px;
  background: #020617;
}
.hero-modern {
  min-height: 10vh;
  background: radial-gradient(circle at top, #0f1e4a, #020617);
}

.hero-modern-sub {
  min-height: 10vh;
  background: radial-gradient(circle at top, #0f1e4a, #020617);
}

.hero-text {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
}

.hero-text h2 {
  font-size: 56px;
  color: #00f2ff;
}

.cta-primary {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 36px;
  background: linear-gradient(90deg,#00f2ff,#00ffa2);
  color: #000;
  border-radius: 30px;
}

.solutions-modern {
  padding: 20px 60px;
  text-align: center;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
  gap: 30px;
}

.glass-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0,242,255,0.3);
  padding: 30px;
  transition: 0.3s;
}

.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(0,242,255,0.6);
}

.industries-modern {
  padding: 60px;
  text-align: center;
}

.industry-tags a {
  display: inline-block;
  margin: 10px;
  padding: 10px 20px;
  border: 1px solid #00f2ff;
  border-radius: 20px;
  color: #00f2ff;
}

  padding: 18px 60px;
  font-size: 14px;
  background: rgba(255,255,255,0.03);
}

.breadcrumb {
  padding: 12px 16px;          /* smaller padding on mobile */
  overflow-x: auto;            /* allow horizontal scroll */
  -webkit-overflow-scrolling: touch;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: nowrap;           /* stay in one line */
  align-items: center;
  white-space: nowrap;
  gap: 6px;
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
  font-size: 13px;             /* mobile readable */
}

.breadcrumb li::after {
  content: "›";
  margin: 0 6px;
  color: #64748b;
}

.breadcrumb li:last-child::after {
  content: "";
}

/* Hide scrollbar (clean look) */
.breadcrumb::-webkit-scrollbar {
  display: none;
}

.navbar ul {
  list-style: none;      /* removes bullets */
  margin: 0;
  padding: 0;
  display: flex;
  gap: 28px;
}

.navbar ul li {
  list-style: none;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 60px;
}

.nav-links a {
  color: #00f2ff;
  font-size: 16px;
  text-decoration: none;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #00f2ff;
  left: 0;
  bottom: -6px;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}
.logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 34px;              /* BIG logo */
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.logo-main {
  color: #00f2ff;
}

.logo-accent {
  color: #00ffa2;
  margin: 0 2px;
}

/* Optional glow for premium feel */
.logo {
  text-shadow:
    0 0 8px rgba(0,242,255,0.6),
    0 0 16px rgba(0,242,255,0.3);
}

.industries-section {
  padding: 20px 60px;
}

.industries-section h1 {
  font-size: 42px;
  margin-bottom: 12px;
}

.industries-subtext {
  max-width: 80vw;
  color: #cbd5e1;
  margin-bottom: 50px;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.industry-card {
  text-decoration: none;
  padding: 30px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(0,242,255,0.25);
  border-radius: 14px;
  transition: all 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 30px rgba(0,242,255,0.5);
  border-color: #00f2ff;
}

.industry-card h3 {
  margin-top: 16px;
  color: #00f2ff;
}

.industry-card p {
  color: #cbd5e1;
  font-size: 15px;
}

/* SVG Icon */
.icon {
  width: 42px;
  height: 42px;
  stroke: #00f2ff;
  stroke-width: 1.8;
  fill: none;
}

/* ===== Hamburger (mobile only) ===== */
.hamburger {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  margin: 5px 0;
  background: #00f2ff;
}

.page-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 16px;
}

.page-intro {
  color: #cbd5e1;
  max-width: 800px;
  margin-bottom: 40px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.feature-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(0,242,255,0.25);
  border-radius: 14px;
  padding: 28px;
}

.feature-card h3 {
  color: #00f2ff;
  margin-top: 16px;
}

.feature-card p {
  color: #cbd5e1;
  font-size: 15px;
}

.icon {
  width: 42px;
  height: 42px;
  stroke: #00f2ff;
  stroke-width: 1.8;
  fill: none;
}

.ideal-for {
  margin-top: 40px;
  font-size: 16px;
}

input, textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(0,242,255,0.3);
  border-radius: 8px;
  padding: 12px;
  color: #e5e7eb;
}

input::placeholder, textarea::placeholder {
  color: #94a3b8;
}

button.cta-primary {
  background: #00f2ff;
  color: #020617;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}


/* ===== Industries Section Mobile ===== */
@media (max-width: 768px) {
	
	.hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    right: 16px;
    margin-top: 8px;
    background: rgba(2, 6, 23, 0.98);
    border: 1px solid rgba(0,242,255,0.3);
    border-radius: 12px;
    padding: 16px 20px;
    flex-direction: column;
    gap: 14px;
    min-width: 180px;
    z-index: 1000;
  }
	
	.breadcrumb {
		display: none;
	}

  .nav-links.active {
    display: flex;
		padding: 20px;
  }

  .industries-section {
    padding: 20px 16px;      /* reduce side padding */
  }

  .industries-section h1 {
    font-size: 28px;
  }

  .industries-subtext {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .industries-grid {
    grid-template-columns: 1fr;   /* single column on mobile */
    gap: 20px;
  }

  .industry-card {
    padding: 22px;
  }

  .industry-card h3 {
    font-size: 18px;
  }

  .industry-card p {
    font-size: 14px;
  }

  .icon {
    width: 36px;
    height: 36px;
  }
	
	.navbar ul {
		display: none;
	}

  .navbar {
    padding: 16px;
  }

  .logo {
    font-size: 22px;    /* logo scales down nicely */
  }
}
