* {
  font-family: "Inter", sans-serif;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background-color: #050d1a;
  color: #fff;
  margin: 0;
}

/* ── Teal accent ── */
.teal {
  color: #00e5c8;
}
.bg-teal {
  background-color: #00e5c8;
}
.border-teal {
  border-color: #00e5c8;
}

/* ── Hero world-map / dark-blue gradient ── */
.hero-bg {
  height: 80vh;
  background: linear-gradient(180deg, #060f22 0%, #0a1a35 40%, #071428 100%);
  position: relative;
  overflow: hidden;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
    radial-gradient(
      ellipse 80% 50% at 50% 30%,
      rgba(0, 80, 160, 0.35) 0%,
      transparent 70%
    ),
    url("../assets/hero-banner.jpeg") center/cover no-repeat;
}

/* card glow */
.card-glow {
  background: rgba(0, 20, 50, 0.7);
  border: 1px solid rgba(0, 229, 200, 0.25);
  border-radius: 10px;
  transition: border-color 0.2s;
}
.card-glow:hover {
  border-color: rgba(0, 229, 200, 0.6);
}

/* icon circle */
.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(0, 229, 200, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 229, 200, 0.08);
  flex-shrink: 0;
}

/* section headers */
.section-title {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

/* navbar */
nav {
  background: rgba(5, 13, 26, 0.95);
  border-bottom: 1px solid rgba(0, 229, 200, 0.15);
}

/* hero badge floating cards */
.hero-badge {
  background: rgba(4, 18, 45, 0.85);
  border: 1px solid rgba(0, 229, 200, 0.3);
  border-radius: 10px;
  padding: 10px 14px;
  text-align: center;
  width: 110px;
}

/* contact form */
.form-input {
  background: rgba(0, 20, 50, 0.7);
  border: 1px solid rgba(0, 229, 200, 0.25);
  border-radius: 6px;
  color: #fff;
  padding: 10px 14px;
  width: 100%;
  font-size: 0.875rem;
  outline: none;
}
.form-input:focus {
  border-color: #00e5c8;
}
.form-input::placeholder {
  color: #fff;
}

/* industry image cards */
.industry-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(0, 229, 200, 0.2);
  cursor: pointer;
}
.industry-card img {
  width: 100%;
  height: 110px;
  object-fit: cover;
}
.industry-card .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(5, 13, 26, 0.95) 0%, transparent 100%);
  padding: 8px 10px 10px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* footer */
footer {
  background: #030b17;
  border-top: 1px solid rgba(0, 229, 200, 0.1);
}

/* glowing dot */
.dot-teal {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #00e5c8;
  box-shadow: 0 0 10px #00e5c8;
  flex-shrink: 0;
}

/* gradient button */
.btn-outline-teal {
  border: 1.5px solid #00e5c8;
  color: #00e5c8;
  border-radius: 25px;
  padding: 9px 22px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  transition: background 0.2s;
}
.btn-outline-teal:hover {
  background: rgba(0, 229, 200, 0.1);
}
.btn-solid-teal {
  background: #00e5c8;
  color: #050d1a;
  border-radius: 25px;
  padding: 9px 22px;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s;
}
.btn-solid-teal:hover {
  opacity: 0.88;
}

/* world-map section bg */
.map-section {
  background: linear-gradient(180deg, #050d1a 0%, #071a36 50%, #050d1a 100%);
  position: relative;
}

.commitment-card {
  background: rgba(0, 20, 50, 0.6);
  border: 1px solid rgba(0, 229, 200, 0.2);
  border-radius: 10px;
  padding: 18px 14px;
  text-align: center;
}

select.form-input option {
  background: #0a1a35;
}

@keyframes shine {
  0% {
    transform: translateX(-120px) rotate(12deg);
  }

  100% {
    transform: translateX(300px) rotate(12deg);
  }
}

.animate-shine {
  animation: shine 2.5s linear infinite;
}

.nav-item {
  position: relative;
  overflow: hidden;
  padding: 16px;
  margin: 0 4px;
  color: #d1d5db;
  transition: all 0.3s ease;
  cursor: pointer;
}

.nav-item:hover {
  color: white;
}

.nav-item.active {
  color: cyan;
}

.nav-item.active::before,
.nav-item.active::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 2px;
  background: #67e8f9;
  box-shadow: 0 2px 20px 3px cyan;
  animation: glowSlide 0.4s ease;
}

.nav-item.active::before {
  top: 0;
}

.nav-item.active::after {
  bottom: 0;
}

.process-track {
  position: relative;
}

.process-line {
  position: absolute;
  top: 69px;
  left: 0%;
  height: 2px;
  background: #00e5c8;
  z-index: 1;
  width: 100%;
}

.process-step {
  text-align: center;
}

.process-icon {
  width: 50px;
  height: 50px;

  margin: 0 auto;

  border-radius: 999px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #03152d;

  border: 1px solid rgba(0, 229, 200, 0.5);

  color: #00e5c8;
  font-size: 20px;

  position: relative;
  z-index: 10;

  box-shadow:
    0 0 10px rgba(0, 229, 200, 0.2),
    inset 0 0 15px rgba(0, 229, 200, 0.08);
}

