/* =========================================================
   RESET
========================================================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins',sans-serif;
  background:#070012;
  color:#ffffff;
  overflow-x:hidden;
  line-height:1.6;
}

/* =========================================================
   GLOBAL
========================================================= */

img{
  max-width:100%;
  display:block;
}

a{
  text-decoration:none;
}

button{
  border:none;
  outline:none;
  font-family:'Poppins',sans-serif;
}

/* =========================================================
   NAVBAR
========================================================= */

.navbar{

  position:sticky;
  top:0;
  z-index:9999;

  width:100%;

  display:flex;
  align-items:center;
  justify-content:space-between;

  padding:22px 7%;

  background:rgba(7,0,18,0.94);

  backdrop-filter:blur(14px);

  border-bottom:
  1px solid rgba(255,255,255,0.05);

}

.logo{

  font-size:34px;
  font-weight:800;

  color:#ffffff;

}

.menu{

  display:flex;
  align-items:center;

  gap:42px;

}

.menu a{

  color:white;

  font-size:16px;
  font-weight:500;

  transition:0.3s ease;

}

.menu a:hover{

  color:#d8ff00;

}

.nav-btn{

  display:inline-flex;
  align-items:center;
  justify-content:center;

  background:#ffe600;
  color:black;

  padding:16px 30px;

  border-radius:16px;

  font-weight:700;

  transition:0.35s ease;

  box-shadow:
  0 0 25px rgba(255,230,0,0.14);

}

.nav-btn:hover{

  transform:translateY(-5px);

  box-shadow:
  0 0 40px rgba(255,230,0,0.35);

}

/* =========================================================
   HERO
========================================================= */

