* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #0c051c;
  color: #fff;
}
/* ===== Navbar Styling ===== */
.navbar {
  width: 100%;
  padding: 1.5rem 2rem;
  background-color: #000;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 20px 20px;
  transition: background 0.3s ease;
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #ec08ca;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: #aaa;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #fff;
}

.nav-buttons .btn-primary {
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
}
.nav-buttons {

  display: flex;
  justify-content: flex-end;
}
/* Hamburger menu */
.hamburger {
  display: none;
  flex-direction: column;
  padding: 10px;
  cursor: pointer;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 5px 0;
  transition: all 0.3s ease;
  
}

/* Responsive Navbar */
@media (max-width: 768px) {
  .nav-links {
    display: none; /* Hide links on small screens */
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 0px;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 25px;
    padding-top: 50px;
    padding-bottom: 25px;
    border-radius: 0 0 8px 8px;
  }

  .nav-links.active {
    display: flex;
    animation: slideDown 0.3s ease forwards;
  }

  .hamburger {
    display: flex;
  }

  /* Hamburger animation to X (close) */
  .hamburger.active div:nth-child(1) {
    transform: rotate(45deg) translate(2px, 10px);
  }

  .hamburger.active div:nth-child(2) {
    opacity: 0.01;
  }

  .hamburger.active div:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -16px);
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.hero {
  display: flex;
  flex-wrap: wrap;
  padding: 5rem 4rem;
  justify-content: space-between;
  align-items: center;
  background-color: #0c051c;
}

.hero-content {
  flex: 1 1 400px;
  max-width: 600px;
}

.hero-content h1 {
  font-size: 3rem;
  line-height: 1.2;
}

.hero-content .highlight {
  color: #ec08ca;
}

.hero-content p {
  margin: 1rem 0 2rem;
  color: #aaa;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.btn-primary {
  background-color: #ec08ca;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-primary:hover {
  background-color: #ec08ca;
}

.btn-secondary {
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: 1px solid #888;
  border-radius: 30px;
  text-decoration: none;
  transition: border-color 0.3s;
}

.btn-secondary:hover {
  border-color: #ccc;
}

.hero-image {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}

.footer-logos {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 2rem;
  background-color:#0d0d0d;
  flex-wrap: wrap;
}

