@import url("https://fonts.googleapis.com/css2?family=Cal+Sans&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* Root color variables - Dark Theme (Red–Orange Edition) */
:root {
  /* Base Backgrounds */
  --color-background-screen: #121212;
  --color-background-elevated: #1b1b1b;
  --color-background-overlay: rgba(0, 0, 0, 0.7);
  --color-background-neutral: #1e1e1e;
  --color-background-neutral-hover: #252525;
  --color-background-neutral-active: #2d2d2d;

  /* Core Text Colors */
  --color-content-primary: #ffffff;
  --color-content-secondary: #c9c3bf;
  --color-content-tertiary: #a09b97;

  /* Accent and Brand Colors (Red–Orange Core) */
  --color-interactive-primary: #ff5722;
  --color-interactive-primary-hover: #ff7043;
  --color-interactive-primary-active: #e64a19;

  --color-interactive-accent: #ff7043;
  --color-interactive-accent-hover: #ff8a50;
  --color-interactive-accent-active: #ff9e80;

  /* Links */
  --color-content-link: #ff7043;
  --color-content-link-hover: #ff8a50;
  --color-content-link-active: #ff9e80;

  /* Secondary Buttons / Controls */
  --color-interactive-secondary: #333333;
  --color-interactive-secondary-hover: #444444;
  --color-interactive-secondary-active: #555555;

  /* Contrast and Highlights */
  --color-interactive-contrast: #ff7043;
  --color-interactive-contrast-hover: #ffa270;
  --color-interactive-contrast-active: #ffc4a3;

  /* Neutral / Borders */
  --color-border-neutral: rgba(255, 255, 255, 0.1);
  --color-border-overlay: rgba(255, 255, 255, 0.15);

  /* Sentiments */
  --color-sentiment-negative: #ff5252;
  --color-sentiment-negative-hover: #ff4444;
  --color-sentiment-negative-active: #e53935;
  --color-sentiment-positive: #ff8b3d;
  --color-sentiment-positive-hover: #ff7043;
  --color-sentiment-positive-active: #ff5722;
  --color-sentiment-warning: #ffc107;
  --color-sentiment-warning-hover: #ffb300;
  --color-sentiment-warning-active: #ffa000;

  /* Gradients (for hero / buttons / highlights) */
  --gradient-primary: linear-gradient(135deg, #ff7043 0%, #d84315 100%);
  --gradient-accent: linear-gradient(135deg, #ff5722 0%, #ff8a50 100%);
  --gradient-bg: linear-gradient(180deg, #1b1b1b 0%, #121212 100%);

  /* Light & Dark Contrast */
  --color-light: #ffffff;
  --color-dark: #0a0a0a;
  --color-contrast: #ffffff;
  --color-contrast-overlay: #1b1b1b;
  --color-contrast-theme: #ff7043;

  --hero-glow-size: 240%;
  --hero-glow-scale: 0.9;
  --hero-glow-scale-hover: 1.25;
  --hero-glow-opacity: 0.45;
  --hero-glow-opacity-hover: 0.85;
  --hero-glow-blur: 28px;
  --hero-glow-blur-hover: 44px;
}
/*& bg-audio */
.play-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
  box-shadow: 0 0 15px rgba(255, 90, 0, 0.5);
  color: #ff5900;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10000;
}

/* Hover glow */
.play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(255, 90, 0, 0.8);
  background: linear-gradient(145deg, #222, #333);
}

/* Pressed effect */
.play-btn:active {
  transform: scale(0.95);
}

/* Glowing pulse animation while playing */
.playing {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 15px rgba(255, 90, 0, 0.5);
  }
  50% {
    box-shadow: 0 0 30px rgba(255, 90, 0, 0.9);
  }
  100% {
    box-shadow: 0 0 15px rgba(255, 90, 0, 0.5);
  }
}

body::selection {
  background-color: rgba(255, 68, 0, 0.765);
}
body {
  cursor: url("/stock/cursor_image.png") 16 16, auto;
}

* {
  margin: 0;
  border: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  color: var(--color-content-primary);
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle, #ffd700 20%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  filter: blur(10px) brightness(1.5);
  transition: transform 0.05s ease-out;
  z-index: 9999;
}

.cursor::after {
  content: "★"; /* The star symbol */
  position: absolute;
  color: orangered;
  font-size: 16px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-shadow: 0 0 50px orangered, 0 0 60px orangered;
}

/* Width of scrollbar */
::-webkit-scrollbar {
  width: 22px;
}

/* Track (background of scrollbar) */
::-webkit-scrollbar-track {
  background-color: transparent;
}

/* Thumb (the draggable part of scrollbar) */
::-webkit-scrollbar-thumb {
  background-image: url("/stock/scroll.png");
  background-repeat: no-repeat;
  background-size: 22px;
}

hr {
  color: var(--color-content-primary);
  width: 80%;
  margin: auto;
}

body {
  background-color: var(--color-background-screen);
  overflow-x: hidden;
}

section {
  width: 80%;
  margin: auto;
}

/*& NAV-Bar */
#navbar {
  position: sticky; /* stays in flow but becomes fixed when top reached */
  top: 0;
  left: 0;
  width: 100%;
  height: 5em; /* ⬅️ Move height here */
  display: flex; /* ⬅️ Make nav itself a flex container */
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(12px); /* Blur the background */
  -webkit-backdrop-filter: blur(12px); /* Safari support */
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
  z-index: 999;
  transition: transform 0.3s ease-in-out; /* Smooth slide */
}

/* When "hide" class is added, move navbar up out of view */
#navbar.hide {
  transform: translateY(-100%);
}

