/* -------- GLOBAL STYLES -------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: cursive;
}
  body {
   /* background-color: #0A0F1F;
    background-color: #001233;*/
   background-color: #030c10; 
    /* background-color: #183446; */
 color: rgba(46, 219, 199, 0.637);
}
/* -------- NAVBAR STYLES -------- */
.navbar {
  width: 100%;
  display: flex;
  justify-content:space-around;
  align-items: center;
  padding: 12px 56px;
  background: rgba(17, 28, 59, 0.9);
  backdrop-filter: blur(30px);
  background: transparent;
  border-bottom: 2px solid rgba(0, 255, 179, 0.3);
  position:fixed;
  height: 70px;
  border-radius:70px;
  top:0;
  z-index:40;
}
/* Logo section */
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  width: 120px;
  height: 70px;
}
.logo h1 {
  font-size: 2rem;
  background: linear-gradient(90deg, #00AFFF, #00ffb3, #ff00ff);
  background-clip: text;
  color: transparent;
  font-weight: 700;
  letter-spacing: 2px;
  text-shadow: 0 0 12px #b87afe;
}
/* Navigation Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 55px;
  align-items: center;
}
.nav-links li a {
  text-decoration: none;
  color: #e6e6e6;
  font-weight: 500;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  position: relative;
}
.nav-links li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00FFB3, #00AFFF);
  left: 0;
  bottom: -5px;
  transition: width 0.3s ease;
}
.nav-links li a:hover::after {
  width: 100%;
}
.nav-links li a:hover {
  color: #00FFB3;
}
/* Join button */
.join-btn {
  background: linear-gradient(90deg, #00FFB3, #00AFFF);
  padding: 8px 18px;
  border-radius: 25px;
  color: #0A0F1F !important;
  font-weight: 700;
  box-shadow: 0 0 10px #00FFB3;
  transition: transform 0.3s ease;
}
.join-btn:hover {
  transform: scale(1.05);
}
.menu-icon {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #00FFB3;
}
#menu-toggle {
  display: none;
}
  #menu-toggle:checked + .menu-icon + .nav-links {
    left: 0;
  }
  .menu-icon {
    display: block;
  }
  .navbar {
    padding: 15px 25px;
  }
