/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/*=============== VARIABLES CSS ===============*/
:root {
    --header-height: 3.5rem;

    /*========== Colors ==========*/
    /*Color mode HSL(hue, saturation, lightness)*/
    --white-color: hsl(0, 0%, 100%);
    --black-color: hsl(0, 0%, 0%);
    --bg-color: hsl(0, 2%, 10%);
    --bg-transparent: hsla(0, 2%, 10%);
    --bg2-transparent: hsla(0, 2%, 10%, 0.99);

    /*========== Font and typography ==========*/
    /*.5rem = 8px | 1rem = 16px ...*/
    --body-font: "Montserrat", sans-serif;
    --h1-font-size: 1.5rem;
    --normal-font-size: .938rem;

    /*========== Font weight ==========*/
    --font-regular: 400;
    --font-medium: 500;

    /*========== z index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1150px) {
    :root {
        --normal-font-size: 1rem;
    }
}

/*=============== BASE ===============*/
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    background: #1a1919;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
    /* max-width: 1120px; */
    max-width: 1800px;
    margin-inline: 1.5rem;
}








/* ================= PRELOADER ================= */
/* Preloader container */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  /* change if needed */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s ease;
}

/* Hidden state (when finished) */
#preloader.hidden {
  opacity: 0;
  transform: translateY(-30px);
  /* slide up */
  visibility: hidden;
}

/* Loader text styling */
#loader-text {
  margin-bottom: 20px;
  /* space between % and loader */
  font-weight: bold;
  font-size: 2rem;
  color: #9ff14e;
  /* your theme color */
  text-align: center;
}

/* Loader animation */
/* .loader {
  width: 48px;
  height: 48px;
  position: relative;
}

.loader:before {
  content: '';
  width: 48px;
  height: 5px;
  background: #000;
  opacity: 0.25;
  position: absolute;
  top: 60px;
  left: 0;
  border-radius: 50%;
  animation: shadow 0.5s linear infinite;
}

.loader:after {
  content: '';
  width: 100%;
  height: 100%;
  background: #fff;
  animation: bxSpin 0.5s linear infinite;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 4px;
}

@keyframes bxSpin {
  17% {
    border-bottom-right-radius: 3px;
  }

  25% {
    transform: translateY(9px) rotate(22.5deg);
  }

  50% {
    transform: translateY(18px) scale(1, .9) rotate(45deg);
    border-bottom-right-radius: 40px;
  }

  75% {
    transform: translateY(9px) rotate(67.5deg);
  }

  100% {
    transform: translateY(0) rotate(90deg);
  }
}

@keyframes shadow {

  0%,
  100% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(1.2, 1);
  }
} */

