* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  width: 100%;
}

.body-container {
  margin: 0 auto;
  color: #fff;
  max-width: 1280px;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, #220337, #0a0c10, #230860);
  background-size: 400% 400%;
  animation: gradientMove 6s ease infinite;
  z-index: -1;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}



.top-banner {
  background: linear-gradient(120deg, #4d1570, #0a0c10, #3607a3);
  color: #00eaff;
  text-align: center;
  padding: 10px 0;
  font-size: 1rem;
  font-weight: 600;
  overflow: hidden;
  position: fixed;
  top: 0;
  box-sizing: border-box;
  z-index: 1000;
  width: 100%;
  letter-spacing: 1px;
  border-top: 2px solid #7a00ff;
  border-bottom: 2px solid #7a00ff;
  box-shadow: 0 0 25px rgba(0, 234, 255, 0.3);
  backdrop-filter: blur(4px);
}


.top-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: shine 3s linear infinite;
}

@keyframes shine {
  0% {
    left: -50%;
  }
  100% {
    left: 100%;
  }
}


.marquee {
  display: inline-block;
  white-space: nowrap;
  animation: move 10s linear infinite;
}

@keyframes move {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@media (max-width: 1024px) {
  .top-banner {
    font-size: 1rem;
    padding: 12px 0;
    margin: 0px;
  }
}

@media (max-width: 768px) {
  .top-banner {
    font-size: 0.9rem;
    padding: 10px 0;
  }

  .marquee {
    animation-duration: 10s;
  }
}

@media (max-width: 480px) {
  .top-banner {
    font-size: 0.8rem;
    padding: 8px 0;
  }

  .marquee {
    animation-duration: 8s;
  }
}

@media (max-width: 360px) {
  .top-banner {
    font-size: 0.7rem;
    padding: 6px 0;
  }
}

.header-container {
  margin-top: 2rem;
  width: 100%;
  max-width: 1280px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0px;
  z-index: 100;
  box-shadow: 0 10px 25px rgba(29, 24, 90, 0.6);
  background: linear-gradient(120deg, #220337, #0a0c10, #230860);
  background-size: 400% 400%;
  animation: gradientMove 6s ease infinite;
  padding: 12px 12px 0px 12px;
}

.intro {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(5px);
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 101;
  overflow: hidden;
  animation: introFadeOut 0.5s forwards;
  animation-delay: 2.4s;
}

@keyframes logoLinear {
  0% {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.5);
  }
  100% {
    top: 50%;
    left: 12rem;
    transform: translate(0, -50%) scale(1);
  }
}

@keyframes bgFade {
  0% {
    opacity: 0.8;
    filter: blur(8px);
  }
  100% {
    opacity: 0.5;
    filter: blur(0px);
  }
}

@keyframes introFadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

.intro-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.5) rotateY(0deg);
  animation: logo3D 1.7s ease-in-out forwards;
  perspective: 1000px;
}

@keyframes logo3D {
  0% {
    transform: translate(-50%, -50%) scale(1.5) rotateY(0deg);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.7) rotateY(180deg);
  }
  100% {
    top: 44px;
    left: 135px;
    transform: translate(0, 0) scale(1) rotateY(360deg);
  }
}

header {
  display: flex;
  align-items: center;
  justify-content: center;
}

img {
  width: 14rem;
  transition: transform 0.6s;
}

img:hover {
  transform: translateZ(5px) scale(1.1);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav a {
  margin-left: 20px;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

nav a span {
  display: inline-block;
  transition: transform 0.6s ease, color 0.4s ease;
  transform-style: preserve-3d;
}

nav a:hover span {
  transform: translateZ(5px) scale(1.1);
  color: #ffdd00;
  text-shadow: 0 5px 15px rgba(37, 60, 195, 0.7),
    0 0 10px rgba(58, 12, 163, 0.5);
}


#loginbtn {
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 20px;
  color: white;
  border: none;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.4s ease;
  box-shadow: 0 0 15px rgba(225, 42, 219, 0.477);
  background: linear-gradient(45deg, #7f0a94, #8427cc, #6f9aff);
}

#loginbtn:hover {
  transform: scale(1.08);
  background: linear-gradient(45deg, #6f9aff, #8427cc, #7f0a94);
}



@media (max-width: 890px) {
  .mobile-menu {
    position: absolute;
    top: 0;
    right: 15px;
    z-index: 1000;
    background: transparent;
  }

  #loginbtn {
    background-color: purple;
    width: 50%;
    padding: 5px;
    padding-left: 20px;
    text-align: center;
    border-radius: 10px;
    font-size: 20px;
    color: white;
    border: none;
  }

  .btn_one i {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    position: fixed;
    top: 0px;
    top: 15px;
    margin-top: 2rem;
    right: 25px;
    line-height: 60px;
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
  }

  .btn_one i:hover {
    transform: scale(1.2);
    color: #a855f7;
  }

  
  .sidebar_menu {
    position: fixed;
    right: -300px;
    top: 0;
    height: 100vh;
    width: 260px;
    background: linear-gradient(135deg, #7209b7, #0a0c10, #3a0ca3);
    background-size: 400% 400%;
    animation: sidebarGradient 10s ease infinite;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
    transition: right 0.4s ease;
    backdrop-filter: blur(8px);
    border-left: 2px solid rgba(168, 85, 247, 0.4);
    z-index: 999;
  }

  @keyframes sidebarGradient {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }

  .sidebar_menu .logo {
    position: absolute;
    width: 100%;
    height: 65px;
    line-height: 65px;
    text-align: left;
    padding-left: 20px;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 1px;
    background: rgba(10, 12, 16, 0.6);
  }

  .logo a {
    text-decoration: none;
  }

  .sidebar_menu .btn_two i {
    color: #fff;
    font-size: 26px;
    line-height: 65px;
    position: absolute;
    right: 20px;
    top: 0;
    opacity: 0;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .sidebar_menu .menu {
    position: absolute;
    width: 100%;
    top: 90px;
  }

  .sidebar_menu .menu li {
    margin: 12px 0;
    padding: 14px 25px;
    list-style: none;
    transition: background 0.3s ease, transform 0.2s ease;
  }

  .sidebar_menu .menu li:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
    border-left: 3px solid #a855f7;
  }

  .sidebar_menu .menu a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    letter-spacing: 0.5px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .sidebar_menu .menu i {
    color: #a855f7;
    font-size: 20px;
  }

 
  #check {
    display: none;
  }

  #check:checked ~ .sidebar_menu {
    right: 0;
    box-shadow: -5px 0 25px rgba(168, 85, 247, 0.4);
  }

  #check:checked ~ .btn_one i {
    opacity: 0;
  }

  #check:checked ~ .sidebar_menu .btn_two i {
    opacity: 1;
  }

  nav {
    display: none;
  }

  img {
    width: 12rem;
    padding: 20px 0px 0px 10px;
  }
}

