@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

body {
  background-color: #000 !important;
  font-family: "Poppins", sans-serif;
}

/* =========================
   NAVBAR
========================= */

.custom-navbar {
  background: rgba(10, 10, 10, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 255, 255, 0.06);

  padding: 5px 20px;
  /* border-radius: 18px; */

  transition: 0.3s ease;
}

/* =========================
   NAV LINKS
========================= */

.custom-nav {
  gap: 18px;
}

.custom-nav .nav-link {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  font-size: 15px;
  position: relative;
  transition: 0.3s ease;
  padding: 8px 0;
}

.custom-nav .nav-link:hover {
  color: #ff0000;
}

.custom-nav .nav-link.active {
  color: #ff0000;
  font-weight: 600;
}

.custom-nav .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: #ff0000;
  border-radius: 10px;
}

/* =========================
   TOGGLER
========================= */

.navbar-toggler {
  border: none !important;
  box-shadow: none !important;
  padding: 0;
}

.navbar-toggler:focus {
  box-shadow: none !important;
}

.navbar-toggler i {
  color: #fff;
  font-size: 34px;
  transition: 0.3s ease;
}

.navbar-toggler:hover i {
  color: #ff0000;
  transform: rotate(90deg);
}
.navbar-menu {
  display: none;
}

.navbar-menu.active {
  display: block;
}

@media (min-width: 992px) {

  .navbar-menu {
    display: block !important;
  }
}
/* =========================
   MOBILE NAVBAR
========================= */

@media (max-width: 991px) {

  .custom-navbar {
    padding: 14px 18px;
  }

  .navbar-collapse {
    background: rgba(15, 15, 15, 0.92);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    padding: 20px;
    margin-top: 18px;

    /* border-radius: 18px; */

    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .custom-nav {
    gap: 8px;
  }

  .navbar-nav {
    align-items: flex-start !important;
  }

  .custom-nav .nav-link {
    width: 100%;
    padding: 12px 0;
    font-size: 16px;
  }

  .custom-nav .nav-link.active::after {
    bottom: 4px;
  }
}
.app-showcase-section {
  background: #000;
  padding: 100px 0;
  overflow: hidden;
}

.showcase-badge {
  color: #ff3b3b;
  font-weight: 600;
  margin-bottom: 15px;
}

.showcase-title {
  color: #fff;
  font-size: 58px;
  font-weight: 800;
}

.showcase-title span {
  color: #ff0000;
}

.showcase-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

/* SLIDER */

.showcase-slider {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  padding: 20px;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.showcase-slider::-webkit-scrollbar {
  display: none;
}

/* CARD */

.showcase-card {
  width: 340px;
  min-width: 340px;
  height: 620px;
  perspective: 1500px;
  flex-shrink: 0;
}

.card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 1s;
}

.showcase-card.flipped .card-inner {
  transform: rotateY(180deg);
}

.card-face {
  position: absolute;
  width: 100%;
  height: 558px;
  border-radius: 28px;
  overflow: hidden;
  backface-visibility: hidden;
  background: linear-gradient(145deg, #111, #1d1d1d);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.card-back {
  transform: rotateY(180deg);
}

/* IMAGE */

.showcase-image {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
}

/* CONTENT */

.showcase-content {
  padding: 28px;
}

.showcase-category {
  color: #ff4d4d;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
}

.showcase-app-name {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.showcase-description {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.9;
  font-size: 14px;
  margin-bottom: 18px;
}

.showcase-extra-text {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 25px;
}

/* EXPLORE BUTTON */

.explore-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  background: linear-gradient(135deg, #ff0000, #b30000) !important;
  color: #fff !important;
  font-weight: 700;
  transition: 0.4s;
}

.explore-btn:hover {
    transform: translateY(-5px);
    color: #fff;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.6),
                0 0 30px rgba(255, 0, 0, 0.4);
}

/* BACK SIDE */

.back-slideshow {
  position: absolute;
  inset: 0;
}

.back-slideshow .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}

.back-slideshow .slide.active {
  opacity: 1;
}

/* RETRY BUTTON */

.flip-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff0000, #b30000);
  color: #fff;
  z-index: 20;
  font-size: 20px;
  transition: 0.4s;
}

.flip-btn:hover {
  transform: rotate(180deg);
}

/* MOBILE NAV */

.mobile-slider-nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 30px;
}

