*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, Helvetica, sans-serif;
  scroll-behavior:smooth;
}

body{
  background:#050816;
  color:white;
  overflow-x:hidden;
}

/* ================= HEADER ================= */

.header{
  width:100%;
  padding:20px 8%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  position:fixed;
  top:0;
  left:0;
  z-index:1000;
  background:rgba(5,8,22,0.85);
  backdrop-filter:blur(10px);
}

.logo{
  font-size:35px;
  font-weight:bold;
}

.logo span{
  color:#4ea8ff;
}

.navbar a{
  text-decoration:none;
  color:white;
  margin:0 15px;
  transition:0.3s;
}

.navbar a:hover{
  color:#7b61ff;
}

.nav-btn{
  text-decoration:none;
  color:white;
  padding:12px 28px;
  border-radius:40px;
  background:linear-gradient(90deg,#7b2fff,#00a2ff);
  transition:0.3s;
}

.nav-btn:hover{
  transform:translateY(-3px);
}

/* ================= HERO ================= */

.hero{
  min-height:100vh;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:150px 8% 80px;
  gap:50px;
}

.hero-left{
  flex:1;
}

.hero-tag{
  display:inline-block;
  padding:10px 20px;
  border:1px solid rgba(255,255,255,0.1);
  border-radius:30px;
  margin-bottom:25px;
  color:#8cc8ff;
  background:rgba(255,255,255,0.04);
}

.hero-left h1{
  font-size:70px;
  line-height:1.1;
  margin-bottom:25px;
}

.hero-left p{
  color:#cfcfcf;
  line-height:1.8;
  max-width:650px;
  font-size:18px;
}

.hero-buttons{
  margin-top:35px;
  display:flex;
  gap:20px;
}

.btn{
  padding:16px 35px;
  border-radius:50px;
  text-decoration:none;
  font-weight:bold;
  transition:0.3s;
}

.primary-btn{
  background:linear-gradient(90deg,#7b2fff,#00a2ff);
  color:white;
}

.secondary-btn{
  border:2px solid #7b61ff;
  color:white;
}

.primary-btn:hover,
.secondary-btn:hover{
  transform:translateY(-5px);
}

.hero-stats{
  margin-top:60px;
  display:flex;
  gap:25px;
}

.stat-box{
  background:#0f1327;
  padding:25px;
  border-radius:18px;
  width:150px;
  text-align:center;
}

.stat-box h2{
  color:#7dc5ff;
  margin-bottom:10px;
}

/* ================= HERO CARD ================= */

.hero-right{
  flex:1;
  display:flex;
  justify-content:center;
}

.hero-card{
  width:420px;
  background:#0f1327;
  padding:50px 30px;
  border-radius:30px;
  text-align:center;
  position:relative;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.05);
}

.circle{
  width:180px;
  height:180px;
  border-radius:50%;
  margin:auto;
  margin-bottom:25px;
  background:linear-gradient(135deg,#9f2fff,#00a2ff);
  filter:blur(0px);
}

.hero-card h2{
  font-size:50px;
  margin-bottom:10px;
}

.hero-card p{
  color:#d6d6d6;
}

.icons{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:25px;
  margin-top:40px;
}

.icons div{
  background:#131a33;
  padding:20px;
  border-radius:20px;
}

.icons i{
  font-size:35px;
  margin-bottom:10px;
  color:#71bfff;
}

/* ================= GENERAL ================= */

.section-title{
  text-align:center;
  margin-bottom:70px;
}

.section-title h2{
  font-size:50px;
  margin-bottom:15px;
}

.section-title p{
  color:#cfcfcf;
  max-width:700px;
  margin:auto;
  line-height:1.8;
}

/* ================= ABOUT ================= */

.about{
  padding:120px 8%;
}

.about-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

.about-box{
  background:#0f1327;
  padding:45px 30px;
  border-radius:25px;
  text-align:center;
  transition:0.3s;
}

.about-box:hover{
  transform:translateY(-10px);
}

.about-box i{
  font-size:50px;
  margin-bottom:20px;
  color:#7cc5ff;
}

.about-box h3{
  margin-bottom:15px;
}

.about-box p{
  color:#cfcfcf;
  line-height:1.7;
}

/* ================= COURSES ================= */

.courses{
  padding:120px 8%;
}

.course-container{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

.course-card{
  background:#10172e;
  padding:40px 30px;
  border-radius:25px;
  transition:0.3s;
}

.course-card:hover{
  transform:translateY(-10px);
}

.course-card i{
  font-size:55px;
  color:#79c2ff;
  margin-bottom:20px;
}

.course-card h3{
  margin-bottom:15px;
}

.course-card p{
  color:#cfcfcf;
  line-height:1.8;
}

/* ================= SCHEDULE ================= */

.schedule{
  padding:120px 8%;
}

.table-container{
  overflow-x:auto;
}

table{
  width:100%;
  border-collapse:collapse;
  background:#10172e;
  border-radius:20px;
  overflow:hidden;
}

th{
  background:linear-gradient(90deg,#7b2fff,#00a2ff);
  padding:20px;
  font-size:20px;
}

td{
  padding:20px;
  text-align:center;
  border-bottom:1px solid rgba(255,255,255,0.05);
}

.private{
  color:#8ecaff;
  font-weight:bold;
}

/* ================= CTA ================= */

.cta{
  padding:120px 8%;
  text-align:center;
  background:linear-gradient(
    135deg,
    rgba(123,47,255,0.15),
     rgba(123,47,255,0.15),
  );
}

.cta h2{
  font-size:55px;
  margin-bottom:20px;
}

.cta p{
  color:#d5d5d5;
  margin-bottom:35px;
  font-size:18px;
}

.cta-btn{
  display:inline-block;
  text-decoration:none;
  padding:18px 45px;
  border-radius:50px;
  color:white;
  background:linear-gradient(90deg,#7b2fff,#00a2ff);
  transition:0.3s;
}

.cta-btn:hover{
  transform:scale(1.05);
}

/* ================= FOOTER ================= */

.footer{
  padding:70px 8%;
  text-align:center;
}

.footer h2{
  font-size:45px;
  margin-bottom:15px;
}

.footer p{
  color:#cfcfcf;
  margin-bottom:25px;
}

.socials{
  margin-bottom:30px;
}

.socials a{
  color:white;
  font-size:22px;
  margin:0 12px;
  transition:0.3s;
}

.socials a:hover{
  color:#7b61ff;
}

.footer span{
  color:#9d9d9d;
}

/* ================= MOBILE ================= */

@media(max-width:991px){

  .hero{
    flex-direction:column;
    text-align:center;
  }

  .hero-left h1{
    font-size:50px;
  }

  .hero-buttons{
    justify-content:center;
  }

  .hero-stats{
    justify-content:center;
    flex-wrap:wrap;
  }

  .navbar{
    display:none;
  }

}

@media(max-width:600px){

  .hero-left h1{
    font-size:40px;
  }

  .section-title h2,
  .cta h2{
    font-size:38px;
  }

  .hero-card{
    width:100%;
  }

}
*{

margin:0;

padding:0;

box-sizing:border-box;

font-family:Arial,sans-serif;

}

body{

background:#1f1147;

color:white;

overflow-x:hidden;

}

/* ======================================== */
/* NAVBAR */
/* ======================================== */

.navbar{

width:100%;

display:flex;

justify-content:space-between;

align-items:center;

padding:30px 8%;

position:fixed;

top:0;

left:0;

z-index:1000;

background:rgba(
15,
10,
35,
0.9
);

backdrop-filter:blur(10px);

}

.logo{

font-size:40px;

font-weight:bold;

color:#d8b4fe;

}

.nav-links{

display:flex;

list-style:none;

gap:30px;

}

.nav-links a{

text-decoration:none;

color:white;

font-size:18px;

transition:0.3s;

}

.nav-links a:hover{

color:#d8b4fe;

}

.join-btn{

padding:16px 35px;

border:none;

border-radius:15px;

background:linear-gradient(
to right,
#9333ea,
#c084fc
);

color:white;

font-size:18px;

font-weight:bold;

cursor:pointer;

}

/* ======================================== */
/* HERO SECTION */
/* ======================================== */

.hero{

min-height:100vh;

display:flex;

justify-content:center;

align-items:center;

padding:180px 8% 120px;

background:
radial-gradient(
circle at top,
rgba(
168,
85,
247,
0.2
),
transparent 40%
);

}

.hero-container{

display:grid;

grid-template-columns:
repeat(
auto-fit,
minmax(400px,1fr)
);

gap:80px;

align-items:center;

}

.hero-badge{

background:linear-gradient(
to right,
#9333ea,
#c084fc
);

padding:15px 35px;

border-radius:50px;

font-size:16px;

font-weight:bold;

letter-spacing:2px;

}

.hero-left h1{

font-size:70px;

line-height:1.1;

margin:40px 0;

}

.hero-left p{

font-size:22px;

line-height:2;

color:#ddd6fe;

}

/* BUTTONS */

.hero-buttons{

margin-top:40px;

display:flex;

gap:20px;

}

.start-btn{

padding:20px 45px;

border:none;

border-radius:18px;

background:linear-gradient(
to right,
#9333ea,
#c084fc
);

color:white;

font-size:20px;

font-weight:bold;

cursor:pointer;

}

.course-btn{

padding:20px 45px;

border:2px solid #c084fc;

border-radius:18px;

background:transparent;

color:white;

font-size:20px;

font-weight:bold;

cursor:pointer;

}

/* HERO RIGHT */

.hero-right{

display:flex;

flex-direction:column;

gap:30px;

}

.floating-card{

background:rgba(
255,
255,
255,
0.08
);

padding:35px;

border-radius:25px;

border:1px solid rgba(
255,
255,
255,
0.1
);

backdrop-filter:blur(10px);

}

.floating-card h3{

font-size:32px;

margin-bottom:20px;

color:#d8b4fe;

}

.floating-card p{

font-size:18px;

line-height:1.8;

color:#f5f3ff;

}

/* ======================================== */
/* LEARNING SECTION */
/* ======================================== */

.learning-section{

padding:140px 8%;

}

.section-header{

text-align:center;

margin-bottom:80px;

}

.section-header span{

color:#d8b4fe;

font-size:18px;

font-weight:bold;

letter-spacing:3px;

}

.section-header h2{

font-size:65px;

margin:30px 0;

line-height:1.2;

}

.section-header p{

max-width:1000px;

margin:auto;

font-size:22px;

line-height:2;

color:#ddd6fe;

}

/* GRID */

.learning-grid{

display:grid;

grid-template-columns:
repeat(
auto-fit,
minmax(400px,1fr)
);

gap:40px;

}

/* CARDS */

.learning-card{

background:rgba(
255,
255,
255,
0.08
);

padding:50px;

border-radius:30px;

border:1px solid rgba(
255,
255,
255,
0.1
);

}

.learning-card h3{

font-size:34px;

margin-bottom:30px;

color:#d8b4fe;

}

.learning-card ul li{

font-size:20px;

margin-bottom:18px;

line-height:1.7;

color:#f5f3ff;

}

/* ======================================== */
/* PROJECTS */
/* ======================================== */

.projects{

padding:140px 8%;

}

.project-grid{

display:grid;

grid-template-columns:
repeat(
auto-fit,
minmax(300px,1fr)
);

gap:30px;

}

.project-card{

background:linear-gradient(
to right,
#9333ea,
#c084fc
);

padding:70px 30px;

border-radius:25px;

text-align:center;

transition:0.4s;

}

.project-card:hover{

transform:translateY(-10px);

}

.project-card h3{

font-size:28px;

}
/* MOBILE */

@media (max-width: 768px){

  .header{
    flex-direction: column;
    gap: 15px;
    padding: 15px;
  }

  .navbar{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .hero{
    padding: 140px 8% 80px;
  }

  .hero-left h1{
    font-size: 55px;
    line-height: 1.1;
    margin: 25px 0;
  }

  .hero-left p{
    font-size: 18px;
    line-height: 1.7;
  }

  .hero-buttons{
    flex-direction: column;
    align-items: center;
  }

  .hero-card{
    width: 100%;
    max-width: 350px;
  }

  .hero-container{
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    display: grid;
  }

  .learning-grid,
  .project-grid,
  .course-container,
  .about-grid{
    grid-template-columns: 1fr;
  }

  .section-title h2,
  .section-header h2,
  .cta h2{
    font-size: 32px;
  }

  .hero-left h1,
  .hero-right h2{
    font-size: 32px;
  }

  .stat-box{
    width: 100%;
  }

  table{
    font-size: 14px;
  }

  .join-btn,
  .start-btn,
  .course-btn,
  .cta-btn{
    width: 100%;
    text-align: center;
  }
}