/* Base styles */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
html { scroll-behavior: smooth; }
body { background: linear-gradient(135deg, #f8f9fa, #e9ecef); color: #333; line-height: 1.6; font-size: 16px; overflow-x: hidden; padding-bottom: 80px; }

/* =================================================================== */
/* PRICING SECTION STYLES */
/* =================================================================== */
.pricing-section-new {
    position: relative;
    overflow: hidden;
    padding: 70px 20px;
    background: #fff8f5;
}

.pricing-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
    z-index: 1;
}

/* Pricing Card Styles */
.pricing-card {
    background: linear-gradient(145deg, #fff5f7, #ffeef2);
    border-radius: 20px;
    padding: 30px;
    width: 100%;
    max-width: 420px;
    text-align: center;
    border: 2px solid #f8d7da;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(230, 73, 128, 0.15);
    border-color: #f7c6ce;
}

.pricing-card.popular {
    background: linear-gradient(145deg, #fffaf2, #ffebe3);
    border: 2px solid #FFD700; 
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(255, 193, 7, 0.3);
}

.popular-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: #FE0034;
    color: white;
    padding: 6px 20px;
    font-weight: 700;
    font-size: 13px;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 10px rgba(254, 0, 52, 0.3);
}
.pricing-card .card-header { margin-bottom: 25px; }
.pricing-card h3 { font-size: 24px; color: #2d3748; margin-bottom: 8px; }
.pricing-card.popular h3 {
    color: #c25700;
}
.pricing-card .pack-description { font-size: 15px; color: #718096; }
.pricing-card .mrp {
    font-size: 22px;
    font-weight: 500;
    text-decoration: line-through;
    color: #868e96;
    margin-right: 12px;
}
.pricing-card .price {
    font-size: 48px;
    font-weight: 900;
    color: #d6336c;
    margin-bottom: 0;
    display: inline-block;
}
.discount-badge {
    background-color: #28a745;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
    margin: 8px 0;
}
.save-amount {
    font-size: 16px;
    color: #28a745;
    font-weight: 600;
    margin-bottom: 25px;
    display: block;
}
.pricing-card .features { list-style: none; padding: 0; margin-bottom: 30px; text-align: left; }
.pricing-card .features li { font-size: 16px; color: #4a5568; margin-bottom: 12px; display: flex; align-items: flex-start; }
.pricing-card .features li i { color: #28a745; margin-right: 12px; font-size: 18px; width: 20px; text-align: center; margin-top: 3px; }
.pricing-card .features li i.gold { color: #ffc107; }

/* Detailed Pro Pack List Styles */
.pricing-card .features li.feature-category {
    font-weight: 700;
    color: #2d3748;
    margin-top: 15px;
}
.pricing-card .features li.feature-subcategory {
    padding-left: 25px;
    font-weight: 600;
    font-size: 15px;
    color: #4a5568;
    margin-top: 10px;
    margin-bottom: 5px;
}
.pricing-card .features li.feature-subcategory i {
    font-size: 16px;
    color: #6c757d;
}
.pricing-card .features li.feature-item {
    padding-left: 50px;
    font-weight: 400;
    font-size: 14px;
    color: #718096;
    margin-bottom: 8px;
    line-height: 1.4;
    position: relative;
}
.pricing-card .features li.feature-item::before {
    content: '•';
    position: absolute;
    left: 35px;
    color: #FE0034;
    font-size: 16px;
    top: 1px;
}
.pricing-card .features li.feature-item i {
    display: none;
}

.pricing-card .purchase-button { width: 100%; padding: 15px; font-size: 18px; display: inline-block; background: linear-gradient(135deg, #e64980, #d6336c); color: white; border-radius: 8px; font-weight: bold; transition: all 0.3s; box-shadow: 0 8px 20px rgba(230, 73, 128, 0.35); text-decoration: none; border: none; cursor: pointer; }
.pricing-card .purchase-button:hover { transform: translateY(-5px); box-shadow: 0 12px 25px rgba(230, 73, 128, 0.45); background: linear-gradient(135deg, #d6336c, #c2255c); }
.pricing-card.popular .purchase-button { background: linear-gradient(135deg, #f59f00, #e67700); box-shadow: 0 8px 25px rgba(245, 159, 0, 0.4); }
.pricing-card.popular .purchase-button:hover { background: linear-gradient(135deg, #e67700, #d95f00); box-shadow: 0 12px 30px rgba(245, 159, 0, 0.5); }
.pricing-card .purchase-button i { margin-right: 12px; }

/* Main Header Styles */
.header-main { 
    background-color: #FE0034; 
    text-align: center; 
    padding: 25px 15px; 
    position: relative; 
    overflow: hidden; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); 
    border-bottom: 4px solid #FFD700; 
}
.header-main::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%); pointer-events: none; }

.header-main h1 {
    font-weight: 900;
    font-size: 32px;
    color: white;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-main h1 .logo-icon {
  height: 36px;
  width: auto;
  margin-right: 12px;
  vertical-align: middle;
  transform: translateY(-2px);
}
.rocket { display: inline-block; font-size: 1.8rem; margin-right: 10px; vertical-align: middle; animation: float 3s ease-in-out infinite; }

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.header-sub { background-color: #212121; padding: 18px; border-radius: 12px; max-width: 750px; margin: 0 auto 20px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); }
.header-sub p { font-weight: 900; font-size: 20px; margin: 0; line-height: 1.4; }
.highlight-box { margin-top: 15px; display: inline-block; background-color: #380000; padding: 10px 25px; border-radius: 8px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); }
.highlight-box p { color: #FFE500 !important; font-size: 18px; font-weight: 700; margin: 0; }
.white-text { color: #ffffff; }
.yellow-text { color: #FFE500; }
.udyam-registration {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  margin-top: 20px;
  font-weight: 500;
  letter-spacing: 0.5px;
  background: rgba(0, 0, 0, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 40px;
  transition: all 0.3s ease;
}
.udyam-registration i {
  font-size: 14px;
}
.corner-decoration { position: absolute; width: 140px; height: 140px; border: 5px solid rgba(255, 255, 255, 0.15); }
.corner-top-left { top: -70px; left: -70px; border-radius: 0 0 100% 0; border-left: none; border-top: none; }
.corner-top-right { top: -70px; right: -70px; border-radius: 0 0 0 100%; border-right: none; border-top: none; }
.corner-bottom-left { bottom: -70px; left: -70px; border-radius: 0 100% 0 0; border-left: none; border-bottom: none; }
.corner-bottom-right { bottom: -70px; right: -70px; border-radius: 100% 0 0 0; border-right: none; border-bottom: none; }
.pink-section { background: linear-gradient(135deg, #fbe1e7 0%, #fad7e0 100%); width: 100%; padding: 60px 20px; position: relative; overflow: hidden; }
.pink-section::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23f8a5c2' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E"); opacity: 0.3; }
.content-container { max-width: 1200px; margin: 0 auto; padding: 0 15px; position: relative; z-index: 2; }
.offer-section { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 40px; }
@media (min-width: 992px) { .offer-section { flex-wrap: nowrap; gap: 50px; } }
.problems-container { flex: 1 1 400px; min-width: 300px; padding: 30px; background: rgba(255, 255, 255, 0.92); border-radius: 18px; box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08); border: 1px solid rgba(230, 73, 128, 0.15); }
.problems-container h2 { font-size: 26px; color: #d6336c; margin-bottom: 25px; text-align: center; position: relative; padding-bottom: 15px; }
.problems-container h2::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 80px; height: 4px; background: linear-gradient(90deg, #f78fb3, #f8a5c2); border-radius: 3px; }
.problems-container ul li { margin-bottom: 15px; font-size: 16px; color: #495057; line-height: 1.6; position: relative; padding-left: 25px; }
.problems-container ul li::before { content: '•'; color: #f783ac; font-size: 28px; position: absolute; left: 0; top: -6px; }
.final-line { text-align: center; font-size: 18px; font-weight: 700; color: #d6336c; line-height: 1.6; background: rgba(247, 143, 179, 0.18); padding: 20px; border-radius: 15px; border-left: 4px solid #f783ac; margin-top: 15px; }
.highlight-red-book { color: #e64980; font-weight: bold; }

.book-section { flex: 1 1 320px; text-align: center; max-width: 380px; margin: 0 auto; }
    .book-cover-container { width: 100%; max-width: 320px; margin: 0 auto 15px; position: relative; box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2); border-radius: 12px; aspect-ratio: 700 / 650; }
    .book-cover { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 12px; }

.feature-ticker-container {
  background-color: #380000;
  border-radius: 8px;
  margin: 20px auto 15px;
  max-width: 350px;
  padding: 10px 0;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.feature-ticker-container::before, .feature-ticker-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 30px;
    height: 100%;
    z-index: 2;
}
.feature-ticker-container::before {
    left: 0;
    background: linear-gradient(to right, #380000, transparent);
}
.feature-ticker-container::after {
    right: 0;
    background: linear-gradient(to left, #380000, transparent);
}
.ticker-content {
  display: inline-block;
  animation: scroll-ticker 25s linear infinite;
}
.ticker-content span {
  color: #FFE500;
  font-weight: 600;
  font-size: 14px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
}
@keyframes scroll-ticker {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

.book-section h3 { font-size: 20px; color: #d6336c; margin-bottom: 15px; }
.price-container { margin-bottom: 15px; }
.price-text { font-size: 24px; font-weight: 800; margin-bottom: 10px; color: #d6336c; }
.strikethrough { text-decoration: line-through; color: #868e96; margin-right: 12px; font-size: 20px; }
.sale-price { color: #e64980; font-size: 26px; }
.special-offer-badge { background: #ffe500; color: #333; font-weight: 700; padding: 8px 15px; border-radius: 20px; display: inline-block; margin-bottom: 15px; font-size: 15px; border: 2px solid #ffc107; }
.special-offer-badge i { margin-right: 8px; color: #e67e22; }
.coupon-applied-container { margin: 15px auto 20px; padding: 15px; background: #e6fff2; border: 2px dashed #28a745; border-radius: 10px; text-align: center; max-width: 350px; }
.coupon-code { background-color: #28a745; color: white; padding: 5px 12px; border-radius: 20px; font-weight: 700; font-size: 14px; display: inline-block; margin-bottom: 10px; }
.coupon-code i { margin-right: 5px; }
.discount-details { font-size: 18px; font-weight: 600; color: #2f855a; margin-bottom: 8px; }
.coupon-note { font-size: 13px; color: #718096; font-style: italic; }
.timer-container { font-size: 16px; font-weight: 600; display: flex; justify-content: center; align-items: center; gap: 10px; flex-wrap: wrap; margin: 20px auto 0; background: rgba(255, 255, 255, 0.8); padding: 15px; border-radius: 10px; border: 2px dashed #f783ac; max-width: 350px; }
.countdown-text { font-size: 22px; font-weight: 800; color: #e64980; animation: pulse 1.5s infinite; }
.purchase-button { display: inline-block; background: linear-gradient(135deg, #e64980, #d6336c); color: white; padding: 16px 20px; border-radius: 8px; font-weight: bold; font-size: 18px; transition: all 0.3s; box-shadow: 0 8px 20px rgba(230, 73, 128, 0.35); text-decoration: none; margin: 15px 0; border: none; cursor: pointer; width: 100%; max-width: 350px; }
.purchase-button:hover { transform: translateY(-5px); box-shadow: 0 12px 25px rgba(230, 73, 128, 0.45); background: linear-gradient(135deg, #d6336c, #c2255c); }
.purchase-button i { margin-right: 12px; }

.trust-badges-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 15px;
    color: #4a5568;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
}
.trust-badge {
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}
.trust-badge i {
    color: #28a745;
    font-size: 14px;
}

.secondary-button { display: inline-block; background: white; color: #d6336c; padding: 14px 30px; border-radius: 8px; font-weight: 700; font-size: 16px; transition: all 0.3s; text-decoration: none; margin: 12px 0; border: 2px solid #f783ac; width: 100%; max-width: 350px; }
.secondary-button:hover { background: #f8f9fa; transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); }
.floating-element { position: absolute; z-index: 1; display: block; }
.floating-1 { top: 10%; left: 5%; width: 70px; height: 70px; background: rgba(247, 143, 179, 0.2); border-radius: 50%; animation: float1 12s infinite ease-in-out; }
.floating-2 { bottom: 15%; right: 7%; width: 100px; height: 100px; background: rgba(230, 73, 128, 0.15); border-radius: 50%; animation: float2 15s infinite ease-in-out; }
.floating-3 { top: 25%; right: 10%; width: 50px; height: 50px; background: rgba(214, 51, 108, 0.2); border-radius: 50%; animation: float3 10s infinite ease-in-out; }
@keyframes float1 { 0%, 100% { transform: translateY(0) translateX(0); } 25% { transform: translateY(-25px) translateX(20px); } 50% { transform: translateY(0) translateX(40px); } 75% { transform: translateY(25px) translateX(20px); } }
@keyframes float2 { 0%, 100% { transform: translateY(0) translateX(0); } 25% { transform: translateY(35px) translateX(-25px); } 50% { transform: translateY(0) translateX(-50px); } 75% { transform: translateY(-35px) translateX(-25px); } }
@keyframes float3 { 0%, 100% { transform: translateY(0) translateX(0); } 25% { transform: translateY(-20px) translateX(-15px); } 50% { transform: translateY(0) translateX(-30px); } 75% { transform: translateY(20px) translateX(-15px); } }
.samples-section, .delivery-section, .testimonials-section { padding: 70px 20px; background: linear-gradient(to bottom, #ffffff, #f8f9fa); position: relative; overflow: hidden; }
.samples-section::before, .delivery-section::before, .testimonials-section::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23FE0034' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E"); opacity: 0.4; }
.section-header { text-align: center; margin-bottom: 50px; position: relative; z-index: 2; }
.section-header h2 { font-size: 32px; color: #2d3748; margin-bottom: 20px; position: relative; display: inline-block; }
.section-header h2::after { content: ''; position: absolute; bottom: -12px; left: 50%; transform: translateX(-50%); width: 80px; height: 5px; background: linear-gradient(90deg, #FE0034, #d0002c); border-radius: 3px; }
.section-header p { font-size: 18px; color: #4a5568; max-width: 800px; margin: 0 auto; line-height: 1.7; }

.swiper-container { 
    position: relative; 
    max-width: 450px;
    margin: 0 auto; 
    border-radius: 18px; 
    overflow: hidden; 
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18); 
    z-index: 2; 
}
.swiper { 
    width: 100%; 
    aspect-ratio: 7 / 11;
}
.swiper-slide { display: flex; justify-content: center; align-items: center; background: #f8f9fa; position: relative; overflow: hidden; }
.swiper-slide::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 100%); z-index: 1; }
.swiper-slide img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.swiper-slide:hover img { transform: scale(1.05); }
.swiper-button-next, .swiper-button-prev { width: 50px; height: 50px; background: white; border-radius: 50%; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); color: #FE0034; transition: all 0.3s ease; }
.swiper-button-next::after, .swiper-button-prev::after { font-size: 1.4rem; font-weight: bold; }
.swiper-button-next:hover, .swiper-button-prev:hover { background: #FE0034; color: white; transform: scale(1.08); }
.swiper-pagination-bullet { width: 12px; height: 12px; background: #cbd5e0; opacity: 1; }
.swiper-pagination-bullet-active { background: #FE0034; width: 30px; border-radius: 6px; }

.page-info { text-align: center; margin-top: 25px; font-size: 16px; color: #4a5568; font-weight: 500; }
.download-cta { text-align: center; margin-top: 40px; }
.download-btn { display: inline-flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #FE0034, #d0002c); color: white; padding: 14px 25px; border-radius: 8px; font-weight: 700; font-size: 18px; text-decoration: none; box-shadow: 0 8px 25px rgba(254, 0, 52, 0.35); transition: all 0.3s ease; position: relative; overflow: hidden; z-index: 1; }
.download-btn::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, #d0002c, #a80024); z-index: -1; opacity: 0; transition: opacity 0.3s ease; }
.download-btn:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(254, 0, 52, 0.45); }
.download-btn:hover::before { opacity: 1; }
.download-btn i { margin-right: 12px; font-size: 1.4rem; }
.step-by-step { display: flex; flex-direction: column; gap: 20px; max-width: 850px; margin: 0 auto; }
.step { display: flex; align-items: flex-start; gap: 20px; background: white; border-radius: 20px; padding: 25px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); transition: all 0.4s ease; border: 1px solid rgba(254, 0, 52, 0.1); }
.step:hover { transform: translateY(-7px); box-shadow: 0 15px 35px rgba(0,0,0,0.15); }
.step-number { background: #FE0034; color: white; width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: bold; flex-shrink: 0; box-shadow: 0 5px 15px rgba(254, 0, 52, 0.3); }
.step-content h3 { color: #d6336c; margin-bottom: 10px; font-size: 22px; }
.step-content p { color: #4a5568; line-height: 1.7; font-size: 16px; }

.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 30px; position: relative; z-index: 2; max-width: 1300px; margin: 0 auto; justify-items: center; }
.testimonial-card { background: white; border-radius: 20px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); padding: 30px; transition: all 0.4s ease; border: 1px solid #f0f0f0; position: relative; overflow: hidden; width: 100%; max-width: 400px; }
.testimonial-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15); }
.testimonial-card::before { content: '"'; position: absolute; top: 20px; right: 25px; font-size: 100px; color: rgba(254, 0, 52, 0.1); font-family: Georgia, serif; line-height: 1; }
.rating { display: flex; gap: 5px; margin-bottom: 20px; }
.rating i { color: #FFD700; font-size: 20px; }
.testimonial-text { font-size: 17px; color: #4a5568; line-height: 1.7; margin-bottom: 25px; position: relative; z-index: 2; font-style: italic; }
.student-info { display: flex; align-items: center; gap: 15px; position: relative; z-index: 2; }
.student-avatar { width: 65px; height: 65px; border-radius: 50%; overflow: hidden; border: 3px solid #f0f0f0; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.student-avatar img { width: 100%; height: 100%; object-fit: cover; }
.student-details h4 { font-size: 20px; color: #2d3748; margin-bottom: 5px; }
.student-details p { font-size: 16px; color: #718096; display: flex; align-items: center; gap: 5px; }
.student-details p i { color: #FE0034; font-size: 14px; }

#upgrade-package-section {
    padding: 70px 20px;
    background: linear-gradient(135deg, #f4f7fa 0%, #e9edf2 100%);
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
}
.upgrade-container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
}
.upgrade-container .section-header h2 { color: #1a73e8; }
.upgrade-container .section-header h2::after { background: linear-gradient(90deg, #1a73e8, #1e63c2); }
.package-content { display: flex; flex-direction: column; align-items: center; gap: 30px; }
.package-features { list-style: none; padding: 0; margin: 20px 0; max-width: 450px; text-align: left; }
.package-features li { display: flex; align-items: center; gap: 15px; font-size: 18px; color: #343a40; margin-bottom: 18px; font-weight: 500; }
.package-features i { color: #1a73e8; background-color: #e8f0fe; width: 40px; height: 40px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.package-price { margin: 15px 0; }
.package-price .strikethrough { font-size: 24px; color: #868e96; }
.package-price .sale-price { font-size: 36px; font-weight: 900; color: #1e63c2; }
.upgrade-btn { display: inline-flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #28a745, #218838); color: white; padding: 16px 40px; border-radius: 50px; font-weight: 700; font-size: 20px; text-decoration: none; box-shadow: 0 8px 25px rgba(40, 167, 69, 0.35); transition: all 0.3s ease; border: none; cursor: pointer; }
.upgrade-btn:hover { transform: translateY(-5px) scale(1.05); box-shadow: 0 12px 30px rgba(40, 167, 69, 0.45); }
.upgrade-btn i { margin-right: 15px; animation: rocket-launch 2.5s ease-in-out infinite; }
@keyframes rocket-launch { 0% { transform: translateY(0) rotate(-45deg); } 50% { transform: translateY(-10px) rotate(-45deg); } 100% { transform: translateY(0) rotate(-45deg); } }

.form-group { margin-bottom: 20px; flex: 1; }
.form-group label { display: block; font-size: 16px; color: #4a5568; margin-bottom: 8px; font-weight: 600; }
.input-wrapper { position: relative; }
.input-wrapper i { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: #adb5bd; transition: color 0.3s ease; }
.form-group input, .form-group textarea { width: 100%; padding: 14px 15px 14px 45px; border-radius: 10px; border: 1px solid #e2e8f0; font-size: 15px; transition: all 0.3s ease; background: #f8f9fa; }
.form-group textarea { padding: 14px 20px; min-height: 120px; resize: vertical; }
.form-group input:focus, .form-group textarea:focus { border-color: #FE0034; box-shadow: 0 0 0 3px rgba(254, 0, 52, 0.15); outline: none; background: white; }
.form-group input:focus + i { color: #FE0034; }

.footer { background: linear-gradient(to right, #2c3e50, #1a2530); color: #fff; padding: 70px 0 0; position: relative; overflow: hidden; margin-top: 60px; }
.footer::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23000' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E"); opacity: 0.1; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; max-width: 1300px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 2; }
.footer-column h3 { font-size: 22px; margin-bottom: 25px; position: relative; padding-bottom: 15px; }
.footer-column h3::after { content: ''; position: absolute; bottom: 0; left: 0; width: 60px; height: 4px; background: linear-gradient(90deg, #FE0034, #d0002c); border-radius: 2px; }
.footer-about p { font-size: 16px; line-height: 1.7; margin-bottom: 20px; color: #e0e0e0; }
.social-links { display: flex; gap: 15px; margin-top: 20px; }
.social-links a { display: flex; align-items: center; justify-content: center; width: 45px; height: 45px; border-radius: 50%; background: rgba(255, 255, 255, 0.1); color: #fff; font-size: 18px; transition: all 0.3s ease; }
.social-links a:hover { background: #FE0034; transform: translateY(-5px); }
.footer-links { list-style: none; padding-left: 0;}
.footer-links li { margin-bottom: 15px; }
.footer-links a { color: #e0e0e0; text-decoration: none; font-size: 16px; transition: all 0.3s ease; display: flex; align-items: center; gap: 10px; }
.footer-links a i { color: #FE0034; font-size: 14px; }
.footer-links a:hover { color: #fff; transform: translateX(5px); }
.contact-info { list-style: none; padding-left: 0; }
.contact-info li { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 20px; }
.contact-info i { color: #FE0034; font-size: 20px; min-width: 25px; margin-top: 4px; }
.contact-info span { font-size: 16px; line-height: 1.5; color: #e0e0e0; }
.newsletter p { font-size: 16px; color: #e0e0e0; line-height: 1.6; margin-bottom: 20px; }
.newsletter-form { display: flex; gap: 10px; margin-bottom: 20px; }
.newsletter-form input { flex: 1; padding: 12px 15px; border: none; border-radius: 6px; font-size: 16px; min-width: 100px; }
.newsletter-form button { background: #FE0034; color: white; border: none; padding: 0 25px; border-radius: 6px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; font-size: 16px; }
.newsletter-form button:hover { background: #d0002c; transform: translateY(-3px); }
.payment-methods { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.payment-methods img { height: 30px; background: white; padding: 5px; border-radius: 5px; }
.copyright { text-align: center; padding: 25px 15px; background: rgba(0, 0, 0, 0.2); margin-top: 60px; position: relative; z-index: 2; }
.copyright p { font-size: 16px; color: #e0e0e0; }
.copyright .highlight { color: #FE0034; font-weight: 600; }
.bottom-nav { position: fixed; bottom: 0; left: 0; width: 100%; background-color: #fff; box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08); display: flex; justify-content: space-around; align-items: center; z-index: 1000; height: 65px; padding: 0 10px; border-top: 1px solid #e9ecef; padding-bottom: env(safe-area-inset-bottom); }
.nav-btn { display: flex; flex-direction: column; align-items: center; justify-content: center; text-decoration: none; color: #555; font-size: 12px; flex: 1; height: 100%; transition: all 0.3s ease; border-radius: 12px; padding: 4px 0; position: relative; }
.nav-btn i { font-size: 20px; margin-bottom: 4px; }
.nav-btn:hover { color: #FE0034; }
.nav-btn.active { color: #FE0034; background-color: rgba(254, 0, 52, 0.08); }
.nav-btn.active span { font-weight: 600; }
.nav-btn.buy-btn { background: linear-gradient(135deg, #e64980, #d6336c); color: white !important; border-radius: 50%; width: 60px; height: 60px; min-width: 60px; flex-grow: 0; transform: translateY(-18px); box-shadow: 0 4px 20px rgba(230, 73, 128, 0.5); border: 4px solid white; }
.buy-btn:hover { transform: translateY(-22px) scale(1.05); }
.buy-btn i { color: white !important; font-size: 22px; margin-bottom: 0; }
.buy-btn span { display: none; }

.whatsapp-widget { 
    position: fixed; 
    bottom: 85px;
    right: 25px; 
    z-index: 999; 
    background-color: #25d366; 
    color: white; 
    width: 60px; 
    height: 60px; 
    border-radius: 50%; 
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.2); 
    transition: transform 0.3s ease, bottom 0.3s ease, opacity 0.3s ease; 
    text-decoration: none; 
}
.whatsapp-widget:hover { transform: scale(1.1) rotate(10deg); }

#native-share-btn {
    position: fixed;
    bottom: 85px;
    right: 100px;
    z-index: 998;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
    display: block;
    opacity: 1;
}
#native-share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

#review-modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.8); z-index: 2000; align-items: center; justify-content: center; }
.review-modal-content { background: white; padding: 30px; border-radius: 15px; width: 90%; max-width: 500px; text-align: center; box-shadow: 0 15px 35px rgba(0,0,0,0.4); position: relative; }
.review-modal-content h3 { color: #d6336c; margin-bottom: 25px; font-size: 24px; }
#close-review-modal { position: absolute; top: 15px; right: 15px; background: none; border: none; font-size: 28px; color: #aaa; cursor: pointer; }
#review-form .form-group { text-align: left; }
.star-rating { display: flex; flex-direction: row-reverse; justify-content: center; gap: 5px; margin-bottom: 20px; }
.star-rating input[type="radio"] { display: none; }
.star-rating label { font-size: 30px; color: #ddd; cursor: pointer; transition: color 0.2s; }
.star-rating input[type="radio"]:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label { color: #FFD700; }
#review-form button[type="submit"] { background: linear-gradient(135deg, #FE0034, #d0002c); color: white; border: none; padding: 15px; border-radius: 8px; font-weight: 700; font-size: 17px; cursor: pointer; width: 100%; max-width: 250px; margin-top: 10px; }
#firebase-reviews-section { background: #fff8fa; }

.delivery-proof-section .section-header h2 .fa-whatsapp {
    color: #25D366;
    vertical-align: middle;
}
.delivery-proof-section .section-header h2 i {
    margin: 0 5px;
}
.frames-container {
    display: flex;
    flex-wrap: wrap; 
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 20px;
}
.delivery-proof-image {
    width: 300px;
    height: auto;
    border-radius: 18px;
    max-width: 90%;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12); 
    transition: transform 0.3s ease-in-out;
}
.delivery-proof-image:hover { transform: scale(1.04); }

.motivational-quote-section {
    padding: 60px 20px;
    background-color: #e9ecef;
}
.quote-image-wrapper {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}
.motivational-image {
    display: block;
    width: 100%;
    height: auto;
}

.page-viewer { padding: 50px 20px; background: #fff; min-height: 100vh; }
.page-viewer-hidden { display: none; }
.page-view-content { max-width: 800px; margin: 0 auto; display: none; }
.page-view-content.active { display: block; }
.page-view-content h2 { font-size: 32px; color: #d6336c; margin-bottom: 30px; padding-bottom: 15px; border-bottom: 3px solid #f0f2f5; }
.page-view-content h3 { font-size: 22px; color: #2d3748; margin-top: 30px; margin-bottom: 15px; }
.page-view-content p, .page-view-content li { color: #4a5568; line-height: 1.8; margin-bottom: 15px; }
.page-view-content ul, .page-view-content ol { padding-left: 25px; }
.back-to-main-btn { background: #FE0034; color: white; border: none; padding: 12px 25px; border-radius: 8px; font-size: 16px; font-weight: 600; cursor: pointer; margin-bottom: 40px; transition: all 0.3s ease; text-decoration: none; display: inline-block;}
.back-to-main-btn:hover { background: #d0002c; transform: translateY(-3px); }
.page-view-content .success-story-card { background: #f8f9fa; border-left: 5px solid #FE0034; border-radius: 10px; padding: 25px; margin-bottom: 30px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.page-view-content .success-story-card h4 { color: #d6336c; display: flex; align-items: center; gap: 10px; }
.page-view-content .success-story-card blockquote { font-style: italic; color: #333; border-left: 3px solid #ddd; padding-left: 15px; margin: 15px 0; }

#thank-you-view .thank-you-container,
.thank-you-container { text-align: center; padding: 40px 20px; background-color: #ffffff; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
#thank-you-view .success-icon,
.thank-you-container .success-icon { font-size: 60px; color: #28a745; background: #e6fff2; width: 100px; height: 100px; line-height: 100px; border-radius: 50%; margin: 0 auto 20px; }

@media (max-width: 1200px) { .section-header h2 { font-size: 30px; } .problems-container h2 { font-size: 24px; } }
@media (max-width: 991px) { .pricing-card.popular { transform: scale(1); } } /* Stop scaling on tablet */
@media (max-width: 768px) { 
    .header-main h1 { font-size: 28px; color: #ffffff;} 
    .header-sub p { font-size: 18px; } 
    .highlight-box p { font-size: 16px; } 
    .problems-container { padding: 20px; } 
    .pink-section, .samples-section, .delivery-section, .testimonials-section, .delivery-proof-section, .motivational-quote-section, #upgrade-package-section, .pricing-section-new, .giveaway-section { padding-top: 50px; padding-bottom: 50px; } 
    .footer { padding-top: 50px; } 
    .section-header h2 { font-size: 26px; } 
    .section-header p { font-size: 16px; } 
    .step { flex-direction: column; align-items: center; text-align: center; padding: 20px; gap: 15px; } 
    .step-number { margin-bottom: 15px; }
    .footer-column { text-align: center; } 
    .footer-about p, .newsletter p, .footer-links, .contact-info { text-align: left; max-width: 280px; margin-left: auto; margin-right: auto; } 
    .footer-column h3::after { left: 50%; transform: translateX(-50%); } 
    .social-links, .payment-methods { justify-content: center; } 
    .newsletter-form { flex-direction: column; gap: 15px; } 
    .whatsapp-widget { 
        bottom: 140px; 
        right: 25px;
        width: 55px; 
        height: 55px; 
        font-size: 26px; 
    } 
    #native-share-btn {
        bottom: 80px;
        right: 25px;
        padding: 8px 15px;
        font-size: 13px;
    }
    .upgrade-container { padding: 30px 20px; }
    .package-features li { font-size: 16px; gap: 12px; }
    .frames-container { flex-direction: column; gap: 30px; }
}
@media (max-width: 576px) { 
    .header-main h1 { font-size: 24px; } 
    .header-sub p { font-size: 16px; line-height: 1.5; } 
    .highlight-box { padding: 8px 20px; } 
    .highlight-box p { font-size: 15px; } 
    .rocket { font-size: 1.5rem; } 
    .udyam-registration { font-size: 11px; padding: 6px 12px; margin-top: 15px; }
    .problems-container h2 { font-size: 22px; } 
    .problems-container ul li { font-size: 15px; padding-left: 20px; } 
    .final-line { font-size: 16px; padding: 15px; } 
    .price-text { font-size: 22px; } 
    .sale-price { font-size: 24px; } 
    .section-header h2 { font-size: 24px; } 
    .download-btn { padding: 14px 25px; font-size: 16px; } 
    .form-group textarea { min-height: 100px; } 
    .page-view-content h2 { font-size: 26px; } 
    .page-view-content h3 { font-size: 20px; } 
    .testimonial-text { font-size: 15px; } 
    .mobile-frame { --frame-width: 260px; }
    .package-price .sale-price { font-size: 30px; }
    .upgrade-btn { padding: 14px 30px; font-size: 18px; }
    .delivery-proof-image { width: 280px; max-width: 95%; }
}