/* HTML: <div class="loader"></div> */
.loader {
  width: 80px;
  aspect-ratio: 1;
  border: 10px solid #0000;
  padding: 5px;
  box-sizing: border-box;
  background: 
    radial-gradient(farthest-side,#fff 98%,#0000 ) 0 0/20px 20px no-repeat,
    conic-gradient(from 90deg at 10px 10px,#0000 90deg,#fff 0) content-box,
    conic-gradient(from -90deg at 40px 40px,#0000 90deg,#fff 0) content-box,
    #000;
  filter: blur(4px) contrast(10);
  animation: l11 2s infinite;
}
@keyframes l11 {
  0%   {background-position:0 0}
  25%  {background-position:100% 0}
  50%  {background-position:100% 100%}
  75%  {background-position:0% 100%}
  100% {background-position:0% 0}
}

/* ================= PRELOADER /END ================= */

/*=============== HEADER & NAV ===============*/
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  /* background-color: var(--bg-transparent); */
  background-color: transparent;
  transition: background-color 0.4s ease;
  z-index: var(--z-fixed);
}

/* When scrolled */
.navbar.scrolled {
  background-color: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  /* border: 1px solid rgba(255, 255, 255, 0.18); */
}

.nav {
  position: relative;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  color: var(--white-color);
  font-weight: var(--font-medium);
}

/* Style the picture container */
.nav__logo picture {
  display: block;
  width: 200px;
  height: auto;
}

/* Make the image fill the picture container responsively */
.nav__logo picture img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  max-width: 100%;
}

/* Responsive scaling */
@media screen and (max-width: 1150px) {
  .nav__logo picture {
    width: 120px;
  }
}

@media screen and (max-width: 480px) {
  .nav__logo picture {
    width: 120px;
  }
}

.nav__close,
.nav__toggle {
  display: flex;
  color: var(--white-color);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1150px) {

  .nav__menu {
    position: fixed;
    top: 0;
    left: -100%;
    /* hide it completely when closed */
    width: 100%;
    height: 100vh;
    /* full viewport */
    background-color: var(--bg2-transparent);
    padding: 6rem 3.5rem 4.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: left .4s ease;
    overflow-y: auto;
    /* allow scrolling inside */
    z-index: var(--z-fixed);
    /* make sure it sits above navbar but not always on top */
  }

  /* When menu is open */
  .show-menu {
    left: 0;
    /* slide in */
  }


  .nav__item {
    transform: translateX(-150px);
    visibility: hidden;
    transition: transform .4s ease-out, visibility .4s;
  }

  .nav__social__desk {
    display: none;
  }

  .nav__item:nth-child(1) {
    transition-delay: .1s;
  }

  .nav__item:nth-child(2) {
    transition-delay: .2s;
  }

  .nav__item:nth-child(3) {
    transition-delay: .3s;
  }

  .nav__item:nth-child(4) {
    transition-delay: .4s;
  }

  .nav__item:nth-child(5) {
    transition-delay: .5s;
  }
}


.nav__list,
.nav__social {
  display: flex;
}

.nav__list {
  flex-direction: column;
  row-gap: 3rem;
}

.nav__link {
  position: relative;
  color: var(--white-color);
  font-size: var(--h1-font-size);
  font-weight: var(--font-medium);
  display: inline-flex;
  align-items: center;
  transition: opacity .4s;
}

.nav__link i {
  font-size: 2rem;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s, visibility .4s;
}

.nav__link span {
  position: relative;
  transition: margin .4s;
}

.nav__link span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background-color: #78ff00;
  transition: width .4s ease-out;
  box-shadow: 0px 02px 6px #78ff00, 0px 02px 6px #78ff00;
}

/* Animation link on hover */
.nav__link:hover span {
  margin-left: 2.5rem;
}

.nav__link:hover i {
  opacity: 1;
  visibility: visible;
  /* box-shadow: 8px 8px 80px #78ff00, 8px 8px 80px #78ff00; */
}

.nav__link:hover span::after {
  width: 100%;
}

/* Sibling fade animation */
.nav__list:has(.nav__link:hover) .nav__link:not(:hover) {
  opacity: .4;
}

.nav__close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

.nav__social {
  column-gap: 1rem;
}

.nav__social-link {
  color: var(--white-color);
  font-size: 1.5rem;
  transition: all .4s ease;
}

.nav__social-link:hover {
  transform: translateY(-.25rem);
  color: #78ff00;
}

/* Show menu */
.show-menu {
  left: 0;
}

/* Animation link when displaying menu */
.show-menu .nav__item {
  visibility: visible;
  transform: translateX(0);
}

/*=============== BREAKPOINTS ===============*/
/* For large devices */
@media screen and (min-width: 1150px) {
  .container {
    margin-inline: auto;
  }

  .nav {
    height: calc(var(--header-height) + .5rem);
  }

  .nav__toggle,
  .nav__close {
    display: none;
  }

  .nav__link {
    font-size: var(--normal-font-size);
  }

  .nav__link i {
    font-size: 1.5rem;
  }

  .nav__list {
    flex-direction: row;
    column-gap: 3.5rem;
    margin-right: 90px;
  }

  .nav__menu {
    display: flex;
    align-items: center;
    column-gap: 3.5rem;
  }

  .nav__social__desk {
    display: flex;
    column-gap: 1rem;
  }

  .nav__social {
    display: none;
  }

}

/*=============== DROPDOWN MENU STYLES ===============*/

/* Dropdown container */
.nav__item--dropdown {
  position: relative;
}

/* Dropdown icon */
.nav__dropdown-icon {
  font-size: 1.5rem !important;
  position: relative !important;
  opacity: 1 !important;
  visibility: visible !important;
  margin-left: 0.5rem;
  transition: transform .3s ease;
}

/* Rotate icon when dropdown is active */
.nav__item--dropdown.dropdown-active .nav__dropdown-icon {
  transform: rotate(180deg);
}

/* Dropdown menu */
.nav__dropdown {
  list-style: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s ease, opacity .4s ease;
  opacity: 0;
}

/* Show dropdown */
.nav__item--dropdown.dropdown-active .nav__dropdown {
  max-height: 500px;
  opacity: 1;
  margin-top: 1.5rem;
}