@media (min-width: 891px) {
  .mobile-menu {
    display: none;
  }
  img {
    width: 13rem;
  }
}

@media (max-width: 700px) {
  img {
    width: 9rem;
    transition: transform 0.6s;
  }
  .intro-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.5) rotateY(0deg);
    animation: logo3D 1.7s ease-in-out forwards;
    perspective: 1000px;
  }

  @keyframes logo3D {
    0% {
      transform: translate(-50%, -50%) scale(1.5) rotateY(0deg);
    }
    50% {
      transform: translate(-50%, -50%) scale(1.7) rotateY(180deg);
    }
    100% {
      top: 40px;
      left: 10px;
      transform: translate(0, 0) scale(1) rotateY(360deg);
    }
  }
}

@media (min-width: 701px) and (max-width: 1300px) {
  img {
    width: 10rem;
    transition: transform 0.6s;
  }
  .intro-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.5) rotateY(0deg);
    animation: logo3D 1.7s ease-in-out forwards;
    perspective: 1000px;
  }

  @keyframes logo3D {
    0% {
      transform: translate(-50%, -50%) scale(1.5) rotateY(0deg);
    }
    50% {
      transform: translate(-50%, -50%) scale(1.7) rotateY(180deg);
    }
    100% {
      top: 32px;
      left: 0px;
      transform: translate(0, 0) scale(1) rotateY(360deg);
    }
  }
}


.hero-section {
  padding-top: 10rem;
}

.container {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  padding-left: 1rem;
}

.hero-content {
  width: 50%;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  margin-top: 2rem;
}

.hero-content h1:hover {
  opacity: 0.6;
}

