/* RESET & BASE STYLES */

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

html {
  scroll-behavior: smooth;
}

body {
  /* overscroll-behavior: none; */
}

html, body {
  max-width: 100vw;
  overflow-x: hidden;
}


a, button, div {
  -webkit-tap-highlight-color: transparent;
}

/* Scrollbar */
/*------------------scrollbar-----------------*/
::-webkit-scrollbar {
  width: 5px; /* for vertical scroll */
  height: 5px; /* for horizontal scroll */
}

::-webkit-scrollbar-thumb {
background: transparent;
border: transparent;
-webkit-border-radius: 0px;
      border-radius: 0px;
}

::-webkit-scrollbar-thumb {
background: #f5c542;
}

::-webkit-scrollbar-thumb:hover {
background: #f5c542;
}

/* splash */
/* Splash Screen */
#splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0e0e0e;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  flex-direction: column;
  transition: opacity 0.5s ease;
}

#splash-content {
  position: relative;
  text-align: center;
  color: #f5c542;
  font-family: 'Orbitron', sans-serif;
}

/* Default (Mobile) */
.loader-container {
  position: relative;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 200px;
}

.ring {
  position: absolute;
  border: 3px solid transparent;
  border-radius: 50%;
  animation: spin 2s linear infinite;
}

.ring.one {
  width: 200px;
  height: 200px;
  border-top: 3px solid #FFD700;
}

.ring.two {
  width: 140px;
  height: 140px;
  top: 30px;
  left: 30px;
  border-bottom: 3px solid #FFD700;
  animation-direction: reverse;
}

.pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 2s infinite ease-in-out;
}

.loader-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
  color: #fff;
  z-index: 10;
  text-shadow: 0 0 20px #FFD700;
}

@keyframes spin {
  0% { transform: rotate(0); }
  100% { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(0.9);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

#splash-content p {
  font-size: 1.2rem;
  color: #f5c542;
  margin-bottom: 30px;
  margin-top: 100px;
  font-family: 'Poppins', 'Segoe UI', sans-serif; /* ✅ Font style added */
  animation: fadeOutTagline 0.5s ease-out 2.4s forwards;
}

/* Loading Bar */
.loading-bar {
  width: 250px;
  height: 6px;
  background: #222;
  border-radius: 10px;
  overflow: hidden;
  margin: 0 auto;
}

.loading-progress {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #f5c542 0%, #ffe26f 100%);
  animation: loadProgress 2.5s forwards;
  border-radius: 10px;
}

/* Animations */
@keyframes loadProgress {
  0% { width: 0; }
  100% { width: 100%; }
}

@keyframes fadeOutTagline {
  to {
    opacity: 0;
    transform: translateY(10px);
  }
}

#tagline .word {
  opacity: 0;
  display: inline-block;
  animation: fadeInWord 0.6s forwards;
}

#tagline .word:nth-child(1) { animation-delay: 0.2s; }
#tagline .word:nth-child(2) { animation-delay: 0.8s; }
#tagline .word:nth-child(3) { animation-delay: 1.4s; }
#tagline .word:nth-child(4) { animation-delay: 2.0s; }

@keyframes fadeInWord {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* splash */

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #0d0d0d; /* xve black */
  color: #ffffff;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding: 0;
  cursor: url('../assets/images/cursor-1.png') 4 4, auto;
}

.cursor-circle {
  position: fixed;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  background: rgba(245, 197, 66, 0.2);
  border: 2px solid #f5c542;
  border-radius: 50%;
  pointer-events: none;
  z-index: 999999;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, width 0.25s ease, height 0.25s ease, background 0.2s ease;
  box-shadow: 0 0 12px rgba(245, 197, 66, 0.3);
}

@media (max-width: 991px) {
  .cursor-circle {
    display: none;
  }
}

/* Hover effect on buttons */
button:hover ~ .cursor-circle,
a:hover ~ .cursor-circle {
  width: 42px;
  height: 42px;
  background: rgba(245, 197, 66, 0.3);
  box-shadow: 0 0 16px rgba(245, 197, 66, 0.5);
}

/* Click pulse */
.cursor-circle.clicked {
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
  animation: clickPulse 0.3s ease;
}

@keyframes clickPulse {
  0% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.4); }
  100% { transform: translate(-50%, -50%) scale(1); }
}
/* cursor */






  

.heading {
    padding: 160px 50px !important;
    color: #fff !important;
    background-position: bottom !important;
    background-size: 300% !important;
    background-repeat: no-repeat !important;
}

.heading img {
    max-width: 100%;
    height: auto;
    max-height: 350px;
}

.title {
    line-height: 90px !important;
    font-size: 42px !important;
    font-weight: 700;
    color: #f5c542;
    
}

.subtitle {
    font-size: 18px !important;
    color: #dcdcdc;
    font-family: 'Lato', sans-serif;
}



.features {
    text-align: center !important;
    background: #1a1a1a !important;
    padding: 60px 50px !important;
    background-image: url("../assets/wavy-dark-by-nouridio.svg") !important;
    background-position: bottom !important;
    background-size: 200% !important;
    background-repeat: no-repeat !important;
}
.features .title {
    font-size: 40px !important;
    color: #f5c542 !important;
    text-shadow: 0 0 5px rgba(245, 197, 66, 0.5);
}

.features .subtitle {
    font-size: 20px !important;
    color: #cccccc;
}

.features .card-body {
    text-align: left !important;
}

.features .card-title {
    margin: 0 0 -3px !important;
}
.cards {
    margin-top: 30px !important;
}

.card {
    border-radius: 5px !important;
    box-shadow: none !important;
}

.card-title {
    font-size: 24px;
    color: #f5c542 !important;
    margin-bottom: 15px;
}

.statistics {
    background: #0d0d0d;
    padding: 100px 20px;
    text-align: center;
}

.statistics .card.statistic {
    background: transparent;
    color: #f5c542;
    font-weight: bold;
    font-size: 22px;
    border: none;
}


