* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

:root {
  --primary-blue: #0066ff;
  --secondary-blue: #0044cc;
  --accent-blue: #00aaff;
  --dark-blue: #003399;
  --light-blue: #e6f0ff;
  --neon-blue: #00ccff;
  --text-dark: #1a1a1a;
  --text-light: #666;
  --white: #ffffff;
  --gradient: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
  --gradient-neon: linear-gradient(135deg, var(--primary-blue), var(--neon-blue));

  --success-green: #00cc88;
  --warning-orange: #ffaa00;
  --error-red: #ff4444;


  /* loader root */
  --overlay: #e2e8f0;
  /* soft gray-blue */
  --accent: #2563eb;
  /* medium rich blue */
  --accent-2: #0ea5e9;
  /* cyan highlight */
  --bg: #cbd5e1;
  /* medium gray-blue background */
  --text: #1e293b;
  /* dark slate text */
  --ring-size: 76px;
  --ease: cubic-bezier(.22, .61, .36, 1);

  --card-1: linear-gradient(135deg, #0066ff, #00aaff);
  --card-2: linear-gradient(135deg, #00cc88, #00ffaa);
  --card-3: linear-gradient(135deg, #ffaa00, #ffcc00);
  --card-4: linear-gradient(135deg, #cc00ff, #ff00aa);
  --card-5: linear-gradient(135deg, #ff0066, #ff4400);
  --card-6: linear-gradient(135deg, #8800ff, #4400ff);
}

body {
  background-color: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  height: 100vh;
}

html {
  scroll-behavior: smooth;
}

/* Futuristic Header & Navigation */
header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 30px rgba(0, 0, 100, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 102, 255, 0.1);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}


/* LOAD STYLE */



/* =========================
     PRELOADER OVERLAY
  ==========================*/
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  place-items: center;
  background:
    radial-gradient(1200px 600px at 10% 10%, rgba(37, 99, 235, 0.18), transparent 60%),
    radial-gradient(1000px 500px at 90% 90%, rgba(14, 165, 233, 0.18), transparent 60%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, .05)),
    var(--overlay);
  transition: opacity .6s var(--ease), visibility .6s var(--ease);
}



/* =========================
     LOADER
    ==========================*/
.loader {
  display: grid;
  gap: 18px;
  justify-items: center;
  padding: 28px 30px;
  border-radius: 18px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px rgba(37, 99, 235, .25), inset 0 1px 0 rgba(255, 255, 255, .3);
  background: linear-gradient(180deg, rgba(226, 232, 240, 0.95), rgba(203, 213, 225, 0.9));
}

.ring {
  width: var(--ring-size);
  height: var(--ring-size);
  position: relative;
  border-radius: 50%;
  background:
    conic-gradient(from 0deg, var(--accent), var(--accent-2), var(--accent));
  animation: spin 1.1s linear infinite;
  mask:
    radial-gradient(farthest-side, #0000 calc(50% - 6px), #000 calc(50% - 6px));
}

.ring::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: inherit;
  background: radial-gradient(60% 60% at 50% 35%, rgba(14, 165, 233, .2), transparent 70%);
  filter: blur(2px);
}

.bar {
  width: min(280px, 72vw);
  height: 6px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(30, 41, 59, .15);
  box-shadow: inset 0 1px 2px rgba(37, 99, 235, .25);
}

.bar>i {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  animation: load 5s var(--ease) infinite;
}

@media (prefers-reduced-motion: reduce) {
  .ring {
    animation: none
  }

  .bar>i {
    animation: none;
    width: 60%
  }

  .preloader {
    transition: none
  }
}

@keyframes spin {
  to {
    transform: rotate(1turn)
  }
}

@keyframes load {
  0% {
    width: 0%
  }

  60% {
    width: 92%
  }

  100% {
    width: 100%
  }
}




/* ALERTS */

/* ALERT POP UPS */


.success-alert {
  background-color: #4CAF50;
  color: white;
}

.alert-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0000009b;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3000;
}

.alert-content {
  width: 350px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.alert-icon {
  margin-bottom: 15px;
}

.alert-icon i {
  font-size: 50px;

}

.alert-message h3 {
  margin: 0 0 10px 0;
  font-size: 1.5rem;
}

.alert-message p {
  margin: 0;
  font-size: 1rem;
}

.alert-button {
  margin-top: 20px;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background-color: white;
  color: #4CAF50;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.alert-button:hover {
  opacity: 0.9;
}


.error-alert {
  background-color: #F44336;
  color: white;
}

.error-alert .alert-button {
  color: #F44336;
}



.confirm-modal {
  background-color: white;
  color: #333;
}

.confirm-modal .alert-icon svg {
  stroke: #4CAF50;
}

.pinpassword-input {
  width: 100%;
  padding: 10px;
  margin-top: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

.confirm-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  gap: 10px;
}

.pincancel-button {
  background-color: #f1f1f1;
  color: #333;
  flex: 1;
}

.pinconfirm-button {
  background-color: #4CAF50;
  color: white;
  flex: 1;
}


/* PASSWOR MODAL */



/* Password Modal Styles */




/* Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: all 0.3s ease;
}


/* Password Modal */
.password-modal {
  background: var(--white);
  border-radius: 16px;
  width: 90%;
  max-width: 450px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  display: block;
}



.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.modal-close:hover {
  background: var(--error-red);
  color: var(--white);
  transform: rotate(90deg);
}

.modal-header {
  background: var(--light-blue);
  padding: 25px;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.modal-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--primary-blue);
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--dark-blue);
}

.modal-subtitle {
  color: var(--text-light);
  font-size: 0.95rem;
}

.modal-content {
  padding: 25px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--dark-blue);
}

.password-input-group {
  position: relative;
}

.password-input {
  width: 100%;
  padding: 15px 50px 15px 20px;
  border: 2px solid var(--light-blue);
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--light-blue);
}

.password-input:focus {
  outline: none;
  border-color: var(--accent-blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0, 170, 255, 0.2);
}

.password-toggle {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: var(--text-light);
  background: none;
  border: none;
  font-size: 1rem;
}

.password-toggle:hover {
  color: var(--primary-blue);
}

.form-text {
  display: block;
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.modal-actions {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.confirm-button {
  flex: 1;
  padding: 15px;
  background: var(--gradient);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
}

.confirm-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 102, 255, 0.4);
}

.confirm-button:disabled {
  background: var(--text-light);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.cancel-button {
  flex: 1;
  padding: 15px;
  background: var(--white);
  color: var(--text-light);
  border: 2px solid var(--text-light);
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cancel-button:hover {
  background: var(--light-blue);
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

.error-messagepassword {
  color: var(--error-red);
  font-size: 0.9rem;
  margin-top: 10px;
  font-weight: 600;
  display: none;
}

/* Responsive Design */
@media (max-width: 576px) {
  .password-modal {
    width: 95%;
  }

  .modal-header {
    padding: 20px;
  }

  .modal-content {
    padding: 20px;
  }

  .modal-actions {
    flex-direction: column;
  }

  .modal-title {
    font-size: 1.3rem;
  }
}













.logo {
  display: flex;
  align-items: center;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  border: var(--secondary-blue) 1px solid;
  padding: 2px 20px;
  border-radius: 40px;
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 3px;
  border: var(--dark-blue) 1px solid;
}

.logo span {
  color: var(--accent-blue);
  position: relative;
}

.logo span::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-neon);
  box-shadow: 0 0 10px var(--neon-blue);
}

.everithing-nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  border: var(--dark-blue) 1px solid;
  padding: 5px;
  border-radius: 30px;
}

nav ul {
  display: flex;
  list-style: none;
  justify-content: center;
  align-items: center;
}

nav ul li {
  margin: 0 10px;
  position: relative;
}

nav ul li a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s;
  padding: 12px 20px;
  position: relative;
  display: block;
  border-radius: 25px;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-neon);
  transition: width 0.3s ease;
  box-shadow: 0 0 8px var(--neon-blue);
}

nav ul li a:hover::after {
  width: 100%;
}

nav ul li a:hover {
  color: var(--primary-blue);
  background: rgba(0, 102, 255, 0.05);
}

.auth-buttons {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-login {
  background: transparent;
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
}

.btn-login:hover {
  background: var(--primary-blue);
  color: var(--white);
  box-shadow: 0 0 15px rgba(0, 102, 255, 0.4);
}

.btn-signup {
  background: var(--gradient);
  color: var(--white);
  border: none;
  box-shadow: 0 4px 15px rgba(0, 98, 255, 0.3);
}

.btn-signup:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 98, 255, 0.4);
}

.btn-signup::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.btn-signup:hover::before {
  left: 100%;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  background: var(--light-blue);
  border: none;
  color: var(--primary-blue);
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.3s;
  z-index: 1001;
}

.mobile-menu-btn:hover {
  background: var(--primary-blue);
  color: var(--white);
}

/* Mobile dropdown (animated) */
.everithing-nav.show {
  display: flex;
  background: var(--white);
  position: fixed;
  flex-direction: column;
  top: 75px;
  height: 85vh;
  left: 5%;
  right: 5%;
  z-index: 999;
  border-radius: 20px;
  width: 90%;
  animation: slideDown 0.6s ease forwards;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 100, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 102, 255, 0.2);
}

.everithing-nav.show>nav {
  border: none;
  width: 100%;
  margin: 0;
}

.everithing-nav.show>nav ul {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.everithing-nav.show>nav ul li {
  width: 100%;
  text-align: center;
}

.everithing-nav.show>nav ul li a {
  padding: 15px;
  width: 100%;
  border: 1px solid var(--accent-blue);
  border-radius: 20px;
  transition: all 0.3s;
}

.everithing-nav.show>nav ul li a:hover {
  background: var(--light-blue);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 102, 255, 0.2);
}

.everithing-nav.show .auth-buttons {
  flex-direction: column;
  width: 100%;
  margin-top: 30px;
}

.everithing-nav.show .auth-buttons .btn {
  width: 100%;
  text-align: center;
}

@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Full-screen Carousel Section */
.carousel-section {
  padding: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  background: var(--light-blue);
  position: relative;
  overflow: hidden;
}

.carousel-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel {
  border-radius: 0;
  overflow: hidden;
  position: relative;
  height: 100%;
  width: 100%;
}

.carousel-inner {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  height: 100%;
}

.carousel-item {
  min-width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 10%;
}

.carousel-content {
  max-width: 600px;
  z-index: 3;
  position: relative;
}

