.video-section {
  width: 1000px;
  margin: 0px auto 30px auto;
  display: flex;
  flex-direction: column; /* stack title and video vertically */
  justify-content: center;
  align-items: center;
}

.video-section h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  line-height: 1.4;
}

.video-section iframe {
  width: 775px;
  height: 400px;
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .video-section {
    width: 95%;
    height: auto;
  }
  .video-section iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }
  .video-section h2 {
    font-size: 24px; /* smaller font on mobile */
  }
}













/* Initial state for loading animation */
.topic-card {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 0.6s forwards ease-out;
  animation-delay: var(--animation-delay, 0s);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover animation: lift and shadow */
.topic-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

/* Keyframe for fade-in and slide-up */
@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Optional: stagger animation via inline style or JS by setting --animation-delay */













/* Compact Countdown Timer Section - White Background */
.ct-countdown-section {
    padding: 0px 20px;
    position: relative;
    overflow: hidden;
    height: 500px;
    display: flex;
    align-items: center;
  
}


.ct-countdown-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.ct-urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    backdrop-filter: blur(10px);
    padding: 8px 25px;
    border-radius: 50px;
    color: white;
    font-weight: 800;
    font-size: 12px;
    margin-bottom: 15px;
    animation: ct-pulse 2s ease-in-out infinite, ct-slideDown 0.6s ease-out;
    box-shadow: 0 8px 30px rgba(118, 75, 162, 0.4);
    border: 2px solid rgba(118, 75, 162, 0.3);
}

@keyframes ct-slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ct-urgency-badge i {
    color: #ff6b6b;
    animation: ct-flash 1.5s infinite;
    font-size: 14px;
    filter: drop-shadow(0 0 5px rgba(255, 107, 107, 0.5));
}

@keyframes ct-flash {
    0%, 100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.3) rotate(15deg);
    }
}

@keyframes ct-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.06);
    }
}

.ct-countdown-heading {
    font-size: 28px;
    color: #4976c9;
    margin-bottom: 25px;
    font-weight: 900;
    animation: ct-fadeInDown 0.8s ease-out;
    letter-spacing: -0.5px;
}

@keyframes ct-fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Countdown Timer */
.ct-countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
    animation: ct-scaleIn 1s ease-out;
}

@keyframes ct-scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.ct-time-box {
    background: #ffffff;
    border: 3px solid #e2e8f0;
    padding: 20px 25px;
    border-radius: 16px;
    min-width: 100px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08),
                0 8px 20px rgba(102, 126, 234, 0.15);
    position: relative;
    overflow: hidden;
    animation: ct-float 3s ease-in-out infinite;
    animation-delay: calc(var(--ct-box-index) * 0.2s);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ct-time-box:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12),
                0 12px 30px rgba(102, 126, 234, 0.25);
    border-color: #667eea;
}

.ct-time-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.2), transparent);
    animation: ct-shimmer 4s infinite;
}

.ct-time-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(240, 147, 251, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ct-time-box:hover::after {
    opacity: 1;
}

@keyframes ct-shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes ct-float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

.ct-time-value {
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    animation: ct-numberChange 0.5s ease, ct-gradientShift 3s ease infinite;
    filter: drop-shadow(0 2px 4px rgba(118, 75, 162, 0.2));
}

@keyframes ct-gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes ct-numberChange {
    0% {
        transform: scale(1.2) rotate(5deg);
        opacity: 0.5;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.ct-time-label {
    font-size: 11px;
    color: #667eea;
    margin-top: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ct-time-separator {
    font-size: 36px;
    color: #667eea;
    font-weight: 900;
    animation: ct-blink 1s infinite;
}

@keyframes ct-blink {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(0.9);
    }
}

.ct-offer-text {
    font-size: 18px;
    color: #4a5568;
    margin: 25px 0 20px;
    font-weight: 700;
}

.ct-highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    background-size: 200% 200%;
    padding: 5px 18px;
    border-radius: 8px;
    color: #ffffff;
    font-weight: 900;
    font-size: 22px;
    border: 3px solid #764ba2;
    animation: ct-glow 2s ease-in-out infinite, ct-bgShift 3s ease infinite;
    box-shadow: 0 0 20px rgba(118, 75, 162, 0.4),
                0 0 40px rgba(118, 75, 162, 0.2),
                inset 0 2px 10px rgba(255, 255, 255, 0.3);
    display: inline-block;
    transform: rotate(-2deg);
}

@keyframes ct-bgShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes ct-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(118, 75, 162, 0.4),
                    0 0 40px rgba(118, 75, 162, 0.2);
        transform: rotate(-2deg) scale(1);
    }
    50% {
        box-shadow: 0 0 30px rgba(118, 75, 162, 0.6),
                    0 0 60px rgba(118, 75, 162, 0.4);
        transform: rotate(-2deg) scale(1.05);
    }
}