.slider-btn {
  width: 54px;
  height: 54px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff0000, #b30000);
  color: #fff;
  font-size: 20px;
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .showcase-title {
    font-size: 42px;
  }

  .showcase-card {
    width: 80vw;
    min-width: 80vw;
  }
}

@media (max-width: 768px) {
  .app-showcase-section {
    padding: 80px 0;
  }

  .showcase-title {
    font-size: 34px;
  }

  .showcase-card {
    width: 88vw;
    min-width: 88vw;
    height: 610px;
  }

  .showcase-content {
    padding: 22px;
  }

  .showcase-app-name {
    font-size: 25px;
  }

  .showcase-image {
    height: 220px;
  }
}

.mobile-scroll-indicator {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.mobile-scroll-indicator .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transition: 0.4s ease;
}

.mobile-scroll-indicator .dot.active {
  width: 30px;
  border-radius: 30px;
  background: linear-gradient(135deg, #ff0000, #b30000);
  box-shadow: 0 0 12px rgba(255, 0, 0, 0.6);
}

/* =========================================
   BACK SIDE SLIDER
========================================= */

.back-slideshow {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* NEW SLIDE ANIMATION */

.back-slideshow .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: translateX(100%);
  transition:
    transform 0.9s cubic-bezier(0.77, 0, 0.18, 1),
    opacity 0.9s ease;
}

/* ACTIVE */

.back-slideshow .slide.active {
  opacity: 1;
  transform: translateX(0%);
  z-index: 2;
}

/* PREVIOUS */

.back-slideshow .slide.prev {
  transform: translateX(-100%);
  opacity: 0;
  z-index: 1;
}

@media (max-width: 768px) {
  .mobile-scroll-indicator {
    display: flex;
  }
}

.back-explore-btn {
  position: absolute;
  bottom: 25px;
  left: 30%;
  z-index: 30;
  padding: 12px 24px;
  border-radius: 50px;
  background: linear-gradient(135deg, #ff0000, #b30000);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
}

/* MOBILE NAV */
@media (max-width: 991px) {
  .custom-nav {
    background: rgba(0, 0, 0, 0.95);
    padding: 20px;
    border-radius: 14px;
    margin-top: 15px;
  }

  .custom-nav .nav-link {
    display: block;
    padding: 12px 10px;
  }
}

/* TOGGLER ICON */
.navbar-toggler {
  border: none;
  font-size: 28px;
  color: white;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.tech-marquee {
  height: 100px;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-radius: 14px;
  padding: 10px;
  position: relative;
}

/* scrolling track */
.tech-track {
  display: flex;
  gap: 25px;
  width: max-content;
  animation: scrollTech 18s linear infinite;
}

/* animation */
@keyframes scrollTech {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* item design */
.tech-item {
  min-width: 120px;
  height: 80px;
  background: rgba(255, 0, 0, 0.08);
  border: 1px solid rgba(255, 0, 0, 0.25);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  transition: 0.3s ease;
  backdrop-filter: blur(6px);
}

/* icon */
.tech-item i {
  font-size: 28px;
  color: #ff0000;
}

/* label */
.tech-item span {
  font-size: 12px;
  margin-top: 4px;
  opacity: 0.85;
}

/* hover effect */
.tech-item:hover {
  transform: translateY(-4px);
  background: rgba(255, 0, 0, 0.15);
  border-color: #ff0000;
}

.process-showcase {
  background: linear-gradient(to bottom, #f4f5f8, #ffffff);
  overflow: hidden;
  position: relative;
}

.process-showcase {
  background: #000;
  overflow: hidden;
  position: relative;
}

/* OPTIONAL GLOW EFFECT */

.process-showcase::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: rgba(255, 0, 0, 0.08);
  filter: blur(120px);
  top: -200px;
  left: -100px;
  z-index: 0;
}

.process-showcase::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(0, 102, 255, 0.08);
  filter: blur(120px);
  bottom: -200px;
  right: -100px;
  z-index: 0;
}

.process-showcase .container {
  position: relative;
  z-index: 2;
}

/* TITLE */

.process-title {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.2;
}

.process-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.9;
}

/* FRAME */

.process-frame {
  position: relative;
  padding: 50px 0;
}

/* TRACK */

.process-track {
  display: flex;
  align-items: center;
  gap: 28px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-behavior: smooth;
  padding: 40px 140px;
  scrollbar-width: none;
}

.process-track::-webkit-scrollbar {
  display: none;
}

/* CARD */

.process-card {
  min-width: 360px;
  max-width: 360px;

  background: rgba(255,255,255,0.06);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-radius: 38px;

  overflow: hidden;
  position: relative;

  transition: 0.45s ease;

  transform: scale(0.9);
  opacity: 0.55;

  border: 1px solid rgba(255,255,255,0.08);

  box-shadow:
    0 10px 40px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

/* GLASS SHINE */

.process-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.12),
      transparent 40%
    );
  pointer-events: none;
}

