/* =========================================
   1. RESET & CORE STYLES
   ========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: #00251a;
  color: #fff;
  overflow-x: hidden;
  width: 100%;
}

/* =========================================
   2. VARIABLES
   ========================================= */
:root {
  --gold: #d4a373;
  --gold-glow: #ffcf96;
  --text-gray: #d1d5db;
  --red: #ff4d4d;
  --green: #4ade80;
  --bg-darker: #001a12;
  --emerald: #064e3b;
}

/* =========================================
   3. BACKGROUND ANIMATION
   ========================================= */
#constellation-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* =========================================
   4. HEADER & NAVBAR
   ========================================= */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 5%;
  width: 100%;
  background: rgba(0, 37, 26, 0.95); /* Slightly more opaque */
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.main-logo {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 0 5px rgba(212, 163, 115, 0.3));
}

.brand-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  text-shadow: 0 0 10px rgba(212, 163, 115, 0.3);
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.3s;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-login-desktop {
  padding: 6px 20px;
  border: 1px solid var(--gold);
  border-radius: 50px;
  color: var(--gold);
  text-decoration: none;
  font-size: 0.85rem;
  transition: 0.3s;
  display: inline-block;
}

.btn-login-desktop:hover {
  background: var(--gold);
  color: #000;
}

/* Hide Mobile Elements on Desktop */
.hamburger,
.close-menu,
.btn-login-mobile {
  display: none !important;
}

/* =========================================
   5. BETA OFFER BAR
   ========================================= */
.beta-bar {
  background: linear-gradient(90deg, #c0392b, #e74c3c, #c0392b);
  color: white;
  text-align: center;
  font-size: 0.85rem;
  padding: 8px 0;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease-in-out;
  max-height: 50px;
  opacity: 1;
  overflow: hidden;
}

/* Scroll Hidden State */
.main-header.scrolled .beta-bar {
  max-height: 0;
  padding: 0;
  opacity: 0;
  border-bottom: none;
}

.blink {
  animation: blinker 1.5s linear infinite;
  margin-right: 5px;
  color: #ffeb3b;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.strike {
  text-decoration: line-through;
  opacity: 0.8;
  margin: 0 5px;
}

.free-tag {
  background: #fff;
  color: #c0392b;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 0.8rem;
  margin-left: 5px;
}

/* =========================================
   6. HERO SECTION
   ========================================= */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  padding-top: 160px; /* Accounts for fixed header */
  position: relative;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
}

.text-gold {
  color: var(--gold);
  text-shadow: 0 0 40px rgba(212, 163, 115, 0.3);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-gray);
  max-width: 800px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-sub strong {
  color: #fff;
}