.statistics .card-body{
    padding: 0 !important;
    height: 280 !important;
    width: 332 !important;
    max-height: 280 !important;
    max-width: 332 !important;
}

.statistics .title {
    font-size: 40px !important;
    color: #ffffff !important;
    line-height: 70px !important;
}

.statistics .subtitle {
    font-size: 20px !important;
    color: #a2a8bd;
}

.card.statistic {
    background: transparent !important;
    box-shadow: none !important;
    color: #f7f7f7 !important;
}


.page_end {
    background-image: url("../assets/wavy-light-by-nouridio.svg") !important;
    background-position: bottom !important;
    background-size: 200% !important;
    background-repeat: no-repeat !important;
    padding-top: 60px;
}
.start {
    padding: 60px 50px !important
}

.start .card {
    background: #1a1a1a;
    border: 2px solid #f5c542;
    border-radius: 15px;
    padding: 30px;
    color: #ffffff;
    box-shadow: 0 0 10px rgba(245, 197, 66, 0.2);
}


.features .card {
    background: #111;
    border-radius: 22px;
    border: 2px solid #f5c542;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(245, 197, 66, 0.2);
}
.features .card-text {
    color: rgba(255, 255, 255, 0.6) !important;
}

.features .card-body {
    padding: 40px 40px 40px 30px !important;
}

.navbar-toggler-icon {
    color: #fff !important
}
.footer {
    text-align: center;
    padding: 40px 20px;
    color: #aaaaaa;
    padding: 30px 30px !important
}

.footer .nouridio {
    font-family: 'Montserrat' !important;
    font-style: normal !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    line-height: 5px !important;
    letter-spacing: 0.15em !important;
    font-variant: small-caps !important;
}

.footer .nouridio a {
    color: #f5c542 !important;
    text-decoration: none;
}
.footer .bot-footer {
    text-align: center !important;
    color: #a2a8bd !important
}








.hero-section > *:not(.trading-graph-wrapper) {
  position: relative;
  z-index: 2;
}

.trading-graph-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 900px;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.trading-graph-svg {
  display: block;
  width: 200%;
  height: 100%;
  animation: scrollGraph 20s linear infinite;
}

.graph-line {
  stroke: #f5c542; /* gold */
  fill: none;
  opacity: 0.3;
}

