@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');

:root {
    --primary-color: #ff1493;
    --secondary-color: #00ffff;
    --background-color: #000000;
    --text-color: #ffffff;
    --header-bg: rgba(0, 0, 0, 0.8);

}

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Orbitron', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background-color: var(--header-bg);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(255, 20, 147, 0.3);
  }
  
  .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
  }
  
  .logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: var(--background-color);
    margin-right: 10px;
    transition: transform 0.3s ease;
  }
  
  .logo:hover .logo-icon {
    transform: rotate(360deg);
  }
  
  .logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .nav {
    display: flex;
    align-items: center;
  }
  
  .menu {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
    margin-right: 90px;
  }
  
  .menu-item {
    margin-left: 2rem;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
  }
  
  .menu-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
  }
  
  .menu-item:hover {
    color: var(--primary-color);
  }
  
  .menu-item:hover::after {
    width: 100%;
  }
  
  .nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
  }
  
  .hamburger {
    display: block;
    width: 25px;
    height: 3px;
    margin-right: 70px;
    background-color: var(--text-color);
    position: relative;
    transition: background-color 0.3s ease;

  }
  
  .hamburger::before,
  .hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--text-color);
    transition: transform 0.3s ease;
  }
  
  .hamburger::before {
    top: -8px;
  }
  
  .hamburger::after {
    bottom: -8px;
  }
  
  @media screen and (max-width: 768px) {
    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background-color: var(--header-bg);
      clip-path: circle(0% at top right);
      transition: clip-path 0.5s ease-in-out;
    }
    
    .nav.active {
      clip-path: circle(150% at top right);
    }
    
    .menu {
      flex-direction: column;
      padding: 2rem;
      
    }
    
    .menu-item {
      margin: 1rem 0;
      margin-bottom: 20px;
    }
    
    .nav-toggle {
      display: block;
    }
    
    .nav-toggle.active .hamburger {
      background-color: transparent;
    }
    
    .nav-toggle.active .hamburger::before {
      transform: translateY(8px) rotate(45deg);
    }
    
    .nav-toggle.active .hamburger::after {
      transform: translateY(-8px) rotate(-45deg);
    }
  }

/* Hero Section Styles */
.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  text-align: center;
  z-index: 2;
  max-width: 80%;
  margin: 0 auto;
}

.glitch-title {
  font-size: 4rem; /* Reduced from 5rem */
  font-weight: bold;
  color: var(--primary-color);
  text-shadow: 
      2px 2px var(--secondary-color),
      -2px -2px var(--text-color);
  animation: glitch 1s infinite;
  margin-bottom: 1rem;
  line-height: 1.2; /* Added to control line height */
}

@keyframes glitch {
    0% {
        text-shadow: 
            2px 2px var(--secondary-color),
            -2px -2px var(--text-color);
    }
    25% {
        text-shadow: 
            -2px 2px var(--secondary-color),
            2px -2px var(--text-color);
    }
    50% {
        text-shadow: 
            2px -2px var(--secondary-color),
            -2px 2px var(--text-color);
    }
    75% {
        text-shadow: 
            -2px -2px var(--secondary-color),
            2px 2px var(--text-color);
    }
    100% {
        text-shadow: 
            2px 2px var(--secondary-color),
            -2px -2px var(--text-color);
    }
}

.tagline {
  font-size: 1.25rem; /* Reduced from 1.5rem */
  color: var(--secondary-color);
  margin: 1rem 0 2rem;
  line-height: 1.4; /* Added to improve readability */
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.cta-button {
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1rem; /* Ensure consistent font size */
}

.cta-button.primary {
    background-color: var(--primary-color);
    color: var(--text-color);
}

.cta-button.secondary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(255, 20, 147, 0.3);
}

.particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.coin {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    position: absolute;
    animation: float 6s ease-in-out infinite;
}

