/* Landing Page Styles */
.hero {
  background: linear-gradient(135deg, #1e40af, #0f172a);
  color: white;
  padding: 8rem 0 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(56, 189, 248, 0.15), transparent 50%),
    radial-gradient(circle at 30% 70%, rgba(37, 99, 235, 0.15), transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  background: linear-gradient(to right, white, #bae6fd);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: #e0f2fe;
  line-height: 1.6;
}

.cta-button {
  background-color: #38bdf8;
  color: #0f172a;
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 14px 0 rgba(56, 189, 248, 0.39);
}

.cta-button:hover {
  background-color: #7dd3fc;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(56, 189, 248, 0.23);
}

/* Slider Section - Modernized */
.slider-section {
  position: relative;
  background: #000;
  border-bottom: 1px solid #1e293b;
}

.slider-container {
  height: 500px;
  position: relative;
}


.slide {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  pointer-events: none;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.slide-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 4rem 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  color: white;
  z-index: 3;
}

.slide-text h2 {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-text p {
  font-size: 1.25rem;
  max-width: 600px;
  color: #e2e8f0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.prev,
.next {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  color: white;
  padding: 1rem;
  border-radius: 50%;
  transition: all 0.2s;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.prev:hover,
.next:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}

/* Features Section */
.features {
  padding: 6rem 1rem;
  background-color: var(--background-light);
}

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

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}

.feature-box {
  background: white;
  padding: 2.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #f1f5f9;
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: #e0f2fe;
}

.feature-box h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #0f172a;
  font-weight: 700;
}

.feature-box p {
  color: #64748b;
  line-height: 1.7;
}

/* Stats Bar */
.stats-bar {
  background: white;
  border-bottom: 1px solid #e2e8f0;
  padding: 2rem 0;
  position: relative;
  z-index: 20;
}

.stats-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2563eb;
  margin: 0;
  line-height: 1;
}


/* Process Section */
.process-section {
  background: white;
  padding: 6rem 0;
}

.process-grid {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 4rem;
  text-align: center;
}

.process-step {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  position: relative;
}

.process-step .step-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  height: 80px;
  width: 80px;
  background: #f1f5f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  color: var(--primary-color);
  transition: all 0.3s;
}

.process-step:hover .step-icon {
  background: var(--primary-color);
  color: white;
  transform: scale(1.1);
}

.process-step h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  color: #0f172a;
}

.process-step p {
  color: #64748b;
  line-height: 1.6;
}


/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: white;
  padding: 5rem 1rem;
  text-align: center;
}

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

.cta-banner p {
  font-size: 1.25rem;
  color: #bfdbfe;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.cta-banner .cta-button {
  background: white;
  color: #1e40af;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.cta-banner .cta-button:hover {
  background: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

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

  .slider-container {
    height: 350px;
  }

  .slide-text h2 {
    font-size: 1.75rem;
  }
}