.graph-fill {
  fill: url(#gradient-fill);
  opacity: 0.08;
}

/* Define the gradient fill using inline SVG or inject via JS/CSS */
.trading-graph-svg defs {
  position: absolute;
}

/* Animate the entire graph moving left */
@keyframes scrollGraph {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* move half width */
}




.hero-section {
  background: radial-gradient(circle at top, #1f1f1f, #0d0d0d);
  padding: 120px 20px 100px;
  color: #fff;
  text-align: center;
  position: relative;
  min-height: 100vh;

  display: flex;              /* enable flexbox */
  flex-direction: column;
  justify-content: center;    /* horizontal center */
  align-items: center;        /* vertical center */
}

  .hero-logo {
    max-width: 220px;
    width: 100%;
    height: auto;
    margin-top: -20px;
    margin-bottom: -20px;
  }

  .hero-logo {
    transition: transform 0.3s ease;
  }

  .hero-logo:hover {
    transform: rotate(6deg) scale(1.05);
  }
  
  .hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
  }
  
  .hero-title span {
    color: #f5c542;
    text-shadow: 0 0 20px rgba(245, 197, 66, 0.6);
  }
  
  .hero-subtitle {
    display: none;
    font-size: 1.2rem;
    color: #ccc;
    margin-top: 15px;
    margin-bottom: 30px;
  }
  
  



/* From Uiverse.io by vinodjangid07 */ 
.start-btn {
  width: 200px;
  height: 50px;
  border: none;
  border-radius: 40px;
  background: linear-gradient(to right,#bf953f,#fcf6ba,#b38728,#fbf5b7,#aa771c);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 1rem;
  color: rgb(121, 103, 3);
  font-weight: 600;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition-duration: 1s;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.144);
  background-size: 200% 200%;
  display: inline-block;
  color: rgba(0, 0, 0, 0.8);
  text-transform: uppercase;
}

.logoIcon path {
  fill: rgb(121, 103, 3);
}

.start-btn:hover {
  transform: scale(0.95);
  transition-duration: 1s;
  animation: gradient 1s ease infinite;
  background-position: right;
}



.feature-icons-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 0 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ccc;
  font-size: 1.2rem;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

/* Icon glow stays the same */
.feature-item i {
  color: #f5c542;
  font-size: 1.2rem;
  text-shadow: 0 0 20px rgba(245, 197, 66, 0.6);
}

/* 📱 Responsive tweaks */
@media (max-width: 768px) {
  .feature-icons-bar {
    margin-top: 10px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .feature-item {
    font-size: 1rem;
    text-align: center;
  }

  .feature-item i {
    font-size: 1rem;
  }
}

  
  
  .stats-grid {
    bottom: -50px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 30px;
    font-size: 1rem;
    color: #bbb;
  }
  
  .stats-grid strong {
    font-size: 1.8rem;
    display: block;
    color: #f5c542;
  }

  






















/* xve Desktop Navbar - hidden on mobile */
.xve-desktop-nav {
    display: none;
  }
  
  @media (min-width: 992px) {
    .xve-desktop-nav {
      display: flex;
      justify-content: center;
      align-items: center;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      width: 100%;
      z-index: 999;
      background: transparent;
      padding: 20px 0;
    }
    
  
    .xve-nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 30px;
      background: #1a1a1a;
      border-radius: 50px;
      box-shadow: 0 0 12px rgba(245, 197, 66, 0.2);
      border: 1px solid rgba(245, 197, 66, 0.3);
      width: 100%;
      max-width: 950px;
      margin: 0 auto; /* this ensures centering */
    }

    .xve-nav-inner {
      margin-inline: auto;
    }

    .xve-desktop-nav .nav-icon-left img {
      height: 40px;
      width: 40px;
      /* background: #f5c542; */
      border-radius: 50%;
      padding: 0;
      margin-top: 6px;
    }

    .nav-icon-left img {
      transition: transform 0.3s ease;
    }
  
    .nav-icon-left img:hover {
      transform: rotate(6deg) scale(1.05);
    }
  
    .xve-nav-links {
      display: flex;
      gap: 30px;
      list-style: none;
      margin: 0 auto;
      padding: 0 30px;
    }
  
    .xve-nav-links li a {
      color: #dcdcdc;
      text-decoration: none;
      font-family: 'Poppins', sans-serif;
      font-weight: 500;
      transition: all 0.3s ease;
      position: relative;
    }
  
    .xve-nav-links li a:hover,
    .xve-nav-links li a:focus {
      color: #f5c542;
    }

    .xve-nav-links li a::after {
      content: '';
      display: block;
      margin: auto;
      height: 2px;
      width: 0;
      background: #f5c542;
      transition: width 0.3s ease;
    }
    
    .xve-nav-links li a:hover::after,
    .xve-nav-links li a.active::after,
    .mobile-nav-menu li a.active::after {
      width: 100%;
    }
    
    .xve-nav-links li a.active,
    .mobile-nav-menu li a.active {
      color: #f5c542;
    }

  
    /* .xve-nav-btn {
      background: #f5c542;
      border: none;
      border-radius: 50%;
      width: 42px;
      height: 42px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: 0.3s;
    }
  
    .xve-nav-btn:hover {
      box-shadow: 0 0 12px #f5c542;
      transform: scale(1.05);
    } */

    .cart-wrapper {
      position: relative;
    }
    
    .cart-badge {
      position: absolute;
      top: 2px;
      right: -5px;
      background: #f5c542;
      color: #111;
      font-size: 10px;
      padding: 0 5px 0 5px;
      border-radius: 50%;
      font-weight: 700;
    }

    .cartBtn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
      color: #000;
      font-weight: 500;
      position: relative;
      background-color: transparent;
      box-shadow: 0 20px 30px -7px rgba(27, 27, 27, 0.219);
      transition: all 0.3s ease-in-out;
      cursor: pointer;
      overflow: hidden;
      /* background: #f5c542; */
      border: none;
      border-radius: 50%;
      width: 42px;
      height: 55px;
      display: flex;
      cursor: pointer;
      transition: 0.3s;
    }
    
    .cart-img {
      width: 23px;
      height: 23px;
      z-index: 2;
    }
    
    .cartBtn:active {
      transform: scale(0.96);
    }
    
    .product {
      position: absolute;
      width: 15px;
      height: 15px;
      border-radius: 3px;
      content: "";
      left: 14px;
      bottom: 26px;
      opacity: 0;
      z-index: 1;
      fill: #000;
    }
    
    .cartBtn:hover .product {
      animation: slide-in-top 1.2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    }
    
    @keyframes slide-in-top {
      0% {
        transform: translateY(-30px);
        opacity: 1;
      }
    
      100% {
        transform: translateY(0) rotate(-90deg);
        opacity: 1;
      }
    }
    
    .cartBtn:hover .cart-img {
      animation: slide-in-left 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    }
    
    @keyframes slide-in-left {
      0% {
        transform: translateX(-10px);
        opacity: 0;
      }
    
      100% {
        transform: translateX(0);
        opacity: 1;
      }
    }

    .xve-nav-inner {
      padding: 6px 24px;
      max-width: 920px;
    }
  
    .xve-nav-links {
      gap: 20px;
    }
  
    .xve-nav-links li a {
      font-size: 14px;
    }
  
    .xve-nav-btn {
      width: 36px;
      height: 36px;
    }
  
    .nav-icon-left img {
      height: 32px;
      width: 32px;
      padding: 4px;
    }
  
    body {
      padding-top: 100px; /* so hero section doesn't hide under fixed nav */
    }
  }



  
  /* Animation for adding links */
@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animation for removing links */
@keyframes fadeOutSlide {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(10px);
  }
}

.xve-nav-links .link-animate-in {
  animation: fadeInSlide 0.4s ease forwards;
  opacity: 0;
}

.xve-nav-links .link-animate-out {
  animation: fadeOutSlide 0.3s ease forwards;
  opacity: 1;
}


/* ========== Mobile Nav ========== */
.hamburger {
  cursor: pointer;
  margin-top: -5px;
  pointer-events: none;
}

.hamburger input {
  display: none;
}

