* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  /* scroll-behavior: smooth; */
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #0b0f19;
  color: #f4f4f4;
  line-height: 1.6;
}

nav {
  background-color: #0e1523;
  padding: 20px 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.responsive-nav .logo,
nav .logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  text-decoration: unset;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav ul li a {
  color: #f4f4f4;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
  font-family: 'Poppins', sans-serif;
}

nav ul li a.active,
nav ul li a:hover {
  color: #6fffe9;
}

.video-tutorials p {
  max-width: 800px;
  margin: 0 auto;
  color: #ddd;
  font-size: 1.1rem;
  line-height: 1.6;
}

.hero {
  min-height: 500px;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  position: relative;
  overflow: hidden;
  padding: 0;
}

.hero::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="none" width="100" height="100"/><path d="M0,50 L50,0 L100,50 L50,100 Z" fill="%233f5968" opacity="0.3"/></svg>');
  background-size: 50px 50px;
  z-index: 0;
}

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 10%;
  position: relative;
  z-index: 1;
}

.hero-text {
  max-width: 600px;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  color: #6fffe9;
  line-height: 1.2;
  position: relative;
  font-family: 'Poppins', sans-serif;
}

.hero h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: #6fffe9;
  border-radius: 2px;
}

.hero h2 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 30px;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
}

.hero p {
  font-size: 1.3rem;
  color: #eee;
  margin-bottom: 30px;
}

.hero .badge {
  display: inline-block;
  background: rgba(111, 255, 233, 0.2);
  color: #6fffe9;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-bottom: 15px;
  font-family: 'Poppins', sans-serif;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.btn-primary {
  background: #6fffe9;
  color: #0b0f19;
}

.btn-primary:hover {
  background: #4be3d0;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: transparent;
  color: #6fffe9;
  border: 2px solid #6fffe9;
}

.btn-secondary:hover {
  background: rgba(111, 255, 233, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hero-image-deck {
  position: relative;
  width: 500px;
  height: 360px;
  margin-left: 30px;
}

.hero-image-deck .card {
  position: absolute;
  width: 220px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border-radius: 20px;
  box-shadow: 0 20px 30px rgba(0, 255, 200, 0.15);
}

.hero-image-deck .card:hover {
  transform: scale(1.07);
  z-index: 5;
  box-shadow: 0 30px 40px rgba(0, 255, 200, 0.25);
}

.hero-image-deck .left {
  top: 40px;
  left: 0;
  transform: rotate(-20deg);
  z-index: 1;
}

.hero-image-deck .center {
  top: 0;
  left: 140px;
  transform: rotate(0deg);
  z-index: 2;
}

.hero-image-deck .right {
  top: 40px;
  left: 280px;
  transform: rotate(20deg);
  z-index: 1;
}

/* Responsive fallback */
@media (max-width: 1024px) {
  .hero-image-deck {
    position: relative;
    width: 100%;
    height: 360px;
    margin-left: 30px;
  }

  .hero-image-deck {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    margin: 40px auto 0;
  }

  .hero-image-deck .card {
    position: static;
    margin-bottom: 20px;
    width: 38%;
    border-radius: 0;
  }
}


.section {
  padding: 100px 10%;
}

.section h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #6fffe9;
  text-align: center;
  position: relative;
  font-family: 'Poppins', sans-serif;
}

.section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #6fffe9;
  border-radius: 3px;
}

.steps,
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.steps div,
.features div {
  background-color: #141a24;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 255, 200, 0.05);
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}

.steps div::before,
.features div::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: #6fffe9;
  opacity: 0.5;
}

.steps div:hover,
.features div:hover {
  box-shadow: 0 0 20px rgba(0, 255, 200, 0.2);
  transform: translateY(-5px);
}

.steps div strong {
  font-size: 1.8rem;
  color: #6fffe9;
  margin-right: 10px;
  font-family: 'Poppins', sans-serif;
}

.step-box {
  background-color: #141a24;
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 0 15px rgba(0, 255, 200, 0.05);
  transition: 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-box img {
  width: 180px;
  max-width: 100%;
  margin-bottom: 25px;
  transition: transform 0.5s ease;
  will-change: transform;
}

.step-box:hover img {
  transform: scale(1.4);
}

.step-box p {
  color: #f4f4f4;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 260px;
}

.step-box strong {
  font-size: 1.6rem;
  color: #6fffe9;
  margin-right: 6px;
  font-family: 'Poppins', sans-serif;
}

.features div {
  font-size: 1.1rem;
  line-height: 1.5;
}

.video-tutorials {
  background: #0d1422;
  padding: 80px 10%;
  text-align: center;
}

.video-tutorials h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #6fffe9;
  position: relative;
  font-family: 'Poppins', sans-serif;
}

.video-tutorials h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #6fffe9;
  border-radius: 3px;
}

.video-tutorials .video-container {
  max-width: 900px;
  margin: 0 auto 50px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 255, 200, 0.2);
}

