@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

:root {
  --primary: #1b2944;
  /* rgba(27, 41, 68, 1) */
  --secondary: #94a3b8;
  /* rgba(148, 163, 184, 1) */
  --secondary-light: #475569;
  /* rgba(71, 85, 105, 1) */
  --accent: #fa7315;
  --blue: #192335;
  /* rgba(25, 35, 53, 1) */
  --light-100: #64758b;
  /* rgba(100, 117, 139, 1)*/
}

body {
  font-family: "Manrope", sans-serif;
}

.text-primary {
  color: var(--primary);
}

.text-secondary {
  color: var(--secondary);
}

.text-secondary-light {
  color: var(--secondary-light);
}

.text-accent {
  color: var(--accent);
}

.container {
  padding-left: 54px;
  padding-right: 54px;
}

/* header css */
/* When menu is open */
.menu-open .top {
  transform: rotate(45deg);
  top: 10px;
}

.menu-open .middle {
  opacity: 0;
}

.menu-open .bottom {
  transform: rotate(-45deg);
  top: -10px;
}

header nav a {
  color: #0e172a;
  font-size: 12px;
  transition: 0.5s;
}

header nav a:hover, header nav a:hover svg {
  color: var(--accent);
}

footer a {
  transition: 0.4s;
}

footer a:hover {
  color: var(--accent) !important;
  padding-left: 4px;
}


.swiper-button-next::after,
.swiper-button-prev::after {
  display: none !important;
  content: none !important;
}

/* Header base */
#siteHeader {
  will-change: transform, background;
}

/* When scrolled */
#siteHeader.scrolled {
  background: rgb(211 211 211 / 48%);
  backdrop-filter: blur(25px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Hide header on scroll down */
#siteHeader.hide {
  transform: translateY(-100%);
}

/* Show header */
#siteHeader.show {
  transform: translateY(0);
}



/* Remove arrows in Chrome, Safari, Edge */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Remove arrows in Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}


/* Autofill background fix */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
  -webkit-text-fill-color: #fff !important;
  transition: background-color 9999s ease-in-out 0s;
}

@media (max-width: 991px) {
  #siteHeader .navLinks {
    background: #fff;
  }
}



/* How IT WORKS Floating label animation */
@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-float-delay {
  animation: float 3s ease-in-out infinite;
  animation-delay: 1.5s;
}



/* ===============================
   TRUE RADIAL WAVE PROPAGATION
================================ */

/* Container holding waves */
.energy-waves {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Single wave ring */
.energy-wave {
  position: absolute;
  inset: 50%;
  width: 160px;
  /* start near center */
  height: 160px;
  border-radius: 50%;
  border: 70px solid #fa74152f;
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
  animation: wave-expand 6.5s linear infinite;
}

/* Staggered waves */
.energy-wave:nth-child(2) {
  animation-delay: 2.1s;
}

.energy-wave:nth-child(3) {
  animation-delay: 4.2s;
}

.box {
  border-bottom: 1px solid #D9D9D9;
}

.stage_box:nth-child(1),
.stage_box:nth-child(3) {
  background: linear-gradient(179.61deg, rgba(224, 233, 240, 0.4) 0.34%, rgba(151, 186, 206, 0.4) 122.66%);
}

.stage_box:nth-child(2),
.stage_box:nth-child(4) {
  background: linear-gradient(0deg, rgba(224, 233, 240, 0.4) 0.34%, rgba(151, 186, 206, 0.4) 122.66%);
}

.box_1:nth-child(1),
.box_1:nth-child(2) {
  border-bottom: 1px solid #00000057;
}

.product_box:nth-child(1),
.product_box:nth-child(2) {
  position: relative;
}

.product_box:nth-child(1)::after,
.product_box:nth-child(2)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(97, 106, 121, 0) 0%,
    rgba(148, 162, 184, 0.6) 51.92%,
    rgba(66, 72, 82, 0) 100%
  );
}


@media screen and (min-width: 768px) {

  /* First and second box */
  .box:nth-child(1),
  .box:nth-child(2) {
    padding-top: 0;
  }

  /* Last two box */
  .box:nth-last-child(1),
  .box:nth-last-child(2) {
    border-bottom: 0;
  }

}
@media screen and (max-width: 991px) {
	.product_box:nth-child(1)::after,
	.product_box:nth-child(2)::after {
		background: none;
	}
}
@media screen and (max-width: 767px) {
	

  /* First and second box */
  .box:nth-child(1) {
    padding-top: 0;
  }

  /* Last two box */
  .box:nth-last-child(1) {
    border-bottom: 0;
  }

  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .box_1:nth-child(3) {
    border-bottom: 1px solid #00000057;
  }
}

/* Core animation */
@keyframes wave-expand {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }

  10% {
    opacity: 0.5;
  }

  40% {
    opacity: 0.35;
  }

  70% {
    opacity: 0.15;
  }

  100% {
    transform: translate(-50%, -50%) scale(3.15);
    /* reaches 499px */
    opacity: 0;
  }
}

@keyframes center-breath {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.035);
  }
}

.animate-center {
  animation: center-breath 6s ease-in-out infinite;
  will-change: transform;
}


/* ============= Mouse Move ============ */
/* Main dot */
.cursor {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
}

/* Smooth follower */
.cursor-follower {
  width: 36px;
  height: 36px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
}

/* ============ GSAP ============= */
.mosaic-tile {
  position: absolute;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(0.6);
}

/* progress bar */
.custom-range {
  -webkit-appearance: none;
  width: 100%;
  height: 1px;
  background: #94A3B8;
  outline: none;
}

/* Chrome / Edge */
.custom-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 40px;
  height: 40px;
  background: url("https://identixdesign.tech/hashe/wp-content/uploads/2026/01/thumb.svg") no-repeat center;
  background-size: 40px;
  cursor: pointer;
}

/* Firefox */
.custom-range::-moz-range-thumb {
  width: 22px;
  height: 22px;
  background: url("https://identixdesign.tech/hashe/wp-content/uploads/2026/01/thumb.svg") no-repeat center;
  background-size: 12px;
  background-color: #ffffff;
  border-radius: 4px;
  transform: rotate(45deg);
  cursor: pointer;
}


/* Remove arrows in Chrome, Safari, Edge */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Remove arrows in Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}


/* Autofill background fix */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
select:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
    -webkit-text-fill-color: #00533a66 !important;
    transition: background-color 9999s ease-in-out 0s;
}