:root {
  --nnx-primary: #10b981; /* teal/green */
  --nnx-dark: #0b1324;
  --nnx-accent: #6366f1;
  --nnx-soft: #edf2f7;
}
.pricing-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.plan {
  background: radial-gradient(
    1200px 600px at 10% -10%,
    rgba(16, 185, 129, 0.25),
    transparent
  );
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  max-width: 450px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-wrap: nowrap;
}
.plan.best {
  border: 2px solid #10b981;
  position: relative;
}
.plan.best::before {
  content: "Most Popular";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #10b981;
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}
.plan {
  border: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}
.plan:hover {
  border-color: rgba(16, 185, 129, 0.5);
  transform: translateY(-2px);
}
.plan.selected {
  border: 2px solid #10b981;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
  transform: translateY(-2px);
}
.plan.selected .select-btn {
  background: #10b981;
}
.plan h2 {
  margin-top: 0;
  font-size: 24px;
}
.price {
  font-size: 28px;
  margin: 15px 0;
  color: #eee;
}
.features {
  margin: 15px 0;
}
.features ul {
  padding-left: 0;
  list-style: none !important;
}
.features li {
  margin: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  list-style-type: none !important;
}
.features li i {
  color: #28a745;
}
.feature-list {
  list-style: none !important;
}
.select-btn {
  background: #007bff;
  color: #fff;
  text-align: center;
  padding: 12px 0;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  display: block;
  margin-top: 20px;
}
.plan.best .select-btn {
  background: #28a745;
}
html,
body {
  scroll-behavior: smooth;
  background: #0f172a;
  color: #e2e8f0;
}
@media (max-width: 991px) {
  .navbar-collapse {
    background-color: #0b132b;
    padding: 1rem;
    border-radius: 0.5rem;
  }

  .nav-link {
    text-align: center;
    margin: 0.5rem 0;
  }

  .btn {
    width: 100%;
    margin-top: 10px;
  }
}
.navbar {
  background: rgba(15, 23, 42, 0.7) !important;
  backdrop-filter: blur(8px);
}
.navbar-nav .nav-link:hover {
  color: #10b981 !important;
  transition: color 0.3s ease;
}
.navbar-nav .nav-link.active {
  color: #10b981 !important;
  font-weight: 600;
  position: relative;
}
.navbar-nav .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: #10b981;
  border-radius: 1px;
}
.brand-badge {
  letter-spacing: 0.6px;
}
.hero {
  position: relative;
  background: radial-gradient(
      1200px 600px at 10% -10%,
      rgba(16, 185, 129, 0.25),
      transparent
    ),
    radial-gradient(
      1000px 500px at 110% 10%,
      rgba(99, 102, 241, 0.25),
      transparent
    );
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-direction: column !important;
  width: 100% !important;
  overflow: hidden !important;
}
.hero h1 {
  font-weight: 800;
  line-height: 1.1;
}
.glass {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.25rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 100%;
  display: grid;
  place-items: center;
}
.section-title {
  font-weight: 800;
}
.check i {
  margin-right: 0.5rem;
}
.card {
  background: #0b1324;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.card:hover {
  transform: translateY(-2px);
  transition: 0.2s ease;
  border-color: rgba(16, 185, 129, 0.4);
}
.btn-whatsapp {
  --bs-btn-bg: #25d366;
  --bs-btn-border-color: #25d366;
  --bs-btn-hover-bg: #1fb257;
  --bs-btn-hover-border-color: #1fb257;
  color: #0b1324;
  font-weight: 700;
}
.btn-outline-soft {
  border-color: rgba(255, 255, 255, 0.2);
  color: #e2e8f0;
}
.btn-outline-soft:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
}
.feature-list li {
  margin-bottom: 0.5rem;
}
.gradient-text {
  background: linear-gradient(90deg, #a7f3d0, #93c5fd, #c4b5fd);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.floating-wa {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background-color: #25d366;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* box-shadow: 0 10px 30px rgba(16, 185, 129, 0.35);
  transition: box-shadow 0.3s ease; */
}
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.badge-soft {
  background: rgba(37, 211, 102, 0.2);
  border: 1px solid rgba(37, 211, 102, 0.5);
  color: #e2e8f0;
}
a {
  text-decoration: none;
}
/* Improve visibility of h6 headings in cards */
.card h6 {
  color: #e2e8f0;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.card ul {
  padding-left: 1.5rem;
  margin-bottom: 0;
}
.card ul li {
  margin-bottom: 0.25rem;
  color: #8a8f95;
}
p {
  color: #b2b7be;
}
.strike {
  text-decoration: line-through;
  color: #aaa;
}

.plan ul {
  list-style: none;
}

.plan li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 0px;
  max-width: 100%;
}
.display-5 {
  font-size: 5rem !important;
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
  font-weight: 700 !important;
  text-align: center !important;
}
@media (max-width: 768px) {
  .plan {
    width: 90% !important;
    max-width: 100% !important;
    height: auto !important;
    padding: 20px !important;
  }

  .plan h2 {
    margin: 0 !important;
    padding: 0 !important;
  }

  .price {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 2rem !important;
  }

  .select-btn {
    margin-top: 0px !important;
  }

  .features {
    max-height: 300px;
    overflow-y: auto;
    padding-bottom: 10px;
    padding-top: 10px;
  }

  .display-5 {
    font-size: 2.5rem !important;
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  body {
    padding: 0 !important;
    margin: 0 !important;
    overflow-x: hidden !important;
    width: 100% !important;
  }
  .navbar-brand {
    font-size: 1.2rem;
  }

  .mobile-view {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
  }

  .container {
    max-width: 100% !important;
    overflow-x: hidden !important;
    text-align: center !important;
    font-size: 0.7rem !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .btn {
    max-width: 150px !important;
    font-size: 0.8rem !important;
    height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .custom-card {
    max-width: 100% !important;
    overflow-x: hidden !important;
    text-align: center !important;
    font-size: 0.7rem !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .custom-wrapper {
    max-width: 50% !important;
    height: 180px !important;
    overflow-x: hidden !important;
    text-align: left !important;
    font-size: 0.7rem !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    flex-wrap: wrap !important;
  }

  .custom-wrapper ul {
    padding-left: 10px !important;
    list-style: none !important;
  }

  .custom-wrapper ul li {
    font-size: 0.7rem !important;
  }

  .icon-badge {
    width: 40px !important;
    height: 40px !important;
    padding: 0 !important;
  }

  .icon-badge i {
    font-size: 1rem !important;
  }

  .custom-h6 {
    font-size: 0.8rem !important;
  }

  .custom-content {
    width: 200px !important;
    overflow-x: hidden !important;
    text-align: center !important;
    font-size: 0.7rem !important;
  }
  .custom-content ul {
    padding-left: 10px !important;
    width: 100% !important;
    list-style: none !important;
  }

  .custom-content ul li {
    font-size: 0.7rem !important;
    width: 100% !important;
    padding: 0 !important;
    text-align: left !important;
  }

  .custom-card-container {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
}

@media (max-width: 924px) {
  .mobile-view {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
  }
}

.contact-section,
.enquiry-section {
  background: rgba(255, 255, 255, 0.06);
}

.enquiry-section {
  width: 80%;
  padding: 2rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links li a {
  color: #e2e8f094 !important;
}

.footer-links li a:hover {
  color: #10b981 !important;
}

.integration-marquee {
  background: var(--nnx-dark);
  overflow: hidden;
  padding: 30px 0;
}

.marquee {
  display: flex;
  overflow: hidden;
  position: relative;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: scroll 25s linear infinite;
}

.marquee-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #e2e8f0;
  min-width: 120px;
}

.integration-logo {
  opacity: 0.8;
  transition: 0.3s ease;
}

.integration-logo:hover {
  filter: none;
  opacity: 1;
  transform: scale(1.1);
}

.marquee-item p {
  margin-top: 8px;
  font-size: 0.9rem;
  color: #b2b7be;
}

/* 👇 Adjust speed by changing duration (lower = faster) */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-250%);
  }
}

/* 🧠 Optional: pause on hover */
.integration-marquee:hover .marquee-content {
  animation-play-state: paused;
}

/* Responsive tweak for mobile */
@media (max-width: 768px) {
  .marquee-content {
    gap: 40px;
    animation-duration: 20s;
  }
}

.platform-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px 10px;
  transition: 0.3s ease;
}

.platform-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.services .section-title {
  font-weight: 700;
  font-size: 1.8rem;
  color: #fff;
}

.services {
  min-height: 100px;
  filter: brightness(0.6) contrast(1.15) saturate(1.05);
}
.service-img {
  max-width: 90%;
  transition: transform 0.5s ease, box-shadow 0.4s ease;
}
.service-img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 40px rgba(16, 185, 129, 0.3);
}
ul li {
  margin-bottom: 0.4rem;
}
.gradient-text {
  background: linear-gradient(90deg, var(--nnx-primary), var(--nnx-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lazy-blur {
  filter: blur(10px);
  transition: filter 0.3s ease-out;
}

.lazy-blur.loaded {
  filter: blur(0);
}

.lead {
  color: #9ca2a9;
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.8rem !important;
    line-height: 1.3 !important;
  }

  .hero p {
    font-size: 0.95rem !important;
    padding: 0 15px;
  }

  .hero .display-5 {
    font-size: 2rem !important;
  }

  .carousel-item img {
    height: 60vh !important;
    object-fit: cover;
  }
}
section {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (max-width: 768px) {
  .platform-card {
    margin-bottom: 1.5rem;
  }
  .platform-card .icon {
    font-size: 2rem;
  }
}
@media (max-width: 576px) {
  footer .container {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .btn {
    width: 100%;
  }
}
