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

body {
    font-family: 'Poppins', sans-serif;
    background-color: #05050A;
    color: white;
    overflow-x: hidden;
}

/* HERO */
.hero {
    position: relative;
    height: 100vh;
    background: url('../images/hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5,5,10,0.7), rgba(5,5,10,0.95));
    backdrop-filter: blur(2px);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #FF2FD6;
    text-shadow: 0 0 20px #FF2FD6;
}

.hero p {
    margin: 20px 0;
    font-weight: 300;
    letter-spacing: 2px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #FF2FD6;
    color: #FF2FD6;
    text-decoration: none;
    transition: 0.3s;
    border-radius: 30px;
}

.btn:hover {
    background: #FF2FD6;
    color: black;
    box-shadow: 0 0 20px #FF2FD6;
}

.scroll-indicator {
    position: absolute;
    bottom: 20px;
    font-size: 2rem;
    animation: bounce 2s infinite;
    color: #FF2FD6;
}

/* SECTION */
.section {
    background-color: white;
    padding: 100px 20px;
    text-align: center;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #a71d8ec7;
}

p{
  color: #FF2FD6;
}

/* SPLIT SECTION (Text left) */
.section-split {
  background: white;
}

.split {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  align-items: start;
  text-align: left;
}

.split-title {
  color: #7C3AED;
  font-size: 2.2rem;
  margin-bottom: 18px;
}

.split-text {
  color: black;
  line-height: 1.8;
  margin-bottom: 14px;
  font-weight: 300;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 26px;
}

.badge {
  border: 1px solid rgba(255,47,214,0.45);
  color: #941a7c7a;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  background: rgba(255,47,214,0.06);
}

.btn-small {
  padding: 10px 22px;
  font-size: 0.95rem;
}

/* right side stat card */
.stat-card {
  border: 1px solid rgba(124,58,237,0.35);
  background: rgba(0, 0, 0, 0.03);
  border-radius: 18px;
  padding: 18px;
  backdrop-filter: blur(10px);
}

.stat {
  padding: 14px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.stat:last-child {
  border-bottom: none;
}

.stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #a71d8ec7;
  text-shadow: 0 0 14px rgba(255,47,214,0.35);
}

.stat-label {
  display: block;
  margin-top: 4px;
  color: rgba(121, 40, 146, 0.7);
  font-size: 0.95rem;
}

/* responsive */
@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
  }
}


/* FADE IN ANIMATION */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

.footer {
    padding: 10px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    margin-top: 0px;
    color: rgba(255,255,255,0.6);
}

/*NAVBAR*/

.nav{
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 999;
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 22px;
  background: rgba(5,5,10,0.35);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-logo{ color: #FF2FD6; text-decoration: none; font-weight: 800; letter-spacing: 2px; }
.nav-links a{ color: rgba(255,255,255,0.85); text-decoration: none; margin-left: 18px; }
.nav-links a:hover{ color: #FF2FD6; }
