.why-choose {
  background: #fff;
  padding: 80px 0;
  font-family: "Poppins", sans-serif;
  color: #222;
}

.why-choose .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.why-choose .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.col-left {
  flex: 1 1 50%;
}

.col-right {
  flex: 1 1 45%;
}

.why-choose h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 15px;
  border-left: 6px solid #127adb;
  padding-left: 15px;
    font-family: 'Poppins', sans-serif;

}

.why-choose .intro {
  font-size: 1rem;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.6;
    font-family: 'Poppins', sans-serif;

}

.features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
  line-height: 1.5;
}

.features i {
  color: #127adb;
  font-size: 1.2rem;
  margin-top: 4px;
}

/* .demo-btn {
  display: inline-block;
  background: #127adb;
  color: #fff;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.demo-btn:hover {
  background: #043053;
}

.demo-btn1 {
  display: inline-block;
  background: #127adb;
  color: #fff;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
  text-align: center;
  text-decoration: white;


}

.demo-btn1:hover {
  background: #043053;



} */

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 992px) {
  .why-choose .row {
    flex-direction: column;
  }

  .col-left,
  .col-right {
    flex: 1 1 100%;
  }

  .col-right {
    margin-top: 30px;
  }
}

/* video showcase */
/* yt showt new section */
/* SHORTS SECTION */
/* ===== PARIKSHA VIDEO SHOWCASE ===== */
/* SECTION */
/* ================================
   VIDEO SHOWCASE (NO CONFLICT)
================================ */
/* ================================
   VIDEO SHOWCASE (NO CONFLICT)
================================ */

.pp-video-showcase {
  padding: 0px 0;
  background: #f7f9fc;
}

.pp-video-layout {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1.2fr;
  gap: 30px;
  align-items: start;
}

/* LEFT MAIN VIDEO */
/* ===== LEFT MAIN VIDEO (RESPONSIVE & SAFE) ===== */
.pp-video-main {
  width: 100%;
  max-width: 100%;
}

/* Thumbnail button */
.ppv-main-thumb {
  position: relative;
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .18);
}

/* Thumbnail image */
.ppv-main-thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

/* Red YouTube play button */
.ppv-main-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.ppv-main-play::before {
  content: "";
  width: 86px;
  height: 60px;
  background: #ff0000;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

.ppv-main-play::after {
  content: "";
  position: absolute;
  margin-left: 6px;
  border-left: 20px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

/* Hover effect */
.ppv-main-thumb:hover .ppv-main-play::before {
  background: #e60000;
}

/* Title */
.ppv-main-title {
  margin-top: 2px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  color: #0b2c5f;
}

/* Mobile tuning */
@media(max-width:576px) {
  .ppv-main-title {
    font-size: 16px;
    margin-top: 2px;
  }

  .ppv-main-play::before {
    width: 70px;
    height: 48px;
  }

  .ppv-main-play::after {
    border-left-width: 16px;
    border-top-width: 10px;
    border-bottom-width: 10px;
  }
}

/* ===== VIDEO MODAL ===== */
.ppv-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 99999;
}

.ppv-modal.is-open {
  display: block;
}

.ppv-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .65);
}

.ppv-modal-box {
  position: relative;
  max-width: 900px;
  width: calc(100% - 24px);
  margin: 60px auto;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
}

.ppv-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, .7);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  z-index: 5;
}

.ppv-modal-video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.ppv-modal-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Mobile modal fix */
@media(max-width:576px) {
  .ppv-modal-box {
    margin: 16px auto;
    border-radius: 12px;
  }
}



/* VIEW MORE BUTTON */
/* CTA wrapper – centers button */
.pp-cta-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

/* CTA button */
.pp-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #0b5ed7, #084298);
  color: #fff;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(11, 94, 215, .35);
  transition: all .35s ease;
}

/* Icon */
.pp-cta-icon {
  font-size: 18px;
}

/* Arrow */
.pp-cta-arrow {
  display: inline-block;
  transition: transform .3s ease;
}

/* Hover animation */
.pp-cta-btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #084298, #06357a);
}

.pp-cta-btn:hover .pp-cta-arrow {
  transform: translateX(6px);
}




/* RIGHT GRID */
.pp-video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 18px;
}

