/* HERO SECTION */
.home_banner_area {
  margin-bottom: 0 !important;

}

.home_banner_area,
.banner_inner {
  min-height: unset !important;
  height: auto !important;
  padding-bottom: 0px;
}

.pp-hero {
  padding: 110px 0;
  background: #ffffff;
  margin-bottom: 0 !important;
}

/* LEFT SIDE */
/* HERO LEFT */
.pp-hero-left {
  max-width: 520px;
}

/* Eyebrow */
.pp-eyebrow {
  color: #0066ff;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.4px;
}

/* Title */
.pp-hero-title {
  font-size: 44px;
  font-weight: 800;
  margin: 12px 0 16px;
  color: #0a2540;
  font-family: 'Poppins', sans-serif;
}

/* Description */
.pp-hero-desc {
  font-size: 16px;
  color: #555;
  margin-bottom: 22px;
  font-family: 'Poppins', sans-serif;
}

/* FEATURE LIST */
.pp-feature-list {
  margin-bottom: 30px;
  font-family: 'Poppins', sans-serif;
}

/* Each Feature */
.pp-feature-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin-bottom: 18px;
  font-family: 'Poppins', sans-serif;
}

/* Blue Tick */
.pp-tick {
  min-width: 26px;
  height: 26px;
  background: #eaf2ff;
  color: #0066ff;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-top: 4px;
  font-family: 'Poppins', sans-serif;
}

/* Feature Title */
.pp-feature-item h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 3px;
  color: #0a2540;
  font-family: 'Poppins', sans-serif;
}

/* Feature Text */
.pp-feature-item p {
  font-size: 14px;
  color: #666;
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

/* FORM ENTRANCE ANIMATION */
.pp-form-animate {
  opacity: 0;
  transform: translateY(30px);
  animation: formFadeUp 0.8s ease forwards;
  animation-delay: 0.3s;
  font-family: 'Poppins', sans-serif;


}

/* Keyframes */
@keyframes formFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* CTA BUTTONS */
.pp-hero-cta {
  display: flex;
  gap: 14px;
  align-items: center;
  font-family: 'Poppins', sans-serif;

}

.pp-btn-primary {
  background: #ffcc29;
  color: #000;
  padding: 14px 26px;
  border-radius: 30px;
  font-weight: 700;
  border: none;
  font-family: 'Poppins', sans-serif;

}

.pp-btn-outline {
  background: transparent;
  border: 2px solid #0066ff;
  color: #0066ff;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;

}

.pp-btn-outline:hover {
  background: #0066ff;
  color: #fff;
  font-family: 'Poppins', sans-serif;

}

/* RIGHT FORM CARD */
.pp-demo-card {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 20px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
  font-family: 'Poppins', sans-serif;

}

.pp-demo-header {
  text-align: center;
  margin-bottom: 25px;
  font-family: 'Poppins', sans-serif;

}

.pp-demo-badge {
  display: inline-block;
  background: #ffcc29;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;

}

.pp-brand-title {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  font-family: 'Poppins', sans-serif;

}

.pp-brand-blue {
  color: #2563eb;
  /* blue */
  font-family: 'Poppins', sans-serif;

}

.pp-brand-red {
  color: #ef4444;
  /* red */
  font-family: 'Poppins', sans-serif;

}


/* .pp-demo-header h3 {
  font-weight: 700;
  margin-bottom: 5px;
  font-family: 'Poppins', sans-serif;

} */

.pp-demo-header p {
  font-size: 14px;
  color: #020202;
  font-family: 'Poppins', sans-serif;

}

/* FORM */
.pp-demo-form input,
.pp-demo-form select {
  width: 100%;
  height: 48px;
  border-radius: 12px;
  border: 1px solid #ddd;
  padding: 0 15px;
  margin-bottom: 14px;
  font-family: 'Poppins', sans-serif;


}


.pp-form-grid {
  display: flex;
  gap: 10px;
}

/* SUBMIT */
.pp-btn-submit {
  width: 100%;
  height: 52px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(135deg, #0066ff, #0047cc);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  margin-top: 10px;
  font-family: 'Poppins', sans-serif;

}

/* NOTE */
.pp-form-note {
  text-align: center;
  font-size: 12px;
  color: #060606;
  margin-top: 12px;
}

/* MOBILE */
@media (max-width: 767px) {
  .pp-hero-title {
    font-size: 34px;
  }

  .pp-hero-cta {
    flex-direction: column;
  }

  .pp-form-grid {
    flex-direction: column;
  }
}

/* end hero section banner */
/* demo popup */

/*Demo Popup Form */
/* DEMO BUTTON */
/* DEMO BUTTON */
/* Overlay */
.demo-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 99999;
  align-items: center;
  justify-content: center;
}

.demo-modal {
  background: #fff;
  width: 90%;
  max-width: 420px;
  padding: 28px;
  border-radius: 18px;
  position: relative;
  animation: demoFade 0.35s ease;
}

.demo-close {
  position: absolute;
  right: 14px;
  top: 14px;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
}

.demo-modal h2 {
  text-align: center;
  color: #0066ff;
  font-family: 'Poppins', sans-serif;
}

.demo-sub {
  text-align: center;
  font-size: 14px;
  margin-bottom: 18px;
}

.demo-modal input,
.demo-modal select {
  width: 100%;
  height: 46px;
  margin-bottom: 14px;
  /* ✅ ADD THIS */
  border-radius: 10px;
  border: 1px solid #ddd;
  padding: 0 14px;
  font-size: 14px;
}

.demo-field {
  margin-bottom: 18px !important;
}

.demo-send-btn {
  width: 100%;
  height: 48px;
  background: linear-gradient(135deg, #25d366, #1ebe5d);
  border: none;
  border-radius: 30px;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  margin-top: 8px;
  cursor: pointer;
}

@keyframes demoFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/*  demo popup-end */
/* assistance call section */
/* ASSISTANCE CALL SECTION */
/* ===== AI + CONTACT SECTION ===== */
/* ===== AI + CONTACT SECTION ===== */
.pp-ai-contact {
  padding: 60px 0;
  background: linear-gradient(180deg, #f7f9ff, #ffffff);
}

/* GRID */
.pp-ai-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* ===== LEFT CONTACT MINI ===== */
.pp-contact-mini {
  background: #ffffff;
  padding: 32px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  width: 100%;
  box-sizing: border-box;
}

.pp-badge {
  display: inline-block;
  background: #e8f0ff;
  color: #2563eb;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

.pp-contact-mini h3 {
  font-size: 26px;
  margin-bottom: 10px;
}

.pp-contact-mini h3 span {
  color: #2563eb;
}

.pp-contact-mini p {
  font-size: 15px;
  color: #555;
  margin-bottom: 18px;
}

.pp-contact-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 10px;
  flex-wrap: wrap; /* mobile safety */
}

.pp-btn-call {
  background: #2563eb;
  color: #fff;
  padding: 12px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

.pp-btn-whatsapp {
  border: 2px solid #25d366;
  color: #25d366;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

.pp-contact-mini small {
  color: #777;
  font-size: 13px;
}

/* ===== RIGHT AI BOX ===== */
.pp-ai-box {
  background: #1f1d4e;
  border-radius: 18px;
  padding: 28px;
  color: #ffffff;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* AI Header */
.pp-ai-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.pp-ai-tag {
  background: rgba(255, 255, 255, 0.12);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
}

.pp-ai-logo {
  width: 64px;
  height: auto;
  flex-shrink: 0;
}

.pp-ai-box h3 span {
  color: #ffcc33;
}

/* ===== TABLET & MOBILE ===== */
@media (max-width: 768px) {
  .pp-ai-grid {
    grid-template-columns: 1fr; /* STACK CARDS */
  }
}

/* ===== SMALL MOBILE ===== */
@media (max-width: 480px) {
  .pp-ai-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .pp-ai-logo {
    width: 48px;
  }

  .pp-ai-contact {
    padding: 40px 0;
  }
}



/* assistance call section end */
/* download section */
.download-section {
  text-align: center;
  padding: 0px 0px;
  background: linear-gradient(white);
  border-radius: 12px;
  margin: 0 auto;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  margin-top: 0 !important;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 0 !important;

}

.download-section h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 35px;
  color: black;
  font-family: 'Poppins', sans-serif;

}

.download-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  font-family: 'Poppins', sans-serif;

}

.download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  min-width: 230px;
  transition: all 0.3s ease;
  color: #fff !important;
  /* 🔥 Force white text */
  font-family: 'Poppins', sans-serif;

}

.download-btn i {
  font-size: 24px;
  color: #fff !important;
  /* 🔥 Force icon white too */
}

/* ===== Platform Colors ===== */
.download-btn.android {
  background: linear-gradient(90deg, #00C853, #009624);
}

.download-btn.windows {
  background: linear-gradient(90deg, #0078D7, #005a9e);
}

.download-btn.ios {
  background: linear-gradient(90deg, #000000, #434343);
}

/* Hover animation */
.download-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  opacity: 0.95;
}

/* Mobile-friendly layout */
@media (max-width: 576px) {
  .download-section h3 {
    font-size: 22px;
    font-family: 'Poppins', sans-serif;

  }

  .download-btn {
    min-width: 180px;
    font-size: 15px;
  }
}

/* End Download Section */
/*  starts--who for section */
/* ===============================
   WHO IS IT FOR SECTION
================================ */
.who-for-section {
  background: #ffffff;
  padding: 0px 0;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-family: 'Poppins', sans-serif;

}

.who-for-section .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  font-family: 'Poppins', sans-serif;

}

.section-badge {
  display: inline-block;
  background: #eef3ff;
  color: #4f6cff;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 13px;
  margin-bottom: 18px;
  font-family: 'Poppins', sans-serif;
}

.section-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 55px;
  font-family: 'Poppins', sans-serif;
}

.section-title span {
  color: #6a5cff;
  font-family: 'Poppins', sans-serif;
}

/* GRID */
.who-for-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */
.who-card {
  background: #fff;
  border-radius: 18px;
  padding: 40px 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.who-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

/* ICON */
.who-icon {
  font-size: 42px;
  margin-bottom: 20px;
}

/* TEXT */
.who-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #111;
  font-family: 'Poppins', sans-serif;
}

.who-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 18px;
  font-family: 'Poppins', sans-serif;
}

/* LINK */
.who-link {
  text-decoration: none;
  font-weight: 600;
  color: #127adb;
  font-size: 0.95rem;
}

.who-link:hover {
  text-decoration: underline;
  font-family: 'Poppins', sans-serif;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .who-for-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .who-for-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 1.9rem;
    font-family: 'Poppins', sans-serif;
  }
}

/*end-- whywho for section */
/* ===============================
   FEATURES SECTION
================================ */
.pp-features {
  padding: 0px 0;
  background: #ffffff;
  font-family: "Poppins", sans-serif;
}

.pp-features-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

/* Badge */
.pp-badge {
  display: inline-block;
  padding: 6px 18px;
  background: #eef2ff;
  color: #4f46e5;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  font-family: 'Poppins', sans-serif;
}

/* Heading */
.pp-heading {
  font-size: 38px;
  font-weight: 600;
  color: #0b2545;
  line-height: 1.4;
  margin-bottom: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: 'Poppins', sans-serif;
}

/* ROTATE WRAPPER */
.pp-rotate {
  position: relative;
  height: 1.4em;
  min-width: 320px;
}

/* ROTATING WORDS */
.pp-rotate-word {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: rotateX(90deg);
  transition: all 0.6s ease;
  color: #6366f1;
  font-weight: 700;
  white-space: nowrap;
  font-family: 'Poppins', sans-serif;
}

.pp-rotate-word.is-active {
  opacity: 1;
  transform: rotateX(0deg);
}

/* GRID */
.pp-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */
.pp-feature-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 25px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.pp-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.pp-feature-card img {
  width: 60px;
  margin-bottom: 20px;
}

.pp-feature-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
}

