* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #2563eb;
  --secondary: #ec4899;
  --dark: #111827;
  --light: #f3f4f6;
  --gray: #4b5563;
}

body {
  background-color: var(--dark);
  color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(17, 24, 39, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background-color: var(--light);
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.nav-links a {
  color: var(--light);
  text-decoration: none;
  margin-left: 2rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--secondary);
}

@media (max-width: 768px) {
  .nav-links {
    width: 100%;
    display: none;
    text-align: center;
    padding: 1rem 0;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links a {
    margin: 0;
    padding: 0.5rem 0;
    display: block;
  }

  .menu-toggle {
    display: block;
    cursor: pointer;
  }
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 2rem;
}

.shape-container {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.3;
  animation: float 20s infinite;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: var(--primary);
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}

.shape-2 {
  width: 250px;
  height: 250px;
  background: var(--secondary);
  top: 50%;
  right: 20%;
  animation-delay: -5s;
}

.shape-3 {
  width: 200px;
  height: 200px;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  bottom: 20%;
  left: 30%;
  animation-delay: -10s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(50px, 50px) rotate(90deg);
  }
  50% {
    transform: translate(0, 100px) rotate(180deg);
  }
  75% {
    transform: translate(-50px, 50px) rotate(270deg);
  }
}

.hero-content {
  max-width: 800px;
  text-align: center;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(to right, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--gray);
}

@media (max-width: 768px) {
  .hero {
    padding: 1rem;
    padding-top: 6rem;
  }

  .hero p {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .shape {
    opacity: 0.2;
  }
}

/* Button Styles */
.shadow__btn {
  padding: 1rem 2.5rem 1rem 2rem;
  border: none;
  font-size: 1.1rem;
  color: #fff;
  border-radius: 50px;
  letter-spacing: 0px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.5s;
  position: relative;
  overflow: hidden;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  box-shadow: 0 0 25px rgb(37, 99, 235);
}

.shadow__btn:hover {
  box-shadow: 0 0 5px rgb(37, 99, 235), 0 0 25px rgb(37, 99, 235),
    0 0 50px rgb(37, 99, 235), 0 0 100px rgb(37, 99, 235);
  transform: translateY(-3px);
}

.shadow__btn::after {
  content: '→';
  position: absolute;
  right: 15px;
  opacity: 0;
  transition: all 0.3s ease;
}

.shadow__btn:hover::after {
  opacity: 1;
  right: 20px;
}

/* Mentor Section */
.mentor {
  padding: 6rem 2rem;
  background: linear-gradient(to bottom, var(--dark), #1a1f2b);
}

.mentor-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 0 1rem;
}

.mentor-image img {
  width: 85%;
  margin-left: 15px;
  border-radius: 100%;
}

.mentor-info h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.mentor-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.stat {
  text-align: center;
}

.number {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
}

@media (max-width: 768px) {
  .mentor-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .mentor-image img {
    width: 60%;
    margin: 0 auto;
  }

  .mentor-stats {
    gap: 1rem;
  }
}

/* Features Section */
.features {
  padding: 8rem 2rem;
  background: linear-gradient(to bottom, var(--dark), #1a1f2b);
}

.features h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 4rem;
  background: white;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--secondary);
  box-shadow: 0 10px 30px rgba(236, 72, 153, 0.1);
}

.feature-card .feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.664);
  line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
  padding: 5rem 2rem;
  background: #1a1f2b;
}

.testimonials h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 4rem;
}

.testimonials-slider {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding: 1rem;
  scrollbar-width: none;
}

.testimonials-slider::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 20px;
  min-width: 300px;
  flex: 1;
}

.testimonial-card:hover {
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.5);
}

