body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: radial-gradient(circle at top, #0a1f3a, #020617 70%);
  color: white;
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;

  height: 65px;
  padding: 0 50px;

  background: #000814;

  position: sticky;
  top: 0;
  z-index: 1000;
}

/* 🔥 TOP ROOF LIGHT */
header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;

  height: 1px;

  background: linear-gradient(to right, transparent, #00cfff, transparent);

  opacity: 1;
  transform: translateY(0);
  transition: all 0.4s ease;
}

/* SCROLL lo fade + move */
header.scrolled::before {
  opacity: 0;
  transform: translateY(-6px);
}

/* LOGO */
.logo img {
  height: 100px;
  display: block;
  filter: brightness(1.5) drop-shadow(0 0 10px #00cfff);
}

/* NAV */
nav a {
  margin-left: 22px;
  font-size: 14px;
  letter-spacing: 0.4px;
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
  opacity: 0.85;
}

nav a:hover {
  color: #00cfff;
  opacity: 1;
}

/* LINE (BOTTOM — untouched) */
.line {
  height: 1px;
  background: linear-gradient(to right, transparent, #00cfff, transparent);
}

/* HERO */
.hero {
  padding-bottom: 40px; /* 🔥 reduce */

  text-align: center;
  padding: 50px 20px 60px;
}

/* TITLE */
.hero h1 {
  font-size: 60px;
  margin: 0 0 5px;

  background: linear-gradient(90deg, #3b82f6, #00cfff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* SUBTITLE */
.hero h2 {
  margin: 0 0 12px;
  font-size: 22px;
  color: white;
}

/* TEXT */
.hero p {
  max-width: 600px;
  margin: auto;
  color: #aaa;
  font-size: 14px;
}

/* STATS */
.stats {
  margin: 25px 0;
}

.stats h3 {
  font-size: 42px;
  margin: 0;
}

.stats span {
  font-size: 13px;
  color: #aaa;
}

/* BUTTONS */
.buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 24px;
  border-radius: 30px;
  border: 1px solid rgba(0, 207, 255, 0.3);
  background: rgba(10, 25, 50, 0.4);
  transition: 0.3s;
  cursor: pointer;
}

/* HOVER */
.btn:hover {
  box-shadow: 0 0 10px #00cfff;
}

/* ACTIVE CLICK */
.btn.active {
  background: rgba(0, 207, 255, 0.2);
  box-shadow: 0 0 20px #00cfff;
}

/* MOBILE */
@media (max-width: 768px) {

  header {
    flex-direction: column;
    height: auto;
    padding: 10px;
  }

  .logo img {
    height: 80px;
  }

  nav {
    margin-top: 5px;
  }

  nav a {
    font-size: 13px;
    margin-left: 15px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero h2 {
    font-size: 18px;
  }

  .stats h3 {
    font-size: 30px;
  }
}

/* ===== FEATURES SECTION ===== */
/* ===== FEATURES SECTION ===== */
.features {
  padding: 100px 20px;
  background: #020617;
}

/* HEADER */
.features-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-size: 40px;
  color: #4cc9f0;
}

.section-subtitle {
  color: #aaa;
  max-width: 600px;
  margin: 10px auto;
}

/* SLIDER */
.features-slider {
  position: relative;
}

/* CARD */
.feature-card {
  display: none;
  justify-content: center;
}

.feature-card.active {
  display: flex;
}

/* BOX */
.feature-box {
  width: 90%;
  max-width: 1000px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;

  padding: 40px;
  border-radius: 20px;

  /* GLASS */
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);

  box-shadow: 0 0 40px rgba(0,200,255,0.2);
}
.feature-box.reverse {
  flex-direction: row-reverse;
}

/* TEXT */
.feature-text {
  flex: 1;
   width: 50%;
}

.feature-text h3 {
  color: #4cc9f0;
  margin-bottom: 10px;
}

.feature-text p {
  color: #bbb;
  margin-bottom: 15px;
}

.feature-text li {
  margin-bottom: 8px;
  color: #ddd;
}

/* BUTTON */
.btn {
  margin-top: 15px;
  padding: 10px 20px;
  border-radius: 20px;
  border: none;
  background: #00cfff;
  color: #000;
  cursor: pointer;
}

/* IMAGE */
.feature-image {
  flex: 1;
  text-align: center;
}

.feature-image img {
  width: 100%;
  max-width: 420px;

  border-radius: 12px;

  box-shadow:
    0 0 30px rgba(0, 200, 255, 0.25),
    0 0 60px rgba(0, 200, 255, 0.15);

  transition: 0.3s ease;
}
.feature-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;

  padding: 10px;

  background: rgba(255,255,255,0.04);
  border-radius: 15px;

  box-shadow: inset 0 0 20px rgba(255,255,255,0.05);
}

/* DOTS */
.dots {
  text-align: center;
  margin-top: 20px;
}

.dot {
  height: 10px;
  width: 10px;
  background: #555;
  display: inline-block;
  margin: 0 5px;
  border-radius: 50%;
}

.dot.active {
  background: #00cfff;
}

/* MOBILE */
@media (max-width: 768px) {
  .feature-box {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== SECTION 3 ===== */
.section-3 {
  padding: 90px 20px;
  background: #020617;
  text-align: center;
}

.grid-title {
  font-size: 36px;
  color: #4cc9f0;
  margin-bottom: 10px;
}

.grid-subtitle {
  color: #aaa;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 16px;
}

/* GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* CARD */
.feature-item {
  padding: 22px;
  border-radius: 15px;

  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);

  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* GLOW */
.feature-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 15px;
  background: linear-gradient(120deg, transparent, rgba(0,200,255,0.25), transparent);
  opacity: 0;
  transition: 0.4s;
}

.feature-item:hover::before {
  opacity: 1;
}

/* HOVER */
.feature-item:hover {
  transform: translateY(-6px);
  box-shadow:
    0 0 15px rgba(0,200,255,0.25),
    0 0 30px rgba(0,200,255,0.15);
}

/* ICON */
.icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: inline-block;
  animation: float 2.5s ease-in-out infinite;
  text-shadow: 0 0 10px rgba(0,200,255,0.7);
}

/* FLOAT */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}