.pp-feature-card p {
  font-size: 14px;
  color: #555;
  font-family: 'Poppins', sans-serif;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .pp-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pp-heading {
    font-size: 28px;
    margin-bottom: 50px;
    font-family: 'Poppins', sans-serif;
  }

  .pp-rotate {
    min-width: 220px;
  }
}

@media (max-width: 576px) {
  .pp-features-grid {
    grid-template-columns: 1fr;
  }
}

/* ===============================
   ROTATING TEXT
================================ */
.pp-rotate {
  display: inline-block;
  position: relative;
  min-width: 280px;
  height: 1.4em;
  vertical-align: bottom;
}

.pp-rotate-word {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: rotateX(90deg);
  transition: all 0.6s ease;
  color: #6366f1;
  font-weight: 700;
  white-space: nowrap;
  font-family: 'Poppins', sans-serif;
}

.pp-rotate-word.is-active {
  opacity: 1;
  transform: rotateX(0deg);
}

/* ===============================
   CARD TEXT + ARROW INLINE
================================ */
.pp-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #555;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  font-family: 'Poppins', sans-serif;
}

.pp-link span {
  transition: transform 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

/* Hover effect */
.pp-feature-card:hover .pp-link {
  color: #2563eb;
}

.pp-feature-card:hover .pp-link span {
  transform: translateX(6px);
}

/* underline on hover */
.pp-feature-card:hover .pp-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #2563eb;
}

/* ===============================
   SCROLL ANIMATION
================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.pp-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}


/* end feature section */
/* SECTION */
.ppx-features {
  padding: 100px 0;
  background: #fff;
  font-family: 'Poppins', sans-serif;
}

.ppx-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

/* Badge */
.ppx-badge {
  display: inline-block;
  padding: 6px 18px;
  background: #eef2ff;
  color: #4f46e5;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  font-family: 'Poppins', sans-serif;
}

/* Title */
.ppx-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 70px;
  font-family: 'Poppins', sans-serif;
}

.ppx-title span {
  color: #6366f1;
  font-family: 'Poppins', sans-serif;
}

/* Grid */
.ppx-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Card */
.ppx-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 25px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

/* Hover lift */
.ppx-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

/* Icon */
.ppx-card img {
  width: 70px;
  margin-bottom: 20px;
}

/* Heading */
.ppx-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
}

/* Text + Arrow INLINE */
.ppx-card p {
  font-size: 14px;
  color: #555;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  position: relative;
  font-family: 'Poppins', sans-serif;
}

/* Arrow */
.ppx-arrow {
  transition: transform 0.3s ease;
  font-weight: 600;
}

/* Hover text effect */
.ppx-card:hover p {
  color: #2563eb;
  text-decoration: underline;
  font-family: 'Poppins', sans-serif;
}

.ppx-card:hover .ppx-arrow {
  transform: translateX(6px);
}

/* Scroll animation */
.scroll-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.scroll-animate.active {
  opacity: 1;
  transform: translateY(0);

}

/* Responsive */
@media (max-width: 992px) {
  .ppx-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .ppx-grid {
    grid-template-columns: 1fr;
  }

  .ppx-title {
    font-size: 28px;
    font-family: 'Poppins', sans-serif;
  }
}

/* ============================
   SCROLL ANIMATION
============================ */
.scroll-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease;
}

.scroll-animate.show {
  opacity: 1;
  transform: translateY(0);
}

/* ============================
   CARD HOVER EFFECT
============================ */
.ppx-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 28px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
  position: relative;
  cursor: pointer;
}

.ppx-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 70px rgba(79, 70, 229, 0.18);
}

/* ===============================
   INTRO / VALUE SECTION
================================ */
.pp-intro-section {
  padding: 2px 2px 2px;
  background: #ffffff;
  font-family: "Poppins", sans-serif;

}

.pp-intro-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
  font-family: 'Poppins', sans-serif;

}

/* Badge */
.pp-intro-badge {
  display: inline-block;
  padding: 8px 22px;
  background: #fde7ef;
  color: #e11d48;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 6500;
  letter-spacing: 0.6px;
  margin-bottom: 24px;
  font-family: 'Poppins', sans-serif;

}

/* Heading */
.pp-intro-title {
  font-size: 44px;
  font-weight: 600;
  color: #111;
  line-height: 1.25;
  margin-bottom: 28px;
  font-family: 'Poppins', sans-serif;

}

.pp-intro-title span {
  color: #4f46e5;
  font-family: 'Poppins', sans-serif;

}

/* Description */
.pp-intro-text {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  max-width: 900px;
  margin: auto;
  font-family: 'Poppins', sans-serif;

}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .pp-intro-title {
    font-size: 36px;
    font-family: 'Poppins', sans-serif;

  }

  .pp-intro-text {
    font-size: 16px;
    font-family: 'Poppins', sans-serif;

  }
}

@media (max-width: 576px) {
  .pp-intro-section {
    padding: 0px 0px 0px;
    font-family: 'Poppins', sans-serif;

  }

  .pp-intro-title {
    font-size: 28px;
    font-family: 'Poppins', sans-serif;

  }

  .pp-intro-text {
    font-size: 15px;
    font-family: 'Poppins', sans-serif;

  }
}

/* ===============================
   ANIMATED UNDERLINE TEXT
================================ */
.pp-underline {
  position: relative;
  display: inline-block;
  color: #4f46e5;
  font-weight: 700;
}

/* underline */
.pp-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
  border-radius: 4px;

  transform: scaleX(0);
  transform-origin: left;
  animation: underlineReveal 1s ease forwards;
}

/* Hover re-animate */
.pp-underline:hover::after {
  animation: underlineReveal 0.6s ease forwards;
}

/* Animation keyframes */
@keyframes underlineReveal {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

/*  flip SECTION */
/* ===============================
   FLIPBOX CORE
================================ */

/* SECTION */
.pp-flip-section {
  padding: 100px 0;
}

/* CARD */
.pp-flip-card {
  perspective: 1400px;
  height: 360px;
}

/* INNER */
.pp-flip-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform .85s cubic-bezier(.4, .2, .2, 1);
  transform-style: preserve-3d;
  border-radius: 20px;
}

/* FLIP */
.pp-flip-card:hover .pp-flip-inner {
  transform: rotateY(180deg);
}

/* COMMON */
.pp-flip-front,
.pp-flip-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 20px;
  padding: 35px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: 'Poppins', sans-serif;

}