.hamburger svg {
  /* The size of the SVG defines the overall size */
  height: 2.5em;
  /* Define the transition for transforming the SVG */
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line {
  fill: none;
  stroke: #f5c542;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  /* Define the transition for transforming the Stroke */
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
              stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line-top-bottom {
  stroke-dasharray: 12 63;
}

.hamburger input:checked + svg {
  transform: rotate(-45deg);
}

.hamburger input:checked + svg .line-top-bottom {
  stroke-dasharray: 20 300;
  stroke-dashoffset: -32.42;
}

.navbar-toggler {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  box-shadow: none;
  outline: none;
  appearance: none;
  cursor: pointer;
  padding: 6px;
  margin-left: -4px;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.xve-mobile-nav {
  display: none;
}






.floating-cart {
  display: none;
  position: fixed;
  justify-content: center;
  align-items: center;
  bottom: 120px;
  right: 23px;
  width: 46px;
  height: 46px;
  background: #111;
  border: 1px solid #f5c542;
  border-radius: 50%;
  z-index: 9999;
  box-shadow: 0 0 12px rgba(245, 197, 66, 0.3);
  cursor: pointer;
  z-index: 1000;
}

.floating-cart:hover {
  transform: scale(1.08);
  box-shadow: 0 0 8px rgba(245, 197, 66, 0.5);
}

.floating-cart .cart-img-mobile {
  width: 24px;
  height: 24px;
}

.floating-cart .cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #f5c542;
  color: #111;
  font-size: 11px;
  font-weight: bold;
  padding: 2px 5px;
  border-radius: 20px;
}





@media (max-width: 991px) {
  .xve-mobile-nav {
    display: block;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(13, 13, 13, 0.9);
    padding: 16px 24px;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: background 0.3s ease, max-height 0.4s ease;
    overflow: hidden;
    max-height: 70px; /* collapsed height */
  }

  /* Expanded when menu is open */
  .xve-mobile-nav.expanded {
    max-height: 533px; /* enough room for nav items */
  }

  .mobile-nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -10px;
  }

  .mobile-logo img {
    height: 56px;
    width: 56px;
    border-radius: 50%;
    padding: 6px;
    padding-top: 8px;
    transition: transform 0.3s ease;
  }

  .mobile-logo img:hover {
    transform: rotate(6deg) scale(1.05);
  }

  .mobile-nav-menu {
    border-top: 1px solid #333;
    top: 64px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    opacity: 0;
    transform: translateY(-20px);
    padding: 24px;
    gap: 16px; /* spacing between list items */
    z-index: 1001;
    border-radius: 0 0 16px 16px;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .floating-cart {
    display: flex;
  }

  @keyframes slideDownFade {
    0% {
      opacity: 0;
      transform: translateY(-20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes slideUpFade {
    from {
      opacity: 1;
      transform: translateY(0);
    }
    to {
      opacity: 0;
      transform: translateY(-20px);
    }
  }

  .mobile-nav-menu.show {
    display: flex;
    animation: slideDownFade 0.35s ease forwards;
  }

  /* Slide up */
  .mobile-nav-menu.closing {
    display: flex;
    animation: slideUpFade 0.35s ease forwards;
  }

  .mobile-nav-menu li {
    list-style: none;
    text-align: center;
    padding: 10px 0;
    transition: background 0.3s ease, transform 0.2s ease;
    border-radius: 12px;
  }

  .mobile-nav-menu li a {
    color: #f5c542;
    font-size: 16px;
    text-decoration: none;
    font-weight: 500;
  }
}







/* pricing section */
.pricing-section {
  padding: 80px 20px;
  background: #0a0a0a;
  color: #f5f5f5;
  text-align: center;
}

.pricing-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 60px;
  color: #ffffff;
}

.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.card {
  position: relative;
  overflow: visible;
  background: #111;
  border: 1px solid rgba(245, 197, 66, 0.1);
  border-radius: 12px;
  padding: 30px;
  width: 260px;
  box-shadow: 0 0 12px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

.card:hover {
  box-shadow: 0 0 18px rgba(245, 197, 66, 0.15);
  transform: translateY(-4px);
}

.card.highlight {
  background: linear-gradient(145deg, #1c1c1c, #111);
  border: 1px solid #f5c542;
  box-shadow: 0 0 20px rgba(245, 197, 66, 0.25);
}

.card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #f5c542;
}

.card .price {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
}

.card .price .month {
  font-size: 14px;
  font-weight: normal;
  color: #999;
}

.card .sub {
  font-size: 13px;
  color: #bbb;
  margin-bottom: 20px;
}

.card ul {
  list-style: none;
  padding: 0;
  text-align: left;
  font-size: 14px;
  color: #ccc;
}

.card ul li {
  margin: 8px 0;
}

.card button {
  background: #f5c542;
  color: #111;
  border: none;
  border-radius: 8px;
  padding: 10px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 20px;
  transition: background 0.3s ease;
}

.card button:hover {
  background: #ffe37b;
}

.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #f5c542;
  color: #111;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 30px;
  box-shadow: 0 0 10px rgba(245, 197, 66, 0.4);
  z-index: 2;
  animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-4px); }
}

.was-price {
  font-size: 14px;
  color: #bbb;
  margin-top: -10px;
  margin-bottom: 12px;
}

.was-price s {
  color: #777;
  margin-right: 8px;
}

.save-tag {
  background-color: #f5c542;
  color: #111;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
}

.microcopy {
  font-size: 12px;
  color: #888;
  margin-top: 8px;
  text-align: center;
}

.plan-reco {
  font-size: 13px;
  color: #f5c542;
  font-weight: 500;
  margin-top: -10px;
  margin-bottom: 12px;
}












.cart-icon-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #f5c542;
  border: none;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 0 8px rgba(245, 197, 66, 0.3);
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-icon-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 12px rgba(245, 197, 66, 0.5);
}

.cart-icon-btn img {
  width: 16px;
  height: 16px;
}

.cart-plus-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #111;
  color: #f5c542;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 999px;
  font-weight: bold;
}






/* Purchase Toast */
.purchase-toast {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #1a1a1a;
  color: #f5f5f5;
  padding: 12px 16px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  max-width: 280px;
  z-index: 9999;
  font-size: 13px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.purchase-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #f5c542;
}

.toast-content {
  flex: 1;
  line-height: 1.4;
}

.toast-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.toast-name {
  font-weight: 600;
  font-size: 13px;
  color: #fff;
}

.toast-close {
  cursor: pointer;
  color: #888;
  font-size: 18px;
  line-height: 1;
}

.toast-msg {
  margin: 4px 0;
  color: #ccc;
}

.toast-msg strong {
  color: #f5c542;
  font-weight: 500;
}

.toast-time {
  font-size: 12px;
  color: #777;
}

@media (max-width: 698px) {
  .purchase-toast {
    display: none;
  }
}

/* Progress Div */
#scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(to right, #f5c542, #ffe16e, #f5c542);
  z-index: 9999;
  transition: width 0.2s ease-out;
}

@media (max-width: 991px) {
  #scroll-progress-bar {
    height: 2px;
  }
}

/* Progress dot */
/* #scroll-dot {
  position: fixed;
  top: 20px;
  left: 20px;
  background: #1e1e1e;
  border: 2px solid #f5c542;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  color: #f5c542;
  box-shadow: 0 0 12px rgba(245, 197, 66, 0.4);
  z-index: 9999;
  cursor: grab;
  user-select: none;
} */

