:root {
  --primary: #FF6B00;
  --primary-dark: #E65100;
  --primary-light: #FF9E40;
  --dark: #121212;
  --darker: #0A0A0A;
  --light: #F5F5F5;
  --lighter: #FFFFFF;
  --gray: #2A2A2A;
  --gray-light: #3D3D3D;

  --navbar-height: 80px;
  --navbar-height-mobile: 70px;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

}

body {
  background-color: var(--dark);
  color: var(--light);
  line-height: 1.6;
}

a {
  text-decoration: none;
}

/* LOAD CSS */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #b22d01;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3005;
}

.preloader i {
  font-size: 50px;
  color: #fff;
}

/* Header Styles */

.cta-button {
  background: linear-gradient(to right, var(--primary), var(--primary-dark));
  color: var(--lighter);
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

.cta-button-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.cta-button-outline:hover {
  background: var(--primary);
  color: var(--lighter);
}




/* 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;
}



@keyframes bounce {
  0% {transform: translateY(-30px);}
  50% {transform: translateY(30px);}
  100% {transform: translateY(-30px);}

}






header {
  position: fixed;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 107, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.back-btn {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1001;
  background: rgba(255, 107, 0, 0.8);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.back-btn:hover {
  background: var(--primary);
  transform: translateX(-5px);
}

.innerbody {
  padding-top: 80px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  height: var(--navbar-height);
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  border: var(--primary) 1px solid;
  border-radius: 20px;
  padding: 5px 10px;
}

.logo img {
  height: 40px;
  margin-right: 10px;
  transition: transform 0.3s;
}

.logo:hover img {
  transform: rotate(15deg);
}

.logo h1 {
  font-size: 1.5rem;
  background: linear-gradient(to right, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  list-style: none;
  transition: all 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.nav-links li {
  margin-left: 2rem;
  position: relative;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInDown 0.5s forwards;
}

@keyframes fadeInDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



.nav-links li:nth-child(1) {
  animation-delay: 0.1s;
}

.nav-links li:nth-child(2) {
  animation-delay: 0.2s;
}

.nav-links li:nth-child(3) {
  animation-delay: 0.3s;
}

.nav-links li:nth-child(4) {
  animation-delay: 0.4s;
}

.nav-links a {
  color: var(--light);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nav-links a::before {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--primary);
  bottom: -5px;
  left: 0;
  transition: width 0.3s;
}

.nav-links a:hover::before {
  width: 100%;
}

.nav-links a .nav-icon {
  display: none;
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.nav-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 1001;
}

/* Futuristic Hamburger Menu */
.hamburger {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 25px;
  position: relative;
  z-index: 1001;
  background: transparent;
  border: none;
}

.hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--primary);
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: all 0.3s cubic-bezier(0.65, 0, 0.35, 1);
}

.hamburger span:nth-child(1) {
  top: 0;
  transform-origin: left center;
}

.hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
  transform-origin: left center;
}

.hamburger span:nth-child(3) {
  bottom: 0;
  transform-origin: left center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: -3px;
  left: 4px;
}

.hamburger.active span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: -3px;
  left: 4px;
}

/* Mobile Styles */
@media (max-width: 992px) {
  .navbar {
    height: var(--navbar-height-mobile);
    position: relative;
    width: 100%;

  }

  .hamburger {
    display: inline;
    position: absolute;
    right: 10px;
    top: 20px;
  }

  .logo {
    position: absolute;
    left: 10px;
    top: 10px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    clip-path: circle(0px at 90% -10%);
    -webkit-clip-path: circle(0px at 90% -10%);
    pointer-events: none;
    z-index: 1000;
  }

  .nav-links.active {
    clip-path: circle(1500px at 90% -10%);
    -webkit-clip-path: circle(1500px at 90% -10%);
    pointer-events: all;
    display: flex;
  }

  .nav-links li {
    margin: 2rem 0;
    opacity: 0;
    transform: translateX(50px);
    animation: none;
  }

  .nav-links.active li {
    animation: fadeInRight 0.5s forwards;
  }

  @keyframes fadeInRight {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .nav-links li:nth-child(1) {
    animation-delay: 0.25s;
  }

  .nav-links li:nth-child(2) {
    animation-delay: 0.35s;
  }

  .nav-links li:nth-child(3) {
    animation-delay: 0.45s;
  }

  .nav-links li:nth-child(4) {
    animation-delay: 0.55s;
  }

  .nav-links a {
    font-size: 1.5rem;
    padding: 1rem;
  }

  .nav-links a .nav-icon {
    display: block;
  }

  .nav-buttons .cta-button {
    display: none;
  }

  .mobile-cta {
    display: block !important;
    margin-top: 2rem;
  }
}

.mobile-cta {
  display: none;
}

/* Scrolled Navbar */
.scrolled {
  height: var(--navbar-height-mobile);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.scrolled .navbar {
  height: var(--navbar-height-mobile);
}





/* Hero Section */
.hero {
  padding: 10rem 5% 5rem;
  display: flex;
  align-items: center;
  min-height: 100vh;
  background: radial-gradient(circle at 70% 30%, var(--gray), var(--darker));
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.1) 0%, transparent 70%);
  animation: pulse 15s infinite alternate;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.1;
  }

  100% {
    transform: scale(1.2);
    opacity: 0.2;
  }
}