/* FRONT */
.pp-flip-front {
  background: #fff;
  box-shadow: 0 25px 60px rgba(0, 0, 0, .08);
}

.pp-flip-front img {
  width: 52px;
  font-family: 'Poppins', sans-serif;

}

.pp-flip-front h5 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 15px;
  font-family: 'Poppins', sans-serif;

}

.pp-flip-front p {
  font-size: 14px;
  color: #555;
  font-family: 'Poppins', sans-serif;

}

.pp-link {
  color: #2563eb;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;

}

/* BACK */
.pp-flip-back {
  background: linear-gradient(135deg, #b66dff, #e1b7ff);
  transform: rotateY(180deg);
  color: #fff;
  font-family: 'Poppins', sans-serif;

}

.pp-flip-back ul {
  list-style: none;
  padding: 0;
  font-family: 'Poppins', sans-serif;

}

.pp-flip-back li {
  margin-bottom: 12px;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;

}

/* BUTTON */
.pp-btn {
  background: #fff;
  color: #6b21a8;
  border: none;
  padding: 10px 22px;
  border-radius: 10px;
  font-weight: 600;
  width: fit-content;
  font-family: 'Poppins', sans-serif;

}

/* COLOR VARIANTS */
.card-bg-1 .pp-flip-front {
  background: #fffbd1;
}

.card-bg-2 .pp-flip-front {
  background: #fde7f3;
}

.card-bg-3 .pp-flip-front {
  background: #ffe8e8;
}

.card-bg-4 .pp-flip-front {
  background: #e9f5ff;
}

.pp-flip-card.active .pp-flip-inner {
  transform: rotateY(180deg);
}

/* BACK SIDE LIST */
.pp-flip-back ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  font-family: 'Poppins', sans-serif;

}

/* LIST ITEM */
.pp-flip-back ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 14px;
  color: #ffffff;
  padding: 1px;
  font-family: 'Poppins', sans-serif;

}

/* 🔥 FEATHER ICON FIX */
.pp-flip-back ul li i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  font-family: 'Poppins', sans-serif;


  /* visibility */
  color: #ffffff !important;
  stroke: #ffffff !important;
  fill: none !important;

  /* crisp look */
  stroke-width: 2.2;
  flex-shrink: 0;
  font-family: 'Poppins', sans-serif;

}

/* ===============================
   PAY NOW SECTION
================================ */
/* ===============================
   PRICING CTA SECTION
================================ */
/* ===============================
   PAY NOW / SUBSCRIPTION SECTION
================================ */
/* ===============================
   SPLIT PAY SECTION
================================ */
.pp-split-pay {
  padding: 90px 0;
  background: #f8f9ff;
  font-family: "Poppins", sans-serif;
}

.pp-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* ===============================
   PLAN CARD
================================ */
.pp-plan-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 45px 35px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  position: relative;
  font-family: 'Poppins', sans-serif;

}
.-split-pay {
  position: relative;
  margin-top: 120px;   /* creates separation */
  padding-top: 40px;
}


.pp-plan-badge {
  position: absolute;
  top: -14px;
  left: 30px;
  background: #6366f1;
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;

}

.pp-plan-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  font-family: 'Poppins', sans-serif;

}

.pp-plan-desc {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;

}

/* PRICE */
.pp-plan-price {
  font-size: 38px;
  font-weight: 700;
  color: #4f46e5;
  font-family: 'Poppins', sans-serif;

}

.pp-plan-price span {
  font-size: 16px;
  color: #666;
  font-family: 'Poppins', sans-serif;

}

/* SAVING */
.pp-plan-saving {
  margin: 10px 0 20px;
  font-size: 14px;
  color: #065f46;
  font-family: 'Poppins', sans-serif;

}

.pp-plan-saving span {
  background: #d1fae5;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;

}

/* PLAN LIST */
.pp-plan-list {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
  font-family: 'Poppins', sans-serif;

}

.pp-plan-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;

}

.pp-icon {
  width: 20px;
  height: 20px;
  background: #e0e7ff;
  color: #4f46e5;
  border-radius: 50%;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;

}

/* PLAN BUTTON */
.pp-plan-btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  background: #eef2ff;
  color: #4f46e5;
  font-weight: 600;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;

}

/* PRICE WRAPPER */
.pp-plan-price-wrapper {
  position: relative;
  margin: 20px 0 10px;
  font-family: 'Poppins', sans-serif;

}

/* OLD PRICE */
.pp-old-price {
  display: block;
  font-size: 16px;
  color: #9ca3af;
  text-decoration: line-through;
  margin-bottom: 4px;
  font-family: 'Poppins', sans-serif;

}

/* OFFER TAG */
/* ANIMATED OFFER TAG */
.pp-offer-tag {
  position: absolute;
  top: -10px;
  right: 0;

  background: linear-gradient(135deg, #ff7a00, #ffb703);
  color: #ffffff;

  font-size: 12px;
  font-weight: 700;
  padding: 7px 12px;
  border-radius: 999px;

  box-shadow: 0 8px 20px rgba(255, 165, 0, 0.35);

  animation:
    floatBadge 3s ease-in-out infinite,
    glowPulse 2s ease-in-out infinite;
}

/* FLOATING EFFECT */
@keyframes floatBadge {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }

  100% {
    transform: translateY(0);
  }
}

/* GLOW PULSE */
@keyframes glowPulse {
  0% {
    box-shadow: 0 0 0 rgba(255, 165, 0, 0.4);
  }

  50% {
    box-shadow: 0 0 18px rgba(255, 165, 0, 0.6);
  }

  100% {
    box-shadow: 0 0 0 rgba(255, 165, 0, 0.4);
  }
}

/* ===============================
   BEST VALUE RIBBON
================================ */
.pp-ribbon {
  position: absolute;
  top: 18px;
  left: -40px;
  background: linear-gradient(135deg, #5f5cff, #7b6cff);
  color: #fff;
  padding: 6px 50px;
  font-size: 12px;
  font-weight: 700;
  transform: rotate(-45deg);
  box-shadow: 0 8px 20px rgba(95, 92, 255, 0.35);
}

/* ===============================
   40% OFF BADGE (FLOAT + GLOW)
================================ */
.pp-offer-tag {
  position: absolute;
  top: -12px;
  right: 16px;

  background: linear-gradient(135deg, #ff7a00, #ffb703);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 999px;

  box-shadow: 0 8px 20px rgba(255, 165, 0, 0.4);

  animation: floatBadge 3s ease-in-out infinite,
    glowPulse 2s ease-in-out infinite;
}

@keyframes floatBadge {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes glowPulse {
  0% {
    box-shadow: 0 0 0 rgba(255, 165, 0, 0.3);
  }

  50% {
    box-shadow: 0 0 20px rgba(255, 165, 0, 0.6);
  }

  100% {
    box-shadow: 0 0 0 rgba(255, 165, 0, 0.3);
  }
}

/* ===============================
   URGENCY TEXT + TIMER
================================ */
.pp-urgency {
  margin: 12px 0 18px;
  font-size: 14px;
  font-weight: 600;
  color: #ff6a00;

  animation: urgencyFade 1.6s ease-in-out infinite alternate;
}

#pp-countdown {
  font-weight: 800;
  color: #111;
  margin-left: 6px;
}

@keyframes urgencyFade {
  from {
    opacity: 0.7;
  }

  to {
    opacity: 1;
  }
}

/* PRICE */
.pp-plan-price {
  font-size: 36px;
  font-weight: 700;
  color: #4f46e5;
  /* keeps premium look */
  font-family: 'Poppins', sans-serif;

}

.pp-plan-price span {
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
  font-family: 'Poppins', sans-serif;

}

/* SAVING TEXT */
.pp-plan-saving {
  font-size: 13px;
  color: #15803d;
  font-family: 'Poppins', sans-serif;

  margin-bottom: 16px;
}

/* ===============================
   PAY BOX
================================ */
.pp-pay-box {
  background: #ffffff;
  border-radius: 22px;
  padding: 45px 35px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  text-align: center;
  font-family: 'Poppins', sans-serif;

}

.pp-pay-title {
  font-size: 22px;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;

}

.pp-pay-desc {
  font-size: 14px;
  color: #555;
  margin-bottom: 25px;
  font-family: 'Poppins', sans-serif;

}

/* PAY BUTTON */
.pp-pay-btn {
  display: inline-block;
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  color: #fff;
  padding: 14px 38px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;

  box-shadow: 0 15px 35px rgba(79, 70, 229, 0.35);
}

/* CALL ASSISTANCE */
.pp-call-box {
  margin-top: 20px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;

}

.pp-call-box a {
  display: inline-block;
  margin-top: 6px;
  color: #2563eb;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;

  text-decoration: none;
}

/* TRUST */
.pp-pay-trust {
  margin-top: 16px;
  font-size: 13px;
  color: #777;
  font-family: 'Poppins', sans-serif;

}

/* ===============================
   MOBILE
================================ */
@media (max-width: 768px) {
  .pp-split-grid {
    grid-template-columns: 1fr;
  }
}

/* ===============================
   PAYMENT OPTIONS
================================ */
/* ===============================
   PAYMENT OPTIONS – FIXED ALIGNMENT
================================ */
.pp-payment-options {
  margin-top: 28px;
  text-align: center;
  font-family: 'Poppins', sans-serif;

}

.pp-payment-title {
  display: block;
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 14px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;

}

/* Icon Row */
.pp-payment-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

/* Icon Wrapper Normalization */
.pp-payment-icons img {
  max-height: 32px;
  max-width: 90px;
  object-fit: contain;
  opacity: 1;
  /* show full color */
  filter: none;
  /* REMOVE grayscale */
  transition: transform 0.25s ease;
}

.pp-payment-icons img:hover {
  transform: translateY(-2px);
}


/* Hover Effect */
.pp-payment-icons img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(-2px);
}

/* Mobile Optimization */
@media (max-width: 576px) {
  .pp-payment-icons {
    gap: 16px;
  }

  .pp-payment-icons img {
    max-height: 28px;
    max-width: 80px;
  }
}

.pp-payment-icons span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
}

