/* CTA Snippet Styles */
.ctaSnippetWrapper {
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

/* Gradient Backgrounds */
.cta-blue {
  background: linear-gradient(130deg, #0554E6 0%, #003968 100%);
}

.cta-green {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.cta-purple {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

/* CTA Head */
.ctaHead {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 8px 18px 8px 12px;
  border-radius: 50px;
}

.ctaEmoticon {
  font-size: 24px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bolg-p .ctaBadge {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin: 0;
  line-height: 1.2;
  padding: 0;
}

/* CTA Heading */
.bolg-p .ctaHeading {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
  margin: 0 0 32px 0;
  max-width: 700px;
}

/* CTA Buttons */
.ctaBtns {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.bolg-p .primaryCta {
  background: #ffffff;
  color: #1e293b;
    padding: 11px 25px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cta-blue .bolg-p .primaryCta {
  background: #2563eb;
  color: #ffffff;
}

.cta-green .bolg-p .primaryCta {
  background: #059669;
  color: #ffffff;
}

.cta-purple .bolg-p .primaryCta {
  background: #7c3aed;
  color: #ffffff;
}

.bolg-p .primaryCta::after {
  content: '\2192';
  font-size: 16px;
  transition: transform 0.3s ease;
}

.bolg-p .primaryCta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.bolg-p .primaryCta:hover::after {
  transform: translateX(4px);
}

.bolg-p .closingText {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin: 0;
  padding: 0;
}

.bolg-p .closingText::before {
  content: '\2713';
  width: 18px;
  height: 18px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  color: #fff;
}

/* CTA 2 Snippet Styles */
.cta2SnippetWrapper {
  border-radius: 24px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.bolg-p .cta2Heading {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
  margin: 0 0 12px 0;
    padding: 0;
}

.bolg-p .cta2Subheading {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.blop-pWraper .cta2Points {
  display: flex;
  flex-direction: column;
  gap: 12px;
    margin: 0 0 15px 0;
  list-style: none;
}

.blop-pWraper .cta2Points li {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
}

.blop-pWraper .cta2Points li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
    left: -35px;
    top: 0;
}

.cta2Btns {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.bolg-p .cta2ClosingStatement {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
padding: 0;
}

.bolg-p .cta2Btn {
  background: #ffffff;
  color: #1e293b;
    padding: 11px 25px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-blue .bolg-p .cta2Btn {
  background: #ffffff;
  color: #2563eb;
}

.cta-green .bolg-p .cta2Btn {
  background: #ffffff;
  color: #059669;
}

.cta-purple .bolg-p .cta2Btn {
  background: #ffffff;
  color: #7c3aed;
}

.bolg-p .cta2Btn::after {
  content: '\2192';
  font-size: 18px;
  transition: transform 0.3s ease;
}

.bolg-p .cta2Btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  text-decoration: none;
}

.bolg-p .cta2Btn:hover::after {
  transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .ctaSnippetWrapper {
    padding: 30px 24px;
    border-radius: 20px;
  }

  .bolg-p .ctaHeading {
    font-size: 22px;
    margin-bottom: 24px;
  }

  .ctaBtns {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .bolg-p .primaryCta {
    padding: 12px 24px;
    font-size: 15px;
  }

  .bolg-p .closingText {
    font-size: 14px;
  }

  .cta2SnippetWrapper {
    padding: 36px 24px;
  }

  .bolg-p .cta2Heading {
    font-size: 26px;
  }

  .bolg-p .cta2Subheading {
    font-size: 16px;
    margin-bottom: 28px;
  }

  .blop-pWraper .cta2Points {
    gap: 12px;
  }

  .blop-pWraper .cta2Points li {
    font-size: 15px;
  }

  .bolg-p .cta2Btn {
    padding: 12px 28px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .ctaSnippetWrapper {
    padding: 24px 20px;
    border-radius: 16px;
    margin: 30px 0;
  }

  .ctaHead {
    gap: 10px;
    margin-bottom: 16px;
  }

  .ctaEmoticon {
    font-size: 24px;
  }

  .bolg-p .ctaBadge {
    font-size: 12px;
  }

  .bolg-p .ctaHeading {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .bolg-p .primaryCta {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }

  .bolg-p .closingText {
    font-size: 13px;
  }

  .cta2SnippetWrapper {
    padding: 28px 20px;
  }

  .bolg-p .cta2Heading {
    font-size: 22px;
  }

  .bolg-p .cta2Subheading {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .blop-pWraper .cta2Points {
    gap: 10px;
    margin-bottom: 24px;
  }

  .blop-pWraper .cta2Points li {
    font-size: 14px;
  }

  .blop-pWraper .cta2Points li::before {
    width: 18px;
    height: 18px;
    font-size: 11px;
  }

  .bolg-p .cta2ClosingStatement {
    font-size: 13px;
  }

  .bolg-p .cta2Btn {
    width: 100%;
    justify-content: center;
    padding: 12px 24px;
    font-size: 15px;
  }
}