.hero-content {
  flex: 1;
  z-index: 2;
}

.hero h2 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero h2 span {
  color: var(--primary);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.hero-image {
  flex: 1;
  position: relative;
  z-index: 2;
  border-radius: 20px;
}

.hero-image img {
  width: 100%;
  max-width: 600px;
  animation: bounce 10s infinite;
  border-radius: inherit;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* Stats Section */
.stats {
  padding: 5rem 5%;
  background: var(--gray);
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 200px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.8;
}







/* How It Works Section */
.how-it-works {
  padding: 5rem 5%;
  background: var(--darker);
  text-align: center;
}

.process-steps {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 100px;
  left: 50%;
  width: 80%;
  height: 3px;
  background: linear-gradient(to right, var(--primary), var(--primary-dark));
  transform: translateX(-50%);
  z-index: 1;
}

.step-card {
  background: var(--gray);
  border-radius: 15px;
  padding: 2rem;
  width: 250px;
  position: relative;
  z-index: 2;
  transition: transform 0.3s;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 107, 0, 0.2);
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255, 107, 0, 0.3);
  border-color: var(--primary);
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  color: var(--lighter);
  box-shadow: 0 5px 15px rgba(255, 107, 0, 0.4);
  border: 3px solid var(--darker);
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.step-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.step-description {
  opacity: 0.9;
  font-size: 0.95rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .process-steps {
    flex-direction: column;
    align-items: center;
  }

  .process-steps::before {
    display: none;
  }

  .step-card {
    width: 100%;
    max-width: 400px;
  }
}










/* Services Carousel */
.services {
  padding: 5rem 5%;
  text-align: center;
  background: var(--darker);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-title span {
  color: var(--primary);
}

.section-subtitle {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.services-carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

.carousel-container {
  overflow: hidden;
  position: relative;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 107, 0, 0.1);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 100%;
  padding: 2rem;
  text-align: left;
}

.service-card {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.service-icon {
  font-size: 3rem;
  color: var(--primary);
  flex-shrink: 0;
}

.service-content h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.service-content p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.carousel-nav {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
  gap: 1rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gray-light);
  cursor: pointer;
  transition: all 0.3s;
}

.carousel-dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

/* Testimonials */
.testimonials {
  padding: 5rem 5%;
  background: var(--gray);
  text-align: center;
}

.testimonials-carousel {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.testimonial-container {
  overflow: hidden;
  position: relative;
  border-radius: 15px;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  min-width: 100%;
  padding: 1rem;
}

.testimonial-card {
  background: var(--darker);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  margin: 0 auto;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 5rem;
  color: rgba(255, 107, 0, 0.1);
  font-family: serif;
  line-height: 1;
}

.testimonial-content {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
}

.author-info h4 {
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
}

.author-info p {
  opacity: 0.7;
  font-size: 0.9rem;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
  gap: 1rem;
}

/* CTA Section */
.cta-section {
  padding: 5rem 5%;
  text-align: center;
  background: linear-gradient(135deg, var(--darker), var(--gray));
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(255,107,0,0.03)" d="M0,0 L100,0 L100,100 L0,100 Z" /></svg>');
  background-size: cover;
  opacity: 0.5;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.cta-content p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* Footer */
footer {
  background: var(--darker);
  padding: 5rem 5% 2rem;
  border-top: 1px solid rgba(255, 107, 0, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-column h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.footer-column .cert{
  width: 200px;
  height: 250px;
  background: #a2a1a1;
  border-radius: 10px;
}


.footer-column .cert img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: inherit;
}


.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.8rem;
}

.footer-column ul li a {
  color: var(--light);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.footer-column ul li a:hover {
  opacity: 1;
  color: var(--primary);
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gray);
  color: var(--light);
  transition: all 0.3s;
}

.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-light);
  opacity: 0.7;
  font-size: 1.2rem;
}

.footer-bottom p a{
  color: var(--primary);
  transition: 0.3s ease;
}

.footer-bottom p a:hover{
  text-decoration: underline;
}



/* Responsive Design */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 8rem;
  }

  .hero-content {
    margin-bottom: 3rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .service-card {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 1.5rem;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-links li {
    margin: 0.5rem;
  }

  .hero h2 {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .testimonial-content {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-buttons {
    flex-direction: column;
  }

  .stat-item {
    min-width: 150px;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .testimonial-author {
    flex-direction: column;
    text-align: center;
  }
}


















.why-choose-us {
  padding: 5rem 5%;
  background: var(--darker);
  text-align: center;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 0;
}

.benefit-card {
  background: var(--gray);
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255, 107, 0, 0.2);
}

.benefit-image {
  height: 180px;
  overflow: hidden;
}

.benefit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.benefit-card:hover .benefit-image img {
  transform: scale(1.1);
}

.benefit-icon {
  position: absolute;
  top: 150px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--lighter);
  box-shadow: 0 5px 15px rgba(255, 107, 0, 0.4);
  border: 3px solid var(--darker);
  z-index: 2;
}

.benefit-content {
  padding: 3rem 1.5rem 1.5rem;
  text-align: center;
}

.benefit-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.benefit-content p {
  opacity: 0.9;
  font-size: 0.95rem;
}






/* Investment Plans Section */
.investment-plans {
  padding: 5rem 5%;
  background: var(--gray);
  text-align: center;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 0;
}

.plan-card {
  background: var(--darker);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  border: 1px solid rgba(255, 107, 0, 0.2);
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 107, 0, 0.3);
  border-color: var(--primary);
}

.plan-header {
  padding: 1rem;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), transparent);
  border-bottom: 1px solid rgba(255, 107, 0, 0.2);
}

