    :root {
      --primary: #fc4a1a;
      --secondary: #f7b733;
      --dark: #060607;
    }
    html {
  scroll-behavior: smooth;
}
	section {
  scroll-margin-top: 80px; /* fallback if JS fails */
}

    html,
    body {
      margin: 0;
      padding: 0;
      overflow-x: hidden;
      font-family: 'Segoe UI', sans-serif;
      background-color: #fff;
      color: var(--dark);
    }

  nav {
    display: flex;
    justify-content: center;
    padding: 1rem 1rem;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 10;
   /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);*/
  }

  .nav-container {
    background: #fff;
    border-radius: 40px;
    max-width: 1100px;
    min-height: 65px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  }

  @media (max-width: 768px) {
    .nav-container {
      border-radius: 0;
      flex-direction: row;
      padding: 1rem;
    }
  }


    .logo {
      font-weight: bold;
      font-size: 1.5rem;
      color: var(--primary);
    }

    .nav-links {
      display: flex;
      gap: 1.5rem;
      align-items: center;
    }

    .nav-links a {
      text-decoration: none;
      color: var(--dark);
      font-weight: 500;
    }

    .btn-signup {
      background: var(--primary);
      color: white !important;
      padding: 0.5rem 1rem;
      border-radius: 6px;
      text-decoration: none;
      font-weight: 600;
    }
	.cta-footer-box .btn-signup {
	color:black !important;
	}
    .menu-toggle {
      display: none;
      font-size: 1.5rem;
      background: none;
      border: none;
      cursor: pointer;
      color: var(--dark);
    }

    @media (max-width: 768px) {
      .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 2rem;
        background: #fff;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        padding: 1rem;
        border-radius: 8px;
      }

      .nav-links.active {
        display: flex;
      }

      .menu-toggle {
        display: block;
      }
    }

    .hero {
      position: relative;
      text-align: center;
      padding: 4rem 2rem 0;
      background: linear-gradient(180deg, #fefefe 0%, #f9f9f9 100%);
      overflow: hidden;
    }

    .shape-box {
      position: absolute;
      width: 100px;
      height: 100px;
      opacity: 0.2;
      z-index: 0;
    }

    .shape-box.orange {
      background: var(--primary);
    }

    .shape-box.yellow {
      background: var(--secondary);
    }

    .shape-box.one {
      top: 20px;
      left: 10%;
      transform: rotate(15deg);
    }

    .shape-box.two {
      top: 80px;
      right: 15%;
      transform: rotate(-25deg);
    }

    .shape-box.three {
      bottom: 100px;
      left: 5%;
      transform: rotate(10deg);
    }

    .shape-box.four {
      bottom: 40px;
      right: 10%;
      transform: rotate(-10deg);
    }

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

    .highlight {
      display: inline-block;
      background: linear-gradient(to right, var(--primary), var(--secondary));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      font-weight: bold;
      font-size: 1.2rem;
    }

    .hero h1 {
      font-size: 2.5rem;
      max-width: 800px;
      margin: 1rem auto;
    }

    .hero p {
      max-width: 700px;
      margin: 1rem auto 2rem;
      color: #555;
      font-size: 1.1rem;
    }

    .btn-cta {
      background: var(--primary);
      color: white;
      padding: 0.75rem 1.5rem;
      border: none;
      border-radius: 6px;
      font-size: 1rem;
      cursor: pointer;
      margin-bottom: 2rem;
       text-decoration: none; /* ← important */
    }
    .btn-cta:hover {
      box-shadow: 0 4px 12px rgba(123, 123, 25, 0.3); /* Subtle glow/shadow */
    }
    .hero img {
      max-width: 100%;
      height: auto;
      margin-top: 2rem;
      border-radius: 12px;
    }

        .as-seen-in {
      text-align: center;
      padding: 3rem 1rem;
      background: #f4f6fa;
    }

    .as-seen-in h4 {
      color: #333;
      font-size: 1.2rem;
      margin-bottom: 1.5rem;
    }
    @media (max-width: 768px) {
      .as-seen-in {
        display: none; /* Hide the element on mobile screens */
      }
    }
    .media-logos {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 2rem;
    }

    .media-logos img {
      height: 40px;
      max-width: 80px;
      opacity: 0.85;
      transition: transform 0.2s ease;
    }

    .media-logos img:hover {
      transform: scale(1.1);
      opacity: 1;
    }

    .media-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem 1rem;
}

