/* Full CSS Framework Inspired by Tailwind */
@font-face {
  font-family: "Nunito regular";
  src: url("../fonts/Nunito/static/Nunito-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Nunito medium";
  src: url("../fonts/Nunito/static/Nunito-Medium.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Nunito semibold";
  src: url("../fonts/Nunito/static/Nunito-SemiBold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Nunito bold";
  src: url("../fonts/Nunito/static/Nunito-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Nunito semi bold italic";
  src: url("../fonts/Nunito/static/Nunito-SemiBoldItalic.ttf")
    format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Nunito bold italic";
  src: url("../fonts/Nunito/static/Nunito-BoldItalic.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Nunito extra bold";
  src: url("../fonts/Nunito/static/Nunito-ExtraBold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Nunito black";
  src: url("../fonts/Nunito/static/Nunito-Black.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent; /* Removes tap highlight (for mobile) */
  /* user-select: none; */
  /* Prevents text selection */
}
/* Root Colors and Variables */
:root {
  /* Colors */
  --primary: #431855;
  --secondary: #d9d9d9;
  --background: #431855;
  --danger: #e3342f;
  --success: #38c172;
  --warning: #ff9800;
  --lable: #054f4f;
  --info: #4d4d4d;
  --gradient-blue: linear-gradient(90deg, #13bec0, #13bdc000);
  --gradient-white: linear-gradient(0deg, #ebf9fa, #ebf9fa00);
  --gradient-btn: linear-gradient(45deg, #08999a, #aaf1f2);
  --background-bloom: radial-gradient(
    circle,
    rgba(0, 255, 255, 0.8) 20%,
    rgba(0, 255, 255, 0) 70%
  );
  --gray-100: #f7fafc;
  --gray-200: #edf2f7;
  --gray-300: #e2e8f0;
  --gray-400: #cbd5e0;
  --gray-500: #a0aec0;
  --gray-600: #718096;
  --gray-700: #4a5568;
  --gray-800: #2d3748;
  --gray-900: #1a202c;
  --white: #ffffff;
  --black: #000000;

  /* Font Families */
  --font-serif: "Inria Serif";
  --font-serif-light-italic: "Inria Serif light italic";
  --font-serif-regular: "Inria Serif regular";
  --font-serif-italic: "Inria Serif italic";
  --font-serif-bold: "Inria Serif bold";
  --font-inder: "Inder";

  /* Font Sizes */
  --text-xs: 0.75rem; /* 12px */
  --text-sm: 0.875rem; /* 14px */
  --text-base: 1rem; /* 16px */
  --text-lg: 1.125rem; /* 18px */
  --text-xl: 1.25rem; /* 20px */
  --text-2xl: 1.5rem; /* 24px */
  --text-3xl: 1.875rem; /* 30px */
  --text-4xl: 2.25rem; /* 36px */
  --text-5xl: 3rem; /* 48px */
}

/* Font Utilities */
.font-inder {
  font-family: var(--font-inder);
}
.font-serif {
  font-family: var(--font-serif);
}
.font-serif-light-italic {
  font-family: var(--font-serif-light-italic);
}
.font-serif-regular {
  font-family: var(--font-serif-regular);
}
.font-serif-italic {
  font-family: var(--font-serif-italic);
}
.font-serif-bold {
  font-family: var(--font-serif-bold);
}
/* Base Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  font-size: 16px;
  line-height: 1.5;
}
body {
  margin: 0;
  background-color: var(--background);
  scroll-behavior: smooth;
}
h5 {
  font-family: "Poppin semibold";
  color: var(--lable);
}
/* Spacing */
:root {
  --spacing-0: 0;
  --spacing-1: 0.25rem;
  --spacing-2: 0.5rem;
  --spacing-3: 0.75rem;
  --spacing-4: 1rem;
  --spacing-5: 1.25rem;
  --spacing-6: 1.5rem;
  --spacing-8: 2rem;
  --spacing-10: 2.5rem;
  --spacing-12: 3rem;
  --spacing-16: 4rem;
  --spacing-20: 5rem;
  --spacing-24: 6rem;
  --spacing-32: 8rem;
}
.m-0 {
  margin: var(--spacing-0);
}
.m-1 {
  margin: var(--spacing-1);
}
.m-2 {
  margin: var(--spacing-2);
}
.m-3 {
  margin: var(--spacing-3);
}
.m-4 {
  margin: var(--spacing-4);
}
.m-5 {
  margin: var(--spacing-5);
}
.m-6 {
  margin: var(--spacing-6);
}
.m-8 {
  margin: var(--spacing-8);
}
.m-10 {
  margin: var(--spacing-10);
}
.m-12 {
  margin: var(--spacing-12);
}
.m-16 {
  margin: var(--spacing-16);
}
.m-20 {
  margin: var(--spacing-20);
}
.m-24 {
  margin: var(--spacing-24);
}
.m-32 {
  margin: var(--spacing-32);
}
.p-0 {
  padding: var(--spacing-0);
}
.p-1 {
  padding: var(--spacing-1);
}
.p-2 {
  padding: var(--spacing-2);
}
.p-3 {
  padding: var(--spacing-3);
}
.p-4 {
  padding: var(--spacing-4);
}
.p-5 {
  padding: var(--spacing-5);
}
.p-6 {
  padding: var(--spacing-6);
}
.p-8 {
  padding: var(--spacing-8);
}
.p-10 {
  padding: var(--spacing-10);
}
.p-12 {
  padding: var(--spacing-12);
}
.p-16 {
  padding: var(--spacing-16);
}
.p-20 {
  padding: var(--spacing-20);
}
.p-24 {
  padding: var(--spacing-24);
}
.p-32 {
  padding: var(--spacing-32);
}
.p-[value] {
  padding: [value];
}
/* Flexbox */
.flex {
  display: flex;
}
.flex-row {
  flex-direction: row;
}
.flex-col {
  flex-direction: column;
}
.items-start {
  align-items: flex-start;
}
.items-center {
  align-items: center;
}
.items-end {
  align-items: flex-end;
}
.justify-start {
  justify-content: flex-start;
}
.justify-center {
  justify-content: center;
}
.justify-end {
  justify-content: flex-end;
}
.justify-between {
  justify-content: space-between;
}
.gap-1 {
  gap: var(--spacing-1);
}
.gap-2 {
  gap: var(--spacing-2);
}
.gap-4 {
  gap: var(--spacing-4);
}
.gap-5 {
  gap: var(--spacing-5);
}
.gap-6 {
  gap: var(--spacing-6);
}
.gap-8 {
  gap: var(--spacing-8);
}
.gap-10 {
  gap: var(--spacing-10);
}
.gap-12 {
  gap: var(--spacing-12);
}
.gap-16 {
  gap: var(--spacing-16);
}
.gap-20 {
  gap: var(--spacing-20);
}
.gap-24 {
  gap: var(--spacing-24);
}
.gap-32 {
  gap: var(--spacing-32);
}
/* Grid */
.grid {
  display: grid;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, 1fr);
}
.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}
.grid-cols-5 {
  grid-template-columns: repeat(5, 1fr);
}
.grid-cols-6 {
  grid-template-columns: repeat(6, 1fr);
}
.gap-1 {
  gap: var(--spacing-1);
}
.gap-2 {
  gap: var(--spacing-2);
}
.gap-4 {
  gap: var(--spacing-4);
}

/* Typography */
.text-xs {
  font-size: 0.75rem;
}
.text-sm {
  font-size: 0.875rem;
}
.text-base {
  font-size: 1rem;
}
.text-lg {
  font-size: 1.125rem;
}
.text-xl {
  font-size: 1.25rem;
}
.text-2xl {
  font-size: 1.5rem;
}
.text-3xl {
  font-size: 1.875rem;
}
.text-4xl {
  font-size: 2.25rem;
}
.text-5xl {
  font-size: 3rem;
}
.font-bold {
  font-weight: bold;
}
.font-medium {
  font-weight: 500;
}
.font-light {
  font-weight: 300;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

/* Colors */
.text-primary {
  color: var(--primary);
}
.text-secondary {
  color: var(--secondary);
}
.text-danger {
  color: var(--danger);
}
.text-success {
  color: var(--success);
}
.text-warning {
  color: var(--warning);
}
.text-info {
  color: var(--info);
}
.text-gray-500 {
  color: var(--gray-500);
}
.text-gray-700 {
  color: var(--gray-700);
}
.bg-primary {
  background-color: var(--primary);
}
.bg-secondary {
  background-color: var(--secondary);
}
.bg-danger {
  background-color: var(--danger);
}
.bg-success {
  background-color: var(--success);
}
.bg-warning {
  background-color: var(--warning);
}
.bg-info {
  background-color: var(--info);
}
.bg-gray-100 {
  background-color: var(--gray-100);
}
.bg-gray-500 {
  background-color: var(--gray-500);
}

/* Borders */
.border {
  border: 1px solid var(--gray-300);
}
.border-0 {
  border: 0;
}
.border-2 {
  border-width: 2px;
}
.border-4 {
  border-width: 4px;
}
.rounded {
  border-radius: 0.25rem;
}
.rounded-md {
  border-radius: 0.375rem;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-full {
  border-radius: 9999px;
}

/* width */
.w-0 {
  width: 0%;
}
.w-full {
  width: 100%;
}
.w-screen {
  width: 100vw;
}
.w-0 {
  width: 0px;
}
.w-1 {
  width: 0.25rem;
} /* 4px */
.w-2 {
  width: 0.5rem;
} /* 8px */
.w-3 {
  width: 0.75rem;
} /* 12px */
.w-4 {
  width: 1rem;
} /* 16px */
.w-5 {
  width: 1.25rem;
} /* 20px */
.w-6 {
  width: 1.5rem;
} /* 24px */
.w-7 {
  width: 1.75rem;
} /* 28px */
.w-8 {
  width: 2rem;
} /* 32px */
.w-9 {
  width: 2.25rem;
} /* 36px */
.w-10 {
  width: 2.5rem;
} /* 40px */
.w-11 {
  width: 2.75rem;
} /* 44px */
.w-12 {
  width: 3rem;
} /* 48px */
.w-14 {
  width: 3.5rem;
} /* 56px */
.w-16 {
  width: 4rem;
} /* 64px */
.w-20 {
  width: 5rem;
} /* 80px */
.w-24 {
  width: 6rem;
} /* 96px */
.w-28 {
  width: 7rem;
} /* 112px */
.w-32 {
  width: 8rem;
} /* 128px */
.w-36 {
  width: 9rem;
} /* 144px */
.w-40 {
  width: 10rem;
} /* 160px */
.w-44 {
  width: 11rem;
} /* 176px */
.w-48 {
  width: 12rem;
} /* 192px */
.w-52 {
  width: 13rem;
} /* 208px */
.w-56 {
  width: 14rem;
} /* 224px */
.w-60 {
  width: 15rem;
} /* 240px */
.w-64 {
  width: 16rem;
} /* 256px */
.w-72 {
  width: 18rem;
} /* 288px */
.w-80 {
  width: 20rem;
} /* 320px */
.w-96 {
  width: 24rem;
} /* 384px */
.w-auto {
  width: auto;
}
.w-min {
  width: min-content;
}
.w-max {
  width: max-content;
}
.w-[value] {
  width: [value];
} /* Example: w-[400px], w-[10%], w-[calc(100%-1rem)] */

/* height */
.h-0 {
  height: 0%;
}
.h-full {
  height: 100%;
}
.h-screen {
  height: 100vh;
}
.h-0 {
  height: 0px;
}
.h-1 {
  height: 0.25rem;
} /* 4px */
.h-2 {
  height: 0.5rem;
} /* 8px */
.h-3 {
  height: 0.75rem;
} /* 12px */
.h-4 {
  height: 1rem;
} /* 16px */
.h-5 {
  height: 1.25rem;
} /* 20px */
.h-6 {
  height: 1.5rem;
} /* 24px */
.h-7 {
  height: 1.75rem;
} /* 28px */
.h-8 {
  height: 2rem;
} /* 32px */
.h-9 {
  height: 2.25rem;
} /* 36px */
.h-10 {
  height: 2.5rem;
} /* 40px */
.h-11 {
  height: 2.75rem;
} /* 44px */
.h-12 {
  height: 3rem;
} /* 48px */
.h-14 {
  height: 3.5rem;
} /* 56px */
.h-16 {
  height: 4rem;
} /* 64px */
.h-20 {
  height: 5rem;
} /* 80px */
.h-24 {
  height: 6rem;
} /* 96px */
.h-28 {
  height: 7rem;
} /* 112px */
.h-32 {
  height: 8rem;
} /* 128px */
.h-36 {
  height: 9rem;
} /* 144px */
.h-40 {
  height: 10rem;
} /* 160px */
.h-44 {
  height: 11rem;
} /* 176px */
.h-48 {
  height: 12rem;
} /* 192px */
.h-52 {
  height: 13rem;
} /* 208px */
.h-56 {
  height: 14rem;
} /* 224px */
.h-60 {
  height: 15rem;
} /* 240px */
.h-64 {
  height: 16rem;
} /* 256px */
.h-72 {
  height: 18rem;
} /* 288px */
.h-80 {
  height: 20rem;
} /* 320px */
.h-96 {
  height: 24rem;
} /* 384px */
.h-auto {
  height: auto;
}
.h-min {
  height: min-content;
}
.h-max {
  height: max-content;
}
.h-[value] {
  height: [value];
} /* Example: h-[400px], h-[75%], h-[calc(100%-2rem)] */

/* Additional Utilities */
.hidden {
  display: none;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.inline {
  display: inline;
}
.shadow {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
}
.shadow-md {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
}
.shadow-lg {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
}
.transition {
  transition: all 0.2s ease-in-out;
}
.transition-colors {
  transition: color 0.2s ease-in-out;
}
.transition-bg {
  transition: background-color 0.2s ease-in-out;
}
.opacity-0 {
  opacity: 0;
}
.opacity-50 {
  opacity: 0.5;
}
.opacity-100 {
  opacity: 1;
}
.cursor-pointer {
  cursor: pointer;
}
.cursor-not-allowed {
  cursor: not-allowed;
}
.z-0 {
  z-index: 0;
}
.z-10 {
  z-index: 10;
}
.z-20 {
  z-index: 20;
}
.z-30 {
  z-index: 30;
}
.z-40 {
  z-index: 40;
}
.z-50 {
  z-index: 50;
}
.z-auto {
  z-index: auto;
}
.visible {
  visibility: visible;
}
.invisible {
  visibility: hidden;
}
.static {
  position: static;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.fixed {
  position: fixed;
}
.sticky {
  position: sticky;
}
.overflow-auto {
  overflow: auto;
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-visible {
  overflow: visible;
}
.overflow-scroll {
  overflow: scroll;
}

.section {
  max-width: 1600px;
  padding: 0 20px;
  margin: auto;
}
a {
  text-decoration: none;
}
.splide__arrows {
  display: none !important;
}
.btn {
  min-width: 120px;
  padding: 10px;
  align-items: center;
  justify-content: center;
  display: flex;
  gap: 10px;
  color: var(--primary);
  background-color: var(--secondary);
  border-radius: 30px;
  font-size: 16px;
  border: none;
  outline: none;
  font-family: "Nunito bold";
}
.desc {
  font-family: "Nunito regular";
  font-size: 16px;
  color: rgba(243, 223, 252, 1);
}
.lebal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-family: "Nunito bold";
  font-size: 10px;
  background-color: rgba(255, 253, 253, 0.72);
  padding: 3px 6px;
  border-radius: 20px;
  height: 20px;
  width: fit-content;
}
.headings {
  font-family: "Nunito bold";
  font-size: 36px;
  color: var(--white);
}
.web-margin {
  margin-top: 120px;
}
/* NAV BAR */
nav {
  padding: 10px 20px !important;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: #43185500; /* Semi-transparent background */
  backdrop-filter: blur(10px); /* Glass effect */
  -webkit-backdrop-filter: blur(10px); /* Safari support */
  transition: background 0.3s ease-in-out, padding 0.3s ease-in-out;
}

.scrolled {
  background: rgba(255, 255, 255, 0.5); /* Less transparency on scroll */
  padding: 8px 20px !important; /* Reduce padding slightly on scroll */
}
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 8px;
}
.bar {
  background-color: var(--white);
  width: 35px;
  height: 3px;
}

nav .logo {
  max-width: 170px;
  height: auto;
}
nav .logo img {
  width: 100%;
  height: auto;
}
.mobile-nav-action {
  display: none;
}
.nav-actions a {
  font-family: "Nunito semibold";
  color: var(--white);
  font-size: 16px;
}
.nav-manu {
  gap: 25px !important;
}
.nav-manu a {
  font-family: "Nunito semibold";
  font-size: 16px;
  color: var(--white);
}
nav .profile-img img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--white);
  cursor: pointer;
}
.vertical-devider {
  height: 30px;
  width: 2px;
  background-color: rgba(255, 255, 255, 0.64);
  border-radius: 10px;
}
.bar {
  width: 30 px;
  height: 3px;

  background: var(--white);
  transition: 0.3s;
}

/* Mobile navigation */
.mobile-nav {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  flex-direction: column;
  text-align: start;
  padding: 20px;
  font-family: "Nunito semibold";
  gap: 15px;
  backdrop-filter: blur(10px); /* Glass effect */
}

.mobile-nav a {
  display: block;
  padding: 1;
}
/* banner */
.banner {
  background-image: url(../images/banner.png);
  height: 95vh;
  background-size: cover;
  background-position: center;
  position: relative;
}
.banner-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--white);
  gap: 20px;
  height: 100%;
}
.banner-heading {
  max-width: 940px;
  text-align: center;
  font-family: "Nunito extra bold";
  font-size: 48px;
  margin-top: 80px;
}
.banner-desc {
  max-width: 830px;
  text-align: center;
}
.banner-button {
  padding: 15px 30px;
}
.banner-button-link {
  margin-top: 50px;
}
.bitcoin,
.doller {
  position: absolute;
}

.bitcoin {
  left: 6%;
  top: 10%;
}
.doller {
  right: 6%;
  bottom: 15%;
}

/* grow */
.grow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
}
.grow-img img {
  max-width: 500px;
}

/* step */
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 60px;
}
.step-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.actual-step {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.actual-step img {
  width: 100%;
}

/* feedback */
.feedback-section {
  display: flex;
  gap: 50px;
}
.arrows {
  display: flex;
  align-items: center;
  margin-top: 10px;
  gap: 10px;
}

.left-arrow,
.right-arrow {
  width: 50px;
  height: 50px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #d9d9d9;
  cursor: pointer;
  border-radius: 50%;
}

.feedback-slider-section {
  max-width: 650px;
  padding-left: 15px;
}

.feedback-slider {
  width: 90%;
  min-height: 250px;
  padding: 20px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.33);
  border: 1px solid rgba(255, 255, 255, 0.56);
  position: relative;
}
.feedback-profile {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--white);
  padding: 3px;
  position: absolute;
  top: 0;
  left: -5%;
}
.feedback-profile img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.heading-content {
  padding-left: 7%;
  gap: 0;
  display: flex;
  flex-direction: column;
}
.heading-content h3 {
  font-family: "Nunito bold";
  font-size: 24px;
  color: var(--white);
}
.heading-content span {
  font-family: "Nunito bold italic";
  font-size: 12px;
  color: var(--primary);
}

.feedback-slider p {
  font-family: "Nunito semi bold italic";
  font-size: 16px;
  margin-top: 20px;
  color: var(--white);
}

/* video section */
.video-section {
  height: 80vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}

.video-overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(0deg, #431855, #d9d9d900);
  z-index: 0;
}
.video-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  max-width: 840px;
  text-align: center;
}
.player-button {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  cursor: pointer;
}
.video-content h3 {
  font-family: "Nunito extra bold";
  font-size: 36px;
  color: var(--white);
}

/* scanner */
.scanner-section {
  display: flex;
  align-items: center;
  gap: 50px;
}
.scanner {
  position: relative;
}

.real-canner {
  position: absolute;
  top: 19%;
  left: 21%;
  height: 286px;
  width: 286px;
}

.scanner-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* contact-section */

.contact-section {
  background-image: linear-gradient(90deg, #ffffff8f, #431855);
  padding: 20px;
  border-radius: 10px;
}

.contact-section h3 {
  font-family: "Nunito black";
  font-size: 36px;
  color: var(--white);
}

.contact-section-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 720px;
}

.contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 50px;
  gap: 50px;
}

.contact-image {
  max-width: 328px;
}
.contact-image img {
  max-width: 328px;
  height: auto;
}

/* footer */

footer {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 30px;
}
footer .logo img {
  max-width: 200px;
}
.social-icon {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
footer h3 {
  font-family: "Nunito extra bold";
  font-size: 24px;
  color: var(--white);
}
footer a {
  font-family: "Nunito semibold";
  font-size: 16px;
  color: var(--white);
}
.footer-devider {
  width: 100%;
  background-color: var(--white);
  height: 1px;
  border-radius: 5px;
  margin-top: 60px;
}
.copright {
  margin-top: 20px;
  font-family: "Nunito semibold";
  width: 100%;
  text-align: center;
}
.page-heading {
  max-width: 500px;
}
.how-it-work-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  margin-top: 50px;
}
.how-it-work-section .auth-image {
  max-width: 50%;
  height: auto;
}
.auth-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.auth-form {
  max-width: 500px;
  width: 100%;
  gap: 20px;
  display: flex;
  flex-direction: column;
}
.auth-form-register {
  width: 90%;
  gap: 20px;
  display: flex;
  flex-direction: column;
}
label {
  font-size: 16px;
  font-family: "Nunito bold";
  color: var(--white);
}
.auth-form button,
.auth-form-register button {
  width: 90%;
  margin-top: 15px;
}
.auth-form a,
.auth-form-register a {
  color: var(--white);
}
input,
select,
textarea {
  background: #6d3b82;
  font-family: "Nunito semibold";
  padding: 15px;
  border: none;
  outline: none;
  border-radius: 10px;
  font-size: 16px;
  color: var(--white);
}

.loader {
  width: 25px;
  height: 25px;
  border: 5px solid #9152ac;
  border-top: 5px solid var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.toast {
  display: none;
  min-width: 250px;
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 16px;
  position: fixed;
  top: 10%;
  left: 0;
  height: fit-content;
  right: 0;
  border-radius: 5px;
  font-size: 16px;
  z-index: 1000;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

/* Show the toast */

.show-success {
  background: rgb(87, 173, 92);
}
.show-danger {
  background: rgb(231, 93, 93);
}

.profile-wallet-section {
  width: 100%;
  padding: 20px;
  background-image: url("../images/graph.svg");
  background-size: 80%;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 200px;
  border-radius: 20px;

  position: relative;
  align-items: center;
  justify-content: center;
  text-align: center;
  display: flex;
}
.profile-wallet-content {
  position: relative;
  z-index: 1;
  align-items: center;
  justify-content: center;
  text-align: center;
  display: flex;
}
.profile-wallet-content h2 {
  font-family: "Nunito black";
  font-size: 36px;
  color: var(--white);
  margin-top: -15px;
}
.profile-wallet-content .bitcoin-wallet {
  position: relative;
  width: 120px;
  height: auto;
}
.profile-wallet {
  display: flex;
  gap: 20px;
  margin-top: 80px;
}
.wallet-overlay {
  background-image: linear-gradient(45deg, #f7c97473, var(--primary));
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  top: 0;
  left: 0;
  border-radius: 20px;
}
.profile-card {
  max-width: 300px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.164);
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.144);
  position: relative;
  height: fit-content;
}
.profile-card .profile-image {
  width: 150px;
  height: 150px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.616);
}
.profile-card .headings {
  font-size: 24px;
}
.edit-button {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--primary);
  height: 30px;
  width: 30px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  display: flex;
  color: var(--white);
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.144);
}
.wallet-list {
  background-color: rgba(255, 255, 255, 0.164);
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.144);
}
.card {
  padding: 10px;
  background-color: var(--background);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.144);
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.card-content {
  text-align: end;
  font-family: "Nunito semibold";
  color: white;
}
.card-content h3 {
  font-family: "Nunito black";
}
.card-secondary {
  background-color: rgba(255, 255, 255, 0.164);
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.144);
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.wallet-list-tabel .card {
  width: 100%;
  font-family: "Nunito bold";
  font-size: 16px;
  color: var(--white);
  border-radius: 8px;
}
.wallet-list-tabel .card:hover {
  background-color: #351344;
}
.wallet-list-tabel .card .success,
.wallet-list-tabel .card .danger {
  font-family: "Nunito black";
}
.wallet-list-tabel .card .danger {
  color: #e62552;
}
.wallet-list-tabel .card .success {
  color: #92e3a9;
}
.reuse {
  cursor: pointer;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #00000067;
  width: 100%;
  height: 100vh;
  z-index: 2;
  display: none;
  align-items: center;
  justify-content: center;
}
.popup-wrapper {
  max-width: 500px;
  border-radius: 10px;
  background-color: var(--white);
  padding: 20px;
  min-width: 350px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 30px;
}
.popup-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  width: 100%;
}
.popup-header h2 {
  font-family: "Nunito bold";
  color: var(--primary);
}
.cross {
  height: 20px;
  width: 20px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: rgba(241, 59, 59, 0.308);
  color: red;
}
.popup-wrapper .scanner {
  padding: 3px;
  border-radius: 10px;
  border: 2px solid #924cb1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-wrapper .scanner img {
  height: 150px;
}
.form-secondary label {
  color: var(--primary);
}
.form-secondary .desc {
  color: #5a3669;
  font-family: "Nunito semibold";
}
.form-secondary .btn {
  background: var(--primary);
  color: var(--white);
  width: 100%;
}
.logout {
  padding: 8px 15px;
  background-color: rgba(223, 113, 113, 0.788);
  border-radius: 5px;
  display: flex;
}
.logout:hover {
  background-color: rgb(184, 77, 77);
}
.logout a {
  color: var(--white);
  font-family: "Nunito semibold";
}
.card-secondary img {
  height: 20px;
  width: 20px;
}
.card-secondary {
  font-family: "Nunito bold";
}