.plan-name {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.plan-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.stat-box {
  background: rgba(0, 0, 0, 0.2);
  padding: 0.8rem;
  border-radius: 8px;
}

.stat-label {
  font-size: 0.75rem;
  opacity: 0.8;
  margin-bottom: 0.3rem;
}

.stat-value {
  font-weight: 700;
  font-size: 1.1rem;
}

.roi-badge {
  background: rgba(76, 175, 80, 0.2);
  color: #4CAF50;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  margin-top: 0.5rem;
  display: inline-block;
}

.plan-features {
  padding: 1.5rem;
  text-align: left;
}

.plan-features ul {
  list-style: none;
}

.plan-features li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.9rem;
}

.plan-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.plan-cta {
  padding: 0 1.5rem 1.5rem;
}

.popular-plan {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary);
  color: var(--lighter);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  box-shadow: 0 3px 10px rgba(255, 107, 0, 0.5);
}

@media (max-width: 768px) {
  .plans-grid {
    grid-template-columns: 1fr;
  }
}

/* Modern Referral Section */
.referral {
  padding: 5rem 5%;
  background: var(--darker);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.referral-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
  position: relative;
}

.referral-image {
  flex: 1;
  position: relative;
}

.referral-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 2px solid var(--primary);
}

.referral-content {
  flex: 1;
  text-align: left;
}

.referral h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.referral h2 span {
  color: var(--primary);
}

.referral p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.referral-steps {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.referral-step {
  flex: 1;
  background: var(--gray);
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid var(--primary);
}

.step-number {
  display: flex;
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: var(--lighter);
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 1rem;
}

.referral-cta {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.referral-code {
  background: var(--gray);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-family: monospace;
  font-size: 1.2rem;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
}

.copy-btn {
  background: var(--primary);
  color: var(--lighter);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
  margin-left: 1rem;
  transition: all 0.3s;
}

.copy-btn:hover {
  background: var(--primary-dark);
}

.social-share {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}

.social-share a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gray);
  color: var(--light);
  transition: all 0.3s;
}

.social-share a:hover {
  transform: translateY(-3px);
}

.social-share a:nth-child(1):hover {
  background: #3b5998;
}

/* Facebook */
.social-share a:nth-child(2):hover {
  background: #1da1f2;
}

/* Twitter */
.social-share a:nth-child(3):hover {
  background: #0077b5;
}

/* LinkedIn */
.social-share a:nth-child(4):hover {
  background: #25D366;
}

/* WhatsApp */

@media (max-width: 992px) {
  .referral-container {
    flex-direction: column;
    text-align: center;
  }

  .referral-content {
    text-align: center;
  }

  .referral-steps {
    flex-direction: column;
  }

  .referral-cta {
    justify-content: center;
  }
}


/* Add these new animation styles */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Stats animation */
.stat-number {
  display: inline-block;
}







/* About Page Hero Section */
.about-page-hero {
  min-height: 100vh;
  background: radial-gradient(ellipse at 75% 30%, var(--gray), var(--darker));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0 5%;
  color: var(--light);
}



.about-page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(255,107,0,0.03)" d="M0,0 L100,0 L100,100 L0,100 Z" /></svg>');
  background-size: cover;
  opacity: 0.5;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-hero-text h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  background: linear-gradient(to right, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-hero-text h1 span {
  display: block;
  font-size: 1.5rem;
  color: var(--light);
  margin-bottom: 0.5rem;
  letter-spacing: 3px;
}

.about-hero-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  opacity: 0.9;
}

.about-hero-visual {
  position: relative;
  perspective: 1000px;
}



/* 3D Cube Animation Fix */
.about-cube-container {
  width: 400px;
  height: 400px;
  position: relative;
  perspective: 1000px;
  margin: 0 auto;
}

.about-floating-cube {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  animation: cubeRotate 15s infinite linear;
  transform: rotateX(-15deg) rotateY(-15deg);
}

@keyframes cubeRotate {
  0% {
    transform: rotateX(-15deg) rotateY(0deg);
  }
  16.6% {
    transform: rotateX(-15deg) rotateY(90deg);
  }
  33.3% {
    transform: rotateX(-15deg) rotateY(180deg);
  }
  50% {
    transform: rotateX(-15deg) rotateY(270deg);
  }
  66.6% {
    transform: rotateX(75deg) rotateY(270deg);
  }
  83.3% {
    transform: rotateX(-105deg) rotateY(270deg);
  }
  100% {
    transform: rotateX(-15deg) rotateY(360deg);
  }
}

