/* Global */
body {
  font-family: "Poppins", sans-serif;
  background: #f6f8ff;
  color: #333;
}
a {
  text-decoration: none;
}

/* ================= HERO ================= */
.webinar-hero {
  background: linear-gradient(135deg, #6a5af9, #4ea5ff);
  padding: 80px 0;
  color: #fff;
  text-align: center;
}
.order-poster {
  border-radius: 22px;
}
.hero-box h1 {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.3;
}
.hero-box h1 span {
  color: #ffec8a;
}
.hero-box p {
  font-size: 1.1rem;
  opacity: 0.95;
}

.hero-cta {
  margin-top: 25px;
}
.btn-main {
  background: linear-gradient(135deg, #ff6a9f, #ff3e7f);
  color: #fff !important;
  padding: 12px 26px;
  border-radius: 40px;
  font-weight: 600;
  margin-right: 10px;
  transition: 0.3s;
  display: inline-block;
}
.btn-outline {
  border: 2px solid #fff;
  padding: 12px 26px;
  border-radius: 40px;
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
}

/* ================= PRICING IMAGE LAYOUT ================= */
.product-img-wrap {
  text-align: center;
  margin-bottom: 20px;
}

.pricing-img {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  display: block;
  margin: 0 auto;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

/* ================= KNOW MORE BUTTON ================= */
.btn-know {
  background: linear-gradient(135deg, #4ea5ff, #6a5af9);
  padding: 12px 32px;
  border-radius: 40px;
  color: #fff;
  font-weight: 600;
  border: none;
  display: block;
  margin: 0 auto;
  transition: 0.3s;
  font-size: 1rem;
}

.btn-know:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 14px rgba(100, 100, 255, 0.45);
}

/* ================= FEATURE PANEL (BEAUTIFUL BOX) ================= */
.features-panel {
  display: none;
  background: #fff;
  border-radius: 18px;
  padding: 22px 26px;
  margin-top: 16px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid #ecebff;
  animation: slideDown 0.35s ease-out forwards;
}

/* Panel Title */
.features-panel .panel-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2b2858;
  margin-bottom: 14px;
  text-align: center;
}

/* Feature List */
.feature-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 14px;
}

.feature-list li {
  display: flex;
  align-items: center;
  font-size: 0.98rem;
  margin-bottom: 9px;
  color: #444;
  line-height: 1.4;
}

.feature-list i {
  color: #4ea5ff;
  margin-right: 10px;
  font-size: 1.05rem;
}

/* Buy Now Button */
.btn-buy {
  background: linear-gradient(135deg, #ff6a9f, #ff3e7f);
  padding: 10px 26px;
  border-radius: 30px;
  color: #fff;
  font-weight: 600;
  display: block;
  width: fit-content;
  margin: 18px auto 0;
  transition: 0.3s;
}

.btn-buy:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 14px rgba(255, 62, 127, 0.5);
}

/* ================= REMOVE OLD ICONS, HEADINGS ================= */
.icon-circle,
.pricing-box h2 {
  display: none !important;
}

/* ================= ANIMATION ================= */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= DESKTOP FIX (SHOW 2 IMAGES IN SAME ROW) ================= */
@media (min-width: 992px) {
  /* Make row behave like proper 2-column flexbox */
  #pricing .row {
    display: flex;
    flex-wrap: nowrap; /* Keeps 2 cards in same row */
    justify-content: center;
    align-items: flex-start;
    gap: 35px; /* Small gap between the two cards */
  }

  #pricing .col-lg-6 {
    flex: 0 0 48%; /* Each card takes 48% width */
    max-width: 48%;
    display: flex;
    justify-content: center;
  }
}

/* ================= RESPONSIVE (MOBILE) ================= */
@media (max-width: 480px) {
  .pricing-img {
    width: 95%;
    max-width: 300px;
  }

  .btn-know {
    padding: 10px 28px;
    font-size: 0.95rem;
  }

  .features-panel {
    padding: 20px;
  }

  .feature-list li {
    font-size: 0.92rem;
  }
}