/* Dropdown item */
.nav__dropdown-item {
  padding-left: 2rem;
}

/* Dropdown link */
.nav__dropdown-link {
  position: relative;
  color: var(--white-color);
  font-size: var(--h2-font-size);
  font-weight: var(--font-medium);
  display: inline-flex;
  align-items: center;
  transition: opacity .4s;
  padding: 0.75rem 0;
}

.nav__dropdown-link i {
  font-size: 1.5rem;
  margin-right: 0.5rem;
  opacity: 1;
  visibility: visible;
  transition: transform .3s ease, color .3s ease;
}

.nav__dropdown-link span {
  position: relative;
  transition: margin .4s;
}

.nav__dropdown-link span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: #78ff00;
  transition: width .4s ease-out;
  box-shadow: 0px 02px 6px #78ff00, 0px 02px 6px #78ff00;
}

/* Dropdown link hover animation */
.nav__dropdown-link:hover i {
  transform: translateX(0.25rem);
  color: #78ff00;
}

.nav__dropdown-link:hover span::after {
  width: 100%;
}

/* Desktop dropdown styles */
@media screen and (min-width: 1150px) {
  
  /* Remove dropdown icon rotation for desktop hover */
  .nav__item--dropdown:hover .nav__dropdown-icon {
    transform: rotate(180deg);
  }
  
  /* Position dropdown absolutely on desktop */
  .nav__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(0, 0, 0, 0.9);
    /* backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px); */
    padding: 1rem 0;
    border-radius: 0.5rem;
    min-width: 200px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    margin-top: 1rem;
  }
  
  /* Show dropdown on hover for desktop */
  .nav__item--dropdown:hover .nav__dropdown {
    max-height: 500px;
    opacity: 1;
  }
  
  /* Dropdown item spacing for desktop */
  .nav__dropdown-item {
    padding: 0;
  }
  
  /* Dropdown link styles for desktop */
  .nav__dropdown-link {
    font-size: var(--normal-font-size);
    padding: 0.75rem 1.5rem;
    display: flex;
    width: 100%;
  }
  
  .nav__dropdown-link i {
    font-size: 1.25rem;
  }
  
  /* Adjust main nav link for dropdown items on desktop */
  .nav__item--dropdown > .nav__link {
    display: flex;
    align-items: center;
  }
  
  .nav__item--dropdown > .nav__link .nav__dropdown-icon {
    margin-left: 0.25rem;
    font-size: 1.25rem !important;
  }
  
  /* Keep parent nav link hovered when hovering dropdown */
  .nav__item--dropdown:hover > .nav__link span {
    margin-left: 2.5rem;
  }
  
  .nav__item--dropdown:hover > .nav__link i:not(.nav__dropdown-icon) {
    opacity: 1;
    visibility: visible;
  }
  
  .nav__item--dropdown:hover > .nav__link span::after {
    width: 100%;
  }
  
  /* Prevent sibling fade when hovering dropdown parent */
  .nav__list:has(.nav__item--dropdown:hover) .nav__link:not(.nav__item--dropdown:hover > .nav__link) {
    opacity: .4;
  }
}

/* =============== NAVBAR /END ================== */




.nox-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow: hidden;
    background: #1a1919;
    margin-top: 70px;
}

.nox-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(159, 241, 78, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(159, 241, 78, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}


.nox-accent-shape {
    position: absolute;
    border: 2px solid rgba(159, 241, 78, 0.15);
    border-radius: 20px;
}

.nox-shape1 {
    width: 280px;
    height: 280px;
    top: 15%;
    left: 5%;
    animation: noxRotate 20s linear infinite;
}

.nox-shape2 {
    width: 200px;
    height: 200px;
    bottom: 40%;
    right: 10%;
    animation: noxRotate 15s linear infinite reverse;
}

.nox-shape3 {
    width: 250px;
    height: 250px;
    top: 2%;
    left: 5%;
    animation: noxRotate 20s linear infinite;
}

.nox-shape4 {
    width: 220px;
    height: 220px;
    bottom: 46%;
    right: 10%;
    animation: noxRotate 15s linear infinite reverse;
}

.nox-shape5 {
    width: 180px;
    height: 180px;
    top: 45%;
    left: 8%;
    animation: noxRotate 20s linear infinite;
}

.nox-shape6 {
    width: 180px;
    height: 180px;
    bottom: 90%;
    right: 10%;
    animation: noxRotate 15s linear infinite reverse;
}

@keyframes noxRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.nox-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    text-align: center;
}


