section {
  padding: 70px 20px;
}

/* NAVBAR BASE */
.templora-navbar {
  position: fixed;
  width: 100%;
  top: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  z-index: 999;
  transition: 0.3s;
}

/* Scroll Effect */
.templora-navbar.scrolled {
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  padding: 8px 20px;
}

/* Layout */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo {
  width: 38px;
}

.nav-title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}

.nav-tagline {
  font-size: 12px;
  color: #777;
}

/* Desktop Links */
.nav-links {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  position: relative;
}

/* Hover Animation */
.nav-links a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  background: #6366f1;
  left: 0;
  bottom: -4px;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: #000;
  border-radius: 3px;
  transition: 0.3s;
}

/* Hamburger Animation */
.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  padding: 20px;
  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}

.mobile-menu a {
  padding: 12px 0;
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

/* Active */
.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-menu .btn-gradient {
  display: block;
  width: 100%;
  padding: 12px;
  border-radius: 30px;
  font-size: 15px;
  text-align: center;
  margin-top: 15px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }
}

.hero {
  padding: 120px 20px 60px;
  background: linear-gradient(135deg, #f5f7ff, #eef2ff);
}

/* Gradient Button */
.btn-gradient {
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
  color: #fff;
  border-radius: 30px;
  padding: 8px 20px;
  border: none;
  font-weight: 500;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
  transition: 0.3s;
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4);
}

.btn {
  letter-spacing: 0.5px;
}


.hero-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-left {
  flex: 1;
}

.hero-left h1 {
  font-size: 42px;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
}

.hero-left h1 span {
  color: #4f46e5;
}

.hero-left p {
  margin-top: 15px;
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.hero-offer {
  margin-top: 20px;
  background: #ffe9c7;
  display: inline-block;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 14px;
}

.hero-trust {
  margin-top: 10px;
  font-size: 14px;
  color: #666;
}

.hero-buttons {
  margin-top: 25px;
  display: flex;
  gap: 15px;
}

.btn-primary {
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1px solid #ccc;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
}

.hero-right {
  flex: 1;
  text-align: center;
}

.hero-right img {
  max-width: 100%;
  border-radius: 12px;
}

/* 🔥 RESPONSIVE */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-left h1 {
    font-size: 28px;
  }

  .hero-buttons {
    justify-content: center;
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
}

.hero-right img {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-right {
    margin-bottom: 20px;
  }

  .hero-left h1 {
    font-size: 26px;
  }
}

/* SECTION */
.app-landing {
  padding: 70px 20px;
  background: #f8f9ff;
}

/* CARD */
.app-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* LEFT */
.app-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.app-icon {
  width: 60px;
  border-radius: 15px;
}

.app-tag {
  font-size: 14px;
  color: #64748b;
}

.app-rating {
  font-size: 13px;
  color: #f59e0b;
}

/* BUTTON */
.install-btn {
  padding: 10px 25px;
  border-radius: 25px;
}

/* SCREENSHOTS */
.app-screens {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  overflow-x: auto;
}

.app-screens img {
  width: 220px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* FEATURES */
.app-features {
  display: flex;
  justify-content: space-around;
  margin-top: 25px;
  font-size: 14px;
  color: #334155;
}

/* MOBILE */
@media (max-width: 768px) {

  .app-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .install-btn {
    width: 100%;
  }

  .app-features {
    flex-wrap: wrap;
    gap: 10px;
  }
}

/* Floating animation */
@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0px);
  }
}

.video-section {
  padding: 90px 20px;
  background: #f9fafb;
}