/* classwise css */

.pp-exams-section {
  padding: 0px 0;
  background: #f7f9fc;
  font-family: 'Poppins', sans-serif;

}

.pp-exams-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 30px;
  font-family: 'Poppins', sans-serif;

}

/* ===========================
   LEFT CLASS GRID (FIXED)
=========================== */
.pp-class-grid {
  background: #fff;
  padding: 20px;
  border-radius: 14px;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 56px;
  /* 🔥 CRITICAL FIX */
  gap: 14px;

  align-content: start;
  /* prevents stretch */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  font-family: 'Poppins', sans-serif;

}

/* ===========================
   CLASS BUTTON (LOCKED SIZE)
=========================== */
.pp-class-card {
  display: flex;
  align-items: center;
  justify-content: center;

  height: 56px;
  width: 100%;

  padding: 0;
  margin: 0;
  box-sizing: border-box;

  background: #1E1A4D;
  ;
  color: #fff;

  border: 2px solid transparent;
  border-radius: 10px;

  font-size: 15px;
  font-weight: 600;
  line-height: 1;

  cursor: pointer;
  user-select: none;

  transition: background 0.2s ease;
  font-family: 'Poppins', sans-serif;

}

/* FULL WIDTH CLASSWISE */
.pp-class-card[data-target="classwise"] {
  grid-column: span 2;
  font-family: 'Poppins', sans-serif;

}

/* ACTIVE — COLOR ONLY */
.pp-class-card.active {
  background: #6366f1;
  font-family: 'Poppins', sans-serif;

}

/* HOVER — COLOR ONLY */
.pp-class-card:hover {
  background: #6366f1;
}

/* REMOVE ALL SIZE CHANGES */
.pp-class-card:focus,
.pp-class-card:active {
  outline: none;
  box-shadow: none;
  transform: none;
  font-family: 'Poppins', sans-serif;

}

/* ===========================
   RIGHT PANEL
=========================== */
.pp-exam-content {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  font-family: 'Poppins', sans-serif;

}

/* PANELS */
.pp-exam-panel {
  display: none;
  font-family: 'Poppins', sans-serif;

}

.pp-exam-panel.active {
  display: block;
  font-family: 'Poppins', sans-serif;

}

/* ===========================
   EXAM TYPE TAGS
=========================== */
.exam-type,
.exam-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 32px;
  padding: 0 14px;

  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;

  pointer-events: none;
  font-family: 'Poppins', sans-serif;

}

.exam-type.private,
.exam-tag.private {
  background: #e7f0ff;
  color: #1c5cff;
  border: 1px solid #c7dbff;
  font-family: 'Poppins', sans-serif;

}

.exam-type.government,
.exam-tag.government {
  background: #e6f8ef;
  color: #0f9d58;
  border: 1px solid #bfead4;
  font-family: 'Poppins', sans-serif;

}

/* ===========================
   MOBILE VIEW
=========================== */
@media (max-width: 991px) {
  .pp-exams-container {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .pp-class-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pp-exam-content {
    margin-top: 20px;
  }
}


/* exam cta section  */
/* ================= EXAM CTA SECTION ================= */
/* ================= EXAM CTA SECTION ================= */
/* ================= EXAM CTA SECTION ================= */

/* ===============================
   EXAM PORTAL COMPACT CTA (FIXED)
   =============================== */
/* ===============================
   EXAM PORTAL LAUNCH CTA
   =============================== */

/* ===============================
   SYSTEM HANDOFF CTA
   =============================== */
/* =====================================
   EXAM PORTAL CTA
===================================== */
/* ==============================
   INLINE CTA STRIP
============================== */

.pp-inline-cta {
  margin: 28px 0;
  padding: 14px 18px;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  background: #fafafa;
}

.pp-inline-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Text */
.pp-inline-cta-text {
  font-size: 15px;
  color: #111827;
}

.pp-inline-cta-text strong {
  font-weight: 700;
}

.pp-inline-cta-text span {
  margin-left: 6px;
  color: #4b5563;
  font-weight: 500;
}

/* Button */
.pp-inline-cta-btn {
  background: #111827;
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.pp-inline-cta-btn:hover {
  background: #4f46e5;
}

/* ==============================
   MOBILE VIEW
============================== */

@media (max-width: 768px) {
  .pp-inline-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .pp-inline-cta-text span {
    display: block;
    margin-top: 4px;
    margin-left: 0;
  }

  .pp-inline-cta-btn {
    width: 100%;
    text-align: center;
  }
}

/* ===============================
   EXAM DISCOVERY STRIP
================================ */

.pp-exam-discovery {
  padding: 5px 8px;
  font-family: 'Poppins', sans-serif;

}

.pp-exam-discovery-inner {
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  align-items: center;
  gap: 24px;
  font-family: 'Poppins', sans-serif;


  padding: 26px 32px;

  background: linear-gradient(135deg,
      #0f172a,
      #1e293b);

  border-radius: 18px;
  color: #ffffff;

  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.6);
  position: relative;
  overflow: hidden;
}

/* subtle glow */
.pp-exam-discovery-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%,
      rgba(99, 102, 241, 0.18),
      transparent 55%);
  pointer-events: none;
  font-family: 'Poppins', sans-serif;

}

/* LEFT */
.pp-exam-discovery-left h4 {
  margin: 6px 0 4px;
  font-size: 20px;
  font-family: 'Poppins', sans-serif;

  font-weight: 700;
}

.pp-exam-discovery-left p {
  margin: 0;
  font-size: 14.5px;
  color: #cbd5f5;
  font-family: 'Poppins', sans-serif;

  line-height: 1.5;
}

/* TAG */
.pp-exam-tag {
  display: inline-block;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #111827;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;

}

/* CENTER POINTS */
.pp-exam-discovery-points {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-family: 'Poppins', sans-serif;

}

.pp-exam-discovery-points span {
  background: rgba(255, 255, 255, 0.08);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  font-family: 'Poppins', sans-serif;

}

/* BUTTON */
.pp-exam-discovery-btn {
  background: linear-gradient(135deg, #ffffff, #e5e7eb);
  color: #0f172a;

  padding: 14px 22px;
  border-radius: 12px;

  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;


  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.35);
  transition: all 0.3s ease;
}

.pp-exam-discovery-btn:hover {
  transform: translateY(-2px) scale(1.04);
  font-family: 'Poppins', sans-serif;

}

/* MOBILE */
@media (max-width: 900px) {
  .pp-exam-discovery-inner {
    grid-template-columns: 1fr;
    gap: 16px;
    font-family: 'Poppins', sans-serif;

  }

  .pp-exam-discovery-btn {
    width: 100%;
    text-align: center;
    font-family: 'Poppins', sans-serif;

  }
}

/* Moving Highlights */
/* Lottie Section */
.pp-lottie-section {
  padding: 40px 0;
  background: #ffffff;
}

.pp-lottie-box {
  max-width: 420px;
  margin-top: 0;
}

.pp-lottie-title {
  font-size: 34px;
  font-weight: 700;
  color: #0b2545;
  margin-bottom: 15px;
}

.pp-lottie-title span {
  color: #0d6efd;
}

.pp-lottie-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 25px;
}

.pp-lottie-points {
  list-style: none;
  padding: 0;
}

.pp-lottie-points li {
  font-size: 16px;
  color: #333;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.pp-lottie-points i {
  color: #0d6efd;
  margin-right: 10px;
  font-size: 18px;
}

/* Moving Highlights */
.pp-highlights {
  background: #f8faff;
  padding: 5px 0;
  overflow: hidden;
  border-top: 1px solid #eef1f6;
  border-bottom: 1px solid #eef1f6;
  margin-top: 0%;
}

.highlights-track {
  display: flex;
  gap: 50px;
  animation: scrollHighlights 15s linear infinite;
  width: max-content;
  margin-top: 0%;
}

/* moving heighlight */
.highlight-item {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #0b2545;
  white-space: nowrap;
}

.highlight-item i {
  font-size: 20px;
  color: #0d6efd;
  margin-right: 10px;
}

@keyframes scrollHighlights {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* scrooling number scetion */
/* ===========================
   HERO STATS SECTION
=========================== */
.pp-stats-hero {
  position: relative;
  min-height: 420px;
  background: url("https://images.unsplash.com/photo-1588072432836-e10032774350") center/cover no-repeat;
}

/* DARK OVERLAY */
.pp-stats-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
}