.feature-para,
p {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.feature-para,
p:hover {
  opacity: 1;
}

.slogan {
  font-weight: 600;
  font-size: 1.5rem;
  opacity: 0.8;
  white-space: nowrap;
  overflow: hidden;
  border-right: 3px solid #ff6b6b;
  display: inline-block;
  animation: typing 7s linear infinite, blink 0.75s step-end infinite;
}

@keyframes typing {
  0% {
    width: 0;
  }
  40% {
    width: 22ch;
  }
  60% {
    width: 24ch;
  }
  100% {
    width: 0;
  }
}

@keyframes blink {
  0%,
  100% {
    border-color: transparent;
  }
  50% {
    border-color: #ff6b6b;
  }
}

.hero-btn {
  display: flex;
  gap: 20px;
  margin-top: 2rem;
  margin-bottom: 10px;
}

.sys-btn {
  background-color: purple;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 16px;
  color: white;
  border: none;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.4s ease;
  box-shadow: 0 0 15px rgba(225, 42, 219, 0.477);
  background: linear-gradient(45deg, #7f0a94, #8427cc, #6f9aff);
  animation: floatSmooth 1.5s ease-in-out infinite alternate;
}

.sys-btn:hover {
  transform: scale(1.08);
  background: linear-gradient(45deg, #6f9aff, #8427cc, #7f0a94);
}

@keyframes floatSmooth {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(15px); 
  }
}

.yt {
  background-color: purple;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 16px;
  color: white;
  border: none;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.4s ease;
  background-color: transparent;
  border: 1px solid white;  
  animation: floatSmooth 1.5s ease-in-out infinite alternate;
}

.sys {
  font-weight: 100;
  font-size: medium;
  margin-left: 5px;
}


.img-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.Rohit-sir-img {
  height: 26rem;
  width: 26rem;
  border-radius: 50%;
  box-shadow: 0 0 25px 5px rgba(124, 14, 193, 0.7);
}

@media (max-width: 900px) {
  .container {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: space-between;
    gap: 30px;
  }

  .hero-content {
    width: 100%;
  }

  .hero-content h1 {
    font-size: 25px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .img-container {
    border-radius: 50%;
    height: 16rem;
    width: 16rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }

  .img-container .Rohit-sir-img {
    height: 16rem;
    width: 16rem;
    box-shadow: none;
  }

  .hero-btn {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
  }
}



.features-section1 {
  text-align: center;
  margin-top: 5rem;
}

.features-section1 h1 {
  font-size: 50px;
  font-weight: 900;
}

.features-section1 span {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  background: linear-gradient(90deg, #8b5cf6, #22d3ee, #a855f7, #22d3ee);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
  animation: gradient-Shift 5s linear infinite;
  transition: text-shadow 0.3s ease-in-out;
}

@keyframes gradient-Shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.features-section1 span:hover {
  text-shadow: 0 0 60px rgba(124, 58, 237, 0.5);
}

.feature-para {
  font-size: 20px;
  font-weight: bolder;
  color: gray;
  padding: 20px 0px;
  width: 80%;
  margin: 0 auto;
}



.card-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  width: 330px;
  height: 430px;
  position: relative;
  cursor: pointer;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.7s;
  transform-style: preserve-3d;
}

.card:hover .card-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 12px;
  background: linear-gradient(135deg, #2b2550, #1c1a25);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  padding: 1rem;
}

.card-front.premium {
  background: linear-gradient(135deg, #2b2550, #1c1a25);
}

.card-front img {
  width: 100%;
  border-radius: 10px;
}

.card-info {
  padding: 0.8rem 1rem;
  text-align: left;
}

.card-info p {
  color: #c5c5c5;
  line-height: 1.3;
  font-size: 15px;
}

.card-info h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 9px;
}

.card-info span {
  font-size: 0.85rem;
  color: #ccc;
}

.card-back {
  transform: rotateY(180deg);
  background: linear-gradient(135deg, #2b2550, #1c1a25);
  text-align: left;
  padding: 1rem;
  justify-content: center;
}

.card-back p {
  font-size: 15px;
  margin-bottom: 20px;
}

.card-back ul li {
  list-style: none;
  font-size: 15px;
}

.card-back button {
  margin-top: 15px;
  padding: 8px 15px;
  border: none;
  border-radius: 25px;
  background: linear-gradient(90deg, #7c3aed, #c084fc);
  color: #fff;
  cursor: pointer;
  font-weight: 500;
}
.card-back button:hover {
  box-shadow: 0 0 5px #c084fc, 0 0 25px #7c3aed;
}

.card input {
  display: none;
}

.card:hover .card-inner {
  transform: rotateY(180deg);
}

.card input:checked + .card-inner {
  transform: rotateY(180deg);
}

@media (max-width: 768px) {
  .card:hover .card-inner {
    transform: none;
  }
}

.card label,
.card-inner {
  display: block;
}

.card-inner {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.7s;
}

.card label {
  cursor: pointer;
}


.features-section2 {
  text-align: center;
  margin-top: 5rem;
}

.features-section2 h1 {
  font-size: 50px;
  font-weight: 900;
}


.features-section2 p {
  font-size: 24px;
  margin-bottom: 20px;
  color: gray;
  padding-top: 10px;
}

.exp-btn {
  display: inline-block;
  background-color: purple;
  padding: 10px 20px;
  margin-top: 5rem;
  border-radius: 10px;
  font-size: 16px;
  color: white;
  border: none;
  text-decoration: none;
  font-weight: 500;
  box-shadow: 0 0 15px rgba(225, 42, 219, 0.477);
  background: linear-gradient(45deg, #7f0a94, #8427cc, #6f9aff);
  /* Smooth floating animation */
  animation: floatSmooth 1.5s ease-in-out infinite alternate;
}

.exp-btn:hover {
  transform: scale(1.08);
  background: linear-gradient(45deg, #6f9aff, #8427cc, #7f0a94);
}

@keyframes floatSmooth {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-15px);
  }
}

.btn {
  padding: 12px 25px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  background-color: #a020f0;
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(160, 32, 240, 0.6);
}

.btn a {
  text-decoration: none;
  color: #ffffff;
}


.stats-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  background: rgba(254, 249, 249, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 3rem;
  border-radius: 20px;
  margin: 0 5rem;
  margin-top: 7rem;
  border-color: #ab3cff;
  box-shadow: 0 0 30px rgba(163, 16, 158, 0.477);
  animation: containerFloat 4s ease-in-out infinite;
}


@keyframes containerFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}


.stat-card {
  flex: 1 1 220px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  max-width: 250px;
  max-height: 150px;
}

.stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(45deg, #5b8cff, #ab3cff);
  opacity: 0;
  filter: blur(6px);
  transition: all 0.5s ease;
  z-index: 0;
}

.stat-card h2,
.stat-card p {
  position: relative;
  z-index: 1;
}

.stat-card h2 {
  font-size: 2rem;
  font-weight: 700;
}

.stat-card p {
  font-size: 1rem;
  opacity: 0.8;
  margin-top: 0.5rem;
}


@keyframes cardCycle {
  0%,
  20% {
    opacity: 1;
    transform: scale(1.05);
  }
  25%,
  100% {
    opacity: 0;
    transform: scale(1);
  }
}

@keyframes liftCycle {
  0%,
  20% {
    transform: translateY(-10px);
  }
  25%,
  100% {
    transform: translateY(0);
  }
}



.stat-card:nth-child(1)::before {
  animation: cardCycle 10s infinite;
  animation-delay: 0s;
}
.stat-card:nth-child(2)::before {
  animation: cardCycle 10s infinite;
  animation-delay: 2s;
}
.stat-card:nth-child(3)::before {
  animation: cardCycle 10s infinite;
  animation-delay: 4s;
}
.stat-card:nth-child(4)::before {
  animation: cardCycle 10s infinite;
  animation-delay: 6s;
}


.stat-card:nth-child(1) {
  animation: liftCycle 10s infinite;
  animation-delay: 0s;
}
.stat-card:nth-child(2) {
  animation: liftCycle 10s infinite;
  animation-delay: 2s;
}
.stat-card:nth-child(3) {
  animation: liftCycle 10s infinite;
  animation-delay: 4s;
}
.stat-card:nth-child(4) {
  animation: liftCycle 10s infinite;
  animation-delay: 6s;
}



@media (max-width: 992px) {
  .stats-section {
    gap: 1.5rem;
    padding: 2rem;
    margin: 0 1rem;
    margin-top: 70px;
  }

  .stat-card h2 {
    font-size: 1.8rem;
  }

  .stat-card p {
    font-size: 0.95rem;
  }
}



@media (max-width: 900px) {
  .card-front img {
    padding: 0;
  }
}

/* code */

#heading-code {
  margin-top: 4rem;
  text-align: center;
  font-size: 35px;
  font-weight: 700;
  padding: 0 12px;
}

#heading-code span {
  color: #00eaff;
}

.container-code {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  width: 100%;
  max-width: 100%;
  padding: 0 15px;
  margin-top: 40px;
  box-sizing: border-box;
}


.card-code {
  position: relative;
  background: linear-gradient(
    145deg,
    rgba(18, 18, 18, 0.95),
    rgba(10, 10, 10, 0.85)
  );
  border: 1px solid rgba(0, 191, 255, 0.3);
  border-radius: 18px;
  padding: 25px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 0 18px rgba(0, 191, 255, 0.25);
  transition: transform 0.8s ease, box-shadow 0.6s ease;
  box-sizing: border-box;
}
.card-code:hover {
  box-shadow: 0 0 30px rgba(0, 191, 255, 0.5);
  transform: translateY(-8px);
}
.icon {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 50px;
  height: 50px;
  background: radial-gradient(circle, #00e5ff, #0094ff);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 20px rgba(0, 191, 255, 0.6);
  font-size: 20px;
  color: black;
  font-weight: 700;
}
.title {
  color: #00d0ff;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.4rem;
}
.main-text {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}
.desc {
  color: #ccc;
  line-height: 1.5;
  margin-bottom: 1.3rem;
  font-size: 0.9rem;
}
.btn-code {
  background: #007bff;
  border: none;
  padding: 9px 18px;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}
.btn-code a {
  text-decoration: none;
  color: white;
}
.btn-code:hover {
  background: rgba(0, 191, 255, 0.6);
}

/* Code Box */
.code-box {
  background: linear-gradient(
    145deg,
    rgba(20, 20, 20, 0.9),
    rgba(15, 15, 15, 0.95)
  );
  border-radius: 14px;
  padding: 15px;
  width: 100%;
  max-width: 420px;
  height: 300px;
  overflow: hidden;
  border: 1px solid rgba(0, 191, 255, 0.4);
  box-shadow: inset 0 0 20px rgba(0, 191, 255, 0.3);
  font-family: "Courier New", monospace;
  color: #00eaff;
  font-size: 0.85rem;
  white-space: pre;
  line-height: 0.8;
  position: relative;
  box-sizing: border-box;
  transition: transform 0.8s ease, box-shadow 0.6s ease;
}
.code-box:hover {
  box-shadow: 0 0 30px rgba(0, 191, 255, 0.5);
  transform: translateY(-8px);
}
.code-inner {
  display: block; 
  width: 100%;
  padding-left: 40px;
  position: relative;
  will-change: transform; 
  animation: scrollDown 60s linear infinite;
  transform: translate3d(0, 0, 0);
  text-align: left;
}
@keyframes scrollDown {
  0% {
    transform: translateY(0);
  }
  95% {
    transform: translateY(-70%);
  }
  100% {
    transform: translateY(0);
  }
}


.line {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  /* border-right: 2px solid #00eaff; */
}


.l1 {
  width: 0ch;
  animation: typing1 1.8s steps(19, end) forwards 0s;
}
.l2 {
  width: 0ch;
  animation: typing2 1.8s steps(16, end) forwards 1.8s;
}
.l3 {
  width: 0ch;
  animation: typing3 1.8s steps(20, end) forwards 3.6s;
}
.l4 {
  width: 0ch;
  animation: typing4 1.8s steps(12, end) forwards 5.4s;
}
.l5 {
  width: 0ch;
  animation: typing5 1.8s steps(17, end) forwards 7.2s;
}
.l6 {
  width: 0ch;
  animation: typing6 1.8s steps(15, end) forwards 9s;
}
.l7 {
  width: 0ch;
  animation: typing7 1.8s steps(25, end) forwards 10.8s;
}
.l8 {
  width: 0ch;
  animation: typing8 2.3s steps(40, end) forwards 12.6s;
}
.l9 {
  width: 0ch;
  animation: typing9 1.8s steps(22, end) forwards 14.9s;
}
.l10 {
  width: 0ch;
  animation: typing10 2s steps(35, end) forwards 16.7s;
}
.l11 {
  width: 0ch;
  animation: typing11 1.8s steps(30, end) forwards 18.7s;
}
.l12 {
  width: 0ch;
  animation: typing12 1.8s steps(38, end) forwards 20.5s;
}
.l13 {
  width: 0ch;
  animation: typing13 1.8s steps(25, end) forwards 22.3s;
}
.l14 {
  width: 0ch;
  animation: typing14 1.8s steps(30, end) forwards 24.1s;
}
.l15 {
  width: 0ch;
  animation: typing15 1.8s steps(35, end) forwards 25.9s;
}
.l16 {
  width: 0ch;
  animation: typing16 2s steps(40, end) forwards 27.7s;
}
.l17 {
  width: 0ch;
  animation: typing17 1.6s steps(20, end) forwards 29.7s;
}
.l18 {
  width: 0ch;
  animation: typing18 1.6s steps(22, end) forwards 31.3s;
}
.l19 {
  width: 0ch;
  animation: typing19 1.8s steps(40, end) forwards 32.9s;
}
.l20 {
  width: 0ch;
  animation: typing20 1.6s steps(15, end) forwards 34.7s;
}
.l21 {
  width: 0ch;
  animation: typing21 2.2s steps(42, end) forwards 36.3s;
}
.l22 {
  width: 0ch;
  animation: typing22 2s steps(35, end) forwards 38.5s;
}
.l23 {
  width: 0ch;
  animation: typing23 1.8s steps(30, end) forwards 40.5s;
}
.l24 {
  width: 0ch;
  animation: typing24 1.6s steps(25, end) forwards 42.3s;
}
.l25 {
  width: 0ch;
  animation: typing25 2s steps(38, end) forwards 43.9s;
}
.l26 {
  width: 0ch;
  animation: typing26 2s steps(35, end) forwards 45.9s;
}
.l27 {
  width: 0ch;
  animation: typing27 1.6s steps(28, end) forwards 47.9s;
}
.l28 {
  width: 0ch;
  animation: typing28 1.4s steps(15, end) forwards 49.5s;
}
.l29 {
  width: 0ch;
  animation: typing29 1.1s steps(10, end) forwards 50.9s;
}
.l30 {
  width: 0ch;
  animation: typing30 0.8s steps(1, end) forwards 52s;
  border-right: none;
}



@keyframes typing1 {
  to {
    width: 19ch;
  }
}
@keyframes typing2 {
  to {
    width: 16ch;
  }
}
@keyframes typing3 {
  to {
    width: 17ch;
  }
}
@keyframes typing4 {
  to {
    width: 20ch;
  }
}
@keyframes typing5 {
  to {
    width: 21ch;
  }
}
@keyframes typing6 {
  to {
    width: 0ch;
  }
}
@keyframes typing7 {
  to {
    width: 12ch;
  }
}
@keyframes typing8 {
  to {
    width: 13ch;
  }
}
@keyframes typing9 {
  to {
    width: 35ch;
  }
}
@keyframes typing10 {
  to {
    width: 52ch;
  }
}
@keyframes typing11 {
  to {
    width: 19ch;
  }
}
@keyframes typing12 {
  to {
    width: 34ch;
  }
}
@keyframes typing13 {
  to {
    width: 7ch;
  }
}
@keyframes typing14 {
  to {
    width: 1ch;
  }
}
@keyframes typing15 {
  to {
    width: 31ch;
  }
}
@keyframes typing16 {
  to {
    width: 29ch;
  }
}
@keyframes typing17 {
  to {
    width: 19ch;
  }
}
@keyframes typing18 {
  to {
    width: 37ch;
  }
}
@keyframes typing19 {
  to {
    width: 14ch;
  }
}
@keyframes typing20 {
  to {
    width: 41ch;
  }
}
@keyframes typing21 {
  to {
    width: 21ch;
  }
}
@keyframes typing22 {
  to {
    width: 36ch;
  }
}
@keyframes typing23 {
  to {
    width: 13ch;
  }
}
@keyframes typing24 {
  to {
    width: 12ch;
  }
}
@keyframes typing25 {
  to {
    width: 29ch;
  }
}
@keyframes typing26 {
  to {
    width: 33ch;
  }
}
@keyframes typing27 {
  to {
    width: 52ch;
  }
}
@keyframes typing28 {
  to {
    width: 40ch;
  }
}
@keyframes typing29 {
  to {
    width: 9ch;
  }
}
@keyframes typing30 {
  to {
    width: 1ch;
  }
}

@media (max-width: 1024px) {
  #heading-code {
    font-size: 20px;
  }
  .container-code {
    gap: 40px;
  }
  .card-code {
    width: 320px;
    padding: 35px;
  }
  .code-box {
    width: 450px;
    height: 360px;
  }
}
@media (max-width: 768px) {
  #heading-code {
    font-size: 22px;
  }
  .container-code {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .card-code,
  .code-box {
    width: 90%;
    max-width: 500px;
  }
  .code-box {
    height: 340px;
  }
}
@media (max-width: 480px) {
  #heading-code {
    font-size: 20px;
  }
  .card-code {
    width: 95%;
    padding: 25px;
  }
  .code-box {
    width: 95%;
    height: 300px;
    font-size: 0.85rem;
    line-height: 0.8;
  }
  .main-text {
    font-size: 1.3rem;
  }
  .desc {
    font-size: 0.9rem;
  }
}


@media (min-width: 600px) {
  #heading-code {
    font-size: 20px;
  }
  .container-code {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    padding: 0 30px;
  }
  .card-code,
  .code-box {
    width: 45%;
    max-width: 500px;
  }
  .code-box {
    height: 360px;
    font-size: 0.9rem;
  }
}
@media (min-width: 900px) {
  #heading-code {
    font-size: 35px;
    margin-bottom: 5rem;
  }

  .container-code {
    gap: 50px;
  }
  .card-code {
    width: 350px;
    padding: 40px;
  }
  .code-box {
    width: 500px;
    height: 380px;
    font-size: 0.95rem;
  }
}


