*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins', sans-serif;
}

body{
  background:#0f172a;
  color:white;
}

/* NAVBAR */
.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 60px;
  position:fixed;
  width:100%;
  background:rgba(15,23,42,0.9);
  z-index:999;
}

.navbar ul{
  display:flex;
  list-style:none;
  gap:20px;
}

.navbar a{
  text-decoration:none;
  color:white;
  transition:0.3s;
}
.navbar a:hover{color:#22c55e;}

/* HERO */
.hero{
  height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  background:linear-gradient(120deg,#1e3a8a,#0f172a);
}

.hero h1{
  font-size:3rem;
}
.hero p{
  margin:20px 0;
}

.btn{
  background:linear-gradient(135deg,#22c55e,#16a34a);
  padding:10px 22px;
  border-radius:999px;
  text-decoration:none;
  color:black;
  font-weight:600;
  transition:0.3s;
}
.btn:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 20px rgba(34,197,94,0.4);
}

/* FOOTER */
footer{
  text-align:center;
  padding:30px;
  background:#020617;
}

/* WHATSAPP */
.whatsapp-float{
  position:fixed;
  bottom:20px;
  right:20px;
  background:#25D366;
  color:white;
  padding:15px;
  border-radius:50%;
  font-size:22px;
  text-decoration:none;
}

.page-hero{
  padding:120px 20px 60px;
  text-align:center;
}

.books-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
  padding:60px;
}

.book-card{
  background:#020617;
  padding:20px;
  border-radius:15px;
  text-align:center;
  transition:0.3s;
}
.book-card:hover{transform:scale(1.05);}

.book-card img{
  width:100%;
  border-radius:10px;
  margin-bottom:15px;
}

.socials{
  margin-top:15px;
}
.socials a{
  color:#22c55e;
  margin:0 10px;
  text-decoration:none;
}

.about-section{
  display:flex;
  gap:40px;
  padding:80px;
  align-items:center;
}
.about-img{
  width:300px;
  border-radius:20px;
}
.about-text{max-width:500px;}

.bio-content{
  padding:80px;
  max-width:700px;
  margin:auto;
  line-height:1.8;
}

.video-grid{
  padding:60px;
  display:flex;
  justify-content:center;
}
.video-box iframe{
  width:100%;
  max-width:800px;
  height:450px;
  border-radius:20px;
}

.video-grid{
  padding:60px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:30px;
}

.video-box{
  background:#020617;
  padding:15px;
  border-radius:15px;
  text-align:center;
}

.video-box h3{
  margin-bottom:10px;
  font-size:1rem;
}

.video-box iframe{
  width:100%;
  height:300px;
  border-radius:10px;
}

/* MOBILE NAV */
.menu-toggle{
  display:none;
  font-size:28px;
  cursor:pointer;
}

@media(max-width:768px){

  .navbar{
    padding:15px 20px;
  }

  .navbar ul{
    position:absolute;
    top:70px;
    left:0;
    width:100%;
    background:#020617;
    flex-direction:column;
    align-items:center;
    display:none;
  }

  .navbar ul.show{
    display:flex;
  }

  .menu-toggle{
    display:block;
    color:white;
  }

  .about-section{
    flex-direction:column;
    text-align:center;
  }

  .hero h1{
    font-size:2rem;
  }

  .books-grid,
  .video-grid{
    padding:20px;
  }
}

/* FIX CARD LAYOUT */
.book-card{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:12px;
  min-height:260px;
}

/* FIX BUTTON */
.book-card .btn{
  align-self:center;
  margin-top:10px;
  padding:10px 20px;
  font-size:14px;
  border-radius:20px;
}

/* FIX TEXT SPACING */
.book-card h3{
  margin-bottom:6px;
  line-height:1.3;
}

.book-card p{
  line-height:1.5;
  font-size:14px;
}

/* MOBILE FIX */
@media(max-width:768px){
  .book-card{
    padding:20px;
  }

  .book-card .btn{
    width:80%;
    text-align:center;
  }
}

.lux-hero{
  height:100vh;
  background:
    linear-gradient(90deg,rgba(0,0,0,0.85),rgba(0,0,0,0.25)),
    url("https://res.cloudinary.com/dxvtxotqh/image/upload/v1770166584/WhatsApp_Image_2026-02-04_at_3.55.44_AM_sd3kl5.jpg");
  background-size:cover;
  background-position: center right;
  background-repeat:no-repeat;
  position:relative;
  display:flex;
  align-items:center;
  padding:0 10%;
}

.lux-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(0,0,0,0.85),rgba(0,0,0,0.2));
}

.lux-content{
  position:relative;
  max-width:600px;
  z-index:2;
}

.lux-tag{
  letter-spacing:2px;
  font-size:12px;
  color:#facc15;
}

.lux-content h1{
  font-size:3.5rem;
  line-height:1.1;
  margin:15px 0;
}
.lux-content h1 span{
  color:#facc15;
}

