:root {
  --primary-color: #F7D74B;
  --background-color: #111;
  --text-color: #FFFFFF;
  --border-color: #333;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Inter', sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  background: #000000;
  backdrop-filter: blur(8px);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}


.pricing-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}

.pricing-card {
  background-color: #141414;
  border: 1px solid #333;
  border-radius: 10px;
  padding: 30px 20px;
  width: 300px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

.pricing-card:hover {
  transform: scale(1.05);
}

.pricing-card h2 {
  color: #fdf76e;
  font-size: 32px;
  margin: 0;
}

.pricing-card span {
  font-size: 16px;
  color: #999;
}

.pricing-card p {
  margin: 10px 0 20px;
  color: #aaa;
}

.pricing-card h3 {
  color: #d4e157;
  margin-bottom: 20px;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.pricing-card ul li {
  padding: 8px 0;
  color: #cfd8dc;
}

button {
  background-color: #0a0a0a;
  border: 1px solid #fdf76e;
  color: white;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #fdf76e;
  color: #0a0a0a;
}
.card-image img {
    width: 100%;
}
/* .logo-img {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
} */

/* .logo-text {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.25rem;
} */

.logo-light {
  color: var(--text-color);
  font-weight: 300;
}

.nav-links {
  display: none;
}

.nav-link {
  color: var(--text-color);
  text-decoration: none;
  padding: 0.5rem 1rem;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-buttons {
  display: none;
}
.btn-login {
    background-color: #fffffe;
    border: none;
    color: black;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s, background-color 0.3s;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: color 0.3s;
    text-decoration: none;
}

/* .btn-login {
  background: none;
  border: none;
  color: var(--text-color);
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: color 0.3s;
} */

.btn-login:hover {
    transform: scale(1.05);
    background-color: #e6c644;
}

.btn-signup {
  background-color: var(--primary-color);
  border: none;
  color: black;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.3s, background-color 0.3s;
  text-decoration: none;
}

.btn-signup:hover {
  transform: scale(1.05);
  background-color: #fffffe;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-line {
  width: 1.5rem;
  height: 2px;
  background-color: var(--text-color);
  transition: 0.3s;
}

/* Hero Section */
.hero {
  padding: 8rem 0 4rem;
  background: #66666636;
}

.hero-content {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-text {
  text-align: center;
}

h1 {
  color: var(--primary-color);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.btn-primary {
  background-color: var(--primary-color);
  color: black;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.3s, background-color 0.3s;
}

.btn-primary:hover {
  transform: scale(1.05);
  background-color: #e6c644;
}

.btn-secondary {
  background: transparent;
  color: var(--text-color);
  border: 1px solid var(--text-color);
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  /* border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5); */
}

/* Digital Card Section */
.digital-card {
  padding: 6rem 0;
 
}
/* .backgroundImage{
  position: relative;
}
.backgroundImage::after {
    content: "";
    position: absolute;
    bottom: -20px; 
    left: 0;
    width: 100%;
    height: 20px; 
    background-image:  url('../image/Group.png');
    background-repeat: repeat-x;
    background-position: bottom;
} */

.backgroundImage{
  background-image: url('../image/Group.png');
  background-repeat: no-repeat;
  background-attachment: revert;
  background-position: 8px bottom;
}
.backgroundImageLoyaltyTop{
  background-image: url('../image/Group.png');
  background-repeat: no-repeat;
  background-attachment: revert;
  background-position: 8px bottom;
}
.backgroundImageLoyaltyBottom{
  background-image: url('../image/Group.png');
  background-repeat: no-repeat;
  background-attachment: revert;
  background-position: 8px bottom;
}

.card-content {
  background-color: #0E0E0E;
  border: 1px solid #f7d74b;
  border-radius: 1.5rem;
  padding: 2rem;
  display: grid;
  gap: 2rem;
}

.card-text h2 {
    color: var(--text-color);
    font-size: 30px;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    font-family: sans-serif;
}

.highlight {
  color: var(--primary-color);
  margin-bottom: 2rem;
  font-size: 17px;
}

.rewards {
  margin-bottom: 2rem;
}

.rewards h3 {
  color: var(--text-color);
  font-size: 32px;
  font-family: sans-serif;
  margin-bottom: 0.5rem;
}

.wallet-badges {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    position: relative;
    top: 15%;
}

.wallet-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.wallet-badge img {
  width: 4rem;
  height: 4rem;
  object-fit: contain;
}

.wallet-badge span {
  color: var(--text-color);
  font-size: 0.75rem;
  color: var(--primary-color);
}

/* .card-image img {
  width: 100%;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
} */

/* Footer */
.footer {
  padding: 4rem 0;
  border-top: 1px solid var(--border-color);
  background: #000000;
}

.footer-content {
  display: grid;
  gap: 3rem;
}

.footer-brand p {
  color: var(--text-color);
  opacity: 0.7;
  margin-top: 1rem;
  max-width: 300px;
}

.footer-links {
  display: grid;
  gap: 2rem;
}

.footer-column h3 {
  color: var(--text-color);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-column a {
  display: block;
  color: var(--text-color);
  opacity: 0.7;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: var(--primary-color);
}

.subscribe-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.subscribe-form input {
  flex: 1;
  background-color: #333;
  border: none;
  color: var(--text-color);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
}

.subscribe-form button {
  background-color: var(--primary-color);
  color: black;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.subscribe-form button:hover {
  background-color: #e6c644;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.footer-bottom p {
  color: var(--text-color);
  opacity: 0.7;
  font-size: 0.875rem;
}

/* Wallet Types Section */
.wallet-types {
  padding: 3rem 0;
  text-align: center;
  background: #191919CC;
}

.wallet-types h2 {
  color: var(--text-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.subtitle {
    color: #ffffff;
    opacity: 0.8;
    margin-bottom: 3rem;
    margin-top: 1em;
    font-size: 21px;
}
.subtitle-title {
    color: #f7d74b;
    opacity: 0.8;
    font-size: 21px;
    width: 60%;
    margin: 0 auto;
    padding-top: 15px;
}

.wallet-grid {
  /* display: grid; */
  display: inline-grid;
  /* grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */
  gap: 2rem;
  margin-top: 2rem;
}
.wallet-grid-tab {
  display: inline-grid;
  gap: 2rem;
  margin-top: 2rem;
}
/*  */
.wallet-card-tab {
  background: #1A1A1A;
  /* border: 1px solid #88813E; */
  border-radius: 1rem;
  /* padding: 1rem; */
  transition: transform 0.3s;
  cursor: pointer;
}

.wallet-card-tab:hover {
  transform: translateY(-5px);
}

.wallet-card-tab img {
  width: 100%;
  /* height: 200px; */
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}
/*  */
.wallet-card {
  background: #1A1A1A;
  border: 1px solid #88813E;
  border-radius: 1rem;
  padding: 1rem;
  transition: transform 0.3s;
  cursor: pointer;
}

.wallet-card:hover {
  transform: translateY(-5px);
}

.wallet-card img {
  width: 100%;
  /* height: 200px; */
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.wallet-card span {
  color: var(--text-color);
  font-weight: 500;
}

.loyalty-solution {
  padding: 4rem 0;
  background: #010101;
}

.solution-text {
    padding: 30px 5px;
}
.solution-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  background-image: url('../image/bag.png');
  background-repeat: no-repeat;
  object-fit: cover;
}

.solution-text h2 {
  color: var(--text-color);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.solution-text p {
  color: var(--text-color);
  opacity: 0.8;
  margin-bottom: 30px;
}

.solution-image img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}
h2.oneStopCustomer {
    margin-top: 2em;
}

.features {
  /* padding: 4rem 0; */
  padding: 3px 0px 65px;
  background: #010101;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
    background: #151515;
    border: 1px solid #FDEE69;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

.feature-card h3 {
  color: var(--text-color);
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-color);
  opacity: 0.8;
}
.pseudoCenter {
    text-align: center;
    margin: 10px;
}
.connect-customers {
  padding: 1rem 0;
  background: #010101;
}

.connect-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.connect-text h2 {
  color: var(--text-color);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.connect-features {
  margin-top: 2rem;
}

.connect-feature {
  margin-bottom: 2rem;
}

.connect-feature h3 {
  color:  #ffffff;
  margin-bottom: 0.5rem;
}

.connect-feature p {
  color: var(--text-color);
  opacity: 0.8;
}

.connect-image img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.reward-customers {
  padding: 4rem 0;
  background: #010101;
}
.reward-customers-new {
  padding: 4rem 0;
  background: #100e0e;
}

.reward-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.reward-text h2 {
  color: var(--text-color);
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.reward-apps {
  display: grid;
  gap: 2rem;
}

.app-section h3 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.app-section p {
  color: var(--text-color);
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

.app-stores {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.app-stores img {
  height: 40px;
  object-fit: contain;
}

.reward-image img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Media Queries */
@media (min-width: 768px) {
  .nav-links {
    display: flex;
    gap: 1rem;
  }

  .nav-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .menu-toggle {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .hero-text {
    text-align: left;
  }

  .hero-buttons {
    flex-direction: row;
    justify-content: flex-start;
  }

  h1 {
    font-size: 3.5rem;
  }

  .card-content {
    grid-template-columns: 1fr 1fr;
    padding: 3rem;
    gap: 4rem;
  }

  .footer-content {
    grid-template-columns: 1fr 2fr;
  }

  .footer-links {
    grid-template-columns: repeat(3, 1fr);
  }

  .solution-content,
  .connect-content,
  .reward-content {
    grid-template-columns: 1fr 1fr;
  }
  
  .wallet-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .wallet-grid-tab{
    grid-template-columns: repeat(2, 1fr);
  }
  
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* @media (max-width: 768px) {
  .pricing-card {
    width: 90%;
  }
} */
/* Register account */
/* .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
} */

.registration-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  margin-top: 10%;
  margin-bottom: 10%;
}

/* Left Panel */
.left-panel {
  background: rgb(22 22 21);
  color: white;
  padding: 4rem 2rem;
  position: relative;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.left-panel-login{
  color: white;
  padding: 4rem 2rem;
  position: relative;
  /* width: 100%; */
  display: flex;
  align-items: center;
  justify-content: center;

  background-image: url('../image/Rectangle_151.png');
  background-repeat: no-repeat;
  object-fit: cover;
}

/* .l-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 100%;
  border-top: 40px solid #ECD94A;
  border-left: 40px solid #ECD94A;
  border-bottom-left-radius: 100px;
} */

.content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.wallet-icon {
  width: 128px;
  height: 128px;
  background: #3B82F6;
  border-radius: 1rem;
  margin: 0 auto 2rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 4s ease-in-out infinite;
}

.wallet-body {
  width: 64px;
  height: 64px;
  background: #ECD94A;
  border-radius: 0.5rem;
}

.decoration {
  position: absolute;
}

.decoration.square {
  width: 2rem;
  height: 2rem;
  background: #4ADE80;
  border-radius: 0.5rem;
  top: -1rem;
  right: -1rem;
  transform: rotate(12deg);
}

.decoration.circle {
  width: 1.5rem;
  height: 1.5rem;
  background: #A855F7;
  border-radius: 50%;
  bottom: -0.75rem;
  left: -0.75rem;
}

.decoration.dot {
  width: 1rem;
  height: 1rem;
  border: 2px solid #ECD94A;
  border-radius: 50%;
  top: 50%;
  right: -2rem;
}

.decoration.diamond {
  width: 0.75rem;
  height: 0.75rem;
  background: #ECD94A;
  transform: rotate(45deg);
  top: -2rem;
  left: 50%;
}

.left-panel h1 {
  font-size: 1.875rem;
  margin-bottom: 0.5rem;
}

.left-panel h2 {
  font-size: 2.25rem;
  color: #ECD94A;
}

/* Right Panel */
.right-panel {
  width: 50%;
  padding: 2rem;
}

.form-container {
  max-width: 400px;
  margin: 0 auto;
}

.form-container h2 {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #363434;
}

.input-group {
  margin-bottom: 1.5rem;
}

.input-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
   color: #363434;
}

.input-wrapper {
  position: relative;
}

.input-wrapper input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.2s;
}

.input-wrapper input:focus {
  outline: none;
  border-color: black;
  box-shadow: 0 0 0 1px black;
}

.checkbox-group {
  display: flex;
  align-items: start;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.checkbox-group label {
  font-size: 0.875rem;
  color: #4b5563;
}

.checkbox-group a {
  color: #2563eb;
  text-decoration: none;
}

.checkbox-group a:hover {
  text-decoration: underline;
}

.submit-btn {
  width: 100%;
  padding: 0.75rem;
  background: black;
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
}

.submit-btn:hover {
  background: #1a1a1a;
}

/* Social Login */
.social-login {
  margin-top: 2rem;
}

.divider {
  display: flex;
  align-items: center;
  margin: 1.5rem 0;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e5e7eb;
}

.divider span {
  padding: 0 1rem;
  color: #6b7280;
  font-size: 0.875rem;
}

.social-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.social-btn {
  padding: 0.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  background: white;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background-color 0.2s;
}

.social-btn:hover {
  background: #f9fafb;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .registration-card {
    flex-direction: column;
  }

  .left-panel,
  .right-panel {
    width: 100%;
  }

  .left-panel {
    padding: 3rem 1.5rem;
  }

  .l-frame {
    width: 100%;
    border-width: 20px;
  }

  .wallet-icon {
    width: 96px;
    height: 96px;
  }

  .wallet-body {
    width: 48px;
    height: 48px;
  }

  .right-panel {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  body {
    padding: 0;
  }

  .registration-card {
    border-radius: 0;
  }

  .social-buttons {
    grid-template-columns: 1fr;
  }
}
section.register{
    background: #000000;
    padding: 1px;
}