.nox-title {
    font-size: clamp(2.0rem, 7vw, 4rem);
    color: #fff;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.nox-highlight {
    color: #9ff14e;
    position: relative;
    display: inline-block;
}


.nox-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.nox-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.nox-btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.nox-btn-primary {
    background: #9ff14e;
    color: #1a1919;
}

.nox-btn-primary:hover {
    transform: translateY(-3px);
    background: #b3ff6b;
}


.nox-features {
    display: flex;
    gap: 2rem;
    margin-top: 4rem;
    justify-content: center;
}

.nox-feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(159, 241, 78, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
    flex: 1;
    max-width: 300px;
}

.nox-feature-card:hover {
    border-color: rgba(159, 241, 78, 0.5);
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.nox-feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(159, 241, 78, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.nox-feature-title {
    color: #9ff14e;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.nox-feature-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
}

.nox-floating-element {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #9ff14e;
    border-radius: 50%;
    opacity: 0;
    animation: noxFloatUp 6s ease-in infinite;
}

@keyframes noxFloatUp {
    0% {
        transform: translateY(0) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .nox-hero {
        padding: 1rem;
    }

    .nox-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .nox-btn {
        width: 100%;
        max-width: 300px;
    }

    .nox-features {
        flex-direction: column;
        align-items: center;
    }

    .nox-feature-card {
        max-width: 100%;
    }

    .nox-shape1 {
        width: 200px;
        height: 200px;
        top: 15%;
        left: 7%;
        animation: noxRotate 20s linear infinite;
    }

    .nox-shape2 {
        width: 100px;
        height: 100px;
        bottom: 75%;
        right: 10%;
        animation: noxRotate 15s linear infinite reverse;
    }

    .nox-shape3 {
        width: 200px;
        height: 200px;
        top: 2%;
        left: 7%;
        animation: noxRotate 20s linear infinite;
    }

    .nox-shape4 {
        width: 100px;
        height: 100px;
        bottom: 96%;
        right: 10%;
        animation: noxRotate 15s linear infinite reverse;
    }

    .nox-shape5 {
        width: 180px;
        height: 180px;
        top: 42%;
        left: 7%;
        animation: noxRotate 20s linear infinite;
    }

    .nox-shape6 {
        width: 80px;
        height: 80px;
        bottom: 56%;
        right: 10%;
        animation: noxRotate 15s linear infinite reverse;
    }
}







.alternating-sections {
    color: white;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background-color: #1a1919;
}


/* Content */
.alternating-sections .content-wrapper {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.alternating-sections .section-item {
    display: flex;
    align-items: center;
    gap: 48px;
    margin-bottom: 120px;
}

.alternating-sections .section-item:last-child {
    margin-bottom: 0;
}

.alternating-sections .section-item.reverse {
    flex-direction: row-reverse;
}

.alternating-sections .image-container,
.alternating-sections .text-container {
    flex: 1;
}

.alternating-sections .image-wrapper {
    position: relative;
    overflow: hidden;
    transition: transform 0.5s ease;
}

.alternating-sections .image-wrapper:hover {
    transform: scale(1.05);
}

.alternating-sections .image-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
    aspect-ratio: 16/9;
    object-fit: contain;
}

.alternating-sections .image-overlay {
    position: absolute;
    inset: 0;
    background: none;
}

.alternating-sections .badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    background-color: #9ff14e;
    color: #1a1919;
    margin-bottom: 24px;
}

.alternating-sections h2 {
    font-size: 48px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #9ff14e;
}

.alternating-sections p {
    font-size: 20px;
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 32px;
}

.alternating-sections .btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    background-color: #9ff14e;
    color: #1a1919;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.alternating-sections .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(159, 241, 78, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {

    .alternating-sections .section-item,
    .alternating-sections .section-item.reverse {
        flex-direction: column;
    }

    .alternating-sections h2 {
        font-size: 36px;
    }

    .alternating-sections p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .alternating-sections {
        padding: 40px 0;
    }

    .alternating-sections .section-item {
        margin-bottom: 80px;
    }

    .alternating-sections h2 {
        font-size: 32px;
    }
}

/* Initial hidden state */
.section-item {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* When visible */
.section-item.visible {
    opacity: 1;
    transform: translateY(0);
}






.pricing-sec {
    background: #1a1919;
    padding: 80px 20px;
}

.pricing-container {
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-header h1 {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

.pricing-header p {
    color: #888;
    font-size: 18px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background: #1a1919;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: #9ff14e;
    box-shadow: 0 20px 40px rgba(159, 241, 78, 0.15);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 30px;
    background: #9ff14e;
    color: #1a1919;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-name {
    color: #9ff14e;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.price {
    color: #fff;
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.price-currency {
    font-size: 32px;
    vertical-align: top;
}

.price-period {
    color: #666;
    font-size: 16px;
    margin-bottom: 24px;
}

.savings {
    background: rgba(159, 241, 78, 0.1);
    color: #9ff14e;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 32px;
    width: 130px;
}

.features {
    list-style: none;
    margin-bottom: 32px;
}

.features li {
    color: #bbb;
    font-size: 15px;
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
}

.features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #9ff14e;
    font-weight: 700;
    font-size: 18px;
}

.cta-button {
    width: 100%;
    background: #9ff14e;
    color: #1a1919;
    border: none;
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #8ee03d;
    transform: scale(1.02);
}



@media (max-width: 768px) {
    .pricing-header h1 {
        font-size: 36px;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }
}

.pricing-card {
    display: flex;
    flex-direction: column;
}

/* Push CTA button to the bottom */
.features {
    flex-grow: 1;
}

.cta-button {
    margin-top: auto;
}








/* Benchmark Section Styles - Scoped to avoid conflicts */

#nox-benchmark-section {
    background: #1a1919;
    color: #fff;
    padding: 100px 20px;

    position: relative;
    overflow: hidden;
}

#nox-benchmark-section * {
    box-sizing: border-box;
}

#nox-benchmark-section .benchmark-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

#nox-benchmark-section .section-header {
    text-align: center;
    margin-bottom: 80px;
}

#nox-benchmark-section .section-header h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #fff;
    margin-top: 0;
    font-weight: 700;
    letter-spacing: -1px;
}