.carousel-item h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  font-weight: 800;
  line-height: 1.2;
}

.carousel-item p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.carousel-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
  z-index: 1;
}

.carousel-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  opacity: 0.85;
  mix-blend-mode: multiply;
  z-index: 2;
}

.carousel-controls {
  position: absolute;
  bottom: 50px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 15px;
  z-index: 5;
}

.carousel-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.carousel-dot.active {
  background: var(--white);
  transform: scale(1.3);
  box-shadow: 0 0 10px var(--neon-blue);
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.488);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  z-index: 5;
  transition: all 0.3s;
  border: 1px solid rgba(0, 102, 255, 0.1);
}

.carousel-nav:hover {
  background: var(--white);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 5px 25px rgba(0, 102, 255, 0.3);
}

.carousel-prev {
  left: 30px;
}

.carousel-next {
  right: 30px;
}

.carousel-nav i {
  font-size: 1.5rem;
  color: var(--primary-blue);
}

/* Fixed Cyber Globe */
.cyber-globe {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: conic-gradient(from 0deg,
      var(--primary-blue) 0%,
      var(--accent-blue) 25%,
      var(--neon-blue) 50%,
      var(--accent-blue) 75%,
      var(--primary-blue) 100%);
  opacity: 0.2;
  filter: blur(40px);
  z-index: 2;
  animation: rotate 20s linear infinite;
}

.holographic-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-neon);
  box-shadow: 0 0 20px var(--neon-blue);
  z-index: 4;
}

/* Animations */
@keyframes rotate {
  from {
    transform: translateY(-50%) rotate(0deg);
  }

  to {
    transform: translateY(-50%) rotate(360deg);
  }
}



/* About Us Section Styles */
.about-section {
  padding: 120px 10px;
  background: var(--light-blue);
  position: relative;
  overflow: hidden;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 3;
}

.about-content {
  flex: 1;
}

.about-content h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}

.about-subtitle {
  font-size: 1.3rem;
  color: var(--text-light);
  margin-bottom: 50px;
  max-width: 600px;
}

.about-features {
  margin-bottom: 50px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
}

.feature-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--dark-blue);
}

.feature-content p {
  color: var(--text-light);
}

.about-cta {
  background: rgba(255, 255, 255, 0.9);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 100, 0.1);
  backdrop-filter: blur(10px);
}

.encouragement-text {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 25px;
  font-weight: 500;
  text-align: center;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Enhanced Button Styles */
.btn-glow {
  background: var(--gradient);
  color: var(--white);
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 5px 20px rgba(0, 98, 255, 0.4);
  transition: all 0.3s ease;
}

.btn-glow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--primary-blue), var(--accent-blue), var(--neon-blue), var(--primary-blue));
  background-size: 400% 400%;
  z-index: -1;
  animation: gradientShift 3s ease infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-glow:hover::before {
  opacity: 1;
}

.btn-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 98, 255, 0.6);
}

.btn-border {
  background: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s ease;
}

.btn-border::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--primary-blue);
  transition: width 0.3s ease;
  z-index: -1;
}

.btn-border:hover::before {
  width: 100%;
}

.btn-border:hover {
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
}

/* Hero Image Styles */
.about-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 100, 0.2);
}

.hero-image {
  width: 100%;
  height: 400px;
  display: block;
  border-radius: 20px;
  transition: transform 0.5s ease;
  object-fit: cover;
}

.image-container:hover .hero-image {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  opacity: 0.2;
  border-radius: 20px;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.floating-element {
  position: absolute;
  width: 50px;
  height: 50px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  animation: float 5s ease-in-out infinite;
}

.floating-element.element-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-element.element-2 {
  top: 60%;
  right: 15%;
  animation-delay: 1s;
}

.floating-element.element-3 {
  bottom: 20%;
  left: 20%;
  animation-delay: 2s;
}

.about-globe {
  top: 20%;
  left: 10%;
  right: auto;
}

/* Cyber Grid Background */
.cyber-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(0, 102, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 102, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 1;
}

/* Animations */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(5deg);
  }

  100% {
    transform: translateY(0) rotate(0deg);
  }
}



/* Trust & Statistics Section Styles */
.trust-section {
  padding: 100px 5%;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.trust-section .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.trust-header {
  text-align: center;
  margin-bottom: 60px;
}

.trust-header h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: var(--dark-blue);
  font-weight: 800;
}

.trust-header p {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.badge-item {
  text-align: center;
  max-width: 250px;
  padding: 30px;
  border-radius: 20px;
  background: var(--light-blue);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.badge-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 100, 0.1);
}

.badge-item img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid var(--primary-blue);
}

.badge-item h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--dark-blue);
}

.badge-item p {
  color: var(--text-light);
}

.statistics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
  padding: 40px 20px;
  background: var(--light-blue);
  border-radius: 20px;
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 100, 0.1);
}

.stat-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--white);
  font-size: 1.8rem;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 10px;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label {
  color: var(--text-light);
  font-size: 1.1rem;
  margin: 0;
}

/* Animation for the numbers */
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stat-number.animated {
  animation: countUp 1s ease-out forwards;
}



/* How It Works Section Styles */
.how-it-works {
  padding: 100px 5%;
  background: var(--light-blue);
  position: relative;
  overflow: hidden;
}

.how-it-works .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-header h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: var(--dark-blue);
  font-weight: 800;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.timeline-container {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.timeline-hero {
  flex: 1;
  position: sticky;
  top: 120px;
}

.hero-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 100, 0.2);
}

.timeline-hero-img {
  width: 100%;
  height: 500px;
  display: block;
  border-radius: 20px;
  transition: transform 0.5s ease;
  object-fit: cover;
}

.hero-image-container:hover .timeline-hero-img {
  transform: scale(1.03);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  opacity: 0.1;
  border-radius: 20px;
}

.floating-card {
  position: absolute;
  background: var(--white);
  padding: 15px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  animation: float 6s ease-in-out infinite;
  z-index: 2;
}

.floating-card i {
  color: var(--primary-blue);
  font-size: 1.2rem;
}

.floating-card p {
  margin: 0;
  font-weight: 600;
  color: var(--text-dark);
}

.floating-card-1 {
  top: 20%;
  left: 5px;
  animation-delay: 0s;
}

.floating-card-2 {
  top: 40%;
  right: 5px;
  animation-delay: 1s;
}

.floating-card-3 {
  top: 60%;
  left: 5px;
  animation-delay: 2s;
}

.floating-card-4 {
  top: 80%;
  right: 0px;
  animation-delay: 3s;
}

.timeline-steps {
  flex: 1;
  position: relative;
}

.timeline-progress {
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: rgba(0, 102, 255, 0.2);
  border-radius: 2px;
}

.progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--gradient);
  border-radius: 2px;
  transition: height 0.5s ease;
}

.step-card {
  position: relative;
  margin-bottom: 60px;
  padding-left: 80px;
  opacity: 0.6;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.step-card.active {
  opacity: 1;
  transform: translateY(0);
}

.step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
}

.step-content {
  background: var(--white);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 100, 0.1);
  position: relative;
  overflow: hidden;
}

.step-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--gradient);
}

.step-icon {
  width: 70px;
  height: 70px;
  background: var(--light-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary-blue);
  font-size: 1.8rem;
}

.step-card h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--dark-blue);
}

.step-card p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.step-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.step-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.step-features i {
  color: var(--accent-blue);
}

/* Animations */
@keyframes float {
  0% {
    transform: translateY(0);
  }

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

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



/* Why Choose Us Section Styles */
.why-choose-us {
  padding: 100px 5%;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.why-choose-us .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 100, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 100, 0.15);
}

.card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.feature-card:hover .card-image img {
  transform: scale(1.05);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  opacity: 0.1;
}

.card-content {
  padding: 25px;
  position: relative;
}

.card-icon {
  position: absolute;
  top: -30px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
}

.card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--dark-blue);
  padding-right: 70px;
}

.card-content p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.card-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.card-features i {
  color: var(--accent-blue);
  font-size: 0.8rem;
}

/* Animation for cards */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-card {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.feature-card:nth-child(1) {
  animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
  animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
  animation-delay: 0.3s;
}

.feature-card:nth-child(4) {
  animation-delay: 0.4s;
}

.feature-card:nth-child(5) {
  animation-delay: 0.5s;
}

.feature-card:nth-child(6) {
  animation-delay: 0.6s;
}

.feature-card:nth-child(7) {
  animation-delay: 0.7s;
}


/* Investment Plans Section Styles */
.investment-offers {
  padding: 80px 5%;
  background: var(--light-blue);
  position: relative;
  overflow: hidden;
}

.investment-offers .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.offers-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.offer-card {
  background: var(--white);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 100, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 102, 255, 0.1);
  display: flex;
  flex-direction: column;
  text-align: center;
}

.offer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient);
  opacity: 0.7;
}

.offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 100, 0.15);
}

.offer-card.featured {
  border: 2px solid var(--accent-blue);
  transform: scale(1.03);
  box-shadow: 0 15px 40px rgba(0, 170, 255, 0.2);
  z-index: 2;
}

.offer-card.featured:hover {
  transform: scale(1.03) translateY(-10px);
}

.featured-tag {
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--gradient);
  color: var(--white);
  padding: 8px 40px;
  font-size: 0.8rem;
  font-weight: 700;
  transform: rotate(45deg);
  box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
}

.offer-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--white);
  font-size: 1.8rem;
  box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
  position: relative;
  z-index: 2;
}

.offer-header {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 102, 255, 0.1);
}

.offer-header h3 {
  font-size: 1.6rem;
  margin-bottom: 5px;
  color: var(--dark-blue);
  font-weight: 800;
}

.offer-header p {
  color: var(--text-light);
  margin: 0;
  font-size: 0.95rem;
}

.offer-pricing {
  text-align: center;
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(0, 102, 255, 0.05);
  border-radius: 15px;
}

.pricing-value {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 5px;
}

.pricing-term {
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.95rem;
}

.offer-details {
  flex-grow: 1;
  margin-bottom: 20px;
}

.detail-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 102, 255, 0.05);
}

.detail-line:last-child {
  border-bottom: none;
}

.detail-name {
  color: var(--text-light);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.detail-name i {
  color: var(--accent-blue);
  font-size: 0.85rem;
  width: 18px;
}

.detail-data {
  color: var(--dark-blue);
  font-weight: 700;
  font-size: 0.95rem;
}

.offer-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  background: var(--gradient);
  color: var(--white);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-size: 0.95rem;
}