.test {
  margin: 0 auto;
  margin-top: 5rem;
  display: flex;
  /* align-items: center; */
  justify-content: center;
}



.footer {
  padding-top: 50px;
  margin-top: 50px;
  animation: fadeUp 1.5s ease;
}

.footer::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, #220337, #0a0c10, #230860);
  background-size: 400% 400%;
  animation: gradientMove 6s ease infinite;
  z-index: -1;
}

.footer-top-border {
  height: 4px;
  background: linear-gradient(to right, #a855f7, #ec4899, #f97316);
  margin-bottom: 40px;
  animation: gradientShift 6s linear infinite alternate;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1300px;
  margin: auto;
  padding: 0 20px;
  gap: 80px;
}

.footer-col {
  flex: 1 1 200px;
  margin-bottom: 30px;
}

.footer-logo {
  color: #fff;
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 15px;
}

.footer-logo span {
  color: #a855f7;
}

.footer-desc {
  line-height: 1.6;
  font-size: 15px;
  margin-bottom: 20px;
}

.footer-social a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  color: #c5c5c5;
  background: #8e3cdb;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  transition: all 0.3s ease;
  font-size: 15px;
  text-decoration: none;
}

.footer-social a:hover {
  transform: scale(1.2);
  color: #fff;
}

.footer-social a:nth-child(1):hover {
  background: #0a66c2;
}
.footer-social a:nth-child(2):hover {
  background: #ff0000;
}
.footer-social a:nth-child(3):hover {
  background: linear-gradient(
    45deg,
    #feda75,
    #fa7e1e,
    #d62976,
    #962fbf,
    #4f5bd5
  );
}

