:root {
  --primary-color: #007bff;
  --secondary-color: #6c757d;
  --dark-bg: #212529;
  --light-bg: #f8f9fa;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--dark-bg);
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
}

/* Hero Section Styling */
.hero-section {
  background: url("https://images.unsplash.com/photo-1549926615-5b8d0034a753?q=80&w=2940&auto=format&fit=crop") no-repeat center center;
  background-size: cover;
  position: relative;
  color: white;
  padding: 10rem 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

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

.hero-cta-btn {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
/* General Section Styling */
section {
  padding: 6rem 0;
}

.section-heading {
  margin-bottom: 3rem;
  text-align: center;
}

.card {
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

/* Features Section Icons */
.feature-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Waitlist Form Styling */
.waitlist-form {
  background-color: var(--light-bg);
  padding: 3rem;
  border-radius: 10px;
}

.slider-value {
  font-weight: bold;
}

.form-label {
  font-weight: 600;
}

/* Additional Sections */
.problem-list li {
  list-style-type: none;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.problem-list li i {
  color: var(--primary-color);
  margin-right: 0.5rem;
}

/* Slick Carousel Styling */
.slick-testimonial-item {
  padding: 2rem;
  text-align: center;
}

.slick-testimonial-item img {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 1rem;
}

:root {
  --primary-color: #dc3545;
  /* Shiny Red */
  --secondary-color: #f8f9fa;
  /* Light Gray */
  --dark-bg: #212529;
  /* Black */
  --light-bg: #ffffff;
  /* White */
  --text-color: #212529;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-color);
  background-color: var(--light-bg);
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
  color: var(--dark-bg);
}

/* Navigation overrides */
.navbar.bg-dark {
  background-color: var(--dark-bg) !important;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: #c82333;
  /* Slightly darker red */
  border-color: #c82333;
}

.bg-dark {
  background-color: var(--dark-bg) !important;
}

.bg-light {
  background-color: var(--light-bg) !important;
}

.text-white .card {
  background-color: var(--dark-bg) !important;
  color: #fff;
}

/* Hero Section Styling */
.hero-section {
  background: url("https://images.unsplash.com/photo-1549926615-5b8d0034a753?q=80&w=2940&auto=format&fit=crop") no-repeat center center;
  background-size: cover;
  position: relative;
  color: white;
  padding: 10rem 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  /* Semi-transparent black overlay */
}

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

.hero-cta-btn {
  animation: pulse 2s infinite;
  transition: transform 0.3s ease;
}

.hero-cta-btn:hover {
  transform: scale(1.05);
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
/* General Section Styling */
section {
  padding: 6rem 0;
}

.section-heading {
  margin-bottom: 3rem;
  text-align: center;
}

.card {
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

/* Features Section Icons */
.feature-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.text-dark .feature-icon {
  color: var(--light-bg);
}

/* Waitlist Form Styling */
.waitlist-form {
  background-color: var(--light-bg);
  padding: 3rem;
  border-radius: 10px;
}

.slider-value {
  font-weight: bold;
  color: var(--primary-color);
}

.form-label {
  font-weight: 600;
  color: var(--dark-bg);
}

/* Additional Sections */
.problem-list li {
  list-style-type: none;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.problem-list li i {
  color: var(--primary-color);
  margin-right: 0.5rem;
}

/* Graphic Elements */
.dashboard-preview {
  padding: 4rem 0;
  background-color: #212529;
  /* Black background for contrast */
  border-radius: 15px;
}

.dashboard-preview h2 {
  color: var(--primary-color);
}/*# sourceMappingURL=style.css.map */