.footer-logos img {
  max-height: 45px;
  margin: 0.5rem 1rem;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.footer-logos img:hover {
  opacity: 1;
}
.social-icons {
  margin-top: 20px;
  display: flex;
  gap: 16px;
}

.social-icons a {
  color: #fff;
  font-size: 24px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #EA3BD3; /* StepUP brand accent or use your highlight */
}

/* Responsive tweak */
@media (max-width: 768px) {
  .social-icons {
    justify-content: flex-start;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-secondary {
    margin-top: 1rem;
  }
}
.page-wrapper {
  display: flex;
  background: linear-gradient(to right, #c5c1c9 25%, #0d0d0d 25%);
  min-height: 100vh;
  flex-direction: column;
  
}
.steps-section {
  background-color: #0c051c;
  color: #fff;
  padding: 80px 20px;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  font-weight: 700;
  margin-bottom: 10px;
}

.gradient-text {
  background: linear-gradient(90deg, #ec08ca, #6366f1);
  -webkit-background-clip:text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  text-align: center;
  font-size: 1rem;
  color: #aaa;
  max-width: 600px;
  margin: 0 auto 50px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  justify-content: center;
}
.step-card li{
  list-style-type:none;
  text-align: left;
  color: #aaa;
  font-size: 0.9rem;
  /* margin-bottom: 1rem; */
}
@media (min-width: 768px) {
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Always 3 columns */
    gap: 30px;
  }
}

.step-card {
  /* background: #1a1a1a; */
  padding: 30px;
  border: 1px solid #e0d9d9;
  border-radius: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 0 transparent;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.06);
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.15); */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
   /* border-radius: 0 0 20px 20px;
  transition: background 0.3s ease; */
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(168, 85, 247, 0.3);
}
.icon-container {
  font-size: 2.2rem;
  color: #ec08ca;
  margin-bottom: 20px;
}
.pricing-section {
    padding: 6rem 1rem;
    background-color: #0c051c;
    color: #fff;
    text-align: center;
  }
  .pricing-section .section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  .highlighted {
    color: #ec08ca;
  }
  .pricing-section .section-description {
    max-width: 600px;
    margin: 0 auto 3rem auto;
    color: #ccc;
  }
  .toggle-container {
    margin-bottom: 2rem;
  }
  .toggle-label {
    display: inline-flex;
    align-items: center;
    background: #1f1f1f;
    padding: 0.5rem 1rem;
    border-radius: 50px;
  }
  .toggle-input {
    appearance: none;
    width: 40px;
    height: 20px;
    background: #555;
    border-radius: 50px;
    margin: 0 0.5rem;
    position: relative;
    cursor: pointer;
  }
  .toggle-input:checked {
    background: #ec08ca;
  }

  .pricing-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
  .card.plan {
    background: rgba(255, 255, 255, 0.06);
    padding: 2rem;
    border: 1px solid #e0d9d9;
    border-radius: 1rem;
    width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  }
  .card.plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(176, 118, 247, 0.2);
    background-color: #ff03d9af;
  }
  .card.plan:hover .btn-outline,
  .card.plan:hover .btn-dark {
    background-color: #1b1a1a;
    color: #fff;
    border-color: #000;
  }
  .plan .price {
    font-size: 1rem;
    margin: 0.5rem 0;
  }
  .plan .subtext {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  .plan .features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
  }
  .plan .features li {
    margin-bottom: 0.5rem;
  }
  .btn-dark, .btn-outline {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  

  .btn-outline {
    background-color: #ec08ca;
    color: #fff;
    border: 1px solid #666;
  }
 
  .highlighted-plan .btn-dark {
    background: #000;
    color: #fff;
  }
  @media (max-width: 768px) {
    .pricing-cards {
      flex-direction: column;
      align-items: center;
    }
  }
  .insights-section {
    background-color: #0c051c;
    padding: 4rem 2rem;
    text-align: center;
    color: #fff;
  }
  
  .insights-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .insights-section h2 span {
    color: #ec08ca;
  }
  
  .insights-section .description {
    max-width: 700px;
    margin: 0 auto 2rem;
    color: #aaa;
  }
  
  .insights-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .insight-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid #252525;
    border-radius: 1rem;
    overflow: hidden;
    width: 300px;
    text-align: left;
    transition: transform 0.3s ease;
  }
  
  .insight-card img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .insight-card .meta {
    font-size: 0.8rem;
    color: #aaa;
    padding: 0.75rem 1rem 0;
  }
  
  .insight-card h4 {
    padding: 0.5rem 1rem 1rem;
    font-size: 1rem;
    color: #fff;
  }
  
  .read-more-btn {
    background-color: #ec08ca;
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
  }
  
  /* CTA Section */
  .cta-banner {
    /* background-color: #1e1e1e; */
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
   border-radius: 0 0 20px 20px;
  transition: background 0.3s ease;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 2rem;
  border-radius: 1rem;
  margin-top: 3rem;
  }
  
  .cta-content {
    flex: 1 1 300px;
    max-width: 600px;
  }
  
  .cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .cta-content h2 span {
    color: #ec08ca
  }
  
  .cta-content p {
    color: #ccc;
    margin-bottom: 1.5rem;
  }
  
  .cta-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .cta-form input {
    flex: 1;
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid #444;
    background-color: #0c051c;
    color: #fff;
  }
  input:hover{
    border: solid #ec08ca 1px;
    border-radius: 8px;
  }
  .cta-form button {
    padding: 0.75rem 1.5rem;
    background-color: #ec08ca;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
  }
  
  .cta-image {
    flex: 1 1 300px;
    text-align: right;
  }
  
  .cta-image img {
    max-width: 400px;
    height: 250px;
    border-radius: 1rem;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .insights-cards,
    .cta-banner {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .cta-form {
      flex-direction: column;
      width: 100%;
    }
  
    .cta-image {
      margin-top: 2rem;
      text-align: center;
    }
  }
  /* Mobile layout adjustment for #contact section */
@media (max-width: 768px) {
  .cta-banner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .cta-image {
    order: 1;
    margin-bottom: 1rem;
  }

  .cta-content {
    order: 2;
    width: 100%;
  }

  .social-icons {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    font-size: 1.4rem;
  }
}

  .insight-card{
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 0 transparent;
  }
  .insight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(168, 85, 247, 0.3);
  }
  .expect-section {
  max-width: 720px;
  margin: 100px auto;
  padding: 0 20px;
  text-align: center;
}

.expect-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 600;
}
span.expect{
  color: #ec08ca;
}
.expect-card {
  margin-bottom: 30px;
}

.card-content {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 25px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
  transition: transform 0.3s ease, opacity 0.3s ease;
  text-align: left;
}

.icon {
  font-size: 24px;
  margin-top: 5px;
}
.icon:hover{
  color: #ec08ca;
}
.card-content h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.card-content p {
  margin-top: 6px;
  font-size: 0.95rem;
  color: #ccc;
}

/* Gradient borders */
.border-yellow {
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 1px #ec08ca;
}

.border-blue {
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 1px #ec08ca;
}