.video-container {
  max-width: 1150px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.video-text {
  max-width: 520px;
}

.video-text h2 {
  font-size: 34px;
  margin-bottom: 15px;
  font-weight: 700;
}

.video-text p {
  color: #555;
  margin-bottom: 25px;
  line-height: 1.7;
}

.video-text ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.video-text li {
  margin-bottom: 12px;
  color: #16a34a;
  font-weight: 500;
}

/* VIDEO BOX */
.video-box {
  flex: 1;
  max-width: 520px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
  transition: 0.3s;
}

.video-box:hover {
  transform: translateY(-5px);
}

.video-box iframe {
  width: 100%;
  height: 300px;
  border: none;
}

/* MOBILE */
@media (max-width: 768px) {
  .video-container {
    flex-direction: column;
    text-align: center;
  }

  .video-box iframe {
    height: 220px;
  }
}

/*FEATURE SECTION*/
.featured-section {
  background: #f8fafc;
}

.section-title {
  font-weight: 700;
  color: #0f172a;
}

/* Card Design */
.template-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.template-card img {
  transition: 0.4s;
}

.price {
  font-size: 20px;
  margin: 10px 0;
}

/* OLD PRICE (CUT) */
.old-price {
  text-decoration: line-through;
  color: #999;
  margin-right: 10px;
  font-size: 16px;
}

/* NEW PRICE */
.new-price {
  color: #16a34a;
  font-weight: 700;
  font-size: 22px;
}

/*WHATSAPP GUIDE*/
/* SECTION */
.wa-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #ecfdf5, #f0fdf4);
}

/* CONTAINER */
.wa-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  max-width: 1100px;
  margin: auto;
  flex-wrap: wrap;
}

/* TEXT */
.wa-text {
  max-width: 520px;
}

.wa-text h2 {
  font-size: 36px;
  font-weight: 700;
  color: #065f46;
}

.wa-text p {
  color: #444;
  margin: 15px 0 20px;
  line-height: 1.6;
}

/* FEATURES */
.wa-features {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.wa-features li {
  margin-bottom: 10px;
  color: #16a34a;
  font-weight: 500;
}

/* BUTTONS */
.wa-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* PRIMARY */
.btn.primary {
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: white;
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
}

.btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(34, 197, 94, 0.5);
}

/* SECONDARY */
.btn.secondary {
  border: 2px solid #16a34a;
  color: #16a34a;
}

.btn.secondary:hover {
  background: #16a34a;
  color: white;
  transform: translateY(-3px);
}

/* CARD */
.wa-card {
  background: white;
  padding: 35px;
  border-radius: 20px;
  text-align: center;
  width: 280px;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.wa-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.wa-card h3 {
  margin-bottom: 10px;
}

.price {
  font-size: 30px;
  color: #16a34a;
  font-weight: bold;
  margin: 15px 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .wa-container {
    flex-direction: column;
    text-align: center;
  }

  .wa-card {
    width: 100%;
    max-width: 320px;
  }

  .wa-buttons {
    justify-content: center;
  }
}

/* Hover Effect */
.template-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.template-card:hover img {
  transform: scale(1.05);
}

.card-content {
  padding: 20px;
}

.card-content h5 {
  font-weight: 600;
  color: #0f172a;
}

.card-content p {
  color: #64748b;
  margin: 10px 0;
}

/*STATS SECTION*/
.stats-section {
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.stat-box h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #4f46e5;
}

.stat-box p {
  color: #64748b;
  margin-top: 5px;
}

/* Hover Effect */
.stat-box {
  transition: 0.3s;
}

.stat-box:hover {
  transform: translateY(-5px);
}

/*WHY SECTION*/
.why-section {
  background: #f8fafc;
}

.feature-box {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.icon {
  font-size: 30px;
  margin-bottom: 15px;
}

.feature-box h5 {
  font-weight: 600;
  color: #0f172a;
}

.feature-box p {
  color: #64748b;
  font-size: 0.95rem;
}

/*SETUP PLANS*/
.pricing-section {
  background: #f8fafc;
}

.pricing-card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.pricing-card .price {
  font-size: 1.5rem;
  color: #4f46e5;
  margin-bottom: 15px;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.pricing-card ul li {
  margin: 8px 0;
  color: #475569;
}

.featured {
  border: 2px solid #4f46e5;
  transform: scale(1.05);
}

/*CTA SECTION*/
.cta-section {
  padding: 80px 0;
  background: #ffffff;
}

.cta-box {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  padding: 60px 30px;
  border-radius: 20px;
  color: #fff;
  box-shadow: 0 20px 50px rgba(79, 70, 229, 0.3);
}

.cta-box h2 {
  font-weight: 700;
}

.cta-box p {
  margin-top: 10px;
  color: #e0e7ff;
}

.cta-box .btn-light {
  border-radius: 25px;
  padding: 10px 25px;
  font-weight: 500;
}

.cta-box .btn-outline-light {
  border-radius: 25px;
  padding: 10px 25px;
}

/*CONTACT SECTION*/
.contact-section {
  background: #ffffff;
}

.contact-info h4 {
  font-weight: 700;
  color: #0f172a;
}

.contact-info p {
  color: #64748b;
  margin-top: 10px;
}

/* Input Styling */
.custom-input {
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  padding: 12px;
  transition: 0.3s;
}

.custom-input:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.2);
}

/*FOOTER SECTION*/
.footer-section {
  background: #020617;
  color: #cbd5e1;
  padding: 60px 0 20px;
}

.footer-logo {
  color: #fff;
  font-weight: 700;
}

.footer-text {
  font-size: 0.95rem;
  margin-top: 10px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin: 8px 0;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 15px;
  font-size: 0.9rem;
}

#successMsg {
  font-weight: 500;
  animation: fadeIn 0.5s ease;
}