.footer-col h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
}

.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #c5c5c5;
  text-decoration: none;
  display: inline-block;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-col ul li a:hover {
  color: #a855f7;
  transform: translateX(10px);
}

.footer-col p {
  color: #c5c5c5;
  line-height: 1.7;
  font-size: 15px;
}

.footer-col p i {
  margin-right: 20px;
  margin-bottom: 10px;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #1f1f23;
  padding: 15px 0;
  margin-top: 20px;
  font-size: 14px;
  color: white;
}



@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gradientShift {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(360deg);
  }
}



@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 25px;
    text-align: center;
  }

  .footer-col {
    flex: 1 1 100%;
  }

  .footer-social {
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer {
    padding-top: 30px;
  }

  .footer-col h3 {
    font-size: 16px;
  }

  .footer-col p,
  .footer-col ul li a {
    font-size: 14px;
  }

  .footer-bottom {
    font-size: 13px;
  }
}



@media (min-width: 1440px) {

  .feature-para,
  p {
    font-size: 1.3rem;
  }
}



@media (max-width: 1439px) and (min-width: 1021px) {
  .container {
    gap: 40px;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .img-container img {
    width: 400px;
    height: 400px;
  }
}



@media (max-width: 1020px) and (min-width: 768px) {
  .hero-section {
    padding-top: 8rem;
  }

  .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-btn {
    justify-content: center;
  }
  .hero-content {
    width: 80%;
  }
  .hero-section {
    padding-top: 8rem;
    padding-left: 0px;
    padding-right: 0px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
    margin-top: 5rem;
  }

  .feature-para,
  p {
    font-size: 1.1rem;
  }

  .img-container img {
    width: 300px;
    height: 300px;
  }

  .cards-container {
    gap: 1.5rem;
  }
}



@media (max-width: 767px) {
  header img {
    width: 9rem;
  }

  .hero-section {
    padding-top: 6rem;
  }

  .hero-content h1 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-top: 5rem;
  }

  .slogan {
    font-size: 1.2rem;
  }

  .cta-button {
    font-size: 14px;
    padding: 8px 16px;
  }

  .img-container img {
    width: 250px;
    height: 250px;
  }

  .flip-card {
    width: 280px;
    height: 370px;
  }

  .features-section1 h1,
  .features-section2 h1 {
    font-size: 36px;
  }

  .feature-para {
    font-size: 16px;
    width: 90%;
  }

  .footer-container {
    gap: 40px;
  }

  .footer-col h3 {
    font-size: 16px;
  }
}