.lux-content p{
  opacity:0.9;
  line-height:1.6;
  margin-bottom:25px;
}

.lux-buttons{
  display:flex;
  gap:15px;
  margin-bottom:25px;
}

.lux-btn{
  background:#facc15;
  color:black;
  padding:12px 24px;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
}

.lux-btn-outline{
  border:2px solid #facc15;
  color:#facc15;
  padding:12px 24px;
  border-radius:30px;
  text-decoration:none;
}

.lux-socials{
  display:flex;
  gap:15px;
  font-size:20px;
}

.lux-socials a{
  color:#facc15;
  text-decoration:none;
}

@media(max-width:768px){
  .lux-content h1{font-size:2.2rem;}
  .lux-buttons{flex-direction:column;}
}

.lux-socials i{
  font-size:22px;
  transition:0.3s;
}
.lux-socials a:hover i{
  transform:scale(1.2);
  color:#fde047;
}

.lux-about-preview{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
  padding:100px 10%;
  background:#020617;
}

.lux-about-image img{
  width:100%;
  border-radius:20px;
  box-shadow:0 30px 60px rgba(0,0,0,0.7);
}

.lux-about-text h2{
  font-size:2.5rem;
  margin:15px 0;
}

@media(max-width:768px){
  .lux-about-preview{
    grid-template-columns:1fr;
    text-align:center;
  }
}

/* FIX BIO PREVIEW SPACING */
.lux-about-text p{
  margin-bottom:18px;
  line-height:1.7;
}

.lux-about-text{
  padding-bottom:30px;
}

/* BUTTON SEPARATION */
.lux-about-text .lux-btn-outline{
  margin-top:20px;
  display:inline-block;
}

/* MOBILE EXTRA SPACE */
@media(max-width:768px){
  .lux-about-text{
    padding-bottom:50px;
  }
}

@media(max-width:768px){
  .lux-about-text .lux-btn-outline{
    margin-top:30px;
  }
}

.lux-testimonials{
  padding:100px 0;
  background:#020617;
  text-align:center;
  overflow:hidden;
}

.lux-testimonials h2{font-size:2.5rem;}
.lux-testimonials p{opacity:0.7;margin-bottom:30px;}

.testimonial-track{
  width:100%;
  overflow:hidden;
}

.testimonial-slider{
  display:flex;
  gap:25px;
  animation: scrollTest 18s linear infinite;
}

.test-card{
  min-width:300px;
  background:#020617;
  border:1px solid rgba(255,255,255,0.1);
  padding:20px;
  border-radius:15px;
  text-align:left;
}

.test-card h4 span{
  font-size:12px;
  opacity:0.6;
}

.test-card a{
  color:#facc15;
  text-decoration:none;
  font-size:13px;
}

@keyframes scrollTest{
  0%{transform:translateX(0);}
  100%{transform:translateX(-50%);}
}

.lux-gallery{
  padding:100px 10%;
  background:#020617;
  text-align:center;
}

.lux-gallery h2{font-size:2.5rem;}
.lux-gallery p{opacity:0.7;margin-bottom:40px;}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
}

.gallery-grid img{
  width:100%;
  border-radius:15px;
  transition:0.4s;
  cursor:pointer;
}

.gallery-grid img:hover{
  transform:scale(1.05);
}

.lux-contact-hero{
  min-height:100vh;
  background:url("https://res.cloudinary.com/dxvtxotqh/image/upload/v1770166584/WhatsApp_Image_2026-02-04_at_3.55.44_AM_sd3kl5.jpg") center/cover no-repeat;
  position:relative;
  display:flex;
  justify-content:center;
  align-items:center;
}

.lux-contact-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.7);
}

.lux-contact-box{
  position:relative;
  background:rgba(2,6,23,0.95);
  padding:40px;
  border-radius:20px;
  width:90%;
  max-width:400px;
  color:white;
}

.lux-contact-box h2{
  text-align:center;
  margin-bottom:10px;
  color:#facc15;
}

.lux-check{
  text-align:center;
  margin-bottom:20px;
  color:#facc15;
}

.lux-contact-box input,
.lux-contact-box textarea{
  width:100%;
  background:#020617;
  border:none;
  padding:12px;
  border-radius:10px;
  color:white;
  margin-bottom:15px;
}

.lux-contact-box button{
  width:100%;
  background:#facc15;
  border:none;
  padding:14px;
  border-radius:30px;
  font-weight:600;
  cursor:pointer;
}

.lux-thankyou{
  min-height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  background:#020617;
  color:white;
}

.lux-thankyou-box{
  background:#020617;
  border:1px solid rgba(255,255,255,0.1);
  padding:50px;
  border-radius:20px;
  text-align:center;
  max-width:400px;
}

/* CONTACT FORM SPACING FIX */
.lux-contact-box{
  padding-bottom:60px; /* extra space */
}

