:root {
  --bg: #0a0e1f;
  --text: #f5f8ff;
  --accent: #6ea0ff;
  --accent2: #9bffd6;
  --muted: #9aa1b9;
}

body {
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  font-family: "Inter", sans-serif;
}

/* ===============================
   HERO SECTION
=============================== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45);
}
.hero .overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.4), #000);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.hero h1 {
  font-size: 2.5rem;
  line-height: 1.2;
}
.scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}
.scroll-indicator span {
  display: block;
  width: 3px;
  height: 20px;
  background: var(--accent);
  border-radius: 10px;
  animation: scroll 1.2s infinite ease-in-out;
}
@keyframes scroll {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(8px); opacity: 0; }
}

/* ===============================
   STATS SECTION
=============================== */
.stats {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(180deg, #0b0f25, #0a0e1f);
}
.stats h2 { font-size: 2rem; margin-bottom: 10px; }
.stats .sub { max-width: 700px; margin: 0 auto 40px; color: var(--muted); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.stat-card {
  background: #10162d;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 20px;
  border-radius: 15px;
  transition: all 0.3s ease;
}
.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(110,160,255,0.3);
}
.highlight {
  margin-top: 40px;
  background: linear-gradient(135deg, #111936, #0d142c);
  border-left: 4px solid var(--accent);
  padding: 15px 20px;
  border-radius: 10px;
}

/* ===============================
   FEATURES SECTION
=============================== */
.features {
  padding: 100px 20px;
  background: #0a0f26;
}
.features h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.feature-card {
  background: #101630;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 15px;
  text-align: center;
  padding: 25px 15px;
  transition: all 0.3s ease;
  position: relative;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 30px rgba(110,160,255,0.2);
  border-color: var(--accent);
}
.icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

/* ===============================
   INDUSTRIES SECTION
=============================== */
.industries {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(180deg, #0a0e1f, #0d132a);
}
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 15px;
  margin-top: 40px;
}
.industry-card {
  background: #101633;
  padding: 15px;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.industry-card:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #0a0e1f;
  transform: translateY(-5px);
}

/* ===============================
   TESTIMONIALS SECTION
=============================== */
.testimonials {
  background: #0b1026;
  text-align: center;
  position: relative;
  padding: 100px 20px;
}

.testimonials h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 40px;
}

.testimonial-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonial-grid {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 30px;
  max-width: 900px;
  padding: 10px;
  margin: 0 auto;
}

.testimonial-grid::-webkit-scrollbar {
  display: none;
}

.testimonial {
  background: #111735;
  border-radius: 15px;
  flex: 0 0 300px;
  text-align: left;
  padding: 25px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-5px);
  border-color: #6ea0ff;
  box-shadow: 0 0 25px rgba(110,160,255,0.25);
}

.testimonial-logo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 15px;
  border: 2px solid #6ea0ff;
  background: #0c1328;
}

.testimonial-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial p {
  color: #f5f8ff;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

.testimonial span {
  color: #9aa1b9;
  font-size: 0.9rem;
  display: block;
}

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #6ea0ff, #9bffd6);
  border: none;
  border-radius: 50%;
  color: #0b0f19;
  font-weight: 700;
  cursor: pointer;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(110,160,255,0.3);
  transition: all 0.3s ease;
  z-index: 5;
}

.scroll-btn.left { left: 10px; }
.scroll-btn.right { right: 10px; }

.scroll-btn:hover {
  transform: translateY(-50%) scale(1.1);
}

/* ===============================
   CTA SECTION
=============================== */
.cta-section {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(180deg, #0a0e1f, #101735);
  position: relative;
}
#stars {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}
.cta-section .container {
  position: relative;
  z-index: 2;
}

/* ===============================
   GLOBAL ANIMATIONS / BUTTONS
=============================== */
.fade-up, .fade-in, .pop, .reveal-up {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.8s ease;
}
.fade-up.show, .fade-in.show, .pop.show, .reveal-up.show {
  opacity: 1;
  transform: translateY(0);
}
.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #0a0e1f;
  font-weight: 700;
  border-radius: 10px;
  padding: 10px 20px;
  margin: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(155,255,214,0.4);
}
.btn-outline {
  border: 2px solid var(--accent);
  background: transparent;
  color: var(--accent);
}