.border-purple {
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 1px #ec08ca;
}
  .expect-card{
   background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 20px;
  color: white;
  margin: 20px auto;
  max-width: 600px;
  box-shadow: 0 0 20px rgba(255,255,255,0.03);
  backdrop-filter: blur(20px);
  transition: 
  transform 0.3s ease, 
  box-shadow 0.3s ease, 
  border 0.3s ease,
  background 0.5s ease;
}

/* 💡 Hover effect with gradient shift */
.expect-card:hover {
  transform: scale(1.03);

  box-shadow: 0 0 40px rgba(248, 133, 240, 0.15);
  background: linear-gradient(to top left, rgba(235, 78, 217, 0.08), rgba(100, 100, 100, 0.05));
  cursor: pointer;
}
/*faq effect*/
.faq-section {
  padding: 4rem 1rem;
  max-width: 800px;
  margin: auto;
  color: #fff;
}

.faq-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border-radius: 1rem;
  overflow: hidden;
  background: linear-gradient(135deg, #141414, #2d1f2e, #0f0f0f);
  transition: background 0.4s ease;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
}

.faq-item:hover {
  background: linear-gradient(135deg, #1f1f2e, #2d1f2e, #181818);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.2rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #fff;
}

.faq-question .chevron {
  transition: transform 0.3s ease;
  font-size: 1.2rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background: rgba(255, 255, 255, 0.02);
}

.faq-answer p {
  margin: 1rem 0;
  line-height: 1.6;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 1rem 1.5rem;
}

.faq-item.open .chevron {
  transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 600px) {
  .faq-title {
    font-size: 2rem;
  }

  .faq-question {
    font-size: 0.95rem;
  }
}
.testimonial-section {
  padding: 80px 20px;
  background: #0c051c;
  color: #fff;
  text-align: center;
}

.testimonial-heading {
  font-size: 2.5rem;
  margin-bottom: 50px;
  font-weight: bold;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 25px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 0 0 transparent;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(234, 59, 211, 0.281);
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author div {
  text-align: left;
}

.testimonial-author strong {
  font-size: 1rem;
  display: block;
}

.testimonial-author span {
  font-size: 0.875rem;
  color: #aaa;
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
@media (max-width: 768px) {
  .testimonial-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 16px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;     /* Firefox */
  }

  .testimonial-grid::-webkit-scrollbar {
    display: none;             /* Chrome/Safari */
  }

  .testimonial-card {
    flex: 0 0 85%;
    scroll-snap-align: start;
    height: auto;
    min-height: 250px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    overflow: visible;
    white-space: normal;
  }

  .testimonial-text {
    white-space: normal;
    overflow: visible;
    font-size: 1rem;
    line-height: 1.6;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 70px;
  }

  .testimonial-author img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 50%;
  }

  .testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
  }

  .testimonial-dot {
    width: 10px;
    height: 10px;
    background-color: #aaa;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .testimonial-dot.active {
    background-color: #ff0080;
  }
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.4);
  z-index: 999;
  display: none;
}

.modal-overlay.active {
  display: block;
  animation: fadeIn 0.3s ease-in-out forwards;
}

.modal-form {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 90%;
  max-width: 600px;
  background: #111;
  border-radius: 20px;
  padding: 2rem;
  transform: translate(-50%, -40%) scale(0.95);
  opacity: 0;
  z-index: 1000;
  pointer-events: none;
  transition: 0.3s ease;
  color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.modal-form.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}

.modal-form h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.modal-form p {
  margin-bottom: 1.5rem;
  color: #ccc;
}
.modal-header h2{
  color: #ec08ca;
}
.modal-form .close-btn {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  font-size: 1.5rem;
  font-weight: bold;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

.modal-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-form .form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.modal-form input,
.modal-form select,
.modal-form textarea {
  flex: 1 1 100%;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: none;
  background: #222;
  color: #fff;
  font-size: 1rem;
  outline: none;
}

.modal-form .form-row input {
  flex: 1 1 45%;
}

.modal-form textarea {
  resize: vertical;
  min-height: 100px;
}

.modal-form .submit-btn {
  background: linear-gradient(90deg, #ff00cc, #3333ff);
  color: white;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.75rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease;
}

.modal-form .submit-btn:hover {
  opacity: 0.9;
}

@keyframes fadeIn {
  from {
    backdrop-filter: blur(0px);
    background-color: rgba(0, 0, 0, 0);
  }
  to {
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.4);
  }
}

/* Mobile responsiveness */
@media (max-width: 600px) {
  .modal-form {
    padding: 1.5rem 1rem;
  }

  .modal-form h2 {
    font-size: 1.5rem;
  }

  .modal-form .form-row input {
    flex: 1 1 100%;
  }
}