/* ACTIVE CARD */

.process-card.active-card {
  transform: scale(1.05);
  opacity: 1;
  z-index: 3;
}

/* IMAGE */

.process-image {
  height: 260px;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.08),
      rgba(255,255,255,0.02)
    );

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.process-image img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* CONTENT */

.process-content {
  padding: 30px;
  position: relative;
  background: transparent;
}

.process-number {
  position: absolute;
  top: -28px;
  right: 28px;

  width: 58px;
  height: 58px;

  border-radius: 50%;

  background: linear-gradient(135deg, #ff2d2d, #ff5e5e);

  color: #fff;

  font-size: 20px;
  font-weight: 700;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 10px 25px rgba(255, 0, 0, 0.35);
}

.process-content h4 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
}

.process-content p {
  color: rgba(255,255,255,0.7);
  line-height: 1.9;
  margin-bottom: 0;
  font-size: 15px;
  text-align: justify !important;
}

/* ARROWS */

.process-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 68px;
  height: 68px;

  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);

  background: rgba(255,255,255,0.08);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  color: #fff;
  font-size: 28px;

  z-index: 20;

  transition: 0.3s ease;

  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.process-arrow:hover {
  background: #ff2d2d;
  border-color: #ff2d2d;
}

.process-prev {
  left: 40px;
}

.process-next {
  right: 40px;
}

/* TABLET */

@media (max-width: 991px) {

  .process-title {
    font-size: 42px;
  }

  .process-track {
    padding: 40px 80px;
  }

  .process-card {
    min-width: 320px;
    max-width: 320px;
  }

  .process-image {
    height: 220px;
  }

  .process-content h4 {
    font-size: 24px;
  }

  .process-arrow {
    width: 58px;
    height: 58px;
    font-size: 22px;
  }
}

/* MOBILE */

@media (max-width: 767px) {

  .process-showcase {
    padding: 70px 0;
  }

  .process-title {
    font-size: 18px;
  }

  .process-subtitle {
    font-size: 11px;
  }

  .process-frame {
    padding: 20px 0;
  }

  .process-track {
    gap: 18px;
    padding: 20px 20px 50px;
    scroll-snap-type: x mandatory;
  }

  .process-card {
    min-width: 85%;
    max-width: 85%;
    border-radius: 28px;
    scroll-snap-align: center;
    transform: scale(0.95);
  }

  .process-card.active-card {
    transform: scale(1);
  }

  .process-image {
    height: 148px;
  }

  .process-image img {
    width: 80px;
    height: 80px;
  }

  .process-content {
    padding: 18px;
  }

  .process-content p {
    font-size: 11px;
  }

  .process-content h4 {
    font-size: 14px;
  }

  .process-number {
    width: 30px;
    height: 30px;
    font-size: 10px;
    top: -24px;
  }

  .process-arrow {
    width: 27px;
    height: 27px;
    font-size: 12px;
  }

  .process-prev {
    left: 10px;
  }

  .process-next {
    right: 10px;
  }
}

.services-section {
  background: #000;
  overflow: hidden;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
}

.section-subtitle {
  color: rgba(255, 255, 255, 0.7);
  max-width: 750px;
  margin: auto;
  line-height: 1.8;
}