/* CTA Button */
.ct-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    background-size: 200% 200%;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 15px 40px rgba(118, 75, 162, 0.4),
                0 8px 20px rgba(102, 126, 234, 0.3);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    animation: ct-bounceIn 1.2s ease-out, ct-buttonGradient 3s ease infinite;
    border: 3px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

@keyframes ct-buttonGradient {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes ct-bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) rotate(-10deg);
    }
    50% {
        transform: scale(1.1) rotate(2deg);
    }
    70% {
        transform: scale(0.9) rotate(-1deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.ct-cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.ct-cta-button:hover::before {
    width: 400px;
    height: 400px;
}

.ct-cta-button:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 20px 50px rgba(118, 75, 162, 0.5),
                0 10px 30px rgba(102, 126, 234, 0.4);
}

.ct-button-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.ct-button-content i {
    color: #ffd700;
    font-size: 16px;
    animation: ct-lockShake 2s ease-in-out infinite;
}

@keyframes ct-lockShake {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-5deg);
    }
    75% {
        transform: rotate(5deg);
    }
}

.ct-original-price {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    opacity: 0.9;
}

.ct-sale-price {
    color: #ffd700;
    font-size: 22px;
    font-weight: 900;
    animation: ct-priceHighlight 1.5s ease-in-out infinite;
    text-shadow: 0 2px 5px rgba(255, 215, 0, 0.3);
}

@keyframes ct-priceHighlight {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.12);
    }
}

/* Restart Flash Animation */
@keyframes ct-restartFlash {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
        border-color: #e2e8f0;
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
        border-color: #667eea;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .ct-countdown-section {
        height: auto;
        min-height: 450px;
        padding: 40px 15px;
    }
    
    .ct-countdown-heading {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .ct-countdown-timer {
        gap: 10px;
        margin: 20px 0;
    }
    
    .ct-time-box {
        padding: 15px 18px;
        min-width: 75px;
    }
    
    .ct-time-value {
        font-size: 28px;
    }
    
    .ct-time-separator {
        font-size: 24px;
    }
    
    .ct-offer-text {
        font-size: 15px;
        margin: 20px 0 15px;
    }
    
    .ct-highlight {
        font-size: 18px;
        padding: 4px 14px;
    }
    
    .ct-cta-button {
        padding: 12px 8px;
        font-size: 14px;
    }
    
    .ct-sale-price {
        font-size: 18px;
    }
    
    .ct-original-price {
        font-size: 13px;
    }
}














/* Container & Title */
.bundle-section {
  max-width: 1300px;
  margin: 60px auto;
  padding: 0 15px;
  text-align: center;
}

.bundle-section-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Flex container for cards */
.bundle-cards {
  display: flex;
  flex-wrap: wrap;  /* allow wrap */
  justify-content: center; /* center cards */
  gap: 20px;  /* gap between cards */
}

/* Card Styles & Animations */
.bundle-card {
  flex: 1 1 300px; /* grow, shrink, base width */
  max-width: 320px;
  border-radius: 16px;
  padding: 20px 15px;
  box-shadow: 0 12px 20px rgba(0,0,0,0.08);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(30px) scale(0.95) rotate(-1deg);
  animation: fadeInUpScaleRotate 0.8s forwards ease-out;
  animation-delay: var(--animation-delay, 0s);
  transition: transform 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
}

/* Image Styles & responsiveness */
.bundle-card-img {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
  display: block;
}

/* Title styles */
.bundle-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
}

/* Hover effect */
.bundle-card:hover {
  transform: translateY(-12px) scale(1.06);
  box-shadow:
    0 24px 48px rgba(102, 126, 234, 0.3),
    0 12px 24px rgba(118, 75, 162, 0.2);
  filter: brightness(1.05);
}

/* Animation keyframes */
@keyframes fadeInUpScaleRotate {
  to {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg);
  }
}

