/* Hero Section */
.hero {
  height: 100vh; /* full viewport height */
  display: flex;
  align-items: center;   /* center vertically */
  justify-content: center; /* center horizontally */
  flex-direction: column;
  text-align: center;
  background: linear-gradient(135deg, #0a0f1e, #1c1f2b);
  color: #f5f5f5;
  position: relative;
  padding: 2rem;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.company-name {
  font-size: 3.5rem;
  font-weight: 700;
  color: #00ffcc;
  text-transform: uppercase;
  text-shadow: 0 0 15px rgba(0, 255, 204, 0.7);
  margin-bottom: 1rem;
}

.tagline {
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: 300;
  color: #e0e0e0;
}

.tagline .highlight {
  color: #00e6e6;
  font-weight: 600;
}

/* Scroll Arrow */
.scroll-down {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  color: #00ffcc;
  cursor: pointer;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
  40% { transform: translate(-50%, -10px); }
  60% { transform: translate(-50%, -5px); }
}

/* Feature Cards Section */
.feature-cards {
  padding: 4rem 2rem;
  background: #101522;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: stretch; /* ensures cards are equal height */
}

.feature-card {
  background: #1a1f2f;
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* title + body + button aligned */
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(0,255,204,0.4);
}

.feature-card h2 {
  color: #00ffcc;
  margin-bottom: 1rem;
}

.feature-card p {
  color: #d1d1d1;
  flex-grow: 1; /* makes text stretch evenly across cards */
}

.coming-soon {
  opacity: 0.6;
}