/* GRID */
.pp-stats-grid {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  width: 100%;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

/* STAT ITEM */
.pp-stat h2 {
  font-size: 44px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
  font-family: 'Poppins', sans-serif;

}

.pp-stat span {
  color: #f1f1f1;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;

}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 991px) {
  .pp-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
  }

  .pp-stat h2 {
    font-size: 38px;
    font-family: 'Poppins', sans-serif;

  }
}

@media (max-width: 480px) {
  .pp-stats-hero {
    min-height: 520px;
  }

  .pp-stats-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .pp-stat h2 {
    font-size: 36px;
    font-family: 'Poppins', sans-serif;

  }
}

/* testomonial */
/* ===============================
   TESTIMONIALS SECTION
================================ */
.testimonials {
  padding: 40px 0;
  background: #ffffff;
  font-family: 'Poppins', sans-serif;

}

.testimonials .wrap {
  max-width: 1200px;
  margin: auto;
  text-align: center;
  font-family: 'Poppins', sans-serif;

}

.testimonials .title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
  font-family: 'Poppins', sans-serif;

}

.testimonials h6 {
  font-size: 18px;
  font-weight: 500;
  color: #555;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;

}

/* ===============================
   SWIPER
================================ */
.testimonial-swiper {
  padding-bottom: 60px;
}

/* ===============================
   TESTIMONIAL CARD
================================ */
.testimonial-card {
  background: #fff;
  border-radius: 18px;
  padding: 40px 30px;
  max-width: 340px;
  margin: auto;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.swiper-slide-active .testimonial-card {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* ===============================
   AVATAR
================================ */
.testimonial-media {
  width: 96px;
  height: 96px;
  margin: 0 auto 20px;
  border-radius: 50%;
  padding: 6px;
  background: linear-gradient(135deg, #ffb6e6, #d9b8ff);
}

.testimonial-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  background: #fff;
}

/* ===============================
   QUOTE
================================ */
.quote {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 22px;
}

/* ===============================
   NAME + META
================================ */
.testimonial-name {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  font-family: 'Poppins', sans-serif;

}

.testimonial-sub {
  font-size: 14px;
  color: #666;
  margin-top: 4px;
  font-family: 'Poppins', sans-serif;

}

/* ===============================
   NAVIGATION
================================ */
.swiper-button-prev,
.swiper-button-next {
  color: #0072ff;
  width: 42px;
  height: 42px;
  font-family: 'Poppins', sans-serif;

}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 22px;
  font-weight: bold;
  font-family: 'Poppins', sans-serif;

}

/* ===============================
   PAGINATION
================================ */
.swiper-pagination {
  bottom: 0 !important;
  font-family: 'Poppins', sans-serif;

}

.swiper-pagination-bullet {
  width: 26px;
  height: 4px;
  border-radius: 4px;
  background: #ccc;
  opacity: 1;
  font-family: 'Poppins', sans-serif;

}

.swiper-pagination-bullet-active {
  background: #0072ff;
  font-family: 'Poppins', sans-serif;

}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 991px) {
  .testimonials .title {
    font-size: 32px;
    font-family: 'Poppins', sans-serif;

  }

  .testimonial-card {
    max-width: 100%;

  }
}

/* screenshot */
/* ===========================
   SCREENSHOTS SECTION
=========================== */
/* =========================
   SCREENSHOTS SECTION
========================= */

/* screenshot section's css */
.screenshots-section {
  margin-bottom: 0%;
  /* padding: 60px 20px; */
  background-color: #f9f9f9;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: 600;
}

.tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  gap: 20px;
}

.tabb-btn {
  padding: 10px 25px;
  border: none;
  background-color: #e0e0e0;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s;
}

.tabb-btn.active {
  background-color: #007bff;
  color: #fff;
}

.tabb-content {
  display: none;
}

.tabb-content.active {
  display: block;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  justify-items: center;
}

.screenshot {
  position: relative;
}

.screenshot img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.screenshot img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.caption {
  display: block;
  margin-top: 10px;
  font-size: 0.9rem;
  color: #555;
}

/* Only Web swiper images */
/* .web-swiper{
            width: 100%;
            text-align: center;
            margin-bottom: 20px;
        } */
.web-swiper .swiper-slide img {
  height: 200%;
  /* adjust as needed */
  max-width: 100%;
  object-fit: cover;
  /* ensures image covers the space without distortion */
  border-radius: 8px;
  display: block;
}

/* client section */

/* client css */
/* new clent css */
.client-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 0%;
  margin-bottom: 0%;
  font-family: 'Poppins', sans-serif;

}

.client-left {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-family: 'Poppins', sans-serif;

}

.client-right {
  flex: 3;
  min-width: 400px;
  font-family: 'Poppins', sans-serif;

}

.client-btn {
  background: #1E1A4D;
  color: #fff;
  border: 2px solid #6366f1;
  padding: 12px 20px;
  border-radius: 40px;
  cursor: pointer;
  font-weight: 600;
  text-align: left;
  transition: 0.3s;
  font-family: 'Poppins', sans-serif;

}

.client-btn:hover,
.client-btn.active {
  background: #6366f1;
  color: #fff;
  font-family: 'Poppins', sans-serif;

}

.client-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  font-family: 'Poppins', sans-serif;

}

.client-box {
  background: #fff;
  color: #000000;
  border-radius: 15px;
  padding: 20px 10px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  font-family: 'Poppins', sans-serif;

}

.client-box:hover {
  transform: translateY(-6px);
}

.client-box img {
  width: 180px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;

}

.client-box h4 {
  font-size: 15px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;

}

/* Responsive */
@media (max-width: 992px) {
  .client-wrapper {
    flex-direction: column;
  }

  .client-left {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .client-btn {
    text-align: center;
    width: auto;
  }
}

@media (max-width: 576px) {

  .client-grid {
    display: grid;
    grid-template-columns: 1fr 1fr !important;
    /* FORCE 2 columns */
    gap: 12px;
  }

  .client-box {
    padding: 14px 8px;
  }

  .client-box img {
    width: 120px;
    height: 55px;
  }

  .client-box h4 {
    font-size: 13px;
    line-height: 1.3;
  }
}


.pp-clients-section {
  background: linear-gradient(180deg, #f9fbff, #ffffff) !important;
  padding: 80px 0;
}

/* Optional: soften the contrast */
.pp-clients-section .client-wrapper {
  background: transparent;
}

/* demo showcase */

/* css for demoshowcase */
/* ===============================
   DEMO SHOWCASE SECTION
================================ */

/* css for demoshowcase */
#demo-showcase .school-card {
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  align-items: center;
  /* centers horizontally */
  justify-content: center;
  /* centers vertically */
  text-align: center;
}

#demo-showcase .p,
.h4,
.h5,
.h3 {
  text-align: center;
}


#demo-showcase .school-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

#demo-showcase .carousel-inner img {
  width: 100%;
  height: auto;
  object-fit: contain;
  /* ✅ shows full image without cutting */
  background-color: #000;
  /* optional: fill gaps with black */
  border-radius: 15px;
}

#demo-showcase .carousel-control-prev-icon,
#demo-showcase .carousel-control-next-icon {
  filter: invert(1);
}

#demo-showcase .school-card img {
  max-width: 150px;
  /* Adjust size as needed */
  height: auto;
  margin: 0 auto 15px;
  /* Center + spacing below image */
  display: block;
  object-fit: contain;
}

.section-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0px;
  align-items: flex-start;
  margin: 0;
}

/* ✅ Make the slider full width */
#demo-slider-area {
  width: 100%;

}

#demo-slider-area .carousel {
  width: 100%;
}

#demo-slider-area .carousel-inner {
  width: 100%;
}

/* ✅ Responsive images */
#demo-slider-area .carousel-inner img {
  width: 100%;
  height: auto;
  max-height: 80vh;
  /* responsive limit */
  object-fit: cover;
  border-radius: 15px;
}

/* ✅ Center controls */
#demo-slider-area .carousel-control-prev-icon,
#demo-slider-area .carousel-control-next-icon {
  filter: invert(1);
}

/* ✅ Responsive behavior for small screens */
@media (max-width: 768px) {
  #demo-slider-area .carousel-inner img {
    max-height: 300px;
  }

  #demo-showcase .school-card img {
    max-width: 120px;
  }

  #demo-showcase h3 {
    font-size: 1.2rem;
  }
}


/* main slider */

.flyer-slider .swiper-wrapper,
.flyer-slider .swipper-slide {
  padding: 0 !important;
  margin: 0 !important;
}

.flyer-slider {
  width: 100%;
  height: 100%;
  position: relative;
  margin: 0;
  padding: 0;
}

.flyer-slider .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
}

.flyer-slider {
  padding: 0;
  margin: 0;
}

.flyer-slider img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  border-radius: 10px;
  display: block;
  margin-top: 0;
  padding: 0;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  border-radius: inherit;
  /* matches container rounding */
}


.swiper-button-prev,
.swiper-button-next {
  color: #2563eb;
  /* blue */
}

.swiper-pagination-bullet-active {
  background: #2563eb;
}