@media (max-width: 479px) {

  header img {
    width: 8rem;
  }

  .hero-section {
    padding-top: 5rem;
  }

  .hero-content h1 {
    font-size: 1.5rem;
    margin-top: 6rem;
  }

  .slogan {
    font-size: 1rem;
  }

  .cta-button {
    font-size: 12px;
    padding: 7px 12px;
  }

  .img-container img {
    width: 200px;
    height: 200px;
  }

  .flip-card {
    width: 240px;
    height: 340px;
  }

  .features-section1 h1,
  .features-section2 h1 {
    font-size: 30px;
  }

  .feature-para {
    font-size: 14px;
  }

  .footer-bottom {
    font-size: 12px;
  }
}

.floating-icon-left,
.floating-icon-right {
  color: #ffbf00;
  font-size: 1rem;
  margin-left: 5px;
  display: inline-block;
  animation: floatIconDecor 3s ease-in-out infinite;
}

.floating-icon {
  display: inline-block;
  animation: floatIconDecor 3s ease-in-out infinite;
}

@keyframes floatIconDecor {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px) rotate(10deg);
  }
}

.floating-icon-left {
  position: absolute;
  top: 20%;
  left: -10px;
  font-size: 1.2rem;
  animation-delay: 0s;
}

.floating-icon-right {
  position: absolute;
  top: 10%;
  right: -10px;
  font-size: 1.5rem;
  animation-delay: 1.5s;
}

