

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;

  background: var(--bg-gradient);
  color: var(--text-main);
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;

  height: 65px;
  padding: 0 50px;

 background: rgba(10, 37, 64, 0.9);
backdrop-filter: blur(10px);
  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;
}
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, #00ff9f, #00cfff);
  color: #000;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(0,255,159,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;
}

/* ========================= */
/* SECTION 11: BLOG */
/* ========================= */

/* HEADER */
.s11-header {
  text-align: center;
  padding: 15px 0;
}

.s11-logo {
  width: 220px;
  max-width: 95%;
}
/* SECTION */
.s11-blog {
  background: #020617;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

/* CONTAINER */
.s11-container {
  width: 100%;
  max-width: 850px;
}

/* CARD */
.s11-card {
  background: rgba(255,255,255,0.05);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

/* TITLE */
.s11-title {
  color: #22c55e;
  font-size: 32px;
  margin-bottom: 20px;
}

/* IMAGE */
.s11-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 10px;
}

/* TEXT */
.s11-card p {
  color: #cbd5e1;
  line-height: 1.7;
}

/* SUB HEADINGS */
.s11-card h2 {
  color: #38bdf8;   /* 🔵 secure blue */
  margin-top: 25px;
  font-weight: 600;
}
/* LIST */
.s11-card ul {
  text-align: left;
  padding-left: 20px;
  margin-top: 10px;
}

.s11-card li {
  list-style: none;
  margin: 8px 0;
  color: #cbd5e1;
  position: relative;
  padding-left: 20px;
}

.s11-card li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #22c55e;
}

/* BUTTON */
.s11-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 25px;
  background: linear-gradient(90deg, #22c55e, #38bdf8);
  color: #000;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

/* MOBILE */
@media (max-width: 768px) {
  .s11-title {
    font-size: 24px;
  }

  .s11-card {
    padding: 20px;
  }

  .s11-logo {
    width: 110px;
  }
}
@media (max-width: 768px) {
  .s11-logo {
    width: 160px;
  }
}

/* ========================= */
/* SECTION 12: BLOG CARDS */
/* ========================= */

.s12-blog {
  padding: 80px 20px;
  background: #020617;
  text-align: center;
}

.s12-title {
  color: #22c55e;
  font-size: 32px;
  margin-bottom: 40px;
}

.s12-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 900px;
  margin: auto;
}

.s12-card {
  background: rgba(255,255,255,0.05);
  border-radius: 15px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  text-align: left;
}

.s12-img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

.s12-card h3 {
  color: #38bdf8;
  margin: 10px 0;
}

.s12-card p {
  color: #cbd5e1;
  font-size: 14px;
}

.s12-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 15px;
  background: #22c55e;
  color: #000;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

/* MOBILE */
@media (max-width: 768px) {
  .s12-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================= */
/* SECTION 12: MOBILE MENU */
/* ========================= */

/* laptop */
.menu-toggle {
  display: none;
}

#nav-menu {
  display: flex;
  justify-content: center;
  gap: 20px;
}

#hero-section {
  display: block !important;
}

/* mobile */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
    font-size: 26px;
    color: white;
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
    z-index: 1000;
  }

  #nav-menu {
    display: none;
    flex-direction: column;
    background: #020617;
    position: absolute;
    top: 60px;
    width: 100%;
    text-align: center;
    padding: 10px 0;
  }

  #nav-menu.active {
    display: flex;
  }

  #nav-menu a {
    padding: 10px 0;
    display: block;
  }

  /* hero always visible */
  #hero-section {
    display: block !important;
  }
}

/* ========================= */
/* SECTION 12: BACK BUTTON */
/* ========================= */

.back-btn {
  position: fixed;
  top: 20px;
  left: 20px;
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #22c55e;
  cursor: pointer;
  z-index: 2000;
}

.back-btn:hover {
  background: #22c55e;
  color: #000;
}

/* ===================================== */
/* SECTION 13: FINAL UI + COLORS + FIXES */
/* ===================================== */

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

/* BODY */
body {
  font-family: Arial, sans-serif;
  background: #0a0f1c;
  color: #cbd5e1;
}