.video-container iframe {
  width: 100%;
  height: 500px;
  border: none;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.video-card {
  background: #141a24;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s ease;
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.video-thumb {
  position: relative;
  height: 180px;
  background: #0b0f19;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(111, 255, 233, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.play-button::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 20px;
  border-color: transparent transparent transparent #0b0f19;
  margin-left: 5px;
}

.video-card:hover .play-button {
  transform: scale(1.1);
  background: rgba(111, 255, 233, 1);
}

.video-info {
  padding: 20px;
}

.video-info h3 {
  font-size: 1.2rem;
  color: #6fffe9;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
}

.video-info p {
  color: #ccc;
  font-size: 0.9rem;
}

section.content,
.pricing {
  background: #0c1018;
  padding: 100px 10%;
  text-align: center;
}

.pricing h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #6fffe9;
  font-family: 'Poppins', sans-serif;
}

.pricing p {
  max-width: 700px;
  margin: 0 auto 50px;
  color: #ddd;
  font-size: 1.2rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background: linear-gradient(145deg, #141a24, #192533);
  border-radius: 15px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #6fffe9;
  opacity: 0.5;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
  background: linear-gradient(145deg, #192533, #203a43);
  border: 1px solid rgba(111, 255, 233, 0.3);
}

.pricing-card.featured::before {
  opacity: 1;
}

.pricing-card.featured .tag {
  position: absolute;
  top: 20px;
  right: -30px;
  background: #6fffe9;
  color: #0b0f19;
  padding: 5px 30px;
  font-size: 0.8rem;
  font-weight: 600;
  transform: rotate(45deg);
  font-family: 'Poppins', sans-serif;
}

.pricing-header {
  margin-bottom: 30px;
}

.pricing-header h3 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
}

.pricing-header p {
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 0;
}

.price {
  font-size: 3rem;
  font-weight: 700;
  color: #6fffe9;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}

.price span {
  font-size: 1rem;
  font-weight: 400;
  color: #ccc;
}

.price-options {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.price-option {
  background: rgba(111, 255, 233, 0.1);
  border-radius: 20px;
  padding: 5px 15px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: 0.3s;
  font-family: 'Poppins', sans-serif;
}

.price-option.active {
  background: rgba(111, 255, 233, 0.8);
  color: #0b0f19;
}

.pricing-features {
  margin-bottom: 30px;
  text-align: left;
  flex-grow: 1;
}

.pricing-feature {
  margin-bottom: 15px;
  position: relative;
  padding-left: 25px;
  font-size: 1rem;
}

.pricing-feature::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #6fffe9;
}

.pricing-card .btn {
  width: 100%;
  text-align: center;
  margin-top: auto;
}

.testimonials {
  text-align: center;
  padding: 80px 10%;
  background: linear-gradient(to bottom, #0c1018, #0d1422);
}

.testimonials h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #6fffe9;
  font-family: 'Poppins', sans-serif;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.testimonial {
  background: #141a24;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 4rem;
  font-family: Georgia, serif;
  color: rgba(111, 255, 233, 0.2);
  line-height: 1;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial .name {
  color: #6fffe9;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

.faq {
  background: #0d1422;
  padding: 80px 10%;
}

.faq h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #6fffe9;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 30px;
}

.faq-item {
  margin-bottom: 20px;
}

.faq-item h3 {
  font-size: 1.2rem;
  color: #6fffe9;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
}

.faq-item p {
  color: #ccc;
}

.cta-section {
  text-align: center;
  background: linear-gradient(135deg, #121821, #192533);
  padding: 80px 10%;
  border-top: 1px solid #2a3649;
  border-bottom: 1px solid #2a3649;
}

.cta-section h2 {
  font-size: 2.8rem;
  color: #6fffe9;
  margin-bottom: 30px;
  font-family: 'Poppins', sans-serif;
}

.cta-section p {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #ddd;
  font-size: 1.2rem;
}

.cta-section a {
  display: inline-block;
  background: #6fffe9;
  color: #0b0f19;
  padding: 15px 40px;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
  margin: 10px 15px;
  font-family: 'Poppins', sans-serif;
}

.cta-section a:hover {
  background: #4be3d0;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

footer {
  text-align: center;
  /* padding: 50px 10%; */
  font-size: 0.95rem;
  color: #bbb;
  background: #0b0f19;
  line-height: 1.6;
}

.footer-logo {
  margin-bottom: 20px;
}

.logo-white {
  text-decoration: unset;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  display: inline-block;
  font-family: 'Poppins', sans-serif;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin: 30px 0;
}

.footer-links a {
  color: #6fffe9;
  text-decoration: none;
  transition: 0.3s;
  font-family: 'Poppins', sans-serif;
}

.footer-links a:hover {
  color: #4be3d0;
  text-decoration: underline;
}

/* .copyright {
  padding-top: 20px;
  border-top: 1px solid #1c2435;
  color: #999;
  font-size: 0.9rem;
} */

.disclaimer {
  max-width: 800px;
  margin: 20px auto 0;
  font-size: 0.85rem;
  color: #777;
}

.features-subtitle {
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
  margin-bottom: 60px;
  font-weight: 400;
}

.features-intro {
  display: flex;
  margin-bottom: 50px;
  /* Reduced from 80px to make space for stat boxes */
  align-items: flex-start;
  gap: 50px;
}

.platform-showcase {
  background: linear-gradient(135deg, #0c1018, #121c28);
  padding: 100px 5%;
  overflow: hidden;
}

/* Media Queries */
@media (max-width: 1366px) {

  .hero h1 {
    font-size: 3.5rem;
    color: #6fffe9;
  }

  .hero-image-deck .card {
    width: 180px;
    border-radius: 20px;
  }

  .hero-image-deck {
    position: relative;
    width: 400px;
    height: 360px;
    margin-left: 30px;
  }

  .hero-text {
    max-width: 420px;
  }

  section.content,
  .signal-alert-features,
  .pricing,
  .platform-showcase,
  .section {
    padding: 70px 30px;
  }

  .hero-content {
    max-width: 900px;
    padding: 30px;
  }

  .features-intro {
    margin-bottom: 0;
  }

}

@media (max-width: 1024px) {

  .hero-text {
    max-width: 365px;
  }

  .hero-image-deck .card {
    width: 130px;
    border-radius: 20px;
  }

  .platform-showcase {
    background: linear-gradient(135deg, #0c1018, #121c28);
    padding: 50px 30px;
    overflow: hidden;
  }

  .testimonials {
    padding: 50px 30px;
  }

  .showcase-text h2 {
    font-size: 2.4rem;
    color: #6fffe9;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    text-align: left;
    position: relative;
  }

  .hero-content {
    max-width: 900px;
    display: flex;
    padding: 40px 10%;
  }

  .hero-content {
    flex-direction: row-reverse;
    text-align: left;
    padding: 60px 30px;
  }

  .hero-text {
    order: 1;
  }

  .hero-image {
    order: 2;
    margin: 0 auto;
    max-width: 90%;
  }

  .hero h1::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .video-container iframe {
    height: 400px;
  }
}

@media (max-width: 767px) {

  .steps,
  .features {
    margin-top: 50px;
  }

  .pricing-card {
    padding: 30px 20px;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-image-deck {
    position: relative;
    width: 400px;
    height: 360px;
    margin: 0 auto;
    margin-top: 30px;
  }

  .hero-content {
    flex-direction: column-reverse;
    text-align: center;
    padding: 60px 20px;
  }

  .section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero h2 {
    font-size: 1.4rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .section {
    padding: 50px 5%;
  }

  .section h2 {
    font-size: 2rem;
  }

  .cta-section h2 {
    font-size: 2rem;
  }

  .cta-section a {
    display: block;
    margin: 15px auto;
    max-width: 200px;
    padding: 10px 20px;
    font-size: 1rem;
  }

  nav {
    padding: 15px 5%;
  }

  nav .logo {
    font-size: 1.2rem;
  }

  nav ul {
    gap: 15px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .video-container iframe {
    height: 300px;
  }
}

@media (max-width: 480px) {
  nav ul {
    font-size: 0.8rem;
    gap: 10px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .video-container iframe {
    height: 200px;
  }
}

/* Styles for the Platform Showcase section */

.showcase-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

.showcase-text {
  flex: 1;
  padding-right: 20px;
}

.showcase-text h2 {
  font-size: 2.8rem;
  color: #6fffe9;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
  text-align: left;
  position: relative;
}

.showcase-text h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 3px;
  background: #6fffe9;
  border-radius: 3px;
}

.showcase-subtitle {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 30px;
  font-weight: 400;
}

.showcase-features {
  margin: 30px 0;
}

.showcase-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.feature-icon {
  font-size: 1.5rem;
  margin-right: 15px;
  flex-shrink: 0;
}

.showcase-feature p {
  margin: 0;
  font-size: 1.1rem;
}

.showcase-image-container {
  flex: 1.2;
  position: relative;
}

.showcase-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.showcase-image:hover {
  transform: scale(1.03);
}

@media (max-width: 1024px) {
  .showcase-container {
    flex-direction: column;
    text-align: center;
  }

  section.right-image .showcase-container {
    flex-direction: column-reverse;
  }

  .showcase-text {
    padding-right: 0;
  }

  .showcase-text h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .showcase-feature {
    justify-content: center;
    text-align: left;
  }

  .showcase-features .showcase-feature:last-child {
    margin-bottom: 0;
  }


  .showcase-image-container {
    margin-bottom: 40px;
    max-width: 90%;
  }
}

@media (max-width: 767px) {

  .video-container {
    margin: 0 auto 30px;
  }

  .testimonial-grid {
    gap: 30px;
  }

  .platform-showcase {
    padding: 60px 5%;
  }

  .showcase-text h2 {
    font-size: 2rem;
  }

  .showcase-subtitle {
    font-size: 1rem;
  }
}

.screenshot-showcase {
  margin-top: 60px;
  text-align: center;
  max-width: 100%;
  overflow: hidden;
}

.showcase-image {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.showcase-image:hover {
  transform: scale(1.02);
}

@media (max-width: 767px) {
  .screenshot-showcase {
    margin-top: 40px;
  }
}

/* Brand Band Styles */
.brand-band {
  padding: 25px 0;
  position: relative;
  overflow: hidden;
}

.signalvision-band {
  background: linear-gradient(90deg, #141a24, #1a2940, #141a24);
  border-top: 1px solid rgba(111, 255, 233, 0.2);
  border-bottom: 1px solid rgba(111, 255, 233, 0.2);
}

.signalvision-band::before,
.signalalert-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="none" width="100" height="100"/><path d="M0,50 L50,0 L100,50 L50,100 Z" fill="%233f5968" opacity="0.1"/></svg>');
  background-size: 50px 50px;
  opacity: 0.3;
  z-index: 0;
}

.band-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  z-index: 1;
  text-align: center;
}

.brand-logo {
  margin-bottom: 5px;
}

.logo-text {
  font-size: 2.5rem;
  font-weight: 700;
  color: #6fffe9;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.logo-text::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: #6fffe9;
  border-radius: 1.5px;
}

.brand-tagline {
  font-size: 1.2rem;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  margin-top: 15px;
}

/* Additional style for SignalAlert band */
.signalalert-band {
  background: linear-gradient(90deg, #141a24, #203a43, #141a24);
  border-top: 1px solid rgba(111, 255, 233, 0.2);
  border-bottom: 1px solid rgba(111, 255, 233, 0.2);
}

/* Additional style for SignalTrade band */
.signaltrade-band {
  background: linear-gradient(90deg, #141a24, #2c3e50, #141a24);
  border-top: 1px solid rgba(111, 255, 233, 0.2);
  border-bottom: 1px solid rgba(111, 255, 233, 0.2);
}

@media (max-width: 767px) {
  .logo-text {
    font-size: 2rem;
  }

  .brand-tagline {
    font-size: 1rem;
  }
}

/* Styles for the Trading Journey section */
.trading-journey {
  background: linear-gradient(135deg, #0f1728, #151f30);
  padding: 100px 10% 120px;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(111, 255, 233, 0.1);
  border-bottom: 1px solid rgba(111, 255, 233, 0.1);
}

/* Header section */
.journey-header {
  max-width: 1000px;
  margin: 0 auto 60px;
  text-align: left;
}

.journey-header h2 {
  font-size: 4rem;
  color: #6fffe9;
  line-height: 1.1;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}

.underline {
  width: 70px;
  height: 4px;
  background: #6fffe9;
  margin: 15px 0 30px 0;
}

.journey-subtitle {
  font-size: 1.4rem;
  color: #fff;
  font-weight: 400;
  line-height: 1.6;
  max-width: 800px;
}

/* Two column content */
.journey-content {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  gap: 60px;
  align-items: center;
  background: transparent;
}

/* Steps column */
.journey-steps {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.btn-full {
  width: 100%;
  margin-top: 20px;
  display: inline-block;
  text-align: center;
}

.journey-step {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.step-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 30px;
  text-align: center;
}

.step-content p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.5;
}

.journey-action {
  margin-top: 15px;
}

.journey-btn {
  display: inline-block;
  background: #6fffe9;
  color: #0b0f19;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 4px 15px rgba(111, 255, 233, 0.2);
}

.journey-btn:hover {
  background: #4be3d0;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(111, 255, 233, 0.3);
}

/* Image column */
.journey-image {
  flex: 1.2;
  position: relative;
  line-height: 0;
  font-size: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  border: none;
  overflow: hidden;
  box-shadow: none;
  display: block;
}

.journey-image .showcase-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
  display: block;
  object-fit: contain;
  background: transparent;
}

.journey-image .showcase-image:hover {
  transform: scale(1.02);
}

/* Decorative elements */
.trading-journey::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="none" width="100" height="100"/><path d="M0,50 L50,0 L100,50 L50,100 Z" fill="%231a2940" opacity="0.3"/></svg>');
  background-size: 70px 70px;
  opacity: 0.2;
  z-index: 0;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .journey-header h2 {
    font-size: 3.5rem;
  }
}

@media (max-width: 992px) {
  .journey-content {
    flex-direction: column-reverse;
  }

  .journey-image {
    margin-bottom: 50px;
    width: 100%;
    max-width: 700px;
  }

  .journey-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    background: transparent;
    padding: 0;
    margin: 0;
    border: none;
  }

  .journey-header {
    text-align: center;
  }

  .underline {
    margin: 15px auto 30px;
  }

  .journey-subtitle {
    margin: 0 auto;
  }

  .journey-action {
    display: flex;
    justify-content: center;
  }

  .trading-journey {
    padding: 80px 7% 100px;
  }
}

@media (max-width: 768px) {
  .journey-header h2 {
    font-size: 3rem;
  }

  .journey-subtitle {
    font-size: 1.2rem;
  }

  .journey-step {
    flex-direction: column;
    gap: 8px;
  }

  .step-icon {
    width: auto;
    margin-bottom: 5px;
  }

  .trading-journey {
    padding: 60px 5% 80px;
  }
}

/* SignalAlert Features Specific Styles */
.signal-alert-features {
  background: linear-gradient(135deg, #0f1728, #151f30);
  padding: 100px 0;
  color: #f4f4f4;
  border-top: 1px solid rgba(111, 255, 233, 0.1);
  border-bottom: 1px solid rgba(111, 255, 233, 0.1);
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.signal-alert-features h2 {
  font-size: 3rem;
  color: #6fffe9;
  text-align: center;
  margin-bottom: 15px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}



.intro-text {
  flex: 1.3;
}

.intro-text p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.intro-image {
  flex: 0.7;
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.phone-container {
  max-width: 280px;
  position: relative;
  border-radius: 30px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.feature-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  box-shadow: none;
}

/* New styles for stat boxes in a row */
.key-stats-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 25px;
}

.stat-box {
  flex: 1;
  background: #141a24;
  border-radius: 15px;
  padding: 25px 20px;
  text-align: center;
  border: 1px solid #1c2435;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 700;
  color: #6fffe9;
  margin-bottom: 5px;
  font-family: 'Poppins', sans-serif;
}

.stat-label {
  font-size: 1rem;
  color: #e0e0e0;
  font-family: 'Inter', sans-serif;
}

/* New styles for the quick steps */
.quick-steps {
  margin-top: 30px;
  padding-top: 20px;
}

.quick-steps h4 {
  font-size: 1.2rem;
  color: #6fffe9;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}

.quick-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.step-circle {
  width: 30px;
  height: 30px;
  background: #6fffe9;
  color: #141a24;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-right: 15px;
  flex-shrink: 0;
  font-family: 'Poppins', sans-serif;
}

.step-text {
  flex: 1;
}

.step-text strong {
  display: block;
  color: #6fffe9;
  margin-bottom: 5px;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
}

.step-text p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.5;
  color: #ddd;
}

.feature-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

.feature-block {
  background: #141a24;
  border-radius: 15px;
  padding: 40px 30px;
  border: 1px solid #1c2435;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-block:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.feature-block h3 {
  font-size: 1.4rem;
  color: #6fffe9;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.feature-list ul,
.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 25px;
  line-height: 1.5;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #6fffe9;
}

.responsive-nav.signalvision-band::before {
  z-index: -1;
}

.responsive-nav-overlay {
  cursor: pointer;
  display: none;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  z-index: 100;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.responsive-nav {
  position: fixed;
  display: none;
  width: 300px;
  top: 0;
  right: -300px;
  height: 100%;
  z-index: 110;
  padding: 30px;
  padding-top: 50px;
  text-align: center;
}

.phone-nav-menu {
  margin-top: 30px;
}

.phone-nav-menu ul {
  list-style: none;
}

.phone-nav-menu ul a {
  color: white;
  text-decoration: unset;
}

button.open-nav,
button.close-nav {
  position: absolute;
  cursor: pointer;
  top: 10px;
  right: 10px;
  width: 35px;
  height: 35px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: unset;
  box-shadow: unset !important;
  border: unset;
  background-image: url('data:image/svg+xml,<svg width="800px" height="800px" viewBox="-0.5 0 25 25" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M3 21.32L21 3.32001" stroke="%23ffffff" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M3 3.32001L21 21.32" stroke="%23ffffff" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

button.open-nav {
  position: relative;
  width: 25px;
  height: 25px;
  top: 0;
  background-image: url('data:image/svg+xml,<svg fill="%23ffffff" width="800px" height="800px" viewBox="0 0 52 52" data-name="Layer 1" id="Layer_1" xmlns="http://www.w3.org/2000/svg"><path d="M50,12.5H2a2,2,0,0,1,0-4H50a2,2,0,0,1,0,4Z"/><path d="M50,28H2a2,2,0,0,1,0-4H50a2,2,0,0,1,0,4Z"/><path d="M50,43.5H2a2,2,0,0,1,0-4H50a2,2,0,0,1,0,4Z"/></svg>');
}

div.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: end;
}

@media (max-width: 767px) {
  .showcase-container {
    text-align: center;
    gap: 0;
  }

  .showcase-image-container {
    margin-bottom: 30px;
  }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .features-intro {
    flex-direction: column;
    align-items: center;
  }

  .intro-text {
    width: 100%;
    max-width: 600px;
  }

  .phone-container {
    max-width: 250px;
    margin-top: 30px;
  }

  .key-stats-row {
    flex-direction: row;
    gap: 15px;
  }

  .feature-blocks {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 767px) {
  .feature-icon {
    font-size: 2.5rem;
  }

  .signal-alert-features {
    padding: 60px 0;
  }

  .signal-alert-features h2 {
    font-size: 2.5rem;
  }

  .key-stats-row {
    flex-direction: column;
    gap: 15px;
    max-width: 350px;
    margin: 0 auto 50px;
  }

  .stat-box {
    padding: 15px;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .phone-container {
    max-width: 220px;
    margin-top: 0;
  }

  .quick-step {
    margin-bottom: 15px;
  }

  .step-text strong {
    font-size: 0.95rem;
  }

  .step-text p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .key-stats-row {
    max-width: 100%;
  }

  .signal-alert-features h2 {
    font-size: 2rem;
  }

  .phone-container {
    max-width: 200px;
  }
}


@media (max-width: 1024px) {


.responsive-nav .sg-logo {
  justify-content: center;
}



  .cta-section h2,
  .signal-alert-features h2,
  .section h2,
  .faq h2,
  .video-tutorials h2,
  .pricing h2,
  .testimonials h2,
  .showcase-text h2,
  .logo-text {
    font-size: 2rem;
    text-align: center;
  }

  .cta-section,
  .video-tutorials,
  .pricing,
  .faq,
  .platform-showcase {
    padding: 70px 30px;
  }
}

.footer-navigation {
  background: unset;
}

@media (max-width: 767px) {

  .footer-navigation ul {
    justify-content: center;
    flex-wrap: wrap;
  }

  .showcase-features {
    margin-bottom: 0;
  }

  .testimonials h2 {
    margin-bottom: 30px;
  }

  .video-tutorials,
  .cta-section,
  .pricing,
  .faq,
  .platform-showcase {
    padding: 50px 25px;
  }

  .pricing-grid {
    gap: 30px;
    max-width: 280px;
    margin: 0 auto;
  }

  .price {
    font-size: 2rem;
    color: #6fffe9;
    margin-bottom: 20px;
    line-height: 1.5;
  }

  .btn {
    padding: 8px 25px;
    font-size: 0.8rem;
  }

  .pricing,
  .faq,
  .platform-showcase {
    padding: 50px 30px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .platform-showcase {
    padding: 50px 30px;
  }

  .cta-section h2,
  .signal-alert-features h2,
  .section h2,
  .faq h2,
  .video-tutorials h2,
  .pricing h2,
  .testimonials h2,
  .showcase-text h2,
  .logo-text {
    font-size: 1.5rem;
    text-align: center;
  }

  .pricing-header h3 {
    font-size: 1.5rem;
  }
}

button.open-nav {
  display: none;
}

@media (max-width: 1024px) {
   nav .partner-login-btn ,
  .nav-menu-wrap ,
  .nav-wrap>* {
    display: none;
  }

  button.open-nav {
    display: block;
  }
}



/* single product */


/* Billing Toggle Styles */
.billing-options {
  margin: 20px 0;
}

.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 15px;
}

.billing-option {
  font-size: 0.95rem;
  color: #a0a0a0;
  cursor: pointer;
  padding: 5px 10px;
  transition: color 0.3s;
  display: flex;
  align-items: center;
}

.billing-option.active {
  color: #ffffff;
  font-weight: 500;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
  margin: 0 10px;
}

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

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.2);
  transition: .4s;
  border-radius: 24px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: #6fffe9;
  transition: .4s;
  border-radius: 50%;
}

input:checked+.toggle-slider {
  background-color: rgba(111, 255, 233, 0.2);
}

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

.discount-badge {
  background-color: rgba(111, 255, 233, 0.2);
  color: #6fffe9;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 5px;
  font-weight: 500;
}




/* Main Container */
.main-container {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

/* Product Page Layout */
.product-section {
  display: flex;
  margin: 60px 0;
  align-items: start;
}

/* Left Column - Product Image */
.product-image-col {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.product-image-container {
  background: linear-gradient(to right, rgba(18, 24, 33, 0.7), rgba(20, 26, 36, 0.7));
  /* border-radius: 24px; */
  padding: 20px;
  width: 100%;
  /* max-width: 400px; */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.product-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Right Column - Product Info */
.product-info-col {
  width: 50%;
  padding: 40px;
}

.product-badge {
  display: inline-block;
  background: rgba(111, 255, 233, 0.1);
  color: #6fffe9;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}

.product-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  font-family: 'Poppins', sans-serif;
  line-height: 1.2;
}

.product-subtitle {
  font-size: 1.1rem;
  color: #a0a0a0;
  margin-bottom: 30px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.product-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #6fffe9;
  margin-bottom: 5px;
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
}

.price-period {
  font-size: 1rem;
  color: #a0a0a0;
  margin-left: 10px;
  font-weight: 400;
}

.features-heading {
  font-size: 1.4rem;
  color: #ffffff;
  margin: 30px 0 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.features-grid ul,
.features-grid ol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 30px;
  margin-bottom: 30px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
}

.feature-check {
  color: #6fffe9;
  margin-right: 10px;
  font-size: 1.1rem;
  line-height: 1.5;
}

.feature-text {
  font-size: 0.95rem;
  color: #f4f4f4;
}

/* Add to Cart Section */
.add-to-cart-section {
  display: flex;
  align-items: center;
  margin-top: 40px;
  gap: 15px;
}

.quantity-selector {
  display: none !important;
  align-items: center;
  background: rgba(30, 40, 56, 0.6);
  border-radius: 50px;
  padding: 5px;
  display: none;
}

.quantity-btn {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  color: #6fffe9;
  font-size: 1.2rem;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s;
}

.quantity-btn:hover {
  background: rgba(111, 255, 233, 0.1);
}

.quantity-input {
  width: 40px;
  text-align: center;
  border: none;
  background: none;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}

.add-to-cart-btn {
  flex-grow: 1;
  background: #6fffe9;
  color: #0b0f19;
  border: none;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s;
  text-align: center;
}

.add-to-cart-btn:hover {
  background: #4be3d0;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(111, 255, 233, 0.2);
}

/* Product Tabs */
.product-tabs {
  margin: 60px 0;
}

.tabs-nav {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 30px;
}

.tab-btn {
  padding: 15px 30px;
  background: none;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #a0a0a0;
  cursor: pointer;
  position: relative;
  transition: color 0.3s;
}

.tab-btn.active {
  color: #6fffe9;
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #6fffe9;
}

.tab-content {
  display: none;
  background: rgba(20, 26, 36, 0.5);
  border-radius: 16px;
  padding: 40px;
}

.tab-content.active {
  display: block;
}

.tab-content h2 {
  font-size: 2rem;
  color: #6fffe9;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}

.tab-content h3 {
  font-size: 1.4rem;
  color: #ffffff;
  margin: 30px 0 15px;
  font-family: 'Poppins', sans-serif;
}

.tab-content p {
  margin-bottom: 20px;
  font-size: 1rem;
  color: #d0d0d0;
}

.tab-content ol,
.tab-content ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.tab-content ol li,
.tab-content ul li {
  margin-bottom: 10px;
  color: #d0d0d0;
}

.tab-content ul li::marker {
  color: #6fffe9;
}



/* Mobile Responsiveness */
@media (max-width: 992px) {
  .product-section {
    flex-direction: column;
  }

  .product-image-col,
  .product-info-col {
    width: 100%;
    padding: 20px;
  }

  .product-title {
    font-size: 2.2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {

  .tab-content p {
    margin-bottom: 20px;
    font-size: 0.8rem;
    color: #d0d0d0;
  }

  .product-section {
    margin: 50px 0;
  }

  .features-grid {
    gap: 10px 30px;
  }

  .features-heading {
    font-size: 1.2rem;
  }

  .product-title {
    font-size: 2rem;
  }

  .tab-content h2 {
    font-size: 1.5rem;
  }

  .tab-content h3 {
    font-size: 1.2rem;
  }

  .product-price {
    font-size: 2rem;
  }

  .add-to-cart-section {
    flex-direction: column;
    align-items: stretch;
  }

  .quantity-selector {
    margin-bottom: 15px;
    justify-content: center;
  }

  .tabs-nav {
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 5px;
  }

  .tab-btn {
    padding: 15px 20px;
  }

  .tab-content {
    padding: 30px 20px;
  }
}

.product-tabs a {
  color: #6fffe9;
}

.product-form-wrapper {
  display: none;
}

.product-form-wrapper.active {
  display: block;
}

input.quantity-input::-webkit-outer-spin-button,
input.quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input.quantity-input:focus {
  border: unset !important;
  outline: unset !important;
}

input.quantity-input {
  -moz-appearance: textfield;
}



/* checkout style */


/* Checkout Title */
.checkout-title {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 30px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

/* Checkout Layout */
.checkout-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* Checkout Forms */
.checkout-form {
  background: rgba(20, 26, 36, 0.5);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-title {
  font-size: 1.5rem;
  color: #6fffe9;
  margin-bottom: 25px;
  font-family: 'Poppins', sans-serif;
  position: relative;
  padding-bottom: 10px;
  text-align: left;
}

.form-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background: #6fffe9;
  border-radius: 3px;
}

.form-row {
  margin-bottom: 25px !important;
}

.form-row.half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 15px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  color: #d0d0d0;
}

.form-row.validate-email,
.form-row.address-field {
  width: 100%;
}

.form-row.validate-phone,
.form-row.validate-postcode {
  width: 47%;
}

.woocommerce-billing-fields__field-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}


.select2-container .select2-selection--single .select2-selection__rendered {
  color: #ffffff !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.95rem !important;
}

.select2-selection.select2-selection--single {
  background: rgba(30, 40, 56, 0.6) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  padding: 5px 15px !important;
  border-radius: 8px !important;
}

.woocommerce-input-wrapper input.input-text,
.form-input {
  width: 100% !important;
  padding: 12px 15px !important;
  background: rgba(30, 40, 56, 0.6) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 8px !important;
  color: #ffffff !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.95rem !important;
  transition: border-color 0.3s, box-shadow 0.3s !important;
}

.woocommerce-input-wrapper input.input-text:focus,
.form-input:focus {
  outline: none !important;
  border-color: #6fffe9 !important;
  box-shadow: 0 0 0 2px rgba(111, 255, 233, 0.2) !important;
}

.woocommerce-input-wrapper input::placeholder,
.form-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-select {
  width: 100%;
  padding: 12px 15px;
  background: rgba(30, 40, 56, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='%23ffffff' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
}

.form-select:focus {
  outline: none;
  border-color: #6fffe9;
  box-shadow: 0 0 0 2px rgba(111, 255, 233, 0.2);
}

/* Payment Methods */
.payment-methods {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.payment-method {
  position: relative;
  flex: 1;
  min-width: 80px;
}

.payment-method input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.payment-method label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px 10px;
  background: rgba(30, 40, 56, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s;
  height: 100%;
}

.payment-method input:checked+label {
  border-color: #6fffe9;
  background: rgba(111, 255, 233, 0.1);
}

.payment-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
  color: #d0d0d0;
}

.payment-method input:checked+label .payment-icon {
  color: #6fffe9;
}

.payment-name {
  font-size: 0.85rem;
}

/* Credit Card Fields */
.card-info {
  margin-top: 20px;
}

.card-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 15px;
}

/* Order Summary */
.order-summary {
  background: rgba(20, 26, 36, 0.5);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}

.order-item {
  display: flex;
  justify-content: space-between;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.item-info {
  display: flex;
  gap: 15px;
  text-align: left;
}

.item-image {
  width: 60px;
  height: 60px;
  background: linear-gradient(145deg, #121821, #141a24);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.item-image img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

.item-details h4 {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 5px;
  font-family: 'Poppins', sans-serif;
}

.item-details p {
  font-size: 0.9rem;
  color: #a0a0a0;
}

.item-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.order-totals {
  margin-top: 15px;
}

.total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.total-row.final {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1.2rem;
  font-weight: 600;
  color: #6fffe9;
  font-family: 'Poppins', sans-serif;
}

/* Secure Checkout Notice */
.secure-checkout {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  background: rgba(111, 255, 233, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(111, 255, 233, 0.1);
}

.secure-icon {
  font-size: 1.5rem;
  color: #6fffe9;
}

.secure-text {
  font-size: 0.9rem;
  color: #d0d0d0;
  text-align: left;
}

/* Coupon Code */
.coupon-container {
  margin: 20px 0;
}

.coupon-form {
  display: flex;
  gap: 10px;
}

.coupon-input {
  flex-grow: 1;
  padding: 12px 15px;
  background: rgba(30, 40, 56, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
}

.coupon-input:focus {
  outline: none;
  border-color: #6fffe9;
  box-shadow: 0 0 0 2px rgba(111, 255, 233, 0.2);
}

.coupon-btn {
  background: rgba(111, 255, 233, 0.2);
  color: #6fffe9;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Poppins', sans-serif;
}

.coupon-btn:hover {
  background: rgba(111, 255, 233, 0.3);
}

/* Submit Button */
.checkout-btn {
  display: block;
  width: 100%;
  margin-top: 30px;
  background: #6fffe9;
  color: #0b0f19;
  border: none;
  padding: 15px 20px;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.checkout-btn:hover {
  background: #4be3d0;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(111, 255, 233, 0.2);
}

/* Billing Switch */
.billing-switch {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
  margin-right: 10px;
}

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

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.2);
  transition: 0.4s;
  border-radius: 20px;
}

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

input:checked+.slider {
  background-color: rgba(111, 255, 233, 0.2);
}

input:checked+.slider:before {
  transform: translateX(20px);
}

.switch-label {
  font-size: 0.9rem;
  color: #d0d0d0;
}

#customer_details {
  text-align: left;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
  .checkout-container {
    grid-template-columns: 1fr;
  }

  .checkout-form,
  .order-summary {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  header {
    padding: 15px 5%;
  }

  nav ul {
    gap: 15px;
  }

  .checkout-title {
    font-size: 2rem;
  }

  .form-row.half {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .card-row {
    grid-template-columns: 1fr;
  }

  .payment-methods {
    flex-direction: column;
  }

  .payment-method {
    width: 100%;
  }

  .payment-method label {
    flex-direction: row;
    justify-content: flex-start;
    gap: 15px;
  }

  .payment-icon {
    margin-bottom: 0;
  }
}

.sg-final-order-review .woocommerce-checkout-review-order-table td {
  text-align: right;
}

.sg-final-order-review a {
  color: #6fffe9 !important;
}




.sg-final-order-review .woocommerce-checkout-review-order-table td,
.sg-final-order-review .woocommerce-checkout-review-order-table th {
  padding: 10px 0 !important;
  font-weight: 400 !important;
  color: white;
}



.sg-final-order-review .woocommerce-checkout-review-order-table .order-total td,
.sg-final-order-review .woocommerce-checkout-review-order-table .order-total th {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 0 !important;
  font-weight: 700 !important;
  color: #6fffe9 !important;
}

.sg-final-order-review .woocommerce-checkout-review-order-table tbody,
.sg-final-order-review .woocommerce-checkout-review-order-table thead,
.sg-final-order-review #payment,
.woocommerce-form-coupon-toggle,
.woocommerce-billing-fields>h3 {
  display: none;
}

.sg-final-order-review tr.order-total {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1.2rem !important;
  font-weight: 600;
  color: #6fffe9;
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 600 !important;
  color: #6fffe9;
  font-family: 'Poppins', sans-serif;
}


form.coupon-form.checkout_coupon span {
  bottom: -30px;
  position: absolute;
}

form.coupon-form.checkout_coupon {
  position: relative;
  padding: 0;
  border: 0;
  border-radius: 0;
}

form.coupon-form {
  display: flex !important;
}


div.sg-main-order-call {
  margin-top: 40px;
}

div.sg-main-order-call .form-row.place-order,
div.sg-main-order-call .shop_table.woocommerce-checkout-review-order-table {
  display: none;
}


/* order details */

.woocommerce ul.order_details {
  list-style: none;
  text-align: center;
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: space-between !important;
  margin: 50px 0 !important;
}


.woocommerce ul.order_details li strong {
  display: block;
  font-size: 1.5em;
  text-transform: none;
  line-height: 1.5;
  margin-top: 10px !important;
  color: #6fffe9 !important;
}

.woocommerce-order .woocommerce-table__product-name.product-name {
  color: #6fffe9 !important;
  text-decoration: unset;
  font-size: 1.5em;
  text-transform: none;
  line-height: 1.5;
}

.woocommerce-order .woocommerce-customer-details address {
  font-style: normal;
  margin-bottom: 0;
  border: 1px solid rgba(0, 0, 0, .1);
  border-bottom-width: 2px;
  border-right-width: 2px;
  text-align: left;
  width: 100%;
  border-radius: 5px;
  padding: 6px 12px;
  box-sizing: border-box;
  line-height: 2;
}




/* 404 */



/* 404 Content */
.error-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px 20px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.error-code {
  font-size: 9rem;
  font-weight: 700;
  color: #6fffe9;
  line-height: 1;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
  position: relative;
  text-shadow: 0 10px 20px rgba(111, 255, 233, 0.2);
}

.error-code::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
  width: 100px;
  height: 4px;
  background: #6fffe9;
  border-radius: 2px;
}

.error-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}

.error-message {
  font-size: 1.2rem;
  color: #d0d0d0;
  margin-bottom: 40px;
  max-width: 600px;
}

.error-illustration {
  width: 100%;
  max-width: 400px;
  margin-bottom: 40px;
  position: relative;
}

.chart-illustration {
  width: 100%;
  height: 250px;
  background: linear-gradient(to right, #141a24, #1a2435);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  margin-bottom: 50px;
}

.chart-line {
  position: absolute;
  bottom: 50px;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(111, 255, 233, 0.5);
  z-index: 1;
}

.signal-lost {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
  color: #6fffe9;
  font-weight: 600;
  background: rgba(20, 26, 36, 0.8);
  padding: 10px 20px;
  border-radius: 50px;
  box-shadow: 0 0 30px rgba(111, 255, 233, 0.3);
  white-space: nowrap;
  font-family: 'Poppins', sans-serif;
}

.chart-glitch {
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 40 L100 40 L110 60 L130 20 L160 80 L200 30 L240 80 L300 30 L340 50 L360 40 L400 70 L450 40 L500 60 L540 40 L560 50 L600 20 L640 70 L680 40 L720 60 L100%25 50' stroke='%236fffe9' stroke-width='2' fill='none' stroke-dasharray='6,6'/%3E%3C/svg%3E");
  background-size: cover;
  animation: glitch 2s infinite;
  opacity: 0.5;
}

@keyframes glitch {
  0% {
    opacity: 0.5;
    transform: translateX(0);
  }

  20% {
    opacity: 0.7;
    transform: translateX(5px);
  }

  40% {
    opacity: 0.5;
    transform: translateX(-5px);
  }

  60% {
    opacity: 0.8;
    transform: translateX(5px);
  }

  80% {
    opacity: 0.5;
    transform: translateX(0);
  }

  100% {
    opacity: 0.5;
    transform: translateX(0);
  }
}

.action-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.action-btn {
  padding: 12px 25px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.btn-primary {
  background: #6fffe9;
  color: #0b0f19 !important;
}

.btn-primary:hover {
  background: #4be3d0;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: transparent;
  color: #6fffe9;
  border: 2px solid #6fffe9;
}

.btn-secondary:hover {
  background: rgba(111, 255, 233, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.search-container {
  margin-top: 40px;
  width: 100%;
  max-width: 500px;
}

.search-form {
  position: relative;
  width: 100%;
}

.search-input {
  width: 100%;
  padding: 15px 20px;
  background: rgba(30, 40, 56, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  padding-right: 50px;
}

.search-input:focus {
  outline: none;
  border-color: #6fffe9;
  box-shadow: 0 0 0 2px rgba(111, 255, 233, 0.2);
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.search-btn {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: #6fffe9;
  color: #0b0f19;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s;
}

.search-btn:hover {
  background: #4be3d0;
  box-shadow: 0 5px 15px rgba(111, 255, 233, 0.2);
}

.helpful-links {
  margin-top: 60px;
  width: 100%;
  max-width: 600px;
}

.helpful-title {
  font-size: 1.5rem;
  color: #6fffe9;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 15px;
}

.link-item {
  background: rgba(20, 26, 36, 0.5);
  border-radius: 10px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s;
}

.link-item:hover {
  border-color: rgba(111, 255, 233, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.link-item a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  display: block;
}

.link-item:hover a {
  color: #6fffe9;
}

.checkout-container .order-summary .item-price {
  position: relative;
}


.checkout-container .order-summary .item-price a {
  position: absolute;
  right: 0;
  bottom: 0;
}



/* my account style */

body.woocommerce-account.woocommerce-page section.content {
  padding: 100px 40px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {

  body.woocommerce-account.woocommerce-page section.content {
    padding: 50px 20px;
  }

  .checkout-form,
  .order-summary {
    padding: 20px;
    width: 100% !important;
  }

  button.open-nav {
    right: 0;
  }


  .error-code {
    font-size: 6rem;
  }

  .error-title {
    font-size: 2rem;
  }

  .error-message {
    font-size: 1.1rem;
  }

  .action-buttons {
    flex-direction: column;
    align-items: center;
  }

  .action-btn {
    width: 100%;
    text-align: center;
  }

  .links-grid {
    grid-template-columns: 1fr;
  }

  .form-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

}

@media (max-width: 480px) {

  .item-details h4 {
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
  }

  .item-price {
    font-size: 0.9rem;
  }

  .coupon-input {
    width: calc(100% - 100px) !important;
  }

  .form-row.validate-phone,
  .form-row.validate-postcode,
  .woocommerce form .form-row-first,
  .woocommerce form .form-row-last,
  .woocommerce-page form .form-row-first,
  .woocommerce-page form .form-row-last {
    width: 100%;
  }

  .checkout-container {
    display: block;
  }

  footer {
    padding: 50px 20px;
  }

  .footer-links {
    gap: 20px;
    margin: 10px 0;
  }

  .error-code {
    font-size: 5rem;
  }

  .error-title {
    font-size: 1.6rem;
  }

  .search-input {
    padding: 12px 15px;
  }

  .action-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}


@media (max-width: 767px) {

  section.content {
    padding: 50px 20px;
  }

  .woocommerce-MyAccount-navigation {
    padding: 20px 0;
    padding-top: 0;
  }

  .woocommerce table.my_account_orders td,
  .woocommerce table.my_account_orders th {
    padding: 4px 0;
  }
}


.woocommerce-checkout .woocommerce-input-wrapper label {
  font-weight: bold;
  margin-bottom: 8px;
  display: block;
}

.woocommerce-orders-table a.button,
a.woocommerce-Button.button {
  background: #6fffe9 !important;
  color: #0b0f19 !important;
  display: inline-block;
  padding: 12px 25px;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.woocommerce-orders-table a.button {
  font-size: 0.8rem;
  padding: 10px;
}

.no_subscriptions.woocommerce-message {
  border: unset;
  color: white;
  background: unset;
}

fieldset,
#wc-stripe-upe-form {
  border: unset !important;
}

.wc_payment_methods.payment_methods li input,

.wc_payment_methods.payment_methods li label,

.woocommerce-checkout #payment div.payment_box::before {
  display: none !important;
}

.payment_box.payment_method_stripe {
  background: unset !important;
}



.blockUI.blockOverlay {
  background-color: #0b0f19 !important;
  opacity: 0.4 !important;
}









/* customizer */

.my_account_subscriptions tr td:last-child {
  text-align: right;
}

.wc-block-cart-item__wrap {
  text-align: left;
  font-family: 'Poppins', sans-serif;
}

.wc-block-cart-item__wrap .price {
  font-size: unset;
}

.wc-block-cart-item__wrap a {
  color: #6fffe9;
  text-decoration: none;
  transition: 0.3s;
}

.woocommerce-MyAccount-navigation {
  background: unset;
  padding: 20px;
  padding-left: 0;
  position: unset;
}

.woocommerce-MyAccount-navigation ul li {
  padding: 10px 0;
}

.woocommerce-MyAccount-navigation ul li.is-active a {
  color: #6fffe9;
}

.woocommerce-MyAccount-navigation ul {
  display: block;
  text-align: left;
}

.woocommerce-account h1 {
  margin-bottom: 30px;
}


.woocommerce-MyAccount-content a {
  text-decoration: unset;
  color: #6fffe9;
}

.woocommerce-account form .form-row label {
  margin: 10px 0;
  text-align: left;
}

.woocommerce-account .select2-container .select2-selection {
  background: unset !important;
}

.woocommerce-account .select2-selection__rendered {
  text-align: left;
  border: 1px solid #555;
  line-height: 47px !important;
  padding: 0 15px !important;
  color: white !important;
}

.woocommerce-account form .form-row .input-text,
.woocommerce-account form .form-row select {

  display: block;
  width: 100%;
  margin: 0;
  line-height: normal;
  height: auto;
  background: unset;
  color: white;
  border: 1px solid #555;
  padding: 15px;
  border-radius: 0 !important;
}


.select2-container .select2-selection--single .select2-selection__arrow b {
  border: none;
  display: block;
  filter: invert(100%);
  background-size: 16px;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  left: 0;
  margin: -8px 0 0;
}

#order_review button,
.woocommerce button.button {
  float: right;
  border-radius: 0;
  color: #000;
  padding: 15px 20px;
  background: #6fffe9;
}


.woocommerce-MyAccount-navigation-link--downloads {
  display: none;
}

/* Style the container around Stripe elements */
.woocommerce-checkout .wc-stripe-elements-field {
  background: #fff;
  border: 1px solid #ccc;
  padding: 12px;
  border-radius: 6px;
}

/* Style label above the Stripe fields */
.woocommerce-checkout .woocommerce-input-wrapper label {
  font-weight: bold;
  margin-bottom: 8px;
  display: block;
}


a.sg-active-now,
.sg-license-key-table td button,
.woocommerce-button.change_payment_method,
.woocommerce-button.wcs_block_ui_on_click {
  padding: 10px !important;
  font-size: 0.8rem !important;
  border-radius: 30px !important;
}
a.sg-active-now,
.sg-license-key-table td button,
.woocommerce-MyAccount-content a.button,
a.button.wcs_deletion_error,
.woocommerce-button.change_payment_method,
.woocommerce-button.wcs_block_ui_on_click,
.woocommerce-orders-table a.button,
a.woocommerce-Button.button {
  background: #6fffe9 !important;
  color: #0b0f19 !important;
  display: inline-block;
  padding: 12px 25px;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.woocommerce-orders-table a.button {
  font-size: 0.8rem;
  padding: 10px;
}

.no_subscriptions.woocommerce-message {
  border: unset;
  color: white;
  background: unset;
}

fieldset,
#wc-stripe-upe-form {
  border: unset !important;
}

.wc_payment_methods.payment_methods li input,

.wc_payment_methods.payment_methods li label,

.woocommerce-checkout #payment div.payment_box::before {
  display: none !important;
}

.payment_box.payment_method_stripe {
  background: unset !important;
}

.testmode-info {
  color: white;
}

#wc-stripe-upe-form {
  display: block !important;
}

@media (max-width: 767px) {

  section.content {
    padding: 50px 20px;
  }

  .woocommerce-MyAccount-navigation {
    padding: 20px 0;
    padding-top: 0;
  }

  .woocommerce table.my_account_orders td,
  .woocommerce table.my_account_orders th {
    padding: 4px 0;
  }
}


/* subscription style */


.sg-license-text,
body.woocommerce-account h1 {
  text-align: left;
}
a.sg-active-now, 
.sg-license-key-table td button {
  position: absolute;
  top: 20px;
  right: 10px;
  cursor: pointer;
}

.sg-license-key-table td span,
.sg-license-key-table td {
  text-align: left;
  color: #f4f4f4;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
  font-family: 'Poppins', sans-serif;
}

.sg-license-key-table {
  width: 100%;
}

.sg-license-key-table td span {
  font-size: 1rem;
}

.shop_table.subscription_details tr td:last-child {
  text-align: right;
}


@media (max-width: 680px) {

  .sg-license-key-table tr {
    display: flex;
    flex-wrap: wrap;
  }

  .sg-license-key-table td {
    width: 100%;
  }

  .sg-license-key-table th {
    display: none;
  }
}



/* error */

body.woocommerce-shop #sidebar ,
body.woocommerce-shop #main .woocommerce-ordering ,
body.woocommerce-shop #main .woocommerce-breadcrumb {
  display: none;
}
body.woocommerce-shop #main {
  max-width: 1200px;
  padding: 50px 20px;
  margin: 0 auto;
}

body.woocommerce-shop #main .woocommerce-loop-product__link {
  color: #6fffe9; }

body.woocommerce-order-received .content h1 {
  display: none;
}
.woocommerce-error::before {
  content: "\e016";
  color: #6fffe9;
}
.woocommerce-error {
  border-top-color: #6fffe9;
  background: unset;
  color: white;
}

.woocommerce-MyAccount-content .u-column2.woocommerce-Address ,
.woocommerce-MyAccount-content .u-column1.woocommerce-Address {
  text-align: left; }

.woocommerce-MyAccount-content .woocommerce-Addresses {
  margin-top: 30px ;   }

  .woocommerce-MyAccount-content .select2-selection__rendered {
    border: unset !important;
  }

.woocommerce-MyAccount-content .select2-selection.select2-selection--single {
  background: rgba(30, 40, 56, 0.6) !important;
  border: unset !important;
  padding: 0 !important;
  border-radius: 0 !important; }


/* customizer */

/* Login Page */

body.page-id-10 h1 {
	display: none; }

.woocommerce-ResetPassword.lost_reset_password .woocommerce-Button {
	padding: 15px 20px !important;
    background: #6fffe9;
    color: #000 !important;
    opacity: 1 !important;
}

.woocommerce-ResetPassword.lost_reset_password .woocommerce-form-row {
	width: 100%; }


.woocommerce-ResetPassword.lost_reset_password p {
	text-align: left; }

.woocommerce-ResetPassword.lost_reset_password  .woocommerce-form-row {
	display: flex;
	justify-content: center; }

.woocommerce-ResetPassword.lost_reset_password  .woocommerce-form-row:nth-child(2) {
	flex-direction: column; }

.woocommerce-form-login.login .form-row:nth-child(3) {
	display: flex;
  align-items: center;
  flex-direction: column-reverse;
	margin: 0 auto;
  max-width: 234px; }

.woocommerce-ResetPassword.lost_reset_password ,
.woocommerce-form-login.login {
	  max-width: 500px;
    margin-left: auto !important;
    margin-right: auto !important;
}

.woocommerce-LostPassword.lost_password {
	text-align: center;
	text-decoration-line: unset;
}

.woocommerce-LostPassword.lost_password a ,
label.woocommerce-form__label.consent-checkbox span {
	color: white;
text-decoration-line: unset;
}

label.woocommerce-form__label.consent-checkbox span a {
	color: #6fffe9;
}


.woocommerce-MyAccount-content address ,
.woocommerce-MyAccount-content tr th:first-child ,
.woocommerce-MyAccount-content tr td:first-child ,
.woocommerce-MyAccount-navigation {
    padding-left: 0 !important;
}

.woocommerce-account .woocommerce-MyAccount-content {
    text-align: left;
}

.wc-block-cart-item__wrap {
	text-align: left;
  font-family: 'Poppins', sans-serif; }

.wc-block-cart-item__wrap .price {
	font-size: unset; }

.wc-block-cart-item__wrap a {
    color: #6fffe9;
    text-decoration: none;
    transition: 0.3s; }

.woocommerce-MyAccount-navigation {
	background: unset;
  height: unset;
	padding: 20px; }

.woocommerce-MyAccount-navigation ul li {
	padding: 10px 0; }

.woocommerce-MyAccount-navigation ul li.is-active a {
	color: #6fffe9; }

.woocommerce-MyAccount-navigation ul {
  max-width: 200px;
	display: block;
	text-align: left; }

.woocommerce-account h1 {
	margin-bottom: 30px;
}


.woocommerce-MyAccount-content a {
	text-decoration: unset;
	color: #6fffe9; }

.woocommerce-account form .form-row label {
    text-align: left; }

.woocommerce-account .select2-container .select2-selection {
		background: unset !important; }

.woocommerce-account .select2-selection__rendered {
	text-align: left;
	border: 1px solid #555;
	line-height: 47px !important;
	padding: 0 15px !important;
	color: white !important; }

.woocommerce-account form .form-row .input-text, 
.woocommerce-account form .form-row select {
 
    display: block;
    width: 100%;
    margin: 0;
    line-height: normal;
    height: auto;
    background: unset;
    color: white;
    border: 1px solid #555;
    padding: 15px;
    border-radius: 0 !important;
}


.select2-container .select2-selection--single .select2-selection__arrow b {
    border: none;
    display: block;
    filter: invert(100%);
    background-size: 16px;
    width: 16px;
    height: 16px;
    position: absolute;
    top: 50%;
    left: 0;
    margin: -8px 0 0;
}

#order_review button ,
.woocommerce button.button {
	float: right;
	border-radius: 0;
	color: #000;
	padding: 15px 20px;
	background: #6fffe9;
}

body.woocommerce-checkout .woocommerce-notices-wrapper ,
.woocommerce-MyAccount-navigation-link--downloads {
	display: none; }

/* Style the container around Stripe elements */
.woocommerce-checkout .wc-stripe-elements-field {
    background: #fff;
    border: 1px solid #ccc;
    padding: 12px;
    border-radius: 6px;
}

/* Style label above the Stripe fields */
.woocommerce-checkout .woocommerce-input-wrapper label {
    font-weight: bold;
    margin-bottom: 8px;
    display: block;
}

.woocommerce-orders-table a.button ,
a.woocommerce-Button.button {
    background: #6fffe9 !important;
    color: #0b0f19 !important;
		display: inline-block;
    padding: 12px 25px;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.woocommerce-orders-table a.button {
	font-size: 0.8rem;
	padding: 10px;  }

.no_subscriptions.woocommerce-message {
	border: unset;
	color: white;
	background: unset; }

fieldset ,
#wc-stripe-upe-form {
	border: unset !important;
}

.wc_payment_methods.payment_methods li input ,

.wc_payment_methods.payment_methods li label ,

.woocommerce-checkout #payment div.payment_box::before {
	display: none !important; }

.payment_box.payment_method_stripe {
	background: unset !important;
}
.testmode-info {
	color: white; }

#wc-stripe-upe-form {
	display: block !important; }

@media (max-width: 767px) {
	
	section.content {
		padding: 50px 20px; 	}
	
	.woocommerce-MyAccount-navigation {
		padding: 20px 0 ;	
		padding-top: 0; 	}
	
.woocommerce table.my_account_orders td, .woocommerce table.my_account_orders th {
        padding: 4px 0;
    }
}