*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  /* margin: 0px; */
  /*adds 0 space on all sides*/
  overflow-x: hidden;
  /* background-color: #ebf2fa; */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
  scroll-behavior: smooth;
  /*adds smooth scrolling when using navigation instead if instant teleport :)*/
  /* u can assign this ti personal element if choose ?? w3cschool :)*/
}

:root {
  --text-white: #fff;
  --text-gray: #7c7d81;
  --text-red: #bf272e;
  --text-red-light: #ff3f3f;
  --text-black: #000;
  --text-gold: #ea9f3a;
  --text-brown: #7a3b14;
  --text-header: #38290d;
  --purple-dark: #8a2387;
  --purple-medium: #9b23ea;
  --purple-light: #e14fce;
  --blue-dark: #0f2027;
  --blue-medium: #203a43;
  --blue-light: #2c5364;
  --teal-medium: #00b894;
  --green-bright: #00cc66;
  --pink-bright: #ff0066;
  --card-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/***********
    ASSETS FONTS
************/
/* Gradient Backgrounds */
.gradient-purple {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple-medium), var(--purple-light));
}

.gradient-blue {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-medium), var(--blue-light));
}

.gradient-teal-blue {
  background: linear-gradient(135deg, #2193b0, #6dd5ed);
}

.gradient-blue-purple {
  background: linear-gradient(135deg, #4e54c8, #8f94fb);
}

/* Button Styles */
.btn-primary {
  background-color: var(--pink-bright);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #e6005c;
}

.btn-secondary {
  background-color: var(--green-bright);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: #00b359;
}

/* Cards and UI Elements */
.feature-card {
  transition: all 0.3s ease;
  border-radius: 0.75rem;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-shadow);
}

.rounded-icon {
  border-radius: 1rem;
}

.card-shadow {
  box-shadow: var(--card-shadow);
}

/* Custom Icon Backgrounds */
.icon-bg-purple {
  background: rgba(138, 35, 135, 0.1);
}

.icon-bg-gradient {
  background: linear-gradient(135deg, rgba(138, 35, 135, 0.2), rgba(69, 104, 220, 0.2));
  backdrop-filter: blur(5px);
}

/* FAQ Accordion */
.faq-item .faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-content {
  max-height: 500px;
}

/* Step Indicators */
.step-indicator {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: var(--pink-bright);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* Section Spacing */
section {
  padding: 5rem 0;
}

/* Small Step Indicators */
.step-small {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background-color: var(--pink-bright);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.875rem;
}

/* ANIMATION CDD PROCESS */

.container1 {
  display: flex;
  flex-direction: column;
  max-width: 800px;
  margin: 0 auto;
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
/* h1 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 30px;
} */
.animation-container {
  position: relative;
  height: 400px;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #f8fafc;
}
.step {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.step.active {
  opacity: 1;
}
.icon {
  width: 120px;
  height: 120px;
  background-color: #3498db;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: white;
  font-size: 40px;
}
.step-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #2c3e50;
}
.step-description {
  font-size: 16px;
  text-align: center;
  max-width: 80%;
  line-height: 1.6;
}
.controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}
.control-btn {
  padding: 10px 20px;
  background-color: #3498db;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
}
.control-btn:hover {
  background-color: #2980b9;
}
.control-btn:disabled {
  background-color: #bdc3c7;
  cursor: not-allowed;
}
.progress-bar {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.progress-dot {
  width: 12px;
  height: 12px;
  background-color: #ddd;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}
.progress-dot.active {
  background-color: #3498db;
}
.wallet {
  position: relative;
  width: 80px;
  height: 60px;
  background-color: #f39c12;
  border-radius: 8px;
  margin-bottom: 10px;
}
.wallet:before {
  content: '';
  position: absolute;
  top: -10px;
  left: 10px;
  width: 60px;
  height: 20px;
  background-color: #e67e22;
  border-radius: 8px 8px 0 0;
}
.bank {
  width: 100px;
  height: 70px;
  background-color: #9b59b6;
  border-radius: 8px;
  position: relative;
}
.bank:before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  background-color: #8e44ad;
  border-radius: 8px 8px 0 0;
}
.bank:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20px;
  width: 60px;
  height: 25px;
  background-color: #8e44ad;
  border-radius: 8px 8px 0 0;
}
.coin {
  width: 50px;
  height: 50px;
  background-color: #f1c40f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.2);
}
.document {
  width: 60px;
  height: 80px;
  background-color: white;
  border-radius: 4px;
  position: relative;
  border: 2px solid #3498db;
}
.document:before {
  content: '';
  position: absolute;
  top: 15px;
  left: 10px;
  width: 40px;
  height: 4px;
  background-color: #95a5a6;
}
.document:after {
  content: '';
  position: absolute;
  top: 25px;
  left: 10px;
  width: 40px;
  height: 4px;
  background-color: #95a5a6;
}
.line1, .line2, .line3 {
  position: absolute;
  top: 35px;
  left: 10px;
  width: 40px;
  height: 4px;
  background-color: #95a5a6;
}
.line2 {
  top: 45px;
}
.line3 {
  top: 55px;
}
.animated-element {
  transition: transform 1s ease-in-out;
}
.devices {
  display: flex;
  gap: 30px;
}
.phone {
  width: 60px;
  height: 100px;
  background-color: #34495e;
  border-radius: 10px;
  position: relative;
}
.phone:before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  width: 40px;
  height: 70px;
  background-color: #2c3e50;
  border-radius: 5px;
}
.computer {
  width: 120px;
  height: 80px;
  background-color: #34495e;
  border-radius: 5px;
  position: relative;
}
.computer:before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  width: 100px;
  height: 60px;
  background-color: #2c3e50;
  border-radius: 3px;
}
.computer:after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 40px;
  width: 40px;
  height: 20px;
  background-color: #34495e;
}
.arrow {
  position: absolute;
  width: 100px;
  height: 20px;
  background-color: #3498db;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
}
.arrow:after {
  content: '';
  position: absolute;
  right: -20px;
  top: -10px;
  border-left: 20px solid #3498db;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}
.pulse {
  animation: pulse 1.5s infinite;
}