.feature-list {
  list-style: none; /* Remove default bullets */
  margin-bottom: 2rem; /* mb-8 equivalent */
  padding: 0;
}

.feature-list li {
  display: flex; /* Flex layout */
  align-items: center; /* Vertical centering */
  gap: 0.75rem; /* gap-3 */
  color: #cbd5e1; /* text-slate-300 */
  margin-bottom: 1rem; /* space-y-4 */
  font-size: 1rem;
}

.feature-list li::before {
  content: ''; /* Empty content */
  flex-shrink: 0;
  width: 1.5rem; /* w-6 */
  height: 1.5rem;
  border-radius: 50%; /* rounded-full */
  display: flex;
  align-items: center;
  justify-content: center;

  /* Outer ring with centered inner dot using radial gradient */
  background: radial-gradient(
    circle at center,
    #22d3ee 20%,
    /* Inner dot: solid cyan-400, sized ~8px (20% of 24px) */ transparent 21%,
    /* Transparent gap */ rgba(6, 182, 212, 0.2) 0 100% /* Outer ring: cyan-500/20 filling the rest */
  );
}

.dark-form-ninja {
  background: #1e293b; /* Form container */
  padding: 20px 30px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #f1f5f9; /* Light text */
  max-width: 500px;

  /* Form title styling */
  h3,
  .nf-form-title {
    color: #f1f5f9;
    font-size: 24px;
    margin-bottom: 20px;
  }

  .nf-field-container {
    margin-bottom: 0;
  }

  /* Label styling */
  .nf-field-label {
    color: #cbd5e1; /* Muted labels */
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 5px !important;
  }

  /* Input and textarea base styles */
  .nf-form-content input[type='text'],
  .nf-form-content input[type='email'],
  .nf-form-content input[type='tel'],
  .nf-form-content textarea {
    background: #334155; /* Dark inputs */
    border: 2px solid #475569;
    border-radius: 6px;
    color: #f8fafc; /* Input text */
    padding: 10px 14px;
    font-size: 16px;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 10px;

    /* Focus states */
    &:focus {
      border-color: #10b981; /* Green focus */
      background: #475569;
      outline: none;
      box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
    }
  }

  /* Textarea specific */
  .nf-form-content textarea {
    resize: vertical;
    height: 100px;
    min-height: 80px;
    max-height: 200px;
  }

  /* Submit button */
  .nf-form-content input[type='submit'] {
    background: #10b981; /* Green button */
    border: none;
    color: #ffffff;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
    width: auto;
    margin-top: 10px;

    /* Hover state */
    &:hover {
      background: #059669; /* Darker hover */
    }
  }

  /* Error styling */
  .nf-error-msg,
  .ninja-forms-req-symbol,
  .nf-field .nf-error,
  .nf-field-error .nf-field-element {
    color: #f87171 !important; /* Red errors */
    border-color: #f87171 !important;
  }

  .nf-form-fields-required {
    color: #f87171;
    margin-bottom: 10px;
    font-size: 12px;
  }

  /* Responsive media query */
  @media (max-width: 768px) {
    padding: 15px 20px;
    margin: 0 10px;

    .nf-form-content input[type='submit'] {
      width: 100%;
    }
  }
}

.nf-before-form-content {
  display: none;
}

.whatsapp-float {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.5);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;

  &:hover {
    background-color: #20ba5a;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.7);
    transform: scale(1.1);
  }

  &.above-top-btn {
    bottom: 100px; /* adjust this value to be slightly above your scroll-to-top button */
    transition: bottom 0.3s ease;
  }

  @media (max-width: 768px) {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 30px;

    svg {
      width: 26px;
      height: 26px;
    }
  }
}

@media (max-width: 768px) {
  html,
  body {
    max-width: 100% !important;
    overflow-x: hidden !important;
  }
}

.product-wrapper {
  padding: 40px 20px;
  background-color: #0f172a;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 2fr));
  gap: 20px;
  justify-items: center;
}

.product-card {
  background: #1e293b; /* Dark slate for contrast */
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  max-width: 350px;
  width: 800px;
  padding: 20px;
  border: 1px solid transparent;
}

.product-card:hover {
  /* transform: translateY(-5px); */
  /* box-shadow: 0 8px 18px rgba(6, 182, 212, 0.3); */
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.4);
  border-color: #06b6d4; /* Cyan border on hover */
}

.product-img {
  width: 100%;
  max-height: 350px;
  object-fit: conatin;
  border-radius: 12px;
  margin-bottom: 15px;
}

.product-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 10px 0;
  color: #e2e8f0; /* Light gray-blue text */
}

.product-short {
  color: #94a3b8; /* Muted text */
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.know-more-btn {
  background-color: var(--e-global-color-accent);
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;

  &:hover {
    background-color: var(--e-global-color-accent);
    transform: scaleX(1.05);

    .btn-text {
      transform: translateX(-4px);
    }

    .arrow-icon {
      transform: translateX(4px);
    }
  }

  &:focus {
    background-color: var(--e-global-color-accent);
  }
}

.btn-text {
  display: inline-block;
  transition: transform 0.3s ease;
}

.arrow-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease, margin-left 0.3s ease;
}