#nox-benchmark-section .section-header .highlight {
    color: #9ff14e;
    position: relative;
    display: inline-block;
}

#nox-benchmark-section .section-header p {
    font-size: 1.3rem;
    color: #bbb;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

#nox-benchmark-section .comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

#nox-benchmark-section .comparison-column {
    background: rgba(37, 37, 37, 0.6);
    border-radius: 24px;
    padding: 50px 40px;
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

#nox-benchmark-section .comparison-column.nox {
    background: linear-gradient(135deg, rgba(159, 241, 78, 0.15) 0%, rgba(37, 37, 37, 0.8) 100%);
    border-color: #9ff14e;
    box-shadow: 0 20px 60px rgba(159, 241, 78, 0.2);
}

#nox-benchmark-section .comparison-column:hover {
    transform: translateY(-5px);
}

#nox-benchmark-section .column-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #333;
}

#nox-benchmark-section .column-header h3 {
    font-size: 2.2rem;
    margin: 0 0 10px 0;
    color: #fff;
    font-weight: 700;
}

#nox-benchmark-section .comparison-column.nox .column-header h3 {
    color: #9ff14e;
}

#nox-benchmark-section .column-header .badge {
    display: inline-block;
    background: #9ff14e;
    color: #1a1919;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#nox-benchmark-section .features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

#nox-benchmark-section .feature-item {
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

#nox-benchmark-section .feature-item:last-child {
    border-bottom: none;
}

#nox-benchmark-section .feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

#nox-benchmark-section .comparison-column.nox .feature-icon {
    background: rgba(159, 241, 78, 0.2);
    color: #9ff14e;
}

#nox-benchmark-section .comparison-column:not(.nox) .feature-icon {
    background: rgba(255, 255, 255, 0.05);
    color: #666;
}

#nox-benchmark-section .feature-icon.no {
    opacity: 0.3;
}

#nox-benchmark-section .feature-content h4 {
    margin: 0 0 8px 0;
    font-size: 1.2rem;
    color: #fff;
    font-weight: 600;
}

#nox-benchmark-section .feature-content p {
    margin: 0;
    color: #999;
    font-size: 0.95rem;
    line-height: 1.5;
}

#nox-benchmark-section .comparison-column.nox .feature-content p {
    color: #aaa;
}

#nox-benchmark-section .cta-container {
    text-align: center;
    margin-top: 70px;
}

