html {
  scroll-behavior: smooth;
}

    /* --- General Reset --- */
    body {
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 26px;
    overflow-x: hidden;
    background-color: #ffffff;
    color: #f8faff;
    }

    /* --- Navbar --- */
    .navbar {
      background-color: #fff;
      padding: 0.8rem 1.5rem;
    }

    .navbar-brand h3 {
      font-weight: 700;
      color: #19367a;
      margin: 0;
    }

    .nav-link {
      font-weight: 500;
      color: #333333 !important;
      transition: color 0.3s ease;
    }


    /* --- Buttons --- */

    .nav-btn a:first-child {
      text-decoration: none;
      font-weight: 500;
      padding: 8px 16px;
      transition: all 0.3s ease;
      border:none;
    }

    .nav-btn a:last-child {
      text-decoration: none;
      font-weight: 500;
      padding: 8px 16px;
      background-color: #ece9f8;
        border: 1px solid rgba(70, 40, 186, 0.3);
        color: #6a55cb!important;
      border-radius: 50px;
      transition: all 0.3s ease;
    }

    .btn-login {
      color: #333333 !important;
      margin-right: 10px;
    }


    .btn-signup {
      background-color: #007bff;
      color: #4628ba;
      border: none;
    }

    .btn-signup:hover {
      background-color: #0056b3;
    }

    /* --- Mobile --- */
    @media (max-width: 992px) {
      .nav-btn {
        margin-top: 10px;
      }
    }



    /* --- Hero Section --- */
    .hero-section {
      background-color: #fff;
      min-height: 90vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      position: relative;
    }

    /* --- Dashboard Wrapper --- */
    .dashboard-image-wrapper {
      position: relative;
      display: inline-block;
      overflow: visible;
      /* ✅ allow overlay */
      padding: 0;

      z-index: 1;
    }

    .dashboard-image {
      border-radius: 12px;
      transition: transform 0.4s ease;
   
      z-index: 1;
      position: relative;
    }

    .dashboard-image:hover {
      transform: scale(1.03);
    }


    .dashboard-image-wrapper:hover {
      transform: translateY(-8px) rotate(0deg);
    }

    /* Floating animation */
    .float-animation {
      animation: float 3s ease-in-out infinite;
    }

    @keyframes float {

      0%,
      100% {
        transform: translateY(0px);
      }

      50% {
        transform: translateY(-10px);
      }
    }

    /* --- Rest of the Styles Stay the Same --- */

    .hero-title {
      position: relative;
      font-size: 2.9rem;
      color: #1e293b;
      
      line-height: 1.2;
    }

    .text-gradient {
      background: linear-gradient(90deg, #007bff, #7928ca, #00d4ff);
              padding: 10px;

      animation: gradientMove 5s infinite linear;
      background-size: 300%;
      border-radius: 50px;
    }

    @keyframes gradientMove {
      0% {
        background-position: 0% 50%;
      }

      100% {
        background-position: 200% 50%;
      }
    }

    .underline-sketch::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -8px;
      width: 180px;
      height: 6px;
      background: url('https://svgshare.com/i/12tD.svg') no-repeat center;
      background-size: contain;
      animation: drawUnderline 2s ease forwards;
    }

    @keyframes drawUnderline {
      from {
        opacity: 0;
        transform: scaleX(0);
      }

      to {
        opacity: 1;
        transform: scaleX(1);
      }
    }

    /* --- Button --- */
    .btn-get-started {
      position: relative;
      background: linear-gradient(90deg, #007bff, #7928ca, #007bff);
      background-size: 300% 100%;
      color: #fff;
      font-weight: 700;
      border: none;
      border-radius: 50px;
      padding: 15px 48px;
      box-shadow: 0 8px 25px rgba(121, 40, 202, 0.35);
      text-decoration: none;
      display: inline-block;
      font-size: 1.2rem;
      letter-spacing: 0.6px;
      transition: all 0.3s ease;
      overflow: hidden;
      animation: gradientFlow 5s linear infinite;
    }

    .btn-get-started:hover {
      transform: translateY(-4px) scale(1.03);
      box-shadow: 0 12px 40px rgba(121, 40, 202, 0.45);
    }

    @keyframes gradientFlow {
      0% {
        background-position: 0% 50%;
      }

      100% {
        background-position: 200% 50%;
      }
    }

    .shine {
      position: absolute;
      top: 0;
      left: -75px;
      width: 50px;
      height: 100%;
      background: rgba(255, 255, 255, 0.4);
      transform: skewX(-25deg);
      filter: blur(5px);
      animation: shineEffect 3s infinite linear;
    }

    @keyframes shineEffect {
      0% {
        left: -75px;
      }

      50% {
        left: 120%;
      }

      100% {
        left: 120%;
      }
    }

    .pulse-glow {
      animation: pulse 2.5s infinite;
    }

    @keyframes pulse {

      0%,
      100% {
        box-shadow: 0 0 0 0 rgba(121, 40, 202, 0.5);
      }

      50% {
        box-shadow: 0 0 20px 10px rgba(121, 40, 202, 0.2);
      }
    }

    /* --- Appear Animations --- */
    .animate-fade-in {
      animation: fadeIn 1.2s ease forwards;
      opacity: 0;
    }

    .animate-slide-up {
      animation: slideUp 1.4s ease forwards;
      opacity: 0;
    }

    .animate-zoom-in {
      animation: zoomIn 1.4s ease forwards;
      opacity: 0;
    }

    @keyframes fadeIn {
      to {
        opacity: 1;
        transform: translateY(0);
      }

      from {
        opacity: 0;
        transform: translateY(20px);
      }
    }

    @keyframes slideUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes zoomIn {
      from {
        opacity: 0;
        transform: scale(0.9);
      }

      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    @media (max-width: 768px) {
      .hero-section {
        text-align: center;
        padding-top: 80px;
      }

      .hero-title {
        font-size: 2.2rem;
      }


    }




    /* three 3 step section  */
    /* --- Steps Section --- */
    .steps-section {
      background: #f5f7ff;
      padding: 80px 0;
            min-height: 90vh;

    }

    .steps-section h2 {
      font-size: 2.5rem;
      font-weight: 700;
      color: #1e293b;
      position: relative;
      margin-bottom: 60px;
    }

    .steps-section h2::after {
      content: '';
      width: 60px;
      height: 4px;
      background: linear-gradient(90deg, #007bff, #7928ca, #00d4ff);
      display: block;
      margin: 10px auto 0;
      border-radius: 2px;
    }

    /* --- Step Cards --- */
    .step-card {
      background: #fff;
      padding: 30px 25px 40px 25px;
      border-radius: 15px;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
      text-align: center;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .step-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 25px 40px rgba(0, 0, 0, 0.12);
    }

    /* --- Step Number Circle --- */
    .step-number {
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, #007bff, #7928ca);
      color: #fff;
      font-size: 1.8rem;
      font-weight: 700;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .step-card:hover .step-number {
      transform: scale(1.2);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
    }

    .step-card h4 {
      font-size: 1.4rem;
      font-weight: 600;
      color: #1e293b;
      margin-bottom: 15px;
    }

    .step-card p {
      color: #4a5568;
      line-height: 1.6;
      font-size: 0.95rem;
    }

    /* --- Responsive --- */
    @media (max-width: 768px) {
      .steps-section {
        padding: 60px 15px;
      }

      .steps-section h2 {
        font-size: 2rem;
      }

      .step-card {
        padding: 25px 20px 35px 20px;
      }
    }


    /* FAQ */
    /* Accordion Gradient Buttons */
   .accordion-button {
    background: linear-gradient(90deg, #007bff, #7928ca);
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    margin-bottom: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }

  .accordion-button:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  }

  .accordion-button:focus {
    box-shadow: 0 0 0 0 rgba(0,0,0,0);
  }

  .accordion-button:not(.collapsed) {
    background: linear-gradient(90deg, #7928ca, #00d4ff);
    color: #fff;
  }

  .accordion-body {
    font-size: 0.95rem;
    color: #4a5568;
    background: #fff;
    border:none;
    /* border-radius: 0 0 12px 12px; */
    padding: 18px;
  }

  .accordion-item {
    transition: transform 0.3s ease;
    border: none;
  }

  .accordion-item:hover {
    transform: translateY(-2px);
  }

  .faq-area{
    background: #f5f7ff;
  }



  .faq-area h2 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 1.5rem;
  }

  .accordion{
    background: #f5f7ff;
  }

  @media (max-width: 768px) {
    .accordion-button {
      font-size: 0.95rem;
    }
    .faq-area h2 {
      font-size: 1.6rem;
    }
  }



  /* features */
  

.features-section {
  background: #f8faff;
}
.feature-card {
  color: black;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.feature-icon i {
  background: linear-gradient(90deg, #007bff, #7928ca, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.animate-slide-up {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 1s forwards;
}
@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