/* #scroll-dot {
  position: fixed;
  top: 120px;
  left: 0px;
  background: #1e1e1e;
  border: 2px solid #f5c542;
  border-left: 0;
  border-radius: 0 50px 50px 0;
  width: 48px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  color: #f5c542;
  z-index: 9999;
  cursor: grab;
  user-select: none;
} 
  
#scroll-dot:hover {
  transform: scale(1.1);
}
  */

/* Social Nav */
.xve-social-nav {
  position: fixed;
  gap: 12px;
  align-items: center;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 12px 8px;
  background: rgba(17, 17, 17, 0.8);
  border-radius: 0 10px 10px 0;
  box-shadow: 0 0 4px rgba(245, 197, 66, 0.25);
  z-index: 9999;
  animation: fadeSlideIn 1s ease-out;
}

.xve-social-nav a {
  color: #f5c542;
  font-size: 18px;
  transition: transform 0.2s ease, color 0.2s ease;
}

.xve-social-nav a:hover {
  color: #fff;
  transform: scale(1.2);
}

#scroll-dot {
  padding: 10px;
  border-radius: 20px;
  font-weight: 600;
  color: #f5c542;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
  width: 42px;
  height: 30px;
  font-size: 11px;
  background: rgba(245, 197, 66, 0.05);
  border: 1px solid #f5c542;
  box-shadow: 0 0 6px rgba(245, 197, 66, 0.25);
  transition: transform 0.3s ease;
}

#scroll-dot:hover {
  transform: scale(1.08);
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(-50%) translateX(-40px); }
  to   { opacity: 1; transform: translateY(-50%) translateX(0); }
}

@media (max-width: 768px) {
  .xve-social-nav {
    top: auto;
    bottom: 20px;
    left: 20px;
    transform: none;
    flex-direction: row;
    gap: 16px;
    padding: 10px 16px;
    background: rgba(17, 17, 17, 0.9);
    border-radius: 12px;
    box-shadow: 0 0 4px rgba(245, 197, 66, 0.25);
    animation: none;
  }

  .xve-social-nav a {
    font-size: 18px;
  }

  #scroll-dot {
    width: 38px;
    height: 28px;
    padding: 0 8px;
    font-size: 12px;
    background: rgba(245, 197, 66, 0.08);
    border: 1px solid #f5c542;
    box-shadow: 0 0 4px rgba(245, 197, 66, 0.25);
    border-radius: 20px;
  }
}


















.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: 20px;
  padding: 40px;
  margin: 0 auto;
  max-width: 1440px;
}

.feature-card {
  background: radial-gradient(circle at top left, #1a1a1a, #0e0e0e);
  border-radius: 20px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 0 30px rgba(255,255,255,0.05);
}

.feature-card {
  background: radial-gradient(circle at 30% 30%, rgba(255, 215, 0, 0.05), transparent 60%),
              linear-gradient(145deg, #1a1a1a, #0e0e0e);
  box-shadow: inset 0 0 20px rgba(255, 215, 0, 0.02), 0 0 20px rgba(255, 255, 255, 0.03);
}

.feature-card {
  background: linear-gradient(160deg, #111 0%, #0c0c0c 50%, #1a1a1a 100%);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.04), inset 0 0 25px rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

/* .feature-card {
  background: radial-gradient(circle at top left, rgba(255, 215, 0, 0.04), rgba(0, 0, 0, 0.95)),
              linear-gradient(to bottom right, #101010, #0a0a0a);
  backdrop-filter: blur(2px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.03);
} */

/* .feature-card {
  background: radial-gradient(
      circle at 30% 30%,
      rgba(255, 215, 0, 0.08),
      transparent 50%
    ),
    radial-gradient(circle at top left, #1a1a1a, #0e0e0e);
  border-radius: 20px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.05);
} */

.tag {
  background: rgba(255, 255, 255, 0.08);
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 12px;
  width: fit-content;
  margin-bottom: 10px;
}

.feature-card h2 {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3;
  z-index: 1;
}

.feature-card h2 strong {
  font-weight: 600;
}

.feature-card p {
  font-size: 14px;
  color: #ccc;
  z-index: 1;
}

.feature-card svg {
  position: absolute;
  bottom: 50px;
  right: 20px;
  max-width: 150px;
  opacity: 0.8;
  z-index: 0;
}

.card-4 {
  grid-column: span 1;
  grid-row: span 1;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.card-4 h1 {
  font-size: 48px;
  margin: 0;
}

.card-1, .card-7 {
  grid-column: span 2;
}

.gradient-text {
  background: linear-gradient(90deg, #fff, #888);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mock-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 12px;
  border-radius: 12px;
  margin-top: 16px;
  font-size: 12px;
  color: #ccc;
}


/* Tablet View (Medium Screens) */
@media screen and (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    padding: 30px;
  }

  .card-4 h1 {
    font-size: 36px;
  }

  .feature-card {
    height: 260px;
  }

  .card-7 {
    grid-column: span 1;
  }
}

/* Mobile View (Small Screens) */
@media screen and (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding: 20px;
  }

  .feature-card {
    height: auto;
    min-height: 280px;
  }

  .feature-card svg {
    position: static;
    margin-top: 20px;
    align-self: flex-end;
  }

  .card-4 h1 {
    font-size: 32px;
  }

  .card-1 {
    grid-column: span 1;
  }
}
























/* ========== GLOBAL STYLES ========== */
.testimonials-hero {
  position: relative;
  background: radial-gradient(circle, #0c0c0c 0%, #000 80%);
  background-image:
    repeating-linear-gradient(90deg, rgba(255, 215, 0, 0.02) 0 1px, transparent 1px 60px),
    repeating-linear-gradient(0deg, rgba(255, 215, 0, 0.02) 0 1px, transparent 1px 60px);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 160px 0;
  overflow: hidden;
  height: 940px;
}

.testimonials-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 215, 0, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 215, 0, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: -2;
}

.testimonials-hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.9) 20%, rgba(10, 10, 10, 0.7) 40%, rgba(10, 10, 10, 0.3) 70%, transparent 100%);
  pointer-events: none;
  z-index: 3; /* must be above the grid */
}

/* ========== IPHONE BACKGROUND FRAME ========== */
.iphone-frame {
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  width: 360px;
  height: 720px;
  z-index: 0;
  pointer-events: none;
}

.iphone-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 40px rgba(255, 215, 0, 0.3));
}