/* HEADINGS */
h2, h3, h4 {
  color: #00d084; /* soft neo green */
}

/* ========================= */
/* HERO FEATURE PILLS */
/* ========================= */

.hero-features {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}

.hero-features span {
  background: rgba(255,255,255,0.05);
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 14px;
}

/* ========================= */
/* BUTTONS */
/* ========================= */

button, .btn {
  background: #1e90ff;
  color: #fff;
  padding: 12px 22px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover, .btn:hover {
  background: #187bcd;
}

/* ========================= */
/* REMOVE GLOW */
/* ========================= */

* {
  box-shadow: none !important;
}

/* ========================= */
/* SLIDER */
/* ========================= */

.slide {
  display: none;
}

.slide.active {
  display: block;
}

.slider-dots {
  text-align: center;
  margin-top: 15px;
}

.dot {
  height: 10px;
  width: 10px;
  margin: 5px;
  background: #555;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.dot.active {
  background: #00d084;
}

/* ========================= */
/* TESTIMONIAL STARS */
/* ========================= */

.stars {
  color: #facc15;
  margin-bottom: 10px;
}

/* ========================= */
/* MOBILE */
/* ========================= */

@media (max-width: 768px) {

  .hero-features {
    flex-direction: column;
    align-items: center;
  }

}

/* ===== FORCE NEON HEADINGS (FINAL FIX) ===== */

h1, h2, h3,
.hero h1,
.feature-text h3,
.offer-box h3,
.section-title,
h2.classic-grid-title {
    color: #00f5c4 !important;
    text-shadow: 0 0 10px rgba(0, 245, 196, 0.8) !important;
}

/* ===== SIMPLE NEON HEADINGS (NO GLOW) ===== */

h1, h2, h3,
.hero h1,
.feature-text h3,
.offer-box h3,
.section-title,
h2.classic-grid-title {
    color: #00f5c4 !important;
}

/* ===== CLEAN PROFESSIONAL HEADINGS ===== */

h1, h2, h3,
.hero h1,
.feature-text h3,
.offer-box h3,
.section-title,
h2.classic-grid-title {
    color: #cbd5e1 !important; /* soft light grey */
}

/* ===== SIMPLE NEON GREEN (NO EFFECTS) ===== */

h1, h2, h3,
.hero h1,
.feature-text h3,
.offer-box h3,
.section-title,
h2.classic-grid-title {
    color: #00e6a8 !important; /* soft neon green */
    text-shadow: none !important;
}

/* ===== REMOVE ALL GLOW / EFFECT FROM FEATURE BOXES ===== */

.feature-card,
.feature-card:hover,
.feature-card:active {
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
    background: inherit !important;
}

/* inside icons / elements glow remove */
.feature-card * {
    box-shadow: none !important;
    filter: none !important;
}

/* ===== RESPONSIVE DESIGN ===== */

/* MOBILE (up to 768px) */
@media (max-width: 768px) {

  /* NAV */
  nav {
    padding: 10px 15px;
  }

  /* HEADINGS */
  h1 {
    font-size: 28px;
    text-align: center;
  }

  h2 {
    font-size: 24px;
    text-align: center;
  }

  /* HERO */
  .hero {
    padding: 40px 15px;
    text-align: center;
  }

  /* GRID → SINGLE COLUMN */
  .features-grid,
  .pricing-grid,
  .testimonial-grid {
    grid-template-columns: 1fr !important;
    gap: 15px;
  }

  /* BOXES */
  .offer-box,
  .feature-box,
  .testimonial-card {
    padding: 15px;
  }

  /* BUTTON */
  .btn,
  .btn-buy {
    width: 100%;
    text-align: center;
  }

  /* COUNTDOWN */
  .countdown {
    display: flex;
    justify-content: center;
    gap: 10px;
  }
}

/* TABLET (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {

  .features-grid,
  .pricing-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* LARGE SCREENS */
@media (min-width: 1025px) {

  .features-grid,
  .pricing-grid,
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== PRICING CENTER FIX ===== */
.pricing-grid {
    display: flex !important;
    justify-content: center !important;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* cards width control */
.offer-box {
    max-width: 300px;
    width: 100%;
}

