    @import url('https://fonts.googleapis.com/css2?family=Martian+Mono:wght@100..800&family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Outfit:wght@100..900&family=Public+Sans:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: Rubik, Helvetica, sans-serif;
      
    }
    :root {
      --main-color: #1c2ac4;
    }
    
    /* HERO SECTION */
    .hero-section {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 30px 8%;
      min-height: 85vh;
      background: linear-gradient(180deg, #4a2ccf 0%, #1b0b75 100%);
      color: #fff;
      border-radius: 0 0 80px 80px; /* Rounded bottom corners */
    }

    /* LEFT CONTENT */
    .hero-content {
      max-width: 550px;
      margin-top: 30px;
    }

    .hero-logo {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 40px;
    }

    .hero-logo img {
      max-width: 210px;
      margin-bottom:-25px ;
    }


    .hero-title {
      font-size: 2.5rem;
      font-weight: 700;
      line-height: 1.3;
      margin-bottom: 16px;
    }

    .hero-subtext {
      font-size: 1.1rem;
      color: #ddd;
      margin-bottom: 40px;
    }

    .hero-btn {
      background: #fff;
      color: #5b2ccf;
      font-weight: 600;
      padding: 14px 30px;
      border: none;
      border-radius: 10px;
      cursor: pointer;
      font-size: 1rem;
      transition: 0.3s;
    }

    .hero-btn:hover {
      background:var(--main-color);
      color: #fff;
    }

    /* RIGHT IMAGE */
    .hero-image img {
      width: 550px;
      max-width: 250%;
    }

    /* RESPONSIVE DESIGN */
    @media (max-width: 992px) {
      .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 20px 6%;
      }

      .hero-logo {
        justify-content: center;
      }

      .hero-content {
        max-width: 100%;
        margin-bottom: 50px;
      }

      .hero-title {
        font-size: 2rem;
      }

      .hero-image img {
        width: 300px;
      }
    }

    @media (max-width: 600px) {
      .hero-title {
        font-size: 1.7rem;
      }

      .hero-subtext {
        font-size: 1rem;
      }

      .hero-btn {
        width: 70%;
      }
    }


    /* ========= Section Wrapper ========= */
.pricing-section {
  text-align: center;
  padding: 50px 20px;
  max-width: 1200px;
  margin: auto;
}

.pricing-section h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.pricing-section p {
  color: #555;
  margin-bottom: 30px;
}

