:root {
  --primary-bg: #0a1128;
  --secondary-bg: #1a2342;
  --accent-primary: #00ffea;
  --accent-secondary: #7000ff;
  --accent-tertiary: #ff3864;
  --text-primary: #ffffff;
  --text-secondary: #b8b8b8;
  --gradient-primary: linear-gradient(135deg,
      var(--accent-primary),
      var(--accent-secondary));
  --gradient-secondary: linear-gradient(45deg,
      var(--accent-secondary),
      var(--accent-tertiary));
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

body {
  background: var(--primary-bg);
  color: var(--text-primary);
  min-height: 100vh;
}

/* Brand Section Styles */
.brand-container {
  background: var(--secondary-bg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  width: 100%;
  z-index: 999;
}

.brand-container::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: var(--gradient-primary);
  opacity: 0.1;
  animation: rotate 20s linear infinite;
}

.btn-home {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.logo-animation {
  position: relative;
  width: 120px;
  height: 120px;
}

.logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 15px var(--accent-primary));
  animation: floatLogo 3s ease-in-out infinite;
}

.company-name {
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(0, 255, 234, 0.3);
}

.slogan {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

/* Navbar Styles */
.navbar {
  background: rgba(10, 17, 40, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 255, 234, 0.1);
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-primary);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-link i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.nav-link:hover {
  color: var(--accent-primary);
  background: rgba(0, 255, 234, 0.1);
}

.nav-link:hover i {
  transform: translateY(-2px);
}

.nav-link.active {
  color: var(--accent-primary);
  background: rgba(0, 255, 234, 0.1);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 3px;
}

/* Auth Buttons */
.auth-buttons {
  display: flex;
  gap: 1rem;
  margin-left: 2rem;
}

.btn {
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn2 {

  margin: 2rem;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 800;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.register-btn2 {
  background: linear-gradient(#0fffbf, #2b8ac6);
  color: var(--primary-bg);
}

.register-btn {
  background: var(--gradient-primary);
  color: var(--primary-bg);
}

.login-btn2 {
  border: 2px solid var(--accent-primary);
  color: var(--accent-primary);
}


.login-btn {
  border: 2px solid var(--accent-primary);
  color: var(--accent-primary);
}

.btn2:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 255, 234, 0.3);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 255, 234, 0.3);
}

/* Mobile Menu */
.mobile-header {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;

}

.mobile-logo img {
  width: 160px;
  height: 50px;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: var(--accent-primary);
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* Animations */
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes floatLogo {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Responsive Design */
@media screen and (max-width: 968px) {
  .logo-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .company-name {
    font-size: 2.5rem;
  }

  .mobile-header {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--secondary-bg);
    padding: 2rem;
    gap: 1.5rem;
  }

  .nav-links.active {
    display: flex;
    animation: slideDown 0.3s ease forwards;
  }

  .auth-buttons {
    flex-direction: column;
    margin: 1rem 0 0 0;
    width: 100%;
  }

  .btn {
    text-align: center;

  }

  .btn2 {
    text-align: center;
    font-size: 2.4rem !important;
    font-weight: 600 !important;
  }

  .login-btn2 {
    border: 2px solid var(--accent-primary);
    width: 15rem;
    color: var(--accent-primary);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* section for cryptototot  */

/* ... existing code ... */

/* Crypto Section Styles */
.crypto-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-bg), var(--secondary-bg));
  position: relative;
  overflow: hidden;
}

.crypto-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("assets/images/crypto-bg-pattern.png");
  opacity: 0.05;
  animation: backgroundFloat 20s linear infinite;
}

.crypto-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(45deg,
      var(--accent-primary),
      var(--accent-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.crypto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.crypto-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.crypto-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border-color: var(--accent-primary);
}

.crypto-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--accent-primary);
  text-align: center;
}

.crypto-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.crypto-card p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.crypto-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.stat {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--accent-primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.invest-btn {
  display: block;
  width: 100%;
  padding: 1rem;
  text-align: center;
  background: linear-gradient(45deg,
      var(--accent-primary),
      var(--accent-secondary));
  color: var(--primary-bg);
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.invest-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 255, 234, 0.3);
}

/* Market Ticker Styles */
.market-ticker {
  width: 100%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 1rem 0;
}

.ticker-container {
  display: flex;
  animation: ticker 20s linear infinite;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 2rem;
  min-width: 200px;
}

.ticker-item img {
  width: 24px;
  height: 24px;
}

.coin-name {
  font-weight: bold;
  color: var(--text-primary);
}

.coin-price {
  color: var(--text-secondary);
}

.coin-change {
  font-weight: bold;
}

.coin-change.positive {
  color: #00ff88;
}

.coin-change.negative {
  color: #ff3864;
}

/* Animations */
@keyframes backgroundFloat {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(-50%, -50%);
  }
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Responsive Design */
@media screen and (max-width: 968px) {
  .section-title {
    margin-bottom: 3rem !important;
    font-size: 2.5rem !important;
    margin-top: 3.5rem !important;
  }

  .crypto-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .crypto-card {
    padding: 1.5rem;
  }
}

@media screen and (max-width: 480px) {
  .section-title {
    margin-bottom: 3rem !important;
    font-size: 2.5rem !important;
    margin-top: 3.5rem !important;
    font-size: 2rem;
  }

  .crypto-stats {
    grid-template-columns: 1fr;
  }

  .ticker-item {
    min-width: 150px;
    padding: 0 1rem;
  }
}

/* ANOTHER SECTION */
/* Market Overview Section Styles */
.market-overview {
  padding: 5rem 0;
  background: linear-gradient(135deg, #0a1128 0%, #1a2342 100%);
  position: relative;
  overflow: hidden;
}

.market-overview::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%,
      rgba(0, 255, 234, 0.05) 0%,
      transparent 70%);
  /* animation: pulse 4s ease-in-out infinite; */
}

