@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

html {
  scroll-behavior: smooth;
}

:root {
  --primary-gradient: linear-gradient(135deg, rgba(79, 70, 229, 0.9) 0%, rgba(236, 72, 153, 0.85) 100%);
  --hover-gradient: linear-gradient(135deg, rgba(67, 56, 202, 1) 0%, rgba(219, 39, 119, 1) 100%);
  --dark-bg: #0f172a;
  --card-bg: #ffffff;
  --text-main: #334155;
  --text-muted: #64748b;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-main);
  background-color: #f8fafc;
  overflow-x: hidden;
  padding-top: 82px;
}

@media (max-width: 991px) {
  body {
    padding-top: 80px;
  }
}

.navbar {
  background-color: rgb(16 24 47);
  padding: 1rem 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid;
}

.navbar-brand {
  font-weight: 800;
  font-size: 1.5rem;
  color: white !important;
  letter-spacing: -0.5px;
}

.nav-link {
  color: #cbd5e1 !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: white !important;
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--dark-bg);
    padding: 1rem;
    border-radius: 1rem;
    margin-top: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  .nav-link {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
}

.navbar-toggler {
  border: none;
  background: #eeeeeecc;
  color: white !important;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.btn-primary-gradient {
  background: var(--primary-gradient);
  border: none;
  color: white;
  padding: 0.7rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.btn-primary-gradient:hover {
  background: var(--hover-gradient);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(236, 72, 153, 0.4);
  color: white;
}

.btn-outline-light-custom {
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 50px;
  padding: 0.6rem 1.6rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-light-custom:hover {
  background-color: white;
  color: var(--dark-bg);
  transform: translateY(-2px);
}

.btn-primary-gradient,
.btn-outline-light-custom {
  padding: 0.6rem 1.2rem !important;
  white-space: nowrap !important;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
}

@media (max-width: 991px) {

  .btn-primary-gradient,
  .btn-outline-light-custom {
    width: 100%;
    margin-bottom: 10px;
    justify-content: center;
  }

}

.hero-section {
  background-color: var(--dark-bg);
  padding: 140px 0 140px 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: var(--primary-gradient);
  filter: blur(150px);
  opacity: 0.2;
  top: -100px;
  right: -100px;
  border-radius: 50%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: white;
}

.text-gradient {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #94a3b8;
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.1);
  border-color: #e0e7ff;
}

.icon-box-gradient {
  width: 70px;
  height: 70px;
  background: var(--primary-gradient);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: white;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 20px rgba(79, 70, 229, 0.2);
}

.step-number {
  font-size: 4rem;
  font-weight: 800;
  opacity: 0.1;
  color: var(--dark-bg);
  position: absolute;
  top: -20px;
  left: 10px;
  z-index: 0;
}

.step-card {
  position: relative;
  z-index: 1;
  padding-top: 1rem;
}

footer {
  background-color: var(--dark-bg);
  color: #94a3b8;
  padding: 5rem 0 2rem 0;
}

footer a:hover {
  color: white;
}

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

  .hero-section {
    padding-top: 120px;
  }
}

.scroll-down-btn {
  width: 40px;
  height: 60px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  color: white;
  font-size: 1.2rem;
  padding-top: 10px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

.scroll-down-btn i {
  animation: scrollBounce 2s infinite;
}

.scroll-down-btn:hover {
  border-color: rgba(236, 72, 153, 0.8);
  background: rgba(255, 255, 255, 0.1);
  color: #ec4899;
  box-shadow: 0 0 15px rgba(236, 72, 153, 0.3);
}

@keyframes scrollBounce {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateY(15px);
    opacity: 0.5;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.shadow-lg {
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
}

.form-label {
  font-weight: 600 !important;
  font-size: 0.7rem !important;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #94a3b8 !important;
  margin-bottom: 0.5rem;
}

.form-control {
  background-color: #f8fafc !important;
  border: 1px solid transparent !important;
  font-size: 0.95rem !important;
  font-weight: 500;
  color: #475569;
  padding: 0.8rem 1rem !important;
  border-radius: 12px !important;
  transition: all 0.3s ease;
}

.form-control:focus {
  background-color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
  border-color: #e2e8f0 !important;
  transform: translateY(-2px);
}

.form-control::placeholder {
  color: #cbd5e1;
  font-weight: 400;
  font-size: 0.9rem;
}

textarea.form-control {
  resize: none;
}