/* auto gallary */
/* auto gallery section */
.star-achievers-section {
  padding: 80px 20px;
  background: #f9f9f9;
  font-family: 'Poppins', sans-serif;
  margin-top: 0%;
}

/* 🌟 Card Style */
.star-achievers-section {
  padding: 0;
  background: #f9f9f9;
  font-family: 'Poppins', sans-serif;
}

.achievers-card {
  /* background: #fff;
  border-radius: 14px;
  padding: 40px 20px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
  max-width: 600px;
  margin: 0 auto 40px auto;
  transition: all 0.3s ease; */
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  align-items: center;
  /* centers horizontally */
  justify-content: center;
  /* centers vertically */
  text-align: center;
  margin-top: 0%;
  font-family: 'Poppins', sans-serif;

}

.achievers-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.achievers-card h2 {
  font-weight: 700;
  color: #444;
  margin-bottom: 0%;
  margin-top: 0%;
  font-family: 'Poppins', sans-serif;

}

.achievers-card p {
  color: #777;
  margin: 0;
  font-family: 'Poppins', sans-serif;

}

/* ===== Auto Slider ===== */
/* ===== Auto Slider (Responsive + Continuous) ===== */
.star-achievers-section {
  background: #f9f9f9;
  font-family: 'Poppins', sans-serif;
  padding: 40px 0;
}

/* Card */
.achievers-card {
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  margin-bottom: 30px;
}

.achievers-card h2 {
  font-weight: 700;
  color: #444;
  margin-bottom: 5px;
  font-family: 'Poppins', sans-serif;

}

.achievers-card p {
  color: #777;
  margin: 0;
  font-family: 'Poppins', sans-serif;

}

/* Slider */
.slider {
  overflow: hidden;
  width: 100%;
}

.slide-track {
  display: flex;
  width: calc(400px * 24);
  animation: scroll 50s linear infinite;
}

.slide {
  width: 400px;
  flex-shrink: 0;
  margin: 0 10px;
}

.slide img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.slide img:hover {
  transform: scale(1.05);
}

/* Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-400px * 12));
  }
}

/* Responsive */
@media (max-width: 768px) {
  .slide {
    width: 260px;
  }

  .slide-track {
    width: calc(260px * 24);
    animation: scroll 50s linear infinite;
  }
}

/* Popup */
.image-popup {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 80px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  text-align: center;
}

.image-popup img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
  box-shadow: 0 0 20px #000;
}

.close-popup {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
}

/* leadership section */
.pp-leadership {
  padding: 0px 0;
  background: #f8fafc;
  font-family: 'Poppins', sans-serif;
}

.pp-container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

/* Header */
.pp-leadership-head {
  text-align: center;
  margin-bottom: 50px;
  font-family: 'Poppins', sans-serif;

}

.pp-leadership-head h2 {
  font-size: 36px;
  font-weight: 700;
  color: #000000;
  font-family: 'Poppins', sans-serif;

}

.pp-section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  color: #f02020;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;

  font-family: 'Poppins', sans-serif;
}

/* LEFT & RIGHT LINES */
.pp-section-title::before,
.pp-section-title::after {
  content: "";
  width: 50px;
  height: 3px;
  background: linear-gradient(to right, #facc15, #facc15);
  border-radius: 2px;
}

/* Right line reversed for symmetry */
.pp-section-title::after {
  background: linear-gradient(to left, #facc15, #facc15);
}

/* Mobile optimization */
@media (max-width: 600px) {

  .pp-section-title::before,
  .pp-section-title::after {
    width: 30px;
  }
}

/* Card */
.pp-leader-card {
  display: flex;
  gap: 40px;
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  align-items: center;
  font-family: 'Poppins', sans-serif;

}

/* Image */
.pp-leader-image {
  position: relative;
  flex-shrink: 0;
}

.pp-leader-image img {
  width: 260px;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
}

.pp-leader-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: #ef4444;
  color: #fff;
  padding: 6px 14px;
  font-size: 13px;
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;

}

/* Content */
.pp-leader-content h3 {
  font-size: 26px;
  color: #0b2545;
  margin-bottom: 6px;
  font-family: 'Poppins', sans-serif;

}

.pp-leader-content h4 {
  color: #ef4444;
  font-weight: 600;
  margin-bottom: 6px;
  font-family: 'Poppins', sans-serif;

}

.pp-leader-content a {
  color: #2563eb;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;

}

.pp-leader-highlight {
  margin: 16px 0;
  font-weight: 500;
  color: #374151;
  font-family: 'Poppins', sans-serif;

}

.pp-leader-points {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  font-family: 'Poppins', sans-serif;

}

.pp-leader-points li {
  margin-bottom: 8px;
  color: #374151;
  font-family: 'Poppins', sans-serif;

}

/* Button */
.pp-readmore-btn {
  margin-top: 15px;
  padding: 10px 22px;
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
}

/* Bio */
/* ===============================
   LEADERSHIP BIO – VISUAL FIX ONLY
   (NO HTML CHANGES)
================================ */
/* ===============================
   ULTRA-CLEAN MOBILE OPTIMIZATION
   Leadership Bio
================================ */
/* ===============================
   LEADERSHIP BIO – REFINED VISUAL
   Professional / KHDA-safe
================================ */

.pp-leader-bio-new {
  display: none; /* JS controls visibility */
  background: #ffffff;
  max-width: 960px;
  margin: 60px auto;
  padding: 48px 52px;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
  font-family: "Poppins", sans-serif;
  color: #1f2937;
}

/* TEXT RESET */
.pp-leader-bio-new * {
  box-sizing: border-box;
    font-family: 'Poppins', sans-serif;

}

/* PARAGRAPHS */
.pp-leader-bio-new p {
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 1.85;
  color: #374151;
    font-family: 'Poppins', sans-serif;

}

/* FORCE h3 OUT OF <p> FLOW (CRITICAL FIX) */
.pp-leader-bio-new h3 {
  display: block;
  margin: 50px 0 20px;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  color: #111827;
    font-family: 'Poppins', sans-serif;

  position: relative;
}

/* SECTION DIVIDER */
.pp-leader-bio-new h3::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, #4f46e5, #6366f1);
  margin: 14px auto 0;
  border-radius: 3px;
    font-family: 'Poppins', sans-serif;

}

/* INTRO HIGHLIGHT */
.pp-leader-bio-new p:first-child {
  background: #f1f5ff;
  padding: 22px 26px;
  border-radius: 14px;
  font-size: 16px;
  text-align: center;
  margin-bottom: 42px;
    font-family: 'Poppins', sans-serif;

}

/* REMOVE BROWSER AUTO BLOCKS */
.pp-leader-bio-new p:empty {
  display: none;
    font-family: 'Poppins', sans-serif;

}

/* MOBILE */
@media (max-width: 768px) {
  .pp-leader-bio-new {
    padding: 28px 22px;
    margin: 40px 14px
      font-family: 'Poppins', sans-serif;

  }

  .pp-leader-bio-new p {
    font-size: 14px;
      font-family: 'Poppins', sans-serif;

  }

  .pp-leader-bio-new h3 {
    font-size: 19px;
      font-family: 'Poppins', sans-serif;

  }
}
/* fsq section */
/* FAQ Section */
/* FAQ Section */
.pp-faq {
  padding: 90px 0;
  background: #f8fafc;
  font-family: 'Poppins', sans-serif;

}

.pp-container {
  max-width: 1000px;
  margin: auto;
  padding: 0 20px;
  font-family: 'Poppins', sans-serif;

}

/* Header */
.pp-faq-head {
  text-align: center;
  font-family: 'Poppins', sans-serif;

  margin-bottom: 60px;
}

.pp-faq-tag {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 20px;
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;

  margin-bottom: 12px;
}

.pp-faq-head h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0b2545;
  margin-bottom: 12px;
  font-family: 'Poppins', sans-serif;

}

.pp-faq-head p {
  color: #0a0a0a;
  max-width: 640px;
  margin: auto;
  font-family: 'Poppins', sans-serif;

}

/* FAQ Items */
.pp-faq-list {
  display: flex;
  flex-direction: column;
  font-family: 'Poppins', sans-serif;

  gap: 18px;
}

.pp-faq-item {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  font-family: 'Poppins', sans-serif;

  transition: all 0.3s ease;
}

.pp-faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 26px;
  font-size: 17px;
  font-weight: 600;
  color: #0b2545;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;

}

.pp-faq-question .icon {
  font-size: 22px;
  color: #2563eb;
  transition: 0.3s;
  font-family: 'Poppins', sans-serif;

}

/* Answer */
.pp-faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 26px;
  color: #374151;
  line-height: 1.7;
  transition: all 0.35s ease;
  font-family: 'Poppins', sans-serif;

}

/* Active */
.pp-faq-item.active .pp-faq-answer {
  max-height: 500px;
  padding: 0 26px 22px;
  font-family: 'Poppins', sans-serif;

}

.pp-faq-item.active .icon {
  color: #ef4444;
}