.offer-action::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--primary-blue), var(--accent-blue), var(--neon-blue), var(--primary-blue));
  background-size: 400% 400%;
  z-index: -1;
  animation: gradientShift 3s ease infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.offer-action:hover::before {
  opacity: 1;
}

.offer-action:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 102, 255, 0.4);
}

/* Animation for cards */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.offer-card {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.offer-card:nth-child(1) {
  animation-delay: 0.1s;
}

.offer-card:nth-child(2) {
  animation-delay: 0.2s;
}

.offer-card:nth-child(3) {
  animation-delay: 0.3s;
}

.offer-card:nth-child(4) {
  animation-delay: 0.4s;
}

.offer-card:nth-child(5) {
  animation-delay: 0.5s;
}

.offer-card:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 2.2rem;
  color: var(--dark-blue);
  margin-bottom: 15px;
  font-weight: 800;
}

.section-title p {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .offers-container {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .investment-offers {
    padding: 60px 4%;
  }

  .offers-container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .offer-card {
    padding: 20px;
  }

  .section-title h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .investment-offers {
    padding: 50px 3%;
  }

  .offers-container {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    max-width: 500px;
    margin: 40px auto 0;
  }

  .offer-card.featured {
    transform: scale(1);
  }

  .offer-card.featured:hover {
    transform: translateY(-10px);
  }

  .featured-tag {
    right: -35px;
    padding: 7px 35px;
    font-size: 0.75rem;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .section-title p {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .investment-offers {
    padding: 40px 15px;
  }

  .section-title {
    margin-bottom: 30px;
  }

  .section-title h2 {
    font-size: 1.6rem;
  }

  .offer-header h3 {
    font-size: 1.4rem;
  }

  .pricing-value {
    font-size: 1.3rem;
  }

  .detail-name,
  .detail-data {
    font-size: 0.85rem;
  }

  .offer-action {
    font-size: 0.9rem;
    padding: 10px;
  }

  .featured-tag {
    right: -38px;
    padding: 6px 30px;
    font-size: 0.7rem;
  }
}

@media (max-width: 400px) {
  .offer-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .offer-header {
    margin-bottom: 15px;
  }

  .offer-header h3 {
    font-size: 1.3rem;
  }

  .offer-pricing {
    margin-bottom: 15px;
    padding: 12px;
  }

  .detail-line {
    padding: 8px 0;
  }

  .featured-tag {
    right: -40px;
    padding: 5px 28px;
    font-size: 0.65rem;
  }
}



/*REVIEW BOX*/

.review-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100vh;
  background: var(--white);

  margin: 30px;
  border-radius: 30px;
  box-shadow: var(--secondary-blue) 1px 1px 6px;
  border-radius: 30px;
}

.reviews {
  background: var(--light-blue);
  display: flex;
  align-items: center;
  position: relative;
  width: 80vw;
  max-width: 720px;
  height: 340px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.reviews .review {
  display: flex;
  align-items: center;
  gap: 30px;
  width: 86%;
  margin: auto;
  transition: opacity 0.3s ease-in-out;
  opacity: 1;
}

.reviews .review p {
  color: #888;
  text-align: justify;
  font-size: 15px;
}

.reviews .review img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}

.reviews .review h3 {
  color: #333;
  font-size: 15px;
  margin-bottom: 2px;
  text-align: center;
}

.reviews .review h6 {
  color: #777;
  font-weight: 500;
  text-align: center;
  font-size: 12px;
}

.reviews button {
  font-size: 28px;
  height: 48px;
  width: 48px;
  background: #fff;
  border: none;
  position: absolute;
  color: #512da8;
  cursor: pointer;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
}

.reviews button#revnext {
  right: -26px;
}

.reviews button#revprev {
  left: -26px;
}

/*REVIEW BOX*/




/* Referral Section Styles */
.referral-section {
  padding: 100px 5%;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.referral-section .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.referral-content {
  display: flex;
  gap: 60px;
  align-items: center;
}

.referral-info {
  flex: 1;
}

.commission-highlight {
  margin-bottom: 40px;
}

.commission-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: var(--gradient);
  color: var(--white);
  padding: 20px;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
}

.commission-badge .percent {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
}

.commission-badge .label {
  font-size: 1.1rem;
  font-weight: 600;
}

.commission-highlight h3 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: var(--dark-blue);
}

.commission-highlight p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 500px;
}

.referral-features {
  margin-bottom: 40px;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--light-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.feature-content h4 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--dark-blue);
}

.feature-content p {
  color: var(--text-light);
  margin: 0;
}

.referral-stats {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
}

.stat {
  text-align: center;
  flex: 1;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 5px;
}

.stat-label {
  color: var(--text-light);
  font-size: 0.9rem;
}

.referral-actions {
  background: rgba(0, 102, 255, 0.05);
  padding: 30px;
  border-radius: 20px;
}

.referral-link {
  margin-bottom: 20px;
}

.link-container {
  display: flex;
  background: var(--white);
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.link-container p {
  flex: 1;
  border: none;
  padding: 15px 25px;
  font-size: 1rem;
  background: transparent;
  color: var(--text-dark);
  margin: 0;
  /* remove default p margins */
  white-space: nowrap;
  /* keep link in one line */
  overflow: hidden;
  /* prevent overflow */
  text-overflow: ellipsis;
  /* show "..." if too long */
}

.link-container p:focus {
  outline: none;
}

.copy-btn {
  background: var(--gradient);
  color: var(--white);
  border: none;
  padding: 15px 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.copy-btn:hover {
  background: var(--primary-blue);
}

.action-buttons {
  display: flex;
  gap: 15px;
}

.action-buttons .btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 102, 255, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
  background: var(--primary-blue);
  color: var(--white);
  transform: translateY(-3px);
}

.referral-visual {
  flex: 1;
}

.visual-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 100, 0.2);
}

.referral-hero {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  transition: transform 0.5s ease;
}

.visual-container:hover .referral-hero {
  transform: scale(1.03);
}

.visual-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  opacity: 0.1;
  border-radius: 20px;
}

.floating-commission,
.floating-referrals {
  position: absolute;
  animation: float 6s ease-in-out infinite;
}

.floating-commission {
  top: 20%;
  right: 5px;
  animation-delay: 0s;
}

.floating-referrals {
  bottom: 20%;
  left: 5px;
  animation-delay: 2s;
}

.commission-card,
.referral-card {
  background: var(--white);
  padding: 15px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  min-width: 120px;
}

.commission-card i,
.referral-card i {
  color: var(--primary-blue);
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.commission-card .amount,
.referral-card .count {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark-blue);
  margin-bottom: 2px;
}

.commission-card .label,
.referral-card .label {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* Animations */
@keyframes float {
  0% {
    transform: translateY(0);
  }

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

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


/* Footer Styles */
.axetprime-footer {
  position: relative;
  background: var(--dark-blue);
  color: var(--white);
  margin-top: 100px;
}

.footer-wave {
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.footer-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 100px;
}

.footer-wave .shape-fill {
  fill: var(--dark-blue);
}

.footer-content {
  position: relative;
  z-index: 2;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 20px 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
}

.footer-logo img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.footer-logo span {
  color: var(--accent-blue);
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 25px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--accent-blue);
  transform: translateY(-3px);
}

.footer-title {
  font-size: 1.3rem;
  margin-bottom: 25px;
  color: var(--white);
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--gradient);
  border-radius: 3px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-links a:hover {
  color: var(--accent-blue);
  transform: translateX(5px);
}

.footer-links i {
  font-size: 0.8rem;
  color: var(--accent-blue);
}

.newsletter-text {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  margin-bottom: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  overflow: hidden;
}

.newsletter-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 15px 20px;
  color: var(--white);
  outline: none;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-btn {
  width: 50px;
  background: var(--gradient);
  border: none;
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-btn:hover {
  background: var(--primary-blue);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.contact-item i {
  color: var(--accent-blue);
  width: 20px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 25px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--accent-blue);
}




/* Certificate Styles */
.certificate-container {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 5px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.certificate-container:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.certificate-image {
  width: 100%;
  max-width: 180px;
  height: 250px;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  object-fit: cover;
}

.certificate-container:hover .certificate-image {
  transform: scale(1.05);
}

.certificate-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}






/* ABOUT US PAGE */



.about-us-page {
  padding: 100px 5% 80px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.about-us-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.about-us-header {
  text-align: center;
  margin-bottom: 80px;
}

.about-us-header h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--dark-blue);
  font-weight: 800;
}

.about-us-header p {
  font-size: 1.3rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

/* History Section */
.about-history {
  background: var(--light-blue);
  padding: 80px 5%;
  border-radius: 30px;
  margin-bottom: 100px;
  position: relative;
  overflow: hidden;
}

.about-history::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../pics/aboutp.avif') center/cover no-repeat;
  opacity: 0.05;
}

.about-history-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.about-history-content h2 {
  font-size: 2.8rem;
  margin-bottom: 25px;
  color: var(--dark-blue);
}

.about-history-content p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.about-history-highlight {
  background: var(--white);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 100, 0.1);
  margin: 40px 0;
  display: flex;
  align-items: center;
  gap: 30px;
}

.about-history-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  flex-shrink: 0;
}

.about-history-text {
  text-align: left;
}

.about-history-text h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--dark-blue);
}

.about-history-text p {
  margin: 0;
  color: var(--text-light);
}

.about-history-milestones {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.about-milestone {
  text-align: center;
  width: 150px;
}

.about-milestone-year {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 10px;
}

.about-milestone-text {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Mission Section */
.about-mission {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 100px;
}

.about-mission-content {
  flex: 1;
}

.about-mission-content h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  color: var(--dark-blue);
}

.about-mission-content p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.about-mission-stats {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

.about-stat {
  text-align: center;
  flex: 1;
}

.about-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 10px;
}

.about-stat-label {
  color: var(--text-light);
  font-size: 1rem;
}

.about-mission-visual {
  flex: 1;
  position: relative;
}

.about-mission-image {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 100, 0.1);
}