/* ================= COMBO OFFER ================= */
.combo-box {
  text-align: center; /* ensures all inner elements are centered */
  padding: 40px;
  border-radius: 20px;
  border: 3px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, #ff6a9f, #6a5af9) border-box;
}

/* Combo Logos Row */
.combo-logos {
  display: flex;
  justify-content: center; /* horizontal centering */
  align-items: center; /* vertical centering */
  gap: 18px;
  margin: 15px 0 10px;
  width: 100%; /* ensure it spans full width */
}

/* Logo Sizes */
.combo-logo {
  width: 120px;
  height: auto;
  display: block;
}

/* Plus Icon */
.plus-icon {
  font-size: 2rem;
  font-weight: 700;
  color: #6a5af9;
}

/* Responsive (Mobile) */
@media (max-width: 480px) {
  .combo-logo {
    width: 85px;
  }
  .plus-icon {
    font-size: 1.6rem;
  }
}

/* ================= DEMO SECTION ================= */
.demo-box {
  background: #fff;
  padding: 50px 35px;
  border-radius: 24px;
  text-align: center;
  position: relative;
}

/* Larger box */
.demo-large {
  padding: 55px 40px;
  min-height: 360px;
}

/* Bigger Logo */
.demo-logo {
  width: 150px;
  height: auto;
  margin-bottom: 25px;
}

/* Bigger Pricing Text */
.demo-box h4 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #2b2858;
  margin-bottom: 12px;
}

/* Bigger Subtext */
.demo-subtext {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 18px;
  line-height: 1.5;
}

/* Buy Button Base */
.dropdown-container {
  position: relative;
  display: inline-block;
}

.dropdown-btn {
  background: linear-gradient(135deg, #4ea5ff, #6a5af9);
  padding: 12px 30px;
  border-radius: 40px;
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  border: none;
  gap: 6px;
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 110%;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
  padding: 0;
  list-style: none;
  display: none;
  overflow: hidden;
  z-index: 10;
}

.dropdown-menu li {
  padding: 10px 15px;
  font-size: 0.95rem;
  cursor: pointer;
  border-bottom: 1px solid #eee;
  color: #444;
}

.dropdown-menu li:hover {
  background: #f3f5ff;
  color: #4ea5ff;
}

.dropdown-container.active .dropdown-menu {
  display: block;
}

/* Responsive */
@media (max-width: 480px) {
  .demo-large {
    padding: 40px 25px;
    min-height: 300px;
  }

  .demo-logo {
    width: 115px;
  }

  .demo-box h4 {
    font-size: 1.15rem;
  }

  .demo-subtext {
    font-size: 0.95rem;
  }
}

/* ================= FOOTER ================= */
.footer {
  background: #6a5af9;
  color: #fff !important;
  text-align: center;
}

/* ================= ANIMATIONS ================= */
[data-anim] {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.6s ease;
}
[data-anim].show {
  opacity: 1;
  transform: translateY(0);
}
[data-anim="fade-right"] {
  transform: translateX(-40px);
}
[data-anim="fade-left"] {
  transform: translateX(40px);
}
[data-anim="fade-scale"] {
  transform: scale(0.85);
}
[data-anim="fade-scale"].show {
  transform: scale(1);
}

/* RESPONSIVE FIXES */
@media (max-width: 480px) {
  .hero-box h1 {
    font-size: 1.8rem;
  }
  .pricing-box {
    padding: 20px;
  }
  .feature-list li {
    font-size: 0.85rem;
  }
}
@media (min-width: 768px) {
  .hero-box h1 {
    font-size: 2.8rem;
  }
}
@media (min-width: 992px) {
  .hero-box h1 {
    font-size: 3.2rem;
  }
}

/* ================= TWO IMAGE SECTION ================= */
.two-box {
  text-align: center;
}

.two-img {
  width: 100%;
  max-width: 430px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  margin: 0 auto 15px;
  display: block;
}

/* Buy Button - New Blue-Purple Glow Effect */
.btn-two-buy {
  background: linear-gradient(135deg, #4ea5ff, #6a5af9);
  padding: 12px 32px;
  border-radius: 40px;
  color: #fff;
  font-weight: 600;
  display: inline-block;
  transition: 0.35s ease;
  box-shadow: 0 0 0 rgba(100, 100, 255, 0);
}

.btn-two-buy:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 8px 20px rgba(90, 115, 255, 0.45);
}

/* Desktop Layout Fix (Equal 50-50 layout with gap) */
@media (min-width: 992px) {
  .two-image-section .row {
    display: flex;
    flex-wrap: nowrap;
    gap: 40px; /* gap between two images */
  }

  .two-image-section .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
    display: flex;
    justify-content: center;
  }
}

