:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #3b82f6;
  --secondary: #06b6d4;
  --dark: #0f172a;
  --darker: #0b1020;
  --light: #f8fafc;
  --muted: #64748b;
  --muted-light: #94a3b8;
  --success: #10b981;
  --card-bg: rgba(255, 255, 255, 0.05);
  --card-border: rgba(255, 255, 255, 0.08);
}

* {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
  color: var(--light);
  line-height: 1.6;
}

/* Navbar */
.navbar {
  background: rgba(15, 23, 42, 0.95) !important;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--card-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.brand-gradient {
  background: linear-gradient(135deg, #60a5fa, #3b82f6, #2563eb);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  margin: 0;
  padding: 0;

}

.navbar-nav {
  gap: 0.15rem;
  flex-wrap: wrap;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding: 0.4rem 1rem;
}


.navbar-nav .nav-link {
  color: var(--muted-light);
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--light);
  background: rgba(255, 255, 255, 0.05);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: none;
  border-radius: 8px;
  font-weight: 600;
  padding: 0.4rem 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-outline-light {
  color: var(--light);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  font-weight: 500;
  padding: 0.4rem 1rem;
  transition: all 0.3s ease;
  margin-right: .5rem;
}

/* .boo-demo{
      padding: 0.4rem 1rem;
    } */



/* Hero Section */
.hero {
  padding: 180px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, rgba(37, 99, 235, 0) 70%);
  border-radius: 50%;
  z-index: -1;
}

.hero h1 {
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero p.lead {
  font-size: 1rem;
  color: rgb(139, 156, 161);
  font-weight: 500;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-badges {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--card-border);
  border-radius: 50px;
  padding: 0.3rem 1rem;
  font-size: 0.8rem;
  color: rgb(139, 156, 161);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-image {
  max-width: 100%;
  width: 100%;
  object-fit: cover;
  height: 100%;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.book-a-free-demo,
.see-roi-calculator {
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  width: fit-content;
}

.no-setup-fees {
  color: rgb(139, 156, 161);
  font-size: 0.8rem;
}

.see-apex-buybuddy{
  color: #60a5fa;
  font-size: 0.8rem;
  font-weight: 500;
  /* text-decoration: underline; */
  cursor: pointer;
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-title {
  font-weight: 700;
  font-size: clamp(1.75rem, 6vw, 3rem);
  margin-bottom: 1rem;
  text-align: center;
}
.section-main-title{
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 1rem;
    text-transform: uppercase;
}

.section-subtitle {
  color: rgb(139, 156, 161);
  font-size: 0.9rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* Cards */
.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  height: 100%;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.card-body {
  padding: 2rem;
}

/* Problem & Solution Section */
.problem-card,
.solution-card {
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.problem-card h3,
.solution-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--light);
}

.problem-list,
.solution-list {
  list-style: none;
  padding: 0;
  color: var(--light);
  flex: 1;

}

.problem-list li,
.solution-list li {
  margin-bottom: .5rem;
  border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--light);
  background: rgba(2, 81, 2, 0.179);
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.problem-list li {
  margin-bottom: 0.5rem;
  padding: 0.5em 1rem;
}

.problem-list li span,
.solution-list li span {
  font-size: .85rem;
}

.problem-card p,
.solution-card p {
  color: rgb(139, 156, 161);
  text-align: center;
  font-size: 0.8rem;

}

.badge-check {
  background: rgba(16, 185, 129, 0.15);
  color: var(--success);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 6px;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}

/* ROI Section */
.roi-section {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(11, 16, 32, 0.9) 100%);
}

.roi-card {
  text-align: center;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.roi-icon {
  font-size: 2.5rem;

}

.roi-card h5 {
  color: var(--light);
  font-weight: 700;
}

.roi-card p {
  color: var(--muted);
  font-size: 0.8rem;
}

.proasr h5 {
  /* border: 1px solid red; */
  color: white !important;
  font-weight: 600;
  font-size: 1rem;
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid var(--card-border);
}

.proasr p {
  color: white !important;
  font-weight: 400;
  font-size: 0.8rem;
  padding: 0.5rem;
  margin: 0 0 0.25rem 0;
  background: rgba(28, 120, 0, 0.1);
  border-radius: 8px;
}

/* How It Works Section */
.how-it-works-section {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(11, 16, 32, 0.9) 100%);
}



.how-it-works .row .box{
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  padding: 1.25rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 1.5rem;
}

.step-number, .roi-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(37, 248, 0, 0.1);
  color: white;
  border-radius: 8px;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.step-card h5 {
  color: white;
  text-align: center;
  font-weight: 600;
  font-size: 1.1rem;
}

#book-demo a {
  font-size: 1rem;
}

.step-card p {
  color: white !important;
  font-weight: 400;
  font-size: 0.8rem;
  padding: 0.5rem;
  margin: 0 0 0.25rem 0;
  border-radius: 8px;
  text-align: center;
}

p {
  color: white !important;
  font-weight: 400;
  font-size: 0.8rem;
}




/* Testimonials */
.testimonial-card {
  padding: 2rem;
  display: flex;
  justify-content: space-between;
}

.testimonial-card .fw-semibold {
  color: white !important;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  color: white !important;
}

.testimonial-text::before {
  content: '"';
  font-size: 3rem;
  color: var(--primary-light);
  position: absolute;
  top: -1rem;
  left: -0.5rem;
  opacity: 0.3;
}

/* Footer Styling */
.footer-section {
  background: linear-gradient(135deg, #0b1020 0%, #0f172a 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #e2e8f0;
}

.footer-main {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .brand-gradient {
  background: linear-gradient(135deg, #60a5fa, #3b82f6, #2563eb);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-description {
  color: #94a3b8;
  line-height: 1.6;
  max-width: 300px;
}

.footer-heading {
  color: #f8fafc;
  font-weight: 600;
  font-size: 1.1rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, transparent);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.7rem;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer-links a:hover {
  color: #3b82f6;
  padding-left: 8px;
}

.footer-links a::before {
  content: '▸';
  position: absolute;
  left: -12px;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-links a:hover::before {
  opacity: 1;
  left: -8px;
}

.contact-item {
  color: #cbd5e1;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-link:hover {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  transform: translateY(-2px);
  border-color: rgba(59, 130, 246, 0.3);
}

/* Newsletter Section */
.newsletter-section {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.newsletter-form .form-control {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #e2e8f0;
  border-right: none;
  border-radius: 8px 0 0 8px;
}

.newsletter-form .form-control:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: none;
  color: #e2e8f0;
}

.newsletter-form .form-control::placeholder {
  color: #64748b;
}

.newsletter-form .btn {
  border-radius: 0 8px 8px 0;
  border-left: none;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.copyright {
  color: #94a3b8;
}

.footer-legal a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #3b82f6;
}

.security-badge .badge {
  font-size: 0.75rem;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
}

.tittle {
  color: white !important;
  margin-bottom: 0.5rem;
}

.btn.btn-outline-dark {
  color: white;
  border: 1px solid var(--card-border);
  margin-bottom: 0.5rem;
}




.engage-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 30px 25px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.engage-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--glow);
  border-color: rgba(59, 130, 246, 0.5);
}

.engage-icon {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.engage-card h5 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #fff;
}

.engage-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.engage-card .note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.cta-btn {
  width: fit-content;
  margin: 0 auto;
  margin-top: 2rem;
}

.cta-btn:hover {
  background: #2563eb;
  box-shadow: 0 0 18px rgba(59, 130, 246, 0.4);
}

.text-muted strong {
  color: #fff;
}

/* Animation */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}

.fade-in-up.delay-1 {
  animation-delay: 0.2s;
}

.fade-in-up.delay-2 {
  animation-delay: 0.4s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .engage-card {
    padding: 25px 20px;
  }

  .section-title {
    font-size: 1.6rem;
  }
}


/* Responsive Design */
@media (max-width: 768px) {
  .footer-main {
    text-align: center;
  }

  .footer-description {
    max-width: 100%;
    margin: 0 auto 2rem;
  }

  .social-links {
    justify-content: center;
    margin-bottom: 2rem;
  }

  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-legal {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal .d-flex {
    margin-bottom: 1rem;
    justify-content: center;
  }

  .newsletter-section .row>div {
    text-align: center;
  }

  .newsletter-form .input-group {
    flex-direction: column;
    gap: 0.5rem;
  }

  .newsletter-form .form-control,
  .newsletter-form .btn {
    width: 100%;


    border-right: inherit;
    border-radius: 8px !important;

  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero {
    padding: 100px 0 60px;
    text-align: center;
  }

  .hero-badges {
    justify-content: center;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.75rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}






.testimonials-section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-color);
  text-align: center;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--light-text);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.testimonial-card {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 30px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-card::before {
  content: '“';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 80px;
  color: rgba(52, 152, 219, 0.807);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--dark-text);
  margin-bottom: 25px;

  /* --- Ellipsis Setup --- */
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  /* Enables multi-line truncation */
  -webkit-line-clamp: 3;
  line-clamp: 3;
  /* Number of visible lines before "..." */
  -webkit-box-orient: vertical;
  /* Required for line-clamp */

  /* Optional fixed height if you want a consistent card size */
  max-height: 4.5em;
  /* roughly 3 lines × 1.5 line-height */
  line-height: 1.5;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 3px solid var(--card-border);
}

.author-info {
  flex: 1;
}

.author-name {
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--muted-light);
  /* --- Ellipsis Setup --- */
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  /* Enables multi-line truncation */
  -webkit-line-clamp: 2;
  /* Show only 2 lines, then “...” */
  -webkit-box-orient: vertical;
  /* Required for line-clamp */

  /* Optional for consistent height */
  line-height: 1.4;
  max-height: 1.3em;
}

.author-position {
  font-size: 0.9rem;
  color: var(--muted-light);

  /* --- Ellipsis Setup --- */
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  /* Enables multi-line truncation */
  -webkit-line-clamp: 2;
  /* Show only 2 lines, then “...” */
  -webkit-box-orient: vertical;
  /* Required for line-clamp */

  /* Optional for consistent height */
  line-height: 1.4;
  max-height: 1.3em;
}


.stars {
  color: #f1c40f;
  margin-bottom: 15px;
}

.carousel-controls {
  display: flex;
  justify-content: flex-end;
  margin-top: 40px;
}

.carousel-btn {
  background: var(--secondary-color);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.carousel-btn:hover {
  background: var(--primary-color);
  transform: scale(1.05);
}

.carousel-btn i {
  font-size: 20px;
  color: white !important;

}

.carousel-indicators {
  position: relative;
  margin: 0;
  /* margin-top: -40px;
       */

}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.carousel-indicators button.active {
  background-color: var(--primary) !important;
}

.carousel-indicators button {

  background-color: #bdc3c7;
  margin: 0 5px;
  border: none;
  transition: all 0.3s ease;

}

.carousel-indicators button.active {
  background-color: var(--secondary-color);
  transform: scale(1.2);
}

.fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
}

.blockquote {
  font-size: 1rem;
}



@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    margin-bottom: 30px;
  }

  .problem-list li,
  .solution-list li .badge-check {
    text-align: center;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .problem-card,
  .solution-card,
  .card-body,
  .step-card {
    padding: 1rem;
  }

}

.carousel-control-next.carousel-btn.next,
.carousel-control-prev.carousel-btn.prev {
  margin-top: 250px;
}


@media (min-width: 1200px) {
  .fs-1 {
    font-size: 1.5rem !important;
  }
}


/* Contact Section */
.contact-section {
  padding: 80px 0;
}

.section-title {
  font-weight: 700;
  font-size: clamp(1.75rem, 6vw, 3rem);
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  color: rgb(139, 156, 161);
  font-size: 1.1rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  height: 100%;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.card-body {
  padding: 2rem;
}

.form-control {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--card-border);
  color: var(--light);
  border-radius: 8px;
  padding: 0.75rem 1rem;
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
  color: var(--light);
}

.form-control::placeholder {
  color: var(--muted-light);
}

.form-label {
  color: var(--light);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 12px;
  margin-right: 1rem;
  flex-shrink: 0;
}

.contact-info-content h5 {
  color: var(--light);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-info-content p {
  color: var(--muted-light);
  margin-bottom: 0;
}

.alert {
  border-radius: 12px;
  border: none;
}

.alert-success {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.alert-danger {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.form-control {
  background: #1A2032 !important;
}



.form-check-label,
.form-check-input,
.form-check-label a,
.adffse {
  color: white;
}

.form-check-label,
.form-check-input,
.form-check-label a
 {
  cursor: pointer;
}


.form-check-label {
  font-size: 0.8rem;
}

.adffse {
  font-weight: 700;
}


.buybuddy-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.buybuddy-section:before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(67, 97, 238, 0.05);
  z-index: 0;
}



.section-title:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 5px;
  background: var(--gradient-accent);
  border-radius: 3px;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #6c757d;
  max-width: 700px;
  margin: 0 auto 3rem;
  font-weight: 400;
}

.headline {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;

}

.ffsdffffff{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

}

.subhead {
  font-size: 1.25rem;
  color: #6c757d;
  margin-bottom: 3rem;
  max-width: 800px;
  
}

.feature-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  overflow: hidden;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
}

.feature-title {
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.how-it-works {
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin: 4rem 0;
  position: relative;
  z-index: 1;
}

/* .step-number {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
} */

.step-title {
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.outcomes-card {
 border: 1px solid rgb(255, 255, 255,0.1);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 15px 30px rgba(67, 97, 238, 0.2);
  position: relative;
  z-index: 1;
}

.outcomes-title {
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
}

.outcomes-list {
  list-style: none;
  padding: 0;
}

.outcomes-list li {
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
}

.outcomes-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4cc9f0;
  font-weight: bold;
  font-size: 1.25rem;
}

/* .cta-button {
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
} */

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(114, 9, 183, 0.4);
}

@media (max-width: 768px) {
  .headline {
    font-size: 1.75rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .how-it-works {
    padding: 2rem 1.5rem;
  }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* FAQ Section Styles */
.faq-section {
  padding: 80px 0;
  background: var(--darker);
  color: var(--light);
}

.faq-section .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq-section .section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--light);
  position: relative;
}

.faq-section .section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary-light);
  transform: translateY(-2px);
}

.faq-question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: rgba(37, 99, 235, 0.1);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--light);
  flex: 1;
}

.faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--light);
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 300;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-answer p {
  margin: 0;
  padding-bottom: 1.5rem;
  color: var(--muted-light);
  line-height: 1.6;
}

.faq-answer strong {
  color: var(--secondary);
  font-weight: 600;
}

/* Active state for FAQ items */
.faq-item.active .faq-question {
  background: rgba(37, 99, 235, 0.15);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--secondary);
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }

  .faq-section .section-title {
    font-size: 2rem;
  }

  .faq-question {
    padding: 1.25rem;
  }

  .faq-question h3 {
    font-size: 1rem;
  }

  .faq-answer {
    padding: 0 1.25rem;
  }
}

.contact-info-item{
color: white
!important;
}


.contact-info-item span{
color: white
!important;
}