.about-mission-video {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 300px;
  height: 200px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.about-video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.about-mission-video:hover .about-video-play {
  background: var(--primary-blue);
  color: var(--white);
  transform: translate(-50%, -50%) scale(1.1);
}

/* Video Modal */
.about-video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.about-modal-content {
  width: 80%;
  max-width: 900px;
  position: relative;
}

.about-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.about-modal-close:hover {
  color: var(--accent-blue);
}

.about-modal-video {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  border-radius: 10px;
}

/* Team Section */
.about-team-section {
  margin-bottom: 100px;
}

.about-team-header {
  text-align: center;
  margin-bottom: 60px;
}

.about-team-header h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: var(--dark-blue);
}

.about-team-header p {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.about-team-member {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 100, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.about-team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 100, 0.15);
}

.about-member-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.about-member-info {
  padding: 25px;
}

.about-member-name {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--dark-blue);
}

.about-member-role {
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 15px;
}

.about-member-desc {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

.about-member-social {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.about-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  transition: all 0.3s ease;
}

.about-social-link:hover {
  background: var(--primary-blue);
  color: var(--white);
  transform: translateY(-3px);
}

/* Values Section */
.about-values {
  background: var(--light-blue);
  padding: 80px 5%;
  border-radius: 30px;
  margin-bottom: 100px;
}

.about-values-header {
  text-align: center;
  margin-bottom: 60px;
}

.about-values-header h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: var(--dark-blue);
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.about-value-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 100, 0.08);
  transition: all 0.3s ease;
}

.about-value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 100, 0.12);
}

.about-value-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  margin: 0 auto 25px;
  box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
}

.about-value-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--dark-blue);
}

.about-value-desc {
  color: var(--text-light);
  line-height: 1.7;
}



/* SERVICE PAGE */


.services-page {
  padding: 100px 5% 80px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.services-header {
  text-align: center;
  margin-bottom: 80px;
}

.services-header h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--dark-blue);
  font-weight: 800;
}

.services-header p {
  font-size: 1.3rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-bottom: 100px;
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 100, 0.1);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(0, 0, 100, 0.15);
}

.service-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
  opacity: 0.1;
}

.service-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  font-size: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.service-content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--dark-blue);
  font-weight: 700;
}

.service-description {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 25px;
  flex: 1;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.service-feature i {
  color: var(--accent-blue);
  font-size: 0.8rem;
}

.service-cta {
  margin-top: auto;
}

.service-btn {
  display: inline-block;
  padding: 12px 25px;
  background: var(--gradient);
  color: var(--white);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
}

.service-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 102, 255, 0.4);
}

/* CTA Section */
.services-cta {
  background: var(--light-blue);
  padding: 80px 5%;
  border-radius: 30px;
  text-align: center;
  margin-bottom: 100px;
}

.services-cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.services-cta h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: var(--dark-blue);
}

.services-cta p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn-primary {
  padding: 15px 35px;
  background: var(--gradient);
  color: var(--white);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
}

.cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 102, 255, 0.4);
}

.cta-btn-secondary {
  padding: 15px 35px;
  background: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-btn-secondary:hover {
  background: var(--primary-blue);
  color: var(--white);
  transform: translateY(-3px);
}



/* REGISTER PAGE */
/* Registration Page Styles */

/* Header Styles */
.register-header {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 100, 0.1);
  padding: 20px 5%;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

.back-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  margin-right: 20px;
}

.back-button:hover {
  background: var(--primary-blue);
  color: var(--white);
  transform: scale(1.05);
}

.register-logo {
  display: flex;
  align-items: center;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary-blue);
}

.register-logo span {
  color: var(--accent-blue);
}

/* Registration Container */
.register-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 5%;
}

.register-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 100, 0.15);
  width: 100%;
  max-width: 500px;
  overflow: hidden;
}

.register-header-card {
  background: var(--gradient);
  padding: 30px;
  text-align: center;
  color: var(--white);
}

.register-header-card h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.register-header-card p {
  opacity: 0.9;
}

.register-form {
  padding: 30px;
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--dark-blue);
}

.form-control {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid var(--light-blue);
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--light-blue);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0, 170, 255, 0.2);
}

.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: '\f078';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  color: var(--primary-blue);
  pointer-events: none;
}

.form-select {
  appearance: none;
  cursor: pointer;
}

.password-toggle {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: var(--text-light);
  background: none;
  border: none;
  font-size: 1.5rem;
}

.password-toggle:hover {
  color: var(--primary-blue);
}

.wallet-address-group {
  position: relative;
}

.wallet-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-blue);
}

.wallet-input {
  padding-left: 50px;
}

.form-text {
  display: block;
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.terms-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 25px;
}

.terms-group input {
  margin-top: 5px;
}

.terms-group label {
  font-weight: normal;
  line-height: 1.5;
}

.terms-link {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
}

.terms-link:hover {
  text-decoration: underline;
}

.submit-button {
  width: 100%;
  padding: 16px;
  background: var(--gradient);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
}

.submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 102, 255, 0.4);
}

.login-link {
  text-align: center;
  margin-top: 25px;
  color: var(--text-light);
}

.login-link a {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
}

.login-link a:hover {
  text-decoration: underline;
}

/* Responsive Design */








/* Deposit Page Styles */

/* Header Styles */
.deposit-header {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 100, 0.1);
  padding: 20px 5%;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

.back-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  margin-right: 20px;
}

.back-button:hover {
  background: var(--primary-blue);
  color: var(--white);
  transform: scale(1.05);
}

.deposit-logo {
  display: flex;
  align-items: center;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary-blue);
}

.deposit-logo span {
  color: var(--accent-blue);
}

/* Deposit Container */
.deposit-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 5%;
}

.deposit-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 100, 0.15);
  width: 100%;
  max-width: 600px;
  overflow: hidden;
}

.deposit-header-card {
  background: var(--gradient);
  padding: 30px;
  text-align: center;
  color: var(--white);
}

.deposit-header-card h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.deposit-header-card p {
  opacity: 0.9;
}

.deposit-form {
  padding: 30px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--dark-blue);
}

.form-control {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid var(--light-blue);
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--light-blue);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0, 170, 255, 0.2);
}

.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: '\f078';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  color: var(--primary-blue);
  pointer-events: none;
}

.form-select {
  appearance: none;
  cursor: pointer;
}

.amount-input-group {
  position: relative;
}

.amount-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-blue);
  font-weight: 600;
}

.amount-input {
  padding-left: 40px;
}

.amount-limits {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.min-amount {
  color: var(--warning-orange);
}

.max-amount {
  color: var(--success-green);
}

.plan-details {
  background: var(--light-blue);
  padding: 20px;
  border-radius: 12px;
  margin-top: 15px;
  display: none;
}

.plan-details.visible {
  display: block;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.detail-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

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

.detail-value {
  font-weight: 600;
  color: var(--dark-blue);
}

.profit-value {
  color: var(--success-green);
  font-weight: 700;
}

.submit-button {
  width: 100%;
  padding: 16px;
  background: var(--gradient);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
  margin-top: 20px;
}

.submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 102, 255, 0.4);
}




/* REVDEPOSIT PAGE */
/* Header Styles */
.review-header {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 100, 0.1);
  padding: 20px 5%;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}




/* Review Container */
.review-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 5%;
}

.review-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 100, 0.15);
  width: 100%;
  max-width: 600px;
  overflow: hidden;
}

.review-header-card {
  background: var(--gradient);
  padding: 30px;
  text-align: center;
  color: var(--white);
}

.review-header-card h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.review-header-card p {
  opacity: 0.9;
}

.review-content {
  padding: 30px;
}

.review-section {
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--light-blue);
}

.review-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.section-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.section-title i {
  margin-right: 10px;
  color: var(--accent-blue);
}

.detail-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.detail-row:last-child {
  margin-bottom: 0;
}

.detail-label {
  color: var(--text-light);
  font-weight: 500;
}

.detail-value {
  font-weight: 600;
  color: var(--text-dark);
  text-align: right;
}

.crypto-value {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.crypto-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  font-size: 0.9rem;
}

.bitcoin {
  background: #FFEBC8;
  color: #F7931A;
}

.wallet-address {
  background: var(--light-blue);
  padding: 15px;
  border-radius: 10px;
  margin-top: 15px;
  position: relative;
}

.address-text {
  font-family: monospace;
  word-break: break-all;
  padding-right: 100px;
}

.copy-button {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary-blue);
  color: white;
  border: none;
  border-radius: 6px;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.copy-button:hover {
  background: var(--secondary-blue);
}

.copy-button i {
  margin-right: 5px;
}

.action-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.proceed-button {
  flex: 1;
  padding: 16px;
  background: var(--gradient);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
}

.proceed-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 102, 255, 0.4);
}

.cancel-button {
  flex: 1;
  padding: 16px;
  background: var(--white);
  color: var(--text-light);
  border: 2px solid var(--text-light);
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cancel-button:hover {
  background: var(--light-blue);
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

.depositnote {
  font-weight: 600;
  color: #d10000;
  text-decoration: underline;
}





/* INVEST PAGE */





/* Header Styles */
.invest-header {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 100, 0.1);
  padding: 20px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}






.balance-display {
  display: flex;
  align-items: center;
  background: var(--light-blue);
  padding: 10px 20px;
  border-radius: 12px;
  font-weight: 600;
}

.balance-display i {
  margin-right: 10px;
  color: var(--success-green);
}

/* Investment Container */
.invest-container {
  flex: 1;
  padding: 40px 5%;
}

.page-title {
  text-align: center;
  margin-bottom: 40px;
}

.page-title h1 {
  font-size: 2.5rem;
  color: var(--dark-blue);
  margin-bottom: 10px;
}

.page-title p {
  color: var(--text-light);
  font-size: 1.1rem;
}

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

.plan-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 100, 0.1);
  transition: all 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 100, 0.15);
}

.plan-header {
  padding: 25px;
  color: white;
  display: flex;
  align-items: center;
}

.plan-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-right: 15px;
}

.plan-name {
  font-size: 1.5rem;
  font-weight: 700;
}

.plan-content {
  padding: 25px;
}

.plan-detail {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--light-blue);
}

.plan-detail:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

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

.detail-value {
  font-weight: 600;
  color: var(--text-dark);
}

.roi-value {
  color: var(--success-green);
  font-weight: 700;
}

.card-1 .plan-header {
  background: var(--card-1);
}

.card-2 .plan-header {
  background: var(--card-2);
}

.card-3 .plan-header {
  background: var(--card-3);
}

.card-4 .plan-header {
  background: var(--card-4);
}

.card-5 .plan-header {
  background: var(--card-5);
}

.card-6 .plan-header {
  background: var(--card-6);
}