.nav {
  width: 80%;
  margin: 0 auto; /* center within the sticky navbar */
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo img {
  height: 3em;
}

.nav-left {
  width: 40%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.nav-right {
  width: 25%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.lang img {
  width: 1.5em;
  margin-right: 0.6em;
}
.tabs {
  text-decoration: none;
  color: white;
  transition: 0.1s;
  cursor: pointer;
  font-weight: 500;
}
.tabs:hover {
  border-radius: 20px;
  padding: 7px 10px;
  background-color: var(--color-content-link-hover);
  color: var(--color-content-primary);
}

#sign-up {
  border-radius: 20px;
  padding: 7px 10px;
  background-color: var(--color-sentiment-positive);
  transition: 0.25s;
}
#sign-up:hover {
  background: var(--color-sentiment-positive-hover);
}

.nav-above {
  position: absolute;
  top: 5em;
}
.nav-personal,
.nav-bussiness,
.nav-platform {
  display: none;
  z-index: 10;
}
.nav-above:has(~ nav #tabs-personal:hover) .nav-personal {
  display: flex;
  z-index: 10;
}

.blur-overlay {
  position: fixed;
  top: 5em;
  left: 0;
  width: 100vw;
  height: 100vh;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.3);
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 4;
}

/*& Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 90vh;
  margin: auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  /* background-image: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.05)
    ),
    url("/stock/herobg.jpg");
    
  background-size: cover;
  background-position: center; */
}
#bgvideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
/* dark overlay */
#overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}
.reviewicon {
  height: 1.25rem;
  border-radius: 50%;
  margin-right: 0.5rem;
}
.reviewapple {
  margin-right: 1rem;
}
.hero-content {
  /* background: magenta; */
  width: 40%;
}
.hero-image {
  width: 40%;
  height: auto;
  border-radius: 1.5rem;
  object-fit: cover;
  box-shadow: 6px 6px 18px 4px rgba(255, 255, 255, 0.1),
    -6px -6px 18px 4px rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}