.market-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.market-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(45deg, #00ffea, #7000ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.section-description {
  color: #b8b8b8;
  font-size: 1.2rem;
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.market-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.market-card:hover {
  transform: translateY(-5px);
  border-color: #00ffea;
  box-shadow: 0 10px 30px rgba(0, 255, 234, 0.1);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.card-header h3 {
  color: #ffffff;
  font-size: 1.5rem;
}

.refresh-btn {
  cursor: pointer;
  color: #00ffea;
  transition: transform 0.3s ease;
}

.refresh-btn:hover {
  transform: rotate(180deg);
}

.crypto-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.crypto-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.crypto-item:hover {
  background: rgba(255, 255, 255, 0.08);
}

.crypto-item img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.crypto-info {
  flex: 1;
}

.crypto-info h4 {
  color: #ffffff;
  margin-bottom: 0.2rem;
}

.crypto-symbol {
  color: #b8b8b8;
  font-size: 0.9rem;
}

.price-info {
  text-align: right;
}

.price {
  display: block;
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 0.2rem;
}

.change {
  font-size: 0.9rem;
  font-weight: bold;
}

.change.positive {
  color: #00ff88;
}

.change.negative {
  color: #ff3864;
}

/* Stats Card Styles */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.stat-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.stat-box:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}

.stat-box i {
  font-size: 2rem;
  color: #00ffea;
}

.stat-content {
  display: flex;
  flex-direction: column;
}

.stat-value {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.2rem;
}

.stat-label {
  color: #b8b8b8;
  font-size: 0.9rem;
}

/* Animations */
@keyframes pulse {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

/* Responsive Design */
@media screen and (max-width: 968px) {
  .section-title {
    font-size: 2rem;
  }

  .market-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .crypto-item {
    flex-direction: column;
    text-align: center;
  }

  .price-info {
    text-align: center;
  }

  .stat-box {
    flex-direction: column;
    text-align: center;
  }
}

/* ANOTHER SECTION */
/* Why Choose Us Section Styles */
.why-choose-us {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0a1128 0%, #1a2342 100%);
  position: relative;
  overflow: hidden;
}

.why-choose-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%,
      rgba(0, 255, 234, 0.05) 0%,
      transparent 70%);
  animation: gradientPulse 4s ease-in-out infinite;
}

.choose-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.gradient-heading {
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(45deg, #00ffea, #7000ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.section-subtext {
  color: #b8b8b8;
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

.features-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: #00ffea;
}

.feature-card:hover .hover-effect {
  transform: scale(1.5);
  opacity: 1;
}

.hover-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle,
      rgba(0, 255, 234, 0.1) 0%,
      transparent 70%);
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: all 0.5s ease;
  pointer-events: none;
}