@keyframes floatIconDecor {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px) rotate(10deg);
  }
}

/* certificate */

.certificate-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;

  background: #fff;
  max-width: 1280px;
  margin: 0px auto;
  padding: 3rem 2rem;

  box-shadow: 0 0 10px white;
  transition: transform 0.8s ease, box-shadow 0.6s ease;
  animation: containerFloat 4s ease-in-out infinite;
  border-radius: 10px;
  margin: 30px;
  margin-top: 5rem;
}

.certificate-section:hover {
  box-shadow: 0 0 20px rgb(143, 143, 225);
  transform: translateY(-8px);
}

.cert-left {
  flex: 1;
  min-width: 280px;
}

.cert-left h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #000;
  animation: floatText 4s ease-in-out infinite;
}

.cert-left h2 span {
  color: purple;
  display: inline-block;
  animation: floatTextDiagonal 4s ease-in-out infinite;
}

.cert-points {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.cert-point {
  display: flex;
  align-items: center;
  background: #f8f8ff;
  border-radius: 12px;
  padding: 1rem 1.2rem;
  gap: 1rem;
  width: 100%;
  box-shadow: 0 2px 10px rgba(68, 68, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cert-point i {
  font-size: 1.6rem;
  color: #4458ff;
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(68, 88, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.cert-point:hover i {
  background: #4458ff;
  color: #fff;
  transform: scale(1.1) rotate(10deg);
}

.cert-point h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 0.2rem;
}

.cert-point p {
  color: #444;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.cert-enroll-btn {
  box-shadow: 0 0 15px rgba(225, 42, 219, 0.477);
  background: linear-gradient(45deg, #7f0a94, #8427cc, #6f9aff);
  color: white;
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 1.5rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  animation: floatButton 3s ease-in-out infinite;
}
.cert-enroll-btn a {
  text-decoration: none;
  color: white;
}

.cert-enroll-btn:hover {
  background: linear-gradient(45deg, #8427cc, #7f0a94, #6f9aff);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 25px rgba(225, 42, 219, 0.6);
}

.cert-right {
  flex: 1;
  /* min-width: 280px; */
  text-align: center;
}

.cert-right .sub-head {
  font-weight: 700;
  margin-bottom: 1rem;
  animation: floatText 4s ease-in-out infinite;
  color: black;
}

.cert-right .sub-head span {
  color: purple;
  display: inline-block;
  animation: floatTextDiagonal 4s ease-in-out infinite;
}

.cert-right img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 1s ease, box-shadow 0.3s ease;
  animation: floatImage 6s ease-in-out infinite;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cert-right img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@keyframes floatText {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes floatTextDiagonal {
  0%,
  100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(3px, -5px);
  }
  50% {
    transform: translate(0, -8px);
  }
  75% {
    transform: translate(-3px, -5px);
  }
}

@keyframes floatIcon {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes floatButton {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes floatImage {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@media (max-width: 1024px) {
  .certificate-section {
    gap: 2rem;
    padding: 2rem;
    margin-top: 5rem;
  }
  .cert-left h2 {
    font-size: 2rem;
  }
  .cert-point h3 {
    font-size: 1rem;
  }
  .cert-point p {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .certificate-section {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }
  .cert-point {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 0.5rem;
  }
  .cert-left h2 {
    font-size: 1.8rem;
  }
  .cert-point h3 {
    font-size: 0.95rem;
  }
  .cert-point p {
    font-size: 0.85rem;
  }
  .cert-enroll-btn {
    margin: 1.5rem auto 0;
  }
  .cert-enroll-btn a {
    text-decoration: none;
    color: white;
  }
  .cert-point i {
    display: none;
  }

  .cert-points {
    align-items: center;
  }
}

@media (max-width: 480px) {
  .cert-left h2 {
    font-size: 1.5rem;
  }
  .cert-point h3 {
    font-size: 0.9rem;
  }
  .cert-point p {
    font-size: 0.8rem;
  }
  .cert-enroll-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
  .cert-enroll-btn a {
    text-decoration: none;
    color: white;
  }
  .cert-point i {
    display: none;
  }
}

@media (max-width: 360px) {
  .cert-left h2 {
    font-size: 1rem;
  }
  .cert-right p {
    font-size: 0.9rem;
  }

  .cert-point {
    flex-direction: column;
    gap: 0rem;
    width: 50%;
    padding: 0;
  }
  .cert-point i {
    display: none;
  }
}


.STRIKE-advantage {
  color: #fff;
  padding: 80px 10%;
  display: flex;
  justify-content: center;
  background: radial-gradient(circle at top, #220337, #0a0c10, #230860);
  border-radius: 20px;
  border: 1px solid rgba(0, 191, 255, 0.4);
  box-shadow: inset 0 0 20px rgba(0, 191, 255, 0.3);
  transition: transform 0.8s ease, box-shadow 0.6s ease;
  animation: strikeFloat 4s ease-in-out infinite;
  margin: 5rem auto;
  max-width: 1200px;
  margin-top: 10rem;
  flex-wrap: wrap;
}

.STRIKE-advantage:hover {
  box-shadow: 0 0 30px rgba(0, 191, 255, 0.5);
  transform: translateY(-8px);
}

@keyframes strikeFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}


.strike-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
  width: 100%;
  animation: fadeSlide 1.5s ease forwards;
}


.text-strike {
  flex: 1 1 300px;
  max-width: 500px;
  transform: translateY(50px);
  opacity: 0;
  animation: fadeUp 1.5s ease 0.5s forwards;
  text-align: center;
  margin: 0 auto;
}


.brand-strike {
  text-align: center;
  margin-bottom: 15px;
}

.brand-name-strike {
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  animation: fadeSlide 1.5s ease forwards;
}

.strike-name {
  background: linear-gradient(90deg, #9b5df7, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.strike-tagline {
  font-weight: 700;
  font-size: 1.3rem;
  background: linear-gradient(90deg, #9b5df7, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  margin-top: 10px;
  letter-spacing: 1px;
}

.strike-description {
  text-align: center;
  color: #bbb;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 10px auto 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1.2s ease 0.8s forwards;
}


.strike-founder {
  margin-top: 20px;
  text-align: center;
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(90deg, #7f41dd, #03bfe5);
  padding: 10px 18px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 0 15px rgba(155, 93, 247, 0.15);
  backdrop-filter: blur(6px);
  transition: all 0.4s ease;
  justify-content: center;
}

.strike-founder:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 0 15px #7f41dd;
}

.founder-label {
  color: #fff;
  font-weight: 500;
}

.founder-name {
  font-weight: 600;
  background: linear-gradient(90deg, #6409ee, #16879d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.chart-strike {
  flex: 1 1 450px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  padding: 25px;
  box-shadow: 0 0 30px rgba(155, 93, 247, 0.15);
  transition: 0.4s;
  animation: floatCard 4s ease-in-out infinite alternate;
  margin: 0 auto;
}

.chart-strike:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 0 40px rgba(155, 93, 247, 0.25);
}

.chart-header {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: #e0e0e0;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.bar-chart {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.bar-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transform: translateY(20px);
  animation: slideBarItem 1s ease forwards;
}

.bar-item:nth-child(1) {
  animation-delay: 0s;
}
.bar-item:nth-child(2) {
  animation-delay: 0.2s;
}
.bar-item:nth-child(3) {
  animation-delay: 0.4s;
}
.bar-item:nth-child(4) {
  animation-delay: 0.6s;
}

.bar {
  position: relative;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  height: 14px;
  overflow: hidden;
}

.fill {
  position: absolute;
  height: 100%;
  border-radius: 10px;
  transition: width 1.2s ease;
  opacity: 0;
  animation: growBar 1.2s ease forwards;
}

.STRIKE-fill {
  background: linear-gradient(90deg, #9b5df7, #00d4ff);
  box-shadow: 0 0 12px #9b5df7;
  animation-delay: 0.3s;
}

.other-fill {
  background: rgba(200, 200, 200, 0.3);
  animation-delay: 0.3s;
}

.legend {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 25px;
  color: #aaa;
  font-size: 0.9rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
}

.STRIKE-dot {
  background: linear-gradient(90deg, #9b5df7, #00d4ff);
}
.other-dot {
  background: #888;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes floatCard {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-8px);
  }
}

@keyframes growBar {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideBarItem {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@media (max-width: 1024px) {
  .STRIKE-advantage {
    margin: 3rem 1rem;
    padding: 60px 6%;
  }
}

@media (max-width: 900px) {
  .strike-content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .brand-name-strike {
    font-size: 2.4rem;
  }

  .chart-strike {
    width: 100%;
    max-width: 600px;
  }
  .text-strike {
    flex: 1 1 200px;
  }
}

@media (max-width: 600px) {
  .STRIKE-advantage {
    padding: 40px 5%;
    margin: 2rem 1rem;
    border-radius: 15px;
  }

  .brand-name-strike {
    font-size: 2rem;
  }

  .strike-tagline {
    font-size: 1.1rem;
  }

  .strike-description {
    font-size: 0.95rem;
    padding: 0 10px;
  }

  .strike-founder {
    font-size: 0.85rem;
    padding: 8px 12px;
    gap: 5px;
  }

  .chart-strike {
    padding: 18px 12px;
    box-shadow: 0 0 20px rgba(155, 93, 247, 0.1);
  }

  .chart-header {
    font-size: 1rem;
  }

  .bar-chart {
    gap: 18px;
  }

  .bar {
    height: 10px;
  }

  .founder-label {
    font-size: 0.8rem;
  }
}



::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: linear-gradient(
    180deg,
    #0f0337,
    #35373b,
    #230860
  );
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    #0e1e99,
    #0a0c10,
    #360e93
  ); 
  border-radius: 10px;
  border: 3px solid rgba(34, 3, 55, 0.3); 
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    180deg,
    #232fdb,
    #0a0c10,
    #7f0a94
  ); 
}