/* TEXT */
.feature-item h4 {
  color: #4cc9f0;
  margin-bottom: 8px;
  font-size: 18px;
}

.feature-item p {
  color: #bbb;
  font-size: 15px;
  line-height: 1.5;
}

/* MOBILE */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {

  .feature-text {
    text-align: left;   /* center kakunda left */
    width: 100%;
  }

  .feature-text ul {
    padding-left: 20px;
  }

  .feature-text li {
    text-align: left;
  }

}
@media (max-width: 768px) {

  .feature-box {
    flex-direction: column !important;
    align-items: center;
  }

  /* VERY IMPORTANT */
  .feature-box.reverse {
    flex-direction: column !important;
  }

  .feature-text {
    width: 100%;
    text-align: left;
  }

  .feature-image {
    width: 100%;
    margin-top: 20px;
  }

  .feature-image img {
    max-width: 100%;
  }

}

/* ===== SECTION 4 ===== */
/* ===== SECTION 4: PRICING ===== */

.offer-section {
  padding: 100px 20px;
  text-align: center;
  background: #020617;
}

.section-title {
  font-size: 42px;
  background: linear-gradient(90deg, #4cc9f0, #00f5d4);
  -webkit-background-clip: text;
  color: transparent;
}

.section-subtitle {
  color: #aaa;
  max-width: 600px;
  margin: 10px auto 40px;
}

/* GRID */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 900px;
  margin: auto;
}

/* BOX */
.offer-box {
  padding: 30px;
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  transition: 0.3s;
}

/* HOVER */
.offer-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(0,200,255,0.2);
}

/* HIGHLIGHT PLAN */
.highlight {
  box-shadow: 0 0 40px rgba(0,200,255,0.4);
  transform: scale(1.05);
}

/* PRICE */
.price-tag {
  margin: 15px 0;
}

.old-price {
  text-decoration: line-through;
  color: #888;
  margin-right: 8px;
}

.new-price {
  font-size: 32px;
  color: #00f5d4;
  font-weight: bold;
}

/* TIMER */
.timer-text {
  color: #aaa;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin: 20px 0;
}

.countdown span {
  font-size: 34px;
  color: #4cc9f0;
}

.countdown p {
  font-size: 12px;
  color: #aaa;
}

/* BUTTON */
.btn-buy {
  margin-top: 20px;
  padding: 12px 25px;
  border-radius: 25px;
  border: none;
  background: linear-gradient(90deg, #00cfff, #00f5d4);
  color: #000;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(0,200,255,0.6);
  transition: 0.3s;
}

.btn-buy:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== TESTIMONIALS ===== */

.testimonials {
  padding: 100px 20px;
  text-align: center;
  background: #020617;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1000px;
  margin: auto;
}

/* CARD */
.testimonial-card {
  padding: 25px;
  border-radius: 15px;

  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);

  transition: 0.3s;
}

/* HOVER */
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(0,200,255,0.2);
}

/* TEXT */
.review {
  color: #ccc;
  font-size: 14px;
  margin-bottom: 15px;
  line-height: 1.5;
}

.testimonial-card h4 {
  color: #4cc9f0;
}

.testimonial-card span {
  color: #888;
  font-size: 12px;
}