.hero-image:hover {
  transform: scale(1.05);
}
.hero-content-main h1 {
  font-family: "Cal Sans";
  text-transform: uppercase;
  font-size: 5rem;
  line-height: 4rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.cta {
  background-color: var(--color-sentiment-positive-hover);
  display: inline-block;
  padding: 1rem 3rem;
  border-radius: 30px;
  margin-top: 2rem;
  cursor: pointer;
  color: var(--color-contrast);
  font-weight: 700;
  text-transform: uppercase;
  transition: background-color 0.2s ease, box-shadow 0.3s ease;
}

.cta:hover {
  background-color: var(--color-sentiment-positive-active);
  /* Simple glow effect */
  box-shadow: 0 0 100px var(--color-sentiment-positive-hover),
    0 0 5px var(--color-sentiment-positive-hover),
    0 0 5px var(--color-sentiment-positive-hover);
}

.hero-card {
  z-index: 3;
  position: relative;
  width: 30vw;
  /* height: 80vh; */
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-content-primary);
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;

  /* 👇 light white shadows for dark background (base) */
  box-shadow: 6px 6px 18px 4px rgba(255, 255, 255, 0.1),
    -6px -6px 18px 4px rgba(255, 255, 255, 0.1);

  /* prefer animating transform only (GPU-friendly) */
  transform: translateZ(0);
  will-change: transform; /* avoid listing box-shadow here */
  transition: transform 480ms cubic-bezier(0.2, 0.8, 0.2, 1);

  /* keep base shadow subtle so hover animation is handled by ::before */
}

/* soft, performant glow layer that's easy to animate */
.hero-card::before {
  content: "";
  position: absolute;
  pointer-events: none;
  left: 50%;
  top: 50%;
  width: var(--hero-glow-size);
  height: var(--hero-glow-size);
  transform: translate(-50%, -50%) scale(var(--hero-glow-scale));
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.14) 0%,
    rgba(255, 255, 255, 0.06) 30%,
    transparent 50%
  );
  filter: blur(var(--hero-glow-blur));
  opacity: var(--hero-glow-opacity);

  /* only animate transform/opacity/filter for smoothness */
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 520ms cubic-bezier(0.22, 1, 0.36, 1);

  will-change: transform, opacity, filter;
  z-index: 0;
  border-radius: 50%;
}

/* card content should sit above glow */
.hero-card > * {
  position: relative;
  z-index: 1;
}

/* subtle box-shadow change on hover; heavy spread is handled by ::before */
.hero-card:hover {
  transform: translateY(-10px);
  box-shadow: 8px 8px 22px 6px rgba(255, 255, 255, 0.1),
    -8px -8px 22px 6px rgba(255, 255, 255, 0.1);
}

.hero-card:hover::before {
  opacity: var(--hero-glow-opacity-hover);
  transform: translate(-50%, -50%) scale(var(--hero-glow-scale-hover));
  filter: blur(var(--hero-glow-blur-hover));
}

/* gradient underline */
.hero-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 15%;
  width: 70%;
  height: 5px;
  border-radius: 3px;
  background: linear-gradient(
    90deg,
    var(--color-interactive-primary),
    var(--color-interactive-accent)
  );
  transition: all 0.4s ease;
}
.transfer-card {
  border-radius: 1rem;
  width: 100%;
  height: 100%;
  margin: auto;
  text-align: left;
}

.exchange-rate {
  text-align: center;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: var(--color-content-secondary);
}

.rate-pill {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.4rem 0.8rem;
  border-radius: 1rem;
  margin-left: 0.5rem;
  margin-top: 1rem;
  font-weight: 600;
}

.field-label {
  font-weight: 500;
  font-size: 0.9rem;
  margin-top: 1rem;
  display: block;
}

.input-box {
  background: var(--color-background-neutral);
  border: 1px solid var(--color-border-overlay);
  border-radius: 0.6rem;
  padding: 0.75rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.4rem;
  transition: 0.25s ease;
}
.input-box:hover {
  border: 3px solid var(--color-border-overlay);
}

.input-box input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--color-content-primary);
  font-size: 1.5rem;
  width: 70%;
}

.currency {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.currency img {
  width: 1.4rem;
  border-radius: 50%;
}

.info-note {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.5rem;
  padding: 0.4rem 0.6rem;
  font-size: 0.85rem;
  margin: 0.7rem 0;
  color: var(--color-content-tertiary);
}

.info-note a {
  color: var(--color-content-link);
  text-decoration: underline;
}

.payment-box {
  border: 1px solid var(--color-border-overlay);
  border-radius: 0.6rem;
  padding: 0.8rem 1rem;
  margin-top: 0.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--color-background-neutral);
  transition: 0.25s ease;
}
.payment-box:hover {
  border: 3px solid var(--color-border-overlay);
}