.hero{

  width:100%;

  min-height:100vh;

  display:flex;
  align-items:center;
  justify-content:center;

  padding:
  60px 7% 90px;

  background:
  radial-gradient(circle at top right,#225f00,#070012 28%),
  linear-gradient(
    135deg,
    #140030,
    #230045,
    #070012
  );

}

.hero-container{

  width:100%;
  max-width:1450px;

  display:grid;

  grid-template-columns:
  1.05fr 1fr;

  align-items:center;

  gap:60px;

}

/* =========================================================
   HERO LEFT
========================================================= */

.hero-left{

  width:100%;

}

.tag{

  display:inline-block;

  background:#d8ff00;
  color:black;

  padding:12px 22px;

  border-radius:999px;

  font-size:14px;
  font-weight:700;

  margin-bottom:35px;

}

.hero-left h1{

  font-size:clamp(44px,5vw,72px);

  line-height:1.05;

  font-weight:800;

  margin-bottom:28px;

  max-width:720px;

}

.hero-left h1 span{

  color:#c8ff00;

}

.hero-left p{

  color:#d2d2d2;

  font-size:20px;

  line-height:1.9;

  max-width:650px;

  margin-bottom:42px;

}

/* =========================================================
   MINI FEATURES
========================================================= */

.hero-features{

  display:flex;
  flex-wrap:wrap;

  gap:18px;

  margin-bottom:42px;

}

.mini-box{

  display:flex;
  align-items:center;

  gap:12px;

  background:#120024;

  border:
  1px solid rgba(255,255,255,0.05);

  padding:18px 24px;

  border-radius:18px;

  transition:0.35s ease;

}

.mini-box:hover{

  transform:translateY(-6px);

  border-color:
  rgba(216,255,0,0.18);

}

.mini-box i{

  color:#d8ff00;

  font-size:18px;

}

.mini-box span{

  font-size:17px;
  font-weight:500;

}

/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-buttons{

  display:flex;
  flex-wrap:wrap;

  gap:20px;

}

.btn-primary{

  display:inline-flex;
  align-items:center;
  justify-content:center;

  background:#ffe600;
  color:black;

  padding:18px 36px;

  border-radius:18px;

  font-weight:700;

  transition:0.35s ease;

  box-shadow:
  0 0 20px rgba(255,230,0,0.12);

}

.btn-primary:hover{

  transform:translateY(-5px);

  box-shadow:
  0 0 45px rgba(255,230,0,0.35);

}

.btn-secondary{

  display:inline-flex;
  align-items:center;
  justify-content:center;

  background:rgba(255,255,255,0.06);

  color:white;

  padding:18px 36px;

  border-radius:18px;

  border:
  2px solid rgba(255,230,0,0.14);

  font-weight:600;

  transition:0.35s ease;

  backdrop-filter:blur(10px);

}

.btn-secondary:hover{

  background:#ffe600;

  color:black;

  border-color:#ffe600;

  transform:translateY(-5px);

  box-shadow:
  0 0 35px rgba(255,230,0,0.35),
  0 0 70px rgba(255,230,0,0.14);

}

/* =========================================================
   HERO RIGHT
========================================================= */

.hero-right{

  display:flex;
  align-items:flex-start;
  justify-content:center;

}

.hero-right img{

  width:100%;

  max-width:980px;

  margin-top:-120px;

  border-radius:28px;

  object-fit:cover;

  box-shadow:
  0 0 60px rgba(179,255,0,0.08),
  0 0 120px rgba(0,0,0,0.6);

  transition:0.4s ease;

}

.hero-right img:hover{

  transform:scale(1.02);

}

/* =========================================================
   FEATURES
========================================================= */

.features{

  padding:100px 7%;

  display:grid;
  grid-template-columns:repeat(4,1fr);

  gap:30px;

}

.feature-card{

  background:#120024;

  padding:45px 30px;

  border-radius:30px;

  text-align:center;

  border:
  1px solid rgba(255,255,255,0.04);

  transition:0.35s ease;

}

.feature-card:hover{

  transform:translateY(-10px);

  border-color:
  rgba(216,255,0,0.14);

}

.feature-card i{

  font-size:42px;

  color:#d8ff00;

  margin-bottom:22px;

}

.feature-card h3{

  font-size:30px;

  margin-bottom:10px;

}

.feature-card p{

  color:#c6c6c6;

  font-size:18px;

}

/* =========================================================
   TINY STARS
========================================================= */

.tiny-stars{

  display:flex;
  justify-content:center;

  gap:8px;

  margin-bottom:18px;

}

.tiny-stars i{

  color:#d8ff00;

  font-size:18px;

}

/* =========================================================
   COURSES
========================================================= */

.courses{

  padding:100px 7%;

}

.section-title{

  font-size:56px;
  font-weight:800;

  margin-bottom:60px;

}

.course-grid{

  display:grid;
  grid-template-columns:repeat(3,1fr);

  gap:35px;

}

.course-card{

  background:#120024;

  border-radius:30px;

  overflow:hidden;

  border:
  1px solid rgba(255,255,255,0.04);

  transition:0.35s ease;

}

.course-card:hover{

  transform:translateY(-10px);

}

.course-card img{

  width:100%;

}

.course-card h3{

  padding:24px 24px 12px;

  font-size:26px;

}

.course-card p{

  padding:0 24px 24px;

  color:#c4c4c4;

}

.course-card a{

  display:inline-flex;
  align-items:center;
  justify-content:center;

  margin:0 24px 28px;

  background:#ffe600;
  color:black;

  padding:14px 24px;

  border-radius:14px;

  font-weight:700;

}

/* =========================================================
   INSTRUCTOR
========================================================= */

.instructor{

  padding:110px 7%;

  display:flex;
  align-items:center;

  gap:80px;

}

.instructor-left,
.instructor-right{

  flex:1;

}

.instructor-left img{

  width:100%;
  max-width:430px;

}

.small-title{

  color:#ffe600;

  letter-spacing:2px;

  font-weight:700;

}

.instructor-right h2{

  font-size:56px;

  margin:20px 0;

}

.instructor-right p{

  color:#d0d0d0;

  line-height:1.9;

  margin-bottom:35px;

}

/* =========================================================
   FOOTER
========================================================= */

footer{

  text-align:center;

  padding:70px 20px;

  background:#100022;

  border-top:
  1px solid rgba(255,255,255,0.05);

}

footer h2{

  font-size:36px;

  margin-bottom:12px;

}

footer p{

  color:#c8c8c8;

}

/* =========================================================
   WHATSAPP
========================================================= */

.whatsapp-popup{

  position:fixed;

  right:20px;
  bottom:20px;

  display:flex;
  align-items:center;

  gap:14px;

  z-index:99999;

}

.whatsapp-text{

  background:white;
  color:black;

  padding:14px 18px;

  border-radius:18px;

  font-size:14px;
  font-weight:600;

  box-shadow:
  0 0 30px rgba(0,0,0,0.25);

}

.whatsapp-button{

  width:72px;
  height:72px;

  display:flex;
  align-items:center;
  justify-content:center;

  background:#25d366;

  color:white;

  border-radius:50%;

  font-size:40px;

  box-shadow:
  0 0 25px rgba(37,211,102,0.55);

}

.whatsapp-button:hover{

  transform:scale(1.08);

}

/* =========================================================
   VIDEO POPUP
========================================================= */

.video-popup{

  position:fixed;
  inset:0;

  display:flex;
  align-items:center;
  justify-content:center;

  opacity:0;
  visibility:hidden;

  transition:0.3s;

  z-index:999999;

}

.video-popup.active{

  opacity:1;
  visibility:visible;

}

.video-overlay{

  position:absolute;
  inset:0;

  background:rgba(0,0,0,0.86);

  backdrop-filter:blur(8px);

}

.video-content{

  position:relative;

  width:90%;
  max-width:1000px;

  aspect-ratio:16/9;

  z-index:2;

}

.video-content iframe{

  width:100%;
  height:100%;

  border:none;

  border-radius:24px;

}

.close-video{

  position:absolute;

  top:-50px;
  right:0;

  font-size:44px;

  color:white;

  cursor:pointer;

}

/* =========================================================
   TABLET
========================================================= */

@media(max-width:991px){

.hero{

  padding:60px 25px;

}

.hero-container{

  grid-template-columns:1fr;

  text-align:center;

}

.hero-right{

  margin-top:40px;

}

.hero-right img{

  margin-top:0;

  max-width:100%;

}

.hero-features,
.hero-buttons{

  justify-content:center;

}

.features{

  grid-template-columns:repeat(2,1fr);

}

.course-grid{

  grid-template-columns:1fr;

}

.instructor{

  flex-direction:column;

  text-align:center;

}

.instructor-left img{

  margin:auto;

}

}

/* =========================================================
   MOBILE
========================================================= */

@media(max-width:600px){

.navbar{

  flex-direction:column;

  gap:20px;

  padding:18px 20px;

}

.logo{

  font-size:28px;

}

.menu{

  flex-wrap:wrap;

  justify-content:center;

  gap:18px;

}

.hero{

  padding:40px 20px 80px;

}

.hero-left h1{

  font-size:48px;

}

.hero-left p{

  font-size:16px;

}

.hero-buttons{

  flex-direction:column;

}

.btn-primary,
.btn-secondary{

  width:100%;

}

.mini-box{

  width:100%;

  justify-content:center;

}

.features{

  grid-template-columns:1fr;

}

.section-title{

  font-size:40px;

}

.instructor-right h2{

  font-size:42px;

}

.whatsapp-text{

  display:none;

}

.whatsapp-button{

  width:62px;
  height:62px;

  font-size:34px;

}

.video-content{

  width:95%;

}

.close-video{

  top:-44px;

  font-size:34px;

}

}
/* ================= ABOUT ================= */

.about-section{
  padding:100px 7%;
  background:#090014;
}

.about-container{
  max-width:1300px;
  margin:auto;
}

.about-tag{
  display:inline-block;
  background:#d7ff00;
  color:#000;
  padding:12px 22px;
  border-radius:50px;
  font-weight:700;
  margin-bottom:25px;
}

.about-section h2{
  font-size:48px;
  margin-bottom:20px;
}

.about-text{
  font-size:20px;
  color:#cfcfcf;
  line-height:1.8;
  max-width:900px;
  margin-bottom:50px;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
  margin-bottom:50px;
}

.service-card{
  background:#140022;
  border:1px solid rgba(255,255,255,.08);
  border-radius:24px;
  padding:35px;
}

.service-card i{
  font-size:42px;
  color:#d7ff00;
  margin-bottom:20px;
}

.service-card h3{
  margin-bottom:20px;
  font-size:24px;
}

.service-card ul{
  list-style:none;
}

.service-card li{
  padding:10px 0;
  color:#d0d0d0;
}

.topics-box{
  background:#140022;
  border-radius:24px;
  padding:40px;
}

.topics-box h3{
  margin-bottom:25px;
  font-size:28px;
}

.topics-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.topics-grid div{
  background:#1d0035;
  border-radius:14px;
  padding:18px;
  text-align:center;
  font-weight:600;
}

@media(max-width:900px){

  .services-grid{
    grid-template-columns:1fr;
  }

  .topics-grid{
    grid-template-columns:1fr 1fr;
  }

  .about-section h2{
    font-size:34px;
  }

  .about-text{
    font-size:16px;
  }

}
/* ================= CONTACT ================= */

.contact-section{
  padding:100px 7%;
  background:#0b0018;
}

.contact-container{
  max-width:1200px;
  margin:auto;
  text-align:center;
}

.contact-tag{
  display:inline-block;
  background:#d8ff00;
  color:#000;
  padding:12px 24px;
  border-radius:50px;
  font-weight:700;
  margin-bottom:25px;
}

.contact-section h2{
  font-size:48px;
  margin-bottom:15px;
}

.contact-section p{
  color:#cfcfcf;
  margin-bottom:50px;
}

.contact-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.contact-card{
  background:#140022;
  border-radius:24px;
  padding:35px;
}

.contact-card i{
  font-size:42px;
  color:#d8ff00;
  margin-bottom:20px;
}

.contact-card h3{
  margin-bottom:10px;
}

.contact-card a{
  color:#fff;
  word-break:break-word;
}

@media(max-width:900px){

  .contact-grid{
    grid-template-columns:1fr;
  }

  .contact-section h2{
    font-size:34px;
  }

}
/* ================= COURSE DETAILS ================= */

.course-details{
  padding:100px 7%;
}

.course-details-container{
  max-width:1300px;
  margin:auto;
}

.course-tag{
  display:inline-block;
  background:#d8ff00;
  color:#000;
  padding:12px 24px;
  border-radius:50px;
  font-weight:700;
  margin-bottom:25px;
}

.course-details h2{
  font-size:48px;
  margin-bottom:50px;
}

.course-details-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

.detail-card{
  background:#140022;
  border-radius:24px;
  padding:30px;
  transition:.3s;
}

.detail-card:hover{
  transform:translateY(-8px);
}

.detail-card i{
  font-size:40px;
  color:#d8ff00;
  margin-bottom:20px;
}

.detail-card h3{
  margin-bottom:15px;
}

.detail-card p{
  color:#cfcfcf;
  line-height:1.7;
}

@media(max-width:991px){

  .course-details-grid{
    grid-template-columns:1fr 1fr;
  }

}

@media(max-width:600px){

  .course-details-grid{
    grid-template-columns:1fr;
  }

  .course-details h2{
    font-size:34px;
  }

}
.youtube-menu{
  color:#ff3b3b !important;
  font-weight:700;
}

.youtube-menu i{
  margin-right:6px;
}

.youtube-menu:hover{
  color:#ff0000 !important;
}

html{
  scroll-behavior:smooth;
}

#courses,
#about,
#contact{
  scroll-margin-top:120px;
}
/* ================= MENU EFFECTS ================= */