.feature-icon {
  font-size: 2.5rem;
  color: #00ffea;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.feature-content h3 {
  color: #ffffff;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.feature-content p {
  color: #b8b8b8;
  font-size: 1rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-counter {
  text-align: center;
  padding: 1.5rem;
  position: relative;
}

.stat-counter::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.stat-counter:last-child::after {
  display: none;
}

.counter-value {
  font-size: 2.2rem;
  font-weight: bold;
  color: #00ffea;
  margin-bottom: 0.5rem;
}

.counter-label {
  color: #b8b8b8;
  font-size: 1rem;
}

@keyframes gradientPulse {

  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

/* Responsive Design */
@media screen and (max-width: 968px) {
  .gradient-heading {
    font-size: 2.2rem;
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-counter::after {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .gradient-heading {
    font-size: 1.8rem;
  }

  .stats-container {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 1.5rem;
  }
}

/* Another section===== */
/* About Company Section Styles */
.about-company {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0a1128 0%, #1a2342 100%);
  position: relative;
  overflow: hidden;
}

.about-company::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%,
      rgba(0, 255, 234, 0.05) 0%,
      transparent 70%);
  /* animation: pulse 4s ease-in-out infinite; */
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-title {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(45deg, #00ffea, #7000ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.title-underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(45deg, #00ffea, #7000ff);
  margin-bottom: 2rem;
  border-radius: 2px;
}

.about-description {
  color: #b8b8b8;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.company-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.highlight-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.highlight-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
}

.highlight-item i {
  font-size: 2rem;
  color: #00ffea;
  margin-bottom: 1rem;
}

.highlight-item h3 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.highlight-item p {
  color: #b8b8b8;
  font-size: 0.9rem;
}

.about-image-container {
  position: relative;
  padding: 2rem;
}

.image-wrapper {
  position: relative;
  z-index: 1;
}

.image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 1rem 1.5rem;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  animation: float 3s ease-in-out infinite;
}

.floating-card i {
  font-size: 1.5rem;
  color: #00ffea;
}

.floating-card span {
  color: #ffffff;
  font-weight: 600;
}

.card-1 {
  top: 20%;
  left: -10%;
  animation-delay: 0s;
}

.card-2 {
  bottom: 20%;
  right: -10%;
  animation-delay: 1.5s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* Responsive Design */
@media screen and (max-width: 968px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image-container {
    order: -1;
  }

  .company-highlights {
    grid-template-columns: repeat(2, 1fr);
  }

  .floating-card {
    position: static;
    margin: 1rem 0;
    animation: none;
  }
}

@media screen and (max-width: 480px) {
  .about-title {
    font-size: 2rem;
  }

  .company-highlights {
    grid-template-columns: 1fr;
  }

  .about-description {
    font-size: 1rem;
  }
}

/* ANOTHER SECTION */
/* Services Section Styles */
.services-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0a1128 0%, #1a2342 100%);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 20%,
      rgba(0, 255, 234, 0.05) 0%,
      transparent 50%),
    radial-gradient(circle at 80% 80%,
      rgba(112, 0, 255, 0.05) 0%,
      transparent 50%);
  animation: backgroundPulse 8s ease-in-out infinite;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.services-header {
  text-align: center;
  margin-bottom: 4rem;
}

.header-content {
  display: inline-block;
  position: relative;
}

.services-title {
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(45deg, #00ffea, #7000ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.title-accent {
  width: 100px;
  height: 4px;
  background: linear-gradient(45deg, #00ffea, #7000ff);
  margin: 0 auto 1.5rem;
  border-radius: 2px;
}

.services-subtitle {
  color: #b8b8b8;
  font-size: 1.2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.service-card {
  perspective: 1000px;
  height: 400px;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  cursor: pointer;
}

.service-card:hover .card-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 20px;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-front {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.card-back {
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-icon {
  font-size: 3rem;
  color: #00ffea;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: #b8b8b8;
  font-size: 1rem;
  line-height: 1.6;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.feature-list li {
  color: #ffffff;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.feature-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #00ffea;
}

.learn-more {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: linear-gradient(45deg, #00ffea, #7000ff);
  color: #ffffff;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
}

.learn-more:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 255, 234, 0.3);
}

.services-footer {
  margin-top: 4rem;
}

.achievement-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.achievement-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.achievement-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
}

.achievement-icon {
  font-size: 2.5rem;
  color: #00ffea;
}

.achievement-content h4 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.achievement-content p {
  color: #b8b8b8;
  font-size: 0.9rem;
}

@keyframes backgroundPulse {

  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

/* Responsive Design */
@media screen and (max-width: 968px) {
  .services-title {
    font-size: 2.2rem;
  }

  .achievement-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    height: 350px;
  }
}

@media screen and (max-width: 480px) {
  .services-title {
    font-size: 1.8rem;
  }

  .service-card {
    height: 300px;
  }

  .achievement-item {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
}

/* INVESTMENT PLAN SECTION */
/* Investment Plans Section Styles */
.investment-plans {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0a1128 0%, #1a2342 100%);
  position: relative;
  overflow: hidden;
}

.investment-plans::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 20%,
      rgba(0, 255, 234, 0.05) 0%,
      transparent 50%),
    radial-gradient(circle at 80% 80%,
      rgba(112, 0, 255, 0.05) 0%,
      transparent 50%);
  animation: plansPulse 8s ease-in-out infinite;
}

.plans-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.gradient-title {
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(45deg, #00ffea, #7000ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: #b8b8b8;
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 4rem;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.plan-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.plan-card:hover {
  transform: translateY(-10px);
  border-color: #00ffea;
  box-shadow: 0 20px 40px rgba(0, 255, 234, 0.1);
}

.plan-card.featured {
  background: linear-gradient(135deg,
      rgba(0, 255, 234, 0.1),
      rgba(112, 0, 255, 0.1));
  border-color: #00ffea;
}

.plan-card.premium {
  background: linear-gradient(135deg,
      rgba(112, 0, 255, 0.1),
      rgba(0, 255, 234, 0.1));
  border-color: #7000ff;
}

.plan-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(45deg, #00ffea, #7000ff);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
}

.plan-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-header h3 {
  color: #ffffff;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.plan-price {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.percentage {
  font-size: 2.5rem;
  font-weight: 800;
  color: #00ffea;
  margin-bottom: 0.5rem;
}

.duration {
  color: #b8b8b8;
  font-size: 1rem;
}

.plan-features {
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.feature-item i {
  color: #00ffea;
  font-size: 1.2rem;
}

.feature-item strong {
  color: #00ffea;
  margin-left: 0.5rem;
}

.plan-calculator {
  background: rgba(255, 255, 255, 0.03);
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.calc-input {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #ffffff;
  margin-bottom: 1rem;
}

.calc-result {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #b8b8b8;
}

.calc-result strong {
  color: #00ffea;
  font-size: 1.2rem;
}

.invest-button {
  display: block;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(45deg, #00ffea, #7000ff);
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.invest-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 255, 234, 0.3);
}

@keyframes plansPulse {

  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

/* Responsive Design */
@media screen and (max-width: 968px) {
  .gradient-title {
    font-size: 2.2rem;
  }

  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .plans-grid {
    grid-template-columns: 1fr;
  }

  .plan-card {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 480px) {
  .gradient-title {
    font-size: 1.8rem;
  }

  .plan-header h3 {
    font-size: 1.5rem;
  }

  .percentage {
    font-size: 2rem;
  }
}

/* TESTIMONIES */

/* Testimonials Section Styles */
.testimonials-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0a1128 0%, #1a2342 100%);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 30%,
      rgba(0, 255, 234, 0.05) 0%,
      transparent 50%),
    radial-gradient(circle at 70% 70%,
      rgba(112, 0, 255, 0.05) 0%,
      transparent 50%);
  animation: testimonialsPulse 8s ease-in-out infinite;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.gradient-heading {
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(45deg, #00ffea, #7000ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtext {
  color: #b8b8b8;
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.testimonial-card.featured {
  grid-row: span 2;
  background: linear-gradient(135deg,
      rgba(0, 255, 234, 0.1),
      rgba(112, 0, 255, 0.1));
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: #00ffea;
  box-shadow: 0 20px 40px rgba(0, 255, 234, 0.1);
}

.quote-icon {
  color: #00ffea;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.testimonial-text {
  color: #ffffff;
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #00ffea;
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.author-info span {
  color: #b8b8b8;
  font-size: 0.9rem;
}

.rating {
  margin-top: 0.5rem;
  color: #00ffea;
}

.success-stories {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.story-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.story-card:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(5px);
}

.story-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 1rem;
}

.stat {
  text-align: center;
}

.stat .value {
  color: #00ffea;
  font-size: 1.5rem;
  font-weight: bold;
  display: block;
}

.stat .label {
  color: #b8b8b8;
  font-size: 0.9rem;
}

.story-card p {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.trader-name {
  color: #b8b8b8;
  font-style: italic;
}

.trust-indicators {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.trust-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.trust-card:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
}

.trust-card i {
  font-size: 2rem;
  color: #00ffea;
  margin-bottom: 1rem;
}

.trust-card h4 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.trust-card p {
  color: #b8b8b8;
  font-size: 0.9rem;
}

.community-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  text-align: center;
}

.stat-item {
  padding: 1rem;
}

.stat-number {
  display: block;
  color: #00ffea;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #b8b8b8;
  font-size: 1rem;
}

@keyframes testimonialsPulse {

  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

/* Responsive Design */
@media screen and (max-width: 968px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card.featured {
    grid-row: auto;
  }

  .trust-indicators {
    grid-template-columns: repeat(2, 1fr);
  }

  .community-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 480px) {
  .gradient-heading {
    font-size: 2rem;
  }

  .trust-indicators {
    grid-template-columns: 1fr;
  }

  .community-stats {
    grid-template-columns: 1fr;
  }

  .testimonial-text {
    font-size: 1rem;
  }
}

/* CERTIFIACTION SECTION */
/* Certification Section Styles */
/* Unique Certification Section Styles */
.certifications_unique_wrapper {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0a1128 0%, #1a2342 100%);
  position: relative;
  overflow: hidden;
}

.certifications_unique_wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 20%,
      rgba(0, 255, 234, 0.05) 0%,
      transparent 50%),
    radial-gradient(circle at 80% 80%,
      rgba(112, 0, 255, 0.05) 0%,
      transparent 50%);
  animation: certifications_unique_pulse 8s ease-in-out infinite;
}

.certifications_unique_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.certifications_unique_header {
  text-align: center;
  margin-bottom: 4rem;
}

.certifications_unique_title {
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(45deg, #00ffea, #7000ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.certifications_unique_title_line {
  width: 80px;
  height: 4px;
  background: linear-gradient(45deg, #00ffea, #7000ff);
  margin: 0 auto 1.5rem;
  border-radius: 2px;
}

.certifications_unique_subtitle {
  color: #b8b8b8;
  font-size: 1.2rem;
}

.certifications_unique_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.certifications_unique_card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}

.certifications_unique_card:hover {
  transform: translateY(-10px);
  border-color: #00ffea;
  box-shadow: 0 20px 40px rgba(0, 255, 234, 0.1);
}

.certifications_unique_card_featured {
  background: linear-gradient(135deg,
      rgba(0, 255, 234, 0.1),
      rgba(112, 0, 255, 0.1));
  border-color: #00ffea;
}

.certifications_unique_card_inner {
  padding: 2rem;
}

.certifications_unique_icon {
  font-size: 2.5rem;
  color: #00ffea;
  margin-bottom: 1.5rem;
}

.certifications_unique_content h3 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.certifications_unique_content p {
  color: #b8b8b8;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.certifications_unique_list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.certifications_unique_list li {
  color: #ffffff;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.certifications_unique_list li i {
  color: #00ffea;
}

.certifications_unique_badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 255, 234, 0.1);
  border-radius: 20px;
  color: #00ffea;
  font-size: 0.9rem;
}

@keyframes certifications_unique_pulse {

  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

/* Responsive Design */
@media screen and (max-width: 968px) {
  .certifications_unique_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .certifications_unique_grid {
    grid-template-columns: 1fr;
  }

  .certifications_unique_title {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 480px) {
  .certifications_unique_title {
    font-size: 1.8rem;
  }

  .certifications_unique_card_inner {
    padding: 1.5rem;
  }
}

/* ANOTHER BEAUTIFUL SECTION */
/* Team Showcase Section Styles */
.team_showcase_zx97_wrapper {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0a1128 0%, #1a2342 100%);
  position: relative;
  overflow: hidden;
}

.team_showcase_zx97_wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 20%,
      rgba(0, 255, 234, 0.05) 0%,
      transparent 50%),
    radial-gradient(circle at 80% 80%,
      rgba(112, 0, 255, 0.05) 0%,
      transparent 50%);
  animation: team_pulse_zx97 8s ease-in-out infinite;
}

.team_showcase_zx97_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.team_showcase_zx97_header {
  text-align: center;
  margin-bottom: 4rem;
}

.team_showcase_zx97_title {
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(45deg, #00ffea, #7000ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.team_showcase_zx97_title_line {
  width: 80px;
  height: 4px;
  background: linear-gradient(45deg, #00ffea, #7000ff);
  margin: 0 auto 1.5rem;
  border-radius: 2px;
}

.team_showcase_zx97_subtitle {
  color: #b8b8b8;
  font-size: 1.2rem;
}

.team_showcase_zx97_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.team_member_wy84_card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.team_member_wy84_card:hover {
  transform: translateY(-10px);
  border-color: #00ffea;
  box-shadow: 0 20px 40px rgba(0, 255, 234, 0.1);
}

.team_member_wy84_card.featured {
  background: linear-gradient(135deg,
      rgba(0, 255, 234, 0.1),
      rgba(112, 0, 255, 0.1));
  border-color: #00ffea;
}

.member_image_wy84_wrapper {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.member_image_wy84_wrapper img {
  width: 100%;
  height: 100%;
  object-position: top;

  object-fit: cover;
  transition: all 0.3s ease;
}

.member_social_wy84_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  transition: all 0.3s ease;
}

.member_image_wy84_wrapper:hover .member_social_wy84_overlay {
  opacity: 1;
}

.social_link_wy84 {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social_link_wy84:hover {
  background: #00ffea;
  transform: translateY(-3px);
}

.member_info_wy84_content {
  padding: 2rem;
}

.member_info_wy84_content h3 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.member_role_wy84 {
  color: #00ffea;
  font-size: 1rem;
  display: block;
  margin-bottom: 1rem;
}

.member_bio_wy84 {
  color: #b8b8b8;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.member_stats_wy84 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.stat_item_wy84 {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
}

.stat_value_wy84 {
  color: #00ffea;
  font-size: 1.2rem;
  font-weight: 600;
  display: block;
  margin-bottom: 0.3rem;
}

.stat_label_wy84 {
  color: #b8b8b8;
  font-size: 0.8rem;
}

@keyframes team_pulse_zx97 {

  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

/* Responsive Design */
@media screen and (max-width: 968px) {
  .team_showcase_zx97_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .team_showcase_zx97_grid {
    grid-template-columns: 1fr;
  }

  .team_showcase_zx97_title {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 480px) {
  .team_showcase_zx97_title {
    font-size: 1.8rem;
  }

  .member_info_wy84_content {
    padding: 1.5rem;
  }
}



/* ANOTHER SECTIONS */

/* Support Section Styles */
.support_qw78_wrapper {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0a1128 0%, #1a2342 100%);
  position: relative;
  overflow: hidden;
}

.support_qw78_wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 255, 234, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(112, 0, 255, 0.05) 0%, transparent 50%);
  animation: support_pulse_qw78 8s ease-in-out infinite;
}

.support_qw78_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.support_qw78_header {
  text-align: center;
  margin-bottom: 4rem;
}

.support_qw78_title {
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(45deg, #00ffea, #7000ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.support_qw78_title_line {
  width: 80px;
  height: 4px;
  background: linear-gradient(45deg, #00ffea, #7000ff);
  margin: 0 auto 1.5rem;
  border-radius: 2px;
}

.support_qw78_subtitle {
  color: #b8b8b8;
  font-size: 1.2rem;
}

.support_qw78_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

/* Live Chat Panel Styles */
.support_panel_jn34 {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.panel_header_jn34 {
  background: rgba(255, 255, 255, 0.03);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header_icon_jn34 {
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, #00ffea, #7000ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.panel_header_jn34 h3 {
  color: #ffffff;
  font-size: 1.2rem;
  margin: 0;
}

.status_badge_jn34 {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #00ffea;
  font-size: 0.9rem;
}

.status_dot_jn34 {
  width: 8px;
  height: 8px;
  background: #00ffea;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.chat_window_jn34 {
  height: 400px;
  display: flex;
  flex-direction: column;
}

.chat_messages_jn34 {
  flex: 1;
  padding: 1.5rem;
  overflow-y: auto;
}

.message_bot_jn34 {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.message_avatar_jn34 {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00ffea;
}

.message_content_jn34 {
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 10px;
  max-width: 70%;
}

.message_content_jn34 p {
  color: #ffffff;
  margin: 0 0 0.5rem 0;
}

.message_time_jn34 {
  color: #b8b8b8;
  font-size: 0.8rem;
}

.chat_input_jn34 {
  padding: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 1rem;
}

.chat_input_jn34 input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  color: #ffffff;
  font-size: 1rem;
}

.chat_input_jn34 input:focus {
  outline: none;
  border-color: #00ffea;
}

.send_button_jn34 {
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, #00ffea, #7000ff);
  border: none;
  border-radius: 10px;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.send_button_jn34:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* Support Categories Styles */
.support_categories_vm56 {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
}

.support_categories_vm56 h3 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.categories_grid_vm56 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.category_card_vm56 {
  background: rgba(255, 255, 255, 0.03);
  padding: 1.5rem;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.category_card_vm56:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
}

.category_card_vm56 i {
  font-size: 2rem;
  color: #00ffea;
  margin-bottom: 1rem;
}

.category_card_vm56 h4 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.category_card_vm56 p {
  color: #b8b8b8;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.response_time_vm56 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #00ffea;
  font-size: 0.8rem;
}

/* FAQ Accordion Styles */
.faq_accordion_ht89 {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  grid-column: span 2;
}

.faq_accordion_ht89 h3 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.accordion_item_ht89 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion_header_ht89 {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.accordion_header_ht89:hover {
  background: rgba(255, 255, 255, 0.03);
}

.accordion_header_ht89 h4 {
  color: #ffffff;
  font-size: 1.1rem;
  margin: 0;
}

.accordion_header_ht89 i {
  color: #00ffea;
  transition: transform 0.3s ease;
}

.accordion_content_ht89 {
  padding: 0 1.5rem 1.5rem;
  color: #b8b8b8;
  font-size: 1rem;
  display: none;
}

.accordion_item_ht89.active .accordion_header_ht89 i {
  transform: rotate(180deg);
}

.accordion_item_ht89.active .accordion_content_ht89 {
  display: block;
}

/* Support Stats Styles */
.support_stats_qw78 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
}

.stat_item_qw78 {
  text-align: center;
}

.stat_item_qw78 i {
  font-size: 2rem;
  color: #00ffea;
  margin-bottom: 1rem;
}

.stat_number_qw78 {
  display: block;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.stat_text_qw78 {
  color: #b8b8b8;
  font-size: 1rem;
}

@keyframes support_pulse_qw78 {

  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 255, 234, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(0, 255, 234, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 255, 234, 0);
  }
}

/* Responsive Design */
@media screen and (max-width: 968px) {
  .support_qw78_grid {
    grid-template-columns: 1fr;
  }

  .faq_accordion_ht89 {
    grid-column: auto;
  }

  .support_stats_qw78 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .categories_grid_vm56 {
    grid-template-columns: 1fr;
  }

  .support_qw78_title {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 480px) {
  .support_qw78_title {
    font-size: 1.8rem;
  }

  .chat_window_jn34 {
    height: 300px;
  }
}


/* ghedgvcCJEJCWjfcejhwefhf */
/* Newsletter Section Styles */
.newsletter_yx52_wrapper {
  padding: 4rem 0;
  background: linear-gradient(135deg, #0a1128 0%, #1a2342 100%);
  position: relative;
  overflow: hidden;
}

.newsletter_yx52_wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 255, 234, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(112, 0, 255, 0.05) 0%, transparent 50%);
  animation: newsletter_pulse_yx52 8s ease-in-out infinite;
}

.newsletter_yx52_container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.newsletter_yx52_content {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem;
  text-align: center;
}

.newsletter_yx52_text h2 {
  color: #ffffff;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.newsletter_yx52_text p {
  color: #b8b8b8;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.newsletter_yx52_form {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.input_group_yx52 {
  flex: 1;
  position: relative;
}

.input_group_yx52 i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #b8b8b8;
}

.input_group_yx52 input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.input_group_yx52 input:focus {
  outline: none;
  border-color: #00ffea;
  background: rgba(255, 255, 255, 0.1);
}

.subscribe_button_yx52 {
  padding: 0 2rem;
  background: linear-gradient(45deg, #00ffea, #7000ff);
  border: none;
  border-radius: 10px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.subscribe_button_yx52:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.newsletter_yx52_features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  color: #b8b8b8;
  font-size: 0.9rem;
}

.newsletter_yx52_features span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.newsletter_yx52_features i {
  color: #00ffea;
}

@keyframes newsletter_pulse_yx52 {

  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .newsletter_yx52_form {
    flex-direction: column;
  }

  .subscribe_button_yx52 {
    width: 100%;
    justify-content: center;
  }

  .newsletter_yx52_features {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
}

@media screen and (max-width: 480px) {
  .newsletter_yx52_content {
    padding: 2rem;
  }

  .newsletter_yx52_text h2 {
    font-size: 1.8rem;
  }
}


/* FOOTER SECTION */
/* Footer Styles */
.footer_zk47_wrapper {
  background: linear-gradient(135deg, #0a1128 0%, #1a2342 100%);
  padding: 5rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer_zk47_wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 255, 234, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(112, 0, 255, 0.05) 0%, transparent 50%);
  animation: footer_pulse_zk47 8s ease-in-out infinite;
}

.footer_zk47_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.footer_zk47_main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

/* Company Info Styles */
.footer_company_zk47 {
  padding-right: 2rem;
}

.footer_logo_zk47 {
  margin-bottom: 1.5rem;
}

.footer_logo_zk47 img {
  height: 40px;
}

.footer_company_zk47 p {
  color: #b8b8b8;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer_social_zk47 {
  display: flex;
  gap: 1rem;
}

.footer_social_zk47 a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.footer_social_zk47 a:hover {
  background: linear-gradient(45deg, #00ffea, #7000ff);
  transform: translateY(-3px);
}

/* Links Styles */
.footer_links_zk47 h3 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.footer_links_zk47 h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(45deg, #00ffea, #7000ff);
}

.footer_links_zk47 ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer_links_zk47 ul li {
  margin-bottom: 0.8rem;
}

.footer_links_zk47 ul li a {
  color: #b8b8b8;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer_links_zk47 ul li a:hover {
  color: #00ffea;
  transform: translateX(5px);
}

/* Contact Info Styles */
.footer_contact_zk47 h3 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.footer_contact_zk47 h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(45deg, #00ffea, #7000ff);
}

.footer_contact_zk47 ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer_contact_zk47 ul li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  color: #b8b8b8;
}

.footer_contact_zk47 ul li i {
  color: #00ffea;
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

/* Footer Bottom Styles */
.footer_bottom_zk47 {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer_bottom_left_zk47 p {
  color: #b8b8b8;
  font-size: 0.9rem;
}

.footer_bottom_right_zk47 {
  display: flex;
  gap: 2rem;
}

.footer_bottom_right_zk47 a {
  color: #b8b8b8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer_bottom_right_zk47 a:hover {
  color: #00ffea;
}

@keyframes footer_pulse_zk47 {

  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

/* Responsive Design */
@media screen and (max-width: 968px) {
  .footer_zk47_main {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .footer_company_zk47 {
    grid-column: span 2;
    padding-right: 0;
  }
}

@media screen and (max-width: 768px) {
  .footer_zk47_main {
    grid-template-columns: 1fr;
  }

  .footer_company_zk47 {
    grid-column: auto;
  }

  .footer_bottom_zk47 {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer_bottom_right_zk47 {
    justify-content: center;
  }
}

@media screen and (max-width: 480px) {
  .footer_bottom_right_zk47 {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* FAQ Section Styles */
.faq-section-home {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(0, 26, 102, 0.05) 0%, rgba(255, 153, 0, 0.05) 100%);
}

.faq-container-home {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq-header-home {
  text-align: center;
  margin-bottom: 50px;
}

.faq-header-home h2 {
  color: #001a66;
  font-size: 2.5em;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.faq-header-home h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #ff9900;
  border-radius: 2px;
}

.faq-header-home p {
  color: #666;
  font-size: 1.1em;
}

.faq-grid-home {
  display: grid;
  gap: 20px;
}

.faq-item-home {
  background: linear-gradient(45deg, #00ffea, #7000ff);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq-item-home:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-trigger-home {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: linear-gradient(135deg, #1f2330 0%, #031b70 100%);

  transition: background 0.3s ease;
}

.faq-question-home {
  font-size: 1.1em;
  color: #ffffff;
  font-weight: 500;
}

.faq-icon-home {
  font-size: 1.5em;
  color: #ff9900;
  transition: transform 0.3s ease;
}

.faq-content-home {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: rgba(255, 255, 255, 0.5);
}

.faq-content-home p {
  margin: 0;
  padding: 20px;
  color: #666;
  line-height: 1.6;
}

.faq-item-home.active .faq-trigger-home {
  background: rgba(0, 26, 102, 0.02);
}

.faq-item-home.active .faq-icon-home {
  transform: rotate(45deg);
}

.faq-item-home.active .faq-content-home {
  max-height: 200px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .faq-section-home {
    padding: 60px 0;
  }

  .faq-header-home h2 {
    font-size: 2em;
  }

  .faq-question-home {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .faq-header-home h2 {
    font-size: 1.8em;
  }

  .faq-trigger-home {
    padding: 15px;
  }

  .faq-content-home p {
    padding: 15px;
  }
}


/* LIVE CHAT SECTION */
/* Advanced Features Matrix Styles */
.features_matrix_x8k2n9p4 {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a1128 0%, #1a2342 100%);
  position: relative;
  overflow: hidden;
}

.features_matrix_x8k2n9p4::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 153, 0, 0.3), transparent);
}

.matrix_container_q5w8e3r7 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.matrix_header_t9y6u4i2 {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.header_title_k3m5b7x4 {
  color: #ffffff;
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.title_accent_h8n4v6p2 {
  width: 80px;
  height: 4px;
  background: #ff9900;
  margin: 20px auto;
  position: relative;
  border-radius: 2px;
}

.title_accent_h8n4v6p2::before,
.title_accent_h8n4v6p2::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 4px;
  background: #ff9900;
  border-radius: 2px;
  opacity: 0.5;
}

.title_accent_h8n4v6p2::before {
  left: -50px;
}

.title_accent_h8n4v6p2::after {
  right: -50px;
}

.header_subtitle_w2s9f4j7 {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2em;
  max-width: 600px;
  margin: 0 auto;
}

/* Statistics Grid Styles */
.stats_grid_l5x7c9n3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.stat_card_y6t8h4w2 {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat_card_y6t8h4w2:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 153, 0, 0.3);
}

.stat_icon_wrapper_m3b5v7k9 {
  width: 60px;
  height: 60px;
  background: rgba(255, 153, 0, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.stat_icon_q4w6e8s2 {
  font-size: 1.8em;
  color: #ff9900;
}

.stat_content_x7h9p2n4 {
  position: relative;
  z-index: 1;
}

.stat_number_t5k7m9b3 {
  font-size: 2.5em;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  background: linear-gradient(45deg, #ffffff, #ff9900);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat_label_r6y8n4p2 {
  color: #ffffff;
  font-size: 1.2em;
  margin-bottom: 10px;
}

.stat_description_k2m4x7v9 {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9em;
}

/* Features Showcase Styles */
.features_showcase_h4k6m8p2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.feature_card_b9w4s6m2 {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature_card_b9w4s6m2:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.feature_icon_container_q7y9v4t2 {
  position: relative;
  width: 70px;
  height: 70px;
  margin-bottom: 25px;
}

.feature_icon_x3n5k7p4 {
  position: relative;
  z-index: 2;
  font-size: 2em;
  color: #ff9900;
}

.icon_backdrop_l8h4m2v6 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: rgba(255, 153, 0, 0.1);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.feature_content_t5r7y9n4 {
  margin-bottom: 25px;
}

.feature_title_k8m4p6x2 {
  color: #ffffff;
  font-size: 1.4em;
  margin-bottom: 15px;
}

.feature_description_w3h7t9s4 {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  line-height: 1.6;
}

.feature_list_m5b7n9k4 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature_list_m5b7n9k4 li {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.feature_list_m5b7n9k4 li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #ff9900;
}

.feature_action_j6k8m2p4 {
  margin-top: auto;
}

.learn_more_btn_x7t9h4n2 {
  background: transparent;
  border: 2px solid #ff9900;
  color: #ff9900;
  padding: 10px 25px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.learn_more_btn_x7t9h4n2:hover {
  background: #ff9900;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .matrix_container_q5w8e3r7 {
    padding: 0 30px;
  }
}

@media (max-width: 768px) {
  .header_title_k3m5b7x4 {
    font-size: 2em;
  }

  .stats_grid_l5x7c9n3,
  .features_showcase_h4k6m8p2 {
    grid-template-columns: 1fr;
  }

  .stat_card_y6t8h4w2,
  .feature_card_b9w4s6m2 {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .features_matrix_x8k2n9p4 {
    padding: 60px 0;
  }

  .header_title_k3m5b7x4 {
    font-size: 1.8em;
  }

  .stat_number_t5k7m9b3 {
    font-size: 2em;
  }
}


/* ANOTHER SECTION */
/* Advanced Showcase Matrix Styles */
.showcase_matrix_k7n9p4x2 {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #001a66 0%, #000d33 100%);
  overflow: hidden;
}

/* Particle Animation Styles */
.matrix_particles_b9k4n7x5 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.particle_element_q8w3r6t9 {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(255, 153, 0, 0.2);
  border-radius: 50%;
  animation: floatParticle 15s infinite linear;
}

.particle_element_q8w3r6t9:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.particle_element_q8w3r6t9:nth-child(2) {
  top: 60%;
  left: 50%;
  animation-delay: -5s;
}

.particle_element_q8w3r6t9:nth-child(3) {
  top: 30%;
  left: 80%;
  animation-delay: -10s;
}

@keyframes floatParticle {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: translate(100px, -100px) rotate(360deg);
    opacity: 0;
  }
}

/* Container Styles */
.matrix_wrapper_t6y8u4w2 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

/* Header Styles */
.showcase_header_y6t8h4m2 {
  text-align: center;
  margin-bottom: 60px;
}

.header_title_r8m2b5x4 {
  color: #ffffff;
  font-size: 2.8em;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #ffffff, #ff9900);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.title_decorator_k3n6v8p4 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 20px 0;
}

.decorator_line_h7t9s4w2 {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff9900, transparent);
}

.decorator_icon_m4b6k9x5 {
  color: #ff9900;
  font-size: 1.2em;
}

.header_subtitle_t5y7n9p4 {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2em;
  max-width: 600px;
  margin: 0 auto;
}

/* Cards Grid Styles */
.cards_grid_x8k4m7p2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.feature_card_v5h9t2n4 {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.card_glass_effect_q6w8m3k7 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
  pointer-events: none;
}

.feature_card_v5h9t2n4:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.card_icon_wrapper_l3k6h8m4 {
  position: relative;
  width: 60px;
  height: 60px;
  background: rgba(255, 153, 0, 0.1);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card_icon_wrapper_l3k6h8m4 i {
  font-size: 1.8em;
  color: #ff9900;
  z-index: 1;
}

.icon_pulse_t9r4w7y2 {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background: rgba(255, 153, 0, 0.2);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.2);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}

.card_title_m8k4p6x2 {
  color: #ffffff;
  font-size: 1.4em;
  margin-bottom: 15px;
}

.card_description_w3h7t9s4 {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  line-height: 1.6;
}

.card_features_y5k8m2p4 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.feature_tag_r6n9x4w2 {
  background: rgba(255, 153, 0, 0.1);
  color: #ff9900;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.9em;
}

.card_overlay_h8t4p7m2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 26, 102, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.feature_card_v5h9t2n4:hover .card_overlay_h8t4p7m2 {
  opacity: 1;
}

.explore_btn_k9w4x6m2 {
  background: #ff9900;
  color: #ffffff;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.explore_btn_k9w4x6m2:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(255, 153, 0, 0.3);
}

/* Stats Display Styles */
.stats_display_h6k9m4w2 {
  margin-top: 60px;
}

.stats_container_t7y9p4n2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat_item_x4k7m2p9 {
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.stat_item_x4k7m2p9:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
}

.stat_value_b8n4w6k2 {
  font-size: 2.5em;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.value_prefix_k6t9r4m2,
.value_suffix_m3k7x4p2 {
  color: #ff9900;
  font-size: 0.7em;
}

.stat_label_q9w4n7k2 {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1em;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .matrix_wrapper_t6y8u4w2 {
    padding: 0 30px;
  }
}

@media (max-width: 768px) {
  .showcase_matrix_k7n9p4x2 {
    padding: 60px 0;
  }

  .header_title_r8m2b5x4 {
    font-size: 2.2em;
  }

  .cards_grid_x8k4m7p2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .header_title_r8m2b5x4 {
    font-size: 1.8em;
  }

  .stat_value_b8n4w6k2 {
    font-size: 2em;
  }
}



/* ANOTEHR GREAT SECTION */
/* Market Trends Section Styles */
.market_trends_x9k4m7p2 {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #001a66 0%, #000d33 100%);
  overflow: hidden;
}

/* Wave Background Animation */
.wave_background_b9k4n7x5 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.wave_element_q8w3r6t9 {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 153, 0, 0.1), transparent);
  transform-origin: 50% 48%;
  animation: waveAnimation 8s infinite linear;
}

.wave_element_q8w3r6t9:nth-child(2) {
  animation-delay: -2s;
  opacity: 0.5;
}

.wave_element_q8w3r6t9:nth-child(3) {
  animation-delay: -4s;
  opacity: 0.3;
}

@keyframes waveAnimation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Container Styles */
.trends_container_t6y8u4w2 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* Header Styles */
.trends_header_y6t8h4m2 {
  text-align: center;
  margin-bottom: 60px;
}

.header_title_r8m2b5x4 {
  color: #ffffff;
  font-size: 2.8em;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #ffffff, #ff9900);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header_accent_k3n6v8p4 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 20px 0;
}

.accent_line_h7t9s4w2 {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff9900, transparent);
}

.accent_dot_m4b6k9x5 {
  width: 8px;
  height: 8px;
  background: #ff9900;
  border-radius: 50%;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Market Grid Styles */
.market_grid_x8k4m7p2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.market_card_v5h9t2n4 {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.market_card_v5h9t2n4:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 153, 0, 0.3);
}

.card_header_q6w8m3k7 {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.crypto_icon_l3k6h8m4 {
  width: 50px;
  height: 50px;
  background: rgba(255, 153, 0, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  color: #ff9900;
}

.crypto_info_b7p4x9n2 h3 {
  color: #ffffff;
  margin: 0;
  font-size: 1.4em;
}

.crypto_tag_r6n9x4w2 {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(255, 153, 0, 0.1);
  color: #ff9900;
  border-radius: 20px;
  font-size: 0.9em;
  margin-top: 5px;
}

.trend_indicator_y5k8m2p4 {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: 500;
}

.trend_indicator_y5k8m2p4.positive {
  background: rgba(46, 213, 115, 0.1);
  color: #2ed573;
}

.trend_indicator_y5k8m2p4.negative {
  background: rgba(255, 71, 87, 0.1);
  color: #ff4757;
}

.price_chart_h8t4p7m2 {
  width: 100%;
  height: 150px;
  margin: 20px 0;
  position: relative;
}

.chart_canvas_k9w4x6m2 {
  width: 100%;
  height: 100%;
}

.market_stats_t7y9p4n2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat_item_x4k7m2p9 {
  text-align: center;
}

.stat_label_q9w4n7k2 {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9em;
  margin-bottom: 5px;
}

.stat_value_b8n4w6k2 {
  color: #ffffff;
  font-size: 1.2em;
  font-weight: 500;
}

/* Trading Features Card */
.feature_card_v5h9t2n4 {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(10px);
}

.feature_header_q6w8m3k7 {
  text-align: center;
  margin-bottom: 30px;
}

.feature_header_q6w8m3k7 h3 {
  color: #ffffff;
  font-size: 1.6em;
  margin-bottom: 10px;
}

.feature_header_q6w8m3k7 p {
  color: rgba(255, 255, 255, 0.7);
}

.tools_grid_b7p4x9n2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.tool_item_l3k6h8m4 {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.tool_item_l3k6h8m4:hover {
  background: rgba(255, 153, 0, 0.1);
  transform: translateY(-5px);
}

.tool_item_l3k6h8m4 i {
  color: #ff9900;
  font-size: 1.4em;
}

.tool_item_l3k6h8m4 span {
  color: #ffffff;
}

/* Action Button Styles */
.action_container_h6k9m4w2 {
  text-align: center;
  margin-top: 50px;
}

.start_trading_btn_x4k7m2p9 {
  background: #ff9900;
  color: #ffffff;
  border: none;
  padding: 15px 40px;
  border-radius: 30px;
  font-size: 1.1em;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(255, 153, 0, 0.2);
}

.start_trading_btn_x4k7m2p9:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 153, 0, 0.3);
  background: #ffad33;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .trends_container_t6y8u4w2 {
    padding: 0 30px;
  }
}

@media (max-width: 768px) {
  .market_trends_x9k4m7p2 {
    padding: 60px 0;
  }

  .header_title_r8m2b5x4 {
    font-size: 2.2em;
  }

  .market_grid_x8k4m7p2 {
    grid-template-columns: 1fr;
  }

  .tools_grid_b7p4x9n2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .header_title_r8m2b5x4 {
    font-size: 1.8em;
  }

  .market_card_v5h9t2n4 {
    padding: 20px;
  }
}

/* JKEDEWKCDEUFHWEFFUKEW */
/* Market Analysis Section Styles */