:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-7fe65d8 *//* =============================================
   BPP ANIMATION – Explore Our Courses Section
   WordPress-optimised: BEM-namespaced, no globals
   Primary: #5461E3 | Black: #000 | White: #fff
   ============================================= */

/* ---- Scoped Reset (won't bleed into WP theme) ---- */
.bpp-courses-section *,
.bpp-courses-section *::before,
.bpp-courses-section *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* =============================================
   SECTION
   ============================================= */
.bpp-courses-section {
  width: 100%;
  padding: 100px 0;
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* =============================================
   CONTAINER
   ============================================= */
.bpp-courses-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 150px;
}

/* =============================================
   HEADER
   ============================================= */
.bpp-courses-header {
  margin-bottom: 24px;
}

.bpp-courses-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #000000;
  line-height: 1.2;
  margin-bottom: 10px;
}

.bpp-courses-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #555555;
  line-height: 1.6;
}

/* =============================================
   FILTER TABS
   ============================================= */
.bpp-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.bpp-filter-btn {
  padding: 10px 22px;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  background: transparent;
  border: 1.5px solid #cccccc;
  color: #333333;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  -webkit-appearance: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  line-height: 1.4;
}

.bpp-filter-btn--active,
.bpp-filter-btn:hover {
  background: #000000;
  border-color: #000000;
  color: #ffffff;
  text-decoration: none;
}

.bpp-filter-btn:focus-visible {
  outline: 2px solid #5461E3;
  outline-offset: 2px;
}

/* =============================================
   COURSES GRID – 4 columns
   ============================================= */
.bpp-courses-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* =============================================
   COURSE CARD
   ============================================= */
.bpp-course-card {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.bpp-course-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.10);
  transform: translateY(-3px);
}

/* Hidden state: JS-controlled — display:none */
.bpp-course-card--hidden {
  display: none !important;
}

/* Fade-in when revealed */
@keyframes bppFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.bpp-course-card--reveal {
  animation: bppFadeIn 0.32s ease both;
}

/* ---- Thumbnail ---- */
.bpp-card-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  flex-shrink: 0;
}

.bpp-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.bpp-course-card:hover .bpp-card-thumb img {
  transform: scale(1.05);
}

/* ---- Graphic Thumbnail ---- */
.bpp-card-thumb--graphic {
  background: #f3f3f3;
}

.bpp-graphic-thumb {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 20px;
  overflow: hidden;
}

.bpp-graphic-thumb--orange { background: #f3f0ec; }
.bpp-graphic-thumb--blue   { background: #eef0f8; }

.bpp-graphic-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #000000;
  line-height: 1.2;
  position: relative;
  z-index: 2;
}

/* Geometric decorative shapes */
.bpp-gs { position: absolute; }

.bpp-gs--circle-yellow {
  width: 80px;
  height: 80px;
  background: #F5C518;
  border-radius: 50%;
  top: -20px;
  right: 40px;
  z-index: 1;
}

.bpp-gs--arc-orange {
  width: 120px;
  height: 120px;
  background: transparent;
  border: 40px solid #E85D1A;
  border-radius: 50%;
  bottom: -40px;
  right: -10px;
  z-index: 3;
  clip-path: inset(0 50% 0 0);
}

.bpp-gs--rect-blue {
  width: 54px;
  height: 54px;
  background: #5461E3;
  bottom: 10px;
  right: 52px;
  z-index: 2;
  border-radius: 4px;
}

.bpp-gs--rect-black {
  width: 40px;
  height: 40px;
  background: #111111;
  bottom: 0;
  right: 100px;
  z-index: 2;
  border-radius: 4px;
}

/* ---- Badge ---- */
.bpp-card-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: #F5C518;
  color: #000000;
  font-family: 'Poppins', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  z-index: 4;
  line-height: 1.4;
}

/* ---- Card Body ---- */
.bpp-card-body {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}

.bpp-card-top {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bpp-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #000000;
  line-height: 1.3;
}

.bpp-card-program {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: #888888;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.bpp-card-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #555555;
  line-height: 1.65;
  flex: 1;
}

/* ---- Details row ---- */
.bpp-card-details {
  display: flex;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid #f0f0f0;
}