/* ========== MARQUEE TRACKS ========== */
.marquee-row {
  overflow: hidden;
  position: relative;
  z-index: 2;
  margin-bottom: 10px;
  padding: 20px;
}

/* .marquee-row {
  mask-image: linear-gradient(to right, transparent, white 20%, white 80%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, white 20%, white 80%, transparent);
} */

.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scroll-left 80s linear infinite;
}

.marquee-row.right .marquee-track {
  animation: scroll-right 80s linear infinite;
}

.marquee-row.left {
  margin-top: 220px;
}


/* ========== TESTIMONIAL CARDS ========== */
.testimonial-card {
  flex: 0 0 auto;
  width: 300px;
  background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent */
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 18px;
  padding: 24px;
  color: #fff;
  position: relative;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.12);
  transition: transform 0.3s ease;
  isolation: isolate; /* <-- This is important */
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

.testimonial-card img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  position: absolute;
  right: 16px;
  bottom: 16px;
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.testimonial-card .name {
  font-weight: 600;
  margin: 0 0 4px 0;
  color: gold;
  font-size: 16px;
}

.testimonial-card .role {
  font-size: 12px;
  color: #aaa;
  margin-bottom: 12px;
}

.testimonial-card .quote {
  font-size: 13px;
  line-height: 1.5;
  color: #ddd;
  padding-right: 50px;
  margin: 0;
}

/* ========== CENTER TEXT OVER PHONE ========== */
.device-content {
  position: absolute;
  top: 100px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 1;
  padding: 0 20px;
}

.device-content h2 {
  font-size: 36px;
  margin: 0;
  line-height: 1.4;
}

.device-content .highlight {
  color: gold;
}

.device-content p {
  font-size: 14px;
  color: #bbb;
  margin-top: 12px;
}

/* ========== ANIMATIONS ========== */
@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

@keyframes scroll-right {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(0); }
}

/* ========== RESPONSIVE ========== */
@media screen and (max-width: 768px) {
  .testimonials-hero {
    height: 1100px;
  }

  .device-content h2 {
    font-size: 28px;
  }

  .testimonial-card {
    width: 260px;
    padding: 20px;
  }

  .testimonial-card img {
    position: static;
    margin-top: 16px;
    display: block;
    margin-left: auto;
  }

  .iphone-frame {
    width: 260px;
    height: 520px;
  }

  .marquee-track {
    animation-duration: 60s;
  }
}





















.security-hero {
  position: relative;
  padding: 10px 20px 100px;
  background: #0a0a0a;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

.year-background {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 560px;
  font-size: clamp(120px, 28vw, 560px);
  letter-spacing: -8px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.03); /* faint white */
  z-index: 0;
  user-select: none;
  white-space: nowrap;
  pointer-events: none;
  font-family: 'Poppins', sans-serif;
}

.security-hero > *:not(.year-background) {
  position: relative;
  z-index: 1;
}

.shield-container {
  width: 180px;
  height: 200px;
  position: relative;
  animation: floatUpDown 4s ease-in-out infinite;
}

.shield-glass {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  clip-path: polygon(50% 0%, 95% 25%, 95% 70%, 50% 100%, 5% 70%, 5% 25%);
  border-radius: 16px;
  position: relative;
  box-shadow:
    0 0 30px rgba(255, 215, 0, 0.06),
    inset 0 0 20px rgba(255, 255, 255, 0.02);
}

.shield-glass::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0));
  border-radius: 16px;
  pointer-events: none;
}

.lock-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.lock-circle {
  width: 22px;
  height: 22px;
  background: #fff;
  opacity: 0.12;
  border-radius: 50%;
  margin: 0 auto;
}

.lock-stem {
  width: 6px;
  height: 24px;
  background: #fff;
  opacity: 0.12;
  margin: 6px auto 0;
  border-radius: 3px;
}