.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  background: #25D366;
  color: #fff;
  font-size: 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  text-decoration: none;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  z-index: 999;
}

/* HOVER */
.whatsapp:hover {
  transform: scale(1.1);
}

/* PULSE ANIMATION 🔥 */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp {
  animation: pulse 2s infinite;
}



@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 576px) {

  h2 {
    font-size: 1.5rem;
  }

  .btn {
    width: 100%;
  }

}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

/* POPUP BACKDROP */
.install-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* BOX */
.popup-box {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  width: 90%;
  max-width: 320px;
  text-align: center;
  animation: pop 0.3s ease;
}

/* ANIMATION */
@keyframes pop {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* BUTTON */
.popup-btn {
  margin-top: 15px;
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
}

.highlight {
  color: #6366f1;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(99, 102, 241, 0.3);
}

.hero-buttons {
  margin-top: 25px;
}

.primary-btn {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  margin-right: 10px;
  box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3);
  transition: 0.3s;
}

.primary-btn:hover {
  transform: scale(1.05);
}

.secondary-btn {
  border: 2px solid #6366f1;
  color: #6366f1;
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
}

.trust-line {
  margin-top: 15px;
  color: #64748b;
  font-size: 14px;
}

.offer-badge {
  display: inline-block;
  background: #fff3cd;
  color: #92400e;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  margin-top: 10px;
}

.cashback-badge {
  position: relative;
  top: 10px;
  /* thoda neeche lao */

  display: inline-block;
  background: linear-gradient(135deg, #ff7a18, #ffb347);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;

  margin: 0 auto 15px;
  width: fit-content;

  box-shadow: 0 6px 18px rgba(255, 122, 24, 0.4);
}

.cashback-badge {
  animation: bounce 1.5s infinite;
}

.cashback-badge:hover {
  transform: scale(1.05);
  transition: 0.3s;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

.offer-timer-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  background: rgba(255, 77, 77, 0.08);
  border: 1px solid rgba(255, 77, 77, 0.2);

  padding: 10px 16px;
  border-radius: 12px;

  width: fit-content;
  margin: 15px auto;

  backdrop-filter: blur(6px);
}

.timer-label {
  font-size: 14px;
  font-weight: 500;
  color: #ff4d4d;
}

.timer-badge {
  background: #0d6efd;
  color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* subtle animation */
.timer-badge {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.06);
  }

  100% {
    transform: scale(1);
  }
}

.premium-btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 30px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

/* hover */
.premium-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 30px rgba(99, 102, 241, 0.4);
}

/* shine effect */
.premium-btn::before {
  content: '';
  position: absolute;
  width: 120%;
  height: 100%;
  top: 0;
  left: -120%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: 0.5s;
}

.premium-btn:hover::before {
  left: 100%;
}