/* Remove default browser spacing to ensure consistent layouts */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Main dark theme used inthe landing page */

body {
  font-family: Inter, sans-serif;
  color: white;
  background: #080b14;
  line-height: 1.6;
}

/* Sticky navigation so important links stay in touch */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 8%;
  position: sticky;
  top: 0;
  backdrop-filter: blur(12px);
  background: rgba(8, 11, 20, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}


/* SlackyBOT text shown in the navbar , you can change valur to see*/

.logo {
  font-size: 1.3rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: #ccc;
  text-decoration: none;
}

.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background:
    radial-gradient(circle at top left, #7c3aed, transparent 35%),
    radial-gradient(circle at bottom right, #06b6d4, transparent 35%);
}

.hero-content {
  max-width: 900px;
}

.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
}

.hero h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero p {
  color: #cbd5e1;
  max-width: 700px;
  margin: auto;
}

.hero-buttons {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 0.9rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
}

.primary {
  background: linear-gradient(135deg, #7c3aed, #06b6d4);
  color: white;
}

.secondary {
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
}

.section {
  padding: 6rem 8%;
}

.section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem;
  border-radius: 20px;
}

.card h3 {
  margin-bottom: 0.8rem;
}

.command-box {
  max-width: 800px;
  margin: auto;
  background: #111827;
  border-radius: 20px;
  padding: 2rem;
  overflow: auto;
}

pre {
  color: #22c55e;
}

.install {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.step {
  width: 250px;
  text-align: center;
}

.step span {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  margin: auto auto 1rem;
  background: linear-gradient(135deg, #7c3aed, #06b6d4);
  font-size: 1.5rem;
  font-weight: bold;
}

footer {
  text-align: center;
  padding: 2rem;
  color: #94a3b8;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .nav-links {
    display: none;
  }
}

/* --- Stats Section --- */
.stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 4rem 8%;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stat {
  text-align: center;
}

.stat h2 {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #7c3aed, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat p {
  color: #94a3b8;
  font-size: 1rem;
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Architecture Section --- */
.architecture-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.architecture {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* --- Live Demonstrations Section --- */
.demo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.demo-grid img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease;
}

.demo-grid img:hover {
  transform: translateY(-5px);
}

/* --- Built With Section (Tech Stack) --- */
.tech-stack {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 2rem;
}

.tech-stack span {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #e2e8f0;
}

/* --- Call To Action (CTA) Section --- */
.cta {
  text-align: center;
  padding: 6rem 8%;
  background: radial-gradient(
    circle at center,
    rgba(124, 58, 237, 0.15),
    transparent 60%
  );
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta p {
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto 2rem auto;
}
.hero-image {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 2rem auto;
  padding: 0 15px;
}

.hero-image img {
  width: 100%;
  max-width: 1400px;
  height: auto;
  display: block;

  border-radius: 20px;

  border: 1px solid rgba(255, 255, 255, 0.08);

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);

  object-fit: contain;
}