.investment-section {
  background: var(--white);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 100, 0.1);
  max-width: 800px;
  margin: 0 auto;
}

.section-title {
  font-size: 1.5rem;
  color: var(--dark-blue);
  margin-bottom: 25px;
  text-align: center;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--dark-blue);
}

.amount-input-group {
  position: relative;
}

.amount-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-blue);
  font-weight: 600;
}

.amount-input {
  width: 100%;
  padding: 15px 20px 15px 50px;
  border: 2px solid var(--light-blue);
  border-radius: 12px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  background: var(--light-blue);
}

.amount-input:focus {
  outline: none;
  border-color: var(--accent-blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0, 170, 255, 0.2);
}

.invest-button {
  width: 100%;
  padding: 16px;
  background: var(--gradient);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
}

.invest-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 102, 255, 0.4);
}



/* WITHDRAW PAGE */


/* Withdrawal Page Styles */


/* Header Styles */
.withdraw-header {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 100, 0.1);
  padding: 20px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}





.balance-display {
  display: flex;
  align-items: center;
  background: var(--light-blue);
  padding: 10px 20px;
  border-radius: 12px;
  font-weight: 600;
}

.balance-display i {
  margin-right: 10px;
  color: var(--success-green);
}

/* Withdrawal Container */
.withdraw-container {
  flex: 1;
  padding: 40px 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-title {
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
}

.page-title h1 {
  font-size: 2.5rem;
  color: var(--dark-blue);
  margin-bottom: 10px;
}

.page-title p {
  color: var(--text-light);
  font-size: 1.1rem;
}

.withdrawal-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 100, 0.15);
  width: 100%;
  max-width: 600px;
  overflow: hidden;
  margin-bottom: 30px;
}

.withdrawal-header {
  background: var(--gradient);
  padding: 25px;
  text-align: center;
  color: var(--white);
}

.withdrawal-header h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.withdrawal-content {
  padding: 30px;
}

.wallet-section {
  margin-bottom: 30px;
}

.section-title {
  font-size: 1.3rem;
  color: var(--dark-blue);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.section-title i {
  margin-right: 10px;
  color: var(--accent-blue);
}

.wallet-display {
  background: var(--light-blue);
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.wallet-address {
  font-family: monospace;
  word-break: break-all;
  margin-bottom: 15px;
  padding: 15px;
  background: var(--white);
  border-radius: 8px;
  position: relative;
}

.copy-button {
  position: absolute;
  right: 15px;
  top: 15px;
  background: var(--primary-blue);
  color: white;
  border: none;
  border-radius: 6px;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.copy-button:hover {
  background: var(--secondary-blue);
}

.copy-button i {
  margin-right: 5px;
}

.crypto-method {
  display: flex;
  align-items: center;
  padding: 15px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 100, 0.1);
}

.crypto-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-right: 15px;
}

.bitcoin {
  background: #FFEBC8;
  color: #F7931A;
}

.crypto-details {
  flex: 1;
}

.crypto-name {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.crypto-amount {
  color: var(--success-green);
  font-weight: 600;
}

.amount-section {
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--dark-blue);
}

.amount-input-group {
  position: relative;
}

.amount-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-blue);
  font-weight: 600;
}

.amount-input {
  width: 100%;
  padding: 15px 20px 15px 50px;
  border: 2px solid var(--light-blue);
  border-radius: 12px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  background: var(--light-blue);
}

.amount-input:focus {
  outline: none;
  border-color: var(--accent-blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0, 170, 255, 0.2);
}

.amount-limits {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.min-amount {
  color: var(--warning-orange);
}

.max-amount {
  color: var(--success-green);
}

.withdraw-button {
  width: 100%;
  padding: 16px;
  background: var(--gradient);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
}

.withdraw-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 102, 255, 0.4);
}

.fee-notice {
  background: rgba(255, 170, 0, 0.1);
  border-left: 4px solid var(--warning-orange);
  padding: 15px;
  border-radius: 8px;
  margin-top: 20px;
  font-size: 0.9rem;
}

.fee-notice i {
  color: var(--warning-orange);
  margin-right: 8px;
}


/* REV WITHDRAW */

/* Header Styles */
.review-header {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 100, 0.1);
  padding: 20px 5%;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}


/* Review Container */
.review-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 5%;
}

.hasher input{
  width: 100%;
  padding: 10px;
  border-radius: 20px;
  border: var(--accent) 2px solid;
  outline: none;
  font-weight: 600;
}

.review-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 100, 0.15);
  width: 100%;
  max-width: 600px;
  overflow: hidden;
}

.review-header-card {
  background: var(--gradient);
  padding: 30px;
  text-align: center;
  color: var(--white);
}

.review-header-card h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.review-header-card p {
  opacity: 0.9;
}

.review-content {
  padding: 30px;
}

.review-section {
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--light-blue);
}

.review-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.section-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.section-title i {
  margin-right: 10px;
  color: var(--accent-blue);
}

.detail-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.detail-row:last-child {
  margin-bottom: 0;
}

.detail-label {
  color: var(--text-light);
  font-weight: 500;
}

.detail-value {
  font-weight: 600;
  color: var(--text-dark);
  text-align: right;
}

.crypto-value {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.crypto-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  font-size: 0.9rem;
}

.bitcoin {
  background: #FFEBC8;
  color: #F7931A;
}

.wallet-address {
  background: var(--light-blue);
  padding: 15px;
  border-radius: 10px;
  margin-top: 15px;
  font-family: monospace;
  word-break: break-all;
}

.fee-notice {
  background: rgba(255, 170, 0, 0.1);
  border-left: 4px solid var(--warning-orange);
  padding: 15px;
  border-radius: 8px;
  margin-top: 20px;
  font-size: 0.9rem;
}

.fee-notice i {
  color: var(--warning-orange);
  margin-right: 8px;
}

.action-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.confirm-button {
  flex: 1;
  padding: 16px;
  background: var(--gradient);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
}

.confirm-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 102, 255, 0.4);
}

.cancel-button {
  flex: 1;
  padding: 16px;
  background: var(--white);
  color: var(--error-red);
  border: 2px solid var(--error-red);
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cancel-button:hover {
  background: var(--error-red);
  color: var(--white);
}

/* Status Indicator */
.status-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  padding: 15px;
  background: rgba(0, 204, 136, 0.1);
  border-radius: 12px;
  font-weight: 600;
  color: var(--success-green);
}

.status-indicator i {
  margin-right: 10px;
}




/* PROFILE PAG3 */
.profile-header {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 100, 0.1);
  padding: 20px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}



/* Profile Container */
.profile-container {
  flex: 1;
  padding: 40px 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.profile-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 100, 0.15);
  width: 100%;
  max-width: 800px;
  overflow: hidden;
}

.profile-header-card {
  background: var(--gradient);
  padding: 30px;
  text-align: center;
  color: var(--white);
  position: relative;
}

.profile-header-card h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.profile-header-card p {
  opacity: 0.9;
}

.profile-picture {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, 0.3);
  margin: 0 auto 20px;
  overflow: hidden;
  position: relative;
}

.profile-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.change-photo {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--primary-blue);
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 2px solid white;
}

.change-photo:hover {
  background: var(--secondary-blue);
}

.options-dropdown {
  position: absolute;
  top: 30px;
  right: 30px;
}

.dropdown-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.dropdown-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  top: 60px;
  background: var(--white);
  min-width: 200px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 100, 0.15);
  overflow: hidden;
  z-index: 1;
}

.dropdown-content.show {
  display: block;
}

.dropdown-item {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background: var(--light-blue);
  color: var(--primary-blue);
}

.dropdown-item i {
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

.profile-content {
  padding: 30px;
}

.profile-section {
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--light-blue);
}

.profile-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.section-title {
  font-size: 1.3rem;
  color: var(--dark-blue);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.section-title i {
  margin-right: 10px;
  color: var(--accent-blue);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.info-item {
  background: var(--light-blue);
  padding: 20px;
  border-radius: 12px;
}

.info-label {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.info-value {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-dark);
}

.balance-value {
  color: var(--success-green);
  font-weight: 700;
}

.wallet-address {
  font-family: monospace;
  word-break: break-all;
  margin-top: 10px;
  padding: 15px;
  background: var(--white);
  border-radius: 8px;
  position: relative;
}

.copy-button {
  position: absolute;
  right: 15px;
  top: 15px;
  background: var(--primary-blue);
  color: white;
  border: none;
  border-radius: 6px;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.copy-button:hover {
  background: var(--secondary-blue);
}

.copy-button i {
  margin-right: 5px;
}

.crypto-method {
  display: flex;
  align-items: center;
  padding: 15px;
  background: var(--white);
  border-radius: 12px;
  margin-top: 10px;
}

.crypto-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-right: 15px;
}

.bitcoin {
  background: #FFEBC8;
  color: #F7931A;
}

.crypto-details {
  flex: 1;
}

.crypto-name {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 5px;
}

.crypto-amount {
  color: var(--success-green);
  font-weight: 600;
  font-size: 0.9rem;
}




/* SETTINGS PAGE */



/* Header Styles */
.settings-header {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 100, 0.1);
  padding: 20px 5%;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

/* Settings Container */
.settings-container {
  flex: 1;
  padding: 40px 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.settings-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 100, 0.15);
  width: 100%;
  max-width: 800px;
  overflow: hidden;
}

.settings-header-card {
  background: var(--gradient);
  padding: 30px;
  text-align: center;
  color: var(--white);
}

.settings-header-card h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.settings-header-card p {
  opacity: 0.9;
}

.settings-content {
  padding: 30px;
}

.settings-section {
  margin-bottom: 30px;
}

.settings-section:last-child {
  margin-bottom: 0;
}

.section-title {
  font-size: 1.3rem;
  color: var(--dark-blue);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.section-title i {
  margin-right: 10px;
  color: var(--accent-blue);
}

.settings-list {
  list-style: none;
}

.settings-item {
  display: flex;
  align-items: center;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 15px;
  background: var(--light-blue);
  transition: all 0.3s ease;
  cursor: pointer;
}

.settings-item:hover {
  background: var(--primary-blue);
  color: var(--white);
  transform: translateX(5px);
}

.settings-item:hover .item-icon {
  background: var(--white);
  color: var(--primary-blue);
}

.settings-item:hover .item-text {
  color: var(--white);
}

.settings-item:hover .item-arrow {
  color: var(--white);
}

.item-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-right: 15px;
  color: var(--primary-blue);
  transition: all 0.3s ease;
}

.item-content {
  flex: 1;
}

.item-text {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.item-description {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 5px;
  transition: all 0.3s ease;
}

.settings-item:hover .item-description {
  color: rgba(255, 255, 255, 0.8);
}

.item-arrow {
  color: var(--text-light);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.logout-section {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--light-blue);
  text-align: center;
}

.logout-button {
  padding: 16px 40px;
  background: var(--error-red);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 68, 68, 0.3);
  display: inline-flex;
  align-items: center;
}

.logout-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 68, 68, 0.4);
  background: #ff3333;
}