#nox-benchmark-section .cta-button {
    display: inline-block;
    padding: 20px 60px;
    border: none;
    background: #9ff14e;
    color: #1a1919;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(159, 241, 78, 0.3);
}

#nox-benchmark-section .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(159, 241, 78, 0.4);
    background: #b0ff6e;
}

@media (max-width: 968px) {
    #nox-benchmark-section .comparison-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    #nox-benchmark-section .section-header h2 {
        font-size: 2.5rem;
    }

    #nox-benchmark-section .comparison-column {
        padding: 40px 30px;
    }
}

@media (max-width: 640px) {
    #nox-benchmark-section {
        padding: 60px 20px;
    }

    #nox-benchmark-section .section-header h2 {
        font-size: 2rem;
    }

    #nox-benchmark-section .section-header p {
        font-size: 1.1rem;
    }

    #nox-benchmark-section .column-header h3 {
        font-size: 1.8rem;
    }

    #nox-benchmark-section .feature-item {
        gap: 15px;
    }

    #nox-benchmark-section .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    #nox-benchmark-section .cta-button {
        padding: 18px 40px;
        font-size: 1.1rem;
    }
}







/* ================================ INVERTED =================================== */

/* ===== Section Background ===== */
.inverted-project-section {
    padding: 60px;
    background: #1a1919;
    color: #ffffff;
}

/* ===== Centered Container ===== */
.inverted-project-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== Content Styling ===== */
.inverted-project-content {
    max-width: 50%;
    animation: slideright both;
    animation-timeline: view(70% 10%);
    animation-timing-function: ease-in-out;
    /* or try ease-in-out */
}

@keyframes slideright {
    from {
        transform: translateX(-300px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}


.inverted-project-content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.inverted-project-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.inverted-contact-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #9FF14E;
    color: #20282D;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s;
}

.inverted-contact-btn:hover {
    background: #ffffff;
    color: #20282D;
}

/* Stats layout */
.inverted-stats {
    margin-top: 20px;
    display: grid;
    gap: 10px;
}

/* Each row */
.stat-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    line-height: 1.3;
    color: #fff;
}

/* The green tick */
.tick {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    color: #9FF14E;
    font-weight: 700;
    font-size: 0.9rem;
    flex: 0 0 22px;
    /* prevents squish */
    line-height: 1;
    /* perfect centering */
}




.inverted-stats span {
    display: block;
    margin-bottom: 8px;
}

/* ===== Image Container ===== */
.inverted-project-images {
    max-width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inverted-main-img {
    width: 450px;
    animation: inverted-floatMain 6s ease-in-out infinite;
}

/* ===== Animations ===== */
@keyframes inverted-floatMain {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .inverted-project-container {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
    }

    .inverted-project-content {
        max-width: 100%;
        margin-top: 30px;
        /* 👈 content now below image */
    }

    .inverted-project-images {
        max-width: 70%;
    }

    .inverted-main-img {
        width: 180px;
    }
}

@media (max-width: 480px) {
    .inverted-project-section {
        padding: 30px 15px;
    }

    .inverted-project-content h2 {
        font-size: 1.8rem;
    }

    .inverted-project-content p {
        font-size: 1rem;
    }

    .inverted-contact-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .inverted-main-img {
        width: 140px;
    }
}

/* ================================ INVERTED /END =================================== */












/*=============== FOOTER ===============*/
footer {
    position: relative;
    background: #000;
    color: #fff;
    padding: 90px 8%;
    overflow: hidden;
    z-index: 1;
}

footer {
    position: relative;
    overflow: hidden;
}

/* First Logo */
footer::before {
    content: "";
    position: absolute;
    bottom: -40px;
    left: 35%;
    /* shifted a bit left */
    transform: translateX(190%);
    /* hidden initially */
    width: 400px;
    height: 400px;
    background: url("../img/rahul.webp") no-repeat center center;
    background-size: contain;
    opacity: 0.07;
    pointer-events: none;
    z-index: 0;
    filter: brightness(0) invert(1);
    transition: transform 1.8s ease-out, opacity 1.8s ease-out;
}

/* Second Logo */
footer::after {
    content: "";
    position: absolute;
    bottom: -40px;
    left: 65%;
    /* shifted a bit right */
    transform: translateX(220%);
    /* hidden initially */
    width: 300px;
    height: 400px;
    background: url("../img/Icon-01.webp") no-repeat center center;
    background-size: contain;
    opacity: 0.07;
    pointer-events: none;
    z-index: 0;
    filter: brightness(0) invert(1);
    transition: transform 1.8s ease-out 0.6s, opacity 1.8s ease-out 0.6s;
    /* delay for "after" effect */
}

/* Active State */
footer.show-logo::before {
    transform: translateX(-90%);
    opacity: 0.07;
}

footer.show-logo::after {
    transform: translateX(-50%);
    opacity: 0.07;
}


footer * {
    position: relative;
    z-index: 2;
    /* keeps text & links above logo */
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: #aaa;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
    font-size: 1rem;
}

.footer-column ul li a:hover {
    color: #9FF14E;
    /* accent color */
}

.footer-column ul li a {
    position: relative;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-column ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background: #9FF14E;
    /* green */
    transform: scaleX(0);
    transform-origin: left;
    /* start from left */
    transition: transform 0.6s ease;
}

.footer-column ul li a:hover {
    color: #9FF14E;
}

.footer-column ul li a:hover::after {
    transform: scaleX(1);
    transform-origin: right;
    /* collapse to right when leaving */
}



.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: #aaa;
}