.quote {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.author {
  font-weight: 600;
  color: var(--secondary);
}

.role {
  color: var(--gray);
  font-size: 0.9rem;
}

/* Countdown Section */
.countdown {
  padding: 4rem 2rem;
  background: var(--dark);
  text-align: center;
}

.timer {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.time-block {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 10px;
  min-width: 100px;
}

.time-block span {
  display: block;
}

.time-block .days,
.time-block .hours,
.time-block .minutes,
.time-block .seconds {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary);
}

@media (max-width: 768px) {
  .timer {
    gap: 1rem;
  }

  .time-block {
    padding: 1rem;
    min-width: 80px;
  }

  .time-block .days,
  .time-block .hours,
  .time-block .minutes,
  .time-block .seconds {
    font-size: 1.8rem;
  }
}

/* Pricing Section */
.pricing {
  padding: 8rem 2rem;
  background: linear-gradient(to bottom, #1a1f2b, var(--dark));
}

.pricing h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 4rem;
  background: white;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  position: relative;
  display: flex;
  flex-direction: column;
  transform: translateY(0);
}

.pricing-card:hover:not(.popular) {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
}

.pricing-card.popular {
  border-color: var(--secondary);
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(236, 72, 153, 0.2);
  z-index: 1;
}

.popular-tag {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(to right, var(--primary), var(--secondary));
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-header h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.price {
  position: relative;
  margin: 1.5rem 0;
}

.original-price {
  font-size: 1.5rem;
  color: var(--gray);
  text-decoration: line-through;
  margin-right: 0.5rem;
}

.current-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
}

.discount {
  position: absolute;
  top: -10px;
  right: 0;
  background: var(--secondary);
  color: white;
  padding: 0.2rem 0.5rem;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  transform: translateX(50%) rotate(15deg);
}

.pricing-description {
  color: var(--gray);
  font-size: 0.9rem;
}

.pricing-features {
  margin-bottom: 2rem;
  flex-grow: 1;
}

.pricing-features ul {
  list-style: none;
  padding: 0;
}

.pricing-features li {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}

.feature-check {
  color: var(--primary);
  margin-right: 0.5rem;
  font-weight: bold;
}

.feature-disabled {
  color: var(--gray);
}

.pricing-btn {
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  color: white;
  border: none;
  padding: 1rem 2.5rem 1rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.pricing-btn:hover {
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.5);
  transform: translateY(-5px);
}

.pricing-btn::after {
  content: '→';
  position: absolute;
  right: 20px;
  opacity: 0;
  transition: all 0.3s ease;
}

.pricing-btn:hover::after {
  opacity: 1;
  right: 25px;
}

/* FAQ Section */
.faq {
  padding: 8rem 2rem;
  background: #1a1f2b;
}

.faq h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 4rem;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.faq-item {
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.1);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer.active {
  max-height: 500px;
  padding: 1.5rem;
}

@media (max-width: 768px) {
  .faq {
    padding: 4rem 1rem;
  }

  .faq h2 {
    font-size: 2rem;
  }

  .faq-question {
    font-size: 1rem;
    padding: 1rem;
  }

  .faq-answer {
    font-size: 0.9rem;
    padding: 0 1rem 1rem;
  }
}

/* Footer */
.footer {
  padding: 4rem 2rem;
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.social-links a {
  color: var(--light);
  text-decoration: none;
  margin-left: 2rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--secondary);
}

.footer-bottom {
  text-align: center;
  color: var(--gray);
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.floating-cta.visible {
  opacity: 1;
  transform: translateY(0);
}

.hover-button {
  background: linear-gradient(to right, var(--primary), var(--secondary));
  color: white;
  border: none;
  padding: 1rem 2.5rem 1rem 2rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(37, 99, 235, 0.5);
}

.hover-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(37, 99, 235, 0.8);
}

.hover-button::after {
  content: '→';
  position: absolute;
  right: 15px;
  opacity: 0;
  transition: all 0.3s ease;
}

.hover-button:hover::after {
  opacity: 1;
  right: 20px;
}

@media (max-width: 768px) {
  .floating-cta {
    bottom: 1rem;
    right: 1rem;
  }

  .floating-cta .hover-button {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* General Responsive Design */
@media (max-width: 768px) {
  section {
    padding: 4rem 1rem;
  }

  section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .pricing-card.popular {
    transform: scale(1);
    margin: 2rem 0;
  }

  .time-block {
    min-width: 120px;
  }
}

/* Animations */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-in {
  animation: slideIn 0.5s ease forwards;
}