.about-cube-face {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 107, 0, 0.1);
  border: 2px solid rgba(255, 107, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
  box-sizing: border-box;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  opacity: 1 !important;
}

.about-cube-front {
  transform: translateZ(200px);
}

.about-cube-back {
  transform: rotateY(180deg) translateZ(200px);
}

.about-cube-right {
  transform: rotateY(90deg) translateZ(200px);
}

.about-cube-left {
  transform: rotateY(-90deg) translateZ(200px);
}

.about-cube-top {
  transform: rotateX(90deg) translateZ(200px);
}

.about-cube-bottom {
  transform: rotateX(-90deg) translateZ(200px);
}

/* Floating Animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}







/* Responsive adjustments */
@media (max-width: 768px) {
  .about-cube-container {
    width: 300px;
    height: 300px;
  }

  .about-cube-front {
    transform: translateZ(150px);
  }

  .about-cube-back {
    transform: rotateY(180deg) translateZ(150px);
  }

  .about-cube-right {
    transform: rotateY(90deg) translateZ(150px);
  }

  .about-cube-left {
    transform: rotateY(-90deg) translateZ(150px);
  }

  .about-cube-top {
    transform: rotateX(90deg) translateZ(150px);
  }

  .about-cube-bottom {
    transform: rotateX(-90deg) translateZ(150px);
  }
}

/* Company Timeline Section */
.company-timeline {
  padding: 5rem 5%;
  background: var(--darker);
}

.company-timeline-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.company-timeline-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary), transparent);
  transform: translateX(-50%);
}

.company-timeline-item {
  padding: 2rem;
  position: relative;
  width: 50%;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease;
}

.company-timeline-item.animated {
  opacity: 1;
  transform: translateY(0);
}

.company-timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
  padding-right: 4rem;
}

.company-timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
  padding-left: 4rem;
}

.company-timeline-date {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.company-timeline-content {
  background: var(--gray);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border-left: 4px solid var(--primary);
}

.company-timeline-item:nth-child(even) .company-timeline-content {
  border-left: none;
  border-right: 4px solid var(--primary);
}

.company-timeline-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Leadership Team Section */
.leadership-team {
  padding: 5rem 5%;
  background: var(--gray);
  text-align: center;
}

.team-members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.team-member-card {
  background: var(--darker);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.team-member-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255, 107, 0, 0.3);
}

.team-member-photo {
  height: 300px;
  overflow: hidden;
}

.team-member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.team-member-card:hover .team-member-photo img {
  transform: scale(1.05);
}

.team-member-details {
  padding: 2rem;
}

.team-member-details h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.team-member-details p {
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 600;
}

.team-member-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.team-member-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  transition: all 0.3s;
}

.team-member-social a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-hero-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .about-hero-visual {
    margin-top: 3rem;
  }

  .about-floating-cube {
    margin: 0 auto;
  }

  .company-timeline-container::before {
    left: 30px;
  }

  .company-timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 0;
    text-align: left;
  }

  .company-timeline-item:nth-child(even) {
    left: 0;
  }

  .company-timeline-item:nth-child(odd) {
    text-align: left;
    padding-right: 0;
  }
}

@media (max-width: 576px) {
  .about-hero-text h1 {
    font-size: 3rem;
  }

  .about-floating-cube {
    width: 300px;
    height: 300px;
  }

  .about-cube-front {
    transform: translateZ(150px);
  }

  .about-cube-back {
    transform: rotateY(180deg) translateZ(150px);
  }

  .about-cube-right {
    transform: rotateY(90deg) translateZ(150px);
  }

  .about-cube-left {
    transform: rotateY(-90deg) translateZ(150px);
  }

  .about-cube-top {
    transform: rotateX(90deg) translateZ(150px);
  }

  .about-cube-bottom {
    transform: rotateX(-90deg) translateZ(150px);
  }
}






/* Services Page Styles */
.services-container {
  padding: 80px 5%;
  background: var(--darker);
  max-width: 1400px;
  margin: 0 auto;
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-header h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  background: linear-gradient(to right, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.services-header p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.6;
}

/* Image Cards with Sign Up Buttons */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--gray);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255, 107, 0, 0.2);
}

.service-image {
  height: 280px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary);
  color: var(--lighter);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(255, 107, 0, 0.4);
}

.service-content {
  padding: 25px;
}

.service-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--light);
}

.service-content p {
  opacity: 0.85;
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 0.95rem;
  min-height: 60px;
}

.signup-btn {
  display: block;
  width: 100%;
  padding: 12px;
  background: var(--primary);
  color: var(--lighter);
  border: none;
  border-radius: 6px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s;
  box-shadow: 0 4px 10px rgba(255, 107, 0, 0.3);
}

.signup-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 107, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
  .services-header h1 {
    font-size: 2.2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-image {
    height: 220px;
  }
}



/* LOGIN AND REGISTER */

/* Futuristic Background Animation */
.bg-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(rgba(18, 18, 18, 0.9), rgba(18, 18, 18, 0.9)),
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M0 0h100v100H0z" fill="none"/><path d="M0 0v100M20 0v100M40 0v100M60 0v100M80 0v100M100 0v100M0 0h100M0 20h100M0 40h100M0 60h100M0 80h100M0 100h100" stroke="%233d3d3d" stroke-width="0.5"/></svg>');
  z-index: -1;
  opacity: 0.5;
}