.logout-button i {
  margin-right: 10px;
}




/* Edit Info Page Styles */
/* Header Styles */
.edit-header {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 100, 0.1);
  padding: 20px 5%;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}




/* Edit Container */
.edit-container {
  flex: 1;
  padding: 40px 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.edit-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 100, 0.15);
  width: 100%;
  max-width: 800px;
  overflow: hidden;
}

.edit-header-card {
  background: var(--gradient);
  padding: 30px;
  text-align: center;
  color: var(--white);
}

.edit-header-card h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.edit-header-card p {
  opacity: 0.9;
}

.edit-content {
  padding: 30px;
}

.profile-picture-section {
  text-align: center;
  margin-bottom: 30px;
}

.profile-picture {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 5px solid var(--light-blue);
  margin: 0 auto 15px;
  overflow: hidden;
  position: relative;
  display: inline-block;
}

.profile-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.change-photo-btn {
  display: inline-block;
  padding: 10px 20px;
  background: var(--light-blue);
  color: var(--primary-blue);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.change-photo-btn:hover {
  background: var(--primary-blue);
  color: var(--white);
}

.change-photo-btn i {
  margin-right: 8px;
}

.form-section {
  margin-bottom: 30px;
}

.section-title {
  font-size: 1.3rem;
  color: var(--dark-blue);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.section-title i {
  margin-right: 10px;
  color: var(--accent-blue);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--dark-blue);
}

.form-control {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid var(--light-blue);
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--light-blue);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0, 170, 255, 0.2);
}

.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: '\f078';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  color: var(--primary-blue);
  pointer-events: none;
}

.form-select {
  appearance: none;
  cursor: pointer;
}



.form-text {
  display: block;
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.action-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.save-button {
  flex: 1;
  padding: 16px;
  background: var(--gradient);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
}

.save-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 102, 255, 0.4);
}

.cancel-button {
  flex: 1;
  padding: 16px;
  background: var(--white);
  color: var(--text-light);
  border: 2px solid var(--text-light);
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cancel-button:hover {
  background: var(--light-blue);
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}



/* Transaction History Page Styles */
/* Header Styles */
.history-header {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 100, 0.1);
  padding: 20px 5%;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}





/* History Container */
.history-container {
  flex: 1;
  padding: 40px 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.history-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 100, 0.15);
  width: 100%;
  max-width: 1200px;
  overflow: hidden;
}

.history-header-card {
  background: var(--gradient);
  padding: 30px;
  text-align: center;
  color: var(--white);
}

.history-header-card h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.history-header-card p {
  opacity: 0.9;
}

.history-content {
  padding: 30px;
}






.transactions-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.transactions-table th {
  background: var(--light-blue);
  padding: 15px;
  text-align: left;
  font-weight: 600;
  color: var(--dark-blue);
  border-bottom: 2px solid var(--primary-blue);
}

.transactions-table td {
  padding: 15px;
  border-bottom: 1px solid var(--light-blue);
}

.transactions-table tr:last-child td {
  border-bottom: none;
}

.transactions-table tr:hover {
  background: rgba(0, 102, 255, 0.05);
}

.transaction-type {
  display: flex;
  align-items: center;
  font-weight: 600;
}

.transaction-type i {
  margin-right: 8px;
  width: 20px;
  text-align: center;
}

.deposit i {
  color: var(--success-green);
}

.withdrawal i {
  color: var(--primary-blue);
}

.transaction-amount {
  font-weight: 600;
}

.transaction-type.deposit {
  color: var(--success-green);
}

.transaction-type.withdrawal {
  color: var(--error-red);
}

.transaction-status {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.transaction-status.completed {
  background: rgba(0, 204, 136, 0.1);
  color: var(--success-green);
}

.transaction-status.pending {
  background: rgba(255, 170, 0, 0.1);
  color: var(--warning-orange);
}

.transaction-status.declined {
  background: rgba(255, 68, 68, 0.1);
  color: var(--error-red);
}

.transaction-method {
  display: flex;
  align-items: center;
}

.method-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-size: 0.9rem;
}

.bitcoin {
  background: #FFEBC8;
  color: #F7931A;
}

.ethereum {
  background: #E8EAF6;
  color: #627EEA;
}

.bank {
  background: #E0F8EA;
  color: #26A17B;
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 10px;
}

.pagination-button {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-blue);
  color: var(--text-dark);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pagination-button:hover {
  background: var(--primary-blue);
  color: var(--white);
}

.pagination-button.active {
  background: var(--primary-blue);
  color: var(--white);
}




/* Message Page Styles */
/* Header Styles */
.message-header {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 100, 0.1);
  padding: 20px 5%;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

/* Message Container */
.message-container {
  flex: 1;
  padding: 40px 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.message-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 100, 0.15);
  width: 100%;
  max-width: 800px;
  overflow: hidden;
}

.message-header-card {
  background: var(--gradient);
  padding: 30px;
  text-align: center;
  color: var(--white);
}

.message-header-card h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.message-header-card p {
  opacity: 0.9;
}

.message-content {
  padding: 40px;
}

.message-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--light-blue);
}

.message-sender {
  display: flex;
  align-items: center;
}

.sender-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-blue);
  margin-right: 15px;
}

.sender-info h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--dark-blue);
}

.sender-info p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.message-time {
  color: var(--text-light);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}

.message-time i {
  margin-right: 8px;
}

.message-body {
  line-height: 1.8;
  margin-bottom: 40px;
}

.message-body h2 {
  color: var(--dark-blue);
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.message-body p {
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.message-body .highlight {
  background: rgba(0, 170, 255, 0.1);
  padding: 20px;
  border-radius: 12px;
  border-left: 4px solid var(--accent-blue);
  margin: 25px 0;
}

.message-regards {
  padding-top: 30px;
  border-top: 1px solid var(--light-blue);
  margin-top: 30px;
}




.message-actions {
  display: flex;
  gap: 15px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--light-blue);
}

.action-button {
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.action-button i {
  margin-right: 8px;
}

.reply-button {
  background: var(--primary-blue);
  color: var(--white);
  border: none;
}

.reply-button:hover {
  background: var(--secondary-blue);
}







/* Referrals Page Styles */




/* Header Styles */
.referrals-header {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 100, 0.1);
  padding: 20px 5%;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}



/* Referrals Container */
.referrals-container {
  flex: 1;
  padding: 40px 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.referrals-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 100, 0.15);
  width: 100%;
  max-width: 1000px;
  overflow: hidden;
}

.referrals-header-card {
  background: var(--gradient);
  padding: 30px;
  text-align: center;
  color: var(--white);
}

.referrals-header-card h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.referrals-header-card p {
  opacity: 0.9;
}

.referrals-content {
  padding: 30px;
}







.referrals-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.referrals-table th {
  background: var(--light-blue);
  padding: 15px;
  text-align: left;
  font-weight: 600;
  color: var(--dark-blue);
  border-bottom: 2px solid var(--primary-blue);
}

.referrals-table td {
  padding: 15px;
  border-bottom: 1px solid var(--light-blue);
}

.referrals-table tr:last-child td {
  border-bottom: none;
}

.referrals-table tr:hover {
  background: rgba(0, 102, 255, 0.05);
}

.user-info {
  display: flex;
  align-items: center;
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  margin-right: 12px;
  flex-shrink: 0;
}

.user-details {
  display: flex;
  flex-direction: column;
}

.user-name {
  font-weight: 600;
  margin-bottom: 3px;
}

.user-email {
  font-size: 0.85rem;
  color: var(--text-light);
}

.status-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.status-active {
  background: rgba(0, 204, 136, 0.1);
  color: var(--success-green);
}

.status-pending {
  background: rgba(255, 170, 0, 0.1);
  color: var(--warning-orange);
}

.status-inactive {
  background: rgba(255, 68, 68, 0.1);
  color: #ff4444;
}

.earnings-amount {
  font-weight: 600;
  color: var(--success-green);
}

.action-button {
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  background: var(--primary-blue);
  color: var(--white);
}

.action-button:hover {
  background: var(--secondary-blue);
}




.empty-state {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-light);
}

.empty-state i {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--light-blue);
}

.empty-state h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.referral-link-section {
  background: var(--light-blue);
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 30px;
}

.referral-link {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.link-text {
  flex: 1;
  padding: 12px 15px;
  background: var(--white);
  border-radius: 8px;
  font-family: monospace;
  word-break: break-all;
  margin-right: 10px;
}

.refcopy-button {
  padding: 12px 15px;
  background: var(--primary-blue);
  color: var(--white);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.refcopy-button:hover {
  background: var(--secondary-blue);
}



/* Update Payment Method Page Styles */

/* Header Styles */
.payment-header {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 100, 0.1);
  padding: 20px 5%;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

/* Payment Container */
.payment-container {
  flex: 1;
  padding: 40px 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.payment-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 100, 0.15);
  width: 100%;
  max-width: 600px;
  overflow: hidden;
}

.payment-header-card {
  background: var(--gradient);
  padding: 30px;
  text-align: center;
  color: var(--white);
}

.payment-header-card h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.payment-header-card p {
  opacity: 0.9;
}

.payment-content {
  padding: 30px;
}

.current-method {
  background: var(--light-blue);
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 30px;
}

.current-method h3 {
  font-size: 1.1rem;
  color: var(--dark-blue);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.current-method h3 i {
  margin-right: 10px;
  color: var(--accent-blue);
}

.method-display {
  display: flex;
  align-items: center;
  padding: 15px;
  background: var(--white);
  border-radius: 8px;
}

.method-icon-payment {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-right: 15px;
}

.bitcoin {
  background: #FFEBC8;
  color: #F7931A;
}

.method-details {
  flex: 1;
}

.method-name {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.method-address {
  font-family: monospace;
  word-break: break-all;
  font-size: 0.9rem;
  color: var(--text-light);
}

.form-section {
  margin-bottom: 30px;
}

.section-title {
  font-size: 1.3rem;
  color: var(--dark-blue);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.section-title i {
  margin-right: 10px;
  color: var(--accent-blue);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--dark-blue);
}

.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: '\f078';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  color: var(--primary-blue);
  pointer-events: none;
}

.form-select {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid var(--light-blue);
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--light-blue);
  appearance: none;
  cursor: pointer;
}

.form-select:focus {
  outline: none;
  border-color: var(--accent-blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0, 170, 255, 0.2);
}

.crypto-option {
  display: flex;
  align-items: center;
  padding: 10px 0;
}

.crypto-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-size: 1rem;
}

