@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  src: local('Poppins Light'), local('Poppins-Light'), url(fonts/poppins-light.woff2) format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: local('Poppins Regular'), local('Poppins-Regular'), url(fonts/poppins-regular.woff2) format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  src: local('Poppins SemiBold'), local('Poppins-SemiBold'), url(fonts/poppins-semibold.woff2) format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: local('Poppins Bold'), local('Poppins-Bold'), url(fonts/poppins-bold.woff2) format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 800;
  src: local('Poppins ExtraBold'), local('Poppins-ExtraBold'), url(fonts/poppins-extrabold.woff2) format('woff2');
}

.icon-graduation::before { content: "🎓"; }
.icon-mobile::before { content: "📱"; }
.icon-arrow::before { content: "→"; }
.icon-target::before { content: "🎯"; }
.icon-bulb::before { content: "💡"; }
.icon-quote::before { content: '"'; }
.icon-book::before { content: "📖"; }
.icon-student::before { content: "👨‍🎓"; }
.icon-crown::before { content: "👑"; }
.icon-check::before { content: "✓"; }
.icon-shield::before { content: "🛡️"; }
.icon-teacher::before { content: "👨‍🏫"; }
.icon-laptop::before { content: "💻"; }
.icon-users::before { content: "👥"; }
.icon-headset::before { content: "🎧"; }
.icon-email::before { content: "✉️"; }
.icon-phone::before { content: "📞"; }
.icon-location::before { content: "📍"; }

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  background: #0f172a;
  color: #fff;
}

.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.particle {
  position: absolute;
  background: rgba(59, 130, 246, 0.5);
  border-radius: 50%;
  animation: float 18s infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) translateX(50px);
    opacity: 0;
  }
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: #3b82f6;
}

.logo i {
  font-size: 2rem;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.app-btn {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #fff;
  border: none;
  padding: 0.9rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
}

.app-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 30px rgba(59, 130, 246, 0.6);
}

.app-btn i {
  font-size: 1.2rem;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 5% 4rem;
  text-align: center;
}

.hero-content {
  max-width: 1200px;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% {
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.5));
  }
  50% {
    filter: drop-shadow(0 0 40px rgba(59, 130, 246, 0.8));
  }
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #94a3b8;
  margin-bottom: 3rem;
  animation: fadeIn 1.5s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.stat-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: all 0.3s ease;
  animation: scaleIn 0.8s ease-out backwards;
}

.stat-item:nth-child(1) {
  animation-delay: 0.2s;
}

.stat-item:nth-child(2) {
  animation-delay: 0.4s;
}

.stat-item:nth-child(3) {
  animation-delay: 0.6s;
}

.stat-item:nth-child(4) {
  animation-delay: 0.8s;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.stat-item:hover {
  transform: translateY(-10px);
  border-color: #3b82f6;
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.3);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: #3b82f6;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  color: #94a3b8;
}

.cta-btn {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #fff;
  border: none;
  padding: 1.2rem 3rem;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 30px rgba(59, 130, 246, 0.5);
}

.cta-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 50px rgba(59, 130, 246, 0.7);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

.mission-vision {
  padding: 6rem 0;
  background: rgba(255, 255, 255, 0.02);
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.mv-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 3rem;
  border-radius: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.mv-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(59, 130, 246, 0.1), transparent);
  transform: rotate(45deg);
  transition: all 0.6s ease;
}

.mv-card:hover::before {
  left: 100%;
}

.mv-card:hover {
  transform: translateY(-15px);
  border-color: #3b82f6;
  box-shadow: 0 15px 60px rgba(59, 130, 246, 0.4);
}

.mv-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 2rem;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.mv-card h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #3b82f6;
}

.mv-card p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #94a3b8;
}

.quotes-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(96, 165, 250, 0.05) 100%);
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #94a3b8;
  margin-bottom: 4rem;
}

.quotes-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto 2rem;
  min-height: 250px;
}

.quote-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 3rem;
  border-radius: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(59, 130, 246, 0.2);
  text-align: center;
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.5s ease;
}

.quote-card.active {
  opacity: 1;
  transform: scale(1);
  position: relative;
}

.quote-icon {
  font-size: 3rem;
  color: #3b82f6;
  margin-bottom: 1.5rem;
  opacity: 0.5;
}