/* RESET BUTTON POSITION */
.lux-contact-box{
  position:relative;
}

.lux-contact-box button{
  position:static;      /* removes floating */
  margin-top:20px;
  width:100%;
}
/* MOBILE EXTRA SPACE */
@media(max-width:768px){
  .lux-contact-box{
    padding-bottom:80px;
  }
}

.course-card{
  padding:25px;
  border-radius:15px;
  background:#020617;
  border:1px solid rgba(255,255,255,0.08);
}

.enroll-btn{
  display:inline-block;
  background:#facc15;
  color:#000;
  padding:6px 16px;      /* smaller */
  font-size:13px;       /* slimmer text */
  border-radius:999px;
  font-weight:600;
  text-decoration:none;
  transition:0.3s;
}

.enroll-btn:hover{
  background:#fde047;
  transform:translateY(-2px);
}

.course-icon{
  width:50px;
  height:50px;
  border-radius:50%;
  background:rgba(250,204,21,0.15);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:10px;
}

.course-icon i{
  font-size:20px;
  color:#facc15;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
  margin-top:40px;
}

.service-card{
  background:rgba(255,255,255,0.05);
  border-radius:16px;
  padding:30px 20px;
  text-align:center;
  transition:0.3s;
}

.service-card:hover{
  transform:translateY(-8px);
  background:rgba(250,204,21,0.08);
  box-shadow:0 20px 40px rgba(0,0,0,0.3);
}

.service-icon{
  width:60px;
  height:60px;
  margin:0 auto 15px;
  border-radius:50%;
  background:rgba(250,204,21,0.15);
  display:flex;
  align-items:center;
  justify-content:center;
}

.service-icon i{
  font-size:24px;
  color:#facc15;
}

.service-card h3{
  margin:10px 0;
  color:#fff;
}

.service-card p{
  font-size:14px;
  color:#cbd5f5;
}

.courses-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
  margin-top:40px;
}

.course-card{
  background:rgba(255,255,255,0.05);
  border-radius:16px;
  padding:25px 20px;
  text-align:left;
  transition:0.3s;
}

.course-card:hover{
  transform:translateY(-8px);
  background:rgba(250,204,21,0.08);
  box-shadow:0 20px 40px rgba(0,0,0,0.3);
}

.course-card h3{color:#fff;margin:8px 0;}
.course-card p{font-size:14px;color:#cbd5f5;margin-bottom:15px;}

.lux-footer{
  background:linear-gradient(180deg,#020617,#020617ee);
  padding:60px 20px 20px;
  color:#cbd5f5;
}

.footer-grid{
  max-width:1100px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:40px;
}

.footer-col h3,
.footer-col h4{
  color:#fff;
  margin-bottom:12px;
}

.footer-col a{
  display:block;
  color:#cbd5f5;
  margin:6px 0;
  text-decoration:none;
  transition:0.3s;
}

.footer-col a:hover{color:#facc15;}

.footer-social a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:40px;
  height:40px;
  margin-right:10px;
  border-radius:50%;
  background:rgba(250,204,21,0.15);
  color:#facc15;
  font-size:18px;
  transition:0.3s;
}

.footer-social a:hover{
  background:#facc15;
  color:#000;
  transform:translateY(-4px);
}

.footer-bottom{
  text-align:center;
  margin-top:40px;
  font-size:13px;
  color:#94a3b8;
}

.footer-bottom a{color:#facc15;}

.lux-hero{
  padding:120px 20px 60px;
  text-align:center;
  background:linear-gradient(180deg,#020617,#02061700);
}

.lux-hero h1{font-size:40px;color:#fff;}
.lux-hero p{color:#cbd5f5;}

.lux-section{padding:60px 20px;}

.lux-grid{
  max-width:1100px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:40px;
  align-items:center;
}

.lux-image img{
  width:100%;
  border-radius:20px;
  box-shadow:0 20px 50px rgba(0,0,0,0.4);
}

.lux-card{
  background:rgba(255,255,255,0.05);
  padding:30px;
  border-radius:20px;
  backdrop-filter:blur(10px);
}

.lux-card h2,h3{color:#fff;}
.lux-card p, .lux-card li{color:#cbd5f5;}
.lux-card a{color:#facc15;}

.test-card{
  background: rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 260px;
}

.test-name{
  color:#ffd34d;
  font-size:18px;
  font-weight:600;
}

.test-stars{
  color:#ffd34d;
  font-size:16px;
  letter-spacing:2px;
}

.test-text{
  color:#eaeaea;
  font-size:14px;
  line-height:1.5;
}

.test-country{
  font-size:13px;
  color:#9ca3af;
}

.test-card a{
  font-size:13px;
  color:#ffd34d;
  text-decoration:none;
}

.test-card a:hover{
  text-decoration:underline;
}

@media (max-width: 768px) {
  .testimonial-slider {
    animation-duration: 15s;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  z-index: 9999;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}