.site-content .ast-container {
  flex-direction: column;
  padding: 0px;
}
.hero-wrapper {
  width: 100%;
  background-color: #f1f5f9; /* light background or any of your choice */
	height:600px;
}
.kp-container{
	padding: 60px 114px;
}
.hero {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

    .hero-content {
      max-width: 800px;
    }
    .hero-content small {
      color: #5a845f;
      font-weight: 600;
      text-transform: uppercase;
    }
    .hero-content h1 {
      font-size: 63px;
      line-height: 1.2;
      margin: 20px 0;
    }
    .hero-content p {
      font-size: 18px;
      color: #555;
      margin-bottom: 20px;
    }
    .rating {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
    }
    .rating img {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      margin-right: -10px;
      border: 2px solid #fff;
    }
    .rating span {
      margin-left: 15px;
      font-weight: 500;
      color: #333;
    }
    .buttons a {
      display: inline-block;
      padding: 12px 24px;
      font-weight: 600;
      border-radius: 6px;
      text-decoration: none;
      margin-right: 15px;
    }
    .btn-primary {
      background-color: #636B2F;
      color: #fff;
    }
    .btn-outline {
      border: 2px solid #636B2F;
      color: #636B2F;
    }
    .hero-image {
      position: relative;
      width: 500px;
    }
    .hero-image img {
      width: 100%;
      border-radius: 16px;
    }
    .badge {
      position: absolute;
      background: #fff;
      border-radius: 30px;
      padding: 18px 20px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .badge.top {
      top: -30px;
      left: -100px;
    }
    .badge.bottom {
      bottom: 0px;
      right: -50px;
    }
    .features {
      display: flex;
      justify-content: space-around;
      padding: 40px 60px;
      background: #fff;
      border-top: 1px solid #e0e0e0;
		margin:auto;
		width: 80%;
		border-radius:12px;
		top:-62px;
		position:relative;
    }
    .feature-item {
      text-align: center;
      max-width: 250px;
    }
    .feature-item h4 {
      margin-top: 15px;
      margin-bottom: 10px;
      color: #333;
    }
    .feature-item p {
      color: #666;
    }
.quiz-section {
  padding: 4rem 1rem;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.subheading {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
}

.heading {
  font-weight: 700;
  margin-top: 0.25rem;
}

.all-quizzes-btn {
  background-color: var(--primary);
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
	height:500px
}

.card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
	border-radius:12px;
}

.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.category {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

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

.info {
  display: flex;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--primary);
}

.join-btn {
  background-color: #4B5320;
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background-color 0.3s;
}

.join-btn:hover {
  background-color: #0f766e;
}
.quiz-about-section {
  padding: 4rem 1rem;
  background: white;
}

.quiz-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
}

.quiz-image-wrapper {
  flex: 1;
  min-width: 280px;
}

.quiz-image-card {
  position: relative;
  background-color: var(--primary);
  padding: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
}

.quiz-image-card img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.quiz-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.badge-icon {
  font-size: 1.5rem;
  color: var(--primary);
}

.badge-text {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.quiz-content {
  flex: 1;
  min-width: 300px;
}

.quiz-subtitle {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.quiz-title {
  font-weight: 700;
  margin-bottom: 1rem;
}

.quiz-description {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.quiz-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.quiz-features li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.feature-icon {
  font-size: 1.5rem;
  color: var(--primary);
  margin-top: 2px;
}

.quiz-btn {
  background: var(--primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  transition: background 0.3s;
}

.quiz-btn:hover {
  background-color: #0f766e;
}

/* Responsive */
@media (max-width: 768px) {
  .quiz-container {
    flex-direction: column;
  }

  .quiz-badge {
    position: static;
    margin-top: 1rem;
  }
}
.quiz-process {
  padding: 4rem 1rem;
}

.container {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: flex-start;
}

.process-left {
  flex: 1;
  min-width: 280px;
}

.subtitle {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.title {
  font-weight: 700;
  margin-bottom: 1rem;
}

.description {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.watch-video {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 1rem;
}

.play-button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.process-right {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  min-width: 280px;
}

.step-box {
  background:white;
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
}

.step-number {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .process-right {
    grid-template-columns: 1fr;
  }
}
.quiz-testimonials {
  padding: 4rem 1rem;
  background: white;
  text-align: center;
}
.subtitle {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
}

.heading {
  font-weight: 700;
  margin: 0.5rem 0 1rem;
}

.description {
  max-width: 700px;
  margin: 0 auto 3rem;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: #F7F9FB;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.75rem;
}

.name {
  font-weight: 700;
  color: var(--primary);
}

.role {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.quote {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  /* Container Padding */
  .kp-container {
    padding: 30px 20px;
  }

  /* HERO Section */
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-image {
    width: 100%;
    margin-top: 30px;
  }

  .buttons a {
    margin-bottom: 10px;
  }

  /* Features */
  .features {
    flex-direction: column;
    padding: 30px 20px;
    width: 100%;
    top: 0;
    position: static;
  }

  .feature-item {
    margin-bottom: 20px;
    max-width: 100%;
  }

  /* QUIZ Cards Grid */
  .cards {
    grid-template-columns: 1fr;
    height: auto;
  }

  .card img {
    height: 200px;
  }

  /* QUIZ Split Section (Image + Text) */
  .quiz-container {
    flex-direction: column;
  }

  .quiz-image-card {
    padding: 0;
  }

  .quiz-badge {
    position: static;
    margin-top: 1rem;
  }

  /* PROCESS Section */
  .quiz-process .container {
    flex-direction: column;
  }

  .process-right {
    grid-template-columns: 1fr;
  }

  .watch-video {
    justify-content: center;
  }

  /* TESTIMONIALS */
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 1.5rem;
    text-align: center;
  }

  .quote {
    font-size: 1rem;
  }

  /* Other Global Adjustments */
  .quiz-btn,
  .all-quizzes-btn,
  .join-btn {
    width: 100%;
    text-align: center;
  }

  .bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

@media (max-width: 500px) {
  /* Typography scaling */
  .hero-content h1 {
    font-size: 28px;
  }

  .quiz-title,
  .title {
    font-size: 1.5rem;
  }

  .description,
  .quiz-description {
    font-size: 0.95rem;
  }

  .quiz-features li {
    flex-direction: column;
    align-items: flex-start;
  }

  .rating span {
    font-size: 0.85rem;
  }
	.badge.top{
		left:0px;
	}
	.badge.bottom{
		right:0px;
	}
}
.blog-hero {
  background: #f1f5f9;
  text-align: center;
  padding: 4rem 1rem;
}
.blog-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.blog-hero p {
  font-size: 1.1rem;
  color: #6b7280;
}

.blog-grid-section {
  background: #fff;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(315px, 1fr));
  gap: 2rem;
}
.blog-card {
  background: #f9fafb;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  padding-bottom: 1.5rem;
}
.blog-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.blog-meta {
  font-size: 0.8rem;
  color: #0d9488;
  font-weight: 600;
  text-transform: uppercase;
  margin: 1rem 1.5rem 0;
}
.blog-card h3 {
  margin: 0.5rem 1.5rem;
  font-size: 1.25rem;
}
.excerpt {
  font-size: 0.95rem;
  color: #6b7280;
  margin: 0.5rem 1.5rem 1rem;
}
.read-more {
  margin: 0 1.5rem;
  color: #0d9488;
  font-weight: 500;
  text-decoration: none;
}
.read-more:hover {
  color: #0f766e;
}

@media (max-width: 600px) {
  .blog-hero h1 {
    font-size: 2rem;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
.about-hero {
  padding: 4rem 1rem;
  background: #f1f5f9;
  text-align: center;
}
.about-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.about-hero p {
  font-size: 1.1rem;
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto;
}

.about-values {
  background: white;
  padding: 4rem 1rem;
}
.about-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
}
.about-image {
  flex: 1;
  min-width: 300px;
}
.about-image img {
  width: 100%;
  border-radius: 12px;
}
.about-content {
  flex: 1;
  min-width: 300px;
}
.about-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.about-content p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.about-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}
.about-content li {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #333;
}
.quiz-btn {
  background: #626b26;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 500;
}

@media (max-width: 768px) {
  .about-grid {
    flex-direction: column;
  }

  .about-hero h1 {
    font-size: 2rem;
  }
}
.contact-hero {
  padding: 4rem 1rem;
  background: #f1f5f9;
  text-align: center;
}
.contact-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.contact-hero p {
  font-size: 1.1rem;
  color: #6b7280;
}

.contact-section {
  padding: 4rem 1rem;
  background: white;
}
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}
.contact-form, .contact-info {
  flex: 1;
  min-width: 300px;
}
.contact-form h2, .contact-info h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form input,
.contact-form textarea {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}
.contact-form button {
  background: #626b26;
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
}
.contact-form button:hover {
  background: #0f766e;
}
.contact-info p {
  margin-bottom: 1rem;
  color: #333;
}
.map iframe {
  width: 100%;
  border-radius: 8px;
  margin-top: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-grid {
    flex-direction: column;
  }
  .contact-hero h1 {
    font-size: 2rem;
  }
}
.quiz-header {
  background: #f1f5f9;
  padding: 3rem 1rem;
  text-align: center;
}
.quiz-header h1 {
  font-size: 2.5rem;
}
.quiz-header p {
  font-size: 1.1rem;
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto;
}

.quiz-shortcode-section {
  padding: 3rem 1rem;
}
.quiz-shortcode-section .container {
  max-width: 800px;
  margin: auto;
}
.privacy-hero {
  background: #f1f5f9;
  padding: 4rem 1rem;
  text-align: center;
}
.privacy-hero h1 {
  font-size: 2.5rem;
}
.privacy-hero p {
  color: #6b7280;
}

.privacy-content {
  padding: 4rem 1rem;
  background: white;
  color: #333;
}
.privacy-content h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  color: #626b26;
}
.privacy-content p,
.privacy-content li {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.privacy-content ul {
  padding-left: 1.5rem;
}
:root {
  --brand-primary: #626b26;
  --brand-accent: #e5740a;
  --text-dark: #111827;
  --text-muted: #6b7280;
  --radius: 12px;
}

.quiz-category-block {
  margin-bottom: 5rem;
  padding: 2rem 1rem;
  background: #f9fafb;
  border-radius: var(--radius);
}

.category-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.category-header h2 {
  font-size: 2.2rem;
  color: var(--brand-primary);
  margin-bottom: 0.5rem;
}

.category-header p {
  color: #555;
  font-size: 1rem;
  max-width: 700px;
  margin: auto;
}

.subcategory-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  padding: 0 1rem;
}

.subcategory-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.subcategory-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.card-image img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.card-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-content h3 {
  font-size: 1.3rem;
  color: var(--brand-primary);
  margin-bottom: 0.75rem;
}

.card-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.card-button {
  background-color: var(--brand-accent);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
  align-self: start;
}

.card-button:hover {
  background-color: #c35f00;
}

/* Responsive */
@media (max-width: 600px) {
  .category-header h2 {
    font-size: 1.6rem;
  }
  .card-content h3 {
    font-size: 1.1rem;
  }
  .card-image img {
    height: 140px;
  }
}
.ast-single-entry-banner{
	background: #f1f5f9;
}
.qmn_btn{
	color: #626b26 !important;
}