.hero{
 padding:56px 0;
 display: flex;
 justify-content: space-evenly;
 align-items: center;
 letter-spacing:0.04rem;
}
.hero-grid{
 display:grid;
 grid-template-columns:1fr 380px;
 gap:120px;
 align-items:center;
 position:relative;
}
.hero-left{
   margin-left: 20px;
}
.hero-title{
 font-size:clamp(1.4rem,3.6vw,2.2rem);
 margin:0 0 12px 0;
 line-height:1.05
}
.text{
  font-weight:900;
  background:linear-gradient(90deg,#bdeb27,#e135d5) ;
  background-size: 300% 300%;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: hueShift 4s ease-in-out infinite;
  text-shadow: 0 0 12px rgba(0, 255, 179, 0.405);
}
@keyframes hueShift {
  0%{ background-position:0% 50% }
  50%{ background-position:100% 50% }
  100%{ background-position:0% 50% }
}
/* Typing effect - CSS only */
.typing-wrapper{
 margin:10px 0 15px 0
}
.typing-line{
  font-weight:600;
  background:linear-gradient(90deg,#0bd4e7,#9e00f3) ;
  background-clip: text;
  white-space:nowrap;
  overflow:hidden;
  width:fit-content;
  max-width:100%;
}
.type{
  display:inline-block;
  animation: typeAnim 4s steps(28,end) infinite;
  color: #1163c0;
}
.cursor{
  display:inline-block;
  margin-left:4px;
  animation: blink .8s steps(2,start) infinite;
}
@keyframes typeAnim {
  0%{ width:0; max-width:0; opacity:0.8 }
  10%{ width:0; opacity:1 }
  50%{ width:18ch; opacity:1 }
  90%{ width:18ch; opacity:1 }
  100%{ width:0; opacity:0.6 }
}
@keyframes blink {
  0%,50%{ opacity:1 } 51%,100%{ opacity:0 }
}
/* Buttons */
.btn-primary{
  background:linear-gradient(90deg,#27adeb,#f669ed) ;
  padding:12px 18px;
  border-radius:12px;
  text-decoration:none;
  font-weight:800;
  margin-right:10px;
 box-shadow:0 7px 25px rgba(18, 141, 202, 0.512);
}
.btn-outline{
  background:transparent;
  background:linear-gradient(90deg,#27adeb,#f669ed) ;
  padding:11px 16px;
  border-radius:12px;
  text-decoration:none;
  font-weight:800;
  box-shadow:0 7px 25px rgba(18, 141, 202, 0.512);
}
.hero-btn{
  margin-top:12px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
/* Hero badges */
.hero-badges{
  display:flex;
  gap:12px;
  margin-top:20px;
  list-style:none;
}
.hero-badges li{
  background:linear-gradient(180deg, rgba(27, 24, 30, 0.935), transparent);
  padding:8px 12px;
  color: rgba(2, 166, 255, 0.606);
  border-radius:999px;
  font-weight:550;
  border:1px solid rgba(213, 204, 204, 0.02);
}

/* Preview card */
/* .hero-right{
 margin-left: 70px;
} */
.preview-card{
  background: linear-gradient(180deg, rgba(100, 120, 172, 0.093), transparent);
  border-radius:16px;
  padding:16px;
  box-shadow:0 10px 30px rgba(0, 170, 255, 0.129);
  position:relative;
  overflow:hidden;
  width: 400px;
  margin-top: 70px;
}
.preview-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:10px;
}
.head{
  background:linear-gradient(90deg,#20e7f9bf,#6e2ee5) ;
  color: rgb(23, 22, 39);
  padding:6px 8px;
  border-radius:10px;
  font-weight:700;
  font-size:0.85rem
}
.side{
  color: rgba(255, 255, 255, 0.656);
  font-size:0.9rem;
  font-weight: 550;
}
.course-title{
  font-weight:600;
  margin:8px 0 10px 0;
  background:linear-gradient(90deg,#27adeb,#f669ed) ;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.progress.track{
  height:10px;
  margin-top: 10px;
  border-radius:999px;
  overflow:hidden;
}
.progress-label{
  color: #00AFFF;
}
.bar{
  height:100%;
  background:linear-gradient(90deg,#27adeb,#f669ed) ;
  width:0%;
  transition:width 0.6s ease;
}
.bar-anim{
  animation: fillBar 1.6s ease forwards;
}
@keyframes fillBar{
  to{
    width:var(--w,50%);
  }
}
.stats-grid{
  display:flex;
  gap:12px;
  margin-top:12px;
  justify-content:space-between;
  font-size:0.9rem;
  color: #6b9cb3d9;
}

/* Sections */
.section{
  padding:56px 0;
  display: grid;
  gap: 10px;
}
.section-title{
  font-size:1.50rem;
  margin:0 0 6px 12px;
  text-align: center;
}
.section-title span{
   background:linear-gradient(90deg,#ff6b6b,#ffcc00);
   background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-sub{
  color:rgba(255, 255, 255, 0.727);
  margin:0 0 18px 0;
  text-align: center;
  position: reletive;
  display: inline-block;
  padding-bottom: 6px;
}
.section-sub::after{
  content: "";
  position: absolute;
  left: 633px;
  margin: 40px;
  width: 10%;
  height: 3px;
  background:linear-gradient(90deg,#ff6b6b,#ffcc00);
  border-radius: 2px;
}
/* Course Cards Grid + flip effect */
.cards-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:15px;
  margin-top:18px;
}

.course-card{
  perspective:1200px;
  height:300px;
}
.flip-inner{
  position:relative;
  width:100%;
  height:100%;
  transform-style:preserve-3d;
  transition:transform .7s cubic-bezier(.2,.9,.2,1);
}
.course-card:hover .flip-inner{
  transform:rotateY(180deg) translateZ(0);
}
.card-front,.card-back{
  position:absolute;
  inset:0;
  border-radius:14px;
  padding:18px;
  backface-visibility:hidden;
  background:linear-gradient(180deg, rgba(255, 255, 255, 0.049), transparent);
  border:1px solid rgba(255, 255, 255, 0.128);
  box-shadow:0 10px 30px rgba(0, 170, 255, 0.116);
}
.card-front{
  display:flex;
  flex-direction:column;
  justify-content:space-evenly;
  color: rgba(255, 255, 255, 0.791);
}
.card-back{
  transform:rotateY(180deg);
  display:flex;
  align-items:center;
  color: rgba(255, 255, 255, 0.539);
  justify-content:center;
  margin: 50px;
}
.back-inner{
   text-align:center;
}
.card-top{
  display:flex;
  align-items:center;
  color: #c165ff;
  justify-content:space-between;
}
.badge{
  padding:6px 8px;
  border-radius:8px;
  font-weight:700;
  color:#021319;
}
.badge.live{
  background:linear-gradient(90deg,#ff6b6b,#ffcc00);
}
.badge.ai{
  background:linear-gradient(90deg,#6bc9ff,#ffcc00);
}
.badge.pro{
 background:linear-gradient(90deg,#ffd19a,#ff7ab6);
}
.card-desc{
 color:gray;
 font-weight: 600;
 margin:10px 0;
}
.card-list{
  list-style:none;
  padding:0;
  margin:0 0 12px 0;
}
.card-list li{
  margin:10px 5px;
  color: rgba(185, 245, 245, 0.55);
}
.card-btn{
  text-decoration:none;
  margin: 50px;
  padding:5px 7px;
  border-radius:10px;
  background:linear-gradient(90deg,#ff6b6b,#ffcc00);
  font-weight:700;
}
/*start*/
.class{
    width: 100%;
    padding: 70px 0;
}
.class h1{
    font-size: 30px;
    display: flex;
    align-items: center;
   justify-content: center;
   margin-bottom: 33px;

}
.class h1 span{
    background:linear-gradient(90deg,#ff6b6b,#ffcc00);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-left: 15px;
}
.class h1 span::after{
    content: ' ';
    width: 100%;
    height: 2px;
    background:linear-gradient(90deg,#ff6b6b,#ffcc00);
    display: block;
    position: relative;
    bottom: 5px;
}
.class .class_Box{
    width: 100%;
    margin: 0 auto;
    display:grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap:10px;
}
.class .class_Box .class_card{
    width: 425px;
    height: 480px;
    padding-top: 10px;
    margin-bottom: 20px;
    box-shadow:0 10px 30px rgba(0,170,255,0.08);
}
.class .class_Box .class_card .class_image{
    width:400px ;
    height: 245px;
    margin: 0 auto;
    overflow: hidden;
}
.class .class_Box .class_card .class_image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: 0.4s;
}
.class .class_Box .class_card .class_image:hover img{
    transform: scale(1.1);
}
.class .class_Box .class_card .class_info h2{
width: 60%;
text-align: center;
margin: 10px auto 10px auto;
font-size: 20px;
color: #fac031;
}
.class .class_Box .class_card .class_info p{
    text-align: center;
    margin-top: 8px;
    line-height: 21px;
    color:rgba(255, 255, 255, 0.476);
    font-weight: 400px;
}
.class .class_Box .class_card .class_info h3{
    text-align: center;
    margin-top: 10px;
}
.class .class_Box .class_card .class_info .class_btn{
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color:rgb(26, 26, 48);
    background:linear-gradient(90deg,#ff6b6b,#ffcc00);
    border-radius: 10px;
    padding: 8px 10px;
    margin: 25px 120px;
    transition: 0.3s;
}  
.team{
    width: 100%;
    height: 90vh;
}
.team h1{
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 27px;
}
.team h1 span{
  background:linear-gradient(90deg,#ff6b6b,#ffcc00);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-left: 15px;
}
.team h1 span::after{
  content: ' ';
    width: 100%;
    height: 2px;
    background:linear-gradient(90deg,#ff6b6b,#ffcc00);
    display: block;
    position: relative;
    bottom: 5px;
}
.team .team_box{
    width: 93%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content:space-evenly;
    position: relative;
    top: 15%;
}
.team .team_box .profile{
    width: 400px;
    height: 400px;
    border-radius:80%;
    margin: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow:0 10px 30px rgba(0, 170, 255, 0.146);
    transition: 0.4s;
    background:linear-gradient(90deg,#07747600,#2160a300);
}
.team .team_box .profile:hover{
    border-radius: 20px;
    height: 320px;
}
.team .team_box .profile img{
    width: 240px;
    height: 300px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.724);
    z-index: 2;
    transition: 0.4s;
    margin-right: 18px;
}
.team .team_box .profile:hover img{
    border-radius: 20px;
    margin-top: -230px;
}
.team .team_box .profile h2{
  background:linear-gradient(90deg,#e96bff,#eaff00);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.team .team_box .profile p{
  color: rgba(255, 255, 255, 0.576);
}
.contact{
    width: 100%;
    height: 100vh;
    padding: 70px 0;
}
.contact h1{
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  gap: 9px;
}
.contact h1 span{
  background:linear-gradient(90deg,#ff6b6b,#ffcc00);
  background-clip: text;
  -webkit-text-fill-color: transparent;
   margin-left: 15px;
}
.contact h1 span::after{
    content: ' ';
    width: 100%;
    height: 2px;
    background:linear-gradient(90deg,#ff6b6b,#ffcc00);
    display: block;
    position: relative;
    bottom: 5px;
}
.contact .contact_main{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.contact .contact_main .contact_image img{
    width: 600px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(22, 70, 110, 0.576);
}
.contact .contact_main form .input{
    margin: 10px;
}
.contact .contact_main form .input input{
    width: 280px;
    height: 40px;
    padding: 0 10px;
    border: 2px solid #37435b;
    background-color: #03080c4a;
    background-clip: text;
    outline: none;
    border-radius: 20px;
    box-shadow:0 10px 30px rgba(29, 62, 79, 0.244);
    display: grid;
    color: white;
}
.contact .contact_main form .input label{
  background:linear-gradient(90deg,#ff6b6b,#ffcc00);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500px;
}
.contact .contact_main form .input input:focus{
    border: 2px solid #397fe0;
}
.contact .contact_main form .contact_btn{
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffffdc;
    background: #397fe0;
    padding: 8px 10px;
    margin: 0 120px;
    border-radius: 15px;
    /* transition: 0.3s; */
} 
.review{
    width: 100%;
    height: 100vh;
    padding: 70px 0;
}
.review h1{
    font-size: 30px;
    display: flex;
    align-items: center;
   justify-content: center;
   margin-bottom: 30px;
}
.review h1 span{
  background:linear-gradient(90deg,#ff6b6b,#ffcc00);
  background-clip: text;
  -webkit-text-fill-color: transparent;
   margin-left: 15px;
}
.review h1 span::after{
   content: ' ';
    width: 100%;
    height: 2px;
    background:linear-gradient(90deg,#ff6b6b,#ffcc00);
    display: block;
    position: relative;
    bottom: 5px;
}
.review .review_box{
    width: 95%;
    margin: 70px auto;
    display: flex;
    justify-content: space-between;
}
.review .review_box .review_card{
    width: 350px;
    height: 410px;
    box-shadow:0 10px 30px rgba(0, 170, 255, 0.264);
    border-radius: 8px;
    padding: 8px 20px;
    margin: 0 10px;
}
.review .review_box .review_card .review_profile{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: 0.3s;
}
.review .review_box .review_card:hover .review_profile{
    transform: translateY(-60px);
}
.review .review_box .review_card .review_profile img{
    width: 180px;
    height: 180px;
    object-fit: cover;
    object-position: center;
    border-radius:50%;
    border: 5px solid #1163c0bb;
}
.review .review_box .review_card .review_text{
    text-align: center;
    color: rgba(255, 255, 255, 0.467);
} 
.review .review_box .review_card .review_text .name{
  color:#1163c0b9;
  transition: 0.3s;
  margin: 20px;
}
.review .review_box .review_card:hover .review_text .name{
    transform: translateY(-50px);
}
.animation img{
  margin: auto;
  width: 300px;
  margin-left:600px;
}
footer{
    width: 100%;
    padding: 40px 0 0 25px;
    border-top:2x solid #4276e0;
    border-top: 1px solid #ff3c0056;
    border-radius: 50px;
}
footer .footer_main{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}
footer .footer_main .footer_tag{
    text-align: center;
}
footer .footer_main .footer_tag h2{
  background:linear-gradient(90deg,#ff3c00,#007bff);
  background-clip: text;
  -webkit-text-fill-color: transparent;
   margin-bottom: 25px;
   font-size: 23px;
   font-weight: 600px;
}
footer .footer_main .footer_tag a{
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.703);
    color: rgba(46, 219, 199, 0.637);
    font-size: 17px;
    font-weight: 300px;
}
footer .footer_main .footer_tag i{
    margin: 0 5px;
    cursor: pointer;
   font-size: x-large;
   color: rgba(255, 255, 255, 0.722);
}
footer .footer_main .footer_tag i:hover{
    color: rgba(46, 219, 199, 0.637);
}
footer .end{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}
footer .end span{
  background:linear-gradient(90deg,#ff3c00,#007bff);
   background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-left: 10px;
  font-weight: bold; 
}