/* Import Poppins font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Base body styling */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  color: #222;
  background-color: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a{
	text-decoration:none;
}
/* Font weights */
.font-light {
  font-weight: 300;
}
.font-regular {
  font-weight: 400;
}
.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.font-bold {
  font-weight: 700;
}

/* Font sizes */
.fs-xs {
  font-size: 0.75rem; /* 12px */
}
.fs-sm {
  font-size: 0.875rem; /* 14px */
}
.fs-md {
  font-size: 1rem; /* 16px */
}
.fs-lg {
  font-size: 1.25rem; /* 20px */
}
.fs-xl {
  font-size: 1.5rem; /* 24px */
}
.fs-xxl {
  font-size: 2rem; /* 32px */
  line-height: 2.5rem;
}

/* Margins (top and bottom) */
.mt-0 {
  margin-top: 0;
}
.mb-0 {
  margin-bottom: 0;
}
.mt-xs {
  margin-top: 0.25rem; /* 4px */
}
.mb-xs {
  margin-bottom: 0.25rem;
}
.mt-sm {
  margin-top: 0.5rem; /* 8px */
}
.mb-sm {
  margin-bottom: 0.5rem;
}
.mt-md {
  margin-top: 1rem; /* 16px */
}
.mb-md {
  margin-bottom: 1rem;
}
.mt-lg {
  margin-top: 1.5rem; /* 24px */
}
.mb-lg {
  margin-bottom: 1.5rem;
}

/* Padding helpers */
.p-xs {
  padding: 0.25rem; /* 4px */
}
.p-sm {
  padding: 0.5rem; /* 8px */
}
.p-md {
  padding: 1rem; /* 16px */
}
.p-lg {
  padding: 1.5rem; /* 24px */
}

/* Text colors */
.text-primary {
  color: #0B3D91; /* example primary color */
}
.text-secondary {
  color: #264653; /* example secondary color */
}
.text-muted {
  color: #6c757d;
}

/* Text alignment */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

/* Responsive container */
.container {
  max-width: 480px; /* mobile max width */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
}

.hero-section {
  background: #ACD0FF;
  background: radial-gradient(circle, rgba(172, 208, 255, 1) 0%, rgba(255, 255, 255, 1) 68%);
  padding: 2rem 1rem 3rem 1rem;
  color: #0b3d91;
}

.video-wrapper video {
  width: 100%;
  max-height: 240px;
  border-radius: 10px;
  box-shadow: 0 8px 15px rgba(11, 61, 145, 0.25);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  min-width: 140px;
  transition: background-color 0.3s ease;
}

.btn-primary {
  background-color: #0b3d91;
  color: white;
}

.btn-primary:hover {
  background-color: #093076;
}

.btn-secondary {
  background-color: transparent;
  color: #0b3d91;
  border: 2px solid #0b3d91;
}

.btn-secondary:hover {
  background-color: #0b3d91;
  color: white;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.time-unit {
  text-align: center;
  flex: 1;
  min-width: 50px;
}

.label {
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #0847bb;
  text-transform: uppercase;
}

.number {
  font-size: 1.5rem;
  font-weight: 700;
  background: white;
  border-radius: 6px;
  padding: 0.5rem 0;
  box-shadow: 0 3px 6px rgba(11, 61, 145, 0.15);
  color: #0b3d91;
}









.pain-points-section {
  background: #f4faff;
  padding: 2rem 1rem 3rem 1rem;
  color: #0b3d91;
}

.lists-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Checklist styling */
.checklist {
  list-style: none;
  padding-left: 0;
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.checklist li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.8rem;
}

/* Checkmark icon */
.checklist li::before {
  content: "✔️";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.1rem;
  color: #2a9d8f;
  line-height: 1;
}

/* Report help text */
.report-help p {
  color: #264653;
}

.numbered-list {
  padding-left: 1.2rem;
  margin: 0;
  color: #264653;
  font-size: 1rem;
  line-height: 1.6;
}

.numbered-list li {
  margin-bottom: 0.8rem;
}







.testimonial-section {
  padding: 3rem 1rem 4rem 1rem;
  background: #e7f0ff;
  color: #0b3d91;
  box-shadow: 0 6px 18px rgba(11, 61, 145, 0.1);
}

.testimonial-cards {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* Responsive three cards in a row on wider screens */
@media (min-width: 720px) {
  .testimonial-cards {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }
}

.testimonial-card {
  background: white;
  padding: 1.5rem 1rem 1.5rem 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(11, 61, 145, 0.1);
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 250px;
}

.testimonial-pic {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  box-shadow: 0 0 8px rgba(11, 61, 145, 0.15);
}

.testimonial-content .review {
  font-style: italic;
  color: #264653;
}

.reviewer-name {
  margin-top: 1rem;
  color: #0b3d91;
}

.reviewer-designation {
  margin-top: 0.25rem;
  color: #6c757d;
}











.seo-report-section {
  margin-top: 3rem;
  margin-bottom: 4rem;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

/* Banner styling */
.seo-report-section .banner {
  background: linear-gradient(90deg, #2a9d8f, #264653);
  padding: 2rem 1rem;
  text-align: center;
}

.seo-report-section .banner h2 {
  margin: 0;
  color: white;
  font-weight: 700;
  font-size: 1.75rem;
}

/* Content styling */
.report-content {
  padding: 2rem 1rem;
  color: #264653;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
}

.report-item {
  margin-bottom: 2rem;
}

.report-item h3 {
  margin-bottom: 0.75rem;
  color: #0b3d91;
}

.report-item ul {
  padding-left: 1.2rem;
  margin: 0;
  list-style-type: disc;
}

.report-item ul ul {
  list-style-type: circle;
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.report-item ul li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

/* Responsive adjustments */
@media (min-width: 480px) {
  .report-content {
    padding: 3rem 2rem;
  }

  .seo-report-section .banner h2 {
    font-size: 2.25rem;
  }
}







.site-footer {
  background-color: #121212;
  color: #ccc;
  padding: 2rem 1rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: center;
}

.footer-container {
  max-width: 480px;
  margin: 0 auto;
}

.contact-info {
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-link {
  color: #4db6ac;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover,
.footer-link:focus {
  color: #81c784;
  text-decoration: underline;
}

.privacy-policy {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: #999;
  text-align: justify;
}

@media (min-width: 480px) {
  .site-footer {
    font-size: 1rem;
    padding: 3rem 1rem;
  }
}









.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #0b3d91;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.75rem 1rem;
  gap: 1.5rem;
  box-shadow: 0 -3px 10px rgba(11, 61, 145, 0.5);
  z-index: 9999;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
}

.cta-text {
  flex-shrink: 0;
}

.cta-button {
  background-color: #ff6f61;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  color: white;
  font-weight: 700;
  cursor: pointer;
  font-size: 1.1rem;
  animation: pulse 2s infinite ease-in-out;
  box-shadow: 0 0 10px #ff6f61;
  transition: background-color 0.3s ease;
}

.cta-button:hover,
.cta-button:focus {
  background-color: #ff3b2e;
  box-shadow: 0 0 20px #ff3b2e;
  outline: none;
}

/* Pulse animation */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 10px #ff6f61;
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 25px #ff6f61;
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 10px #ff6f61;
  }
}
