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

html, body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f9f9f9;
  color: #222;
  scroll-behavior: smooth;
}

.floating-guarantee {
  position: fixed;
  bottom: 10px;
  left: 10px;
  background: #000;
  color: white;
  font-weight: bold;
  padding: 10px 16px;
  border-radius: 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 999;
  font-size: 0.55rem;
  animation: pulse 2s infinite;
}

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

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

/* Sticky CTA */
.sticky-cta {
  background: rgba(16, 163, 127, 0.85);
  backdrop-filter: blur(6px);
  color: black;
  font-weight: bold;
  padding: 0.6rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.sticky-cta .btn1 {
  background: white;
  color: #10a37f;
  font-weight: bold;
  padding: 0.4rem 1rem;
  border-radius: 6px;
  text-decoration: none;
}

.sticky-cta .btn1:hover {
  background: #e8e8e8;
}

/* Header */
.header {
  margin-top: 50px;
  background: #10a37f;
  color: white;
  padding: 1rem 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.main-nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.main-nav a:hover {
  color: #f1f1f1;
}

.logo img {
  height: 70px;
  width: auto;
  border-radius: 10px;
}

.insta-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.insta-icon {
  width: 20px;
  height: 20px;
}

.whatsapp-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.whatsapp-icon {
  width: 20px;
  height: 20px;
}


/* Hero Section */
.hero {
  background: linear-gradient(-45deg, #10a37f, #0a8a6b, #0f766e, #128c7e);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  color: white;
  padding: 4rem 1rem;
  position: relative;
  overflow: hidden;
}

@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* HERO CONTENT FIX */
.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between; /* ✅ Laptop view same rahega */
  gap: 2rem;
}

/* BUTTON OVERLAP FIX */
.hero-text .btn {
  display: inline-block;
  margin-top: 1rem;          /* ✅ Button ke upar space*/
  padding: 0.8rem 1.5rem;
  background-color: white;
  color: #10a37f;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s;
}

.hero-text .btn:hover {
  background: #eaeaea;
}
.card.sold-out {
  opacity: 0.6;
}
.card.sold-out .btn {
  background-color: grey;
  pointer-events: none;
}


/* MOBILE VIEW FIX */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;       /* ✅ Mobile me stack hoga */
    text-align: center;
    padding: 1rem;
  }

  .hero-text {
    width: 100%;
    padding: 0 1rem;
  }

  .hero-img {
    width: 100%;
    text-align: center;
  }

  .hero-img img {
    max-width: 90%;              /* ✅ Image screen ke andar aa jaye */
    height: auto;
  }
}


.hero-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}


.hero-img {
  flex: 1;
  text-align: center;
}

.hero-img img {
  max-width: 90%;
  border-radius: 12px;
}

.trust-badge {
  margin-top: 1.5rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: #fff;
  text-align: left;
}

/* FOMO Bar */
.countdown-wrapper {
  text-align: center;
  background: #fff8e1;
  padding: 0.8rem;
  font-weight: 600;
  color: #d35400;
}

.stock-left {
  text-align: center;
  padding: 0.6rem;
  font-weight: bold;
  background: #ffeded;
  color: #e74c3c;
}

.promo-discount {
  background: linear-gradient(90deg, #fff6e0, #fceabb);
  padding: 2rem 1rem;
  text-align: center;
  margin: 2rem 0;
  border-top: 3px dashed #ff9800;
  border-bottom: 3px dashed #ff9800;
}

.promo-box {
  max-width: 800px;
  margin: auto;
  background: #fff8e1;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.promo-box h3 {
  font-size: 1.8rem;
  color: #e65100;
  margin-bottom: 1rem;
}

.promo-box p {
  font-size: 1rem;
  margin-bottom: 0.8rem;
  color: #444;
}

.promo-box .steps {
  font-weight: 600;
  color: #d84315;
}

.promo-box .btn1 {
  display: inline-block;
  margin-top: 1rem;
  background: #ff9800;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.promo-box .btn1:hover {
  background: #fb8c00;
}


/* Category Tabs */
.categories {
  background: #fff;
  padding: 3rem 1rem;
  text-align: center;
}

.category-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.6rem 1.5rem;
  background: #f4f4f4;
  border-radius: 6px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.tab-btn.active {
  background: #10a37f;
  color: white;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  margin-top: 2rem;
}

/* Pricing Cards */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  align-items: start;
}

