/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #0b0b1e;
  color: #fff;
  line-height: 1.6;
}

/* Header */
header {
  background-color: #111;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
}

.logo {
  font-size: 30px;
  font-weight: bold;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
}

/* Hero Section */
.hero {
  background: linear-gradient(120deg, #1a1a2e, #16213e);
  color: white;
  text-align: center;
  padding: 80px 20px 100px;
}

.gradient-text {
  background: linear-gradient(90deg, #f9ce34, #ee2a7b, #6228d7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  font-size: 52px;
}

.hero p {
  font-size: 20px;
  margin-top: 10px;
}

.cta-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 32px;
  background: #ff6600;
  color: white;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s;
}

.cta-btn:hover {
  background: #e05500;
}

/* Stats Section */
.stats-section {
  display: flex;
  gap: 30px;
  padding: 60px 20px;
  flex-wrap: wrap;
  justify-content: center;
  background-color: #0d0d26;
}

.stat-card {
  width: 240px;
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 8px 30px rgba(0, 255, 150, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 40px rgba(0, 255, 150, 0.25);
}

.stat-card h2 {
  font-size: 2.2rem;
  margin: 0;
}

.stat-card p {
  margin-top: 10px;
  font-size: 1rem;
}

.green-glass h2 { color: #a3ff12; }
.blue-glass h2 { color: #6bc9ff; }
.pink-glass h2 { color: #ff5ca7; }

/* Channel Image Section */
.channel-image-block {
  background-color: #0c0c1d;
  padding: 80px 20px;
  text-align: center;
}

.channel-image-block .section-title {
  color: white;
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 40px;
}

.channel-logos {
  width: 100%;
  max-width: 1350px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 255, 150, 0.15);
  transition: all 0.3s ease-in-out;
}

.channel-logos:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 60px rgba(0, 255, 150, 0.25);
}

/* Why Choose Section */
.why-choose-section {
  background-color: #0d0e22;
  padding: 80px 20px;
  text-align: center;
}

.why-choose-image {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

.why-choose-image:hover {
  box-shadow: 0 0 60px rgba(0, 255, 150, 0.3);
  transform: translateY(-5px);
}

/* Pricing Section */
.pricing-section {
  background: #0c0c1d;
  padding: 80px 20px;
  text-align: center;
}

.pricing-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-weight: bold;
  color: #fff;
}

.pricing-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.pricing-card {
  background: #111;
  padding: 40px 25px;
  border-radius: 18px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  width: 260px;
  transition: transform 0.3s ease;
  color: #fff;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 30px rgba(0, 255, 150, 0.2);
}

.pricing-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.pricing-card .price {
  font-size: 2rem;
  font-weight: bold;
  margin: 20px 0;
  color: #00ff88;
}

.buy-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #ff6600;
  color: #fff;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.buy-btn:hover {
  background: #e05500;
}

/* FAQ */
#faq {
  background: #0b0b1e;
  padding: 70px 20px;
  color: #fff;
}

#faq h2 {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 40px;
}

.faq-item {
  max-width: 800px;
  margin: 0 auto 30px;
  border-bottom: 1px solid #333;
  padding-bottom: 20px;
}

.faq-item h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 1rem;
  line-height: 1.5;
}

/* Footer */
footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 25px;
  font-size: 14px;
}

/* Animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.features-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  font-size: 14px;
  color: #ddd;
  text-align: left;
  line-height: 1.8;
}

.features-list li {
  margin-bottom: 6px;
}
.floating-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  font-size: 15px;
  padding: 16px 20px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  max-width: 250px;
  line-height: 1.4;
  font-family: 'Poppins', sans-serif;
  transition: background-color 0.3s ease;
}

.floating-whatsapp:hover {
  background-color: #1ebd5a;
}

.floating-whatsapp strong {
  font-size: 16px;
}

.floating-whatsapp small {
  font-size: 13px;
  display: block;
  margin-top: 4px;
}
.logo img {
  height: 50px;
  width: auto;
  display: block;
}
@media (max-width: 768px) {
  .logo img {
    width: 120px;
    height: auto;
  }
}
#whatsapp-support {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background-color: #25D366;
  color: white;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  max-width: 280px;
  font-size: 14px;
}

@media (max-width: 768px) {
  #whatsapp-support {
    bottom: 10px;
    right: 10px;
    font-size: 12px;
    padding: 10px 12px;
    max-width: 240px;
  }
}
/* Reviews styles */
.reviews-section { padding:60px 20px; background:#0c0c1d; color:#fff; text-align:center; }
.reviews-section .section-title { font-size:2rem; margin-bottom:20px; }
.review-form { max-width:700px; margin:0 auto 30px; text-align:left; background:rgba(255,255,255,0.03); padding:18px; border-radius:10px; }
.review-form input, .review-form select, .review-form textarea { width:100%; padding:12px; margin:8px 0; border-radius:6px; border:1px solid rgba(255,255,255,0.06); background:rgba(255,255,255,0.02); color:#fff; }
.review-form .btn { background:#ff6600; color:#fff; padding:10px 18px; border-radius:8px; border:none; cursor:pointer; font-weight:bold; }
.reviews-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:20px; max-width:1100px; margin:0 auto; }
.review-card { background:rgba(255,255,255,0.03); padding:16px; border-radius:10px; text-align:left; color:#fff; box-shadow:0 6px 20px rgba(0,0,0,0.5); }
.review-card .stars { color:#ffd200; font-weight:bold; margin-bottom:8px; }
.review-name { color:#ffb86b; margin-top:10px; }
.review-date { font-size:0.8rem; color:#aaa; margin-top:6px; }
#reviewMsg { margin-top:10px; }
/* Reviews Section */
.reviews-section {
  padding: 60px 20px;
  background: #111;
  color: #fff;
  text-align: center;
}

.review-form {
  max-width: 500px;
  margin: 20px auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.review-form input,
.review-form textarea,
.review-form select {
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
}

.review-form button {
  margin-top: 10px;
  background: #ff007f;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.review-form button:hover {
  background: #e60073;
}

/* Reviews list */
.reviews-list {
  margin-top: 40px;
  display: grid;
  gap: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.review-card {
  background: #1b1b1b;
  padding: 20px;
  border-radius: 10px;
  text-align: left;
  border: 1px solid #333;
}

.review-card h4 {
  margin-bottom: 5px;
  color: #ff007f;
}

.review-stars {
  color: gold;
  margin-bottom: 10px;
}

.review-text {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.review-date {
  font-size: 12px;
  color: #aaa;
}