.icon-box {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 1.2rem;
  text-align: center;
  width: 110px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.icon-box:hover {
  transform: translateY(-4px);
}

.icon-box i {
  display: block;
  margin-bottom: 0.5rem;
  opacity: 0.85;
}

.icon-box p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: #333;
}

/* Optional: Add brand-specific colors */
.reddit {
  color: #FF4500;
}
.quora {
  color: #A82400;
}
.facebook {
  color: #1877F2;
}
.stackoverflow {
  color: #F48024;
}
.linkedin {
  color: #0077B5;
}

    .features-section {
      display: flex;
      flex-wrap: wrap;
      padding: 4rem 2rem;
      background: #fff;
      max-width: 1100px;
      margin: 0 auto;
    }


    .features-left {
      flex: 1;
      min-width: 320px;
      padding-right: 2rem;
    }

    .features-left h2 {
      font-size: 2rem;
      margin-bottom: 1rem;
      color: var(--dark);
    }

    .features-left p {
      color: #555;
      margin-bottom: 2rem;
    }

    .feature-box {
      background: #f3f3f3;
      padding: 1.5rem;
      border-radius: 8px;
      margin-bottom: 1rem;
      border-left: 4px solid var(--primary);
      position: relative;
      overflow: hidden;
    }

    .features-left .feature-box:nth-of-type(1)::after {
      content: '\f0f3';
    }
    .features-left .feature-box:nth-of-type(2)::after {
      content: '\f002';
    }
    .features-left .feature-box:nth-of-type(3)::after {
      content: '\f4ad';
    }
    .features-left .feature-box:nth-of-type(4)::after {
      content: '\f0e0';
    }

    .feature-box::after {
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      font-size: 5rem;
      color: var(--primary);
      opacity: 0.1;
      position: absolute;
      bottom: -10px;
      right: 10px;
      pointer-events: none;
    }

    .feature-box h4 {
      margin-bottom: 0.5rem;
      color: var(--dark);
      position: relative;
      z-index: 1;
    }

    .feature-box p {
      margin: 0;
      color: #555;
      font-size: 0.95rem;
      position: relative;
      z-index: 1;
    }

    .features-right {
      flex: 1;
      min-width: 300px;
      text-align: center;
    }

    .features-right img {
      max-width: 100%;
      border-radius: 12px;
    }

    .how-it-works {
      text-align: center;
      padding: 4rem 2rem;
      background: #f9f9f9;
    }

    .how-it-works h2 {
      font-size: 2.2rem;
      margin-bottom: 1rem;
      color: var(--dark);
    }

    .how-it-works p.subtitle {
      color: #555;
      font-size: 1.1rem;
      margin-bottom: 3rem;
    }

    .step-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      margin-bottom: 4rem;
    }

    .step-text, .step-image {
      flex: 1;
      min-width: 300px;
      padding: 1rem;
    }

    .step-text h3 {
      color: var(--primary);
      margin-bottom: 0.5rem;
    }

    .step-text h4 {
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
    }

    .step-text p {
      color: #555;
      margin-bottom: 1rem;
    }

    .step-text ul {
      list-style: disc;
      padding-left: 1.5rem;
      color: #555;
    }

    .step-image img {
      max-width: 100%;
      border-radius: 12px;
    }

    .step-row.reverse {
      flex-direction: row-reverse;
    }

    @media (max-width: 768px) {
      .features-section,
      .step-row,
      .step-row.reverse {
        flex-direction: column;
      }
      .features-left,
      .features-right {
        padding: 0;
      }
    }
  .step-text ul {
    list-style: disc;
    padding-left: 1.5rem;
    color: #555;
    text-align: left;
  }
  .step-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 1rem;
  }
    body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      color: var(--dark);
      background: #fff;
    }

    .how-it-works {
      text-align: center;
      padding: 4rem 2rem;
      background: #f9f9f9;
    }

    .how-it-works .container {
      max-width: 1100px;
      margin: 0 auto;
    }

    .how-it-works h2 {
      font-size: 2.2rem;
      margin-bottom: 1rem;
      color: var(--dark);
    }

    .how-it-works p.subtitle {
      color: #555;
      font-size: 1.1rem;
      margin-bottom: 3rem;
    }

    .step-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      margin-bottom: 4rem;
    }

    .step-text, .step-image {
      flex: 1;
      min-width: 300px;
      padding: 1rem;
    }

    .step-text h3 {
      color: var(--primary);
        margin-bottom: 0.5rem;
    }

    .step-text h4 {
      font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .step-text p {
      color: #555;
      margin-bottom: 1rem;
    }

    .step-text ul {
      list-style: none;
      padding-left: 0;
      color: #555;
      text-align: left;
    }

    .step-text ul li {
      position: relative;
      padding-left: 1.5rem;
      margin-bottom: 0.75rem;
    }

    .step-text ul li::before {
      content: '\f00c';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      color: var(--primary);
      position: absolute;
      left: 0;
      top: 0.1rem;
    }

    .step-image img {
      max-width: 100%;
      border-radius: 12px;
    }

    .step-row.reverse {
      flex-direction: row-reverse;
    }

    .step-icon {
      width: 32px;
      height: 32px;
      margin-bottom: 1rem;
    }

    @media (max-width: 768px) {
      .step-row,
      .step-row.reverse {
        flex-direction: column;
      }
    }
  .before-after {
    background: white;
    padding: 5rem 2rem;
  }

  .before-after .container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
  }

  .before-after h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark);
  }

  .before-after-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }

  .before-box, .after-box {
    flex: 1;
    min-width: 300px;
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .before-box {
    border-top: 5px solid #ccc;
  }

  .after-box {
    border-top: 5px solid var(--primary);
  }

  .before-after img.header-img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1.5rem;
  }

  .before-box h3,
  .after-box h3 {
    margin: 0 0 1rem 0;
    font-size: 1.4rem;
  }

  .before-box h3 {
    color: #888;
  }

  .after-box h3 {
    color: var(--primary);
  }

  .before-after ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
    width: 100%;
  }

  .before-after li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.2rem;
    color: #444;
    font-size: 1rem;
  }

  .before-after svg {
    width: 1.2rem;
    height: 1.2rem;
    flex-shrink: 0;
    margin-top: 3px;
  }

  @media (max-width: 768px) {
    .before-after-columns {
      flex-direction: column;
    }
  }
  .bg-icon {
  position: absolute;
  font-size: 120px;
  color: rgba(252, 74, 26, 0.08); /* soft orange glow */
  z-index: 0;
  pointer-events: none;
}