/* MOBILE */
@media (max-width: 768px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== FAQ ===== */

.faq {
  padding: 100px 20px;
  background: #020617;
  text-align: center;
}

.faq-container {
  max-width: 800px;
  margin: auto;
  text-align: left;
}

/* ITEM */
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 15px 0;
  cursor: pointer;
}

/* QUESTION */
.faq-question {
  color: #4cc9f0;
  font-weight: bold;
  position: relative;
}

/* ANSWER */
.faq-answer {
  color: #bbb;
  font-size: 14px;
  margin-top: 10px;
  display: none;
}

/* ACTIVE */
.faq-item.active .faq-answer {
  display: block;
}
/* ===== FAQ MOBILE ===== */
@media (max-width: 768px) {

  .faq-container {
    padding: 0 10px;
  }

  .faq-question {
    font-size: 14px;
  }

  .faq-answer {
    font-size: 13px;
  }

  .faq-item {
    padding: 12px 0;
  }

}

/* ===== CONTACT ===== */

/* ===== CONTACT ===== */

.contact {
  padding: 100px 20px;
  text-align: center;
  background: #020617;
}

.contact-icons {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
}

/* ICON */
.icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: 0.3s;
}

.icon img {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;

  filter: drop-shadow(0 0 15px rgba(0,200,255,0.6));
  transition: 0.3s;
}

.icon span {
  font-size: 14px;
}

/* HOVER EFFECT */
.icon:hover img {
  transform: scale(1.1);
}

/* COLORS */
.whatsapp span {
  color: #25D366;
}

.telegram span {
  color: #0088cc;
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-icons {
    gap: 20px;
  }

  .icon img {
    width: 50px;
    height: 50px;
  }
}
/* ===== FOOTER ===== */
/* ===== FOOTER ===== */

/* ===== FOOTER ===== */

.footer {
  background: #000;
  padding: 60px 20px 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  max-width: 1000px;
  margin: auto;
  align-items: center;
}

/* BRAND */
.footer-brand {
  display: flex;
  flex-direction: column;
}

/* LOGO */
.footer-logo {
  width: 200px; /* 🔥 BIG LOGO */
  filter: drop-shadow(0 0 15px rgba(0,200,255,0.7));
}

/* TAGLINE */
.footer-tagline {
  color: #bbb;
  font-size: 13px;
  margin-top: 8px;
  max-width: 250px;
}

/* LINKS */
.footer-links h4 {
  color: #fff;
  margin-bottom: 10px;
}

.footer-links a {
  display: block;
  color: #bbb;
  text-decoration: none;
  margin-bottom: 6px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #00cfff;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 12px;
  color: #666;
}

/* MOBILE */
@media (max-width: 768px) {

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-tagline {
    text-align: center;
  }

  .footer-logo {
    width: 150px; /* mobile size */
  }
}
/* ===== SECTION COLORS ===== */

.features {
  background: #020617;
}

.advanced {
  background: #030a1a;
}

.offer-section {
  background: #020617;
}

.testimonials {
  background: #030a1a;
}

.faq {
  background: #020617;
}

.contact {
  background: #030a1a;
}

/* ===== HEADING FIX ===== */

.section-title {
  font-size: 42px;
  margin-bottom: 10px;
  margin-top: -20px; /* 👈 koncham paiki */
}

.section-subtitle {
  margin-bottom: 50px;
  color: #aaa;
}
/* ===== SAFE HEADING FIX ===== */

.section-title {
  margin-top: 20px !important;   /* 👈 slight push down */
  margin-bottom: 10px;
}

.section-subtitle {
  margin-bottom: 40px;
}
/* ===== FORCE TOP ALIGN FOR PROBLEM SECTIONS ===== */

/* Section 3 */
.advanced {
  display: block !important;
  padding-top: 80px !important;
}

/* Section 4 */
.offer-section {
  display: block !important;
  padding-top: 80px !important;
}
/* ===== SECTION 3 FIX ===== */
/* ===== SECTION 3 STYLE ===== */
/* ===== SECTION 3 SOFT DIVIDER ===== */

.section-3 {
  background: #020617 !important;
  position: relative;
  padding-top: 80px !important;
}

/* SOFT GLOW LINE */
.section-3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 2px;

  background: linear-gradient(
    to right,
    transparent,
    rgba(0, 207, 255, 0.4),
    transparent
  );
}
/* ===== SECTION 3 LIGHT BG ===== */

.section-3 {
  background: #0a0f1c !important;  /* 👈 light gray-dark */
}
/* ===== FAQ LIGHT GRAY STYLE ===== */

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15); /* 👈 light gray line */
}

.faq-question {
  color: #d1d5db;  /* 👈 light gray text */
}

/* hover effect (optional premium) */
.faq-question:hover {
  color: #ffffff;
}
