/* ================= HERO – USES HEADER ROOT COLORS ================= */

.lf-hero-slider{
  font-family:'Poppins',sans-serif;
  position:relative;
  overflow:hidden;
}

.lf-slider,
.lf-slide{
  height:80vh;
}

.lf-slide{
  background-size:cover;
  background-position:center;
  display:flex !important;
  align-items:center;
  justify-content:center;
}

.lf-slide-overlay{
  width:100%;
  height:100%;
  background:linear-gradient(
    135deg,
    rgba(15,61,36,0.9),
    rgba(31,122,58,0.9)
  );
  display:flex;
  align-items:center;
  justify-content:center;
}

.lf-slide-content{
  max-width:850px;
  padding:20px;
  text-align:center;
  color:var(--lf-white);
  text-shadow:0 4px 12px rgba(0,0,0,0.65);
}

.lf-slide-content h1{
  font-size:42px;
  font-weight:700;
  margin-bottom:18px;
  color:var(--lf-white);
}

.lf-slide-content p{
  font-size:18px;
  line-height:1.6;
  margin-bottom:32px;
  color:var(--lf-white);
}

/* CTA */
.lf-btn-primary{
  display:inline-block;
  padding:14px 36px;
  border-radius:30px;
  background:var(--lf-accent);
  color:var(--lf-dark);
  font-size:16px;
  font-weight:600;
  text-decoration:none;
  transition:.3s ease;
}

.lf-btn-primary:hover{
  background:var(--lf-white);
  color:var(--lf-primary);
}

/* Slick dots */
.slick-dots li button:before{
  color:var(--lf-white);
  opacity:.45;
}
.slick-dots li.slick-active button:before{
  color:var(--lf-accent);
  opacity:1;
}

/* Mobile */
@media(max-width:768px){
  .lf-slider,
  .lf-slide{
    height:520px;
  }

  .lf-slide-content h1{
    font-size:28px;
  }

  .lf-slide-content p{
    font-size:16px;
  }
}

/* ================= WHY CHOOSE LiFE ================= */

.lf-why-section{
  padding:90px 20px;
  background:var(--lf-dark);
  font-family:'Poppins',sans-serif;
}

.lf-why-header{
  max-width:700px;
  margin:0 auto 60px;
  text-align:center;
}

.lf-why-header h2{
  font-size:36px;
  font-weight:700;
  color:var(--lf-light);
  margin-bottom:14px;
}

.lf-why-header p{
  font-size:17px;
  line-height:1.6;
  color:var(--lf-light);
}

/* GRID */
.lf-why-grid{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
}

/* CARD */
.lf-why-card{
  background:#ffffff;
  padding:34px 28px;
  border-radius:18px;
  text-align:left;
  box-shadow:0 18px 40px rgba(0,0,0,.08);
  transition:.35s ease;
  position:relative;
}

.lf-why-card:hover{
  transform:translateY(-8px);
  box-shadow:0 28px 60px rgba(0,0,0,.12);
}

/* ICON */
.lf-why-icon{
  width:54px;
  height:54px;
  border-radius:50%;
  background:linear-gradient(
    135deg,
    var(--lf-primary),
    var(--lf-secondary)
  );
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:18px;
}

.lf-why-icon i{
  color:var(--lf-white);
  font-size:22px;
}

/* TEXT */
.lf-why-card h4{
  font-size:18px;
  font-weight:600;
  color:var(--lf-dark);
  margin-bottom:10px;
}

.lf-why-card p{
  font-size:14.8px;
  line-height:1.65;
  color:#475569;
}

/* MOBILE */
@media(max-width:768px){
  .lf-why-section{
    padding:70px 18px;
  }

  .lf-why-header h2{
    font-size:28px;
  }

  .lf-why-header p{
    font-size:16px;
  }
}

/* ================= PARTNERSHIP SECTION ================= */

.lf-partners-section{
  padding:90px 20px;
  background: var(--lf-light);
  font-family:'Poppins',sans-serif;
}

.lf-partners-header{
  max-width:720px;
  margin:0 auto 60px;
  text-align:center;
}