.service-card {
  height: 100%;
  background: linear-gradient(145deg, #0f0f0f, #181818);
  border: 1px solid rgba(255, 0, 0, 0.15);
  border-radius: 22px;
  padding: 35px 25px;
  text-align: center;
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(255, 0, 0, 0.18),
    transparent 35%
  );
  opacity: 0;
  transition: 0.4s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 0, 0, 0.6);
  box-shadow: 0 15px 35px rgba(255, 0, 0, 0.15);
}

.service-icon {
  width: 75px;
  height: 75px;
  margin: auto auto 20px;
  border-radius: 18px;
  background: rgba(255, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 0, 0, 0.25);
  position: relative;
  z-index: 2;
}

.service-icon i {
  font-size: 34px;
  color: #ff0000;
}

.service-card h4 {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.service-card p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
  font-size: 15px;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }

  .service-card {
    padding: 28px 20px;
  }
}

.client-stars {
  display: flex;
  gap: 4px;
}

.client-stars i {
  color: #ffd700;
  font-size: 14px;
  animation: tadaStar 2s infinite;
}

/* Delay each star */
.client-stars i:nth-child(1) {
  animation-delay: 0s;
}

.client-stars i:nth-child(2) {
  animation-delay: 0.15s;
}

.client-stars i:nth-child(3) {
  animation-delay: 0.3s;
}

.client-stars i:nth-child(4) {
  animation-delay: 0.45s;
}

.client-stars i:nth-child(5) {
  animation-delay: 0.6s;
}

/* Tada Animation */
@keyframes tadaStar {
  0% {
    transform: scale(1);
  }

  10%,
  20% {
    transform: scale(0.9) rotate(-8deg);
  }

  30%,
  50%,
  70%,
  90% {
    transform: scale(1.2) rotate(8deg);
  }

  40%,
  60%,
  80% {
    transform: scale(1.2) rotate(-8deg);
  }

  100% {
    transform: scale(1);
  }
}
.client-nav-btn {
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background: #ff000054;
  color: #fff;
  font-size: 18px;
  transition: 0.3s ease;
}
.client-rating {
  position: relative;
  z-index: 2;
  color: #ff0000;
  font-size: 14px;
  letter-spacing: 2px;
}

.client-rating i {
  margin-right: 2px;
}

.client-nav-btn:hover {
  background: #cc0000;
  transform: scale(1.08);
}
#client-says {
  background: #000;
  overflow: hidden;
}

.client-scroll-wrapper {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

/* Hide scrollbar */
.client-scroll-wrapper::-webkit-scrollbar {
  height: 6px;
}

.client-scroll-wrapper::-webkit-scrollbar-thumb {
  background: #ff0000;
  border-radius: 50px;
}

.client-scroll-wrapper::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
}

.client-card {
  min-width: 340px;
  max-width: 340px;
  background: linear-gradient(145deg, #111, #1a1a1a);
  border: 1px solid rgba(255, 0, 0, 0.25);
  border-radius: 22px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: 0.4s ease;
  flex-shrink: 0;
}

.client-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 0, 0, 0.15),
    transparent,
    rgba(255, 0, 0, 0.08)
  );
  z-index: 0;
}

.client-card:hover {
  transform: translateY(-8px);
  border-color: #ff0000;
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.25);
}

.quote-icon {
  font-size: 60px;
  color: #ff0000;
  line-height: 1;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.client-text {
  color: rgba(255, 255, 255, 0.85);
  /* line-height: 1.8; */
  font-size: 15px;
  text-align: justify;
  position: relative;
  z-index: 2;
}

.client-img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #ff0000;
  position: relative;
  z-index: 2;
}

.client-card h6,
.client-card small {
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .client-card {
    min-width: 290px;
    max-width: 290px;
    padding: 24px;
  }

  .quote-icon {
    font-size: 48px;
  }
}

.hero-content-box {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 0, 0, 0.12);
  border: 1px solid rgba(255, 0, 0, 0.25);
  color: #fff;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(10px);
  animation: pulseBadge 2s infinite;
}

.hero-subtitle {
  color: #fff;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 15px;
}

.hero-title {
  font-size: 58px;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 25px;
}

.hero-description {
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
  line-height: 1.9;
  max-width: 700px;
}

