/* Global Styles */
body {
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #F9F9F9;
  color: #333333;
}

.container {
  max-width: 960px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  font-size: 36px;
  font-weight: 700;
}

.animation {
  transform: translateY(20px);
  animation: fadeIn 1s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Navigation */
.navbar {
  background-color: #222222;
  padding: 20px 0;
}

.navbar-brand {
  font-size: 24px;
  font-weight: 700;
}

.nav-link {
  font-size: 18px;
  font-weight: 500;
}

/* Landing Section */
.landing {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #222222;
  color: #ffffff;
}

.landing h1 {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 20px;
}

.landing p {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 40px;
}

.btn-cta {
  font-size: 20px;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 30px;
  background-color: #ffffff;
  color: #222222;
  transition: background-color 0.3s ease;
  background-color: #f8f8f8 !important;
}

/* Features Section */
.feature {
  background-color: #f5f5f5;
  padding: 80px 0;
}

.feature-item {
  text-align: center;
  margin-bottom: 60px;
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
  color: #222222;
}

.feature-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.feature-desc {
  font-size: 18px;
}

/* About Section */
.about {
  background-color: #ffffff;
  padding: 80px 0;
}

.about-desc {
  font-size: 18px;
  text-align: center;
}

/* How It Works Section */
.how-it-works {
  background-color: #f5f5f5;
  padding: 80px 0;
}

.step {
  text-align: center;
  margin-bottom: 60px;
}

.step-icon {
  font-size: 48px;
  margin-bottom: 20px;
  color: #222222;
}

.step-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.step-desc {
  font-size: 18px;
}

/* Testimonials Section */
.testimonials {
  background-color: #ffffff;
  padding: 80px 0;
}

.testimonial {
  text-align: center;
  margin-bottom: 40px;
}

.testimonial-text {
  font-size: 18px;
  margin-bottom: 20px;
}

.testimonial-author {
  font-size: 16px;
  font-weight: 500;
}

/* Footer */
.footer {
  background-color: #222222;
  padding: 20px 0;
  color: #ffffff;
  text-align: center;
}

.footer p {
  font-size: 14px;
  margin: 0;
}

#particles-js{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 97.7vh;
}

#particles-js-canvas-el{
  opacity: 0;
  transition: opacity 0.3s ease;
}

#particles-js-canvas-el.loaded{
  opacity: 1;
}