.card {
  background: linear-gradient(to bottom right, #ffffff, #f3f7fa);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  min-height: 380px;
  position: relative;
}

.card.popular .tag {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #10a37f;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: bold;
}

.card h4 {
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
  color: #10a37f;
}

.card ul {
  text-align: left;
  margin-top: 1rem;
  line-height: 1.6;
  flex: 1;
}

.card .btn {
  margin-top: auto;
  display: block;
  width: 100%;
  background: #10a37f;
  color: #fff;
  padding: 0.8rem 1.2rem;
  text-align: center;
  border-radius: 8px;
  font-weight: bold;
}


/* ===== Cursor AI Special Styling ===== */
.card.cursor-ai {
  background: linear-gradient(to bottom right, #ffffff, #f3f8ff); /* halka blue tone */
  border: 2px solid #10a37f;
}

.card.cursor-ai h4 {
  color: #10a37f;
}

.card.cursor-ai .tag {
  background: #10a37f; /* Tag ka background blue */
}

.card.cursor-ai ul li::before {
  content: "💻 "; /* Bullet icon for tech feel */
}

.card.cursor-ai .btn {
  background: #10a37f;
}

.card.cursor-ai .btn:hover {
  background: #10a37f;
}






.special-offers {
  background: #fff;
  padding: 3rem 1rem;
  border-top: 2px dashed #10a37f;
  /* border-bottom: 2px dashed #10a37f; */
  text-align: center;
}

.special-offers h2 {
  color: #10a37f;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.offer-subtitle {
  font-size: 1rem;
  color: #444;
  margin-bottom: 2rem;
}

/* ✅ Container fix */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: border-box;
}

/* ✅ Grid fix */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/* ✅ Card Styling */
.offer-card {
  background: #f9f9f9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.offer-card:hover {
  transform: translateY(-5px);
}

/* ✅ Image fix */
.offer-card img {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  display: block;
  margin-top: 1rem;
  border-radius: 12px;
}

/* ✅ Content Styling */
.offer-content {
  padding: 1.5rem;
  text-align: left;
  width: 100%;
  box-sizing: border-box;
}

.offer-content h4 {
  font-size: 1.2rem;
  color: #0f766e;
  margin-bottom: 1rem;
}

.offer-content ul {
  list-style: none;
  padding-left: 0;
  line-height: 1.6;
  margin-bottom: 1.2rem;
  color: #444;
}

.offer-content .btn {
  background: #10a37f;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  text-align: center;
}

/* ✅ Mobile Responsive */
@media (max-width: 480px) {
  .special-offers h2 {
    font-size: 1.5rem;
  }

  .offer-content h4 {
    font-size: 1.1rem;
  }

  .offer-content ul {
    font-size: 0.95rem;
  }

  .offer-content .btn {
    width: 100%;
  }

  .offer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}







/* Payment Guide */
.payment-guide {
  background: #f8fbfd;
  padding: 4rem 1rem;
  text-align: center;
  margin-top: 3rem;
  border-top: 2px dashed #10a37f;
  border-bottom: 1px solid #e0e0e0;
}

.payment-guide .container {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 1rem;
}

.payment-guide h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #333;
}

.payment-guide p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0.8rem 0;
  word-wrap: break-word;
}

.payment-guide code {
  font-size: clamp(1rem, 3.5vw, 1.3rem);  /* Auto adjust font size based on screen width */
  font-weight: 600;
  color: #2e3192;
  background-color: #eef2f8;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  display: inline-block;
  white-space: nowrap;  /* Prevent line-break */
}

