* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #0a0a0a;
  color: #ffffff;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

body.grid-layout {
  width: 0px;
  display: grid;
  place-items: center;
}

/* Animated Background */
.background-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(64, 224, 255, 0.1) 0%,
    rgba(13, 110, 253, 0.05) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
}

.background-animation::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(64, 224, 255, 0.03) 50%,
    transparent 70%
  );
  animation: moveBackground 15s linear infinite;
}

@keyframes moveBackground {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 2rem;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(64, 224, 255, 0.2);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
.brand {
  display: flex;
}
.logo_icon {
  margin-right: 1rem;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(
    140deg,
    rgba(138, 110, 255, 0.16),
    rgba(110, 240, 255, 0.06)
  );
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(var(--glass-blur));
  box-shadow: 0 6px 20px rgba(106, 60, 255, 0.06);
}
.logo_icon svg {
  width: 36px;
  height: 36px;
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(45deg, #40e0ff, #0d6efd, #f50dfd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glow 2s ease-in-out infinite alternate;
  font-family: Orbitron, Inter;
}

@keyframes glow {
  from {
    filter: drop-shadow(0 0 10px rgba(64, 224, 255, 0.5));
  }
  to {
    filter: drop-shadow(0 0 20px rgba(64, 224, 255, 0.8));
  }
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  text-transform: uppercase;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(45deg, #40e0ff, #0d6efd, #f50dfd);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.cta-button {
  background: linear-gradient(45deg, #40e0ff, #0d6efd, #f50dfd);
  color: white;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(64, 224, 255, 0.4);
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 2rem;
}
.hero h1 {
  font-family: Orbitron, Inter;
}

.hero-content {
  max-width: 800px;
  animation: fadeInUp 1.5s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(
    45deg,
    #40e0ff,
    #40e0ff,
    #ffffff,
    #0d6efd,
    #f50dfd
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textShine 3s ease-in-out infinite;
}

@keyframes textShine {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  animation: fadeIn 2s ease-out 0.5s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.9;
  }
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeIn 2.5s ease-out 1s both;
}

/* Features Section */
.features {
  padding: 5rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.features h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 3rem;
  background: linear-gradient(45deg, #40e0ff, #0d6efd, #f50dfd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: Orbitron, Inter;
  text-transform: uppercase;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.feature-card {
  background: linear-gradient(
    145deg,
    rgba(20, 20, 20, 0.8),
    rgba(40, 40, 40, 0.4)
  );
  border: 1px solid rgba(64, 224, 255, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    rgb(228 0 255 / 45%),
    rgba(0, 213, 255, 0.45),
    rgb(228 0 255 / 45%)
  );
  animation: rotate 60s linear infinite;
  opacity: 0;
  transition: opacity 1s ease;
}

.feature-card:hover::before {
  opacity: 1;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(64, 224, 255, 0.2);
  border-color: rgba(64, 224, 255, 0.5);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #40e0ff, #0d6efd, #f50dfd);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.feature-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #40e0ff;
  position: relative;
  z-index: 1;
}

.feature-card p {
  opacity: 0.9;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.feature-highlights {
  list-style: none;
  margin: 1.5rem 0;
  position: relative;
  z-index: 1;
}

.feature-highlights li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.feature-highlights li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #40e0ff;
  font-weight: bold;
}

.try-now-btn {
  background: linear-gradient(
    45deg,
    rgba(64, 224, 255, 0.1),
    rgba(13, 110, 253, 0.1)
  );
  border: 2px solid #40e0ff;
  color: #40e0ff;
  padding: 1rem 2rem;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  position: relative;
  z-index: 1;
}

.try-now-btn:hover {
  background: linear-gradient(45deg, #40e0ff, #0d6efd, #f50dfd);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(64, 224, 255, 0.3);
}

/* Premium Card Showcase */
.card-showcase {
  padding: 5rem 2rem;
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.9),
    rgba(20, 20, 20, 0.9)
  );
}

.card-showcase h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  background: linear-gradient(45deg, #40e0ff, #0d6efd, #f50dfd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: Orbitron, Inter;
  text-transform: uppercase;
}

.premium-card {
  width: 350px;
  height: 220px;
  margin: 2rem auto;
  background: linear-gradient(135deg, #000000, #363636);
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 2px solid rgba(64, 224, 255, 0.3);
}

.premium-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(64, 224, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.premium-card:hover::before {
  left: 100%;
}

.premium-card:hover {
  transform: rotateY(10deg) rotateX(5deg);
  box-shadow: 0 20px 40px rgba(64, 224, 255, 0.3);
  background: linear-gradient(135deg, #000000, #000000);
}

.card-content {
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: #40e0ff;
  font-family: Orbitron, Inter;
}

.card-tech {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  margin: 1rem 0;
}

.tech-badge {
  background: rgba(64, 224, 255, 0.1);
  color: #40e0ff;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  border: 1px solid rgba(64, 224, 255, 0.3);
}

/* Footer */
.footer {
  background: rgba(5, 5, 5, 0.95);
  padding: 3rem 2rem 1rem;
  text-align: center;
  border-top: 1px solid rgba(64, 224, 255, 0.2);
}

.footer p {
  opacity: 0.7;
  margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav {
    justify-content: center;
  }
  .head-btn {
    display: none !important;
  }
  /* Header
        .logo_icon{
            width: 40px;
            height: 40px;
        }
        .logo{
            font-size: 1.5rem;
            font-weight: 600;
            color: #40e0ff;
            font-family: Orbitron, Inter;
        } */
  .header {
    padding: 0.5rem 1rem;
  }
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .premium-card {
    width: 90%;
    max-width: 350px;
  }
}

/* Scroll animations */
.animate-on-scroll {
  /* opacity: 0; */
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.footer {
  background: rgba(5, 5, 5, 0.95);
  padding: 3rem 2rem 1rem;
  text-align: center;
  width: 100vw;
  border-top: 1px solid rgba(64, 224, 255, 0.2);
}