.bpp-detail-item {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 1;
}

.bpp-detail-label {
  font-family: 'Poppins', sans-serif;
  font-size: 9px;
  font-weight: 600;
  color: #999999;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.bpp-detail-value {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #222222;
  line-height: 1.3;
}

/* ---- CTA Button ---- */
.bpp-card-cta {
  display: inline-block;
  padding: 9px 18px;
  background: #000000;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  border-radius: 10px;
  text-align: center;
  text-decoration: none !important;
  border: 1px solid #000000;
  align-self: flex-start;
  margin-top: 4px;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.18s ease;
  line-height: 1.4;
}

.bpp-card-cta:hover,
.bpp-card-cta:focus {
  background: transparent;
  color: #5461E3;
  border-color: #5461E3;
  transform: translateY(-2px);
  text-decoration: none !important;
}

/* =============================================
   LOAD MORE BUTTON
   ============================================= */
.bpp-load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* Hidden state */
.bpp-load-more-wrap--hidden {
  display: none !important;
}

.bpp-load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 36px;
  background: transparent;
  color: #000000;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  border: 1.5px solid #000000;
  cursor: pointer;
  text-decoration: none !important;
  -webkit-appearance: none;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.18s ease;
  line-height: 1.4;
}

.bpp-load-more-btn:hover {
  background: #000000;
  color: #ffffff;
  transform: translateY(-2px);
  text-decoration: none !important;
}

.bpp-load-more-btn:focus-visible {
  outline: 2px solid #5461E3;
  outline-offset: 2px;
}

/* Loading state spinner */
.bpp-load-more-btn--loading {
  pointer-events: none;
  opacity: 0.7;
}

.bpp-load-more-btn--loading::after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: bppSpin 0.6s linear infinite;
}

@keyframes bppSpin {
  to { transform: rotate(360deg); }
}

/* =============================================
   RESPONSIVE – 1200px
   ============================================= */
