
/* ============================
   General Reset and Layout
============================ */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #0a0a23;
  color: #f0f0f0;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center; 
  padding: 1rem 2rem;
  background-color: #111;
  border-bottom: 1px solid #444;
}

.logo {
  height: 60px;
  transition: transform 0.3s ease-in-out;
}

.logo:hover {
  transform: scale(1.1);
}

.company-name {
  font-size: 1.8rem;
  color: #00f0ff;
}

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #00f0ff;
  color: #000;
  padding: 8px 16px;
  z-index: 100;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 0;
}

/* ============================
   Navigation Bar
============================ */
.navbar {
  background-color: #111;
  border-bottom: 1px solid #444;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.navbar a {
  font-weight: bold;
  color: #fff;
  transition: color 0.3s ease;
}

.navbar a:hover,
.navbar a:focus {
  color: #00f0ff;
  outline: none;
}

/* ============================
   Hero Section
============================ */
.hero {
  background: radial-gradient(circle at top, #1f1f3b, #0a0a23);
  padding: 6rem 2rem 4rem;
  text-align: center;
}

.hero h1 {
  font-size: 2.8rem;
  color: #00f0ff;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary {
  background-color: #00f0ff;
  color: #000;
  padding: 0.9rem 2rem;
  border-radius: 6px;
  font-weight: 700;
  display: inline-block;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #00c0cc;
  box-shadow: 0 0 15px #00f0ff, 0 0 30px #ff00f7;
  transform: scale(1.05);
  outline: none;
}

/* ============================
   Core Capabilities Grid
============================ */


.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* exactly 3 columns */
  gap: 1.8rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
  padding: 2rem 2rem;
}

.capability-card {
  background: #1f1f3b;
  padding: 1.8rem;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.capability-card:hover,
.capability-card:focus-within {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.25);
}

.capability-card h3 {
  color: #ff00f7;
  margin-bottom: 0.8rem;
  font-size: 1.25rem;
}

.capability-card p {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.4;
}

/* Responsive: stack cards on smaller screens */
@media (max-width: 960px) {
  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 per row on medium screens */
  }
}

@media (max-width: 640px) {
  .capabilities-grid {
    grid-template-columns: 1fr; /* 1 per row on small screens */
  }
}


/* ============================
   Packages Section
============================ */
.packages {
  background-color: #1b1b35;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
  color: #eee;
  text-align: center;
}

.packages h2 {
  color: #00f0ff;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.packages-intro {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: #ccc;
}

.packages-journey {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.package-card {
  background: #1f1f3b;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 1 1 300px;
  max-width: 350px;
  text-align: left;
  position: relative;
}

.package-card:hover,
.package-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.3);
}

.package-card h3 {
  color: #ff00f7;
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}

.package-tagline {
  font-size: 1rem;
  color: #00f0ff;
  margin-bottom: 1rem;
}

.package-pain,
.package-solution,
.package-outcome {
  margin-bottom: 0.8rem;
  line-height: 1.5;
}

.package-pain strong,
.package-solution strong,
.package-outcome strong {
  color: #00f0ff;
}

.package-features {
  list-style: disc;
  padding-left: 1.2rem;
  margin-bottom: 1rem;
  color: #ccc;
}

.package-features li {
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
  line-height: 1.4;
}

.package-target {
  font-size: 0.85rem;
  margin-top: 1rem;
  color: #ccc;
}

/* Arrows between packages */
.package-arrow {
  position: absolute;
  top: 50%;
  right: -1.5rem;
  font-size: 1.8rem;
  color: #00f0ff;
  transform: translateY(-50%);
}

.package-card:last-child .package-arrow {
  display: none;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .packages-journey {
    flex-direction: column;
    align-items: center;
  }
  
  .package-arrow {
    display: none;
  }
}

@media (max-width: 700px) {
  .capability-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================
   Industries Section
============================ */
.industries {
  background-color: #1b1b35;
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: 0 auto 4rem;
  color: #ccc;
}

.industries h2 {
  color: #00f0ff;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.industry-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
}

.industry-list li h4 {
  margin-bottom: 0.5rem;
  color: #ff00f7;
}

.industry-list li p {
  font-size: 1rem;
  line-height: 1.5;
  color: #ccc;
}

@media (min-width: 700px) {
  .industry-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================
   Footer Section
============================ */
.cta-footer {
  background-color: #111;
  text-align: center;
  padding: 3rem 2rem 4rem;
  border-top: 1px solid #444;
  color: #aaa;
}

.cta-footer h2 {
  font-size: 2rem;
  color: #00f0ff;
  margin-bottom: 1rem;
}

.cta-footer p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-footer .btn-primary {
  font-size: 1.2rem;
  padding: 1rem 3rem;
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: #111;
  border-top: 1px solid #444;
  color: #aaa;
  font-size: 0.9rem;
}