.icon-one {
  top: 20px;
  left: 10%;
 transform-origin: center;
}

.icon-two {
  top: 100px;
  right: 15%;
 transform-origin: center;
}

.icon-three {
  bottom: 120px;
  left: 8%;
  transform-origin: center;
}

.icon-four {
  bottom: 60px;
  right: 12%;
  transform-origin: center;
}
@keyframes floaty {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(10deg) scale(1.02); }
  100% { transform: rotate(0deg) scale(1); }
}

.bg-icon {
  animation: floaty 10s ease-in-out infinite;
}


.dashboard-wrapper {
  position: relative;
  display: inline-block;
  max-width: 100%;
}

.dashboard-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  filter: blur(0.5px);
  border-radius: 12px;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  background: rgba(252, 74, 26, 0.95);
  border-radius: 50%;
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(252, 74, 26, 0.4);
  transition: transform 0.3s ease;
}

.video-play-btn::before {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(252, 74, 26, 0.25);
  filter: blur(10px);
  z-index: -1;
  animation: pulse 2s infinite;
}

.video-play-btn i {
  color: #fff;
  font-size: 2rem;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.3;
  }
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
}


.hero-dashboard {
  filter: blur(1px);
  transition: filter 0.3s ease;
  border-radius: 12px;
}


.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.75);
}