.footer-bottom a {
    color: #fff;
    text-decoration: none;
    margin: 0 5px;
    transition: 0.3s;
}

.footer-bottom a:hover {
    color: #9FF14E;
}

@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

.glow-text {
    font-size: 1rem;
    color: #fff;
    text-align: center;
    letter-spacing: 2px;
    animation: greenGlow 1s infinite alternate;
}

@keyframes greenGlow {
    0% {
        text-shadow: 0 0 0px #9FF14E;
        color: #fff;
    }

    100% {
        text-shadow: 0 0 10px #9FF14E, 0 0 30px #9FF14E;
        color: #9FF14E;
    }
}

@media (max-width: 900px) {

    /* Hide first logo on mobile */
    footer::before {
        display: none;
    }

    /* Center second logo on mobile */
    footer::after {
        left: 50%;
        transform: translateX(-50%);
        /* center horizontally */
        width: 250px;
        /* scale down a bit if needed */
        height: 250px;
        transition: transform 1.8s ease-out, opacity 1.8s ease-out;
        margin-bottom: 300px;
    }

    /* Keep text above */
    footer * {
        position: relative;
        z-index: 2;
    }
}

/* ================== CTA section ======================= */
.contain-cta {
    background: #1a1919;
    padding: 40px 40px;
}
.cta-section {
  max-width: 1400px;
  margin: 4rem auto 2rem;
  padding: 0 1rem;
}

.cta-container {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(159, 241, 78, 0.2);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.cta-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.cta-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: ctaWave 20s ease-in-out infinite;
}

@keyframes ctaWave {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 4rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.cta-title {
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
  max-width: 900px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-description {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  max-width: 800px;
}

.cta-link {
  text-decoration: none;
  display: inline-block;
  margin-top: 1rem;
}

.cta-button {
  background: transparent;
  color: #ffffff;
  border: 2px solid #9ff14e;
  padding: 1rem 3rem;
  border-radius: 50px;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #9ff14e 0%, #baff6b 100%);
  transition: left 0.4s ease;
  z-index: -1;
}

.cta-button:hover {
  color: #0c1519;
  border-color: #baff6b;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(159, 241, 78, 0.4);
}

.cta-button:hover::before {
  left: 0;
}

.cta-button:active {
  transform: translateY(-1px);
}

.cta-link:focus {
  outline: 2px solid #9ff14e;
  outline-offset: 4px;
  border-radius: 50px;
}

@media (max-width: 768px) {
  .cta-section {
    margin: 3rem auto 1.5rem;
  }

  .cta-container {
    border-radius: 24px;
  }

  .cta-content {
    padding: 3rem 1.5rem;
    gap: 1.25rem;
  }

  .cta-button {
    padding: 0.875rem 2.5rem;
    font-size: 1rem;
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .cta-section {
    margin: 2rem auto 1rem;
    padding: 0 0.75rem;
  }

  .cta-container {
    border-radius: 20px;
  }

  .cta-content {
    padding: 2.5rem 1.25rem;
    gap: 1rem;
  }

  .cta-link {
    width: 100%;
  }

  .cta-button {
    max-width: 100%;
  }
}

@media (min-width: 1400px) {
  .cta-content {
    padding: 5rem 3rem;
  }
}

/* ================== CTA section /END ======================= */