.hero-highlights {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.highlight-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 12px 25px;
  border-radius: 50px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.gold-border {
  border: 1px solid var(--gold);
  color: var(--gold-glow);
  box-shadow: 0 0 15px rgba(212, 163, 115, 0.2);
}

.privacy-text {
  margin-top: 20px;
  font-size: 0.8rem;
  opacity: 0.6;
}

/* Beta Ribbon */
.beta-ribbon {
  position: absolute;
  top: 110px;
  right: 30px;
  background: linear-gradient(90deg, #ff6b6b, #ff8787);
  color: white;
  padding: 10px 25px;
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-radius: 50px;
  font-size: 0.9rem;
  z-index: 20;
  animation: bounceIn 1s ease-out;
}

@keyframes bounceIn {
  0% {
    transform: scale(0);
  }
  80% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.strike-price {
  text-decoration: line-through;
  opacity: 0.8;
  margin-right: 8px;
  font-size: 0.9rem;
}

/* App Launch Badges */
.app-launch-section {
  margin-top: 50px;
  opacity: 0.8;
}

.app-launch-section p {
  font-size: 0.8rem;
  margin-bottom: 10px;
  color: #aaa;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.store-badges {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.store-btn {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid #444;
  color: #ccc;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: not-allowed;
  text-align: left;
}

.store-btn i {
  font-size: 1.8rem;
}

.small-text {
  font-size: 0.6rem;
  display: block;
}

.big-text {
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
}

/* CTA Group */
.cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 30px;
}

.btn-reveal,
.btn-outline-gold {
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.2rem;
  cursor: pointer;
  transition: 0.3s;
  padding: 16px 40px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  border: none;
}

.btn-reveal {
  background: linear-gradient(135deg, #c58e57, #d4a373);
  color: #00251a;
  box-shadow: 4px 4px 0px rgb(59, 46, 32, 0.2);
}

.btn-reveal:hover {
  transform: scale(1.05);
  box-shadow: 4px 4px 0px rgb(59, 46, 32, 0.6);
}

.btn-outline-gold {
  background: rgba(212, 163, 115, 0.1);
  border: 2px solid var(--gold);
  color: var(--gold);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: #000;
  box-shadow: 0 0 30px rgba(212, 163, 115, 0.4);
}

/* =========================================
   7. SHARED SECTIONS STYLES
   ========================================= */
.section-features,
.section-comparison,
.section-experts,
.section-stories,
.section-faq,
.section-sample {
  padding: 100px 20px;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.sub-title {
  color: var(--text-gray);
  margin-bottom: 50px;
  font-size: 1.1rem;
}

.bg-darker {
  background: var(--bg-darker);
}

.section-comparison,
.section-faq,
.section-sample {
  background: #00150f;
}

.grid-features,
.grid-3,
.stories-grid,
.faq-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.feature-item,
.expert-card,
.story-card {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
}

.icon-3d {
  font-size: 3.5rem;
  color: var(--emerald);
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.feature-item h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.feature-item p {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.6;
}

/* =========================================
   8. SAMPLE REPORT
   ========================================= */
.sample-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.sample-text {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.sample-list {
  list-style: none;
  margin-bottom: 30px;
}

.sample-list li {
  margin-bottom: 15px;
  font-size: 1rem;
  color: #ccc;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sample-list li i {
  color: var(--green);
}

.sample-list li strong {
  color: #fff;
}

.sample-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.pdf-mockup {
  width: 250px;
  height: 350px;
  background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
  border: 1px solid var(--gold);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  position: relative;
}

.pdf-mockup i {
  font-size: 4rem;
  color: var(--text-gray);
  margin-bottom: 20px;
}

.pdf-mockup span {
  color: var(--gold);
  font-weight: bold;
  letter-spacing: 2px;
}

/* =========================================
   9. STORIES & CARDS
   ========================================= */
.whatsapp-screen {
  text-align: center;
  margin-bottom: 20px;
  background: transparent;
  border: none;
  padding: 0;
}

.chat-img {
  width: 70%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: inline-block;
  transition: all 0.3s ease;
}

.story-card:hover .chat-img {
  transform: scale(1.03);
  border-color: var(--gold);
  box-shadow: 0 10px 25px rgba(212, 163, 115, 0.2);
}

.story-card p {
  font-style: italic;
  color: #ccc;
  font-size: 0.9rem;
}

/* Experts */
.expert-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(212, 163, 115, 0.2);
  transition: 0.3s;
}

.expert-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
}

.expert-img img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  object-fit: cover;
  margin-bottom: 15px;
}

.expert-role {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.expert-desc {
  font-style: italic;
}

/* =========================================
   10. COMPARISON TABLE
   ========================================= */
.comparison-table-wrapper {
  width: 100%;
  overflow-x: auto;
  padding-bottom: 20px;
}

.comparison-table {
  min-width: 950px;
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #333;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  border-bottom: 1px solid #222;
}

.row:last-child {
  border-bottom: none;
}

.header {
  background: rgba(212, 163, 115, 0.1);
  font-weight: 700;
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.col {
  padding: 25px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.col.feature {
  justify-content: flex-start;
  text-align: left;
  color: #ddd;
  padding-left: 40px;
  font-weight: 500;
}

.col.others {
  color: #888;
  font-size: 0.95rem;
}

.col.origo {
  background: rgba(212, 163, 115, 0.15);
  border-left: 2px solid var(--gold);
  color: #fff;
  font-weight: 600;
  font-size: 1.05rem;
  position: relative;
}

.text-red {
  color: var(--red);
  margin-right: 8px;
  font-size: 1.2rem;
}

.text-green {
  color: var(--green);
  margin-right: 8px;
  font-size: 1.2rem;
}

/* =========================================
   11. FAQ & FOOTER
   ========================================= */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 40px auto 0 auto;
  text-align: left;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 163, 115, 0.2);
  padding: 25px;
  border-radius: 15px;
  transition: 0.3s;
}

.faq-item:hover {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.05);
}

.faq-item h3 {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 15px;
  display: block;
}

.faq-item p {
  color: var(--text-gray);
  line-height: 1.6;
  font-size: 0.95rem;
}

.main-footer {
  background: #000a08;
  padding: 80px 20px 20px 20px;
  border-top: 1px solid rgba(212, 163, 115, 0.1);
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-col p {
  color: #888;
  line-height: 1.6;
  margin-bottom: 25px;
  max-width: 300px;
}

.footer-col h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 15px;
}

.footer-col ul li a {
  color: #888;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: var(--gold);
  padding-left: 5px;
}

.social-icons-footer a {
  color: var(--gold);
  font-size: 1.5rem;
  margin-right: 20px;
  transition: 0.3s;
  display: inline-block;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
  color: #666;
}

/* =========================================
   12. POPUPS & MODALS
   ========================================= */
.live-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: rgba(0, 37, 26, 0.95);
  border: 1px solid var(--gold);
  padding: 15px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  z-index: 100;
  transform: translateX(-150%);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.live-popup.show {
  transform: translateX(0);
}

.popup-icon {
  font-size: 1.5rem;
  color: #4ade80;
}

.popup-text {
  font-size: 0.9rem;
  color: #fff;
}

.popup-text strong {
  color: var(--gold);
}

/* Modal Core */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s;
  overflow-y: auto;
  padding: 20px 0;
}

.modal-content {
  background: linear-gradient(145deg, #051814, #000);
  border: 1px solid var(--gold);
  padding: 25px;
  border-radius: 20px;
  width: 95%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 0 30px rgba(212, 163, 115, 0.2);
  animation: slideUp 0.4s;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-content::-webkit-scrollbar {
  width: 5px;
}

.modal-content::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 10px;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  color: var(--text-gray);
  font-size: 28px;
  cursor: pointer;
  z-index: 10;
}

.modal-header h2 {
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 5px;
  text-align: center;
}

.modal-header p {
  color: var(--text-gray);
  font-size: 0.85rem;
  text-align: center;
  margin-bottom: 20px;
}

.input-group {
  margin-bottom: 12px;
  text-align: left;
}

.input-group label {
  display: block;
  color: var(--gold-glow);
  font-size: 0.8rem;
  margin-bottom: 4px;
}

.input-group input,
.input-group select,
.input-group textarea {
  width: 100%;
  padding: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #fff;
  font-size: 0.95rem;
  outline: none;
  transition: 0.3s;
}

.input-group textarea {
  resize: vertical;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  border-color: var(--gold);
  background: rgba(0, 0, 0, 0.5);
}

.row-inputs {
  display: flex;
  gap: 10px;
}

.row-inputs .input-group {
  flex: 1;
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, #c58e57, #d4a373);
  color: #00251a;
  padding: 12px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.3s;
}

.btn-submit:hover {
  transform: scale(1.02);
  box-shadow: 0 0 20px rgba(212, 163, 115, 0.4);
}

.form-footer {
  text-align: center;
  font-size: 0.75rem;
  color: #555;
  margin-top: 15px;
}

.form-section-title {
  font-size: 0.9rem;
  color: var(--gold);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 5px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* =========================================
   13. MOBILE RESPONSIVE
   ========================================= */
@media (max-width: 768px) {
  /* Show Mobile Icons */
  .hamburger {
    display: block !important;
    font-size: 1.8rem;
    color: var(--gold);
    cursor: pointer;
  }

  .btn-login-desktop {
    display: none !important;
  }

  /* Mobile Sidebar */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 75%;
    max-width: 300px;
    background: rgba(0, 25, 20, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 30px;
    transition: 0.4s ease-in-out;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
    z-index: 1001;
    gap: 0;
  }

  .nav-links.nav-active {
    right: 0;
  }

  .close-menu {
    display: block !important;
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2rem;
    color: var(--text-gray);
    cursor: pointer;
  }

  .nav-links a {
    font-size: 1.3rem;
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .btn-login-mobile {
    display: block !important;
    margin-top: 30px;
    width: 100%;
    text-align: center;
    padding: 15px;
    border: 2px solid var(--gold);
    border-radius: 50px;
    color: var(--gold);
    text-decoration: none;
    font-weight: bold;
  }

  /* Hero & Layout Fixes */
  .hero {
    padding-top: 170px;
  }

  .brand-name {
    font-size: 1.2rem;
  }

  .main-logo {
    height: 40px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .beta-bar {
    font-size: 0.7rem;
    padding: 10px 5px;
  }

  .beta-ribbon {
    top: 85px;
    right: 0;
    border-radius: 20px 0 0 20px;
    padding: 5px 15px;
    font-size: 0.75rem;
  }

  .cta-group {
    flex-direction: column;
    gap: 15px;
    padding: 0 10px;
    width: 100%;
  }

  .btn-reveal,
  .btn-outline-gold {
    width: 100%;
    max-width: 350px;
    font-size: 1rem;
    padding: 14px 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .live-popup {
    bottom: 10px;
    left: 10px;
    right: 10px;
    padding: 12px;
    font-size: 0.8rem;
  }

  .popup-icon {
    font-size: 1.2rem;
  }

  .comparison-table {
    min-width: 800px;
  }

  .col {
    padding: 15px 10px;
    font-size: 0.85rem;
  }

  .col.feature {
    padding-left: 15px;
  }

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

  .brand-col p {
    margin: 0 auto 25px auto;
  }

  .footer-logo {
    justify-content: center;
  }

  .sample-container {
    flex-direction: column-reverse;
    text-align: center;
  }

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

  .section-title,
  .sub-title {
    text-align: center !important;
  }

  /* Mobile Form Stacking Fix */
  .row-inputs {
    flex-direction: column !important;
    gap: 15px;
  }

  .input-group input,
  .input-group select {
    font-size: 16px;
  }
}
.slider-track {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
.slide-card {
  width: auto;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.slide-card img {
  width: 40%;
  max-width: 450px;
  height: auto; /* Height apne aap adjust karo taaki photo pichke nahi */
  border-radius: 15px; /* Kono ko ghumavdar banao (Sundar dikhega) */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); /* Thodi shadow daal do */
  display: block; /* Extra gap hatane ke liye */
  margin: 0 auto; /* Center karne ke liye */
}

/* Mobile par thoda aur chhota kar dete hain */
@media (max-width: 768px) {
  .sample-image img {
    max-width: 350px; /* Mobile par zyada badi na dikhe */
  }
}