.process-dot {
  width: 10px;
  height: 10px;

  margin: 15px auto;

  border-radius: 50%;

  background: #00e5c8;

  box-shadow:
    0 0 8px #00e5c8,
    0 0 16px #00e5c8;
}

.process-title {
  color: white;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;

  margin-bottom: 8px;
}

.process-text {
  color: #cbd5e1;
  font-size: 9px;
  line-height: 1.5;

  max-width: 170px;
  margin: 0 auto;
}

/* Mobile */
@media (max-width: 1024px) {
  .process-line {
    display: none;
  }
}

@keyframes glowSlide {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 72px;
    opacity: 1;
  }
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.industry-card {
  width: 100%;
  position: relative;
  height: 130px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: all 0.4s ease;
  object-fit: cover;
  border: none;
}

.industry-card h3 {
  position: absolute;
  left: 0px;
  bottom: 10px;
  z-index: 2;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  margin: 0;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }

  .industry-card {
    height: 180px;
  }
}

/* Card */
.card-glow {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(15, 25, 45, 0.9);
  border: 2px solid rgba(0, 255, 255, 0.12);
  transition: all 0.35s ease;
  box-shadow:
    0 0 1px rgba(0, 255, 255, 1),
    0 0 5px rgba(0, 255, 255, 0.9),
    0 0 5px rgba(0, 255, 255, 0.7),
    0 0 5px rgba(0, 255, 255, 0.4),
    inset 0 0 50px rgba(0, 255, 255, 0.15);
}

.contact-card {
  position: relative;
  overflow: hidden;
}

/* Top Left Corner */
.contact-card .corner-tl {
  position: absolute;
  top: 0;
  left: 0;
  height: 30px;
  background-color: transparent;
  box-shadow: -10px -10px 270px 150px cyan;
}

/* Bottom Right Corner */
.contact-card .corner-br {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 30px;
  background-color: transparent;
  box-shadow: -10px -10px 270px 150px cyan;
}

/* Neon Border Layer */
.card-glow::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;

  background: linear-gradient(
    135deg,
    rgba(0, 255, 255, 0.9),
    rgba(0, 255, 255, 0.15),
    rgba(0, 255, 255, 0.9)
  );

  opacity: 0;

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;

  transition: 0.35s ease;
}

/* Outer Glow Layer */
.card-glow::after {
  content: "";
  position: absolute;
  inset: -20px;
  background: #00ffff;
  filter: blur(30px);
  opacity: 0;
  z-index: -1;
  transition: 0.35s ease;
}

/* Hover Effect */
.card-glow:hover {
  transform: translateY(-4px);

  border-color: rgba(0, 255, 255, 0.7);

  box-shadow:
    0 0 3px rgba(0, 255, 255, 1),
    0 0 12px rgba(0, 255, 255, 0.9),
    0 0 25px rgba(0, 255, 255, 0.7),
    0 0 50px rgba(0, 255, 255, 0.4),
    inset 0 0 20px rgba(0, 255, 255, 0.15);
}

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

.card-glow:hover::after {
  opacity: 0.18;
}

/* Icon Circle */
.icon-circle {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(0, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 255, 0.15);

  transition: 0.35s ease;
}

.card-glow:hover .icon-circle {
  background: rgba(0, 255, 255, 0.12);

  box-shadow:
    0 0 8px rgba(0, 255, 255, 0.8),
    0 0 18px rgba(0, 255, 255, 0.5);
}

/* SVG Glow */
.card-glow svg {
  transition: 0.35s ease;
}

.card-glow:hover svg {
  filter: drop-shadow(0 0 5px #00ffff) drop-shadow(0 0 10px #00ffff);
}

/* Text Glow */
.card-glow:hover .font-semibold {
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.7);
}

/* subtle overlay + scrollable card (no bootstrap) */
.modal-overlay {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
}
.modal-card {
  max-height: 90vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #d1d5db #f1f3f5;
}
.modal-card::-webkit-scrollbar {
  width: 6px;
}
.modal-card::-webkit-scrollbar-track {
  background: #f1f3f5;
  border-radius: 8px;
}
.modal-card::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 8px;
}
.badge-icon {
  transition: all 0.2s;
}
.badge-icon:hover {
  transform: translateY(-2px);
  color: #1e3a8a;
}
/* radio & checkbox accent (tailwind v3) */
[type="radio"]:checked,
[type="checkbox"]:checked {
  accent-color: #2563eb;
}

.contactPop-glow {
  background: rgba(0, 20, 50, 0.7);
  border: 1px solid rgba(0, 229, 200, 0.6);
  border-radius: 10px;
}
.globe-hero-img {
  background-image: url("../assets/globeImg.jpeg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain; /* shows entire image */
  width: 100%;
  min-height: 300px; /* give the div some height */
}