#toast {
  font-family: "Nunito semibold";
}

.contact-sections form {
  width: 80%;
}
/* Center the loader */
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 15px;
  justify-content: center;
}
.video-item {
  width: 100%;
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
  cursor: pointer;
}
.video-item:hover {
  transform: scale(1.05);
}
.video-item img {
  width: 100%;
  border-radius: 5px;
}
.video-title {
  margin-top: 8px;
  font-size: 16px;
  font-weight: bold;
  color: #333;
  font-family: "Nunito bold";
}

.help-and-support-icon {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  position: fixed;
  bottom: 5%;
  right: 20px;
  background-color: var(--white);
  border: 1px solid var(--primary);
  box-shadow: 4px 4px 12px #ffffff2d;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  gap: 10px;
  color: var(--primary);
  transition: width 0.3s ease;
}

.help-and-support-text {
  font-family: "Nunito bold";
  color: var(--primary);
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.help-and-support-icon:hover {
  width: auto;
  border-radius: 15px;
}

.help-and-support-icon:hover .help-and-support-text {
  display: flex;
  opacity: 1;
}
#tabs .card {
  min-width: fit-content !important;
}

/* refer and earn */
.refer-earn-heading {
  font-family: "Nunito black";
  font-size: 40px;
  color: var(--white);
}
.refer-earn-desc {
  font-size: 16px;
  font-family: "Nunito medium";
  color: var(--white);
}
.refer-earn-content {
  padding-left: 30px;
}
.refer-earn-desc span {
  font-family: "Nunito black";
}
.refer-earn-code {
  padding: 8px 20px;
  background-color: rgba(250, 186, 35, 0.26);
  border-radius: 5px;
  border: 1px dashed #faba23;
  font-family: "Nunito extra bold";
  color: var(--white);
}
.refer-earn-btn {
  cursor: pointer;
  background-color: var(--primary);
  border-radius: 5px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.refer-earn-btn svg {
  height: 20px;
  width: 20px;
}

.scanner-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.scanner-tabs p {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 3px;
  border-radius: 5px;
  background-color: var(--secondary);
  min-width: 80px;
  justify-content: center;
  cursor: pointer;
  color: var(--primary);
  font-family: "Nunito semibold";
}
.scanner-tabs img {
  height: 20px;
}
.scanner-tabs .active {
  background-color: rgb(255, 255, 255);
  color: var(--primary);
  border: 1px solid var(--white);
}
.air-drop {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 5px 8px;
  color: var(--white);
  font-family: "Nunito medium";
  border-radius: 10px;
  border: 1px solid #fab923b3;
  background-color: #fab92352;
}
.air-drop svg {
  height: 20px;
  width: 20px;
}

.plan-section {
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 40px;
}
.plan-section .wallet-list {
  max-width: 550px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.plan-logo {
  max-width: 160px;
}
.plan-section .title {
  font-family: "Nunito bold";
  font-size: 24px;
  color: var(--white);
}
.offer {
  position: absolute;
  top: 0;
  left: 0;
  border: 2px solid var(--warning);
  min-width: 80px;
  padding: 5px 8px;
  border-radius: 50px;
  color: var(--white);
  background-color: #fab9237c;
  font-family: "Nunito semibold";
}
.messages-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  width: 100%;
  gap: 20px;
}
.message-section {
  height: 500px;
  overflow-y: scroll;
  width: 100%;
}
.typer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.message-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 5px;
}
.message-section::-webkit-scrollbar {
  background-color: var(--secondary);
  width: 8px;
  border-radius: 10px;
}
.message-section::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 10px;
}
.typer input {
  width: 100%;
  border-radius: 0;
}
.typer .btn {
  border-radius: 0 10px 10px 0;
  padding: 15px;
}
.messages-card {
  display: flex;
  font-family: "Nunito semibold";
  gap: 5px;
  width: 100%;
  align-items: start;
}
.messages-card-oponent {
  justify-content: start;
}
.messages-card-you {
  justify-content: end;
}
.messages-card .profile {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.messages-card .profile img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.messages-card .message {
  padding: 8px;
  border-radius: 5px;
  font-size: 15px;
  display: flex;
  align-items: start;
  text-align: start;
  gap: 5px;
  flex-direction: column;
  background-color: #4e1a643f;
}
.messages-card .date {
  font-size: 12px;
  font-family: "Nunito bold";
  color: var(--primary);
}
.popup-header p {
  font-family: "Nunito semibold";
  font-size: 15px;
  color: var(--primary);
}
.popup-header .danger {
  color: rgb(231, 67, 67);
  cursor: pointer;
}
.message img {
  height: 200px;
  width: 200px;
  border-radius: 5px;
  object-fit: cover;
}
.file-icon {
  padding: 17px;
  border-radius: 10px 0 0 10px;
  cursor: pointer;
  background-color: #6d3b82;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.file-icon svg {
  height: 18px;
  width: 18px;
}
#image-preview {

  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: fit-content;
}
#image-preview img {
  border: 1px solid var(--primary);
  height: 70px;
  width: 70px;
  border-radius: 5px;
  object-fit: cover;
}
#image-preview .cross {
  position: absolute;
  top: 0;
  right: 0;
  background-color: rgba(241, 59, 59, 0.705);
  color: white;
}
/* responsive */
@media screen and (max-width: 1000px) {
  .grow {
    flex-direction: column;
  }
  .grow .grow-img img {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .feedback-section {
    flex-direction: column;
  }
  .scanner img {
    width: 100%;
  }
  .real-canner {
    width: 55% !important;
    height: auto;
  }
  .contact-section {
    padding-left: 20px;
  }
  .scanner-section {
    flex-direction: column;
    align-items: center;
  }
  .contact-section {
    flex-direction: column-reverse;
    background-image: linear-gradient(180deg, #ffffff8f, #431855);
  }
  .contact-image img {
    max-width: 100%;
  }
  footer {
    grid-template-columns: 1fr;
  }
  .feedback-slider-section {
    padding-left: 0;
  }
  .video-content h3 {
    font-size: 30px;
  }
}
@media screen and (max-width: 900px) {
  nav {
    padding: 0 !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .nav-manu {
    display: none;
  }
  .nav-actions {
    display: none;
  }
  .mobile-nav-action {
    display: flex !important;
  }
  .hamburger {
    display: flex;
  }
  .feedback-heading {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .feedback-profile {
    position: relative;
    left: 0;
    top: 0;
    height: 60px;
    width: 60px;
  }
  .heading-content {
    padding-left: 0;
  }
  .contact-section h3 {
    font-family: "Nunito black";
    font-size: 24px;
    color: var(--white);
    text-align: center;
  }
  .contact-section-content {
    align-items: center;
    display: flex;
    flex-direction: column;
  }
  .auth-image {
    display: none;
  }
  .auth-form-wrapper,
  .auth-form-register {
    position: relative;
    overflow: hidden;
  }

  .auth-form-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/banner.png");
    background-position: center;
    background-size: cover;
    opacity: 0.5; /* 50% opacity */
    z-index: -1;
  }
  .wallet-list-tabel {
    overflow-x: scroll;
  }
  .wallet-list-tabel .card {
    min-width: 600px;
  }
  .profile-wallet {
    flex-direction: column;
  }
  .profile-card {
    max-width: none;
  }
  .feedback-slider {
    width: 100%;
  }
  .video-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 750px) {
  .refer-earn-heading {
    font-size: 35px;
  }
  .refer-earn-wrapper {
    flex-direction: column-reverse;
  }
  .plan-section {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (max-width: 550px) {
  nav .logo {
    max-width: 100px;
  }
  .banner-heading {
    font-size: 30px;
  }
  .headings {
    font-size: 30px;
  }
  .desc {
    font-size: 14px;
  }
  .how-it-work-section {
    flex-wrap: wrap-reverse;
  }
  .how-it-work-section img {
    width: 100%;
  }
  .how-it-work-section .btn img {
    width: auto;
  }
  .how-it-work-section:nth-child(even) {
    flex-wrap: wrap;
  }
  .form-row {
    flex-wrap: wrap;
  }
  .auth-form {
    margin-top: 100px;
  }
  .auth-form-register {
    margin-top: 100px;
    width: 100%;
  }
  .auth-form-register form {
    gap: 20px;
  }
  .auth-section {
    height: auto;
  }
  .wallet-list-number {
    flex-direction: column;
  }
  .wallet-list-number .card {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 10px;
  }
  .popup-wrapper {
    min-width: 100%;
  }
  .form-secondary input,
  .form-secondary select,
  .form-secondary textarea {
    width: 100%;
  }
  .contact-sections form {
    width: 100%;
  }
  .video-grid {
    grid-template-columns: 1fr;
  }
  .refer-earn-content {
    padding-left: 0;
  }
  .refer-earn-heading {
    font-size: 30px;
  }
  .scanner-tabs {
    gap: 5px;
  }
  .scanner-tabs p {
    min-width: auto;
  }
  .scanner-mobile-image {
    flex-direction: column-reverse;
  }
  .air-drop svg {
    height: 18px;
    width: 18px;
  }
  .air-drop {
    font-size: 12px;
  }
  .typer .btn{
    min-width: auto;
  }
  .ticket_no{
    font-size: 12px !important;
  }
}
