/* ===== GLOBAL ===== */
body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background: #fff;
  color: #333;
  overflow-x: hidden;
}







/* ======NAVBAR ====== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.1);
  z-index: 1000;
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 90px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s;
}

.logo img:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s;
  position: relative;
}

.nav-links a:hover {
  color: #48bbff;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #48bbff, #60a5fa);
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  margin-top: 0.5rem;
  opacity: 0;
  visibility: hidden;
  background-color: #1a1919;
  box-shadow: #302f2f33 0px 10px 15px -3px, #302f2f1a 0px 4px 6px -2px;
  border: 1px solid rgba(59, 130, 246, 0.15);
  transform: translateY(-10px);
  transition: all 0.3s;
  overflow: hidden;
  padding-bottom: 5px;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.875rem 1.25rem;
  color: #ffffff;
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(59, 130, 246, 0.08);
  transition: all 0.3s;
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

.dropdown-menu a:hover {
  color: #48bbff;
  padding-left: 1.5rem;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  width: 22px;
  height: 2px;
  background: #1a1919;
  transition: all 0.3s;
  border-radius: 2px;
  margin-right: 15px;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Demo content */
.content {
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.content h1 {
  margin-bottom: 1rem;
  color: #111;
}

.content p {
  line-height: 1.6;
  color: #444;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {

  html,
  body {
    overflow-x: hidden;
    /* Prevent horizontal scroll */
  }

  nav {
    width: 100%;
    padding: 0 1rem;
    overflow: hidden;
  }

  .mobile-toggle {
    display: flex;
    z-index: 1001;
  }

  .nav-links {
    position: fixed;
    top: 40px;
    /* Slightly below the nav bar */
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    /* Full height menu */
    background: #1a1919;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 1rem;
    gap: 0;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-bottom: 2px solid rgba(59, 130, 246, 0.2);
    overflow-y: auto;
    /* allow scroll inside the menu if needed */
    z-index: 1000;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    animation: slideIn 0.3s ease forwards;
    opacity: 0;
  }

  .nav-links.active li:nth-child(1) {
    animation-delay: 0.1s;
  }

  .nav-links.active li:nth-child(2) {
    animation-delay: 0.15s;
  }

  .nav-links.active li:nth-child(3) {
    animation-delay: 0.2s;
  }

  .nav-links.active li:nth-child(4) {
    animation-delay: 0.25s;
  }

  @keyframes slideIn {
    to {
      opacity: 1;
    }
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a {
    display: block;
    padding: 1rem 0;
    width: 100%;
    font-size: 0.95rem;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links a:hover {
    color: #3b82f6;
    padding-left: 0.5rem;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    margin: 0.5rem 0 0 0;
    padding-left: 1rem;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .dropdown.active .dropdown-menu {
    display: block;
    animation: dropdownSlide 0.3s ease;
  }

  @keyframes dropdownSlide {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .dropdown-menu a {
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
  }

  .dropdown-menu a:hover {
    padding-left: 1.25rem;
  }
}
/* ===== NAVBAR SCROLL EFFECT ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  z-index: 1000;
  transition: all 0.4s ease;
  background: transparent;
  box-shadow: none;
  border-bottom: none;
}

/* When scrolled on desktop */
nav.scrolled {
  background: #1a1a1a;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.1);
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

/* LOGO */
.logo img {
  height: 90px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.4s ease, transform 0.3s ease;
  opacity: 0;
}

nav.scrolled .logo img {
  opacity: 1;
  transform: scale(1);
}

nav:not(.scrolled) .logo img {
  opacity: 0;
  transform: scale(0.9);
}

/* NAV LINKS */
.nav-links a {
  color: #ffffff;
  transition: color 0.3s;
}
.nav-links .dropdown-menu a {
  color: #ffffff;
}
nav.scrolled .nav-links a {
  color: #ffffff;
}

.nav-links a:hover {
  color: #48bbff;
}

/* MOBILE TOGGLE COLOR */
.mobile-toggle span {
  background: #ffffff;
  transition: background 0.3s;
}

nav.scrolled .mobile-toggle span {
  background: #ffffff;
}

/* ===== MOBILE BEHAVIOR ===== */
@media (max-width: 768px) {
  nav {
    background: #1a1919 !important;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.1);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
  }

  .logo img {
    opacity: 1 !important;
    transform: scale(1) !important;
  }

  .nav-links a {
    color: #ffffff !important;
  }

  .mobile-toggle span {
    background: #ffffff !important;
    margin-right: 30px;
  }
}

/* =====NAVBAREND===== */





/* ===== HERO SECTION ===== */
/* ===== BASE HERO SECTION ===== */
/* Used for: Desktop screens 1024px and above */
.nox-hero-section-main {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: linear-gradient(
    61deg,
    rgba(49, 80, 145, 1) 0%,
    rgba(0, 115, 186, 1) 35%,
    rgba(0, 155, 216, 1) 100%
  );
  overflow: hidden;
  padding: 20px;
}

/* ===== BACKGROUND LOGO (COMPANY LOGO) ===== */
/* Desktop: Logo moves with scroll (background-attachment: fixed) */
/* Mobile: Logo stays fixed in position (background-attachment: scroll) */
.nox-hero-section-main::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("../assets/white logo.svg") no-repeat left -70% center;
  background-size: 80% 80%;
  background-attachment: fixed; /* Desktop: Moves with scroll */
  opacity: 1;
  filter: brightness(100%) contrast(130%)
    drop-shadow(0 0 20px rgba(255, 255, 255, 0.15));
  z-index: 1;
}

/* ===== WAVY CIRCLE (#1a1919 ANIMATION) ===== */
/* Desktop and all screens: Always visible, rotates continuously */
.nox-wavy-circle-bg {
  --s: 1400px;
  position: absolute;
  bottom: -450px;
  left: -300px;
  width: var(--s);
  aspect-ratio: 1;
  background: #1a1919;
  --g: /calc(var(--s) * 0.217) calc(var(--s) * 0.217)
    radial-gradient(50% 50%, #000 99%, #0000 101%) no-repeat;
  mask: calc(50% + var(--s) * 0.359) calc(50% + var(--s) * 0) var(--g),
    calc(50% + var(--s) * 0.254) calc(50% + var(--s) * 0.254) var(--g),
    calc(50% + var(--s) * 0) calc(50% + var(--s) * 0.359) var(--g),
    calc(50% + var(--s) * -0.254) calc(50% + var(--s) * 0.254) var(--g),
    calc(50% + var(--s) * -0.359) calc(50% + var(--s) * 0) var(--g),
    calc(50% + var(--s) * -0.254) calc(50% + var(--s) * -0.254) var(--g),
    calc(50% + var(--s) * 0) calc(50% + var(--s) * -0.359) var(--g),
    calc(50% + var(--s) * 0.254) calc(50% + var(--s) * -0.254) var(--g),
    radial-gradient(calc(var(--s) * 0.422), #000 99%, #0000 101%) subtract,
    calc(50% + var(--s) * 0.462) calc(50% + var(--s) * 0.191) var(--g),
    calc(50% + var(--s) * 0.191) calc(50% + var(--s) * 0.462) var(--g),
    calc(50% + var(--s) * -0.191) calc(50% + var(--s) * 0.462) var(--g),
    calc(50% + var(--s) * -0.462) calc(50% + var(--s) * 0.191) var(--g),
    calc(50% + var(--s) * -0.462) calc(50% + var(--s) * -0.191) var(--g),
    calc(50% + var(--s) * -0.191) calc(50% + var(--s) * -0.462) var(--g),
    calc(50% + var(--s) * 0.191) calc(50% + var(--s) * -0.462) var(--g),
    calc(50% + var(--s) * 0.462) calc(50% + var(--s) * -0.191) var(--g);
  opacity: 1;
  z-index: 0; /* Behind logo, but behind glass content */
  animation: noxRotateWave 40s linear infinite;
}

@keyframes noxRotateWave {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ===== GLASS CONTENT BOX ===== */
/* Desktop: Positioned on right side */
/* Mobile: Positioned below logo and animation */
.nox-hero-content-glass {
  position: relative;
  z-index: 2; /* Above wavy circle and logo */
  width: 100%;
  max-width: 600px;
  margin-right: 5%;
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nox-hero-content-glass h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

.nox-hero-content-glass p {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: #e0e0e0;
  margin-bottom: 30px;
  line-height: 1.6;
}

.nox-hero-content-glass button {
  background: linear-gradient(135deg, #48bbff, #9FF14E);
  border: none;
  color: #1a1919;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
  align-self: flex-start;
}

.nox-hero-content-glass button:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #48bbff, #9FF14E 100%);
}

/* ===== FEATURE CARDS ===== */
/* ==== FEATURE CARDS CONTAINER ==== */
.nox-feature-cards-container {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-top: 40px;
}

/* ==== CARD LINK WRAPPER ==== */
.nox-feature-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  flex: 1;
}

/* ==== FEATURE CARD ITEM ==== */
.nox-feature-card-item {
  background: #1a1919;
  border-radius: 16px;
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  min-height: 120px;
}

/* ==== HOVER EFFECT ==== */
.nox-feature-card-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
  background: #242424;
}

/* ==== ICON INSIDE CARD ==== */
.nox-feature-card-item svg {
  width: 45px;
  height: 45px;
  margin-bottom: 10px;
  flex-shrink: 0;
}

/* ==== TEXT INSIDE CARD ==== */
.nox-feature-card-item p {
  color: #fff;
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  text-align: center;
  margin-top: 8px;
  margin-bottom: 0;
}

/* ===== 1920x1080 @150% ZOOM (Effective Resolution: 1280x720) ===== */
/* Windows display scaling at 150% */
@media (max-width: 1280px) and (min-width: 1025px) {
  .nox-hero-content-glass {
    max-width: 550px;
    padding: 38px;
  }

  .nox-hero-content-glass h1 {
    font-size: 2.6rem;
    margin-bottom: 18px;
  }

  .nox-hero-content-glass p {
    font-size: 1.05rem;
    margin-bottom: 28px;
  }

  /* Logo adjustments for 150% zoom */
  .nox-hero-section-main::before {
    background-position: left -50% center;
    background-size: 75% 75%;
    background-attachment: fixed; /* Logo moves with scroll on desktop */
  }

  .nox-wavy-circle-bg {
    --s: 1200px;
    bottom: -350px;
    left: -250px;
  }
}

/* ===== 1920x1080 @125% ZOOM (Effective Resolution: 1536x864) ===== */
/* Windows display scaling at 125% */
@media (min-width: 1281px) and (max-width: 1600px) {
  .nox-hero-content-glass {
    max-width: 580px;
    padding: 40px;
  }

  .nox-hero-content-glass h1 {
    font-size: 2.8rem;
  }

  /* Logo adjustments for 125% zoom */
  .nox-hero-section-main::before {
    background-position: left -60% center;
    background-size: 78% 78%;
    background-attachment: fixed; /* Logo moves with scroll on desktop */
  }

  .nox-wavy-circle-bg {
    --s: 1300px;
    bottom: -400px;
    left: -280px;
  }
}

/* ===== 1920x1080 @100% ZOOM AND LARGER (2K, 4K displays) ===== */
/* Full HD and above - no zoom applied */
@media (min-width: 1920px) {
  .nox-hero-content-glass {
    max-width: 650px;
    padding: 45px;
  }

  .nox-wavy-circle-bg {
    --s: 1500px;
    bottom: -200px;
    left: -15%;
  }

  /* Logo adjustments for large screens */
  .nox-hero-section-main::before {
    background-position: left -80% center;
    background-size: 85% 85%;
    background-attachment: fixed; /* Logo moves with scroll on desktop */
  }
}

/* ===== 1366x768 STANDARD LAPTOP SCREEN ===== */
/* Common laptop resolution */
@media (max-width: 1366px) and (min-width: 1025px) {
  .nox-hero-content-glass {
    max-width: 520px;
    padding: 35px;
  }

  .nox-hero-content-glass h1 {
    font-size: 2.3rem;
    margin-bottom: 16px;
  }

  .nox-hero-content-glass p {
    font-size: 1rem;
    margin-bottom: 26px;
  }

  .nox-hero-content-glass button {
    padding: 13px 32px;
    font-size: 0.95rem;
  }

  .nox-feature-cards-container {
    gap: 12px;
    margin-top: 35px;
  }

  .nox-feature-card-item {
    min-height: 110px;
    padding: 18px 12px;
  }

  .nox-feature-card-item svg {
    width: 42px;
    height: 42px;
  }

  /* Logo adjustments for 1366x768 */
  .nox-hero-section-main::before {
    background-position: left -30% center;
    background-size: 65% 65%;
    background-attachment: fixed; /* Logo moves with scroll on desktop */
  }

  .nox-wavy-circle-bg {
    --s: 1100px;
    bottom: -250px;
    left: -220px;
  }
}

/* ===== iPAD PRO 12.9" (1024x1366 Portrait) ===== */
/* Largest iPad model */
@media (min-width: 1024px) and (max-width: 1024px) and (min-height: 1300px) {
  .nox-hero-section-main {
    justify-content: center;
    padding: 40px 30px;
  }


  .nox-hero-content-glass {
    max-width: 450px;
    margin-right: -40%;
    padding: 45px;
    margin-top: 50%;
  }

  .nox-hero-content-glass h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
  }

  .nox-hero-content-glass p {
    font-size: 1.15rem;
    margin-bottom: 30px;
  }

  .nox-hero-content-glass button {
    padding: 16px 40px;
    font-size: 1.05rem;
  }

  .nox-feature-cards-container {
    gap: 15px;
    margin-top: 40px;
  }

  .nox-feature-card-item {
    min-height: 130px;
    padding: 22px 18px;
  }

  .nox-feature-card-item svg {
    width: 50px;
    height: 50px;
  }

  .nox-feature-card-item p {
    font-size: 1rem;
  }

  /* Logo fixed on tablet - doesn't move with scroll */
  .nox-hero-section-main::before {
    background-position: left bottom 80%;
    background-size: 50% auto;
    background-attachment: scroll; /* Logo stays fixed - doesn't move with scroll */
    opacity: 0.9;
  }

  .nox-wavy-circle-bg {
    --s: 1300px;
    bottom: 400px;
    left: -50%;
    transform: translateX(-50%);
  }
}

/* ===== iPAD AIR (820x1180) & iPAD 10.2" (810x1080) ===== */
/* Standard iPad sizes */
@media (min-width: 769px) and (max-width: 820px) {
  .nox-hero-section-main {
    justify-content: center;
    padding: 35px 25px;
  }

  .nox-hero-content-glass {
    max-width: 650px;
    margin-right: 0;
    margin-top: 70%;
    padding: 38px;
  }

  .nox-hero-content-glass h1 {
    font-size: 2.4rem;
    margin-bottom: 18px;
  }

  .nox-hero-content-glass p {
    font-size: 1.05rem;
    margin-bottom: 28px;
  }

  .nox-hero-content-glass button {
    padding: 15px 38px;
    font-size: 1rem;
  }

  .nox-feature-cards-container {
    gap: 14px;
    margin-top: 35px;
  }

  .nox-feature-card-item {
    min-height: 120px;
    padding: 20px 15px;
  }

  .nox-feature-card-item svg {
    width: 46px;
    height: 46px;
  }

  .nox-feature-card-item p {
    font-size: 0.95rem;
  }

  /* Logo fixed on tablet - doesn't move with scroll */
  .nox-hero-section-main::before {
    background-position: center top 15%;
    background-size: 55% auto;
    background-attachment: scroll; /* Logo stays fixed - doesn't move with scroll */
    opacity: 0.85;
  }

  .nox-wavy-circle-bg {
    --s: 1200px;
    bottom: 280px;
    left: -50%;
    transform: translateX(-50%);
  }
}

/* ===== iPAD MINI (744x1133) ===== */
/* Smallest standard iPad */
@media (min-width: 744px) and (max-width: 768px) {
  .nox-hero-section-main {
    justify-content: center;
    padding: 30px 20px;
    min-height: 100vh;
  }

  .nox-hero-content-glass {
    max-width: 500px;
    margin-right: 0;
    margin-bottom: -200px;
    padding: 35px;
  }

  .nox-hero-content-glass h1 {
    font-size: 2.2rem;
    margin-bottom: 16px;
  }

  .nox-hero-content-glass p {
    font-size: 1rem;
    margin-bottom: 26px;
  }

  .nox-hero-content-glass button {
    padding: 14px 36px;
    font-size: 0.98rem;
  }

  .nox-feature-cards-container {
    gap: 13px;
    margin-top: 32px;
  }

  .nox-feature-card-item {
    min-height: 115px;
    padding: 19px 14px;
  }

  .nox-feature-card-item svg {
    width: 44px;
    height: 44px;
  }

  .nox-feature-card-item p {
    font-size: 0.92rem;
  }

  /* Logo fixed on tablet - doesn't move with scroll */
  .nox-hero-section-main::before {
    background-position: center top 0%;
    background-size: 50% auto;
    background-attachment: scroll; /* Logo stays fixed - doesn't move with scroll */
    opacity: 0.8;
  }

  .nox-wavy-circle-bg {
    --s: 950px;
    bottom: 270px;
    left: -50%;
    transform: translateX(-50%);
  }
}

/* ===== GALAXY Z FOLD UNFOLDED (884x1104) ===== */
/* Samsung foldable phone in tablet mode */
@media (min-width: 821px) and (max-width: 884px) {
  .nox-hero-section-main {
    justify-content: center;
    padding: 32px 22px;
  }

  .nox-hero-content-glass {
    max-width: 680px;
    margin-right: 0;
    padding: 36px;
  }

  .nox-hero-content-glass h1 {
    font-size: 2.5rem;
    margin-bottom: 17px;
  }

  .nox-hero-content-glass p {
    font-size: 1.03rem;
    margin-bottom: 27px;
  }

  .nox-hero-content-glass button {
    padding: 15px 37px;
  }

  .nox-feature-cards-container {
    gap: 13px;
    margin-top: 33px;
  }

  .nox-feature-card-item {
    min-height: 118px;
    padding: 19px 14px;
  }

  .nox-feature-card-item svg {
    width: 45px;
    height: 45px;
  }

  /* Logo fixed on foldable - doesn't move with scroll */
  .nox-hero-section-main::before {
    background-position: center bottom 23%;
    background-size: 58% auto;
    background-attachment: scroll; /* Logo stays fixed - doesn't move with scroll */
  }

  .nox-wavy-circle-bg {
    --s: 850px;
    bottom: -285px;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* ===== GALAXY Z FOLD FOLDED (344x882) & ALL MOBILE DEVICES ===== */
/* Mobile screens - Logo appears first, then glass box appears below */
@media (max-width: 743px) {
  .nox-hero-section-main {
    justify-content: flex-start; /* Changed to flex-start for proper stacking */
    align-items: center;
    padding: 20px 15px 30px;
    min-height: 110vh;
    flex-direction: column; /* Stack items vertically */
  }

  /* MOBILE: Logo positioned at top - appears FIRST */
  .nox-hero-section-main::before {
    position: absolute;
    top: 0; /* Logo at the top */
    bottom: auto;
    left: 50%;
    transform: translateX(-50%);
    background-position: center top 10%;
    background-size: 90% auto;
    background-attachment: scroll; /* Logo stays fixed - doesn't move with scroll */
    opacity: 1;
    width: 100%;
    height: 40%; /* Logo takes upper portion */
    z-index: 1;
  }

  /* MOBILE: Wavy circle animation appears SECOND (middle layer) */
  .nox-wavy-circle-bg {
    --s: 600px;
    top: 15%; /* Position in middle area */
    bottom: auto;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
  }

  /* MOBILE: Glass box appears THIRD (bottom section) */
  .nox-hero-content-glass {
    max-width: 100%;
    padding: 30px 25px;
    margin-right: 0;
    margin-top: auto; /* Push to bottom section */
    margin-bottom: 0;
    order: 3; /* Ensures it's last in stacking order */
    z-index: 2;
  }

  .nox-hero-content-glass h1 {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .nox-hero-content-glass p {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .nox-hero-content-glass button {
    width: 100%;
    padding: 16px 36px;
  }

  .nox-feature-cards-container {
    flex-direction: row;
    gap: 12px;
    margin-top: 30px;
  }

  .nox-feature-card-item {
    padding: 18px 12px;
    min-height: 110px;
  }

  .nox-feature-card-item svg {
    width: 40px;
    height: 40px;
  }

  .nox-feature-card-item p {
    font-size: 0.85rem;
    line-height: 1.3;
  }
}



/* ===== SMALL MOBILE SCREENS (iPhone SE, older Android phones) ===== */
/* Screen width: 375px - 480px */
@media (max-width: 480px) {
  .nox-hero-section-main {
    padding: 20px 10px 25px;
    min-height: 110vh;
  }

  /* Logo positioning for small mobile */
  .nox-hero-section-main::before {
    background-size: 95% auto;
    height: 38%;
    top: 0;
  }

  /* Wavy circle for small mobile */
  .nox-wavy-circle-bg {
    --s: 550px;
    top: 18%;
  }

  .nox-hero-content-glass {
    padding: 25px 20px;
    border-radius: 15px;
  }

  .nox-hero-content-glass h1 {
    font-size: 1.75rem;
  }

  .nox-hero-content-glass p {
    font-size: 0.95rem;
  }

  .nox-feature-cards-container {
    gap: 10px;
  }

  .nox-feature-card-item {
    padding: 15px 10px;
    min-height: 100px;
  }

  .nox-feature-card-item svg {
    width: 35px;
    height: 35px;
  }

  .nox-feature-card-item p {
    font-size: 0.8rem;
  }
}

/* ===== EXTRA SMALL MOBILE (iPhone SE 1st gen, small Android) ===== */
/* Screen width: 320px - 380px */
@media (max-width: 380px) {
  .nox-hero-section-main {
    justify-content: flex-start;
    align-items: center;
    padding: 20px 5px 80px;
    min-height: 115vh;
  }

  /* Logo positioning for extra small mobile */
  .nox-hero-section-main::before {
    background-position: center top 5%;
    background-size: 100% auto;
    height: 35%;
    top: 0;
  }

  /* Wavy circle for extra small mobile */
  .nox-wavy-circle-bg {
    --s: 500px;
    top: 20%;
  }

  .nox-hero-content-glass {
    padding: 22px 18px;
    border-radius: 12px;
    max-width: 300px;
  }

  .nox-hero-content-glass h1 {
    font-size: 1.5rem;
  }

  .nox-hero-content-glass p {
    font-size: 0.9rem;
    margin-bottom: 22px;
  }

  .nox-hero-content-glass button {
    padding: 14px 30px;
    font-size: 0.95rem;
  }

  .nox-feature-cards-container {
    gap: 8px;
    margin-top: 25px;
  }

  .nox-feature-card-item {
    padding: 12px 8px;
    min-height: 95px;
  }

  .nox-feature-card-item svg {
    width: 30px;
    height: 30px;
  }

  .nox-feature-card-item p {
    font-size: 0.75rem;
  }
}

/* ===== LANDSCAPE MODE FOR TABLETS (iPad in landscape) ===== */
/* Tablets rotated horizontally */
@media (min-width: 744px) and (max-width: 1024px) and (orientation: landscape) {
  .nox-hero-section-main {
    min-height: 100vh;
    padding: 30px 25px;
  }

  .nox-hero-content-glass {
    max-width: 85%;
    padding: 32px;
  }

  .nox-hero-content-glass h1 {
    font-size: 2rem;
    margin-bottom: 14px;
  }

  .nox-hero-content-glass p {
    font-size: 0.98rem;
    margin-bottom: 24px;
  }

  .nox-feature-cards-container {
    flex-direction: row;
    gap: 12px;
    margin-top: 28px;
  }

  .nox-feature-card-item {
    min-height: 100px;
    padding: 16px 12px;
  }

  .nox-feature-card-item svg {
    width: 38px;
    height: 38px;
  }

  /* Logo for landscape tablets - stays fixed */
  .nox-hero-section-main::before {
    background-position: left center;
    background-size: 45% auto;
    background-attachment: scroll; /* Logo stays fixed - doesn't move with scroll */
  }

  .nox-wavy-circle-bg {
    --s: 700px;
    bottom: -200px;
    left: -25%;
  }
}

/* ===== LANDSCAPE MODE FOR MOBILE (Phones rotated horizontally) ===== */
/* Mobile devices in landscape orientation */
@media (max-width: 743px) and (orientation: landscape) {
  .nox-hero-section-main {
    min-height: auto;
    padding: 20px 15px;
    flex-direction: row; /* Side by side in landscape */
    justify-content: space-between;
    align-items: center;
  }

  /* Logo for mobile landscape - stays fixed */
  .nox-hero-section-main::before {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background-position: left center;
    background-size: 40% auto;
    background-attachment: scroll; /* Logo stays fixed - doesn't move with scroll */
    width: 50%;
    height: 100%;
  }

  /* Wavy circle in landscape mobile */
  .nox-wavy-circle-bg {
    --s: 500px;
    top: 50%;
    left: -20%;
    transform: translateY(-50%);
    bottom: auto;
  }

  .nox-hero-content-glass {
    max-width: 55%;
    margin-top: 0;
    margin-left: auto;
    padding: 25px;
  }

  .nox-hero-content-glass h1 {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }

  .nox-hero-content-glass p {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .nox-hero-content-glass button {
    width: auto;
  }

  .nox-feature-cards-container {
    flex-direction: row;
    gap: 10px;
    margin-top: 22px;
  }

  .nox-feature-card-item {
    min-height: 90px;
    padding: 14px 10px;
  }

  .nox-feature-card-item svg {
    width: 32px;
    height: 32px;
  }

  .nox-feature-card-item p {
    font-size: 0.78rem;
  }
}

/* ===== GALAXY Z FOLD 5 RESPONSIVE BLOCK ===== */
/* Portrait Folded: 344x882 approx */
@media (max-width: 360px) and (min-height: 850px) {
  .nox-hero-section-main {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 18px 10px 60px;
    min-height: 115vh;
  }

  .nox-hero-section-main::before {
    background-position: center top 100%;
    background-size: 95% auto;
    background-attachment: scroll;
    opacity: 1;
    height: 38%;
  }

  .nox-wavy-circle-bg {
    --s: 820px;
    top: -12%;
    left: -50%;
    transform: translateX(-50%);
  }

  .nox-hero-content-glass {
    width: 95%;
    max-width: 340px;
    padding: 24px 18px;
    border-radius: 14px;
    margin-top: auto;
    margin-bottom: 0;
    z-index: 2;
  }

  .nox-hero-content-glass h1 {
    font-size: 1.6rem;
    margin-bottom: 14px;
  }

  .nox-hero-content-glass p {
    font-size: 0.92rem;
    margin-bottom: 22px;
  }

  .nox-hero-content-glass button {
    width: 100%;
    padding: 14px 32px;
    font-size: 0.95rem;
  }

  .nox-feature-cards-container {
    flex-direction: row;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
  }

  .nox-feature-card-item {
    padding: 12px 8px;
    min-height: 95px;
    border-radius: 12px;
  }

  .nox-feature-card-item svg {
    width: 32px;
    height: 32px;
  }

  .nox-feature-card-item p {
    font-size: 0.78rem;
    line-height: 1.3;
  }
}

/* Landscape Unfolded: 882x344 approx */
@media (max-height: 400px) and (min-width: 800px) and (orientation: landscape) {
  .nox-hero-section-main {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    min-height: auto;
  }

  .nox-hero-section-main::before {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background-position: left center;
    background-size: 45% auto;
    background-attachment: scroll;
    opacity: 1;
    width: 50%;
    height: 100%;
    z-index: 1;
  }

  .nox-wavy-circle-bg {
    --s: 480px;
    top: 50%;
    left: -15%;
    transform: translateY(-50%);
    bottom: auto;
    z-index: 0;
  }

  .nox-hero-content-glass {
    max-width: 55%;
    margin-left: auto;
    margin-right: 0;
    padding: 24px 22px;
    border-radius: 14px;
    z-index: 2;
  }

  .nox-hero-content-glass h1 {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }

  .nox-hero-content-glass p {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .nox-hero-content-glass button {
    padding: 12px 28px;
    font-size: 0.9rem;
  }

  .nox-feature-cards-container {
    flex-direction: row;
    gap: 10px;
    margin-top: 20px;
  }

  .nox-feature-card-item {
    min-height: 85px;
    padding: 12px 10px;
    border-radius: 10px;
  }

  .nox-feature-card-item svg {
    width: 30px;
    height: 30px;
  }

  .nox-feature-card-item p {
    font-size: 0.78rem;
    line-height: 1.2;
  }
}

/* ===== MODERN SMARTPHONES RESPONSIVE BLOCK ===== */
/* iPhone XR: 414x896, iPhone 12 Pro: 390x844, iPhone 14 Pro Max: 430x932 */
/* Pixel 7: 412x915, Galaxy S8 Plus: 360x740, S20 Ultra: 412x915, Samsung A51/71: 412x914 */

@media (max-width: 430px) and (min-width: 360px) {
  .nox-hero-section-main {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 20px 12px 50px;
    min-height: 115vh;
  }

  /* Logo at top */
  .nox-hero-section-main::before {
    background-position: center top 8%;
    background-size: 90% auto;
    background-attachment: scroll;
    opacity: 1;
    height: 38%;
  }

  /* Wavy circle */
  .nox-wavy-circle-bg {
    --s: 880px;
    top: -10%;
    left: -50%;
    transform: translateX(-50%);
  }

  /* Glass box */
  .nox-hero-content-glass {
    width: 95%;
    max-width: 340px;
    padding: 26px 20px;
    border-radius: 14px;
    margin-top: auto;
    margin-bottom: 0;
    margin-right: 5%;
    z-index: 2;
  }

  .nox-hero-content-glass h1 {
    font-size: 1.8rem;
    margin-bottom: 16px;
  }

  .nox-hero-content-glass p {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .nox-hero-content-glass button {
    width: 100%;
    padding: 14px 34px;
    font-size: 0.95rem;
  }

  /* Feature cards */
  .nox-feature-cards-container {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
  }

  .nox-feature-card-item {
    padding: 14px 10px;
    min-height: 100px;
    border-radius: 12px;
  }

  .nox-feature-card-item svg {
    width: 35px;
    height: 35px;
  }

  .nox-feature-card-item p {
    font-size: 0.8rem;
    line-height: 1.3;
  }
}

/* ===== SMALLER PHONES WITH WIDTH 360px (Galaxy S8 Plus) ===== */
@media (max-width: 360px) {
  .nox-hero-section-main {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 18px 10px 50px;
    min-height: 115vh;
  }

  .nox-hero-section-main::before {
    background-position: center top 5%;
    background-size: 95% auto;
    background-attachment: scroll;
    opacity: 1;
    height: 38%;
  }

  .nox-wavy-circle-bg {
    --s: 720px;
    top: -10%;
    left: -50%;
    transform: translateX(-50%);
  }

  .nox-hero-content-glass {
    width: 95%;
    max-width: 300px;
    padding: 24px 18px;
    border-radius: 12px;
    margin-top: auto;
    margin-bottom: 0;
    margin-right: 20px;
    z-index: 2;
  }

  .nox-hero-content-glass h1 {
    font-size: 1.6rem;
    margin-bottom: 14px;
  }

  .nox-hero-content-glass p {
    font-size: 0.92rem;
    margin-bottom: 22px;
  }

  .nox-hero-content-glass button {
    width: 100%;
    padding: 14px 30px;
    font-size: 0.92rem;
  }

  .nox-feature-cards-container {
    flex-direction: row;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
  }

  .nox-feature-card-item {
    padding: 12px 8px;
    min-height: 95px;
    border-radius: 12px;
  }

  .nox-feature-card-item svg {
    width: 32px;
    height: 32px;
  }

  .nox-feature-card-item p {
    font-size: 0.78rem;
    line-height: 1.3;
  }
}
/* ===== END MODERN SMARTPHONES BLOCK ===== */
/* ===== END GALAXY Z FOLD 5 RESPONSIVE BLOCK ===== */
/* =====HERO END===== */





/* =====REALTOR===== */
.realtor-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 10%;
  background: #1a1919;
  color: #fff;
  overflow: visible;
}

.realtor-content {
  max-width: 50%;

}

.realtor-content h1 {
  font-size: 2.8rem;
  color: #8fbf46;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 600;
}

.realtor-content p {
  font-size: 1.15rem;
  color: #d4d4d4;
  margin-bottom: 40px;
  max-width: 480px;
  line-height: 1.6;
}

/* Visual side */
.realtor-visual {
  position: relative;
  width: 400px;
  height: 300px;
}

/* House */
.house {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 150px;
}

.roof {
  width: 0;
  height: 0;
  border-left: 95px solid transparent;
  border-right: 95px solid transparent;
  border-bottom: 70px solid #8fbf46;
  position: absolute;
  top: -70px;
  left: -5px;
}

.walls {
  width: 180px;
  height: 120px;
  background: #202020;
  border-radius: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  box-shadow: inset 0 0 20px #000, 0 0 20px #48bbff22;
}

.door {
  width: 50px;
  height: 70px;
  background: #383838;
  border-radius: 5px;
  position: absolute;
  bottom: 10px;
  left: 20px;
}

.window {
  width: 45px;
  height: 45px;
  background: #48bbff33;
  border-radius: 6px;
  position: absolute;
  right: 20px;
  top: 25px;
  box-shadow: 0 0 10px #48bbff55 inset;
}

.light {
  width: 10px;
  height: 10px;
  background: #8fbf46;
  border-radius: 50%;
  position: absolute;
  top: 15px;
  left: 30px;
  animation: lightPulse 3s ease-in-out infinite alternate;
}

/* Clouds */
.cloud {
  position: absolute;
  background: #ffffff11;
  border-radius: 50px;
  width: 100px;
  height: 40px;
  top: 30px;
  opacity: 0.6;
  animation: cloudMove 25s linear infinite;
}

.cloud::before,
.cloud::after {
  content: "";
  position: absolute;
  background: #ffffff11;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  top: -20px;
}

.cloud::before {
  left: 10px;
}

.cloud::after {
  right: 10px;
}

.cloud1 {
  left: -150px;
  animation-delay: 0s;
}

.cloud2 {
  left: -200px;
  top: 70px;
  animation-delay: 8s;
}

/* Animations */
@keyframes cloudMove {
  0% {
    left: -200px;
  }

  100% {
    left: 100%;
  }
}

@keyframes lightPulse {
  0% {
    opacity: 0.3;
    box-shadow: 0 0 5px #8fbf46;
  }

  100% {
    opacity: 1;
    box-shadow: 0 0 15px #8fbf46aa;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .realtor-section {
    flex-direction: column;
    text-align: center;
    padding: 80px 5%;
  }

  .realtor-content {
    max-width: 90%;
    margin-bottom: 60px;
  }

  .realtor-visual {
    width: 300px;
    height: 250px;
  }
}

/* =====REALTOR END===== */




/* =====HEALTH===== */
.health-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 10%;
  background: #ffffff;
  color: #1a1a1a;
  overflow: visible;
  position: relative;
}

.health-content {
  max-width: 45%;
  text-align: right;
}

.health-content h1 {
  font-size: 2.8rem;
  color: #48bbff;
  margin-bottom: 20px;
  font-weight: 600;
}

.health-content p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 480px;
  margin-left: auto;
}


/* ECG Animation */
.health-visual {
  position: relative;
  width: 500px;
  height: 200px;
}

.ecg-line {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.ecg-line svg {
  width: 200%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  animation: slideECG 4s linear infinite;
}

@keyframes slideECG {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .health-section {
    flex-direction: column-reverse;
    text-align: center;
    padding: 80px 5%;
  }

  .health-content {
    max-width: 90%;
    text-align: center;
  }

  .health-visual {
    width: 350px;
    height: 150px;
    margin-bottom: 50px;
  }

  .health-content p {
    margin: 0 auto 40px auto;
  }

  .health-content h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 600px) {
  .health-visual {
    width: 280px;
    height: 120px;
  }

  .health-content h1 {
    font-size: 1.8rem;
  }

  .health-content p {
    font-size: 1rem;
  }
}

/* =====HEALTH END===== */




/* =====ECOMMERCE===== */
.ecommerce-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 10%;
  background: #1a1919;
  color: #fff;
  overflow: visible;
  position: relative;
}

.ecommerce-content {
  max-width: 50%;
}

.ecommerce-content h1 {
  font-size: 2.8rem;
  color: #8fbf46;
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 1.2;
}

.ecommerce-content p {
  font-size: 1.1rem;
  color: #cfcfcf;
  margin-bottom: 40px;
  max-width: 480px;
  line-height: 1.6;
}

.cta-btn {
  display: inline-block;
  background: linear-gradient(90deg, #8fbf46, #48bbff);
  color: #1a1919;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px #48bbff33;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px #8fbf4655;
}

/* Animation Side */
.ecommerce-visual {
  position: relative;
  width: 400px;
  height: 300px;
}

/* Shopping Bag */
.bag {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 180px;
  animation: bagFloat 4s ease-in-out infinite alternate;
}

.bag-body {
  width: 100%;
  height: 130px;
  background: #121212;
  border: 3px solid #48bbff;
  border-radius: 10px;
  box-shadow: 0 0 15px #48bbff33;
}

.handle {
  position: absolute;
  top: -25px;
  left: 50%;
  width: 100px;
  height: 50px;
  border: 3px solid #8fbf46;
  border-bottom: none;
  border-radius: 50px 50px 0 0;
  transform: translateX(-50%);
  box-shadow: 0 0 10px #8fbf4655;
}

/* Floating items (products) */
.item {
  position: absolute;
  width: 20px;
  height: 20px;
  background: #48bbff;
  border-radius: 5px;
  opacity: 0;
  animation: itemFloat 5s ease-in-out infinite;
  box-shadow: 0 0 10px #48bbff88;
}

.item1 {
  left: 45%;
  bottom: 60px;
  animation-delay: 0s;
}

.item2 {
  left: 60%;
  bottom: 70px;
  background: #8fbf46;
  animation-delay: 1.5s;
}

.item3 {
  left: 35%;
  bottom: 80px;
  background: linear-gradient(45deg, #48bbff, #8fbf46);
  animation-delay: 3s;
}

/* Animations */
@keyframes itemFloat {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0.8);
  }

  20% {
    opacity: 1;
    transform: translateY(-20px) scale(1);
  }

  50% {
    transform: translateY(-60px) scale(1.1);
  }

  80% {
    opacity: 1;
    transform: translateY(-80px) scale(1);
  }

  100% {
    opacity: 0;
    transform: translateY(-100px) scale(0.8);
  }
}

@keyframes bagFloat {
  0% {
    transform: translateX(-50%) translateY(0);
  }

  100% {
    transform: translateX(-50%) translateY(-8px);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .ecommerce-section {
    flex-direction: column;
    text-align: center;
    padding: 80px 5%;
  }

  .ecommerce-content {
    max-width: 90%;
    margin-bottom: 60px;
  }

  .ecommerce-visual {
    width: 280px;
    height: 250px;
  }
}

/* =====ECOMMERCE END===== */



/* =====SCROLL ANIMATION===== */
#autoShow {
  animation: autoShowAnim both;
  animation-timeline: view(70% 5%);
}

@keyframes autoShowAnim {
  from {
    opacity: 0;
    transform: translateY(200px) scale(0.3);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

#autoRight {
  animation: autoRightAnim both;
  animation-timeline: view(70% 5%);
}

@keyframes autoRightAnim {
  from {
    opacity: 0;
    transform: translateX(-200px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width:780px) {
  #autoRight {
    animation: none;
  }
}

/* === Noxbloc Services Scroll Animation === */
.nx-fade-in-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: all 0.8s ease-out;
}

.nx-fade-in-left.nx-show {
  opacity: 1;
  transform: translateX(0);
}






/* =====STATS===== */
.stats-section {
  background: #1a1919;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 20px;
  gap: 100px;
  text-align: center;
  font-family: 'Poppins', sans-serif;

}

/* Each Stat */
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

/* Numbers */
.stat-number {
  font-size: 72px;
  font-weight: 600;
  color: #48BBFF;
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Labels */
.stat-item p {
  font-size: 18px;
  letter-spacing: 0.5px;
  color: #ffffff;
  opacity: 0.8;
}

/* Divider Lines */
.stat-item::after {
  content: '';
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60px;
  background: #ddd;
  opacity: 0.5;
}

.stat-item:last-child::after {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .stats-section {
    flex-direction: column;
    gap: 60px;
  }

  .stat-item::after {
    display: none;
  }

  .stat-number {
    font-size: 56px;
  }

  .stat-item p {
    font-size: 16px;
  }
}

/* =====STATS END===== */





/* =====SERVICES===== */
.services-static {
  position: relative;
  background: #1a1919;
  font-family: "Poppins", sans-serif;
  color: #fff;
  padding: 100px 40px;
  overflow: hidden;
}

.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 180px 120px;
  pointer-events: none;
  z-index: 1;
}

.services-container {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-center {
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(26, 25, 25, 0.75);
  backdrop-filter: blur(6px);
  padding: 60px 50px;
  border-radius: 14px;
  max-width: 500px;
  margin-bottom: 70px;
}

.service-center.second {
  margin-top: 100px;
  margin-bottom: 70px;
}

.service-center h2 {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #48BBFF;
}

.service-center p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* --- 8 Card Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 35px;
  width: 100%;
  justify-items: center;
}

.service-card {
  width: 100%;
  max-width: 260px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(26, 25, 25, 0.7);
  backdrop-filter: blur(6px);
  border-radius: 10px;
  text-align: left;
  padding: 30px 25px;
}

.service-card:hover {
  background: #202020;
  border-color: #9FF14E;
  color: #9FF14E;
  box-shadow: 0 0 18px rgba(159, 241, 78, 0.25);
}

.service-card .icon {
  font-size: 25px;
  margin-bottom: 10px;
}

.service-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #48BBFF;
}

.service-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 15px;
  line-height: 1.5;
}

.service-card a {
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  color: #9FF14E;
}

/* --- 4 Sub Services --- */
.sub-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  width: 100%;
  justify-items: center;
  margin-top: 30px;
}

.sub-card {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(26, 25, 25, 0.7);
  backdrop-filter: blur(6px);
  border-radius: 10px;
  text-align: left;
  padding: 35px 25px;
  max-width: 280px;
}

.sub-card .icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.sub-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
}

.sub-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

/* --- Responsive --- */
@media (max-width: 768px) {

  .services-grid,
  .sub-services-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .service-center {
    padding: 40px 25px;
  }
}

/* =====SERVICES END===== */






/* =====TOOLS===== */
.noxbloc-compact-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center;
  font-family: 'Inter', sans-serif;
  padding: 70px 20px;
  background-color: #1a1919;
}

.noxbloc-compact-content {
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center;
  font-family: 'Inter', sans-serif;
  padding: 7px 20px;
  background-color: #1a1919;
}

/* --- Text Content --- */
.noxbloc-compact-heading {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
  position: relative;
  z-index: 2;
}

.noxbloc-compact-heading span {
  color: #48bbff;
}

.noxbloc-compact-subtext {
  color: #ccc;
  font-size: 1rem;
  margin-top: 8px;
  z-index: 2;
  position: relative;
}

.noxbloc-compact-btn {
  background: orange;
  color: #1a1919;
  border: none;
  padding: 10px 26px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 25px;
  margin-top: 18px;
  cursor: pointer;
  transition: 0.3s ease;
  position: relative;
  z-index: 2;
}

.noxbloc-compact-btn:hover {
  background: #48bbff;
  color: #fff;
}

.noxbloc-compact-link-text {
  margin-top: 6px;
  font-size: 0.9rem;
  position: relative;
  z-index: 2;
}

.noxbloc-compact-link {
  color: #48bbff;
  text-decoration: none;
  font-weight: 600;
}

/* --- Icons and Center Image --- */
.noxbloc-compact-visual {
  position: relative;
  margin-top: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 220px;
  z-index: 2;
}

.noxbloc-compact-visual .numtwo {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 220px;
  z-index: 2;
}

.noxbloc-compact-center img {
  width: 60px;
  height: 60px;
  background: #ffffff;
  border: 8px solid #302f2f;
  padding: 6px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(72, 187, 255, 0.3);
  transform: translateY(-50%);
  animation: noxbloc-float 5.5s ease-in-out infinite 1s;
}

/* --- Outer Icons --- */
.noxbloc-compact-icons {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: space-around;
  top: 50%;
}

.noxbloc-compact-icons img {
  width: 60px;
  height: 60px;
  background: #ffffff;
  border: 8px solid #302f2f;
  border-radius: 12px;
  padding: 6px;
  transition: 0.4s ease;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
}

.noxbloc-compact-icons img:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(72, 187, 255, 0.4);
}

/* --- Floating Animation --- */
.noxbloc-float1 {
  animation: noxbloc-float 5.5s ease-in-out infinite;
}

.noxbloc-float2 {
  animation: noxbloc-float 6.5s ease-in-out infinite 1s;
}

.noxbloc-float3 {
  animation: noxbloc-float 5s ease-in-out infinite 0.5s;
}

.noxbloc-float4 {
  animation: noxbloc-float 6s ease-in-out infinite 2s;
}

.noxbloc-float5 {
  animation: noxbloc-float 7s ease-in-out infinite 1.2s;
}

.noxbloc-float6 {
  animation: noxbloc-float 8s ease-in-out infinite 0.3s;
}

@keyframes noxbloc-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}


/* --- Flowing Gradient Background --- */
.noxbloc-compact-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.noxbloc-bg-layer {
  position: absolute;
  width: 200%;
  height: 200%;
  background: linear-gradient(270deg, rgba(72, 187, 255, 0.55) 0%, rgba(72, 187, 255, 0.32) 18%, rgba(159, 241, 78, 0.25) 38%);
  opacity: 0.4;
  filter: blur(100px);
  animation: noxbloc-bgFlow 10s linear infinite;
}

.noxbloc-bg1 {
  animation-delay: 0s;
  opacity: 0.5;
}

.noxbloc-bg2 {
  animation-delay: 2s;
  opacity: 0.3;
}

.noxbloc-bg3 {
  animation-delay: 4s;
  opacity: 0.2;
}

@keyframes noxbloc-bgFlow {
  0% {
    transform: translateX(0) translateY(0) rotate(0deg);
  }

  50% {
    transform: translateX(-25%) translateY(-10%) rotate(180deg);
  }

  100% {
    transform: translateX(-50%) translateY(0) rotate(360deg);
  }
}

/* --- Mobile Responsive --- */
@media (max-width: 768px) {
  .noxbloc-compact-section {
    padding: 60px 15px;
  }

  .noxbloc-compact-heading {
    font-size: 1.7rem;
    line-height: 1.3;
  }

  .noxbloc-compact-subtext {
    font-size: 0.95rem;
    max-width: 90%;
    margin: 10px auto 0;
  }

  .noxbloc-compact-visual {
    flex-direction: column;
    margin-top: 35px;
    min-height: 200px;
  }

  .noxbloc-compact-center img {
    width: 50px;
    height: 50px;
    padding: 6px;
    opacity: 0;
  }

  .noxbloc-compact-icons {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    /* reduced for small screens */
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .noxbloc-compact-icons img {
    width: 50px;
    height: 50px;
    padding: 5px;
    border-radius: 10px;
    border: 6px solid #302f2f;
  }

  /* Prevent overlapping icons on very small screens */
  @media (max-width: 480px) {
    .noxbloc-compact-heading {
      font-size: 1.4rem;
    }

    .noxbloc-compact-subtext {
      font-size: 0.85rem;
      max-width: 95%;
    }

    .noxbloc-compact-icons {
      width: 250px;
      gap: 20px;
    }

    .noxbloc-compact-icons img {
      width: 50px;
      height: 50px;
      padding: 4px;
    }

    .noxbloc-compact-center img {
      width: 50px;
      height: 50px;
      padding: 6px;
      opacity: 0;
    }
  }
}

/* =====TOOLS END===== */





/* =====WHY 4NEX===== */
.noxbloc-whychoose-creative {
  background: #1a1919;
  color: #fff;
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

.noxbloc-whychoose-heading {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.noxbloc-whychoose-heading span {
  color: #48bbff;
}

.noxbloc-whychoose-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
  color: #ccc;
  font-size: 1.1rem;
}

.noxbloc-timeline {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.noxbloc-line {
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, #9FF14E, #48bbff, #9FF14E);
  animation: flowLine 6s linear infinite;
  transform: translateX(-50%);
  border-radius: 2px;
  opacity: 0.8;
}

@keyframes flowLine {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 0 200%;
  }
}

.noxbloc-reason {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  width: 50%;
  padding: 30px 0;
}

.noxbloc-reason.left {
  left: 0;
  flex-direction: row-reverse;
  text-align: right;
  padding-right: 70px;
}

.noxbloc-reason.right {
  left: 50%;
  text-align: left;
  padding-left: 70px;
}

.noxbloc-icon {
  font-size: 2rem;
  color: #9FF14E;
  margin: 0 20px;
  text-shadow: 0 0 20px rgba(159, 241, 78, 0.6);
  animation: floaty 4s ease-in-out infinite;
  z-index: 2;
  transition: 0.3s ease;
}

.noxbloc-icon:hover {
  color: #48bbff;
  text-shadow: 0 0 25px rgba(72, 187, 255, 0.7);
}

.noxbloc-content {
  max-width: 400px;
  background: rgba(255, 255, 255, 0.02);
  border-left: 3px solid #48bbff;
  padding: 18px 25px;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.noxbloc-content h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: #fff;
}

.noxbloc-content p {
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.5;
}

.noxbloc-reason:hover .noxbloc-content {
  border-color: #9FF14E;
  box-shadow: 0 0 25px rgba(159, 241, 78, 0.3);
  transform: translateY(-5px);
}

/* Floating icon animation */
@keyframes floaty {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* Responsive */
@media (max-width: 900px) {

  .noxbloc-reason,
  .noxbloc-reason.left,
  .noxbloc-reason.right {
    width: 100%;
    justify-content: center;
    text-align: center;
    left: 0;
    padding: 25px 0;
  }

  .noxbloc-content {
    border-left: none;
    border-top: 3px solid #48bbff;
  }

  .noxbloc-line {
    display: none;
  }
}

/* === Noxbloc Scroll Animation (Why 4NEX Section) === */
.noxbloc-fade-up {
  opacity: 0;
  transform: translateY(80px);
  transition: all 0.9s cubic-bezier(0.17, 0.55, 0.55, 1);
}

.noxbloc-fade-up.noxbloc-show {
  opacity: 1;
  transform: translateY(0);
}

/* =====WHY 4NEX END===== */






/* =====FOOTER===== */
.footer-section {
  background: #000000;
  color: #ffffff;
  padding: 120px 8% 40px;
  position: relative;
  font-family: Arial, sans-serif;
  overflow: visible;
  text-align: left;
}


/* Floating Logo */
.footer-logo-container {
  position: absolute;
  top: -70px;
  /* Push half outside */
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.footer-logo-bg {
  background: #000000;
  /* White background */
  border: 2px solid #48BBFF;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 140px;
}

.footer-logo {
  max-width: 200px;
  height: auto;
}


/* Grid Layout */
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-top: 40px;
  margin-bottom: 40px;
}

/* Titles */
.footer-column h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #48bbff;
}

/* Lists */
.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column a {
  text-decoration: none;
  color: #ffffff;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: #48bbff;
}


/* Socials */
.footer-socials {
  margin-top: 15px;
}

.footer-socials a img {
  width: 35px;
  margin-right: 10px;

  transition: transform 0.3s;
}

.footer-socials a img:hover {
  transform: scale(1.1);
}

/* Bottom */
.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 20px;
  font-size: 0.85rem;
  margin-bottom: 50px;
  color: #aaa;
}


/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-form .form-row {
    flex-direction: column;
  }

  .footer-logo {
    max-width: 200px;
  }
}


/* =================QUOTE================= */
.quote-section {
  max-width: 1200px;
  margin: 100px auto;
  margin-bottom: 250px;
  padding: 60px;
  border-radius: 24px;
  background: #000000;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

.quote-section:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12),
    0 0 12px rgba(159, 241, 78, 0.55);
  border-color: #9FF14E;
}

/* optional subtle blurred "shine" */
.quote-section::after {
  content: "";
  position: absolute;
  right: -20%;
  top: -20%;
  width: 70%;
  height: 140%;
  background: radial-gradient(circle, rgba(180, 180, 180, 0.4) 0%, transparent 70%);
  filter: blur(140px);
  z-index: 0;
}

/* LEFT CONTENT */
.quote-content {
  position: relative;
  z-index: 2;
  flex: 1;
}

.quote-content h2 {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  margin: 0 0 10px;
}

.quote-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 20px;
}

.quote-content a {
  text-decoration: none;
}

.quote-content button {
  border: none;
  padding: 12px 26px;
  border-radius: 30px;
  color: #1a1919;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  background: linear-gradient(135deg, #48bbff, #9FF14E);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  z-index: 3;
}

.quote-content button:hover {
  transform: scale(1.07) translateY(-3px);
  box-shadow: 0 10px 22px rgba(255, 255, 255, 0.35);
}

/* HIGHLIGHT COLOR */
.quote-highlight {
  color: #48bbff;
}

/* =================SVG IMAGE ON RIGHT================= */
.quote-graphic {
  position: relative;
  z-index: 2;
  max-width: 380px;
  flex-shrink: 0;

  /* Apply floating animation */
  animation: floatEffect 6s ease-in-out infinite;
}

.quote-graphic img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;

  /* Add static glow (very subtle) */
  filter: drop-shadow(0 0 10px rgba(72, 187, 255, 0.25));
}

/* SVG Glow syncs with button hover */
.quote-section:hover .quote-graphic img {
  filter: drop-shadow(0 0 18px rgba(72, 187, 255, 0.55))
          drop-shadow(0 0 28px rgba(159, 241, 78, 0.55));
}

/* FLOATING ANIMATION KEYFRAMES */
@keyframes floatEffect {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-10px); } /* gentle float */
  100% { transform: translateY(0px); }
}