.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0;
  animation: float 15s infinite linear;
}

@keyframes float {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }

  10% {
    opacity: 0.7;
  }

  100% {
    transform: translateY(-1000px) translateX(1000px);
    opacity: 0;
  }
}


.back-home {
  color: var(--light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.back-home:hover {
  color: var(--primary);
}

/* Main Login Container */
.login-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 5% 3rem;
  position: relative;
}

/* Futuristic Login Card */
.login-card {
  background: rgba(42, 42, 42, 0.6);
  backdrop-filter: blur(15px);
  border-radius: 16px;
  padding: 3rem;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 107, 0, 0.2);
  position: relative;
  overflow: hidden;
  z-index: 2;
  transition: transform 0.5s, box-shadow 0.5s;
}

.login-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), var(--neon-glow);
}

.login-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(to bottom right,
      transparent 0%,
      rgba(255, 107, 0, 0.1) 50%,
      transparent 100%);
  transform: rotate(30deg);
  animation: shine 6s infinite;
}

@keyframes shine {
  0% {
    transform: rotate(30deg) translate(-30%, -30%);
  }

  100% {
    transform: rotate(30deg) translate(20%, 20%);
  }
}

.login-header {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
}

.login-header h2 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(to right, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 1px;
}

.login-header p {
  opacity: 0.8;
  font-size: 0.95rem;
  max-width: 80%;
  margin: 0 auto;
}

/* Input Fields with Futuristic Style */
.input-group {
  margin-bottom: 1.8rem;
  position: relative;
}

.input-group label {
  display: block;
  margin-bottom: 0.8rem;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--light);
  letter-spacing: 0.5px;
}

.input-field {
  position: relative;
}

.input-group input {
  width: 100%;
  padding: 1.2rem 1rem 1.2rem 3rem;
  background: rgba(61, 61, 61, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--light);
  font-size: 1rem;
  transition: all 0.3s;
  letter-spacing: 0.5px;
}

.input-group input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.2);
  background: rgba(61, 61, 61, 0.5);
}

.input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s;
}

.input-group input:focus~.input-icon {
  color: var(--primary);
}

.toggle-password {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: color 0.3s;
}

.toggle-password:hover {
  color: var(--primary);
}

.terms-group {
  margin: 1.5rem 0;
}

.terms-label {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 2rem;
  cursor: pointer;
  color: var(--light);
  font-size: 0.9rem;
}

.terms-label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  position: absolute;
  left: 0;
  height: 1.2rem;
  width: 1.2rem;
  background-color: rgba(61, 61, 61, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.terms-label:hover input ~ .checkmark {
  background-color: rgba(61, 61, 61, 0.5);
}

.terms-label input:checked ~ .checkmark {
  background-color: var(--primary);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.terms-label input:checked ~ .checkmark:after {
  display: block;
}

.terms-label .checkmark:after {
  left: 0.45rem;
  top: 0.25rem;
  width: 0.25rem;
  height: 0.5rem;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.terms-link {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s;
}

.terms-link:hover {
  color: var(--primary-light);
  text-decoration: underline;
}

/* Remember Me & Forgot Password */
.login-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.remember-me input {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  background: rgba(61, 61, 61, 0.3);
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
}

.remember-me input:checked {
  background: var(--primary);
  border-color: var(--primary);
}

.remember-me input:checked::after {
  content: '✓';
  position: absolute;
  color: white;
  font-size: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.forgot-password a {
  color: var(--primary-light);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}

.forgot-password a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  background: var(--primary);
  bottom: -2px;
  left: 0;
  transition: width 0.3s;
}

.forgot-password a:hover {
  color: var(--primary);
}

.forgot-password a:hover::after {
  width: 100%;
}

/* Login Button with Hover Effect */
.login-button {
  width: 100%;
  padding: 1.2rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--lighter);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.login-button::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;
  z-index: -1;
}

.login-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
}

.login-button:hover::before {
  left: 100%;
}

/* Divider with Futuristic Style */
.divider {
  display: flex;
  align-items: center;
  margin: 2rem 0;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.divider::before {
  margin-right: 1rem;
}

.divider::after {
  margin-left: 1rem;
}

/* Social Login Buttons */
.social-login {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.social-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(61, 61, 61, 0.3);
  color: var(--light);
  font-size: 1.2rem;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border-color: var(--primary);
  color: var(--primary);
}

/* Register Link */
.register-link {
  text-align: center;
  font-size: 0.95rem;
}

.register-link a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.register-link a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  background: var(--primary);
  bottom: -2px;
  left: 0;
  transition: width 0.3s;
}

.register-link a:hover {
  color: var(--primary-light);
}

.register-link a:hover::after {
  width: 100%;
}




/* Responsive Design */
@media (max-width: 768px) {
  .login-card {
    padding: 2.5rem;
  }

  .login-header h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .login-card {
    padding: 2rem 1.5rem;
  }

  .login-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .social-login {
    flex-wrap: wrap;
  }
}








/* DEPOSIT PAGE */


/* Header Styles */

/* Main Deposit Container */
.deposit-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 5% 3rem;
}