.crypto-name {
  font-weight: 600;
}

.address-input {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid var(--light-blue);
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--light-blue);
  font-family: monospace;
  resize: vertical;
  min-height: 100px;
}

.address-input:focus {
  outline: none;
  border-color: var(--accent-blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0, 170, 255, 0.2);
}

.form-text {
  display: block;
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.action-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.update-button {
  flex: 1;
  padding: 16px;
  background: var(--gradient);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
}

.update-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 102, 255, 0.4);
}

.cancel-button {
  flex: 1;
  padding: 16px;
  background: var(--white);
  color: var(--text-light);
  border: 2px solid var(--text-light);
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cancel-button:hover {
  background: var(--light-blue);
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

.security-notice {
  background: rgba(255, 170, 0, 0.1);
  border-left: 4px solid var(--warning-orange);
  padding: 15px;
  border-radius: 8px;
  margin-top: 20px;
  font-size: 0.9rem;
}

.security-notice i {
  color: var(--warning-orange);
  margin-right: 8px;
}







/* TERMS PAGE */

/* Header Styles */
.terms-header {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 100, 0.1);
  padding: 20px 5%;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}



/* Terms Container */
.terms-container {
  flex: 1;
  padding: 40px 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.terms-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 100, 0.15);
  width: 100%;
  max-width: 1000px;
  overflow: hidden;
}

.terms-header-card {
  background: var(--gradient);
  padding: 40px;
  text-align: center;
  color: var(--white);
}

.terms-header-card h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.terms-header-card p {
  opacity: 0.9;
  font-size: 1.1rem;
}

.last-updated {
  margin-top: 15px;
  font-size: 0.9rem;
  opacity: 0.8;
}

.terms-content {
  padding: 40px;
}

.toc-container {
  background: var(--light-blue);
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 30px;
}

.toc-title {
  font-size: 1.2rem;
  color: var(--dark-blue);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.toc-title i {
  margin-right: 10px;
  color: var(--accent-blue);
}

.toc-list {
  list-style: none;
  columns: 2;
}

.toc-item {
  margin-bottom: 10px;
}

.toc-link {
  color: var(--primary-blue);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.toc-link:hover {
  color: var(--accent-blue);
}

.toc-link i {
  margin-right: 8px;
  font-size: 0.8rem;
}

.terms-section {
  margin-bottom: 40px;
}

.section-title {
  font-size: 1.5rem;
  color: var(--dark-blue);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--light-blue);
  display: flex;
  align-items: center;
}

.section-title i {
  margin-right: 10px;
  color: var(--accent-blue);
}

.terms-text {
  line-height: 1.8;
  margin-bottom: 20px;
}

.terms-list {
  list-style-type: none;
  margin-bottom: 20px;
}

.terms-list li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

.terms-list li i {
  position: absolute;
  left: 0;
  top: 5px;
  color: var(--primary-blue);
}

.highlight-box {
  background: rgba(255, 170, 0, 0.1);
  border-left: 4px solid var(--warning-orange);
  padding: 20px;
  border-radius: 8px;
  margin: 25px 0;
}

.contact-info {
  background: var(--light-blue);
  padding: 25px;
  border-radius: 12px;
  margin-top: 30px;
}

.contact-title {
  font-size: 1.2rem;
  color: var(--dark-blue);
  margin-bottom: 15px;
}

.contact-details {
  line-height: 1.8;
}

.contact-details a {
  color: var(--primary-blue);
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

.agreement-section {
  background: rgba(0, 204, 136, 0.1);
  border-left: 4px solid var(--success-green);
  padding: 25px;
  border-radius: 8px;
  margin: 30px 0;
  text-align: center;
}


/* Print Styles */
@media print {

  .back-button,
  .toc-container {
    display: none;
  }

  body {
    background: white;
  }

  .terms-card {
    box-shadow: none;
    border-radius: 0;
  }
}




/* PRIVACY PAGE */

/* Header Styles */
.privacy-header {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 100, 0.1);
  padding: 20px 5%;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}


/* Privacy Container */
.privacy-container {
  flex: 1;
  padding: 40px 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.privacy-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 100, 0.15);
  width: 100%;
  max-width: 1000px;
  overflow: hidden;
}

.privacy-header-card {
  background: var(--gradient);
  padding: 40px;
  text-align: center;
  color: var(--white);
}

.privacy-header-card h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.privacy-header-card p {
  opacity: 0.9;
  font-size: 1.1rem;
}

.last-updated {
  margin-top: 15px;
  font-size: 0.9rem;
  opacity: 0.8;
}

.privacy-content {
  padding: 40px;
}

.toc-container {
  background: var(--light-blue);
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 30px;
}

.toc-title {
  font-size: 1.2rem;
  color: var(--dark-blue);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.toc-title i {
  margin-right: 10px;
  color: var(--accent-blue);
}

.toc-list {
  list-style: none;
  columns: 2;
}

.toc-item {
  margin-bottom: 10px;
}

.toc-link {
  color: var(--primary-blue);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.toc-link:hover {
  color: var(--accent-blue);
}

.toc-link i {
  margin-right: 8px;
  font-size: 0.8rem;
}

.policy-section {
  margin-bottom: 40px;
}

.section-title {
  font-size: 1.5rem;
  color: var(--dark-blue);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--light-blue);
  display: flex;
  align-items: center;
}

.section-title i {
  margin-right: 10px;
  color: var(--accent-blue);
}

.policy-text {
  line-height: 1.8;
  margin-bottom: 20px;
}

.policy-list {
  list-style-type: none;
  margin-bottom: 20px;
}

.policy-list li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

.policy-list li i {
  position: absolute;
  left: 0;
  top: 5px;
  color: var(--primary-blue);
}

.highlight-box {
  background: rgba(0, 170, 255, 0.1);
  border-left: 4px solid var(--accent-blue);
  padding: 20px;
  border-radius: 8px;
  margin: 25px 0;
}

.contact-info {
  background: var(--light-blue);
  padding: 25px;
  border-radius: 12px;
  margin-top: 30px;
}

.contact-title {
  font-size: 1.2rem;
  color: var(--dark-blue);
  margin-bottom: 15px;
}

.contact-details {
  line-height: 1.8;
}

.contact-details a {
  color: var(--primary-blue);
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

/* Responsive Design */




/* Print Styles */
@media print {

  .back-button,
  .toc-container {
    display: none;
  }

  body {
    background: white;
  }

  .privacy-card {
    box-shadow: none;
    border-radius: 0;
  }
}














/* Responsive Design */


@media (max-width: 1200px) {
  .cyber-globe {
    width: 400px;
    height: 400px;
    right: 5%;
  }

  .carousel-item h1 {
    font-size: 3.5rem;
  }

  nav ul li a {
    padding: 10px 15px;
  }

  .plans-container {
    grid-template-columns: repeat(2, 1fr);
  }

  /* SERVICE PAGE */
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
}

@media (max-width:1142px) {
  header {
    padding: 15px 5px;
  }
}

@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    padding: 10px;
  }

  .about-feature {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .image-container {
    max-width: 400px;
  }


  .trust-badges {
    gap: 20px;
  }

  .badge-item {
    max-width: 220px;
  }

  .statistics {
    grid-template-columns: repeat(2, 1fr);
  }


  .timeline-container {
    flex-direction: column;
    gap: 40px;
  }

  .timeline-hero {
    position: relative;
    top: 0;
  }


  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }


  .referral-content {
    flex-direction: column;
    gap: 40px;
  }

  .referral-stats {
    justify-content: center;
  }





  /* ABOUT PAGE */

  .about-mission {
    flex-direction: column;
    text-align: center;
  }

  .about-mission-stats {
    justify-content: center;
  }

  .about-mission-video {
    position: relative;
    bottom: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    margin: 40px auto 0;
  }

  .about-history-highlight {
    flex-direction: column;
    text-align: center;
  }

  .about-history-text {
    text-align: center;
  }


  /* SERVICE PAGE */

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }

  .transactions-table {
    display: block;
    overflow-x: auto;
  }

  .referrals-table {
    display: block;
    overflow-x: auto;
  }

}

@media (max-width: 1105px) {
  .everithing-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .cyber-globe {
    width: 300px;
    height: 300px;
    opacity: 0.15;
  }
}