@media (max-width: 1200px) {
  .bpp-courses-container {
    padding: 0 60px;
  }
  .bpp-courses-title {
    font-size: 30px;
  }
  .bpp-courses-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

/* =============================================
   RESPONSIVE – 900px (Tablet)
   ============================================= */
@media (max-width: 900px) {
  .bpp-courses-section {
    padding: 70px 0;
  }
  .bpp-courses-container {
    padding: 0 40px;
  }
  .bpp-courses-title {
    font-size: 28px;
  }
  .bpp-courses-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

/* =============================================
   RESPONSIVE – 600px (Mobile)
   ============================================= */
@media (max-width: 600px) {
  .bpp-courses-section {
    padding: 60px 0;
  }
  .bpp-courses-container {
    padding: 0 20px;
  }
  .bpp-courses-title {
    font-size: 24px;
  }
  .bpp-courses-subtitle {
    font-size: 13px;
  }
  .bpp-filters {
    gap: 8px;
    margin-bottom: 24px;
  }
  .bpp-filter-btn {
    padding: 8px 14px;
    font-size: 13px;
  }
  .bpp-courses-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .bpp-card-thumb {
    aspect-ratio: 16 / 9;
  }
  .bpp-load-more-btn {
    width: 100%;
    justify-content: center;
  }
}

/* =============================================
   REDUCED MOTION
   ============================================= */
@media (prefers-reduced-motion: reduce) {
  .bpp-course-card,
  .bpp-card-thumb img,
  .bpp-filter-btn,
  .bpp-card-cta,
  .bpp-load-more-btn,
  .bpp-course-card--reveal {
    transition: none !important;
    animation: none !important;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-cd51347 *//* ===========================
   WORKSHOP SECTION
=========================== */

.workshop-section{

    padding:100px 0;

}

.workshop-container{

    max-width:1440px;

    margin:0 auto;

    padding:0 0 0 150px;

}

.workshop-header{

    text-align:center;

    margin-bottom:80px;

}

.workshop-label{

    font-family:'Poppins',sans-serif;

    font-size:14px;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:1px;

    color:#000;

    margin-bottom:14px;

}

.workshop-title{

    font-family:'Montserrat',sans-serif;

    font-size:48px;

    font-weight:700;

    line-height:1.2;

    color:#2A2A2A;

}

.workshop-content{

    display:grid;

    grid-template-columns:38% 62%;

    align-items:center;

    gap:70px;

}

.workshop-text {

    font-family:'Montserrat',sans-serif;

    font-size:40px;

    font-weight:700;

    line-height:1.25;

    margin-bottom:28px;

    color:#000;

}

.workshop-text p{

    font-family:'Poppins',sans-serif;

    font-size:16px;

    line-height:1.9;

    color:#555;

    max-width:420px;

}

.workshop-image{

    overflow:hidden;

    border-radius:32px 0 0 32px;

}

.workshop-image img{

    width:100%;

    display:block; 
   
    object-fit:cover;

    transition:.6s ease;

}

.workshop-image:hover img{

    transform:scale(1.04);

}


/* ===========================
   TABLET
=========================== */

@media(max-width:1024px){

.workshop-container{

padding:0 64px;

}

.workshop-content{

grid-template-columns:1fr;

gap:50px;

}

.workshop-text{

text-align:center;

}

.workshop-text p{

margin:auto;

}

.workshop-image{

border-radius:24px;

}

}


/* ===========================
   MOBILE
=========================== */

@media(max-width:767px){

.workshop-section{

padding:70px 0;

}

.workshop-container{

padding:0 24px;

}

.workshop-header{

margin-bottom:50px;

}

.workshop-title{

font-size:34px;

}

.workshop-text h3{

font-size:30px;

}

.workshop-text p{

font-size:15px;

line-height:1.8;

}

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-f676e83 *//* ===========================================================
   SHAPING FUTURE LEADERS
=========================================================== */

.future-section{
    position:relative;
    background:#ffffff;
    padding:0;
}

/* =========================
   Sticky Heading
========================= */

.future-heading{
    position:sticky;
    top:0;

    height:100vh;

    display:flex;
    align-items:center;

    z-index:1;

    pointer-events:none;
}

.future-heading-container{

    max-width:1440px;
    width:100%;

    margin:0 auto;
    padding:0 150px;

    display:flex;
    flex-direction:column;
}

.future-heading span{

    display:block;

    font-family:'Montserrat',sans-serif;
    font-size:clamp(72px,11vw,180px);

    font-weight:800;

    line-height:.9;

    letter-spacing:-6px;

    user-select:none;
}

.future-heading span:nth-child(1){
    color:#D6DEFF;
}

.future-heading span:nth-child(2){
    color:#9DAAF8;
}

.future-heading span:nth-child(3){
    color:#5461E3;
}


/* =========================
   Track
========================= */

.future-track{

    position:relative;

    max-width:1440px;

    margin:0 auto;

    padding:120px 150px 200px;

    z-index:5;

}


/* =========================
   Cards
========================= */

.future-card{

    overflow:hidden;

    border-radius:18px;

    margin-bottom:140px;

    box-shadow:
    0 25px 60px rgba(0,0,0,.12);

    background:#fff;

}

.future-card img,
.future-card video{

    width:100%;
    height:100%;

    display:block;

    object-fit:cover;

}


/* =========================
   Sizes
========================= */

.portrait{

    width:340px;
    height:480px;

}

.landscape{

    width:620px;
    height:360px;

}

.square{

    width:420px;
    height:420px;

}

.future-hero{

    width:100%;

    max-width:1100px;

    height:620px;

    margin:160px auto 0;

    position:relative;

}


/* =========================
   Editorial Layout
========================= */

.future-card:nth-child(1){

    margin-left:0;

}

.future-card:nth-child(2){

    margin-left:auto;

}

.future-card:nth-child(3){

    margin-left:220px;

}

.future-card:nth-child(4){

    margin-left:auto;
    margin-right:140px;

}

.future-card:nth-child(5){

    margin-left:80px;

}

.future-card:nth-child(6){

    margin-left:auto;

}

.future-card:nth-child(7){

    margin-left:180px;

}

.future-card:nth-child(8){

    margin-left:auto;
    margin-right:80px;

}

.future-card:nth-child(9){

    margin-left:60px;

}


/* =========================
Hero Overlay
========================= */

.future-hero-content{

    position:absolute;

    left:60px;
    bottom:60px;

    z-index:2;

}

.future-hero-content h3{

    color:#fff;

    font-family:'Montserrat',sans-serif;

    font-size:56px;

    line-height:1.05;

    font-weight:700;

}


/* =========================
Hover
========================= */

.future-card{

    transition:
        transform .45s ease,
        box-shadow .45s ease;
}

.future-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 35px 80px rgba(0,0,0,.18);

}


/* =========================
Tablet
========================= */

@media(max-width:1024px){

.future-heading-container{

padding:0 64px;

}

.future-track{

padding:100px 64px 150px;

}

.future-heading span{

font-size:110px;

letter-spacing:-4px;

}

.landscape{

width:100%;
height:320px;

}

.square{

width:340px;
height:340px;

}

.portrait{

width:280px;
height:420px;

}

.future-card:nth-child(n){

margin-left:auto;
margin-right:auto;

}

.future-hero{

height:500px;

}

}


/* =========================
Mobile
========================= */

@media(max-width:767px){

.future-heading{

height:65vh;

}

.future-heading-container{

padding:0 24px;

}

.future-heading span{

font-size:58px;

letter-spacing:-2px;

}

.future-track{

padding:60px 24px 100px;

}

.future-card{

width:100% !important;

height:auto !important;

aspect-ratio:4/3;

margin-bottom:40px;

}

.future-hero{

aspect-ratio:16/9;

}

.future-hero-content{

left:24px;
bottom:24px;

}

.future-hero-content h3{

font-size:32px;

}

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-020bf6a *//*================================*/

.confidence-section{

    padding:100px 0;

}

.confidence-container{

    max-width:1440px;

    margin:auto;

    padding:0 150px;

}

.confidence-heading{

    text-align:center;

    margin-bottom:60px;

}

.confidence-label{

    font-family:Montserrat,sans-serif;

    font-size:14px;

    font-weight:700;

    margin-bottom:14px;

}

.confidence-heading h2{

    font-family:Montserrat,sans-serif;

    font-size:44px;

    font-weight:700;

}

/*===============================*/

.confidence-video{

    overflow:hidden;

    border-radius:16px;

    margin-bottom:80px;

}

.confidence-video video{

    width:100%;

    display:block;

    aspect-ratio:16/8;

    object-fit:cover;

}

/*===============================*/

.confidence-stats{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:50px;

    margin-bottom:90px;

}

.stat-card{

    text-align:center;

}

.stat-card h3{

    font-family:Montserrat,sans-serif;

    font-size:72px;

    margin-bottom:15px;

    font-weight:700;

}

.stat-card h3::after{

    content:"%";

}

.stat-card p{

    font-family:Poppins,sans-serif;

    color:#666;

    line-height:1.7;

}

/*===============================*/

.confidence-bottom{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:60px;

}

.confidence-number{

    font-family:Montserrat,sans-serif;

    font-size:170px;

    font-weight:700;

    color:#BDBDBD;

    line-height:1;

}

.confidence-number span:last-child{

    color:#BDBDBD;

}

.confidence-text h3{

    font-family:Montserrat,sans-serif;

    font-size:34px;

    margin-bottom:10px;

}

.confidence-text p{

    font-family:Poppins,sans-serif;

    font-size:22px;

}

/*===============================*/

.reveal-up{

    opacity:0;

    transform:translateY(60px);

    transition:.8s ease;

}

.reveal-up.show{

    opacity:1;

    transform:none;

}

/*===============================*/

@media(max-width:1024px){

.confidence-container{

padding:0 64px;

}

.confidence-stats{

grid-template-columns:1fr;

gap:40px;

}

.confidence-bottom{

flex-direction:column;

text-align:center;

}

}

@media(max-width:767px){

.confidence-container{

padding:0 24px;

}

.confidence-heading h2{

font-size:34px;

}

.stat-card h3{

font-size:54px;

}

.confidence-number{

font-size:120px;

}

.confidence-text h3{

font-size:28px;

}

.confidence-text p{

font-size:18px;

}

}/* End custom CSS */