.menu a{
  position:relative;
  color:#ffffff;
  text-decoration:none;
  font-weight:600;
  transition:.3s ease;
  padding:8px 12px;
  border-radius:10px;
}

.menu a:hover{

  color:#d8ff00;

  background:rgba(216,255,0,.08);

}

.menu a::after{

  content:"";

  position:absolute;

  left:50%;

  bottom:-6px;

  width:0;

  height:3px;

  background:#d8ff00;

  border-radius:50px;

  transition:.3s ease;

  transform:translateX(-50%);

}

.menu a:hover::after{

  width:70%;

}

/* ACTIVE MENU */

.menu a.active{

  color:#d8ff00;

}

.menu a.active::after{

  width:70%;

}

/* LOGO EFFECT */

.logo{

  transition:.3s ease;

}

.logo:hover{

  color:#d8ff00;

  text-shadow:0 0 20px rgba(216,255,0,.4);

}

/* BUY BUTTON */

.nav-btn{

  transition:.3s ease;

}

.nav-btn:hover{

  transform:translateY(-3px);

  box-shadow:0 0 25px rgba(255,230,0,.45);

}

/* YOUTUBE MENU */

.youtube-menu{

  color:#ff4d4d !important;

}

.youtube-menu:hover{

  color:#ff0000 !important;

  background:rgba(255,0,0,.08) !important;

}