.coin:nth-child(1) { top: 10%; left: 10%; }
.coin:nth-child(2) { top: 70%; left: 80%; animation-delay: -2s; }
.coin:nth-child(3) { top: 40%; left: 60%; animation-delay: -4s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@media screen and (max-width: 768px) {
    .glitch-title {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .hero-content {
      max-width: 90%;
    }

    .coin {
        width: 60px;
        height: 60px;
    }
}
/* ... (keep all existing styles up to the end of the hero section) ... */

.about-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, rgba(255, 20, 147, 0.1) 0%, rgba(0, 255, 255, 0.1) 100%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
  color: var(--primary-color);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-interactive {
  position: relative;
}

.globe-container {
  width: 100%;
  height: 400px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.globe {
  font-size: 200px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: rotate 20s linear infinite;
}

.coin-trail {
  position: absolute;
  top: 50%;
  left: 50%;
  animation: orbit 8s linear infinite;
}

.coin-trail i {
  font-size: 24px;
  color: var(--primary-color);
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes orbit {
  0% { transform: rotate(0deg) translateX(150px) rotate(0deg); }
  100% { transform: rotate(360deg) translateX(150px) rotate(-360deg); }
}

.mission-vision {
  display: flex;
  gap: 2rem;
  margin-bottom: 4rem;
}

.card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  flex: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.team-section {
  text-align: center;
}

.team-section h3 {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 2rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

/* Add responsive styles */
@media screen and (max-width: 768px) {
  .about-section {
    padding: 4rem 1rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .mission-vision {
    flex-direction: column;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .card h3 {
    font-size: 1.5rem;
  }

  .team-section h3 {
    font-size: 1.8rem;
  }
}


.services-solutions-section {
  background-color: var(--background-color);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.services-solutions-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  opacity: 0.05;
  z-index: 1;
}

.container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.section-subtitle {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-color);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.1);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.service-card p {
  font-size: 1rem;
  color: var(--text-color);
}

.service-details {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.detail-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.detail-card.active {
  opacity: 1;
  transform: translateY(0);
}

.detail-card h4 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.detail-card p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.detail-card ul {
  list-style-type: none;
  padding: 0;
}

.detail-card ul li {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.detail-card ul li::before {
  content: '•';
  color: var(--secondary-color);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

@media screen and (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .service-details {
    height: auto;
  }

  .detail-card {
    position: relative;
    opacity: 1;
    transform: none;
    margin-bottom: 2rem;
  }
}

.contact-section {
  background-color: var(--background-color);
  padding: 4rem 2rem;
  text-align: center;
  color: var(--text-color);
}

.contact-description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-color);
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.social-link {
  display: inline-block;
  font-size: 2rem;
  color: var(--secondary-color);
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-link:hover {
  transform: scale(1.2);
  color: var(--primary-color);
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
  .social-icons {
      gap: 1rem;
  }

  .contact-section {
      padding: 3rem 1rem;
  }
}


.footer {
  background-color: var(--header-bg);
  padding: 2rem 0;
  color: var(--text-color);
  text-align: center;
  border-top: 2px solid var(--primary-color);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.footer-link {
  text-decoration: none;
  color: var(--text-color);
  font-size: 1rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--primary-color);
}

.footer-social {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.footer-social .social-link {
  font-size: 1.5rem;
  color: var(--secondary-color);
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-social .social-link:hover {
  transform: scale(1.2);
  color: var(--primary-color);
}

.footer-copyright {
  font-size: 0.9rem;
  color: var(--text-color);
  margin-top: 1rem;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
  .footer-content {
      flex-direction: column;
      align-items: center;
  }

  .footer-links {
      flex-direction: column;
      align-items: center;
  }

  .footer-social {
      justify-content: center;
  }
}


.start-today-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 6rem 0;
  color: var(--text-color);
  position: relative;
  overflow: hidden;
}

.start-today-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('path-to-circuit-pattern.png') repeat;
  opacity: 0.1;
  z-index: 1;
}

.container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.start-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.start-description {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.start-buttons {
  display: flex;
  gap: 1rem;
}

.cta-button {
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.cta-button.create-account {
  background-color: var(--text-color);
  color: var(--primary-color);
}

.cta-button.login {
  background-color: transparent;
  border: 2px solid var(--text-color);
  color: var(--text-color);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.coin-container {
  width: 300px;
  height: 300px;
  position: relative;
  margin: 0 auto;
  perspective: 1000px;
  animation: float 6s ease-in-out infinite;
}

.coin-face {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  font-weight: bold;
  color: var(--primary-color);
  background: var(--text-color);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.coin-face.front::after {
  content: 'M';
}

.coin-face.back {
  transform: rotateY(180deg);
}

.coin-face.back::after {
  content: '$';
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-10px);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.feature h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature p {
  font-size: 1rem;
  line-height: 1.4;
}

@media screen and (max-width: 768px) {
  .start-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .start-buttons {
    flex-direction: column;
  }

  .coin-container {
    width: 200px;
    height: 200px;
  }
}