/* ================= GLOBAL RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Open Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: radial-gradient(circle, #020024 0%, #090979 35%, #00d4ff 100%);
  color: #f0f0f0;
  line-height: 1.6;
  overflow-x: hidden;
}



/* ================= HEADER ================= */
header {
  background: linear-gradient(to right, #1a1a1a, #0d0d0d);
  padding: 10px 20px;
  text-align: center;
  border-bottom: 3px solid #00bcd4;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap:5px;
  flex-wrap: wrap;
  position: relative;
}

.header-top::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 300%;
  background: conic-gradient(from 0deg,
      rgba(0, 255, 200, 0.15),
      rgba(0, 255, 255, 0.05),
      transparent,
      rgba(0, 255, 200, 0.1));
  animation: spin 5s linear infinite;
  z-index: 0;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #000000;
}

header h1 {
  color: #a8adad;
  font-size: 2.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
 
}

header p {
  color: #b5b5b5;
  font-size: 1.1rem;
  font-weight: 400;
  margin-top: 12px;
   text-shadow: 0 0 15px rgba(0, 255, 200, 0.5);
  z-index: 1;
   animation: fadeInText 3s ease-in-out, floatUpDown 3s ease-in-out infinite;
}

@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0);
  }
}

/* ================= NAVIGATION ================= */
nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  padding: 6px 30px;
  background: radial-gradient(circle, #020024 0%, #090979 35%, #00d4ff 100%);

  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  transition: background 1.5s ease;
  
}