.lf-partners-header h2{
  font-size:36px;
  font-weight:700;
  color:var(--lf-dark);
  margin-bottom:14px;
}

.lf-partners-header p{
  font-size:17px;
  line-height:1.6;
  color: var(--lf-dark);
}

/* GRID */
.lf-partners-grid{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:22px;
}

/* BADGE */
.lf-partner-badge{
  display:flex;
  align-items:center;
  gap:14px;
  padding:18px 22px;
  background:var(--lf-light);
  border-radius:50px;
  border:1px solid rgba(31,122,58,.15);
  transition:.3s ease;
}

.lf-partner-badge i{
  width:42px;
  height:42px;
  border-radius:50%;
  background:linear-gradient(
    135deg,
    var(--lf-primary),
    var(--lf-secondary)
  );
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--lf-white);
  font-size:16px;
  flex-shrink:0;
}

.lf-partner-badge span{
  font-size:14.5px;
  font-weight:500;
  color:var(--lf-dark);
}

/* HOVER */
.lf-partner-badge:hover{
  background:#ffffff;
  box-shadow:0 12px 28px rgba(0,0,0,.08);
  transform:translateY(-3px);
}

/* MOBILE */
@media(max-width:768px){
  .lf-partners-section{
    padding:70px 18px;
  }

  .lf-partners-header h2{
    font-size:28px;
  }

  .lf-partners-header p{
    font-size:16px;
  }
}

/* ================= VISION SECTION ================= */

.lf-vision-section{
  padding:90px 20px;
  background:linear-gradient(
    135deg,
    var(--lf-dark),
    #ffffff
  );
  font-family:'Poppins',sans-serif;
}

.lf-vision-inner{
  max-width:1100px;
  margin:auto;
  display:flex;
  justify-content:center;
}

.lf-vision-content{
  max-width:800px;
  text-align:center;
  position:relative;
  padding:40px 30px;
  background:#ffffff;
  border-radius:20px;
  box-shadow:0 20px 45px rgba(0,0,0,.08);
}

/* Decorative accent */
.lf-vision-content::before{
  content:"";
  position:absolute;
  top:-6px;
  left:50%;
  transform:translateX(-50%);
  width:90px;
  height:4px;
  border-radius:10px;
  background:linear-gradient(
    90deg,
    var(--lf-primary),
    var(--lf-secondary)
  );
}

.lf-vision-content h2{
  font-size:34px;
  font-weight:700;
  color:var(--lf-dark);
  margin-bottom:18px;
  line-height:1.25;
}

.lf-vision-content p{
  font-size:17px;
  line-height:1.7;
  color:#475569;
}

/* MOBILE */
@media(max-width:768px){
  .lf-vision-section{
    padding:70px 18px;
  }

  .lf-vision-content{
    padding:34px 22px;
  }

  .lf-vision-content h2{
    font-size:26px;
  }

  .lf-vision-content p{
    font-size:16px;
  }
}

/* ================= ACCREDITATIONS ================= */

.lf-accreditation-section{
  padding:90px 20px;
  background:var(--lf-light);
  font-family:'Poppins',sans-serif;
  overflow:hidden;
}

.lf-accreditation-header{
  max-width:800px;
  margin:0 auto 60px;
  text-align:center;
}

.lf-accreditation-header h2{
  font-size:36px;
  font-weight:700;
  color:var(--lf-dark);
  margin-bottom:14px;
}

.lf-accreditation-header p{
  font-size:17px;
  line-height:1.6;
  color:var(--lf-dark);
}

/* SLIDER */
.lf-logo-slider{
  width:100%;
  overflow:hidden;
  position:relative;
}

.lf-logo-track{
  display:flex;
  align-items:center;
  gap:80px;
  animation:lf-scroll 25s linear infinite;
}