@media (max-width: 768px) {
  .carousel-item h1 {
    font-size: 3rem;
  }

  .carousel-item p {
    font-size: 1.1rem;
  }

  .carousel-nav {
    width: 50px;
    height: 50px;
  }

  .cyber-globe {
    width: 250px;
    height: 250px;
    opacity: 0.1;
  }



  .trust-header h2 {
    font-size: 2.2rem;
  }

  .trust-badges {
    flex-direction: column;
    align-items: center;
  }

  .badge-item {
    max-width: 100%;
    width: 100%;
  }

  .statistics {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 2.8rem;
  }


  .section-header h2 {
    font-size: 2.2rem;
  }

  .step-card {
    padding-left: 70px;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }




  .features-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .card-image {
    height: 180px;
  }





  .plans-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .plan-card.popular {
    transform: scale(1);
  }

  .plan-card.popular:hover {
    transform: translateY(-10px);
  }

  .detail-label {
    font-size: 0.9rem;
  }


  .commission-badge .percent {
    font-size: 2.8rem;
  }

  .commission-highlight h3 {
    font-size: 1.8rem;
  }

  .referral-stats {
    flex-wrap: wrap;
    justify-content: space-around;
  }

  .stat {
    flex: none;
    width: 45%;
    margin-bottom: 20px;
  }

  .action-buttons {
    flex-direction: column;
  }


  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }


  .certificate-container {
    max-width: 250px;
    margin: 0 auto;
  }



  /* ABOUT PAGE */

  .about-us-header h1 {
    font-size: 2.8rem;
  }

  .about-team-header h2,
  .about-values-header h2,
  .about-history-content h2 {
    font-size: 2.2rem;
  }

  .about-mission-stats {
    flex-direction: column;
    gap: 20px;
  }

  .about-stat {
    margin-bottom: 20px;
  }

  .about-history-milestones {
    gap: 20px;
  }


  /* SERVICE PAGE */

  .services-header h1 {
    font-size: 2.8rem;
  }

  .services-cta h2 {
    font-size: 2.2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto 80px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-btn-primary,
  .cta-btn-secondary {
    width: 100%;
    max-width: 250px;
    text-align: center;
  }


  /* INVEST PAGE */

  .invest-header {
    flex-direction: column;
    padding: 15px 5%;
  }

  .header-content {
    width: 100%;
    margin-bottom: 15px;
  }

  .balance-display {
    width: 100%;
    justify-content: center;
  }

  .plans-container {
    grid-template-columns: 1fr;
  }



  /* WITHDRAW PAGE */


  .withdraw-header {
    flex-direction: column;
    padding: 15px 5%;
  }

  .header-content {
    width: 100%;
    margin-bottom: 15px;
  }

  .balance-display {
    width: 100%;
    justify-content: center;
  }



  .info-grid {
    grid-template-columns: 1fr;
  }


  /* EDIT INFO PAGE */
  .form-grid {
    grid-template-columns: 1fr;
  }

  .gender-options {
    flex-direction: column;
  }



  .message-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .message-time {
    margin-left: 75px;
    /* Align with sender info */
  }



  .stats-section {
    grid-template-columns: 1fr;
  }

  .user-info {
    flex-direction: column;
    align-items: flex-start;
  }

  .user-avatar {
    margin-right: 0;
    margin-bottom: 8px;
  }




  .toc-list {
    columns: 1;
  }

  .terms-content {
    padding: 25px;
  }

  .terms-header-card {
    padding: 30px 20px;
  }

  .terms-header-card h1 {
    font-size: 2rem;
  }


}

@media (max-width: 576px) {
  .carousel-item h1 {
    font-size: 2.5rem;
  }

  .carousel-nav {
    width: 40px;
    height: 40px;
  }

  .carousel-prev {
    left: 5px;
  }

  .carousel-next {
    right: 5px;
  }

  .everithing-nav.show {
    left: 2%;
    right: 2%;
    width: 96%;
  }

  .cyber-globe {
    width: 200px;
    height: 200px;
    opacity: 0.08;
  }





  /* about us */

  .about-section {
    padding: 80px 5px;
  }

  .about-content h2 {
    font-size: 2.2rem;
  }

  .about-subtitle {
    font-size: 1.1rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn-glow,
  .btn-border {
    width: 100%;
    justify-content: center;
  }

  .image-container {
    max-width: 99%;
  }

  .floating-element {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }



  .how-it-works {
    padding: 60px 5%;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .step-card {
    padding-left: 0;
    padding-top: 70px;
  }

  .step-number {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .timeline-progress {
    left: 50%;
    transform: translateX(-2px);
  }

  .step-content {
    padding: 20px;
  }

  .step-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .why-choose-us {
    padding: 60px 5%;
  }



  .card-content {
    padding: 20px;
  }

  .card-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    top: -25px;
  }

  .card-content h3 {
    font-size: 1.3rem;
    padding-right: 60px;
  }



  .investment-plans {
    padding: 60px 5%;
  }



  .plan-card {
    padding: 20px;
  }

  .plan-header h3 {
    font-size: 1.5rem;
  }

  .price-amount {
    font-size: 1.3rem;
  }

  .popular-badge {
    font-size: 0.7rem;
    right: -35px;
    padding: 6px 35px;
  }

  .plan-icon {
    width: 70px;
    height: 70px;
    font-size: 1.7rem;
  }

  .detail-label {
    font-size: 0.85rem;
  }

  .detail-label i {
    font-size: 0.8rem;
  }

  .referral-section {
    padding: 60px 5%;
  }

  .commission-badge {
    padding: 15px;
  }

  .commission-badge .percent {
    font-size: 2.5rem;
  }

  .feature {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .referral-stats {
    flex-direction: column;
    align-items: center;
  }

  .stat {
    width: 100%;
  }

  .referral-actions {
    padding: 20px;
  }

  .link-container {
    flex-direction: column;
    border-radius: 15px;
  }

  .link-container input {
    text-align: center;
    padding: 12px;
  }

  .copy-btn {
    padding: 12px;
  }


  .reviews {
    height: 80%;
    width: 90%;
  }

  .reviews .review {
    flex-direction: column;
  }

  .reviews .review img {
    height: 320px;
    width: 97%;

  }

  .reviews .review p {
    font-size: 13px;
  }


  .footer-wave {
    top: -70px;
  }

  .footer-wave svg {
    height: 70px;
  }

  .footer-container {
    padding: 50px 20px 20px;
  }

  .footer-legal {
    gap: 15px;
  }

  .footer-legal a {
    font-size: 0.8rem;
  }

  .certificate-image {
    max-width: 100%;
  }

  .certificate-text {
    font-size: 0.8rem;
  }





  /* ABOUT PAGE */


  .about-us-page {
    padding: 80px 5% 60px;
  }

  .about-us-header h1 {
    font-size: 2.2rem;
  }

  .about-us-header p {
    font-size: 1.1rem;
  }

  .about-team-header h2,
  .about-values-header h2,
  .about-history-content h2 {
    font-size: 1.8rem;
  }

  .about-value-card {
    padding: 30px 20px;
  }

  .about-modal-content {
    width: 95%;
  }

  .about-milestone {
    width: 120px;
  }

  .about-milestone-year {
    font-size: 2rem;
  }





  /* REGISTER PAGE */

  .register-header-card h1 {
    font-size: 1.8rem;
  }

  .register-form {
    padding: 20px;
  }

  .back-button {
    width: 45px;
    height: 45px;
  }



  /* DEPOSIT PAGE */

  .deposit-header-card h1 {
    font-size: 1.8rem;
  }

  .deposit-form {
    padding: 20px;
  }

  .back-button {
    width: 45px;
    height: 45px;
  }


  /* WITHDRAW PAGE */

  .withdrawal-content {
    padding: 20px;
  }


  .crypto-method {
    flex-direction: column;
    text-align: center;
  }

  .crypto-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .wallet-address {
    padding-right: 90px;
  }

  .copy-button {
    top: 10px;
    right: 10px;
  }


  /* rev withdraw */

  .review-header-card h1 {
    font-size: 1.8rem;
  }

  .review-content {
    padding: 20px;
  }

  .back-button {
    width: 45px;
    height: 45px;
  }

  .action-buttons {
    flex-direction: column;
  }

  .detail-row {
    flex-direction: column;
  }

  .detail-value {
    text-align: left;
    margin-top: 5px;
  }

  .crypto-value {
    justify-content: flex-start;
  }


  /* PROFILE PAGE */

  .profile-header-card h1 {
    font-size: 1.8rem;
  }

  .profile-content {
    padding: 20px;
  }

  .back-button {
    width: 45px;
    height: 45px;
  }

  .profile-picture {
    width: 100px;
    height: 100px;
  }

  .options-dropdown {
    top: 20px;
    right: 20px;
  }

  .dropdown-content {
    min-width: 180px;
  }


  /* SETTINGS PAGE */

  .settings-header-card h1 {
    font-size: 1.8rem;
  }

  .settings-content {
    padding: 20px;
  }

  .back-button {
    width: 45px;
    height: 45px;
  }

  .settings-item {
    padding: 15px;
  }

  .item-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
    margin-right: 12px;
  }

  .item-text {
    font-size: 1rem;
  }


  /* EDIT INFO */

  .edit-header-card h1 {
    font-size: 1.8rem;
  }

  .edit-content {
    padding: 20px;
  }

  .back-button {
    width: 45px;
    height: 45px;
  }

  .profile-picture {
    width: 100px;
    height: 100px;
  }

  .action-buttons {
    flex-direction: column;
  }





  .history-header-card h1 {
    font-size: 1.8rem;
  }

  .history-content {
    padding: 20px;
  }

  .back-button {
    width: 45px;
    height: 45px;
  }

  .transactions-table th,
  .transactions-table td {
    padding: 10px;
  }

  .transaction-method {
    flex-direction: column;
    align-items: flex-start;
  }

  .method-icon {
    margin-right: 0;
    margin-bottom: 5px;
  }



  .message-header-card h1 {
    font-size: 1.8rem;
  }

  .message-content {
    padding: 25px;
  }

  .back-button {
    width: 45px;
    height: 45px;
  }

  .message-actions {
    flex-direction: column;
  }

  .action-button {
    justify-content: center;
  }

  .regards-signature {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .signature-image {
    margin-right: 0;
    margin-bottom: 10px;
  }






  .referrals-header-card h1 {
    font-size: 1.8rem;
  }

  .referrals-content {
    padding: 20px;
  }

  .back-button {
    width: 45px;
    height: 45px;
  }

  .referrals-table th,
  .referrals-table td {
    padding: 10px;
  }

  .referral-link {
    flex-direction: column;
  }

  .link-text {
    margin-right: 0;
    margin-bottom: 10px;
    width: 100%;
  }

  .refcopy-button {
    width: 100%;
  }




  .payment-header-card h1 {
    font-size: 1.8rem;
  }

  .payment-content {
    padding: 20px;
  }

  .back-button {
    width: 45px;
    height: 45px;
  }

  .action-buttons {
    flex-direction: column;
  }

  .method-display {
    flex-direction: column;
    text-align: center;
  }

  .method-icon-payment {
    margin-right: 0;
    margin-bottom: 15px;
  }




  .back-button {
    width: 45px;
    height: 45px;
  }

  .terms-container {
    padding: 20px 3%;
  }


}


@media (max-width: 480px) {
  .trust-section {
    padding: 60px 5%;
  }

  .trust-header h2 {
    font-size: 1.8rem;
  }

  .trust-header p {
    font-size: 1rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }



  /* SERVICE PAGE */

  .services-page {
    padding: 80px 5% 60px;
  }

  .services-header h1 {
    font-size: 2.2rem;
  }

  .services-header p {
    font-size: 1.1rem;
  }

  .services-cta h2 {
    font-size: 1.8rem;
  }

  .services-cta p {
    font-size: 1rem;
  }

  .service-content {
    padding: 20px;
  }

  .service-title {
    font-size: 1.3rem;
  }









}