/* ========= Tabs ========= */
.plan-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.plan-toggle {
  background: #f1f1f1;
  border: none;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.plan-toggle.active {
  background: var(--main-color);
  color: white;
  box-shadow: 0 4px 12px rgba(98, 83, 189, 0.3);
}



/*-------features section-------*/
    /* Section header */
    .section-header {
      max-width: 800px;
      margin: 0 auto 30px;
      padding: 10px 15px;
    }

    .section-header h1 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #0f172a;
  text-align: center;
}


    .section-header p {
      color: #555;
    margin-bottom: 30px;
     text-align: center;
    }
    /* Features Section */
    .features-section {
      display: grid;
      grid-template-columns: 2fr 1.2fr;
      gap: 2rem;
      max-width: 1200px;
      width: 100%;
      margin: 10px auto;
      padding: 0 20px;
    }
    .features-section h3{
      font-weight: 500;
    font-size: 18px;
    text-align: center;
    color: rgb(34, 34, 34);
    }
    .features-section p{
      font-weight: 400;
    font-size: 14px;
    text-align: center;
    color: rgb(67, 67, 67);
    }

    .feature-left {
      background-color: #d6f3e8;
      border-radius: 25px;
      padding: 40px 30px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .feature-left img {
      width: 40%;
      max-width: 700px;
      border-radius: 20px;
      margin-bottom: 20px;
      /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.05); */
    }

    .feature-left h2 {
      font-size: 2rem;
      color: #0f172a;
      margin-bottom: 10px;
    }

    .feature-left p {
      color: #475569;
      font-size: 1.1rem;
    }

    .feature-right {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 1.5rem;
    }

    .feature-card {
      border-radius: 25px;
      padding: 40px 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }

    .feature-card img {
      width: 180px;
      max-width: 45%;
    }

    .feature-text {
      max-width: 50%;
    }

    .feature-text h3 {
      font-size: 1.5rem;
      color: #0f172a;
      margin-bottom: 8px;
    }

    .feature-text p {
      color: #475569;
      line-height: 1.4;
    }

    .pink {
      background-color: #fce6ea;
    }

    .gray {
      background-color: #f3f5f8;
    }

    @media (max-width: 992px) {
      .features-section {
        grid-template-columns: 1fr;
        margin: 1px auto;
      }
      .feature-left h2{
        font-size: 1.6rem;
      }

      .feature-card {
        flex-direction: column;
        text-align: center;
      }

      .feature-card img {
        margin-top: 20px;
        max-width: 200px;
      }

      .feature-text {
        max-width: 100%;
      }
        .feature-left img {
      width: 70%;
     
    }
    
      .section-header h1 {
      font-size: 1.6rem;
    font-weight: 600;
    }
    }


    /*---faq section---*/
            .faq-section {
      max-width: 1200px;
      margin: 20px auto;
      padding: 0 20px;
    }
    .faq-section h3{
      font-size: 18px;
    font-weight: 400;
    line-height: 16px;
    text-align: left;
    color: var(--main-color);
    margin-bottom: 10px;
    }
    .faq-section h2 {
      font-size: 1.8rem;
      font-weight: 600;
      margin-bottom: 30px;
    }

    .faq-item {
      border-top: 1px solid #ddd;
      padding: 20px 0;
    }

    .faq-item:last-child {
      border-bottom: 1px solid #ddd;
    }

    .faq-question {
      background: none;
      border: none;
      width: 100%;
      text-align: left;
      font-size: 1.2rem;
      font-weight: 500;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      transition: color 0.3s ease;
    }

    .faq-question:hover {
      color: var(--main-color);
    }

    .faq-icon {
      font-size: 1.4rem;
      font-weight: 600;
      transition: transform 0.3s ease;
    }

    .faq-answer {
      overflow: hidden;
      max-height: 0;
      transition: max-height 0.4s ease, padding 0.3s ease;
    }

    .faq-answer p {
      padding-top: 10px;
      color: #555;
      font-size: 0.95rem;
    }

    .faq-item.active .faq-icon {
      transform: rotate(45deg);
    }

    /* Responsive */
    @media (max-width: 600px) {
      .faq-section {
        margin: 10px auto;
      }
      .faq-section h2 {
        font-size: 1.5rem
      }
      .faq-question {
        font-size: 1rem;
      }
      .faq-answer p{
        font-size: 0.9rem;
      }
    }

    /*---testimonial section---*/
      /* === Review Section === */
  .review-section {
    padding: 60px 20px;
  }

  .review-container {
    max-width: 1150px;
    margin: auto;
    position: relative; /* anchors arrows */
  }

  .review-subtitle {
    color: var(--main-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
  }

  .review-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 50px;
  }

  /* === Slider === */
  .review-slider {
    overflow: hidden;
    position: relative;
  }

  .review-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
  }

  .review-card {
    flex: 0 0 calc(50% - 15px);
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgb(229, 229, 229);
    background-color: rgb(255, 255, 255);
    padding: 30px;
    transition: 0.3s;
  }

  .review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .review-stars {
    color: #fbbf24;
    font-size: 1.2rem;
  }

  .review-date {
    color: #666;
    font-size: 0.9rem;
    margin-left: 10px;
  }

  .review-message {
    margin: 20px 0;
    color: #333;
    font-size: 1rem;
  }

  .review-user {
    display: flex;
    align-items: center;
    margin-top: 20px;
  }

  .review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-right: 10px;
  }

  .review-user h4 {
    font-weight: 600;
  }

  .review-user p {
    color: #888;
    font-size: 0.9rem;
  }

  .review-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
  }

  .review-tag {
    background: #f4f4f4;
    padding: 8px 14px;
    border-radius: 12px;
    font-size: 0.9rem;
  }

  /* === Arrows (positioned relative to .review-container so they aren't clipped) === */
  .review-arrow {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    font-size: 1.6rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
  }

  .review-arrow:hover {
    background: #efeef0;
    color: black;
    transform: translateY(-50%) scale(1.05);
  }

  /* position using container's edges (not slider) */
  .review-container .review-arrow.left {
    left: -25px;
  }

  .review-container .review-arrow.right {
    right: -25px;
  }

  /* === Responsive === */
  @media (max-width: 1200px) {
    .review-container .review-arrow.left {
      left: -30px;
    }
    .review-container .review-arrow.right {
      right: -30px;
    }
  }

  @media (max-width: 992px) {
    .review-card {
      flex: 0 0 100%;
    }
    .review-arrow {
      width: 40px;
      height: 40px;
      font-size: 1.4rem;
    }
    /* on smaller screens keep arrows inside viewport */
    .review-container .review-arrow.left {
      left: 10px;
    }
    .review-container .review-arrow.right {
      right: 10px;
    }
  }

  @media (max-width: 600px) {
    .review-title {
      font-size: 1.6rem;
    }
    .review-card {
      padding: 20px;
    }
    .review-arrow {
      display: none;
    }
  }