.lf-logo-item{
  flex:0 0 auto;
  width:180px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.lf-logo-item img{
  max-width:100%;
  max-height:90px;
  filter:grayscale(100%);
  opacity:.85;
  transition:.3s ease;
}

.lf-logo-item img:hover{
  filter:none;
  opacity:1;
  transform:scale(1.05);
}

/* SCROLL ANIMATION */
@keyframes lf-scroll{
  0%{
    transform:translateX(0);
  }
  100%{
    transform:translateX(-50%);
  }
}

/* MOBILE */
@media(max-width:768px){
  .lf-accreditation-section{
    padding:70px 18px;
  }

  .lf-accreditation-header h2{
    font-size:28px;
  }

  .lf-accreditation-header p{
    font-size:16px;
  }

  .lf-logo-track{
    gap:50px;
  }

  .lf-logo-item{
    width:140px;
  }
}

/* ================= COURSES SECTION ================= */

.lf-courses-section{
  padding:90px 20px;
  background:var(--lf-light);
  font-family:'Poppins',sans-serif;
}

.lf-courses-heading{
  text-align:center;
  font-size:36px;
  font-weight:700;
  color:var(--lf-dark);
  margin-bottom:60px;
  position:relative;
}

.lf-courses-heading::after{
  content:"";
  width:80px;
  height:4px;
  background:linear-gradient(90deg,var(--lf-primary),var(--lf-secondary));
  display:block;
  margin:16px auto 0;
  border-radius:10px;
}

/* CAROUSEL */
.lf-carousel{
  max-width:1200px;
  margin:auto;
  position:relative;
}

.lf-carousel-track-wrapper{
  overflow:hidden;
}

.lf-carousel-track{
  display:flex;
  gap:24px;
  transition:transform .6s cubic-bezier(.25,.46,.45,.94);
}

.lf-course-card{
  flex:0 0 calc(33.333% - 16px);
  background:#ffffff;
  border-radius:20px;
  padding:32px;
  box-shadow:0 18px 40px rgba(0,0,0,.08);
  display:flex;
  flex-direction:column;
  transition:.35s ease;
}

.lf-course-card:hover{
  transform:translateY(-8px);
  box-shadow:0 26px 55px rgba(0,0,0,.12);
}

.lf-course-card h3{
  font-size:18px;
  font-weight:600;
  color:var(--lf-dark);
  margin-bottom:12px;
}

.lf-course-card p{
  font-size:14.8px;
  color:#475569;
  line-height:1.6;
}

.lf-course-actions{
  margin-top:auto;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

/* BUTTONS */
.lf-btn{
  padding:12px 20px;
  border-radius:30px;
  font-weight:600;
  font-size:14px;
  text-decoration:none;
  text-align:center;
  flex:1;
}

.lf-btn.primary{
  background:var(--lf-primary);
  color:var(--lf-white);
}

.lf-btn.secondary{
  background:var(--lf-light);
  color:var(--lf-primary);
  border:1px solid var(--lf-primary);
}

/* NAV BUTTONS */
.lf-carousel-btn{
  position:absolute;
  top:45%;
  transform:translateY(-50%);
  width:48px;
  height:48px;
  border-radius:50%;
  border:none;
  background:linear-gradient(135deg,var(--lf-primary),var(--lf-secondary));
  color:#fff;
  font-size:26px;
  cursor:pointer;
  box-shadow:0 10px 25px rgba(0,0,0,.25);
}

.lf-carousel-btn.prev{left:-15px}
.lf-carousel-btn.next{right:-15px}

/* DOTS */
.lf-carousel-dots{
  display:flex;
  justify-content:center;
  gap:10px;
  margin-top:30px;
}

.lf-carousel-dots button{
  width:14px;
  height:14px;
  border-radius:50%;
  border:none;
  background:#cbd5e1;
}

.lf-carousel-dots button.active{
  background:var(--lf-primary);
  transform:scale(1.2);
}

/* MOBILE */
.lf-swipe-hint{
  display:none;
  text-align:center;
  font-size:14px;
  margin-top:12px;
  color:var(--lf-primary);
}

@media(max-width:1024px){
  .lf-course-card{flex:0 0 calc(50% - 12px)}
}

@media(max-width:768px){
  .lf-course-card{flex:0 0 100%}
  .lf-carousel-btn{top:40%}
  .lf-courses-heading{font-size:28px}
  .lf-swipe-hint{display:block}
}