/* ===================== PREMIUM STYLE (style.css) ===================== */
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  background: #0b1220;
  color: #e6edf3;
  padding-top: 80px;
}

header {
  background: rgba(11, 18, 32, 0.95);
  position: fixed;
  top: 0;
  width: 100%;
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
}

nav a {
  color: #e6edf3;
  margin: 0 15px;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  color: #4ea1ff;
}

nav a.active {
  color: #4ea1ff;
}

.logo {
  height: 52px;
}

/* ===================== HOME HERO ===================== */
.hero {
  text-align: center;
  padding: 130px 20px 110px;
  background:
    radial-gradient(circle at top left, rgba(78, 161, 255, 0.18), transparent 35%),
    radial-gradient(circle at top right, rgba(30, 58, 138, 0.25), transparent 30%),
    linear-gradient(135deg, #071120, #10284a 55%, #0b1220);
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.hero-tag {
  color: #7fb4ff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: 58px;
  line-height: 1.1;
  margin: 0 0 10px;
  color: #ffffff;
}

.hero h2 {
  font-size: 48px;
  line-height: 1.15;
  margin: 0 0 22px;
  min-height: 58px;
}

#changing-text {
  color: #4ea1ff;
  white-space: nowrap;
  text-shadow: 0 0 18px rgba(78, 161, 255, 0.35);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.hero-subtext {
  max-width: 920px;
  margin: 0 auto 30px;
  color: #c7d6ea;
  font-size: 20px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary {
  background: #4ea1ff;
  color: #061120;
}

.btn-secondary {
  background: transparent;
  color: #e6edf3;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.text-link {
  color: #4ea1ff;
  font-weight: 600;
  text-decoration: none;
}

/* ===================== GENERAL CONTENT ===================== */
.content {
  padding: 60px 40px;
}

.content-center {
  text-align: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.card {
  background: #111a2e;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.card img {
  height: 60px;
  margin-bottom: 15px;
}

.services li {
  margin: 15px 0;
}


/* ===================== CONTACT PAGE ===================== */

.contact-intro {
  text-align: center;
}

.contact-intro h2 {
  margin-bottom: 15px;
}

.premium-contact-card {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.contact-item {
  margin-bottom: 24px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item h3 {
  color: #4ea1ff;
  margin: 0 0 10px;
  font-size: 20px;
}

.contact-item p {
  margin: 0 0 8px;
  line-height: 1.7;
}

.contact-item a {
  color: #cbd5e1;
  text-decoration: none;
}

.contact-item a:hover {
  color: #4ea1ff;
}

.contact-cta {
  text-align: center;
}

.contact-cta p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);   /* 🔥 FORCE 2 columns */
  gap: 30px;
}
/* ===================== ABOUT PAGE ===================== */
.page-hero {
  background: linear-gradient(135deg, #0b1220, #1e3a8a);
  color: #e6edf3;
  padding: 80px 20px;
  text-align: center;
}

.page-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.page-hero p {
  max-width: 850px;
  margin: 0 auto;
  color: #cbd5e1;
  line-height: 1.7;
}

.content-section {
  padding: 50px 20px;
  background: #0b1220;
}

.alt-section {
  background: #0f172a;
}

.content-card {
  background: #111a2e;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.content-card h2 {
  color: #4ea1ff;
  margin-bottom: 15px;
}

.content-card p {
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 18px;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* ===================== FOOTER ===================== */
footer {
  text-align: center;
  padding: 20px;
  background: #020617;
  color: #94a3b8;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
  .nav {
    padding: 12px 20px;
  }

  nav a {
    margin: 0 8px;
    font-size: 14px;
  }

  .logo {
    height: 42px;
  }

  .two-column {
    grid-template-columns: 1fr;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  .hero {
    padding: 110px 20px 80px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero h2 {
    font-size: 30px;
    min-height: 38px;
  }

  .hero-subtext {
    font-size: 17px;
  }

  .hero-buttons {
    gap: 12px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 260px;
    text-align: center;
  }

  .content {
    padding: 45px 20px;
  }
}

/* ===================== SOLUTIONS PAGE ===================== */

.solutions-intro {
  text-align: center;
}

.solutions-intro h2 {
  margin-bottom: 15px;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.solution-card {
  background: #111a2e;
  padding: 28px 24px;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-align: center;   /* 🔥 change */
}

.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
}

.solution-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
  filter: drop-shadow(0 0 10px rgba(78,161,255,0.3));
}

.solution-card h3 {
  color: #4ea1ff;
  margin: 0 0 12px;
  font-size: 22px;
}

.solution-card p {
  color: #cbd5e1;
  line-height: 1.7;
  margin: 0;
  font-size: 15px;
}

.solutions-cta {
  text-align: center;
}

.solutions-cta p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .solution-card {
    text-align: center;
  }
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #e6edf3;
  font-size: 30px;
  cursor: pointer;
  line-height: 1;
}

@media (max-width: 768px) {
  .nav {
    position: relative;
  }

  .menu-toggle {
    display: block;
  }

  nav {
    display: none;
    position: absolute;
    top: 72px;
    right: 20px;
    width: 220px;
    background: #111a2e;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    padding: 14px 0;
    flex-direction: column;
    align-items: flex-start;
    z-index: 1100;
  }

  nav.show {
    display: flex;
  }

  nav a {
    display: block;
    width: 100%;
    padding: 12px 20px;
    margin: 0;
    font-size: 15px;
  }

  nav a:hover {
    background: rgba(78, 161, 255, 0.08);
  }
}


/* ===================== SERVICES PAGE ===================== */

.services-intro {
  text-align: center;
}

.services-intro h2 {
  margin-bottom: 15px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.service-card {
  background: #111a2e;
  padding: 28px 24px;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
}

.service-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
  filter: drop-shadow(0 0 10px rgba(78, 161, 255, 0.3));
}

.service-card h3 {
  color: #4ea1ff;
  margin: 0 0 12px;
  font-size: 22px;
}

.service-card p {
  color: #cbd5e1;
  line-height: 1.7;
  margin: 0;
  font-size: 15px;
}

.services-cta {
  text-align: center;
}

.services-cta p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}