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

body {
  font-family: "Rajdhani", sans-serif;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  color: #ffffff;
  overflow-x: hidden;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.logo-img {
  height: 50px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: #64b5f6;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: #90caf9;
  text-shadow: 0 0 10px #64b5f6;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 2rem 2rem;
  background: radial-gradient(ellipse at center, rgba(100, 181, 246, 0.1) 0%, transparent 70%);
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-title {
  font-family: "Orbitron", monospace;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.highlight {
  background: linear-gradient(45deg, #64b5f6, #90caf9, #bbdefb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(100, 181, 246, 0.5);
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: #64b5f6;
}

.stat i {
  font-size: 1.2rem;
}

.hero-cta {
  text-align: center;
}

.price-box {
  background: linear-gradient(135deg, rgba(100, 181, 246, 0.1), rgba(144, 202, 249, 0.1));
  border: 2px solid #64b5f6;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.price-box::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(100, 181, 246, 0.1), transparent);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.old-price {
  font-size: 1.2rem;
  text-decoration: line-through;
  color: #ff5252;
  margin-bottom: 0.5rem;
}

.new-price {
  font-size: 2.5rem;
  font-weight: 900;
  color: #4caf50;
  margin-bottom: 0.5rem;
}

.discount {
  background: #ff5252;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 700;
  display: inline-block;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(45deg, #64b5f6, #42a5f5);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  margin: 0.5rem;
  box-shadow: 0 5px 20px rgba(100, 181, 246, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(100, 181, 246, 0.5);
}

.main-cta {
  font-size: 1.3rem;
  padding: 1.5rem 3rem;
}

.whatsapp-button {
  background: linear-gradient(45deg, #25d366, #128c7e);
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-button:hover {
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Section Titles */
.section-title {
  font-family: "Orbitron", monospace;
  font-size: 2.5rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #64b5f6, #90caf9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  opacity: 0.8;
  margin-bottom: 3rem;
}

/* Carousel Section */
.carousel-section {
  padding: 5rem 0;
  background: rgba(100, 181, 246, 0.05);
}

.carousel-container {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
}

.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.carousel-slide {
  display: none;
  position: relative;
}

.carousel-slide.active {
  display: block;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.slide-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 2rem;
  color: white;
}

.slide-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #64b5f6;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(100, 181, 246, 0.8);
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  background: #64b5f6;
  transform: translateY(-50%) scale(1.1);
}

.prev {
  left: -25px;
}

.next {
  right: -25px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(100, 181, 246, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #64b5f6;
  transform: scale(1.2);
}

/* Method Section */
.method-section {
  padding: 5rem 0;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.method-card {
  background: linear-gradient(135deg, rgba(100, 181, 246, 0.1), rgba(144, 202, 249, 0.05));
  border: 1px solid rgba(100, 181, 246, 0.2);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.method-card:hover {
  transform: translateY(-10px);
  border-color: #64b5f6;
  box-shadow: 0 20px 40px rgba(100, 181, 246, 0.2);
}

.card-icon {
  font-size: 3rem;
  color: #64b5f6;
  margin-bottom: 1rem;
}

.method-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #90caf9;
}

/* Social Proof */
.social-proof {
  padding: 5rem 0;
  background: rgba(100, 181, 246, 0.05);
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.testimonial {
  background: linear-gradient(135deg, rgba(100, 181, 246, 0.1), rgba(144, 202, 249, 0.05));
  border: 1px solid rgba(100, 181, 246, 0.2);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-5px);
  border-color: #64b5f6;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #64b5f6, #42a5f5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.user-info h4 {
  color: #90caf9;
  margin-bottom: 0.2rem;
}

.user-info span {
  opacity: 0.7;
  font-size: 0.9rem;
}

.testimonial p {
  margin-bottom: 1rem;
  line-height: 1.6;
  font-style: italic;
}

.result {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #4caf50;
  font-weight: 700;
}

/* Offer Section */
.offer-section {
  padding: 5rem 0;
}

.offer-box {
  background: linear-gradient(135deg, rgba(100, 181, 246, 0.1), rgba(144, 202, 249, 0.1));
  border: 2px solid #64b5f6;
  border-radius: 20px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.offer-title {
  text-align: center;
  font-family: "Orbitron", monospace;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #ff5252;
}

.offer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.offer-list {
  list-style: none;
}

.offer-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.offer-list i {
  color: #4caf50;
  font-size: 1.2rem;
}

.price-container {
  text-align: center;
  margin-bottom: 2rem;
}

.old-price-large {
  font-size: 1.5rem;
  text-decoration: line-through;
  color: #ff5252;
  margin-bottom: 0.5rem;
}

.new-price-large {
  font-size: 3rem;
  font-weight: 900;
  color: #4caf50;
  margin-bottom: 0.5rem;
}

.savings {
  color: #ff5252;
  font-weight: 700;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta-button.primary {
  background: linear-gradient(45deg, #4caf50, #66bb6a);
  font-size: 1.2rem;
  padding: 1.2rem 2rem;
}

.cta-button.secondary {
  background: linear-gradient(45deg, #25d366, #128c7e);
}

/* Networking Section */
.networking-section {
  padding: 3rem 0;
  background: rgba(37, 211, 102, 0.1);
}

.networking-box {
  text-align: center;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(18, 140, 126, 0.1));
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: 15px;
  padding: 2rem;
}

.networking-box h3 {
  color: #25d366;
  margin-bottom: 1rem;
}

.networking-btn {
  display: inline-block;
  background: linear-gradient(45deg, #25d366, #128c7e);
  color: white;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.networking-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

/* Footer */
.footer {
  background: rgba(10, 10, 10, 0.8);
  padding: 3rem 0;
  border-top: 1px solid rgba(100, 181, 246, 0.2);
}

.footer-content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
}

.footer-logo img {
  height: 60px;
}

.footer-text {
  text-align: center;
}

.footer-contact a {
  color: #25d366;
  text-decoration: none;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  text-decoration: none;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
  z-index: 1000;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .offer-content {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .nav-links {
    display: none;
  }

  .carousel-btn {
    display: none;
  }
}
