* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(to right, #1c0336, #78006d);
    height: 100vh;
  }
  
  .navbar {
    padding: 20px;
    display: flex;
    justify-content: center;
  }

  .navbar-container {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 10px 30px;
    display: flex;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    justify-content: space-between;
    position: relative;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 600;
    font-size: 18px;
  }

  .logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
  }

  .nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
  }

  .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 5px;
  }

  .arrow {
    font-size: 10px;
    margin-left: 4px;
  }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .login {
    color: white;
    text-decoration: none;
    font-weight: 500;
  }

  .btn {
    padding: 8px 16px;
    border: 1px solid white;
    border-radius: 25px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
  }

  .btn:hover {
    background: white;
    color: #78006d;
  }

  .menu-toggle {
    display: none;
    font-size: 26px;
    color: white;
    cursor: pointer;
  }

  @media (max-width: 1200px) {
    .nav-links {
      display: none;
      flex-direction: column;
      background-color: rgba(0, 0, 0, 0.95);
      position: absolute;
      top: 70px;
      left: 0;
      right: 0;
      padding: 20px;
      z-index: 1000;
      border-radius: 10px;
    }

    .nav-links.active {
      display: flex;
    }

    .menu-toggle {
      display: block;
    }

    .nav-actions {
      display: none;
    }
  }
  
  
  
  /* 1 section css */
  .hero {
    text-align: center;
    padding: 60px 20px 40px;
    background: linear-gradient(to bottom right, #2b0037, #470d58);
    color: white;
  }
  
  .hero h1 {
    font-size: 2.5rem;
    line-height: 1.4;
    margin-bottom: 20px;
  }
  
  .highlight {
    background: linear-gradient(to right, #ff5f93, #f96cfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .subtext {
    margin-top: 10px;
    font-size: 1rem;
    color: #ddd;
  }
  
  /* Upload Box */
  .upload-box {
    margin: 40px auto 0;
    background-color: #35034a;
    border-radius: 20px;
    padding: 30px 20px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
    text-align: center;
  }
  
  .upload-area {
    margin-top: 20px;
    background-color: #4e1b5b;
    padding: 20px;
    border-radius: 12px;
    border: 2px dashed #aa6aff;
    transition: background 0.3s ease;
  }
  
  .upload-label {
    display: block;
    font-size: 1rem;
    cursor: pointer;
    line-height: 1.5;
  }
  
  .upload-area input[type="file"] {
    display: none;
  }
  
  #file-list {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #ddd;
    text-align: left;
    max-height: 120px;
    overflow-y: auto;
  }
  
  .upload-btn {
    margin-top: 20px;
    background: linear-gradient(to right, #ff5f93, #f96cfa);
    border: none;
    color: white;
    padding: 10px 24px;
    font-size: 1rem;
    border-radius: 30px;
    cursor: pointer;
    width: 100%;
    max-width: 240px;
  }
  
  .upload-btn:hover {
    opacity: 0.95;
  }
  
  /* Responsive for .hero */
  @media (max-width: 600px) {
    .hero h1 {
      font-size: 1.8rem;
    }
  
    .subtext {
      font-size: 0.95rem;
    }
  
    .upload-label {
      font-size: 0.95rem;
    }
  
    .upload-btn {
      font-size: 0.95rem;
      padding: 10px 18px;
    }
  }
  

/* 2 section css  */
.clients-section {
  text-align: center;
  padding: 60px 160px;
  background: #fff;
  overflow: hidden;
}

.clients-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  font-family: 'Segoe UI', sans-serif;
}

.logos-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.logos-track {
  display: flex;
  gap: 40px;
  animation: scroll 25s linear infinite;
  justify-content: center;
}

.logos-track img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: contain;
  background: white;
  padding: 15px;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.logos-track img:hover {
  transform: scale(1.1);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 1200px) {
  .logos-track {
    gap: 20px;
  }

  .logos-track img {
    width: 70px;
    height: 70px;
    padding: 10px;
  }

  .clients-section h2 {
    font-size: 1.5rem;
  }
  .clients-section {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    overflow: hidden;
  }
}

  
  /* 3 section css  */
  /* Trusted By Section */
  .client-showcase {
    background: #ffffff;
    padding: 60px 20px;
    text-align: center;
    color: #1a1a1a;
  }
  
  .client-text {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #2c2c2c;
  }
  
  .item-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }
  
  .item-card {
    width: 200px;
    text-align: center;
  }
  
  .item-card img {
    height: 50px;
    margin-bottom: 15px;
    object-fit: contain;
    transition: transform 0.3s ease;
  }
  
  .item-card img:hover {
    transform: scale(1.1);
  }
  
  .item-card p {
    font-size: 0.95rem;
    line-height: 1.4;
  }
  
  /* 4 section css  */
  /* Global Fixes */