/* Mobile */
@media (max-width: 768px) {
  .pp-faq {
    padding: 70px 0;
    font-family: 'Poppins', sans-serif;

  }

  .pp-faq-head h2 {
    font-size: 26px;
    font-family: 'Poppins', sans-serif;

  }

  .pp-faq-question {
    font-size: 15px;
    padding: 18px;
    font-family: 'Poppins', sans-serif;

  }

  .pp-faq-answer {
    padding: 0 18px;
    font-family: 'Poppins', sans-serif;

  }

  .pp-faq-item.active .pp-faq-answer {
    padding: 0 18px 18px;

  }
}

/* ===== CTA Section ===== */
/* ================= DEMO CTA SECTION ================= */

.pp-demo-cta {
  padding: 0px 0;
  background: linear-gradient(135deg, #f8fafc, #eef2ff);
  font-family: 'Poppins', sans-serif;
}

.pp-demo-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  font-family: 'Poppins', sans-serif;

}

/* LEFT */
.pp-demo-left h2 {
  font-size: 34px;
  color: #0b2545;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;

}

.pp-demo-left p {
  color: #4b5563;
  line-height: 1.7;
  max-width: 480px;
  font-family: 'Poppins', sans-serif;

}

/* LOTTIE */
.pp-lottie-box {
  width: 100%;
  max-width: 420px;
  height: 320px;
}

/* RIGHT CARD */
.pp-demo-right {
  background: #ffffff;
  padding: 45px;
  border-radius: 22px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

.pp-demo-right h3 {
  font-size: 26px;
  color: #0b2545;
  margin-bottom: 6px;
  font-family: 'Poppins', sans-serif;

}

.pp-demo-sub {
  color: #6b7280;
  margin-bottom: 25px;
  font-family: 'Poppins', sans-serif;

}

/* FORM */
#ppDemoForm {
  display: grid;
  gap: 15px;
  font-family: 'Poppins', sans-serif;

}

#ppDemoForm input,
#ppDemoForm select {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;

}

#ppDemoForm input:focus,
#ppDemoForm select:focus {
  outline: none;
  border-color: #2563eb;
  font-family: 'Poppins', sans-serif;

}

#ppDemoForm button {
  margin-top: 10px;
  padding: 14px;
  border-radius: 30px;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
  font-family: 'Poppins', sans-serif;

}

#ppDemoForm button:hover {
  transform: translateY(-2px);
}

.pp-demo-note {
  font-size: 12px;
  color: #6b7280;
  text-align: center;
  margin-top: 8px;
  font-family: 'Poppins', sans-serif;

}

/* RESPONSIVE */
@media (max-width: 900px) {
  .pp-demo-container {
    grid-template-columns: 1fr;
    text-align: center;
    font-family: 'Poppins', sans-serif;

  }

  .pp-lottie-box {
    margin: auto;
  }

  .pp-demo-right {
    padding: 30px 20px;
    font-family: 'Poppins', sans-serif;

  }
}

/* contact-form css */
/* =========================
   PP FLOW – EQUAL HEIGHT FIX
========================== */

.pp-flow-section {
  padding: 0px 0;
  background: linear-gradient(180deg, #f9fbff, #ffffff);
  font-family: 'Poppins', sans-serif;

}

/* Title */
.pp-flow-title {
  font-weight: 700;
  color: #002347;
  font-family: 'Poppins', sans-serif;

}

.pp-flow-subtitle {
  color: #6c757d;
  max-width: 620px;
  margin: auto;
  font-family: 'Poppins', sans-serif;

}

/* GRID FIX */
.pp-flow-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  font-family: 'Poppins', sans-serif;

}

/* CARD */
.pp-flow-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  font-family: 'Poppins', sans-serif;


  /* ✅ Equal height magic */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  font-family: 'Poppins', sans-serif;

}

.pp-flow-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0, 91, 255, 0.15);
  font-family: 'Poppins', sans-serif;

}

/* ICON / LOTTIE */
.pp-lottie {
  height: 120px;
  width: 120px;
  margin-bottom: 20px;
  flex-shrink: 0;
  font-family: 'Poppins', sans-serif;

}

/* TITLE */
.pp-flow-card h5 {
  font-weight: 600;
  margin-bottom: 12px;
  color: #002347;
  font-family: 'Poppins', sans-serif;

}

/* DESCRIPTION */
.pp-flow-card p {
  font-size: 15px;
  color: #6c757d;
  line-height: 1.6;

  /* ✅ Push text evenly */
  margin-top: auto;
  font-family: 'Poppins', sans-serif;

}

/* =========================
   RESPONSIVE
========================== */

@media (max-width: 992px) {
  .pp-flow-row {
    grid-template-columns: repeat(2, 1fr);
    font-family: 'Poppins', sans-serif;

  }
}

@media (max-width: 576px) {
  .pp-flow-section {
    padding: 70px 15px;
    font-family: 'Poppins', sans-serif;

  }

  .pp-flow-row {
    grid-template-columns: 1fr;
    font-family: 'Poppins', sans-serif;

  }

  .pp-flow-card {
    padding: 30px 22px;
    font-family: 'Poppins', sans-serif;

  }

  .pp-lottie {
    height: 100px;
    width: 100px;
    font-family: 'Poppins', sans-serif;

  }
}

/* pp-hero */
/* ================================
   HERO SECTION – CLEAR IMAGE
================================ */
/* ===============================
   HERO – BYJU'S STYLE (CLEAR IMAGE)
================================ */
/* ==============================
   PARIKSHA PORTAL HERO SECTION
   (CLEAR IMAGE + WHITE WAVE)
================================ */
.pp-hero {
  position: relative;
  padding: 120px 0 170px;

  /* 🔴 VERIFY THIS PATH */
  background-image: url("/assets/hero2.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;

  overflow: hidden;
}

/* VERY SOFT VIGNETTE — IMAGE WILL SHOW */
.pp-hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background: radial-gradient(ellipse at center,
      rgba(0, 0, 0, 0.00) 0%,
      rgba(0, 0, 0, 0.10) 45%,
      rgba(74, 25, 99, 0.35) 70%,
      rgba(74, 25, 99, 0.55) 100%);

  z-index: 1;
}

/* CONTENT ABOVE OVERLAY */
.pp-hero .container {
  position: relative;
  z-index: 2;
}

/* FORM CARD */
.pp-demo-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 36px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  position: relative;
  z-index: 3;
}

/* BUTTON */
.pp-btn-submit {
  width: 100%;
  padding: 14px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #0b5ed7, #0d6efd);
  color: #ffffff;
  font-weight: 600;
}

/* WHITE WAVE */
.pp-hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 2;
}

.pp-hero-wave svg {
  width: 100%;
  height: 130px;
  display: block;
}

/* NEXT SECTION */
section+section,
.next-section {
  background: #ffffff;
  position: relative;
  z-index: 1;
}

/* MOBILE */
@media (max-width: 768px) {
  .pp-hero {
    padding: 90px 0 150px;
    background-position: center top;
  }

  .pp-hero::before {
    background: rgba(74, 25, 99, 0.45);
  }

  .pp-hero-wave svg {
    height: 80px;
  }
}

/* new css for navbar which is placed inside header */
/* ================== PP DUBAI CLASSWISE ================== */
/* ===============================
   PARIKSHA PORTAL – DUBAI MATCH
   =============================== */

/* SECTION */
.ppd-exams-section {
  padding: 40px 0;
  background: #f5f7fb;
}

/* MAIN LAYOUT */
.ppd-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

/* LEFT PANEL */
.ppd-class-grid {
  width: 260px;
  background: #ffffff;
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

/* LEFT BUTTONS */
.ppd-class-btn {
  background: #1d1f4c;
  color: #ffffff;
  border: none;
  padding: 14px 10px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.ppd-class-btn:hover {
  background: #2a2f7f;
}

.ppd-class-btn.active {
  background: #6a6ff2;
  box-shadow: 0 6px 14px rgba(106,111,242,0.35);
}

/* RIGHT CONTENT CARD */
.ppd-content {
  flex: 1;
  background: #ffffff;
  border-radius: 18px;
  padding: 36px 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* HEADINGS */
.ppd-content h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}

.ppd-content h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.ppd-content p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* PANELS */
.ppd-panel {
  display: none;
}

.ppd-panel.active {
  display: block;
}

/* TABLE */
/* ===============================
   PERFECT TABLE STYLE (MATCH IMAGE)
   =============================== */

.ppd-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #ffffff;
  border: 1.5px solid #d6d9e0;
  border-radius: 10px;
  overflow: hidden;
  font-size: 16px;
}

/* TABLE HEADER */
.ppd-table thead th {
  background: #eef1f5;
  color: #444;
  font-weight: 600;
  padding: 14px 16px;
  text-align: left;
  border-bottom: 2px solid #d6d9e0;
}

/* COLUMN WIDTH CONTROL */
.ppd-table thead th:first-child,
.ppd-table tbody td:first-child {
  width: 90px;
  text-align: center;
}

.ppd-table thead th:last-child,
.ppd-table tbody td:last-child {
  width: 200px;
  text-align: center;
}

/* TABLE BODY */
.ppd-table tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid #d6d9e0;
  background: #fff;
  vertical-align: middle;
}

/* REMOVE LAST BORDER */
.ppd-table tbody tr:last-child td {
  border-bottom: none;
}

/* TYPE TAGS (RIGHT COLUMN) */
.ppd-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