/* ====================RESPONSIVE====================== */
@media (max-width: 768px) {

  .fullcard {
    padding: 0px 10px;
  }

  .quote-section {
    padding: 40px 30px;
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .quote-content h2 {
    font-size: 1.5rem;
    text-align: center;
  }

  .quote-content p {
    font-size: 0.95rem;
    text-align: center;
  }

  .quote-content {
    width: 100%;
    text-align: center;
  }

  .quote-content button {
    margin: 0 auto;
    display: block;
  }

  .quote-graphic {
    max-width: 260px;
    margin-top: 10px;
  }
}

/* ====================QUOTE-END====================== */





/* Fullscreen WHITE background */
#preloader {
  position: fixed;
  inset: 0;
  background: #ffffff; /* ✅ FULL WHITE BACKGROUND */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  transition: opacity 0.8s ease;
}

/* Center content */
.preloader-content {
  text-align: center;
}

/* ✅ Circular container with pulse */
.preloader-circle {
  width: 550px;         /* adjust size */
  height: 350px;
  border-radius: 0%;
  position: relative;
  overflow: hidden;     /* keeps video perfectly circular */
  display: flex;
  justify-content: center;
  align-items: center;

  /* PULSE GLOW */
  animation: pulse 2.5s infinite ease-out;
  /* box-shadow: 0 0 20px rgba(72, 187, 255, 0.6); */
}