/* VIDEO CARD */
.pp-video-card {
  position: relative;
}

.pp-video-card iframe {
  width: 100%;
  height: 150px;
  border-radius: 14px;
  border: 0;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.pp-video-card span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #333;
}

/* DIVIDER AFTER EACH ROW */
.pp-video-card:nth-child(4)::after,
.pp-video-card:nth-child(6)::after {
  content: "";
  position: absolute;
  left: -110%;
  bottom: -12px;
  width: 220%;
  height: 1px;
  background: linear-gradient(to right,
      transparent,
      #d9dee8,
      transparent);
}

/* RESPONSIVE */
/* =========================
   VIDEO SECTION – MOBILE FIX
   ========================= */
/* =====================================
   VIDEO SHOWCASE – SAFE & RESPONSIVE
===================================== */

.pp-video-showcase,
.pp-video-showcase * {
  box-sizing: border-box;
}

/* -------- Layout -------- */
.pp-video-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1.2fr;
  gap: 32px;
  align-items: flex-start;
}


/* -------- CTA Button -------- */
.pp-cta-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

/* -------- Right Grid -------- */
.pp-video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

/* -------- Video Card -------- */
.ppv-card {
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  text-align: center;
}

.ppv-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.ppv-card span {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  color: #333;
}

/* =====================================
   TABLET (≤ 992px)
===================================== */
@media (max-width: 992px) {
  .pp-video-layout {
    grid-template-columns: 1fr;
  }

  .pp-video-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 28px;
  }
}

/* =====================================
   MOBILE (≤ 576px)
===================================== */
@media (max-width: 576px) {
  .pp-video-showcase {
    padding: 40px 16px;
  }

  .pp-video-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* 🔥 Always 2 videos per row on mobile */
  .pp-video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .ppv-card span {
    font-size: 12.5px;
  }

  .pp-cta-btn {
    font-size: 15px;
    padding: 12px 22px;
  }
}


/* exam section */
/* ============================
      EXAM SECTION (FIXED)
===============================*/

.exam-section {
  text-align: center;
  padding: 60px 20px;
  /* More breathing space */
  background: #ffffff;
  border-radius: 12px;
  margin: 0px auto;
  font-family: 'Poppins', sans-serif;
}

.exam-section h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #000;
  text-align: center;
  margin-top: 0;
}

/* BUTTON WRAPPER */
.exam-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 0px;
  gap: 20px;
}

/* BUTTON STYLING */
.exam-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  min-width: 240px;
  border-radius: 12px;
  background: linear-gradient(90deg, #0057ff, #007fff);
  color: #fff !important;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.exam-btn i {
  font-size: 22px;
  color: #fff;
}

/* Hover */
.exam-btn:hover {
  transform: translateY(-3px);
  opacity: 0.9;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Mobile View */
@media (max-width: 576px) {
  .exam-section {
    padding: 10px 10px;
  }

  .exam-section h3 {
    font-size: 22px;
    margin-top: 0;
  }

  .exam-btn {
    min-width: 200px;
    font-size: 16px;
  }
}

/* ===============================
   VIDEO MODAL (RESPONSIVE)
================================ */

.ppv-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.ppv-modal.active {
  display: flex;
}

.ppv-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  z-index: 1;
}

/* MODAL BOX */
.ppv-modal-box {
  position: relative;
  width: 90%;
  max-width: 900px;
  background: #000;
  border-radius: 14px;
  overflow: visible;
  /* ✅ IMPORTANT */
  z-index: 1001;
  animation: scaleIn .25s ease;
}

/* VIDEO WRAPPER */
.ppv-modal-video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.ppv-modal-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* CLOSE BUTTON */
.ppv-modal-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 42px;
  height: 42px;
  background: #ffffff;
  border-radius: 50%;
  font-size: 22px;
  font-weight: bold;
  color: #000;
  border: none;
  cursor: pointer;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .45);
}

/* MOBILE */
@media (max-width: 768px) {
  .ppv-modal-close {
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
}
.ppv-modal-close {
  background: #fff;
  color: #111;
  font-weight: 600;
  transition: transform .15s ease, box-shadow .15s ease;
}

.ppv-modal-close:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 28px rgba(0,0,0,.45);
}