.hero-btn-primary {
  background: linear-gradient(135deg, #ff0000, #b30000);
  color: #fff;
  border-radius: 14px;
  padding: 14px 30px;
  font-weight: 600;
  border: none;
  transition: 0.35s ease;
}

.hero-btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.35);
  color: #fff;
}

.hero-btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 14px;
  padding: 14px 30px;
  font-weight: 600;
  transition: 0.35s ease;
  background: rgba(255, 255, 255, 0.04);
}

.hero-btn-outline:hover {
  background: #fff;
  color: #000;
}

.counter-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  text-align: center;
  padding: 25px 15px;
  transition: 0.35s ease;
  backdrop-filter: blur(12px);
  height: 100%;
}

.counter-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 0, 0, 0.35);
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.12);
}

.counter-card h3 {
  color: #fff;
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 10px;
}

.counter-card h3::after {
  content: "+";
}

.counter-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  font-weight: 500;
}

@keyframes pulseBadge {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.4);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(255, 0, 0, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
  }
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 42px;
  }

  .hero-subtitle {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 34px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .hero-description {
    font-size: 15px;
  }

  .counter-card h3 {
    font-size: 30px;
  }
}

.contact-form-card {
  position: relative;
  background: linear-gradient(145deg, #0d0d0d, #161616);
  border: 1px solid rgba(255, 0, 0, 0.18);
  border-radius: 28px;
  padding: 23px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.form-glow {
  position: absolute;
  width: 220px;
  height: 220px;
  background: rgba(255, 0, 0, 0.15);
  filter: blur(80px);
  top: -80px;
  right: -80px;
  border-radius: 50%;
}

.form-heading {
  color: #fff;
  font-weight: 700;

  position: relative;
  z-index: 2;
}

.form-subtitle {
  color: rgba(255, 255, 255, 0.65);
  /* margin-bottom: 35px; */
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

.form-group-custom label {
  color: #fff;
  margin-bottom: 10px;
  display: block;
  font-weight: 500;
}

.input-box {
  position: relative;
}

.input-box i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #ff0000;
  font-size: 16px;
  z-index: 2;
}

.textarea-box i {
  top: 22px;
  transform: none;
}

.contact-form-card .form-control {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  height: 45px;
  border-radius: 16px;
  color: #fff;
  padding-left: 50px;
  transition: 0.3s ease;
  box-shadow: none;
}

.contact-form-card textarea.form-control {
  height: auto;
  min-height: 130px;
  padding-top: 16px;
}

.contact-form-card .form-control::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.contact-form-card .form-control:focus {
  border-color: #ff0000;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.15);
  color: #fff;
}

.submit-btn-custom {
  width: 100%;
  height: 50px;
  border: none;
  border-radius: 18px;
  background: linear-gradient(135deg, #ff0000, #b30000);
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
}

.submit-btn-custom::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  transform: translateX(-100%);
  transition: 0.6s;
}

.submit-btn-custom:hover::before {
  transform: translateX(100%);
}

.submit-btn-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.35);
}

@media (max-width: 768px) {
  .contact-form-card {
    padding: 28px;
    border-radius: 22px;
  }

  .form-heading {
    font-size: 26px;
  }

  .form-subtitle {
    font-size: 14px;
  }

  .contact-form-card .form-control {
    height: 54px;
  }

  .submit-btn-custom {
    height: 56px;
  }
}

.offer-timer-box {
  background: linear-gradient(
    145deg,
    rgba(255, 0, 0, 0.12),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(255, 0, 0, 0.25);
  border-radius: 22px;
  padding: 22px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.offer-timer-box::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(255, 0, 0, 0.15);
  filter: blur(70px);
  top: -80px;
  right: -80px;
}

.timer-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 2;
}

.offer-timer {
  font-size: 52px;
  font-weight: 800;
  color: #ff0000;
  line-height: 1;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
  animation: pulseTimer 1.2s infinite;
}

.offer-note {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

.offer-condition {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  line-height: 1.6;
}

@keyframes pulseTimer {
  0% {
    transform: scale(1);
    text-shadow: 0 0 0 rgba(255, 0, 0, 0.5);
  }

  50% {
    transform: scale(1.06);
    text-shadow: 0 0 25px rgba(255, 0, 0, 0.7);
  }

  100% {
    transform: scale(1);
    text-shadow: 0 0 0 rgba(255, 0, 0, 0.5);
  }
}

@media (max-width: 768px) {
  .offer-timer {
    font-size: 42px;
  }

  .offer-note {
    font-size: 14px;
  }
}
.faq-section {
    background: #000;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: "";
    position: absolute;
    top: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle,
            rgba(255, 0, 0, 0.15),
            transparent 70%);
}

