:root {
  --strike-darker: #0a0a0f;
  --strike-dark: #1a1a2e;
  --background: #0f0f1a;
  --card: #1a1a2e;
  --secondary: #252547;
  --primary: #ff6b35;
  --primary-foreground: #ffffff;
  --muted-foreground: #a0a0b0;
  --strike-orange: #ff6b35;
  --border: #2a2a4a;
}

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

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--background);
  color: #ffffff;
  min-height: 100vh;
  line-height: 1.6;
}

.min-h-screen {
  min-height: 100vh;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

/* Header Styles */
.header {
  background-color: var(--strike-darker);
  border-bottom: 1px solid var(--strike-orange);
  padding: 1rem 0;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
}

.logo span {
  color: var(--strike-orange);
}

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

.nav-link {
  color: var(--muted-foreground);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--strike-orange);
}

/* Hero Banner */
.hero-section {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(
    135deg,
    var(--strike-darker) 0%,
    var(--background) 50%,
    var(--strike-dark) 100%
  );
  overflow: hidden;
}

.hero-bg-effect {
  position: absolute;
  inset: 0;
  opacity: 0.2;
}

.hero-glow {
  position: absolute;
  top: 25%;
  left: 25%;
  width: 24rem;
  height: 24rem;
  background-color: var(--primary);
  border-radius: 50%;
  filter: blur(3rem);
  animation: pulseGlow 2s ease-in-out infinite;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.text-center {
  text-align: center;
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out both;
}

.text-7xl {
  font-size: 4.5rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.text-5xl {
  font-size: 3rem;
}

.md-text-6xl {
  font-size: 3.75rem;
}

@media (min-width: 768px) {
  .md-text-6xl {
    font-size: 3.75rem;
  }
}

.font-heading {
  font-family: "Rajdhani", sans-serif;
}

.font-bold {
  font-weight: 700;
}

.text-gradient {
  background: linear-gradient(90deg, var(--strike-orange), #ff9e6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-xl {
  font-size: 1.25rem;
}

.text-muted-foreground {
  color: var(--muted-foreground);
}

.mb-8 {
  margin-bottom: 2rem;
}

.hero-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-radius: 0.375rem;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  text-decoration: none;
  transition: transform 0.3s;
  animation: pulseGlow 2s ease-in-out infinite;
}

.hero-button:hover {
  transform: scale(1.05);
}

/* What You'll Learn Section */
.learn-section {
  padding: 5rem 0;
  background-color: var(--card);
}

.mb-12 {
  margin-bottom: 3rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.text-lg {
  font-size: 1.125rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.md-grid-cols-2 {
  grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 768px) {
  .md-grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .lg-grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.max-w-6xl {
  max-width: 72rem;
}

.capability-card {
  background-color: var(--secondary);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: all 0.3s;
}

.capability-card:hover {
  border-color: var(--primary);
}

.text-3xl {
  font-size: 1.875rem;
}

.text-xl {
  font-size: 1.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.text-sm {
  font-size: 0.875rem;
}

/* Project Labs Section */
.projects-section {
  padding: 5rem 0;
  background-color: var(--background);
}

.max-w-5xl {
  max-width: 64rem;
}

.gap-8 {
  gap: 2rem;
}

.project-card {
  background-color: var(--card);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 0.5rem;
  padding: 2rem;
  transition: all 0.3s;
}

.project-card:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2);
}

.flex-items-start {
  display: flex;
  align-items: flex-start;
}

.gap-4 {
  gap: 1rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.tech-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tech-tag {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  background-color: rgba(255, 107, 53, 0.2);
  color: var(--primary);
  border-radius: 0.25rem;
}

/* Course Stats */
.stats-section {
  padding: 5rem 0;
  background-color: var(--card);
}

.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .md-grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  text-align: center;
}

/* Tech Stack */
.tech-section {
  padding: 5rem 0;
  background-color: var(--background);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .tech-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.tech-item {
  background-color: var(--card);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 0.5rem;
  padding: 1rem;
  text-align: center;
  font-family: "Rajdhani", sans-serif;
  font-weight: 600;
  transition: all 0.3s;
}

.tech-item:hover {
  border-color: var(--primary);
  background: linear-gradient(90deg, var(--strike-orange), #ff9e6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background-color: var(--card);
}

.cta-card {
  background-color: var(--secondary);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 0.5rem;
  padding: 3rem;
}

.text-3xl {
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  .md-text-4xl {
    font-size: 2.25rem;
  }
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-radius: 0.375rem;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  text-decoration: none;
  transition: transform 0.3s;
  animation: pulseGlow 2s ease-in-out infinite;
}

.cta-button:hover {
  transform: scale(1.05);
}

/* Footer */
.footer {
  background-color: var(--strike-darker);
  border-top: 1px solid var(--strike-orange);
  padding: 2rem 0;
  margin-top: auto;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-text {
  color: var(--muted-foreground);
}

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

.footer-link {
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-link:hover {
  color: var(--strike-orange);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.5;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
  }
  50% {
    opacity: 0.8;
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.8),
      0 0 40px rgba(255, 107, 53, 0.4);
  }
}