/* Background colors */
.bundle-color1 {
  background: linear-gradient(135deg, #b3a8f0, #deb2f3);
}
.bundle-color2 {
  background: linear-gradient(135deg, #e1f5fe, #81d4fa);
}
.bundle-color3 {
  background: linear-gradient(135deg, #fffde7, #fff59d);
}
.bundle-color4 {
  background: linear-gradient(135deg, #e8f5e9, #a5d6a7);
}
.bundle-color5 {
  background: linear-gradient(135deg, #fff3e0, #ffcc80);
}
.bundle-color6 {
  background: linear-gradient(135deg, #ede7f6, #b39ddb);
}
.bundle-color7 {
  background: linear-gradient(135deg, #fce4ec, #f48fb1);
}
.bundle-color8 {
  background: linear-gradient(135deg, #e0f7fa, #80deea);
}
.bundle-color9 {
  background: linear-gradient(135deg, #fff8e1, #ffe082);
}
.bundle-color10 {
  background: linear-gradient(135deg, #f3e5f5, #ce93d8);
}
.bundle-color11 {
  background: linear-gradient(135deg, #fafafa, #eeeeee);
}
.bundle-color12 {
  background: linear-gradient(135deg, #e3f2fd, #90caf9);
}


/* Responsive adjustments */
@media(max-width: 600px) {
  .bundle-card {
    flex: 1 1 90vw; /* almost full width on mobile */
    max-width: 90vw;
  }
  .bundle-card-img {
    max-height: 280px;
  }
  .bundle-section-title {
    font-size: 2rem;
  }
}






/* Free Bouns Web Development Course */

/* Main Section */
.web-dev-section {
  width: 100%;
  margin: auto;
  padding-bottom: 60px;
}

/* Headings */
.web-dev-head {
  text-align: center;
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.web-dev-head-bonus {
  color: #6e44ff;
  font-size: 22px;
  margin-top: 10px;
  text-align: center;
}

/* Container */
.web-dev-main {
 background: linear-gradient(135deg, #e3f2fd, #90caf9);
  width: 90%;
  max-width: 1200px;
  margin: 20px auto 40px;
  border: 1px solid #524f4f;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 30px;
  gap: 40px;
}

/* Text */
.web-dev-text {
  width: 50%;
  color: rgb(61, 50, 50);
  font-weight: 400;
}

.web-dev-text .web-p {
  margin-top: 20px;
  font-size: 36px;
  font-weight: 500;
  background: linear-gradient(to bottom right, #e984dc 0%, #593ff0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.web-dev-text p {
  color: rgb(146, 139, 139);
  font-size: 20px;
  margin: 10px 0;
}

/* List */
.web-dev-main ul {
  list-style: none;
  margin-left: 0px;
  font-size: 18px;
  line-height: 2rem;
}

.web-dev-main ul li {
  position: relative;
  padding-left: 2rem;
}

.web-dev-main ul li::before {
  content: "☑️";
  position: absolute;
  left: 0;
  font-size: 20px;
}

.web-dev-main strong {
  color: #526ff3;
}

/* Worth Section */
.worth-main {
  display: flex;
  align-items: center;
  gap: 0px;
  flex-wrap: wrap;
 
}

.worth-main .worth p {
  font-size: 28px;
  background: linear-gradient(to bottom right, #e984dc 0%, #593ff0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

.worth-main .free p {
  font-size: 16px;
  font-weight: 600;
  border: 1px solid #2b282a;
  padding: 10px 18px;
  border-radius: 12px;
}

/* Image */
.web-dev-img {
  width: 45%;
  text-align: center;
}

.web-dev-img img {
  width: 100%;
  max-width: 520px;
  border-radius: 12px;
}

/* Button */
.buy-button {
  display: inline-block;
  background: linear-gradient(90deg, #593ff0, #e984dc);
  color: white;
  padding: 15px 25px;
  font-size: 17px;
  font-weight: 600;
  border-radius: 8px;
  margin-top: 20px;
  text-decoration: none;
  transition: 0.3s ease;
  cursor: pointer;
}

.buy-button:hover {
  background: linear-gradient(90deg, #e984dc, #593ff0);
  transform: scale(1.05);
}

/* ---------- Responsive Design ---------- */

/* For tablets (<=992px) */
@media (max-width: 992px) {
  .web-dev-main {
    flex-direction: column-reverse;
    text-align: center;
    padding: 30px 20px;
    gap: 25px;
  }

  .web-dev-text,
  .web-dev-img {
    width: 100%;
  }

  .web-dev-text {
    text-align: center;
  }

  .web-dev-img img {
    max-width: 480px;
    margin: 0 auto;
  }

  .web-dev-text .web-p {
    font-size: 30px;
  }

  .web-dev-text p {
    font-size: 18px;
  }

  .web-dev-head {
    font-size: 32px;
  }
}

/* For phones (<=600px) */
@media (max-width: 600px) {
  .web-dev-main {
    flex-direction: column-reverse;
    padding: 25px 15px;
    gap: 20px;
    text-align: center;
  }

  .web-dev-text {
    width: 100%;
    text-align: center;
  }

  .web-dev-img img {
    max-width: 100%;
    margin: 0 auto 15px;
  }

  .web-dev-text .web-p {
    font-size: 26px;
  }
.web-dev-main ul{
  text-align: left;
}
  .web-dev-text p {
    font-size: 16px;
  }

  .buy-button {
    width: 100%;
    text-align: center;
  }

  .web-dev-head {
    font-size: 24px;
  }

  .web-dev-head-bonus {
    font-size: 18px;
  }
}



















/* Free Bouns 15+ Programming E-Book Bundle */
/* 🌈 Section Background */
.ebook-bonus-section {
  width: 100%;
  padding: 0px 0 60px;
  color: white;
  font-family: "Poppins", sans-serif;
}

/* 🟣 Headings */
.ebook-bonus-heading {
 text-align: center;
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.ebook-bonus-subheading {
  text-align: center;
  font-size: 20px;
  color: #b28bff;
  margin-bottom: 30px;
}

/* ⚫ Main Container */
.ebook-bonus-container {
  background: linear-gradient(135deg, #f3e5f5, #ce93d8);
  border: 1px solid #524f4f;
  border-radius: 14px;
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  padding: 20px 50px  30px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: 0 0 40px rgba(80, 0, 255, 0.3);
}

/* 🧾 Content Area */
.ebook-bonus-content {
  flex: 1;
  max-width: 550px;
}

.ebook-bonus-title {
  margin-top: 20px;
  font-size: 36px;
  font-weight: 500;
  background: linear-gradient(to bottom right, #e984dc 0%, #593ff0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ebook-bonus-subtitle {
  font-size: 20px;
  margin: 10px 0 15px;
}

/* 🧩 Icons Grid */
.ebook-bonus-icons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
  gap: 2px;
  max-width: 420px;
  justify-items: center;
}

.ebook-bonus-icons img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 10px;
  transition: 0.3s ease;
}

.ebook-bonus-icons img:hover {
  transform: scale(1.08);
  box-shadow: 0 0 12px rgba(185, 146, 255, 0.5);
}

/* 💰 Worth Section */
.ebook-bonus-worth {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 2px;
}

.ebook-bonus-price p {
  font-size: 26px;
  color: #b892ff;
  font-weight: 600;
}

.ebook-bonus-free p {
  font-size: 16px;
  border: 1px solid #2c2c2c;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 600;
}

/* 🟩 Button */
.ebook-bonus-btn {
  display: inline-block;
  background: linear-gradient(90deg, #593ff0, #e984dc);
  color: white;
  padding: 15px 25px;
  font-size: 17px;
  font-weight: 600;
  border-radius: 8px;
  margin-top: 20px;
  text-decoration: none;
  transition: 0.3s ease;
  cursor: pointer;
}

.ebook-bonus-btn:hover {
  background: #b892ff;
  color: #000;
  transform: scale(1.05);
}

/* 📘 Image Area */
.ebook-bonus-image {
  flex: 1;
  text-align: right;
}

.ebook-bonus-image img {
  width: 100%;
  max-width: 620px;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
}

/* 📱 Responsive Design */

/* Tablet (≤992px) */
@media (max-width: 992px) {
  .ebook-bonus-container {
    flex-direction: column-reverse;
    text-align: center;
    gap: 25px;
    padding: 30px 25px;
  }

  .ebook-bonus-content {
    max-width: 100%;
    text-align: center;
  }

  .ebook-bonus-icons {
    grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
    gap: 10px;
    max-width: 380px;
  }

  .ebook-bonus-image img {
    max-width: 420px;
  }

  .ebook-bonus-heading {
    font-size: 32px;
  }

  .ebook-bonus-title {
    font-size: 30px;
  }
}

/* Mobile (≤600px) */
@media (max-width: 600px) {
  .ebook-bonus-container {
    flex-direction: column-reverse;
    padding: 25px 15px;
    gap: 20px;
  }

  .ebook-bonus-image img {
    max-width: 100%;
    margin-bottom: 10px;
  }

  .ebook-bonus-content {
    text-align: center;
  }

  .ebook-bonus-title {
    font-size: 26px;
  }

  .ebook-bonus-subtitle {
    font-size: 18px;
  }

  .ebook-bonus-btn {
    width: 100%;
    font-size: 16px;
    
  }

  .ebook-bonus-heading {
    font-size: 26px;
  }

  .ebook-bonus-subheading {
    font-size: 16px;
  }

  .ebook-bonus-icons {
    grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
    gap: 10px;
    max-width: 100%;
  }

  .ebook-bonus-icons img {
    width: 60px;
    height: 60px;
  }
}












/* Monthly Updates Section */
.monthly-main {
  max-width: 1300px;
  margin: 0px auto;
  padding: 0px 20px 30px 20px;
  text-align: center;
}

.monthly-heading {
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
  animation: fadeInDown 0.8s ease-out;
}

.monthly-heading span {
  display: inline-block;
  animation: bounce 2s infinite;
}

.monthly-para {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease-out;
}

/* Cards Container */
.monthly-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-bottom: 50px;
}

/* Individual Card */
.monthly-card {
  flex: 1 1 320px;
  max-width: 380px;
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  border-radius: 16px;
  padding: 20px 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUpCard 0.8s forwards ease-out;
  animation-delay: var(--card-delay, 0s);
  cursor: pointer;
}

.monthly-card:nth-child(1) { 
  --card-delay: 0.2s;
  background: linear-gradient(135deg, #fce4ec, #f8bbd0);
}
.monthly-card:nth-child(2) { 
  --card-delay: 0.4s;
  background: linear-gradient(135deg, #fff3e0, #ffcc80);
}
.monthly-card:nth-child(3) { 
  --card-delay: 0.6s;
  background: linear-gradient(135deg, #e8f5e9, #a5d6a7);
}

.monthly-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.25);
}

.monthly-card span {
  font-size: 3rem;
  display: block;
  margin-bottom: 15px;
  animation: pulse 2s infinite;
}

.monthly-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.monthly-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Promise Section */
.monthly-promise {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  background: linear-gradient(135deg, #ede7f6, #d1c4e9);
  border-radius: 16px;
  padding: 10px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  animation: fadeInUp 1s ease-out;
}

.monthly-promise > div:first-child {
  flex: 1 1 500px;
  text-align: left;
}

.monthly-promise h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.monthly-promise h2 span {
  display: inline-block;
  animation: sparkle 1.5s infinite;
}

.monthly-promise p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
}

.monthly-updates {
  flex: 0 1 200px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border-radius: 16px;
  padding: 10px 20px;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
  animation: scaleIn 0.8s ease-out;
}

.monthly-updates span {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  margin-top: 10px;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUpCard {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

@keyframes sparkle {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive Design */
/* Extra small phones - Compact layout with max 300px height */
@media(max-width: 480px) {
  .monthly-heading {
    font-size: 1.6rem;
  }
  .monthly-para {
    font-size: 0.95rem;
  }
  .monthly-promise > div:first-child {
    text-align: center;
    margin-bottom: 10px; /* Small gap between text and box */
    width: 100%; /* Full width of parent */
    box-sizing: border-box;
  }

  .monthly-promise h2 {
    font-size: 1.7rem; /* Smaller heading */
    margin-bottom: 5px;
    margin-top: 0;
    line-height: 1.3;
  }

  .monthly-promise p {
    font-size: 0.85rem; /* Smaller text */
    margin-bottom: 10px;
    margin-top: 0;
    line-height: 1.4;
    padding: 0 5px;
    word-wrap: break-word; /* Prevent text overflow */
  }

  .monthly-updates {
    font-size: 0.95rem; /* Smaller font */
    padding: 15px  30px; /* Compact padding */
   margin: auto;
   
  }

  .monthly-updates span {
    font-size: 2rem; /* Smaller number */
    margin-top: 3px;
    margin-bottom: 3px;
  }
}