.payment-box .left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 500;
}
.payment-box .left span {
  padding: 0.75rem 1rem;
}

.change-btn {
  background: transparent;
  color: var(--color-content-secondary);
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.change-btn:hover {
  color: var(--color-content-link-hover);
}

.fees-summary {
  margin-top: 1rem;
  font-size: 0.85rem;
}

.fees-summary p {
  display: flex;
  justify-content: space-between;
  margin: 0.3rem 0;
}

.fees-summary hr {
  border: 0;
  border-top: 1px solid var(--color-border-overlay);
  margin: 0.5rem 0;
}

.fees-summary .total {
  font-weight: 600;
}

.arrival {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--color-content-secondary);
}

.action-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
}

.action-buttons button {
  flex: 1;
  margin: 0 0.3rem;
  border-radius: 2rem;
  padding: 0.8rem 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

button.compare {
  background: transparent;
  border: 1px solid var(--color-content-primary);
  color: var(--color-content-primary);
}

button.compare:hover {
  background: var(--color-background-overlay);
}

button.send {
  background: var(--color-sentiment-positive);
  border: none;
  color: var(--color-dark);
}

button.send:hover {
  background: var(--color-sentiment-positive-hover);
}

/*& protection Section */

.protection {
  margin-top: 2rem;
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-around;
}
.protec-sec {
  width: 33.3333%;
}
.protec-sec .icon {
  border: 1px solid var(--color-interactive-secondary-active);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.protec-sec h2 {
  color: var(--color-content-primary);
  font-size: 1.25rem;
}
.protec-sec p {
  color: var(--color-content-secondary);
  font-size: 1.25rem;
  font-weight: 100;
}

.protec-sec p u {
  text-decoration: underline;
  text-underline-offset: 0.5rem; /* Adjust the value as needed (e.g., 3px, 0.5em) */
  text-decoration-color: var(--color-content-secondary);
}

/*& transfer Section */

.transfer {
  margin-top: 10rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.transfer-content {
  width: 40%;
}
.transfer-content hr {
  width: 100%;
  margin: 2rem 0;
}
.transfer-content h1 {
  font-size: 4rem;
  font-family: "Cal Sans";
  text-transform: uppercase;
}
.transfer-cont-sec div h4 {
  font-size: 1rem;
}
.transfer-cont-sec {
  display: flex;
  justify-content: start;
  align-items: center;
}
.transfer-cont-sec .icon {
  border: 1px solid var(--color-interactive-secondary-active);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  font-size: 1.5rem;
  margin-right: 2rem;
}
.transfer-cont-sec p {
  font-weight: 300;
}
.transfer-cont-sec p {
  margin: 0;
}
.transfer-cta {
  background-color: var(--color-sentiment-positive-hover);
  display: inline-block;
  padding: 0.75rem 1rem;
  transition: 0.1s;
  border-radius: 30px;
  margin-top: 4rem;
  cursor: pointer;
  transition: 0.1s ease;
}
.transfer-cta:hover {
  background-color: var(--color-sentiment-positive-active);
}

/*& security Section */
.security {
  margin-top: 10rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.security-image {
  width: 40%;
}
.security-content {
  width: 40%;
}
.security-content hr {
  width: 100%;
  margin: 2rem 0;
}
.security-content h1 {
  font-size: 4rem;
  font-family: "Cal Sans";
  text-transform: uppercase;
}
.security-content p {
  color: var(--color-content-secondary);
  font-size: 1.2rem;
  font-weight: 200;
}
.security-cont-sec div h4 {
  font-size: 1rem;
}
.security-cont-sec {
  display: flex;
  justify-content: start;
  align-items: center;
}
.security-cont-sec .icon {
  border: 1px solid var(--color-interactive-secondary-active);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  box-sizing: border-box; /* Ensures width/height includes padding/border */
  flex-shrink: 0;
  border-radius: 50%;
  font-size: 1.5rem;
  margin-right: 2rem;
}
.security-cont-sec p {
  font-weight: 300 !important;
  font-size: 1rem !important;
  color: var(--color-content-secondary);
}
.security-cont-sec p {
  margin: 0;
}
.security-cta {
  background-color: var(--color-sentiment-positive-hover);
  display: inline-block;
  padding: 0.75rem 1rem;
  transition: 0.1s;
  border-radius: 30px;
  margin-top: 4rem;
  cursor: pointer;
  transition: 0.1s ease;
}
.security-cta:hover {
  background-color: var(--color-sentiment-positive-active);
}
.security-cont-sec p u {
  text-decoration: underline;
  text-underline-offset: 0.3rem;
  text-decoration-color: var(--color-content-secondary);
}
.flags {
  margin-top: 15rem;
  margin-bottom: 15rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100vw;
  background: magenta;
  overflow: hidden;
}
.arrow,
.flags img {
  height: 8rem;
}
.flags img {
  margin-right: 2rem;
}
.arrow {
  height: 8rem;
  width: 30%;
  background: red;
}
/*& flags Section */

/*& social Section */

section.social {
  width: 100%;
  padding-left: 10vw;
  margin-top: 10rem;
  height: 40rem;
  display: flex;
  align-items: center;
  gap: 5rem;
  overflow: hidden;
  position: relative;
}
.social-content {
  width: 35rem; /* Fixed width */
  flex-shrink: 0;
}
.social-content p img {
  width: 1.5em;
  border-radius: 50%;
}
.social-content h1 {
  font-size: 4rem;
  font-family: "Cal Sans";
  text-transform: uppercase;
}
.social-content h5 {
  font-weight: 200;
}
.social-slider-btn {
  background: var(--color-interactive-primary-hover);
  margin-right: 1rem;
  margin-top: 3rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  height: 70px;
  width: 70px;
  cursor: pointer;
}
.social-slider-btn:hover {
  transition: 0.5s ease;
  background: var(--color-interactive-primary);
}
.disable-btn {
  background: var(--color-background-neutral-active);
  cursor: not-allowed;
}
.social-card-cont {
  flex: 1;
  display: flex;
  overflow-x: hidden; /* Hide scrollbar but allow JS scroll */
  scroll-behavior: smooth;
  padding: 1rem 0;
}
.social-card-alt {
  background-color: var(--color-interactive-primary-active) !important;
}
.social-card {
  background-color: rgb(255, 140, 0);
  width: 30rem;
  height: 40rem;
  margin-right: 2rem;
  padding: 2rem;
  border-radius: 30px;
  transition: 0.5s ease;
  flex-shrink: 0; /* Prevent cards from shrinking */
}
.social-card:hover {
  box-shadow: rgba(240, 46, 46, 0.4) 5px 5px, rgba(240, 46, 46, 0.3) 10px 10px,
    rgba(240, 46, 46, 0.2) 15px 15px, rgba(240, 46, 46, 0.1) 20px 20px,
    rgba(240, 46, 46, 0.05) 25px 25px;
}
.social-card div img {
  height: 5rem;
  border-radius: 50%;
}

.social-card h4 {
  margin-top: 3rem;
  font-size: 2rem;
}
.social-card p {
  margin-top: 3rem;
  font-size: 1.3rem;
}

/*& bussiness Section */
section.bussiness {
  margin-top: 10rem;
  width: 100vw;
}
.bussiness-cont {
  background-color: var(--color-interactive-primary-active);
  text-align: center;
  width: 80%;
  margin: auto;
  padding: 4rem;
  border-radius: 40px;
}

.bussiness-cont h1 {
  font-size: 4rem;
  font-family: "Cal Sans";
  text-transform: uppercase;
  margin-top: 2rem;
}
.buss-icon {
  background: var(--color-interactive-contrast);
  display: inline-flex;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}
.buss-cta {
  display: inline-flex;
  /* background: rgb(255, 140, 0); */
  background: var(--color-interactive-contrast);
  margin-top: 3rem;
  padding: 1rem 3rem;
  font-weight: 600;
  border-radius: 50px;
}

/* & Banner section */
section.banner {
  margin-top: 15rem;
  width: 100vw;
  height: 50vw;
  background: url("https://wise.com/imaginary-v2/images/aeb6be9304aad06c54138b4ab57a04fb-tapestry-background.webm");
  overflow: hidden;
  position: relative;
}
#banner-video {
  width: 100%;
}
.banner-content {
  color: black;
  position: absolute;
  background: #fff;
  top: 15%;
  bottom: 15%;
  left: 10vw;
  width: 80vw;
  border-radius: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.banner-getapp {
  color: black;
}
#banner-apple,
#banner-google {
  color: black;
}
#banner-google b {
  color: black;
}
#banner-apple b {
  color: black;
}
.banner-head {
  font-size: 5rem;
  font-family: "Cal Sans";
  text-transform: uppercase;
  margin-top: 2rem;
  margin-bottom: 3rem;
  line-height: 4rem;
}
.banner-getapp-2 {
  width: 17rem;
  display: flex;
  justify-content: space-between;
}

/* & Footer */
.footer {
  background-color: #080808;
  color: #333;
  font-family: "Inter", sans-serif;
  padding: 10rem 10%;
  font-size: 14px;
}

/* Columns Layout */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

/* Column Headings */
.footer-col h4 {
  font-weight: 600;
  margin-bottom: 15px;
  color: #e9e9e9;
}

/* Links */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #d2d2d2;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: #ffffff;
}