/* PRIVATE TAG */
.ppd-tag.private {
  background: #e6efff;
  color: #1e4bff;
  border: 1px solid #bcd0ff;
}

/* GOVERNMENT TAG */
.ppd-tag.government {
  background: #e8f7ef;
  color: #0f6a44;
  border: 1px solid #bfe6d3;
}

/* TABLE ROW HOVER (SUBTLE) */
.ppd-table tbody tr:hover td {
  background: #f9fbff;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .ppd-table {
    font-size: 14px;
  }

  .ppd-table thead {
    display: none;
  }

  .ppd-table tbody tr {
    display: block;
    border-bottom: 1px solid #d6d9e0;
  }

  .ppd-table tbody td {
    display: flex;
    justify-content: space-between;
    text-align: right;
  }

  .ppd-table tbody td::before {
    content: attr(data-label);
    font-weight: 600;
    color: #555;
    text-align: left;
  }
}

/* ===============================
   LEFT CLASSWISE STRUCTURE FIX
   =============================== */

/* LEFT PANEL GRID */
.ppd-class-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

/* FIRST BUTTON = CLASSWISE (FULL WIDTH) */
.ppd-class-grid .ppd-class-btn:first-child {
  grid-column: 1 / -1;   /* span full row */
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 12px;
}

/* NORMAL CLASS BUTTONS */
.ppd-class-btn {
  background: #1d1f4c;
  color: #fff;
  border: none;
  padding: 14px 10px;
  border-radius: 12px;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.25s ease;
}

/* ACTIVE STATE */
.ppd-class-btn.active {
  background: #6a6ff2;
  box-shadow: 0 6px 14px rgba(106,111,242,0.35);
}

/* HOVER */
.ppd-class-btn:hover {
  background: #2a2f7f;
}

/* MOBILE SAFE */
@media (max-width: 576px) {
  .ppd-class-grid {
    grid-template-columns: 1fr;
  }

  .ppd-class-grid .ppd-class-btn:first-child {
    grid-column: auto;
  }
}

/* whatsapp demo button css */
/* =======================================
   DUBAI WHATSAPP DEMO CARD
   (MATCHES PREVIOUS DEMO / PRICING CARD)
======================================= */

.pp-whatsapp-demo-card {
  background: linear-gradient(180deg, #0b1023 0%, #020617 100%);
  border-radius: 24px;
  padding: 34px 32px;
  box-shadow: 0 30px 70px rgba(2, 6, 23, 0.45);
  color: #ffffff;
}

/* Top chip */
.pp-demo-chip {
  display: inline-block;
  background: #fbbf24;
  color: #1f2937;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

/* Heading */
.pp-whatsapp-demo-card h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

/* Description */
.pp-whatsapp-demo-card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: #c7d2fe;
  margin-bottom: 22px;
}

/* CTA Button (SAME AS DEMO CARD) */
.pp-whatsapp-demo-btn {
  display: block;
  width: 100%;
  padding: 15px 18px;
  text-align: center;
  font-size: 15.5px;
  font-weight: 600;
  background: linear-gradient(90deg, #facc15, #f59e0b);
  color: #1f2937;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.pp-whatsapp-demo-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(250, 204, 21, 0.35);
}

/* Footer note */
.pp-whatsapp-demo-card small {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  color: #94a3b8;
  text-align: center;
}
/* =========================================
   MOBILE FIX — ALL EXAM SYLLABUS TABS
   ========================================= */
/* =====================================================
   📱 FINAL MOBILE FIX — LONG EXAM NAMES (PERFECT)
   ===================================================== */


/* =========================================
   📱 MOBILE FIX — 3 EXAMS PER ROW (FINAL)
   ========================================= */
/* =====================================================
   🚨 FORCE MOBILE GRID — OVERRIDES EVERYTHING
   ===================================================== */
/* =====================================================
   FINAL TEXT FIX — MOBILE EXAM BUTTONS
   ===================================================== */
/* =====================================================
   FINAL MOBILE FIX — ALL EXAM SYLLABUS BUTTONS
   ===================================================== */
@media (max-width: 768px) {

  /* 🔹 Force 3 columns ONLY */
  .ngrt-section .exam-tab-track {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 12px !important;
  }

  /* 🔹 Uniform button box */
  .ngrt-section .exam-tab {
    display: flex !important;
    align-items: center;
    justify-content: center;

    height: 56px !important;       /* 🔥 SAME HEIGHT */
    padding: 0 10px !important;

    font-size: 13px !important;
    font-weight: 500;
    text-align: center;

    border-radius: 14px;
    box-sizing: border-box;

    /* 🔥 TEXT CONTROL */
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;

    line-height: 1;
  }

}
/* =========================================
   LONG PRESS TOOLTIP — MOBILE & DESKTOP
   ========================================= */

.exam-tooltip {
  position: fixed;
  z-index: 9999;

  max-width: 90%;
  padding: 10px 14px;

  background: rgba(17, 24, 39, 0.95); /* dark slate */
  color: #fff;

  font-size: 13px;
  line-height: 1.4;
  border-radius: 10px;

  text-align: center;
  white-space: normal;

  box-shadow: 0 10px 30px rgba(0,0,0,0.25);

  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.exam-tooltip.show {
  opacity: 1;
  transform: translate(-50%, -14px);
}
/* new bnavbar */
/* ================= PPD NAVBAR (CLEAN) ================= */
/* ================= PPD NAVBAR – ISOLATED & CLEAN ================= */

/* ================= FINAL PPD NAVBAR ================= */
/* ================= PPD CLEAN NAVBAR ================= */

#ppd-clean-navbar {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #eee;
  position: relative;
  z-index: 1000;
}

.ppd-nav-container {
  max-width: 1200px;
  margin: 0 auto;
  height: 72px;
  padding: 0 20px;
  display: flex;
  align-items: center;
}

/* Logo */
.ppd-nav-logo img {
  height: 44px;
}

/* Menu */
.ppd-nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  margin-bottom: 0;
  padding: 0;
}

.ppd-nav-menu li {
  position: relative;
}

.ppd-nav-menu a {
  text-decoration: none;
  font-weight: 500;
  color: #0a2540;
  padding: 6px 0;
  position: relative;
}

/* Hover underline animation */
.ppd-nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #ff3b30;
  transition: width 0.3s ease;
}

.ppd-nav-menu a:hover::after {
  width: 100%;
}

/* Active underline */
.ppd-nav-menu li.active a {
  color: #ff3b30;
}

.ppd-nav-menu li.active a::after {
  width: 100%;
}

/* Dropdown */
.ppd-dropdown-menu {
  display: none;
  position: absolute;
  top: 140%;
  left: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
  min-width: 160px;
  padding: 8px 0;
  z-index: 9999;
}

.ppd-dropdown:hover .ppd-dropdown-menu {
  display: block;
}

.ppd-dropdown-menu li a {
  display: block;
  padding: 10px 16px;
}

/* Language switch */
.ppd-lang-switch {
  display: flex;
  gap: 8px;
  margin-left: 20px;
}

.ppd-lang-switch button {
  border: none;
  background: #f2f2f2;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
}

.ppd-lang-switch button.active {
  background: #1f4fd8;
  color: #fff;
}

/* Hamburger */
.ppd-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
}

.ppd-hamburger span {
  width: 26px;
  height: 3px;
  background: #0a2540;
  border-radius: 2px;
}

/* Mobile */
@media (max-width: 991px) {

  .ppd-hamburger {
    display: flex;
  }

  .ppd-lang-switch {
    display: none;
  }

  .ppd-nav-menu {
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 16px 20px;
    display: none;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
  }

  .ppd-nav-menu.show {
    display: flex;
  }

  .ppd-nav-menu li {
    width: 100%;
  }

  .ppd-nav-menu a {
    padding: 12px 0;
    width: 100%;
  }

  .ppd-dropdown-menu {
    position: static;
    box-shadow: none;
    padding-left: 10px;
  }

  .ppd-mobile-lang {
    display: flex;
    gap: 10px;
    margin-top: 10px;
  }
}

/* Kill horizontal scroll */
html, body {
  overflow-x: hidden;
}
.pp-lang-switch {
  display: flex;
  gap: 8px;
}

.pp-lang-btn {
  border: 1px solid #d1d5db;
  background: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.pp-lang-btn.active {
  background: #1d4ed8;
  color: #fff;
  border-color: #1d4ed8;
}

/* ===============================
   SOCIAL ICONS – CLEAN ROW
================================ */
.pp-leader-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 50px;
}

/* ICON BASE */
.pp-leader-social a {
  width: 36px;
  height: 36px;
  background: #f1f5f9;
  color: #1f2937;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.25s ease;
  margin-top: 20px;
}

/* HOVER */
.pp-leader-social a:hover {
  background: #2563eb;
  color: #ffffff;
  transform: translateY(-2px);
}

/* ===============================
   MOBILE FIX – FINAL
================================ */
@media (max-width: 768px) {

  .pp-leader-image {
    width: 100%;
    align-items: center;
  }

  .pp-leader-image img {
    max-width: 280px;
  }

  .pp-leader-social {
    margin-top: 16px;
    gap: 14px;
  }

  .pp-leader-social a {
    width: 40px;
    height: 40px;
    font-size: 17px;
  }
}