nav:hover {
  background: radial-gradient(circle at bottom right, #010303 0%, #2a3d3b 100%);
}


nav a {
  color: #f8fafc;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  position: relative;
  transition: color 0.3s ease, background 0.3s ease;
  padding: 5px 8px;
  border-radius: 6px;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: radial-gradient(circle, #020024 0%, #090979 35%, #00d4ff 100%);
  transition: width 0.3s ease;
}

nav a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

nav a:hover::after {
  width: 100%;
}

/* Section styles */
.strike-section {
  gap: 20px;
  padding: 60px 20px;
  position: relative;
  text-align: center;
  min-height: 80vh;
  background: radial-gradient(circle at top, #0d0d0d 0%, #000 100%);
  overflow: hidden;
  perspective: 1000px;
  z-index: 1;
}
.strike-section::before{
     content: "";
  position: absolute;
  top: -100%;
  left: -50%;
  width: 200%;
  height: 300%;
  background: conic-gradient(from 0deg,
      rgba(2, 24, 24, 0.733),
      rgba(0, 255, 255, 0.05),
      transparent,
      rgba(0, 255, 200, 0.1));
      
  animation: spin 15s linear infinite;
  z-index: 0;
}

.strike-section h1 {
  font-size: 2.5rem;
  font-weight: bold;
}

.strike-section .highlight {
    color: white;
  text-shadow: 0 0 15px rgba(0, 255, 200, 0.5);
  z-index: 1;
}

.strike-section h2 {
  font-size: 2rem;
  margin-top: 20px;
   color: white;
  text-shadow: 0 0 15px rgba(0, 255, 200, 0.5);
  z-index: 1;
}

.subtitle {
   color: #d4d4d4;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.5px;
  margin-top: 15px;
  opacity: 0.9;
  text-shadow: 0 0 5px rgba(0, 255, 230, 0.3);
  animation: fadeInText 3s ease-in-out, floatUpDown 3s ease-in-out infinite;
}


.badges {
  margin: 20px 30px;
}

.badge {
  display: inline-block;
  padding: 8px 16px;
  margin: 5px;
 
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9rem;
  cursor: pointer;
  color: white;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

/* Orange badge */
.orange {
  padding: 10px 25px;
   margin-right: 30px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  background: radial-gradient(circle at bottom right, #010303 0%, #2a3d3b 100%);
}

/* Purple badge */
.purple {
     padding: 10px 25px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
   background: conic-gradient(
    from 0deg,
    rgba(2, 22, 15, 0.705),
    rgba(0, 255, 255, 0.05),
    transparent,
    rgba(0, 255, 200, 0.1)
  );
   box-shadow: 0 0 20px #06221f, 0 0 40px #0a1e20;
}




.description {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1rem;
  line-height: 1.6;
  color: #d1d5db;
  opacity: 0.9;
  text-shadow: 0 0 5px rgba(0, 255, 230, 0.3);
  animation: fadeInText 3s ease-in-out, floatUpDown 3s ease-in-out infinite;
}
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
  padding: 0 90px;
}

.feature {
  display: flex; 
  align-items: center;
  background-color: #1f1f2e;
  padding: 15px;
  border-radius: 10px;
  font-size: 0.95rem;
  color: white;
  text-shadow: 0 0 15px rgba(0, 255, 200, 0.5);
animation: fadeInText 3s ease-in-out, sway 3s ease-in-out infinite;
  gap: 12px; 
}

@keyframes sway {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
}



.feature img {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  object-fit: cover;
}



   
@keyframes pulseGlow {
  0% {
    transform: scale(1);
    text-shadow: 0 0 10px #011311;
  }

  50% {
    transform: scale(1.05);
    text-shadow: 0 0 25px #070e0d;
  }

  100% {
    transform: scale(1);
    text-shadow: 0 0 10px #072522;
  }
}

@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes fadeInText {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 0.9;
    transform: translateY(0);
  }
}

img.side {
  position: absolute;
  bottom: -2%;
  width: 80px;
  opacity: 0;
  transform: scale(0.9);
  animation: marchForward 6s linear infinite;
}


img.side:nth-child(1) { left: -100px; animation-delay: 0s; }
img.side:nth-child(2) { left: -110px; animation-delay: 0.5s; }
img.side:nth-child(3) { left: -120px; animation-delay: 1s; }
img.side:nth-child(4) { left: -130px; animation-delay: 1.5s; }
img.side:nth-child(5) { left: -140px; animation-delay: 2s; }
img.side:nth-child(6) { left: -150px; animation-delay: 2.5s; }

@keyframes marchForward {
  0% {
    transform: translateX(0) scale(0.9);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50% {
    transform: translateX(550px) scale(1.05); 
    opacity: 1;
  }
  90% {
    transform: translateX(700px) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(800px) scale(0.9);
    opacity: 0;
  }
}
/* ================= FOOTER ================= */
footer {
  text-align: center;
  padding: 25px;
  /* background-color: #101010; */
    background: conic-gradient(from 0deg,
      rgba(0, 255, 200, 0.15),
      rgba(0, 255, 255, 0.05),
      transparent,
      rgba(0, 255, 200, 0.1));
  font-size: 0.9rem;
  color: #777;
  border-top: 2px solid #1f1f1f;
}
.footer {
  background-color: #0c0c0c;
  color: #ccc;
  padding: 60px 20px 20px;
  text-align: center;
  
  position: relative;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
 
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  text-shadow: 0 0 15px rgba(0, 255, 200, 0.5);
  margin-bottom: 15px;
  z-index: 1;
  justify-content: center;
  
}

.footer-logo img {

  height: 40px;
  width: 30px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(0, 255, 200, 0.6));
}


.footer-section h3, .footer-section h4 {
  font-size: 20px;
  color: white;
    text-shadow: 0 0 15px rgba(0, 255, 200, 0.5);
    z-index: 1;
  margin-bottom: 15px;
}

.footer-section p {
    font-size: 1.1rem;
    color: #ccc;
    
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    z-index: 2;
    opacity: 0.9;
    text-shadow: 0 0 5px rgba(0, 255, 230, 0.3);
    animation: fadeInText 3s ease-in-out, sway 3s ease-in-out infinite;
}

@keyframes sway {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(10px);
    }
}

@keyframes fadeInText {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 0.9;
        transform: translateY(0);
    }
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin: 8px 0;
}

.footer-section ul li a {
  color: white;
    text-shadow: 0 0 15px rgba(0, 255, 200, 0.5);
    z-index: 1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color:  rgba(0, 255, 200, 0.5);
}

.footer-section .social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.footer-section .social-icons img {
  width: 25px;
  height: 25px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-section .social-icons img:hover {
  transform: scale(1.2);
  filter: brightness(0) invert(0.7) sepia(1) hue-rotate(160deg);
}

.footer-bottom {
  border-top: 1px solid #222;
  padding-top: 15px;
  font-size: 0.9rem;
  color: #777;
}

.contact a{
text-decoration: none;
color: white;
}
@media (max-width: 768px) {
   .header-top{
    gap:2px;
    line-height: 0.9;
  }
  .header-top h1{
    font-size:2rem;
  }
   header p{
    font-size: 0.9rem;
   }

  nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
.hero h2{
  margin-top:20px;
  font-size: 2rem;
}
  .hero p{
    max-width: fit-content;
  }
  .hero ul{
    display: flex;
    flex-direction: column;
     align-items: center;
    gap: 10px;
  }
  .badges .badge{
    display: flex;
    flex-direction: column;
    gap:20px
  }
  .features .feature{
    margin-left: -80px;
    width: fit-content;
  }
}