/* Payment Proof */

.payment-proofs {
  padding: 3rem 1rem;
  background: #f0fff8;
  text-align: center;
  border-top: 2px dashed #10a37f;
  border-bottom: 2px dashed #10a37f;
  margin: 3rem 0;
}

.payment-proofs h3 {
  font-size: 1.8rem;
  color: #0f8a6e;
  margin-bottom: 1rem;
}

.payment-proofs p {
  color: #444;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  justify-items: center;
}

.proof-grid img {
  width: 100%;
  max-width: 180px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.proof-grid img:hover {
  transform: scale(1.05);
}

@media (max-width: 600px) {
  .payment-proofs h3 {
    font-size: 1.5rem;
  }

  .proof-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }

  .proof-grid img {
    max-width: 120px;
  }
}



/* Testimonials & FAQ */
.testimonials,
.faq {
  background: #ffffff;
  padding: 3rem 1rem;
  
}
.faq{
  border-top: 2px dashed #10a37f;
}

.testimonial {
  max-width: 600px;
  margin: auto;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.faq-item {
  margin-bottom: 1.2rem;
}

/* Telegram Button */
.telegram-button {
  position: fixed;
  bottom: 10px;
  right: 5px;
  background: #0088cc;
  color: #fff;
  padding: 15px;
  border-radius: 50%;
  text-align: center;
  font-size: 15px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}
.whatsapp-button {
  position: fixed;
  bottom: 60px;
  right: 5px;
  background: #00cc11;
  color: #fff;
  padding: 15px;
  border-radius: 50%;
  text-align: center;
  font-size: 15px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

/* Disclaimer Section */
.disclaimer {
  background: #f8f8f8;
  padding: 2rem 1rem;
  text-align: center;
  border-top: 2px dashed #10a37f;
  margin: 2rem 0;
}

.disclaimer h4 {
  font-size: 1.5rem;
  color: #0f766e;
  margin-bottom: 1rem;
}

.disclaimer p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 1.5rem;
  font-weight: 500;
}


/* Contact Support */
.contact-support {
  background: #f4f4f4;
  padding: 20px;
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #10a37f;;
}

.contact-links a {
  display: inline-block;
  margin: 0 10px;
  font-size: 15px;
  color: #0088cc;
  text-decoration: none;
}

/* Footer */
.site-footer {
  background: #0f766e;
  color: white;
  padding: 3rem 1rem 1rem;
  font-size: 0.95rem;
}

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

.footer-brand img {
  width: 120px;
  margin-bottom: 1rem;
  border-radius: 8px;
}

.footer-brand p {
  line-height: 1.5;
  color: #d1f1ea;
}

.footer-links h4,
.footer-trust h4,
.footer-social h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #d1f1ea;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-trust p {
  margin: 0.4rem 0;
  color: #d1f1ea;
}

.footer-social .social-icons {
  display: flex;
  gap: 1rem;
  font-size: 1.4rem;
}

.footer-social a {
  color: #ffffff;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #ffd700;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #1f9b88;
  font-size: 0.85rem;
  color: #c8f1e7;
}


/* =========================
   MEDIA QUERIES
========================= */
@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    gap: 10px;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text .btn {
    display: inline-block;
    margin-top: 10px;
  }

  .trust-badge {
    text-align: center;
  }

  .category-tabs {
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .sticky-cta span {
    font-size: 0.8rem;
  }

  .sticky-cta .btn1 {
    padding: 0.3rem 0.6rem;
    font-size: 0.8rem;
  }

  .hero-text h2 {
    font-size: 1.5rem;
  }

  .tab-btn {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }

  .card {
    min-height: auto;
    padding: 1rem;
  }

  .testimonial, .faq-item p {
    font-size: 0.9rem;
  }
}