/* Deposit Card */
.deposit-card {
  background: rgba(42, 42, 42, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 3rem;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 107, 0, 0.2);
}

.deposit-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.deposit-header h2 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(to right, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 1px;
}

.deposit-header p {
  opacity: 0.8;
  font-size: 0.95rem;
}

/* Form Elements */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 1rem;
  background: rgba(61, 61, 61, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--light);
  font-size: 1rem;
  transition: all 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.2);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
}

/* Amount Input */
.amount-field {
  position: relative;
}

.amount-field .form-control {
  padding-left: 3.5rem;
}

.currency-symbol {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-weight: 600;
  pointer-events: none;
}

/* Network Warning */
.network-warning {
  background: rgba(230, 81, 0, 0.1);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  border-left: 3px solid var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.network-warning i {
  color: var(--primary-dark);
}

/* Submit Button */
.submit-button {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(to right, var(--primary), var(--primary-dark));
  color: var(--lighter);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 1rem;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .deposit-card {
    padding: 2rem;
  }

  .deposit-header h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .deposit-card {
    padding: 1.5rem;
  }
}


/* REVDEPOSIT PAGE */




/* Deposit Card */
.deposit-card {
  background: rgba(42, 42, 42, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 3rem;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 107, 0, 0.2);
}

.deposit-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.deposit-header h2 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(to right, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 1px;
}

.deposit-header p {
  opacity: 0.8;
  font-size: 0.95rem;
}

/* Deposit Details */
.deposit-details {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(61, 61, 61, 0.3);
  border-radius: 12px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.detail-label {
  font-weight: 500;
  opacity: 0.8;
}

.detail-value {
  font-weight: 600;
  text-align: right;
}

.crypto-icon {
  font-size: 1.2rem;
  margin-right: 0.5rem;
  vertical-align: middle;
}

/* Wallet Address Section */
.wallet-section {
  margin-bottom: 2rem;
}

.wallet-section h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.wallet-section h3 i {
  color: var(--primary);
}

.wallet-address {
  display: flex;
  background: rgba(61, 61, 61, 0.3);
  border-radius: 8px;
  overflow: hidden;
}

.wallet-address input {
  flex: 1;
  padding: 1rem;
  background: transparent;
  border: none;
  color: var(--light);
  font-family: monospace;
  font-size: 0.9rem;
  cursor: pointer;
}

.wallet-address input:focus {
  outline: none;
}

.copy-btn {
  background: var(--primary);
  color: var(--lighter);
  border: none;
  padding: 0 1.2rem;
  cursor: pointer;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.copy-btn:hover {
  background: var(--primary-dark);
}

/* Deposit Instructions */
.instructions {
  background: rgba(61, 61, 61, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.instructions ol {
  padding-left: 1.2rem;
  margin-top: 0.5rem;
}

.instructions li {
  margin-bottom: 0.5rem;
}

/* Action Buttons */
.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn {
  padding: 1rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-primary {
  background: linear-gradient(to right, var(--primary), var(--primary-dark));
  color: var(--lighter);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn-secondary:hover {
  background: rgba(255, 107, 0, 0.1);
}



/* Responsive Design */
@media (max-width: 768px) {
  .deposit-card {
    padding: 2rem;
  }

  .deposit-header h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .deposit-card {
    padding: 1.5rem;
  }
}





/* INVEST PAGE */

/* Main Content */
.mr-main-content {
  padding: 8rem 5% 3rem;
}

.mr-page-header {
  text-align: center;
  margin-bottom: 3rem;
}

.mr-page-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(to right, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.mr-page-header p {
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.8;
  font-size: 1.3rem;
}

/* Investment Plans Grid */
.mr-plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.mr-plan-card {
  background: rgba(42, 42, 42, 0.7);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(255, 107, 0, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

.mr-plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  border-color: var(--primary);
}

.mr-plan-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mr-plan-name {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.mr-plan-roi {
  font-size: 1.2rem;
  font-weight: 700;
  background: linear-gradient(to right, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
 

.mr-plan-details {
  margin-bottom: 1.5rem;
}
.showbalancinvest{
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}
.mr-detail-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.8rem;
  padding-bottom: 0.8rem;
  font-size: 1.3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mr-detail-label {
  opacity: 0.8;
  font-size: 1.2rem;
}

.mr-detail-value {
  font-weight: 500;
}

.mr-investment-form {
  margin-top: 2rem;
}

.mr-form-group {
  margin-bottom: 1rem;
}

.mr-form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.mr-form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(61, 61, 61, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: var(--light);
}

.mr-form-control::placeholder{
  font-size: 1rem;
  font-weight: 600;
}

.mr-form-control:focus {
  outline: none;
  border-color: var(--primary);
}

.mr-invest-btn {
  width: 100%;
  padding: 0.8rem;
  background: linear-gradient(to right, var(--primary), var(--primary-dark));
  color: var(--lighter);
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 0.5rem;
  font-size: 18px;
  font-weight: 600;
}

.mr-invest-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .mr-nav-links {
    display: none;
  }

  .mr-page-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .mr-main-content {
    padding: 5px;
  }
}


/* PROFILE PAGE */
.main-content {
  padding: 8rem 5% 3rem;
  max-width: 1200px;
  margin: 0 auto;
}


.profile-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
}

.profile-picture-container {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.profile-picture {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--primary);
  box-shadow: 0 5px 20px rgba(255, 107, 0, 0.2);
}

.camera-icon {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: var(--primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid var(--dark);
}

.camera-icon:hover {
  background: var(--primary-dark);
  transform: scale(1.1);
}

.profile-name {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.profile-email {
  opacity: 0.8;
  margin-bottom: 1rem;
}

.account-status {
  display: inline-block;
  background: rgba(0, 200, 83, 0.2);
  color: #00C853;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Profile Sections */
.profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 768px) {
  .profile-grid {
    grid-template-columns: 1fr;
  }
}

.profile-card {
  background: rgba(42, 42, 42, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(255, 107, 0, 0.2);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-title {
  font-size: 1.3rem;
  color: var(--primary);
}

.edit-btn {
  background: transparent;
  border: none;
  color: var(--primary-light);
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.edit-btn i {
  transition: transform 0.3s;
}

.edit-btn.active i {
  transform: rotate(180deg);
}

/* Account Balance */
.balance-amount {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 1.5rem 0;
  background: linear-gradient(to right, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.balance-label {
  opacity: 0.8;
  font-size: 0.9rem;
}

/* Personal Info */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.info-item {
  margin-bottom: 1rem;
}

.info-label {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 0.3rem;
}

.info-value {
  font-weight: 500;
}

/* Edit Form (Hidden by Default) */
.edit-form {
  display: none;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.edit-form.active {
  display: block;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(61, 61, 61, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: var(--light);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 1.5rem;
}

.btn {
  padding: 0.7rem 1.5rem;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary {
  background: var(--primary);
  color: var(--lighter);
  border: none;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--light);
  border: 1px solid var(--gray-light);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* Action Buttons */
.action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 3rem;
  justify-content: center;
}

.action-btn {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 1.5rem;
  background: rgba(61, 61, 61, 0.3);
  border-radius: 8px;
  text-decoration: none;
  color: var(--light);
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.action-btn:hover {
  background: rgba(255, 107, 0, 0.1);
  border-color: var(--primary);
  color: var(--primary);
}



/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .main-content {
    padding: 6rem 5% 2rem;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }
}



/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: var(--gray);
  border-radius: 12px;
  width: 100%;
  max-width: 500px;
  padding: 2rem;
  border: 1px solid var(--primary);
  position: relative;
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  color: var(--light);
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-header {
  margin-bottom: 1.5rem;
  text-align: center;
}

.modal-header h3 {
  font-size: 1.5rem;
  color: var(--primary);
}

.upload-area {
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 1.5rem;
  cursor: pointer;
  transition: all 0.3s;
}

.upload-area:hover {
  border-color: var(--primary);
  background: rgba(255, 107, 0, 0.05);
}

.upload-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.upload-text {
  margin-bottom: 1rem;
}

.file-input {
  display: none;
}

.preview-image {
  max-width: 200px;
  max-height: 200px;
  border-radius: 8px;
  margin: 1rem auto;
  display: none;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}







/* VERIFICATION PAGE */

/* Main Content */
.main-content {
  padding: 8rem 5% 3rem;
  max-width: 800px;
  margin: 0 auto;
}

.page-header {
  text-align: center;
  margin-bottom: 3rem;
}

.page-header h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  background: linear-gradient(to right, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-header p {
  opacity: 0.8;
}

/* Verification Form */
.verification-form {
  background: rgba(42, 42, 42, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 107, 0, 0.2);
}

.form-section {
  margin-bottom: 2rem;
}

.section-title {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(61, 61, 61, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: var(--light);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
}

/* Document Upload */
.document-upload {
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.upload-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.upload-text {
  margin-bottom: 1rem;
}

.file-input-label {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: var(--primary);
  color: var(--lighter);
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.file-input-label:hover {
  background: var(--primary-dark);
}

.file-input {
  display: none;
}

.file-name {
  margin-top: 1rem;
  font-size: 0.9rem;
  opacity: 0.8;
  display: none;
}

/* Terms Checkbox */
.terms-group {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin: 2rem 0;
}

.terms-checkbox {
  margin-top: 0.2rem;
  accent-color: var(--primary);
}

.terms-text {
  font-size: 0.9rem;
}

.terms-text a {
  color: var(--primary);
  text-decoration: none;
}

/* Submit Button */
.submit-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(to right, var(--primary), var(--primary-dark));
  color: var(--lighter);
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

/* Verification Steps */
.verification-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
  position: relative;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gray-light);
  color: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.step.active .step-number {
  background: var(--primary);
  color: var(--lighter);
}

.step-label {
  font-size: 0.9rem;
  opacity: 0.8;
  text-align: center;
}

.step.active .step-label {
  opacity: 1;
  color: var(--primary);
}

.progress-line {
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gray-light);
  z-index: 1;
}

.progress-line-fill {
  height: 100%;
  background: var(--primary);
  width: 50%;
  transition: width 0.3s;
}



/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .main-content {
    padding: 6rem 5% 2rem;
  }
}




/* TRANSACTION PAGE */

.txcontainer {
  width: 100%;
  padding: 0 10px;
}

.tbghsg {
  height: 100vh;
  width: 100%;
  overflow: auto;
}

.page-title {
  font-size: 1.8rem;
  color: #2c3e50;
}

.transaction-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.filter-controls {
  display: flex;
  gap: 15px;
}

.filter-select,
.date-range {
  padding: 10px 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background-color: white;
  font-size: 0.9rem;
}

.transaction-table {
  width: 100%;
  border-collapse: collapse;
  background-color: rgb(140, 140, 140);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.transaction-table thead {
  background-color: var(--primary-dark);
  color: white;
}

.transaction-table th {
  padding: 15px;
  text-align: left;
  font-weight: 500;
}

.transaction-table td {
  padding: 15px;
  border: 1px solid #f0f0f0;
}

.transaction-table tbody tr:last-child td {
  border-bottom: none;
}

.transaction-table tbody tr:hover {
  background-color: #494949;
}

.amount {
  font-weight: 600;
}

.amount.positive {
  color: #2ecc71;
}

.amount.negative {
  color: #e74c3c;
}

.status {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.status.completed {
  background-color: #e8f8f0;
  color: #2ecc71;
}

.status.pending {
  background-color: #fff4e6;
  color: #f39c12;
}

.status.declined {
  background-color: #fdecea;
  color: #e74c3c;
}

.transaction-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  color: white;
}

.transaction-details {
  display: flex;
  align-items: center;
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 10px;
}

.pagination button {
  padding: 8px 15px;
  border: 1px solid #ddd;
  background-color: white;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s;
}

.pagination button.active {
  background-color: #4a6bff;
  color: white;
  border-color: #4a6bff;
}

.pagination button:hover:not(.active) {
  background-color: #f0f0f0;
}

@media (max-width: 768px) {
  .transaction-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .filter-controls {
    width: 100%;
    flex-wrap: wrap;
  }

  .transaction-table {
    display: block;
    overflow-x: auto;
  }

  .transaction-table th,
  .transaction-table td {
    white-space: nowrap;
  }
}



/* PRIVACY POLICY */
/* Privacy Policy Content */
.privacy-content {
  background: rgba(42, 42, 42, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 107, 0, 0.2);
}

.policy-section {
  margin-bottom: 2.5rem;
}

.policy-section h3 {
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.policy-section p {
  margin-bottom: 1rem;
  opacity: 0.9;
}

.policy-section ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.policy-section li {
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.last-updated {
  text-align: center;
  margin-top: 3rem;
  font-style: italic;
  opacity: 0.7;
}


/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .main-content {
    padding: 6rem 5% 2rem;
  }
}


/* TERMS PAGE */

/* Terms Content */
.terms-content {
  background: rgba(42, 42, 42, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 107, 0, 0.2);
}

.terms-section {
  margin-bottom: 2.5rem;
}

.terms-section h3 {
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.terms-section p {
  margin-bottom: 1rem;
  opacity: 0.9;
}

.terms-section ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.terms-section li {
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.highlight-box {
  background: rgba(255, 107, 0, 0.1);
  border-left: 4px solid var(--primary);
  padding: 1rem;
  margin: 1.5rem 0;
  border-radius: 0 4px 4px 0;
}

.last-updated {
  text-align: center;
  margin-top: 3rem;
  font-style: italic;
  opacity: 0.7;
}



/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .main-content {
    padding: 6rem 5% 2rem;
  }
}



/* NOTIFICATION */
/* Message Container */
.message-container {
  background: rgba(42, 42, 42, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 107, 0, 0.2);
}

.message-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.message-title {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.message-meta {
  display: flex;
  gap: 1.5rem;
  opacity: 0.8;
  font-size: 0.9rem;
}

.message-body {
  margin-bottom: 2rem;
}

.message-body p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.message-signature {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.signature-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.signature-logo img {
  height: 30px;
}

.signature-logo span {
  font-size: 1.2rem;
  font-weight: 600;
  background: linear-gradient(to right, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.signature-text {
  opacity: 0.8;
  font-size: 0.9rem;
}



/* Responsive Design */
@media (max-width: 768px) {
  .main-content {
    padding: 6rem 5% 2rem;
  }

  .message-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
}




/* SETTINGS PAGE */


/* Settings Options */
.settings-options {
  background: rgba(42, 42, 42, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 107, 0, 0.2);
  overflow: hidden;
}

.settings-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  text-decoration: none;
  color: var(--light);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.3s;
}

.settings-link:last-child {
  border-bottom: none;
}

.settings-link:hover {
  background: rgba(255, 107, 0, 0.1);
}

.link-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.link-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 107, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.link-text h3 {
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.link-text p {
  font-size: 0.9rem;
  opacity: 0.7;
}

.link-arrow {
  color: rgba(255, 255, 255, 0.5);
}


/* Responsive Design */
@media (max-width: 768px) {
  .main-content {
    padding: 6rem 5% 2rem;
  }
}