* {
    box-sizing: border-box;
  }
  
  html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
  }
  
  /* Features Section */
  .features-section {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(to right, rgb(28, 3, 54), rgb(120, 0, 109));
    font-family: 'Segoe UI', sans-serif;
    overflow-x: hidden; /* Extra safety */
  }
  
  .features-section h2 {
    font-size: 2.4rem;
    font-weight: bold;
    margin-bottom: 60px;
    line-height: 1.4;
  }
  
  .features-section .highlight {
    background: linear-gradient(to right, #f92672, #ab47bc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  /* Feature Box */
  .feature-box {
    display: flex;
    /* flex-wrap: wrap; */
    align-items: center;
    justify-content: space-between;
    background: #fafafa;
    border-radius: 20px;
    padding: 40px 20px;
    margin: 30px auto;
    width: 100%;
    max-width: 1100px;
    box-shadow: 0 0 20px #35034a;
    gap: 30px;
    box-sizing: border-box;
  }
  
  /* Content */
  .feature-content {
    flex: 1;
    min-width: 280px;
    text-align: left;
  }
  
  .feature-tag {
    color: #ab47bc;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .feature-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #222;
  }
  
  .feature-content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
  }
  
  /* CTA Button */
  .cta-btn {
    background: transparent;
    border: 2px solid #f92672;
    color: #f92672;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .cta-btn span {
    font-weight: bold;
    margin-left: 10px;
  }
  
  .cta-btn:hover {
    background: #f92672;
    color: white;
  }
  
  /* Image Section */
  .feature-image {
    flex: 1;
    min-width: 280px;
    text-align: center;
  }
  
  .feature-image img {
    width: 70%;
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 0 12px rgba(0,0,0,0.1);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .feature-box {
      flex-direction: column;
      text-align: center;
      padding: 30px 15px;
    }
  
    .feature-content, .feature-image {
      text-align: center;
    }
  
    .feature-content h3 {
      font-size: 1.3rem;
    }
  
    .cta-btn {
      width: 70%;
      max-width: 300px;
    }
  }
  
  
  /* 5 section css  */
  .step-guide {
    padding: 80px 20px;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
    background-color: #fff;
  }
  
  .step-guide h2 {
    font-size: 2.4rem;
    margin-bottom: 50px;
    font-weight: 700;
  }
  
  .step-guide .highlight {
    color: #f92672;
    background: linear-gradient(to right, #f92672, #ab47bc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    justify-content: center;
  }
  
  .step-box {
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    background: #ddd;
    text-align: left;
  }
  
  .gradient-bg {
    background: linear-gradient(135deg, #d168f9, #ffb86c);
    color: #fff;
    text-align: center;
  }
  
  .step-box h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #222;
  }
  
  .step-box p.step-desc {
    font-size: 1rem;
    margin-top: 20px;
    color: #fff;
  }
  
  .step-box ul {
    list-style: none;
    padding: 0;
  }
  
  .step-box ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 1rem;
    color: #555;
  }
  
  .step-box ul li img {
    width: 20px;
    height: 20px;
  }
  
  .try-btn-container {
    margin-top: 40px;
  }
  
  .try-btn {
    background: linear-gradient(to right, #f92672, #ab47bc);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .try-btn span {
    margin-left: 10px;
    font-weight: bold;
  }
  
  .try-btn:hover {
    opacity: 0.9;
  }
  
  /* Responsive layout */
  @media (max-width: 1024px) {
    .steps-container {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 600px) {
    .steps-container {
      grid-template-columns: 1fr;
    }
  
    .step-box {
      text-align: center;
    }
  
    .step-box ul li {
      justify-content: center;
    }
  }
  
  
  /* 6 section css */
  
  .customer-testimonials {
    padding: 80px 20px;
    background: #f9f9fb;
    font-family: 'Segoe UI', sans-serif;
    overflow-x: hidden;
  }
  
  .customer-testimonials h2 {
    font-size: 2.2rem;
    text-align: center;
    font-weight: 700;
    margin-bottom: 50px;
  }
  
  .highlight-ct {
    background: linear-gradient(to right, #f92672, #ab47bc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .testimonial-wrapper-ct {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  
  .testimonial-wrapper-ct::-webkit-scrollbar {
    height: 8px;
  }
  
  .testimonial-wrapper-ct::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
  }
  
  .testimonial-card-ct {
    flex: 0 0 auto;
    scroll-snap-align: start;
    background: white;
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 30px 25px;
    width: 300px;
    min-height: 300px;
    box-shadow: 0 0 0 1px rgba(250, 0, 255, 0.1), 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, border-color 0.3s;
  }
  
  .testimonial-card-ct:hover {
    transform: translateY(-5px);
    border-color: #e19fff;
  }
  
  .user-info-ct {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
  }
  
  .user-img-ct {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .rating-ct {
    font-size: 0.9rem;
    text-align: right;
  }
  
  .testimonial-card-ct h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #222;
    margin: 15px 0 10px;
  }
  
  .testimonial-card-ct p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.5;
  }
  
  .user-name-ct {
    font-size: 0.9rem;
    color: #444;
    text-align: left;
  }
  
  .user-name-ct span {
    font-size: 0.8rem;
    color: #888;
  }
  
  
  /* 7 section css  */
 /* SECTION */
.pricing-section-dd {
  padding: 60px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.pricing-section-dd h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: white;
}

.highlight-dd {
  background: linear-gradient(to right, #f92672, #ab47bc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* TOGGLE BUTTON */
.flip-toggle-container {
  text-align: center;
  margin-bottom: 30px;
}

.stop-flip-btn {
  padding: 10px 25px;
  background-color: #f92672;
  color: white;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.stop-flip-btn:hover {
  background-color: #ab47bc;
}

/* CARD WRAPPER */
.pricing-cards-dd {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 20px;
}

/* CARD */
.flip-card {
  flex: 1 1 300px;
  max-width: 340px;
  perspective: 1000px;
  min-height: 480px;
}

.flip-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.8s;
}

.flip-card:hover .flip-inner {
  transform: rotateY(180deg);
}

/* SHARED STYLES */
.flip-front,
.flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  padding: 30px 25px;
  border-radius: 20px;
  background: white;
  border: 2px solid #f0f0f0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  overflow-y: auto;
  box-sizing: border-box;
}

/* FRONT CARD */
.flip-front h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.flip-front h3 span {
  display: block;
  font-size: 0.85rem;
  color: #888;
}

.flip-front h4 {
  font-size: 1.3rem;
  margin: 10px 0;
}

.flip-front p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 15px;
}

.start-btn-dd {
  background: linear-gradient(to right, #f92672, #ab47bc);
  color: white;
  border-radius: 30px;
  padding: 10px 20px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 15px;
  transition: background 0.3s ease;
}

.start-btn-dd:hover {
  background: linear-gradient(to right, #ab47bc, #f92672);
}

.arrow-dd {
  margin-left: 10px;
  font-size: 1.1rem;
}

.flip-front ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.flip-front ul li {
  position: relative;
  padding-left: 20px;
  margin: 8px 0;
  font-size: 0.95rem;
}

.flip-front ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #7e57c2;
}

/* BACK CARD */
.flip-back {
  background: #f92672;
  color: white;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.flip-back h4 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.flip-back p {
  font-size: 1rem;
  line-height: 1.6;
}

/* HIGHLIGHT CARD */
.flip-card.highlighted .flip-front,
.flip-card.highlighted .flip-back {
  border-color: #ff7adf;
  box-shadow: 0 0 0 1px rgba(255, 0, 200, 0.1), 0 10px 20px rgba(0, 0, 0, 0.06);
}

/* FLIP DISABLE */
.disable-flip .flip-inner {
  pointer-events: none;
  transform: none !important;
}
.flip-toggle-container {
  margin-top: 20px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .pricing-cards-dd {
    flex-direction: column;
    align-items: center;
  }

  .flip-card {
    width: 100%;
    max-width: 100%;
    min-height: auto;
  }

  .flip-inner,
  .flip-front,
  .flip-back {
    min-height: auto;
  }

  .flip-back {
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 1200px) {
  .flip-toggle-container {
    display: none;
  }
}
  
  
  /* 8 section here  */
  /* FAQ SECTION STYLING */
  .faq-dd-section {
    padding: 30px 20px;
    max-width: 1223px;
    margin: auto;
    background-color: white;
    font-family: 'Segoe UI', sans-serif;
    margin-top: 50px;
    border-radius: 30px;
  }
  
  .faq-dd-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 40px;
  }
  
  .faq-dd-bold {
    color: #000;
  }
  
  .faq-dd-gradient {
    background: linear-gradient(to right, #f92672, #9a9a9a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .faq-dd-container {
    border-top: 1px solid #ddd;
  }
  
  .faq-dd-item {
    border-bottom: 1px solid #ddd;
    padding: 20px 0;
    cursor: pointer;
  }
  
  .faq-dd-question {
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .faq-dd-toggle {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: #999;
  }
  
  .faq-dd-item.active .faq-dd-toggle {
    color: #f92672;
  }
  
  .faq-dd-answer {
    display: none;
    margin-top: 10px;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
  }
  
  .faq-dd-item.active .faq-dd-answer {
    display: block;
  }
  
  /* footer section  */
  body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
}

.footer {
  background: linear-gradient(to right, #ffffff00, #35034a);
  color: #fff;
  padding: 40px 20px;
  margin-top: 40px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

/* LEFT SECTION */
.footer-left {
  flex: 1 1 250px;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 30px;
}

.logo-wrapper img.logo {
  height: 65px;
}

.left-links > div {
  margin-bottom: 20px;
}

.title {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 4px;
}

.desc {
  color: #d3d3d3;
  font-size: 0.95rem;
}

/* RIGHT SECTION */
.footer-right {
  flex: 2 1 600px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.footer-group {
  flex: 1 1 180px;
}

.footer-group > div {
  margin-bottom: 20px;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 20px;
  }

  .footer-right {
    flex-direction: column;
  }

  .footer-group {
    flex: 1 1 auto;
  }
}

  
  