.faq-section::after {
    content: "";
    position: absolute;
    right: -200px;
    bottom: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle,
            rgba(255, 0, 0, 0.12),
            transparent 70%);
}

.faq-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    border: 1px solid rgba(255, 0, 0, 0.3);
    background: rgba(255, 0, 0, 0.08);
    color: #ff3b3b;
    font-size: 14px;
    font-weight: 600;
}

.faq-title {
    color: #fff;
    font-weight: 800;
    font-size: 2.8rem;
}

.faq-subtitle {
    color: rgba(255,255,255,.65);
    max-width: 600px;
    margin: auto;
}

.faq-wrapper {
    max-width: 950px;
    margin: auto;
}

.faq-item {
    background: linear-gradient(
        145deg,
        rgba(18,18,18,.95),
        rgba(10,10,10,.95)
    );
    border: 1px solid rgba(255, 0, 0, 0.15);
    border-radius: 20px;
    margin-bottom: 18px;
    overflow: hidden;
    transition: .35s ease;
}

.faq-item:hover {
    border-color: rgba(255, 0, 0, 0.4);
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.15);
}

.faq-question {
    width: 100%;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    text-align: left;
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question i {
    color: #ff2e2e;
    font-size: 28px;
    transition: .3s;
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}

.faq-answer p {
    color: rgba(255,255,255,.75);
    line-height: 1.9;
    padding: 0 28px 24px;
    margin: 0;
}

.faq-item.active {
    border-color: rgba(255, 0, 0, 0.5);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.18);
}

.faq-item.active .faq-answer {
    max-height: 250px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

@media(max-width:768px){

    .faq-title{
        font-size:2rem;
    }

    .faq-question{
        padding:20px;
        font-size:15px;
    }

    .faq-answer p{
        padding:0 20px 20px;
        font-size:14px;
    }
}
.solutions-showcase {
    background: #000;
    padding: 100px 0;
    overflow: hidden;
}

.solution-label {
    color: #ff3030;
    letter-spacing: 4px;
    font-weight: 700;
    font-size: 13px;
}

.solution-title {
    color: #fff;
    font-size: 3rem;
    font-weight: 800;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 25px;
}

.solution-flip {
    height: 180px;
    perspective: 1000px;
}

.solution-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform .8s;
    transform-style: preserve-3d;
}

.solution-flip:hover .solution-inner {
    transform: rotateY(180deg);
}

.solution-front,
.solution-back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    border-radius: 24px;
}

.solution-front {
    background:
        linear-gradient(
            135deg,
            rgba(255,0,0,.08),
            rgba(255,255,255,.03)
        );

    border: 1px solid rgba(255,0,0,.15);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    backdrop-filter: blur(20px);

    transition: .4s;
}

.solution-front i {
    font-size: 54px;
    color: #ff2b2b;
    margin-bottom: 15px;
}

.solution-front h5 {
    color: #fff;
    font-size: 18px;
    margin: 0;
    text-align: center;
    padding: 0 20px;
}

.solution-back {
    transform: rotateY(180deg);

    background:
        linear-gradient(
            135deg,
            #ff0000,
            #b30000
        );

    display: flex;
    justify-content: center;
    align-items: center;
}

.explore-btn1 {
    background: #fff;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 50px;
    transition: .3s;
}

.explore-btn1:hover {
    transform: translateY(-3px);
    color: #000;
}

.solution-flip:hover .solution-front {
    box-shadow:
        0 0 25px rgba(255,0,0,.25),
        0 0 50px rgba(255,0,0,.12);
}

@media(max-width:768px){

    .solution-title{
        font-size:2rem;
    }

    .solution-grid{
        grid-template-columns:1fr;
    }

    .solution-flip{
        height:160px;
    }

    /* Mobile tap effect */
    .solution-flip:active .solution-inner{
        transform:rotateY(180deg);
    }
}
.stats-section {
    background: #000;
    padding: 90px 0;
    position: relative;
}