/* Social Icons */
.social-links a {
  display: inline-block;
  margin-right: 15px;
  font-size: 18px;
  color: #333;
  transition: color 0.2s ease;
}

.social-links a:hover {
  color: #007bff;
}

/* Divider Line */
.footer hr {
  border: none;
  border-top: 1px solid #2a2a2a;
  margin: 30px 0;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 70px;
}

.footer-links a {
  display: inline-block;
  color: #989898;
  text-decoration: none;
  margin-right: 15px;
}

.footer-links a:hover {
  color: #000;
}

/* Copyright Section */
.footer-copy {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

/* ✨ ANIMATION ENHANCEMENTS */

/* Smooth fade-up for footer appearance */
.footer {
  opacity: 0;
  transform: translateY(50px);
  animation: footerFadeUp 1s ease-out forwards;
}

@keyframes footerFadeUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 🌟 Underline glow animation for links */
.footer-col ul li a {
  position: relative;
  overflow: hidden;
}

.footer-col ul li a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 1px;
  background: linear-gradient(90deg, #ff5900, #ff8c00);
  transition: width 0.3s ease;
}

.footer-col ul li a:hover::after {
  width: 100%;
}

/* 🔮 Subtle color glow when hovering links */
.footer-col ul li a:hover {
  color: #fff;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.4);
}

/* 🪄 Social icon hover pop */
.social-links a {
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
  color: #ff5900;
  transform: scale(1.3) rotate(8deg);
  text-shadow: 0 0 10px #ff5900, 0 0 20px #00ffee;
}

/* Divider line glowing pulse */
#hr {
  position: relative;
  overflow: hidden;
  border: none;
  height: 1px;
  background: #2a2a2a;
  margin: 30px 0;
  width: 100%;
}