.quote-text {
  font-size: 1.4rem;
  font-style: italic;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.quote-author {
  font-size: 1.1rem;
  color: #3b82f6;
  font-weight: 600;
}

.quote-dots {
  text-align: center;
}

.dot {
  height: 15px;
  width: 15px;
  margin: 0 8px;
  background-color: rgba(59, 130, 246, 0.3);
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
  background-color: #3b82f6;
  transform: scale(1.3);
}

.plans-section {
  padding: 6rem 0;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.plan-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(59, 130, 246, 0.2);
  text-align: center;
  position: relative;
  transition: all 0.5s ease;
  animation: slideUp 0.8s ease-out backwards;
}

.plan-card:nth-child(1) {
  animation-delay: 0.1s;
}

.plan-card:nth-child(2) {
  animation-delay: 0.3s;
}

.plan-card:nth-child(3) {
  animation-delay: 0.5s;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.plan-card.featured {
  transform: scale(1.08);
  border: 2px solid #3b82f6;
  box-shadow: 0 10px 60px rgba(59, 130, 246, 0.4);
}

.plan-card:hover {
  transform: translateY(-15px);
  border-color: #3b82f6;
  box-shadow: 0 20px 80px rgba(59, 130, 246, 0.5);
}

.plan-card.featured:hover {
  transform: scale(1.1) translateY(-15px);
}

.plan-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.plan-badge.popular {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #fff;
}

.plan-badge.premium {
  background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}

.plan-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #fff;
  margin: 2rem auto 1.5rem;
}

.plan-name {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #fff;
}

.plan-level {
  font-size: 3.2rem;
  font-weight: 800;
  color: #3b82f6;
  margin-bottom: 0.5rem;
}

.plan-period {
  font-size: 1.1rem;
  color: #94a3b8;
  margin-bottom: 2rem;
}

.plan-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
}

.plan-features li {
  padding: 0.8rem 0;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.plan-features i {
  color: #3b82f6;
  font-size: 1.1rem;
}

.plan-btn {
  width: 100%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(37, 99, 235, 0.2) 100%);
  color: #3b82f6;
  border: 2px solid #3b82f6;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.plan-btn:hover {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 25px rgba(59, 130, 246, 0.5);
}

.featured-btn {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #fff;
}

.featured-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 35px rgba(59, 130, 246, 0.7);
}

.performance-section {
  padding: 6rem 0;
  background: rgba(255, 255, 255, 0.02);
}

.performance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.perf-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(59, 130, 246, 0.2);
  text-align: center;
  transition: all 0.5s ease;
}

.perf-card:hover {
  transform: translateY(-10px);
  border-color: #3b82f6;
  box-shadow: 0 15px 50px rgba(59, 130, 246, 0.4);
}

.perf-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: #3b82f6;
  margin-bottom: 1rem;
}

.perf-label {
  font-size: 1rem;
  color: #94a3b8;
  margin-bottom: 1.5rem;
}

.perf-bar {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.perf-progress {
  height: 100%;
  background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%);
  border-radius: 10px;
  animation: progressLoad 2s ease-out;
}

@keyframes progressLoad {
  from {
    width: 0;
  }
}

.why-choose {
  padding: 6rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.feature-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(59, 130, 246, 0.2);
  text-align: center;
  transition: all 0.5s ease;
}

.feature-item:hover {
  transform: translateY(-15px);
  border-color: #3b82f6;
  box-shadow: 0 15px 50px rgba(59, 130, 246, 0.4);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #fff;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  transform: rotateY(360deg);
}

.feature-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.feature-item p {
  color: #94a3b8;
  line-height: 1.6;
}

.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.1) 100%);
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.cta-section p {
  font-size: 1.3rem;
  color: #94a3b8;
  margin-bottom: 2.5rem;
}

.cta-btn-large {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #fff;
  border: none;
  padding: 1.5rem 4rem;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 40px rgba(59, 130, 246, 0.5);
}

.cta-btn-large:hover {
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 15px 60px rgba(59, 130, 246, 0.8);
}

.footer {
  background: rgba(0, 0, 0, 0.3);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h3 {
  color: #3b82f6;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.footer-col h4 {
  color: #3b82f6;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-col p {
  color: #94a3b8;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.8rem;
}

.footer-col ul li a {
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: #3b82f6;
  padding-left: 5px;
}

.footer-col ul li i {
  color: #3b82f6;
  margin-right: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(59, 130, 246, 0.1);
  color: #94a3b8;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1.2rem;
  }
  .navbar {
    padding: 1rem 5%;
  }
  .logo {
    font-size: 1.4rem;
  }
  .app-btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }
  .mv-grid {
    grid-template-columns: 1fr;
  }
  .plans-grid {
    grid-template-columns: 1fr;
  }
  .plan-card.featured {
    transform: scale(1);
  }
  .section-title {
    font-size: 2rem;
  }
  .quote-text {
    font-size: 1.1rem;
  }
}
