/* Shared Styles for All Pages */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #0f172a;
  color: #e2e8f0;
  scroll-behavior: smooth;
}

/* Navigation */
.navbar {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0;
}
.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: #38bdf8 !important;
}
.navbar-nav .nav-link {
  color: #e2e8f0 !important;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}
.navbar-nav .nav-link:hover {
  color: #38bdf8 !important;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #5b21b6, #2563eb, #0ea5e9);
  color: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.15), transparent 60%);
  mix-blend-mode: overlay;
  animation: pulse 6s ease-in-out infinite alternate;
}
@keyframes pulse {
  from { transform: scale(1); opacity: 0.9; }
  to { transform: scale(1.2); opacity: 0.7; }
}
.hero h1 {
  font-size: 3rem;
  font-weight: 700;
}
.hero p {
  font-size: 1.2rem;
  opacity: 0.95;
  max-width: 700px;
  margin: 1rem auto 2rem;
}
.btn-gradient {
  background: linear-gradient(90deg, #9333ea, #2563eb);
  border: none;
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(37,99,235,0.4);
  color: white;
}

/* Sections */
section {
  padding: 100px 0;
}
.page-header {
  padding: 120px 0 60px;
  text-align: center;
  background: linear-gradient(135deg, rgba(91, 33, 182, 0.3), rgba(37, 99, 235, 0.3));
}
.page-header h1 {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(90deg, #a855f7, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
h2.section-title {
  font-weight: 700;
  margin-bottom: 2rem;
  background: linear-gradient(90deg, #a855f7, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.3s ease;
  height: 100%;
}
.feature-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.08);
}
.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #60a5fa;
}

/* Process */
.process-step {
  background: rgba(255,255,255,0.05);
  border-left: 4px solid #3b82f6;
  border-radius: 12px;
  padding: 20px 25px;
  margin-bottom: 20px;
}

/* Testimonials */
.testimonial {
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 30px;
  margin: 15px;
  font-style: italic;
}
.testimonial span {
  display: block;
  margin-top: 15px;
  color: #60a5fa;
  font-weight: 600;
}

/* Content Pages */
.content-section {
  padding: 60px 0;
}
.content-section h2 {
  color: #60a5fa;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.content-section h3 {
  color: #94a3b8;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}
.content-section p, .content-section li {
  color: #cbd5e1;
  line-height: 1.8;
}
.content-section ul {
  padding-left: 1.5rem;
}
.content-section li {
  margin-bottom: 0.5rem;
}

/* Footer */
footer {
  background: #020617;
  color: #94a3b8;
  text-align: center;
  padding: 50px 0;
  font-size: 0.9rem;
}
footer a {
  color: #38bdf8;
  text-decoration: none;
  margin: 0 10px;
}
footer a:hover {
  text-decoration: underline;
}

.highlight {
  color: #38bdf8;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .page-header h1 {
    font-size: 2rem;
  }
}