.modal-content {
  position: relative;
  background-color: #000;
  margin: 5% auto;
  padding: 0;
  width: 90%;
  max-width: 800px;
  height: 450px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 18px;
  color: white;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
}

  .testimonials {
    background: #f9f9f9;
    padding: 5rem 2rem;
  }

  .testimonials .container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
  }

  .testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark);
  }

  .testimonial-cards {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .testimonial-text {
    font-size: 1rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }

  .testimonial-user {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .testimonial-user img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
  }

  .testimonial-user-info {
    text-align: left;
  }

  .testimonial-user-info h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
  }

  .testimonial-user-info p {
    margin: 0;
    font-size: 0.9rem;
    color: #777;
  }

  .testimonial-rating {
    color: #f7b733;
    margin-bottom: 0.75rem;
  }
 .pricing {
    padding: 5rem 2rem;
    background: #fff;
    text-align: center;
  }

  .pricing h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
  }

  .pricing p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
  }

  .billing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
  }

  .toggle-switch {
    position: relative;
    width: 60px;
    height: 30px;
  }

  .toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }

  .slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0;
    right: 0; bottom: 0;
    background-color: #ccc;
    border-radius: 34px;
    transition: 0.4s;
  }

  .slider::before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
  }

  .toggle-switch input:checked + .slider {
    background-color: var(--primary);
  }

  .toggle-switch input:checked + .slider:before {
    transform: translateX(30px);
  }

  .plans {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
  }

  .plan-card {
    flex: 1;
    min-width: 280px;
    max-width: 340px;
    background: #f9f9f9;
    border-radius: 12px;
    padding: 2rem;
    text-align: left;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
    position: relative;
  }

  .plan-card h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
  }

  .plan-card p.description {
    color: #555;
    margin-bottom: 1.5rem;
  }

  .plan-card .price {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--dark);
  }

  .plan-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 1.6;
  }

  .plan-card ul li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #444;
  }

  .plan-card ul li::before {
    content: "✔️";
    color: var(--secondary);
    font-size: 1rem;
  }

  .btn-plan {
    margin-top: 1.5rem;
    background: var(--primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-align: center;
    width: 100%;
    font-weight: bold;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
  }
  .faq-section {
    padding: 5rem 2rem;
    background-color: #f4f6fa;
  }

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

  .faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--dark);
  }

  .faq-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 1.2rem;
  }

  .faq-question {
    padding: 1.2rem 1.5rem;
    background: #5c6ac4;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    position: relative;
  }

  .faq-question::after {
    content: "+";
    position: absolute;
    right: 1.5rem;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
  }

  .faq-item.active .faq-question::after {
    transform: rotate(45deg);
  }

  .faq-answer {
    padding: 1rem 1.5rem;
    display: none;
    color: #444;
    background: #fff;
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .faq-item.active .faq-answer {
    display: block;
  }
  .cta-footer-box {
  position: relative;
  z-index: 2;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 16px;
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: -80px; /* push into footer */
  text-align: center;
  color: white;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

  .cta-footer-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .cta-footer-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-footer-box .btn-signup {
    background: white;
    color: var(--primary);
    padding: 0.75rem 1.5rem;
    font-weight: bold;
    font-size: 1rem;
    border-radius: 6px;
    text-decoration: none;
  }

  footer {
    padding-top: 120px;
    background-color: #060607;
    color: #ccc;
    text-align: center;
  }

  footer .footer-container {
    max-width: 1000px;
    margin: auto;
    padding: 2rem;
  }

  footer .logo {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: bold;
    margin-bottom: 0.5rem;
    display: inline-block;
  }

  footer p.description {
    max-width: 600px;
    margin: 0.5rem auto 1.5rem;
    font-size: 0.95rem;
    color: #aaa;
  }

  footer .footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1rem;
  }

  footer .footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
  }

  footer .footer-links a:hover {
    color: #fff;
  }

  footer .social-icons {
    margin-top: 1rem;
  }

  footer .social-icons a {
    color: #ccc;
    font-size: 1.2rem;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
  }

  footer .social-icons a:hover {
    color: var(--secondary);
  }

  footer .copyright {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: #777;
  }