/* Mobile Responsive */
@media (max-width: 480px) {
  .two-img {
    max-width: 320px;
  }
}

@media (min-width: 992px) {
  .pricing-card {
    height: 780px !important;
  }
}
/* ================= PRICING SECTION ================= */
.pricing-section {
  background: #fff;
}

/* DARK CARD - Premium Look */
.pricing-card {
  border-radius: 22px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
  transition: 0.4s ease;
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.45);
}

/* WHITE LOGO - NO DARK BEHIND */
.api-logo-wrap {
  text-align: center;
  margin-bottom: 28px;
  padding: 10px;
  border-radius: 5px;
  display: inline-flex;
  background: linear-gradient(135deg, #6a5af9, #140f0f);
}

.api-logo {
  width: 190px;
  height: auto;
  filter: drop-shadow(0 2px 10px rgba(255, 255, 255, 0.15));
}

/* Features – Updated Icon Colors */
.pricing-features li {
  font-size: 1.1rem;
  color: #000;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features i {
  color: #4ea5ff; /* clean neon-cyan */
  font-size: 1.25rem;
}

/* Add-ons */
.addons-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 14px;
}

.addons li {
  font-size: 1rem;
  color: #000;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.addons i {
  color: #ffae42; /* Gold tone */
}
/* PREMIUM – MILD, MODERN BUTTON */
.pricing-btn {
  background: linear-gradient(135deg, #4ea5ff, #6a5af9);
  color: #fff;
  font-weight: 600;
  padding: 14px 34px;
  font-size: 1.1rem;
  border-radius: 40px;
  transition: all 0.28s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25); /* soft shadow */
}

.pricing-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28); /* mild lift */
  background: linear-gradient(
    135deg,
    #5cb2ff,
    #7d6cfb
  ); /* slightly brighter on hover */
}

/* Responsive */
@media (max-width: 768px) {
  .api-logo {
    width: 130px;
  }

  .pricing-features li {
    font-size: 1rem;
  }
}

/*Admin Screenshots*/

/* Base reset */

/* Max width 1000px container */
/*.container {*/
/*    width: 100%;*/
/*    margin: 0 auto;*/
/*    padding: 0 16px;*/
/*}*/

/* Header */
.header {
  background: #111827;
  color: #f9fafb;
  padding: 24px 0;
  margin-bottom: 24px;
}

.header h1 {
  font-size: 1.8rem;
  margin-bottom: 4px;
}

.header p {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Main */
.main {
  padding-bottom: 40px;
}

/* Grid of cards */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

/* Card design */
.card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

/* Image wrapper */
.image-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #e5e7eb;
}

.image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: top;
}

/* Card text */
.card h2 {
  font-size: 1.1rem;
  padding: 12px 14px 4px;
}

.card p {
  font-size: 0.9rem;
  padding: 0 14px 14px;
  color: #4b5563;
}

/* Footer */
.footer {
  border-top: 1px solid #e5e7eb;
  padding: 16px 0 24px;
  text-align: center;
  font-size: 0.85rem;
  color: #6b7280;
}
.btn-buy .old-price {
  text-decoration: line-through;
  color: #f9f9f9;
  margin-right: 8px;
  font-size: 17px;
}

.btn-buy .new-price {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}
/* Small screen tweaks */
@media (max-width: 600px) {
  .header h1 {
    font-size: 1.4rem;
  }

  .card h2 {
    font-size: 1rem;
  }

  .card p {
    font-size: 0.85rem;
  }
}