.security-text {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.security-text.animate-in {
  opacity: 1;
  transform: translateY(0);
}


.security-text h2 {
  font-size: 28px;
  color: white;
  margin-top: 48px;
  line-height: 1.4;
}

.security-text .badge {
  font-size: 13px;
  background: rgba(255, 215, 0, 0.08);
  padding: 6px 16px;
  border-radius: 20px;
  color: gold;
  display: inline-block;
  margin-bottom: 12px;
  letter-spacing: 1px;
  font-weight: 600;
  text-transform: uppercase;
}

.security-text p {
  font-size: 14px;
  color: #aaa;
  max-width: 480px;
  margin: 16px auto 0;
  line-height: 1.6;
}

.security-text .sub-heading {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: #ffd700;
  font-weight: 600;
  margin-bottom: 12px;
}

.security-text .highlighted-note {
  margin-top: 18px;
  font-size: 13px;
  color: #ffdd66;
  font-style: italic;
  line-height: 1.6;
}

@keyframes floatUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media screen and (max-width: 768px) {
  .shield-container {
    width: 140px;
    height: 160px;
  }

  .security-text h2 {
    font-size: 22px;
  }

  .security-text p {
    font-size: 13px;
  }
}











/* comparision table - in the pricing page*/
.comparison-section {
  background: #0d0d0d;
  color: #f5f5f5;
  padding: 80px 20px;
  text-align: center;
}

.section-heading {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.section-subtitle {
  color: #aaa;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.comparison-table table {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  border-collapse: collapse;
  font-size: 1rem;
  background-color: #121212;
  border-radius: 10px;
  overflow: hidden;
}

.comparison-table th, .comparison-table td {
  padding: 16px;
  border-bottom: 1px solid #2a2a2a;
}

.comparison-table th {
  background-color: #1e1e1e;
  font-weight: 600;
  text-transform: uppercase;
}

.comparison-table td {
  text-align: center;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}















/* Hide native browser scrollbar so users cannot drag-scroll fast */
html,
body {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar,
::-webkit-scrollbar {
  width: 0px;
  height: 0px;
  display: none;
}

html {
  scroll-behavior: auto !important;
}

body {
  overscroll-behavior-y: none;
}

html {
  scroll-behavior: auto !important;
}

body {
  overscroll-behavior-y: none;
}

/* Prevent inner scroll areas from throwing fast scroll to the page */
.chat-body,
.chat-box,
.cart-preview,
.cart-sidebar,
.mobile-nav-menu {
  overscroll-behavior: contain;
}

@media (max-width: 768px), (pointer: coarse) {
  html {
    scroll-behavior: smooth !important;
  }

  body {
    overscroll-behavior-y: auto !important;
  }

  .chat-body,
  .chat-box,
  .cart-preview,
  .cart-sidebar,
  .mobile-nav-menu {
    overscroll-behavior: auto !important;
  }
}





/* Home Contact Section */
/* Home Contact Section - Plain Dark Version */
.home-contact-section {
  position: relative;
  overflow: visible !important;
  padding: 130px 20px 120px;
  margin-top: 0;
  background: #0a0a0a;
  color: #fff;
}

.home-contact-section::before,
.home-contact-section::after {
  display: none;
}

.home-contact-grid-bg {
  display: none;
}

.home-contact-wrap {
  position: relative;
  z-index: 2;
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 0.9fr;
  gap: 55px;
  align-items: center;
  overflow: visible !important;
}

.home-contact-content {
  padding: 10px 0;
}

.home-contact-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  padding: 7px 14px;
  border: 1px solid rgba(245, 197, 66, 0.35);
  border-radius: 999px;
  background: transparent;
  color: #f5c542;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  box-shadow: none;
}

.home-contact-content h2 {
  max-width: 520px;
  margin: 0 0 20px;
  color: #fff;
  font-size: clamp(38px, 4.6vw, 64px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -1.8px;
  text-shadow: none;
}

.home-contact-content p {
  max-width: 530px;
  margin: 0;
  color: #c8c8c8;
  font-size: 15px;
  line-height: 1.75;
  font-weight: 500;
}

.home-contact-points,
.home-contact-point {
  display: none !important;
}

.home-contact-form {
  position: relative;
  width: 100%;
  max-width: 460px;
  justify-self: end;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  overflow: visible !important;
}

.home-contact-form::before,
.home-contact-form::after {
  display: none;
}

.home-contact-form > * {
  position: relative;
  z-index: 1;
}

.home-contact-form-head {
  margin-bottom: 26px;
  padding-bottom: 18px;
  border-bottom: 1px solid #333;
}

.home-contact-form-head span {
  display: block;
  color: #f5c542;
  font-family: 'Chakra Petch', 'Poppins', sans-serif;
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1px;
}

.home-contact-form-head p {
  display: none;
}

.home-contact-floating-label {
  position: relative !important;
  margin-bottom: 16px;
  z-index: 1 !important;
}

.home-contact-floating-label input,
.home-contact-floating-label textarea {
  width: 100%;
  min-height: 54px;
  padding: 18px 14px 11px;
  background: #0d0d0d !important;
  border: 1px solid #333;
  border-radius: 8px;
  color: #fff !important;
  font-family: 'Chakra Petch', 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  outline: none;
  box-shadow: none;
  caret-color: #f5c542;
  cursor: url('../assets/images/cursor-1.png') 4 4, auto;
  transition:
    border-color 0.25s ease,
    background 0.25s ease;
}

.home-contact-floating-label textarea {
  min-height: 128px;
  resize: vertical;
  line-height: 1.5;
}

.home-contact-floating-label label {
  position: absolute;
  top: 16px;
  left: 12px;
  padding: 0 6px;
  background: #0d0d0d;
  color: #a8a8a8;
  font-family: 'Chakra Petch', 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  pointer-events: none;
  transition: 0.2s ease all;
  border-radius: 4px;
}

.home-contact-floating-label input:focus,
.home-contact-floating-label textarea:focus {
  background: #0d0d0d !important;
  border-color: #f5c542;
  box-shadow: none;
}

.home-contact-floating-label input:focus + label,
.home-contact-floating-label input:not(:placeholder-shown) + label,
.home-contact-floating-label textarea:focus + label,
.home-contact-floating-label textarea:not(:placeholder-shown) + label {
  top: -8px;
  left: 10px;
  color: #f5c542;
  font-size: 12px;
  font-weight: 900;
}

.home-contact-floating-label input:-webkit-autofill,
.home-contact-floating-label input:-webkit-autofill:hover,
.home-contact-floating-label input:-webkit-autofill:focus,
.home-contact-floating-label input:-webkit-autofill:active,
.home-contact-floating-label textarea:-webkit-autofill,
.home-contact-floating-label textarea:-webkit-autofill:hover,
.home-contact-floating-label textarea:-webkit-autofill:focus,
.home-contact-floating-label textarea:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px #0d0d0d inset !important;
  box-shadow: 0 0 0 1000px #0d0d0d inset !important;
  -webkit-text-fill-color: #fff !important;
  caret-color: #f5c542 !important;
  border-color: #f5c542 !important;
  transition: background-color 9999s ease-in-out 0s !important;
}

.home-contact-floating-label input::selection,
.home-contact-floating-label textarea::selection {
  background: rgba(245, 197, 66, 0.35);
  color: #fff;
}

/* Custom Dropdown */
.home-contact-custom-select {
  position: relative !important;
  z-index: 20 !important;
}

.home-contact-custom-select.open {
  z-index: 999999 !important;
}

.home-contact-custom-select input {
  cursor: url('../assets/images/cursor-1.png') 4 4, pointer !important;
  padding-right: 48px !important;
}

.home-contact-custom-select input:focus,
.home-contact-custom-select.open input {
  border-color: #f5c542 !important;
}

.home-contact-custom-select input:focus + label,
.home-contact-custom-select input:not(:placeholder-shown) + label {
  top: -8px;
  left: 10px;
  color: #f5c542;
  font-size: 12px;
  font-weight: 900;
}

.home-contact-select-arrow {
  position: absolute;
  top: 1px;
  right: 1px;
  width: 48px;
  height: 52px;
  border: none;
  background: transparent;
  color: #f5c542;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: url('../assets/images/cursor-1.png') 4 4, pointer !important;
  z-index: 3;
}

.home-contact-select-arrow i {
  font-size: 12px;
  pointer-events: none;
  transition: transform 0.25s ease;
}

.home-contact-custom-select.open .home-contact-select-arrow i {
  transform: rotate(180deg);
}

.home-contact-select-menu {
  position: absolute !important;
  top: calc(100% + 8px) !important;
  left: 0 !important;
  right: 0 !important;
  display: none;
  background: #0d0d0d !important;
  border: 1px solid #333 !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  z-index: 999999 !important;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.65) !important;
}

.home-contact-custom-select.open .home-contact-select-menu {
  display: block !important;
}

.home-contact-select-menu button {
  width: 100%;
  min-height: 46px;
  padding: 12px 16px;
  background: #0d0d0d;
  border: none;
  border-bottom: 1px solid #222;
  color: #fff;
  text-align: left;
  font-family: 'Chakra Petch', 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: url('../assets/images/cursor-1.png') 4 4, pointer !important;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.home-contact-select-menu button:last-child {
  border-bottom: none;
}

.home-contact-select-menu button:hover {
  background: #f5c542;
  color: #111;
}

.home-contact-floating-label:not(.home-contact-custom-select) {
  z-index: 1 !important;
}

/* Submit Button */
.home-contact-submit {
  position: relative !important;
  z-index: 1 !important;
  width: 100%;
  min-height: 54px;
  margin-top: 6px;
  border: none;
  border-radius: 9px;
  background: #f5c542;
  color: #111;
  font-family: 'Chakra Petch', 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.3px;
  cursor: url('../assets/images/cursor-1.png') 4 4, pointer;
  box-shadow: none;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    opacity 0.25s ease;
}

.home-contact-submit:hover {
  background: #ffe26f;
  color: #111;
  transform: none;
  box-shadow: none;
}

.home-contact-submit:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.home-contact-loader {
  display: none;
  width: 22px;
  height: 22px;
  border: 3px solid rgba(17, 17, 17, 0.9);
  border-top: 3px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Hidden inline status. Toast handles user-visible message. */
.home-contact-status {
  display: none !important;
}

/* Toast Notification */
.home-contact-toast {
  position: fixed;
  top: 96px;
  right: 24px;
  width: min(390px, calc(100vw - 32px));
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 15px 16px;
  background: #111;
  border: 1px solid rgba(245, 197, 66, 0.28);
  border-radius: 12px;
  color: #fff;
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  z-index: 999999;
  opacity: 0;
  pointer-events: none;
  transform: translateX(24px);
  transition:
    opacity 0.28s ease,
    transform 0.28s ease;
}

.home-contact-toast.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.home-contact-toast-icon {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(245, 197, 66, 0.12);
  color: #f5c542;
  border: 1px solid rgba(245, 197, 66, 0.22);
}

.home-contact-toast.success .home-contact-toast-icon {
  background: rgba(57, 211, 83, 0.1);
  border-color: rgba(57, 211, 83, 0.25);
  color: #39d353;
}

.home-contact-toast.error .home-contact-toast-icon {
  background: rgba(255, 77, 79, 0.1);
  border-color: rgba(255, 77, 79, 0.25);
  color: #ff4d4f;
}

.home-contact-toast-content {
  flex: 1;
  min-width: 0;
  padding-top: 1px;
}

.home-contact-toast-content strong {
  display: block;
  margin-bottom: 3px;
  color: #f5c542;
  font-family: 'Chakra Petch', 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
}

.home-contact-toast.success .home-contact-toast-content strong {
  color: #39d353;
}

.home-contact-toast.error .home-contact-toast-content strong {
  color: #ff4d4f;
}

.home-contact-toast-content span {
  display: block;
  color: #cfcfcf;
  font-family: 'Chakra Petch', 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.home-contact-toast-close {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border: none;
  background: transparent;
  color: #aaa;
  font-size: 22px;
  line-height: 1;
  cursor: url('../assets/images/cursor-1.png') 4 4, pointer;
  transition: color 0.2s ease;
}

.home-contact-toast-close:hover {
  color: #fff;
}

/* Errors */
.home-contact-error {
  margin-top: 6px;
  color: #ff4d4f;
  font-family: 'Chakra Petch', 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
}

.home-contact-field-error {
  border-color: #ff4d4f !important;
  box-shadow: none !important;
}

.home-contact-botcheck {
  display: none !important;
}

/* Pricing should flow into contact smoothly */
.pricing-section {
  background: #0a0a0a;
  padding-bottom: 90px;
}

/* Tablet */
@media (max-width: 980px) {
  .home-contact-section {
    padding: 105px 20px 100px;
  }

  .home-contact-wrap {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .home-contact-content {
    text-align: center;
  }

  .home-contact-content h2,
  .home-contact-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .home-contact-form {
    justify-self: center;
    max-width: 560px;
  }
}

/* Mobile */
@media (max-width: 560px) {
  .home-contact-section {
    padding: 85px 16px 85px;
  }

  .home-contact-content h2 {
    font-size: 38px;
    letter-spacing: -1px;
  }

  .home-contact-content p {
    font-size: 14px;
  }

  .home-contact-form {
    max-width: 100%;
  }

  .home-contact-form-head span {
    font-size: 36px;
  }

  .home-contact-floating-label input,
  .home-contact-floating-label textarea,
  .home-contact-select-menu button {
    font-size: 14px;
  }

  .home-contact-toast {
    top: auto;
    right: 16px;
    bottom: 22px;
    width: calc(100vw - 32px);
    transform: translateY(22px);
  }

  .home-contact-toast.show {
    transform: translateY(0);
  }
}