#hr::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100vw;
  height: 100%;
  background: linear-gradient(90deg, transparent, #ff5900, transparent);
  animation: glowLine 2s linear infinite;
  opacity: 0.9;
}

@keyframes glowLine {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: -100%;
  }
}

/* 🧊 Footer logo subtle hover float */
.footer-logo img {
  transition: transform 0.4s ease, filter 0.3s ease;
}

.footer-logo img:hover {
  transform: translateY(-5px) scale(1.05);
  filter: brightness(1.5);
}

/* ⚙️ Footer links hover underline */
.footer-links a {
  position: relative;
  transition: color 0.3s ease;
}

.footer-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 1px;
  background: #ff5900;
  transition: width 0.3s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-links a:hover {
  color: #fff;
}

/* Additional styles for business and platform pages */
.bussiness-cont h5 {
  font-size: 1.2rem;
  font-weight: 300;
  margin-top: 1rem;
  line-height: 1.6;
}

.transfer-content h2 {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-content-secondary);
  margin-top: 0.5rem;
}

.security-content h2 {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-content-secondary);
  margin-top: 0.5rem;
}

/*& RESPONSIVE DESIGN */
@media screen and (max-width: 768px) {
  /* Global Adjustments */
  section {
    width: 95%;
    margin: auto;
  }
  
  /* Navbar */
  #navbar {
    height: auto;
    padding: 1rem 0;
  }
  .nav {
    flex-direction: column;
    gap: 1rem;
  }
  .nav-left, .nav-right {
    width: 100%;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .logo img {
    height: 2.5rem;
  }
  .tabs {
    font-size: 0.9rem;
  }

  /* Hero Section */
  .hero {
    flex-direction: column;
    height: auto;
    padding: 8rem 0 4rem 0;
    gap: 3rem;
  }
  .hero-content {
    width: 100%;
    text-align: center;
  }
  .hero-content-main h1 {
    font-size: 3rem;
    line-height: 1.2;
  }
  .hero-image {
    width: 90%;
    margin: 0 auto;
  }
  .hero-card {
    width: 90%;
    margin: 2rem auto;
  }

  /* Feature Sections (Protection, Transfer, Security) */
  .protection, .transfer, .security {
    flex-direction: column;
    margin-top: 5rem;
    gap: 3rem;
  }
  .protec-sec, .transfer-content, .security-content, .security-image, .transfer-image {
    width: 100%;
  }
  .transfer-content h1, .security-content h1 {
    font-size: 2.5rem;
    text-align: center;
  }
  .transfer-image, .security-image {
    order: -1; /* Show image first on mobile */
    margin-bottom: 2rem;
  }
  .protec-sec {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  /* Social Section */
  section.social {
    flex-direction: column;
    height: auto;
    padding: 4rem 0;
    gap: 3rem;
    padding-left: 0;
  }
  .social-content {
    width: 90%;
    text-align: center;
    margin: 0 auto;
  }
  .social-content h1 {
    font-size: 2.5rem;
  }
  .social-card-cont {
    width: 100%;
    padding-left: 1rem; /* Peek effect */
  }
  .social-card {
    width: 80vw;
    height: auto;
    min-height: 25rem;
  }

  /* Business Section */
  .bussiness-cont {
    width: 95%;
    padding: 2rem;
  }
  .bussiness-cont h1 {
    font-size: 2rem;
  }

  /* Banner */
  .banner-head {
    font-size: 2rem;
  }
  .banner-getapp-2 img {
    height: 2.5rem;
  }

  /* Footer */
  .footer-columns {
    flex-direction: column;
    gap: 2rem;
  }
  .footer-col {
    text-align: center;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/*& FINE-TUNING FOR SMALL SCREENS */
@media screen and (max-width: 480px) {
  /* Global Typography */
  html {
    font-size: 14px; /* Scale down base font size */
  }
  .hero-content-main h1 {
    font-size: 2.2rem;
  }
  .transfer-content h1, .security-content h1, .social-content h1 {
    font-size: 2rem;
  }

  /* Currency Converter Fine-tuning */
  .hero-card {
    padding: 1.5rem;
    width: 95%;
  }
  .input-box {
    padding: 0.5rem 0.8rem;
  }
  .input-box input {
    font-size: 1.2rem;
    width: 60%;
  }
  .currency {
    font-size: 0.9rem;
  }
  .currency img {
    width: 1.2rem;
  }

  /* Social Slider Fine-tuning */
  .social-card {
    width: 85vw;
    min-height: 20rem; /* Reduce height */
    height: auto;
    padding: 1.5rem;
  }
  .social-card h4 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
  }
  .social-card p {
    font-size: 1rem;
    margin-top: 1.5rem;
  }

  /* Spacing Adjustments */
  .hero {
    padding-top: 6rem;
    gap: 2rem;
  }
  section {
    width: 95%;
  }
  .protection, .transfer, .security, section.social {
    margin-top: 3rem;
    gap: 2rem;
  }
}