.stats-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(255, 0, 0, 0.08);
    border: 1px solid rgba(255, 0, 0, 0.25);
    color: #ff3b3b;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 600;
}

.stats-title {
    color: #fff;
    font-size: 2.8rem;
    font-weight: 800;
    margin-top: 18px;
}

.stats-card {
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            rgba(255,0,0,.06),
            rgba(255,255,255,.02)
        );

    border: 1px solid rgba(255,0,0,.12);

    border-radius: 24px;

    padding: 28px 22px;

    backdrop-filter: blur(20px);

    transition: .4s ease;
}

.stats-card::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;

    width: 100px;
    height: 100px;

    background: rgba(255,0,0,.08);

    border-radius: 50%;
}

.stats-card:hover {
    transform: translateY(-10px);

    border-color: rgba(255,0,0,.35);

    box-shadow:
        0 0 25px rgba(255,0,0,.15),
        0 0 60px rgba(255,0,0,.08);
}

.stats-icon {
    position: absolute;
    right: 18px;
    top: 18px;

    font-size: 34px;
    color: rgba(255,0,0,.8);
}

.stats-card h3 {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 5px;
}

.stats-card p {
    color: rgba(255,255,255,.65);
    margin: 0;
    font-size: 14px;
    letter-spacing: .5px;
}

@media(max-width:768px){

    .stats-section{
        padding:60px 0;
    }

    .stats-title{
        font-size:2rem;
    }

    .stats-card{
        padding:20px 15px;
        border-radius:18px;
    }

    .stats-card h3{
        font-size:2rem;
    }

    .stats-card p{
        font-size:12px;
    }

    .stats-icon{
        font-size:26px;
    }
}
.nx-footer {
    background: #050505;
    position: relative;
    overflow: hidden;
    padding: 100px 0 30px;
}

.footer-glow {
    position: absolute;
    top: -250px;
    right: -250px;
    width: 600px;
    height: 600px;

    background:
        radial-gradient(
            rgba(255,0,0,.15),
            transparent 70%
        );

    pointer-events: none;
}

.footer-brand h2 {
    color: #fff;
    font-size: 3rem;
    font-weight: 800;
}

.footer-brand h2 span {
    color: #ff2222;
}

.footer-brand p {
    color: rgba(255,255,255,.65);
    line-height: 1.9;
    margin-top: 15px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.footer-social a {
    width: 55px;
    height: 55px;

    border-radius: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    text-decoration: none;

    background:
        rgba(255,255,255,.03);

    border: 1px solid rgba(255,0,0,.15);

    transition: .4s;
}

.footer-social a i {
    font-size: 24px;
}

.footer-social a:hover {
    background: #ff2222;
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255,0,0,.35);
}

.footer-links h5 {
    color: #fff;
    margin-bottom: 25px;
    font-weight: 700;
}

.footer-links a {
    display: block;
    text-decoration: none;

    color: rgba(255,255,255,.65);

    margin-bottom: 14px;

    transition: .3s;
}

.footer-links a:hover {
    color: #ff2222;
    padding-left: 8px;
}

.footer-cta {
    margin-top: 70px;

    background:
        linear-gradient(
            135deg,
            rgba(255,0,0,.15),
            rgba(255,0,0,.05)
        );

    border: 1px solid rgba(255,0,0,.15);

    border-radius: 25px;

    padding: 40px;

    text-align: center;
}

.footer-cta h3 {
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 35px;

    border-radius: 60px;

    background: #ff2222;

    color: #fff;
    text-decoration: none;

    font-weight: 600;

    transition: .4s;
}

.footer-btn:hover {
    transform: translateY(-5px);
    color: #fff;
}

.footer-divider {
    margin: 50px 0 25px;

    height: 1px;

    background:
        linear-gradient(
            to right,
            transparent,
            rgba(255,0,0,.5),
            transparent
        );
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,.75);
    margin: 0;
}

.footer-bottom span {
    color: #ff2222;
    font-weight: 700;
}

@media(max-width:768px){

    .footer-brand h2{
        font-size:27px;
    }

    .footer-cta{
        padding:25px;
    }

    .footer-cta h3{
        font-size:1.3rem;
    }
}