/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

body {
  background: #0f172a;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: linear-gradient(90deg, #3b82f6, #06b6d4, #9333ea);
  background-size: 400% 400%;
  animation: gradientShift 10s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.navbar .logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navbar ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar ul li a:hover {
  color: #ffde59;
}

/* Hero */
.hero {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(135deg, #1e293b, #0f172a);
}

.glow-text {
  font-size: 2.8rem;
  color: #38bdf8;
  animation: glowBreath 3s ease-in-out infinite;
}

@keyframes glowBreath {
  0%, 100% { text-shadow: 0 0 5px #38bdf8, 0 0 15px #38bdf8; }
  50% { text-shadow: 0 0 20px #06b6d4, 0 0 40px #9333ea; }
}

.hero p {
  margin: 20px 0;
  font-size: 1.2rem;
  color: #cbd5e1;
}

.btn-primary {
  background: #3b82f6;
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  animation: pulse 2.5s infinite;
}

.btn-primary:hover {
  background: #2563eb;
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(59,130,246,0.6); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(59,130,246,0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(59,130,246,0); }
}

/* Features */
.features {
  padding: 60px 20px;
  text-align: center;
}

.features h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #38bdf8;
}

.feature-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.card {
  background: #1e293b;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.4);
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  transition: transform 0.4s ease, background 0.4s ease;
}

.card:hover {
  transform: translateY(-10px) scale(1.05);
  background: linear-gradient(135deg, #3b82f6, #9333ea);
}

/* FAQ */
.faq {
  background: #111827;
  padding: 60px 20px;
}

.faq h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #38bdf8;
}

.faq-item {
  max-width: 700px;
  margin: 10px auto;
}

.faq-question {
  width: 100%;
  background: #3b82f6;
  color: #fff;
  border: none;
  padding: 15px;
  text-align: left;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #2563eb;
}

.faq-answer {
  display: none;
  padding: 15px;
  background: #1e293b;
  border-left: 3px solid #9333ea;
  margin-top: 5px;
  animation: fadeIn 0.5s ease;
}

.faq-item:hover .faq-answer {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Footer */
.footer {
  background: #0f172a;
  color: #fff;
  padding: 40px 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer h4 {
  margin-bottom: 15px;
  color: #38bdf8;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer ul li a {
  text-decoration: none;
  color: #ccc;
  transition: color 0.3s;
}

.footer ul li a:hover {
  color: #fff;
}

.footer p {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
}
