@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  user-select: none;
  scroll-behavior: smooth;
}
:root {
  --btncolor : #4c4cc9;
}
body {
  background: #faf8ff;
  color: #2e1065;
  overflow-x: hidden;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 60px;
  background: #ede9fe;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
header h1 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #4c1d95;
}
nav a {
  margin-left: 25px;
  text-decoration: none;
  color: #4c1d95;
  font-weight: 500;
}
.register-btn {
  background: #6d28d9;
  color: white;
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}
.register-btn:hover {
  background: var(--btncolor);
}

.hero {
  text-align: center;
  background: #f5f3ff;
  background-image: radial-gradient(#ddd6fe 1px, transparent 1px);
  background-size: 40px 40px;
  min-height: 100vh;
}
.hero h2 {
  font-size: 2.4rem;
  color: #4c1d95;
  font-weight: 700;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.1rem;
  color: #5b21b6;
  margin-bottom: 30px;
}
.hero .btn {
  background: #6d28d9;
  color: white;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: 0.3s;
}
.hero .btn:hover {
  background: var(--btncolor);
}

section {
  padding: 80px 40px;
  text-align: center;
}

h3.section-title {
  font-size: 1.8rem;
  color: #4c1d95;
  font-weight: 600;
  margin-bottom: 50px;
}

/* Levels section */
#level {
  min-height: 100vh;
  padding: 4rem;
}
.levels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: auto;
}
.level-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
}
.level-card:hover {
  transform: translateY(-5px);
}
.level-card img {
  width: 50%;
  margin-bottom: 15px;
}
.level-card h4 {
  color: #4c1d95;
  margin-bottom: 10px;
}
.level-card i {
  font-size: 60px;
  padding-bottom: 2rem;
}

.level-card .first {
  color: #c08e47;
}
.level-card .second {
  color: #988686;
}
.level-card .third {
  color: #d94848;
}
.progress {
  height: 6px;
  border-radius: 4px;
  background: #e9d5ff;
  margin-top: 15px;
  position: relative;
}
.progress::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 6px;
  border-radius: 4px;
  background: #7c3aed;
  width: 70%;
}
.subtext {
  color: #6b21a8;
  font-size: 0.9rem;
}

/* Groups */
.groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}
.group-card {
  background: white;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}
.group-card:hover {
  transform: translateY(-5px);
}
.group-card h5 {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 12px;
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: white;
}
.group-card p {
  color: #6b21a8;
  font-size: 0.95rem;
}
.g1 h5 {
  background: #f87171;
} /* red */
.g2 h5 {
  background: #fbbf24;
} /* yellow */
.g3 h5 {
  background: #34d399;
} /* green */
.g4 h5 {
  background: #60a5fa;
} /* blue */
.g5 h5 {
  background: #a78bfa;
} /* purple */
.g6 h5 {
  background: #fb923c;
} /* orange */

footer {
  margin-top: 100px;
  text-align: center;
  padding: 30px;
  background: #7c3aed;
  color: white;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}
.animation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin-bottom: 60px;
}

.animation h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #4c1d95;
  letter-spacing: 1px;
  font-family: cursive;
}

.unique-shape {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle at center, #c4b5fd, #7c3aed);
  box-shadow: 0 0 25px rgba(124, 58, 237, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  animation: glowPulse 3s ease-in-out infinite;
}

.unique-shape .telugu-letter {
  position: absolute;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.8s ease, transform 0.8s ease;
  font-size: 5rem;
  color: white;
  font-weight: 600;
  animation: letterCycle 12s infinite;
}

.unique-shape .telugu-letter:nth-child(1) {
  animation-delay: 0s;
}
.unique-shape .telugu-letter:nth-child(2) {
  animation-delay: 2s;
}
.unique-shape .telugu-letter:nth-child(3) {
  animation-delay: 4s;
}
.unique-shape .telugu-letter:nth-child(4) {
  animation-delay: 6s;
}
.unique-shape .telugu-letter:nth-child(5) {
  animation-delay: 8s;
}
.unique-shape .telugu-letter:nth-child(6) {
  animation-delay: 10s;
}

@keyframes glowPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 25px rgba(124, 58, 237, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(124, 58, 237, 0.8);
  }
}

@keyframes letterCycle {
  0%,
  15% {
    opacity: 1;
    transform: scale(1);
  }
  20%,
  100% {
    opacity: 0;
    transform: scale(0.9);
  }
}
.morph-text {
  font-size: 4rem;
  font-weight: 1000;
  color: #6d28d9;
  display: inline-block;
  letter-spacing: 2px;
  opacity: 1 !important;
  transform: none !important;
  font-family: "Momo Trust Display", sans-serif;
}

.morph-text span {
  display: inline-block;
  opacity: 1;
  transition: all 0.25s ease-in-out;
}
.contact {
  min-height: 50vh;
  width: 100%;
}
.call {
  display: flex;
  margin: 2rem;
  cursor: pointer;
}
.call i {
  padding-right: 4rem;
  font-size: 2rem;
}
.contact iframe {
  min-width: 90%;
  border: 2px dotted purple;
  padding-top: 5rem;
}