/* ✅ Pulse animation */
/* @keyframes pulse {
  0% {
    box-shadow: 0 0 20px rgba(72, 187, 255, 0.8);
  }
  50% {
    box-shadow: 0 0 45px rgba(72, 187, 255, 0.35);
  }
  100% {
    box-shadow: 0 0 20px rgba(72, 187, 255, 0.8);
  }
} */

/* ✅ Logo video inside circle */
#preloader-video {
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* ✅ Blend the white parts of the video */
  mix-blend-mode: multiply;
  filter: brightness(1.15);
}

/* Percentage text */
#preloader-percentage {
  margin-top: 28px;
  font-size: 28px;
  font-weight: 700;
  color: #000; /* ✅ Black for white background */
  letter-spacing: 2px;
  opacity: 0;
}

/* Fade-out */
#preloader.fade-out {
  opacity: 0;
  pointer-events: none;
}


/* === LINK WRAPPER === */
.powered-by-link {
  text-decoration: none;
  /* display: inline-block; */
  color: inherit;
}

/* === SHIMMER TEXT === */
.powered-by {
  position: relative;
  display: inline-block;
  font-weight: 100;
  letter-spacing: 1px;
  color: #ffffff;
  background: linear-gradient(90deg, #ffffff, #ffffff, #9ff14e, #ffffff);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 15s linear infinite;
  transition: text-shadow 0.3s ease, transform 0.3s ease;
}

/* === HOVER EFFECT (when hovering either text or link) === */
.powered-by-link:hover .powered-by {
  text-shadow: 0 0 12px #9ff14e, 0 0 24px #9ff14e;
  transform: scale(1.01);
}

/* === ANIMATION KEYFRAMES === */
@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Payment Partners Section */
.payment-partners {
  text-align: center;
  margin-top: 40px;
}

.payment-partners h4 {
  color: #48bbff;
  font-size: 1.1rem;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.payment-partners .payment-img {
  max-width: 5%;
  height: auto;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.payment-partners .payment-img:hover {
  opacity: 1;
}

/* Responsive */
@media (max-width: 480px) {
  .payment-partners .payment-img {
  max-width: 20%;
}
}